diff --git a/game/engines/default/engine/dialogs/ShowAchievements.lua b/game/engines/default/engine/dialogs/ShowAchievements.lua
index dd1669deb794597d64f8a623b4c81583d62350e4..18c8da60469e569e4f311e815a1987c4019c37bc 100644
--- a/game/engines/default/engine/dialogs/ShowAchievements.lua
+++ b/game/engines/default/engine/dialogs/ShowAchievements.lua
@@ -38,7 +38,7 @@ function _M:init(title, player)
 	local nb = 0
 	for id, data in pairs(world.achieved) do nb = nb + 1 end
 
-	Dialog.init(self, (title or _t("Achievements(%s/%s)"):tformat(nb, total) , game.w * 0.8, game.h * 0.8)
+	Dialog.init(self, title or ("Achievements(%s/%s)"):tformat(nb, total), game.w * 0.8, game.h * 0.8)
 
 	self.c_self = Checkbox.new{title=_t"Yours only", default=false, fct=function() end, on_change=function(s) if s then self:switchTo("self") end end}
 	self.c_main = Checkbox.new{title=_t"All achieved", default=true, fct=function() end, on_change=function(s) if s then self:switchTo("main") end end}
diff --git a/game/engines/default/engine/dialogs/ShowEquipInven.lua b/game/engines/default/engine/dialogs/ShowEquipInven.lua
index 5b2a73f969d86a6abe99d4b09bdd5c10fd6a258e..019513a881a0948297e68b52c25bbd3fe411fdeb 100644
--- a/game/engines/default/engine/dialogs/ShowEquipInven.lua
+++ b/game/engines/default/engine/dialogs/ShowEquipInven.lua
@@ -104,7 +104,7 @@ function _M:defineHotkey(id)
 	if not item or not item.object then return end
 
 	self.actor.hotkey[id] = {"inventory", item.object:getName{no_add_name=true, no_count=true}}
-	self:simplePopup(("Hotkey %s assigned"):tformat(id), ("%s assigned to hotkey %s"):tformat(item.object:getName{no_add_name=true, no_count=true}:capitalize(), id)
+	self:simplePopup(("Hotkey %s assigned"):tformat(id), ("%s assigned to hotkey %s"):tformat(item.object:getName{no_add_name=true, no_count=true}:capitalize(), id))
 	self.actor.changed = true
 end
 
diff --git a/game/engines/default/engine/dialogs/ShowErrorStack.lua b/game/engines/default/engine/dialogs/ShowErrorStack.lua
index 18e341f7615abffb5ec72c85ccd9a9322d7e731b..3cae3c9bcedf2e09f7ea01787c053d02f5a070e8 100644
--- a/game/engines/default/engine/dialogs/ShowErrorStack.lua
+++ b/game/engines/default/engine/dialogs/ShowErrorStack.lua
@@ -132,7 +132,7 @@ If you are not currently connected to the internet, please report this bug when
 	end
 
 	if realpath_errfile then
-		local realpath_errfile_t = Textzone.new{text="Log saved to file (click to copy to clipboard):#LIGHT_BLUE#%s":tformat(realpath_errfile), width=self.iw, auto_height=true, fct=function() core.key.setClipboard(realpath_errfile) game.log("File location copied to clipboard.") end}
+		local realpath_errfile_t = Textzone.new{text=("Log saved to file (click to copy to clipboard):#LIGHT_BLUE#%s"):tformat(realpath_errfile), width=self.iw, auto_height=true, fct=function() core.key.setClipboard(realpath_errfile) game.log("File location copied to clipboard.") end}
 		for i, ui in ipairs(uis) do if ui.bottom then ui.bottom = ui.bottom + realpath_errfile_t.h end end
 		table.insert(uis, 1, {left=0, bottom=0, ui=realpath_errfile_t})
 	end
diff --git a/game/engines/default/engine/dialogs/Talkbox.lua b/game/engines/default/engine/dialogs/Talkbox.lua
index 3d5c68f5ae1ae77442bfc54ba948f94387f75d33..91c5aaa74e433f7090c1caea60c5e4e3e1953bea 100644
--- a/game/engines/default/engine/dialogs/Talkbox.lua
+++ b/game/engines/default/engine/dialogs/Talkbox.lua
@@ -107,7 +107,7 @@ function _M:getTargets(only_friends)
 	end
 
 	local name_added = {}
-	for login, data in pairs(self.chat.friends) do list[#list+1] = {name=("Friend: %s")):tformat(data.name), id=data.name} name_added[data.name] = true end
+	for login, data in pairs(self.chat.friends) do list[#list+1] = {name=("Friend: %s"):tformat(data.name), id=data.name} name_added[data.name] = true end
 
 	if not only_friends and self.chat.channels[self.chat.cur_channel] then
 		for login, data in pairs(self.chat.channels[self.chat.cur_channel].users) do if not name_added[data.name] then list[#list+1] = {name=("User: %s"):tformat(data.name), id=data.name} name_added[data.name] = true end end
diff --git a/game/engines/default/engine/dialogs/UseTalents.lua b/game/engines/default/engine/dialogs/UseTalents.lua
index 0342a26b2cabae0e25735cff4c29020a92d7503d..f11a7335088a22e9234610ebab4011fd6187529c 100644
--- a/game/engines/default/engine/dialogs/UseTalents.lua
+++ b/game/engines/default/engine/dialogs/UseTalents.lua
@@ -79,7 +79,7 @@ function _M:defineHotkey(id)
 	if not item or not item.talent then return end
 
 	self.actor.hotkey[id] = {"talent", item.talent}
-	self:simplePopup(("Hotkey %s assigned"):tformat(id), ("%s assigned to hotkey %s"):tformat(self.actor:getTalentFromId(item.talent).name:capitalize(), id)
+	self:simplePopup(("Hotkey %s assigned"):tformat(id), ("%s assigned to hotkey %s"):tformat(self.actor:getTalentFromId(item.talent).name:capitalize(), id))
 	self.actor.changed = true
 end
 
diff --git a/game/engines/default/engine/dialogs/microtxn/ShowPurchasable.lua b/game/engines/default/engine/dialogs/microtxn/ShowPurchasable.lua
index d5a48d9fa9506dc8ddaf30a7d84bd1e0e4dc2da7..ad7ff8b92c29f206f572b9ad0256d15865b112eb 100644
--- a/game/engines/default/engine/dialogs/microtxn/ShowPurchasable.lua
+++ b/game/engines/default/engine/dialogs/microtxn/ShowPurchasable.lua
@@ -366,7 +366,7 @@ function _M:paymentSuccess()
 	end end
 
 	game:unregisterDialog(self)
-	Dialog:simpleLongPopup(_t"Payment", "Payment accepted.\n%s":tformat(table.concat(list, "\n")), 700)
+	Dialog:simpleLongPopup(_t"Payment", ("Payment accepted.\n%s"):tformat(table.concat(list, "\n")), 700)
 end
 
 function _M:paymentFailure()
diff --git a/game/engines/default/engine/interface/WorldAchievements.lua b/game/engines/default/engine/interface/WorldAchievements.lua
index 1e6b95935a0d04b805755e5f9ee3c5db59828122..6d2f2743ae14747a033ca53f93736428b49e037b 100644
--- a/game/engines/default/engine/interface/WorldAchievements.lua
+++ b/game/engines/default/engine/interface/WorldAchievements.lua
@@ -110,7 +110,7 @@ function _M:gainPersonalAchievement(silent, id, src, ...)
 	src.achievements[id] = {turn=game.turn, who=self:achievementWho(src), when=os.date("%Y-%m-%d %H:%M:%S")}
 	if not silent then
 		local color = a.huge and "GOLD" or "LIGHT_GREEN"
-		game.log("#%s#Personal New Achievement: %s!". color, a.name)
+		game.log("#%s#Personal New Achievement: %s!", color, a.name)
 		self:showAchievement(("Personal New Achievement: #%s#%s"):tformat(color, a.name), a)
 		if not a.no_chat_broadcast then profile.chat:achievement(a.name, a.huge, false) end
 	end
diff --git a/game/engines/default/modules/boot/dialogs/ViewHighScores.lua b/game/engines/default/modules/boot/dialogs/ViewHighScores.lua
index fc4477f35d32a4331a887687a27dc5461fed5620..4821161bc1a93cd98ef242f1b4f590c5c0058077 100644
--- a/game/engines/default/modules/boot/dialogs/ViewHighScores.lua
+++ b/game/engines/default/modules/boot/dialogs/ViewHighScores.lua
@@ -94,7 +94,7 @@ function _M:generateList()
 						mod.highscores[world] = HighScores.createHighScoreTable(world,formatter)
 					end
 				end
-				mod.zone = Textzone.new{width=self.c_desc.w, height=self.c_desc.h, text="#{bold}##GOLD#%s#GREEN# High Scores#WHITE##{normal}#\n\n":tformat(mod.long_name)}
+				mod.zone = Textzone.new{width=self.c_desc.w, height=self.c_desc.h, text=("#{bold}##GOLD#%s#GREEN# High Scores#WHITE##{normal}#\n\n"):tformat(mod.long_name)}
 				table.insert(self.list, mod)
 			end
 		end
@@ -111,7 +111,7 @@ function _M:changemodules(item)
 		self.c_sublist:setList(worlds)
 		if #worlds > 0 then
 			-- show text from first world
-			item.zone.text = "#{bold}##GOLD#%s(%s)#GREEN# High Scores#WHITE##{normal}#\n\n":tformat(item.long_name, worlds[1].world)
+			item.zone.text = ("#{bold}##GOLD#%s(%s)#GREEN# High Scores#WHITE##{normal}#\n\n"):tformat(item.long_name, worlds[1].world)
 			item.zone.text = item.zone.text .. item.highscores[worlds[1].world]
 			item.zone:generate()
 		end
@@ -121,7 +121,7 @@ end
 function _M:changeworlds(item)
 	if item and self.uis[2] then
 		world = item.world;
-		self.cur_sel.zone.text = "#{bold}##GOLD#%s(%s)#GREEN# High Scores#WHITE##{normal}#\n\n":tformat(self.cur_sel.long_name, world)
+		self.cur_sel.zone.text = ("#{bold}##GOLD#%s(%s)#GREEN# High Scores#WHITE##{normal}#\n\n"):tformat(self.cur_sel.long_name, world)
 		self.cur_sel.zone.text = self.cur_sel.zone.text .. self.cur_sel.highscores[world]
 		self.cur_sel.zone:generate()
 	end
diff --git a/game/modules/tome/dialogs/ArenaFinish.lua b/game/modules/tome/dialogs/ArenaFinish.lua
index 1109e825108f4e410268d74b5bbbb64877eb148c..321a476c8464074e53365036ad44082a1743d406 100644
--- a/game/modules/tome/dialogs/ArenaFinish.lua
+++ b/game/modules/tome/dialogs/ArenaFinish.lua
@@ -49,16 +49,15 @@ end
 
 function _M:printRanking()
 	local scores = world.arena.scores
-	if not scores[1].name then return "#LIGHT_GREEN#No high scores. This should not happen."
+	if not scores[1].name then return _t"#LIGHT_GREEN#No high scores. This should not happen."
 	else
 		local text = ""
 		local tmp = ""
 		local line = function (txt, col) return " "..col..txt.."\n" end
-		local stri = "%s (%s %s %s)\n Score %d[%s]) - Wave: %d"
 		local i = 1
 		while(scores[i] and scores[i].name) do
 			p = scores[i]
-			tmp = stri:format((p.name or "unknown"):capitalize(), p.sex or "unknown", p.race or "unknown", p.class or "unknown", p.score or "unknown", p.perk or "unknown", p.wave or -1)
+			tmp = ("%s (%s %s %s)\n Score %d[%s]) - Wave: %d"):tformat((p.name or _t"unknown"):capitalize(), p.sex or _t"unknown", p.race or _t"unknown", p.class or _t"unknown", p.score or _t"unknown", p.perk or _t"unknown", p.wave or -1)
 			if p.name == world.arena.lastScore.name and p.score == world.arena.lastScore.score and p.wave == world.arena.lastScore.wave and p.perk == world.arena.lastScore.perk then
 				text = text..line(tmp, "#YELLOW#")
 			else
@@ -149,7 +148,7 @@ function _M:use(item)
 	elseif act == "dump" then
 		game:registerDialog(require("mod.dialogs.CharacterSheet").new(self.actor))
 	elseif act == "log" then
-		game:registerDialog(require("mod.dialogs.ShowChatLog").new("Message Log", 0.6, game.uiset.logdisplay, profile.chat))
+		game:registerDialog(require("mod.dialogs.ShowChatLog").new(_t"Message Log", 0.6, game.uiset.logdisplay, profile.chat))
 	elseif act == "lichform" then
 		local t = self.actor:getTalentFromId(self.actor.T_LICHFORM)
 
@@ -166,12 +165,12 @@ end
 function _M:generateList()
 	local list = {}
 
-	if config.settings.cheat then list[#list+1] = {name="Resurrect by cheating", action="cheat"} end
-	list[#list+1] = {name=(not profile.auth and "Message Log" or "Message/Chat log (allows to talk)"), action="log"}
-	list[#list+1] = {name="Character dump", action="dump"}
-	list[#list+1] = {name="Restart the same character", action="exit", subaction="restart"}
-	list[#list+1] = {name="Restart with a new character", action="exit", subaction="restart-new"}
-	list[#list+1] = {name="Exit to main menu", action="exit", subaction="none"}
+	if config.settings.cheat then list[#list+1] = {name=_t"Resurrect by cheating", action="cheat"} end
+	list[#list+1] = {name=(not profile.auth and _t"Message Log" or _t"Message/Chat log (allows to talk)"), action="log"}
+	list[#list+1] = {name=_t"Character dump", action="dump"}
+	list[#list+1] = {name=_t"Restart the same character", action="exit", subaction="restart"}
+	list[#list+1] = {name=_t"Restart with a new character", action="exit", subaction="restart-new"}
+	list[#list+1] = {name=_t"Exit to main menu", action="exit", subaction="none"}
 
 	self.list = list
 	if self.actor:isTalentActive(self.actor.T_LICHFORM) then
diff --git a/game/modules/tome/dialogs/CharacterSheet.lua b/game/modules/tome/dialogs/CharacterSheet.lua
index 037e47c278a87af0a24c7444cfc763d7b58ebff1..0ba75e2277379b0abeeb740ef69a119d370e6fd7 100644
--- a/game/modules/tome/dialogs/CharacterSheet.lua
+++ b/game/modules/tome/dialogs/CharacterSheet.lua
@@ -77,10 +77,10 @@ function _M:init(actor, start_tab)
 		end
 	}
 	self.c_equipment.generate = function(tab)
-		tab.title = "[E]quipment: "..self.equip_set.." set"
+		tab.title = ("[E]quipment: %s set"):tformat(self.equip_set)
 		Tab.generate(tab)
 	end
-	self.b_talents_sorting = Button.new{text="Sort: "..({"Groups", "Name", "Type"})[self.talent_sorting], hide=true, width=100, fct=function()
+	self.b_talents_sorting = Button.new{text=("Sort: %s"):tformat(({_t"Groups", _t"Name", _t"Type"})[self.talent_sorting]), hide=true, width=100, fct=function()
 		self.talent_sorting = self.talent_sorting + 1
 		if self.talent_sorting > 3 then self.talent_sorting = 1 end
 
@@ -88,15 +88,15 @@ function _M:init(actor, start_tab)
 		config.settings.tome.charsheet_talent_sorting = self.talent_sorting
 		game:saveSettings("tome.charsheet_talent_sorting", ("tome.charsheet_talent_sorting = %d\n"):format(self.talent_sorting))
 
-		self.b_talents_sorting.text = "Sort: "..({"Groups", "Name", "Type"})[self.talent_sorting]
+		self.b_talents_sorting.text = ("Sort:  %s"):tformat(({_t"Groups", _t"Name", _t"Type"})[self.talent_sorting])
 		self.b_talents_sorting:generate()
 		self:switchTo("talents") -- Force a redraw
 	end}
-	self.b_show_equipment = Button.new{text="Manage [I]nventory", fct=function()
+	self.b_show_equipment = Button.new{text=_t"Manage [I]nventory", fct=function()
 		self:showInventory()
 		return
 	end}
-	self.b_levelup = Button.new{text="[L]evelup", fct=function()
+	self.b_levelup = Button.new{text=_t"[L]evelup", fct=function()
 		game.key:triggerVirtual("LEVELUP")
 		return
 	end}
@@ -105,7 +105,7 @@ function _M:init(actor, start_tab)
 
 	self.vs = Separator.new{dir="vertical", size=self.iw}
 
-	self.c_tut = Textzone.new{width=self.iw * 0.6, auto_height=true, no_color_bleed=true, font = self.font, text=[[
+	self.c_tut = Textzone.new{width=self.iw * 0.6, auto_height=true, no_color_bleed=true, font = self.font, text=_t[[
 Values #00FF00#in brackets ( )#LAST# show changes made from last character sheet checking.
 Keyboard: #00FF00#'u'#LAST# to save character dump. #00FF00#TAB key#LAST# to switch between tabs.
 Mouse: Hover over stat for info
@@ -120,13 +120,13 @@ Mouse: Hover over stat for info
 	local seconds = game.total_playtime % 60
 
 	if days > 0 then
-		playtime = ("%i day%s %i hour%s %i minute%s %s second%s"):format(days, days > 1 and "s" or "", hours, hours > 1 and "s" or "", minutes, minutes > 1 and "s" or "", seconds, seconds > 1 and "s" or "")
+		playtime = ("%i day%s %i hour%s %i minute%s %s second%s"):tformat(days, days > 1 and "s" or "", hours, hours > 1 and "s" or "", minutes, minutes > 1 and "s" or "", seconds, seconds > 1 and "s" or "")
 	elseif hours > 0 then
-		playtime = ("%i hour%s %i minute%s %s second%s"):format(hours, hours > 1 and "s" or "", minutes, minutes > 1 and "s" or "", seconds, seconds > 1 and "s" or "")
+		playtime = ("%i hour%s %i minute%s %s second%s"):tformat(hours, hours > 1 and "s" or "", minutes, minutes > 1 and "s" or "", seconds, seconds > 1 and "s" or "")
 	elseif minutes > 0 then
-		playtime = ("%i minute%s %s second%s"):format(minutes, minutes > 1 and "s" or "", seconds, seconds > 1 and "s" or "")
+		playtime = ("%i minute%s %s second%s"):tformat(minutes, minutes > 1 and "s" or "", seconds, seconds > 1 and "s" or "")
 	else
-		playtime = ("%s second%s"):format(seconds, seconds > 1 and "s" or "")
+		playtime = ("%s second%s"):tformat(seconds, seconds > 1 and "s" or "")
 	end
 
 	local all_kills_kind = self.actor.all_kills_kind or {}
@@ -134,7 +134,7 @@ Mouse: Hover over stat for info
 #GOLD#Time playing:#LAST# %s
 #GOLD#Creatures killed:           #ANTIQUE_WHITE#%d
 #GOLD#Elites/Rares/Bosses killed: #YELLOW#%d/#SALMON#%d/#ORANGE#%d
-]]):format(
+]]):tformat(
 		game.turn / game.calendar.DAY,
 		game.calendar:getMonthName(game.calendar:getDayOfYear(game.turn)),
 		playtime,
@@ -210,16 +210,16 @@ table.merge(_M.immune_types, {negative_status_effect = "negative_status_effect_i
 	planechange = table.NIL_MERGE})
 
 --- specific labels to use for certain immunity types
-_M.immune_labels = {poison = "Poison",
-	disease = "Disease", cut = "Bleed", confusion= "Confusion",
-	blind = "Blindness", silence = "Silence", disarm = "Disarm",
-	pin = "Pinning", stun = "Stun/Freeze", sleep = "Sleep",
-	fear = "Fear", knockback = "Knockback", stone = "Stoning",
-	instakill = "Instant death", teleport = "Teleportation",
-	negative_status_effect 			= "#GOLD#All Status     ",
-	mental_negative_status_effect 	= "#ORANGE#Mental Status  ",
-	physical_negative_status_effect = "#ORANGE#Physical Status",
-	spell_negative_status_effect 	= "#ORANGE#Magical Status ",
+_M.immune_labels = {poison = _t"Poison",
+	disease = _t"Disease", cut = _t"Bleed", confusion= _t"Confusion",
+	blind = _t"Blindness", silence = _t"Silence", disarm = _t"Disarm",
+	pin = _t"Pinning", stun = _t"Stun/Freeze", sleep = _t"Sleep",
+	fear = _t"Fear", knockback = _t"Knockback", stone = _t"Stoning",
+	instakill = _t"Instant death", teleport = _t"Teleportation",
+	negative_status_effect 			= _t"#GOLD#All Status     ",
+	mental_negative_status_effect 	= _t"#ORANGE#Mental Status  ",
+	physical_negative_status_effect = _t"#ORANGE#Physical Status",
+	spell_negative_status_effect 	= _t"#ORANGE#Magical Status ",
 }
 
 --- specific tooltips to use for certain immunity types
@@ -479,11 +479,11 @@ function _M:drawDialog(kind, actor_to_compare)
 
 	if player.__te4_uuid and profile.auth and profile.auth.drupid and not config.settings.disable_all_connectivity and config.settings.tome.upload_charsheet then
 		local path = "https://te4.org/characters/"..profile.auth.drupid.."/tome/"..player.__te4_uuid
-		local LinkTxt = "Online URL: #LIGHT_BLUE##{underline}#"..path.."#{normal}#"
+		local LinkTxt = ("Online URL: #LIGHT_BLUE##{underline}#%s#{normal}#"):tformat(path)
 		local Link_w, Link_h = self.font:size(LinkTxt)
 		h = self.c_desc.h - Link_h
 		w = (self.c_desc.w - Link_w) * 0.5
-		self:mouseLink(path, "You can find your character sheet online", s:drawColorStringBlended(self.font, LinkTxt, w, h, 255, 255, 255, true))
+		self:mouseLink(path, _t"You can find your character sheet online", s:drawColorStringBlended(self.font, LinkTxt, w, h, 255, 255, 255, true))
 	end
 
 	local compare_fields = function(item1, item2, field, outformat, diffoutformat, mod, isinversed, nobracets, ...)
@@ -601,30 +601,30 @@ function _M:drawDialog(kind, actor_to_compare)
 		local cur_exp, max_exp = player.exp, player:getExpChart(player.level+1)
 		h = 0
 		w = 0
-		s:drawStringBlended(self.font, "Sex  : "..((player.descriptor and player.descriptor.sex) or (player.female and "Female" or "Male")), w, h, 0, 200, 255, true) h = h + self.font_h
-		s:drawStringBlended(self.font, (player.descriptor and "Race : " or "Type : ")..((player.descriptor and player.descriptor.subrace) or player.type:capitalize()), w, h, 0, 200, 255, true) h = h + self.font_h
+		s:drawStringBlended(self.font, _t"Sex  : "..((player.descriptor and player.descriptor.sex) or (player.female and _t"Female" or _t"Male")), w, h, 0, 200, 255, true) h = h + self.font_h
+		s:drawStringBlended(self.font, (player.descriptor and _t"Race : " or _t"Type : ")..((player.descriptor and player.descriptor.subrace) or player.type:capitalize()), w, h, 0, 200, 255, true) h = h + self.font_h
 		local class_evo = ""
 		if player.descriptor and player.descriptor.class_evolution then class_evo = " ("..player.descriptor.class_evolution..")" end
-		s:drawStringBlended(self.font, (player.descriptor and "Class: " or "Stype: ")..((player.descriptor and player.descriptor.subclass) or player.subtype:capitalize())..class_evo, w, h, 0, 200, 255, true)
+		s:drawStringBlended(self.font, (player.descriptor and _t"Class: " or _t"Stype: ")..((player.descriptor and player.descriptor.subclass) or player.subtype:capitalize())..class_evo, w, h, 0, 200, 255, true)
 		if player:attr("forbid_arcane") then
-			local follow = (player.faction == "zigur" or player:attr("zigur_follower")) and "Zigur follower" or "Antimagic adherent"
+			local follow = (player.faction == "zigur" or player:attr("zigur_follower")) and _t"Zigur follower" or _t"Antimagic adherent"
 			self:mouseTooltip(self.TOOLTIP_ANTIMAGIC_USER, s:drawColorStringBlended(self.font, "#ORCHID#"..follow, w+200, h, 255, 255, 255, true))
 		end
 		h = h + self.font_h
 		s:drawStringBlended(self.font, "Size : "..(player:TextSizeCategory():capitalize()), w, h, 0, 200, 255, true) h = h + self.font_h
 		h = h + self.font_h
-		self:mouseTooltip(self.TOOLTIP_LEVEL, s:drawColorStringBlended(self.font,  "Level: #00ff00#"..player.level, w, h, 255, 255, 255, true)) h = h + self.font_h
-		self:mouseTooltip(self.TOOLTIP_LEVEL, s:drawColorStringBlended(self.font, ("Exp  : #00ff00#%2d%%"):format(100 * cur_exp / max_exp), w, h, 255, 255, 255, true)) h = h + self.font_h
-		self:mouseTooltip(self.TOOLTIP_GOLD, s:drawColorStringBlended(self.font, ("Gold : #00ff00#%0.2f"):format(player.money), w, h, 255, 255, 255, true)) h = h + self.font_h
+		self:mouseTooltip(self.TOOLTIP_LEVEL, s:drawColorStringBlended(self.font,  ("Level: #00ff00#%d"):tformat(player.level), w, h, 255, 255, 255, true)) h = h + self.font_h
+		self:mouseTooltip(self.TOOLTIP_LEVEL, s:drawColorStringBlended(self.font, ("Exp  : #00ff00#%2d%%"):tformat(100 * cur_exp / max_exp), w, h, 255, 255, 255, true)) h = h + self.font_h
+		self:mouseTooltip(self.TOOLTIP_GOLD, s:drawColorStringBlended(self.font, ("Gold : #00ff00#%0.2f"):tformat(player.money), w, h, 255, 255, 255, true)) h = h + self.font_h
 
 		h = h + self.font_h
 
-		s:drawColorStringBlended(self.font, "#LIGHT_BLUE#Resources:", w, h, 255, 255, 255, true) h = h + self.font_h
+		s:drawColorStringBlended(self.font, _t"#LIGHT_BLUE#Resources:", w, h, 255, 255, 255, true) h = h + self.font_h
 		text = compare_fields(player, actor_to_compare, "max_life", "%d", "%+.0f max")
 		if player.die_at ~=  0 or (actor_to_compare and actor_to_compare.die_at ~=0) then 
 			text = text .. " #a08080#[" .. compare_fields(player, actor_to_compare, "die_at", "die:%+d","%+.0f", 1, true) .. "]"
 		end
-		self:mouseTooltip(self.TOOLTIP_LIFE, s:drawColorStringBlended(self.font, ("#c00000#Life    : #00ff00#%d/%s"):format(player.life, text), w, h, 255, 255, 255, true)) h = h + self.font_h
+		self:mouseTooltip(self.TOOLTIP_LIFE, s:drawColorStringBlended(self.font, ("#c00000#Life    : #00ff00#%d/%s"):tformat(player.life, text), w, h, 255, 255, 255, true)) h = h + self.font_h
 
 		-- general resources
 		for res, res_def in ipairs(player.resources_def) do
@@ -640,7 +640,7 @@ function _M:drawDialog(kind, actor_to_compare)
 					val_text = ("%d/%s"):format(player[res_def.getFunction](player), text)
 				end
 				local tt = self["TOOLTIP_"..rname:upper()] or ([[#GOLD#%s#LAST#
-%s]]):format(res_def.name, res_def.description or "No Description")
+%s]]):format(res_def.name, res_def.description or _t"No Description")
 
 				-- display regen property if present
 				if (player[res_def.regen_prop] and player[res_def.regen_prop] ~= 0) or (actor_to_compare and actor_to_compare[res_def.regen_prop] and actor_to_compare[res_def.regen_prop] ~= 0) then
@@ -652,7 +652,7 @@ function _M:drawDialog(kind, actor_to_compare)
 				self:mouseTooltip(tt, s:drawColorStringBlended(self.font, ("%s%-8.8s: #00ff00#%s "):format(res_def.color or "#WHITE#", res_def.name, val_text), w, h, 255, 255, 255, true))
 				if reg_text then
 					tt = ([[#GOLD#%s Recovery/Depletion#LAST#
-The amount of %s automatically gained or lost each turn.]]):format(res_def.name, res_def.name:lower())
+The amount of %s automatically gained or lost each turn.]]):tformat(res_def.name, res_def.name:lower())
 					self:mouseTooltip(tt, s:drawColorStringBlended(self.font, " "..reg_text, self.w*.17, h, 255, 255, 255, true))
 				end
 				h = h + self.font_h
@@ -662,8 +662,8 @@ The amount of %s automatically gained or lost each turn.]]):format(res_def.name,
 		-- special resources
 		if player:getMaxFeedback() > 0 then
 			text = compare_fields(player, actor_to_compare, "psionic_feedback_max", "%d", "%+.0f")
-			local tt = self.TOOLTIP_FEEDBACK..("Current Feedback gain is %0.1f%% of damage taken."):format(player:callTalent(player.T_FEEDBACK_POOL, "getFeedbackRatio")*100)
-			self:mouseTooltip(tt, s:drawColorStringBlended(self.font, ("#7fffd4#Feedback: #00ff00#%d/%s"):format(player:getFeedback(), text), w, h, 255, 255, 255, true))
+			local tt = self.TOOLTIP_FEEDBACK..("Current Feedback gain is %0.1f%% of damage taken."):tformat(player:callTalent(player.T_FEEDBACK_POOL, "getFeedbackRatio")*100)
+			self:mouseTooltip(tt, s:drawColorStringBlended(self.font, ("#7fffd4#Feedback: #00ff00#%d/%s"):tformat(player:getFeedback(), text), w, h, 255, 255, 255, true))
 			local decay_text = compare_fields(player, actor_to_compare, function(act) return act:getFeedbackDecay() end, (player:getFeedbackDecay() > 0 and "#LIGHT_RED#" or "#LIGHT_GREEN#").."%+0.1f", "%+.1f", -1, true)
 			if decay_text then
 				self:mouseTooltip(tt, s:drawColorStringBlended(self.font, " "..decay_text, self.w*.17, h, 255, 255, 255, true)) 
@@ -680,81 +680,81 @@ The amount of %s automatically gained or lost each turn.]]):format(res_def.name,
 		local color = player.global_speed
 		color = color >= 1 and "#LIGHT_GREEN#" or "#LIGHT_RED#"
 		text = compare_fields(player, actor_to_compare, "global_speed", color.."%.1f%%", "%+.1f%%",100)
-		self:mouseTooltip(self.TOOLTIP_SPEED_GLOBAL,   s:drawColorStringBlended(self.font, ("Global speed  : #00ff00#%s"):format(text), w, h, 255, 255, 255, true)) h = h + self.font_h
+		self:mouseTooltip(self.TOOLTIP_SPEED_GLOBAL,   s:drawColorStringBlended(self.font, ("Global speed  : #00ff00#%s"):tformat(text), w, h, 255, 255, 255, true)) h = h + self.font_h
 		color = 1/player:getSpeed("movement")
 		color = color >= 1 and "#LIGHT_GREEN#" or "#LIGHT_RED#"
 		text = compare_fields(player, actor_to_compare, function(actor) return (1/actor:getSpeed("movement")) end, color.."%.1f%%", "%+.1f%%", 100)
-		self:mouseTooltip(self.TOOLTIP_SPEED_MOVEMENT, s:drawColorStringBlended(self.font, ("Movement speed: #00ff00#%s"):format(text), w, h, 255, 255, 255, true)) h = h + self.font_h
+		self:mouseTooltip(self.TOOLTIP_SPEED_MOVEMENT, s:drawColorStringBlended(self.font, ("Movement speed: #00ff00#%s"):tformat(text), w, h, 255, 255, 255, true)) h = h + self.font_h
 		color = 1/player:getSpeed("spell")
 		color = color >= 1 and "#LIGHT_GREEN#" or "#LIGHT_RED#"
 		text = compare_fields(player, actor_to_compare, function(actor, ...) return 1/actor:getSpeed("spell") end, color.."%.1f%%", "%+.1f%%", 100)
-		self:mouseTooltip(self.TOOLTIP_SPEED_SPELL,    s:drawColorStringBlended(self.font, ("Spell speed   : #00ff00#%s"):format(text), w, h, 255, 255, 255, true)) h = h + self.font_h
+		self:mouseTooltip(self.TOOLTIP_SPEED_SPELL,    s:drawColorStringBlended(self.font, ("Spell speed   : #00ff00#%s"):tformat(text), w, h, 255, 255, 255, true)) h = h + self.font_h
 
 		color = 1/player:getSpeed("weapon")
 		color = color >= 1 and "#LIGHT_GREEN#" or "#LIGHT_RED#"
 		text = compare_fields(player, actor_to_compare, function(actor, ...) return 1/actor:getSpeed("weapon") end, color.."%.1f%%", "%+.1f%%", 100)
-		self:mouseTooltip(self.TOOLTIP_SPEED_ATTACK,   s:drawColorStringBlended(self.font, ("Attack speed  : #00ff00#%s"):format(text), w, h, 255, 255, 255, true)) h = h + self.font_h
+		self:mouseTooltip(self.TOOLTIP_SPEED_ATTACK,   s:drawColorStringBlended(self.font, ("Attack speed  : #00ff00#%s"):tformat(text), w, h, 255, 255, 255, true)) h = h + self.font_h
 		color = 1/player:getSpeed("mind")
 		color = color >= 1 and "#LIGHT_GREEN#" or "#LIGHT_RED#"
 		text = compare_fields(player, actor_to_compare, function(actor, ...) return 1/actor:getSpeed("mind") end, color.."%.1f%%", "%+.1f%%", 100)
-		self:mouseTooltip(self.TOOLTIP_SPEED_MENTAL,   s:drawColorStringBlended(self.font, ("Mental speed  : #00ff00#%s"):format(text), w, h, 255, 255, 255, true)) h = h + self.font_h
+		self:mouseTooltip(self.TOOLTIP_SPEED_MENTAL,   s:drawColorStringBlended(self.font, ("Mental speed  : #00ff00#%s"):tformat(text), w, h, 255, 255, 255, true)) h = h + self.font_h
 		h = h + self.font_h
 		if player.died_times then
 			text = compare_fields(player, actor_to_compare, function(actor) return #actor.died_times end, "%3d", "%+.0f")
-			self:mouseTooltip(self.TOOLTIP_LIVES, s:drawColorStringBlended(self.font, ("Times died     : #00ff00#%s"):format(text), w, h, 255, 255, 255, true))
+			self:mouseTooltip(self.TOOLTIP_LIVES, s:drawColorStringBlended(self.font, ("Times died     : #00ff00#%s"):tformat(text), w, h, 255, 255, 255, true))
 			if player:attr("blood_life") then
-				self:mouseTooltip(self.TOOLTIP_BLOOD_LIFE, s:drawColorStringBlended(self.font, "#DARK_RED#Blood of Life", w+200, h, 255, 255, 255, true))
+				self:mouseTooltip(self.TOOLTIP_BLOOD_LIFE, s:drawColorStringBlended(self.font, _t"#DARK_RED#Blood of Life", w+200, h, 255, 255, 255, true))
 			end
 			h = h + self.font_h
 		end
 		if player.easy_mode_lifes then
 			text = compare_fields(player, actor_to_compare, "easy_mode_lifes", "%3d", "%+.0f")
-			self:mouseTooltip(self.TOOLTIP_LIVES, s:drawColorStringBlended(self.font,   ("Lives left     : #00ff00#%s"):format(text), w, h, 255, 255, 255, true)) h = h + self.font_h
+			self:mouseTooltip(self.TOOLTIP_LIVES, s:drawColorStringBlended(self.font,   ("Lives left     : #00ff00#%s"):tformat(text), w, h, 255, 255, 255, true)) h = h + self.font_h
 		end
 		color = player.healing_factor
 		color = color >= 1 and "#LIGHT_GREEN#" or "#LIGHT_RED#"
 		text = compare_fields(player, actor_to_compare, function(actor) return util.bound((actor.healing_factor or 1), 0, 2.5) end, color.."%.1f%%", "%+.1f%%", 100)
-		self:mouseTooltip(self.TOOLTIP_HEALING_MOD, s:drawColorStringBlended(self.font, ("Healing mod.   : #00ff00#%s"):format(text), w, h, 255, 255, 255, true)) h = h + self.font_h
+		self:mouseTooltip(self.TOOLTIP_HEALING_MOD, s:drawColorStringBlended(self.font, ("Healing mod.   : #00ff00#%s"):tformat(text), w, h, 255, 255, 255, true)) h = h + self.font_h
 		color = player.life_regen
 		color = color >= 0 and "#LIGHT_GREEN#" or "#LIGHT_RED#"
 		text = compare_fields(player, actor_to_compare, "life_regen", color.."%.1f", "%+.1f")
-		self:mouseTooltip(self.TOOLTIP_LIFE_REGEN,  s:drawColorStringBlended(self.font, ("Life regen     : #00ff00#%s"):format(text), w, h, 255, 255, 255, true)) h = h + self.font_h
+		self:mouseTooltip(self.TOOLTIP_LIFE_REGEN,  s:drawColorStringBlended(self.font, ("Life regen     : #00ff00#%s"):tformat(text), w, h, 255, 255, 255, true)) h = h + self.font_h
 		text = compare_fields(player, actor_to_compare, function(actor) return actor.life_regen * util.bound((actor.healing_factor or 1), 0, 2.5) end, "%.2f", "%+.2f")
-		self:mouseTooltip(self.TOOLTIP_LIFE_REGEN,  s:drawColorStringBlended(self.font, ("(with heal mod): #00ff00#%s"):format(text), w, h, 255, 255, 255, true)) h = h + self.font_h
+		self:mouseTooltip(self.TOOLTIP_LIFE_REGEN,  s:drawColorStringBlended(self.font, ("(with heal mod): #00ff00#%s"):tformat(text), w, h, 255, 255, 255, true)) h = h + self.font_h
 
 		h = h + self.font_h
-		s:drawColorStringBlended(self.font, "#LIGHT_BLUE#Vision:", w, h, 255, 255, 255, true) h = h + self.font_h
+		s:drawColorStringBlended(self.font, _t"#LIGHT_BLUE#Vision:", w, h, 255, 255, 255, true) h = h + self.font_h
 		text = compare_fields(player, actor_to_compare, "lite", "%d", "%+.0f")
 		if text then
-			self:mouseTooltip(self.TOOLTIP_VISION_LITE,  s:drawColorStringBlended(self.font, ("Light radius   : #00ff00#%s"):format(text), w, h, 255, 255, 255, true)) h = h + self.font_h
+			self:mouseTooltip(self.TOOLTIP_VISION_LITE,  s:drawColorStringBlended(self.font, ("Light radius   : #00ff00#%s"):tformat(text), w, h, 255, 255, 255, true)) h = h + self.font_h
 		end
 		text = compare_fields(player, actor_to_compare, "sight", "%d", "%+.0f")
 		if text then
-			self:mouseTooltip(self.TOOLTIP_VISION_SIGHT,  s:drawColorStringBlended(self.font, ("Vision range   : #00ff00#%s"):format(text), w, h, 255, 255, 255, true)) h = h + self.font_h
+			self:mouseTooltip(self.TOOLTIP_VISION_SIGHT,  s:drawColorStringBlended(self.font, ("Vision range   : #00ff00#%s"):tformat(text), w, h, 255, 255, 255, true)) h = h + self.font_h
 		end
 		text = compare_fields(player, actor_to_compare, function(actor) return (actor:attr("infravision") or actor:attr("heightened_senses")) and math.max((actor.heightened_senses or 0), (actor.infravision or 0)) end, "%d", "%+.0f")
 		if text then
-			self:mouseTooltip(self.TOOLTIP_VISION_INFRA,  s:drawColorStringBlended(self.font, ("Heighten Senses: #00ff00#%s"):format(text), w, h, 255, 255, 255, true)) h = h + self.font_h
+			self:mouseTooltip(self.TOOLTIP_VISION_INFRA,  s:drawColorStringBlended(self.font, ("Heighten Senses: #00ff00#%s"):tformat(text), w, h, 255, 255, 255, true)) h = h + self.font_h
 		end
 		text = compare_fields(player, actor_to_compare, function(actor) return actor:attr("see_traps") and (actor:attr("see_traps") or 0) end, "%.1f", "%+.1f")
 		if text then
-			self:mouseTooltip(self.TOOLTIP_SEE_TRAPS,  s:drawColorStringBlended(self.font, ("Detect Traps   : #00ff00#%s"):format(text), w, h, 255, 255, 255, true)) h = h + self.font_h
+			self:mouseTooltip(self.TOOLTIP_SEE_TRAPS,  s:drawColorStringBlended(self.font, ("Detect Traps   : #00ff00#%s"):tformat(text), w, h, 255, 255, 255, true)) h = h + self.font_h
 		end
 		text = compare_fields(player, actor_to_compare, function(who) return who:attr("stealth") and who.stealth + (who:attr("inc_stealth") or 0) end, "%.1f", "%+.1f")
 		if text then
-			self:mouseTooltip(self.TOOLTIP_VISION_STEALTH,  s:drawColorStringBlended(self.font, ("Stealth        : #00ff00#%s"):format(text), w, h, 255, 255, 255, true)) h = h + self.font_h
+			self:mouseTooltip(self.TOOLTIP_VISION_STEALTH,  s:drawColorStringBlended(self.font, ("Stealth        : #00ff00#%s"):tformat(text), w, h, 255, 255, 255, true)) h = h + self.font_h
 		end
 		text = compare_fields(player, actor_to_compare, function(actor) return actor:combatSeeStealth() end, "%.1f", "%+.1f")
 		if text then
-			self:mouseTooltip(self.TOOLTIP_VISION_SEE_STEALTH,  s:drawColorStringBlended(self.font, ("See stealth    : #00ff00#%s"):format(text), w, h, 255, 255, 255, true)) h = h + self.font_h
+			self:mouseTooltip(self.TOOLTIP_VISION_SEE_STEALTH,  s:drawColorStringBlended(self.font, ("See stealth    : #00ff00#%s"):tformat(text), w, h, 255, 255, 255, true)) h = h + self.font_h
 		end
 		text = compare_fields(player, actor_to_compare, "invisible", "%.1f", "%+.1f")
 		if text then
-			self:mouseTooltip(self.TOOLTIP_VISION_INVISIBLE,  s:drawColorStringBlended(self.font, ("Invisibility   : #00ff00#%s"):format(text), w, h, 255, 255, 255, true)) h = h + self.font_h
+			self:mouseTooltip(self.TOOLTIP_VISION_INVISIBLE,  s:drawColorStringBlended(self.font, ("Invisibility   : #00ff00#%s"):tformat(text), w, h, 255, 255, 255, true)) h = h + self.font_h
 		end
 		text = compare_fields(player, actor_to_compare, function(actor) return actor:combatSeeInvisible() end, "%.1f", "%+.1f")
 		if text then
-			self:mouseTooltip(self.TOOLTIP_VISION_SEE_INVISIBLE,  s:drawColorStringBlended(self.font, ("See invisible  : #00ff00#%s"):format(text), w, h, 255, 255, 255, true)) h = h + self.font_h
+			self:mouseTooltip(self.TOOLTIP_VISION_SEE_INVISIBLE,  s:drawColorStringBlended(self.font, ("See invisible  : #00ff00#%s"):tformat(text), w, h, 255, 255, 255, true)) h = h + self.font_h
 		end
 
 		local any_esp = false
@@ -786,7 +786,7 @@ The amount of %s automatically gained or lost each turn.]]):format(res_def.name,
 		if any_esp then
 			text = compare_fields(player, actor_to_compare, "esp_range", "%d", "%+.0f")
 			if text then
-				self:mouseTooltip(self.TOOLTIP_ESP_RANGE,  s:drawColorStringBlended(self.font, ("Telepathy range: #00ff00#%s"):format(text), w, h, 255, 255, 255, true)) h = h + self.font_h
+				self:mouseTooltip(self.TOOLTIP_ESP_RANGE,  s:drawColorStringBlended(self.font, ("Telepathy range: #00ff00#%s"):tformat(text), w, h, 255, 255, 255, true)) h = h + self.font_h
 			end
 		end
 
@@ -797,7 +797,7 @@ The amount of %s automatically gained or lost each turn.]]):format(res_def.name,
 		h = 0
 		w = self.w * 0.5
 
-		self:mouseTooltip(self.TOOLTIP_STATS, s:drawColorStringBlended(self.font, "#LIGHT_BLUE#Stats:        Base/Current", w, h, 255, 255, 255, true)) h = h + self.font_h
+		self:mouseTooltip(self.TOOLTIP_STATS, s:drawColorStringBlended(self.font, _t"#LIGHT_BLUE#Stats:        Base/Current", w, h, 255, 255, 255, true)) h = h + self.font_h
 		local print_stat = function(stat, name, tooltip)
 			local StatVal = player:getStat(stat, nil, nil, true)
 			local StatTxt = ""
@@ -824,7 +824,7 @@ The amount of %s automatically gained or lost each turn.]]):format(res_def.name,
 
 		local nb_inscriptions = 0
 		for i = 1, player.max_inscriptions do if player.inscriptions[i] then nb_inscriptions = nb_inscriptions + 1 end end
-		self:mouseTooltip(self.TOOLTIP_INSCRIPTIONS, s:drawColorStringBlended(self.font, ("#AQUAMARINE#Inscriptions (%d/%d)"):format(nb_inscriptions, player.max_inscriptions), w, h, 255, 255, 255, true)) h = h + self.font_h
+		self:mouseTooltip(self.TOOLTIP_INSCRIPTIONS, s:drawColorStringBlended(self.font, ("#AQUAMARINE#Inscriptions (%d/%d)"):tformat(nb_inscriptions, player.max_inscriptions), w, h, 255, 255, 255, true)) h = h + self.font_h
 		for i = 1, player.max_inscriptions do if player.inscriptions[i] then
 			local t = player:getTalentFromId("T_"..player.inscriptions[i])
 			local desc = player:getTalentFullDescription(t)
@@ -833,19 +833,19 @@ The amount of %s automatically gained or lost each turn.]]):format(res_def.name,
 
 		if any_esp then
 			h = h + self.font_h
-			self:mouseTooltip(self.TOOLTIP_ESP,  s:drawColorStringBlended(self.font, ("Telepathy of: "), w, h, 255, 255, 255, true)) h = h + self.font_h
+			self:mouseTooltip(self.TOOLTIP_ESP,  s:drawColorStringBlended(self.font, _t("Telepathy of: "), w, h, 255, 255, 255, true)) h = h + self.font_h
 			if not esps_compare["All"] or not esps_compare["All"][2] or esps_compare["All"][2] == 0 then
 				for type, v in pairs(esps_compare) do
 					self:mouseTooltip(self.TOOLTIP_ESP,  s:drawColorStringBlended(self.font, ("%s%s "):format(v[2] and (v[1] and "#GOLD#" or "#00ff00#") or "#ff0000#", type:capitalize()), w, h, 255, 255, 255, true)) h = h + self.font_h
 				end
 			else
-				self:mouseTooltip(self.TOOLTIP_ESP_ALL,  s:drawColorStringBlended(self.font, ("%sAll "):format(esps_compare["All"][2] and (esps_compare["All"][1] and "#GOLD#" or "#00ff00#") or "#ff0000#"), w, h, 255, 255, 255, true)) h = h + self.font_h
+				self:mouseTooltip(self.TOOLTIP_ESP_ALL,  s:drawColorStringBlended(self.font, ("%sAll "):tformat(esps_compare["All"][2] and (esps_compare["All"][1] and "#GOLD#" or "#00ff00#") or "#ff0000#"), w, h, 255, 255, 255, true)) h = h + self.font_h
 			end
 		end
 
 		h = 0
 		w = self.w * 0.77
-		s:drawColorStringBlended(self.font, "#LIGHT_BLUE#Current effects:", w, h, 255, 255, 255, true) h = h + self.font_h
+		s:drawColorStringBlended(self.font, _t"#LIGHT_BLUE#Current effects:", w, h, 255, 255, 255, true) h = h + self.font_h
 		for tid, act in pairs(player.sustain_talents) do
 			if act then
 				local t = player:getTalentFromId(tid)
@@ -926,43 +926,43 @@ The amount of %s automatically gained or lost each turn.]]):format(res_def.name,
 			local combatc = actor_to_compare and get_combat_stats(actor_to_compare, type, inven_id, item) or {}
 			local color
 			local weap_type = combat.talented or table.get(combat.mean, "talented")
-			local text2 = (combat.obj and combat.obj.slot_forbid == "OFFHAND" and "Two-Handed, " or "")..(weap_type and weap_type or "")
-			s:drawColorStringBlended(self.font, (text or "Weapon")..(weap_type and " ("..text2..")" or "")..":", w, h, 255, 255, 255, true) h = h + self.font_h
+			local text2 = (combat.obj and combat.obj.slot_forbid == "OFFHAND" and _t"Two-Handed, " or "")..(weap_type and weap_type or "")
+			s:drawColorStringBlended(self.font, (text or _t"Weapon")..(weap_type and " ("..text2..")" or "")..":", w, h, 255, 255, 255, true) h = h + self.font_h
 
 			text = compare_fields(player, actor_to_compare,
 				function(actor, ...)
 					return actor == actor_to_compare and combatc.atk or combat.atk
 				end,
 				"%3d", "%+.0f", 1, false, false, mean, dam)
-			self:mouseTooltip(self.TOOLTIP_COMBAT_ATTACK, s:drawColorStringBlended(self.font, ("Accuracy     : #00ff00#%s"):format(text), w, h, 255, 255, 255, true)) h = h + self.font_h
+			self:mouseTooltip(self.TOOLTIP_COMBAT_ATTACK, s:drawColorStringBlended(self.font, ("Accuracy     : #00ff00#%s"):tformat(text), w, h, 255, 255, 255, true)) h = h + self.font_h
 			text = compare_fields(player, actor_to_compare,
 				function(actor, ...)
 					return actor == actor_to_compare and combatc.dmg or combat.dmg
 				end,
 				"%3d", "%+.0f", 1, false, false, dam)
-			self:mouseTooltip(self.TOOLTIP_COMBAT_DAMAGE, s:drawColorStringBlended(self.font, ("Damage       : #00ff00#%s"):format(text), w, h, 255, 255, 255, true))
+			self:mouseTooltip(self.TOOLTIP_COMBAT_DAMAGE, s:drawColorStringBlended(self.font, ("Damage       : #00ff00#%s"):tformat(text), w, h, 255, 255, 255, true))
 			if combat.block then -- or combatc and combatc.block then
 				text = compare_fields(player, actor_to_compare, function(actor, ...) return actor == actor_to_compare and ((combatc.block or 0) + (actor:attr("block_bonus") or 0)) or ((combat.block or 0) + (actor:attr("block_bonus") or 0)) end, "%3d", "%+.0f", 1, false, false, dam)
-				self:mouseTooltip(self.TOOLTIP_COMBAT_BLOCK, s:drawColorStringBlended(self.font, ("Block : #00ff00#%s"):format(text), self.w*.14, h, 255, 255, 255, true))-- h = h + self.font_h
+				self:mouseTooltip(self.TOOLTIP_COMBAT_BLOCK, s:drawColorStringBlended(self.font, ("Block : #00ff00#%s"):tformat(text), self.w*.14, h, 255, 255, 255, true))-- h = h + self.font_h
 			end
 			h = h + self.font_h
 
 			text = compare_fields(player, actor_to_compare, function(actor, ...) return actor == actor_to_compare and combatc.apr or combat.apr end, "%3d", "%+.0f", 1, false, false, dam)
-			self:mouseTooltip(self.TOOLTIP_COMBAT_APR,    s:drawColorStringBlended(self.font, ("APR          : #00ff00#%s"):format(text), w, h, 255, 255, 255, true)) h = h + self.font_h
+			self:mouseTooltip(self.TOOLTIP_COMBAT_APR,    s:drawColorStringBlended(self.font, ("APR          : #00ff00#%s"):tformat(text), w, h, 255, 255, 255, true)) h = h + self.font_h
 			text = compare_fields(player, actor_to_compare, function(actor, ...) return actor == actor_to_compare and combatc.crit or combat.crit end, "%3d%%", "%+.0f%%", 1, false, false, dam)
-			self:mouseTooltip(self.TOOLTIP_COMBAT_CRIT,   s:drawColorStringBlended(self.font, ("Crit. chance : #00ff00#%s"):format(text), w, h, 255, 255, 255, true)) h = h + self.font_h
+			self:mouseTooltip(self.TOOLTIP_COMBAT_CRIT,   s:drawColorStringBlended(self.font, ("Crit. chance : #00ff00#%s"):tformat(text), w, h, 255, 255, 255, true)) h = h + self.font_h
 			if combat.crit_power and combat.crit_power ~= 0 or combatc.crit_power and combatc.crit_power ~= 0 then
 				text = compare_fields(player, actor_to_compare, function(actor, ...) return 150 + (actor.combat_critical_power or 0) + (actor == actor_to_compare and combatc.crit_power or combat.crit_power) end, "%3d%%", "%+.0f%%", 1, false, false, dam)
-				self:mouseTooltip(self.TOOLTIP_INC_CRIT_POWER,   s:drawColorStringBlended(self.font, ("Crit. power  : #00ff00#%s"):format(text), w, h, 255, 255, 255, true)) h = h + self.font_h
+				self:mouseTooltip(self.TOOLTIP_INC_CRIT_POWER,   s:drawColorStringBlended(self.font, ("Crit. power  : #00ff00#%s"):tformat(text), w, h, 255, 255, 255, true)) h = h + self.font_h
 			end
 			color = combat.aspeed
 			color = color >= 1 and "#LIGHT_GREEN#" or "#LIGHT_RED#"
 			text = compare_fields(player, actor_to_compare, function(actor, ...) return actor == actor_to_compare and combatc.aspeed or combat.aspeed end, color.."%.1f%%", "%+.1f%%", 100, false, false, mean)
-			self:mouseTooltip(self.TOOLTIP_COMBAT_SPEED,  s:drawColorStringBlended(self.font, ("Attack Speed : #00ff00#%s"):format(text), w, h, 255, 255, 255, true)) h = h + self.font_h
+			self:mouseTooltip(self.TOOLTIP_COMBAT_SPEED,  s:drawColorStringBlended(self.font, ("Attack Speed : #00ff00#%s"):tformat(text), w, h, 255, 255, 255, true)) h = h + self.font_h
 			if combat.archery then -- display range and projectile speed
-				text = compare_fields(player, actor_to_compare, function(actor, ...) return actor == actor_to_compare and combatc.range or combat.range end, "range %2d", "%+d", 1, false, false, mean)
-				local text2 = compare_fields(player, actor_to_compare, function(actor, ...) return actor == actor_to_compare and combatc.mspeed or combat.mspeed end, "speed %3d%%", "%+.0f%%", 100, false, false, dam)
-				self:mouseTooltip(self.TOOLTIP_ARCHERY_RANGE_SPEED, s:drawColorStringBlended(self.font, ("Archery      : #00ff00#%s, %s"):format(text, text2), w, h, 255, 255, 255, true)) h = h + self.font_h
+				text = compare_fields(player, actor_to_compare, function(actor, ...) return actor == actor_to_compare and combatc.range or combat.range end, _t"range %2d", "%+d", 1, false, false, mean)
+				local text2 = compare_fields(player, actor_to_compare, function(actor, ...) return actor == actor_to_compare and combatc.mspeed or combat.mspeed end, _t"speed %3d%%", "%+.0f%%", 100, false, false, dam)
+				self:mouseTooltip(self.TOOLTIP_ARCHERY_RANGE_SPEED, s:drawColorStringBlended(self.font, ("Archery      : #00ff00#%s, %s"):tformat(text, text2), w, h, 255, 255, 255, true)) h = h + self.font_h
 			end
 		end
 
@@ -972,10 +972,10 @@ The amount of %s automatically gained or lost each turn.]]):format(res_def.name,
 		if mainhand and (#mainhand > 0) and not player:attr("disarmed") then
 			for i, o in ipairs(player:getInven(player.INVEN_MAINHAND)) do
 				if not double_weapon and o.double_weapon then double_weapon = i end
-				display_combat_stats("#LIGHT_BLUE#Main Hand", player, actor_to_compare, player.INVEN_MAINHAND, "mainhand", i) h = h + self.font_h
+				display_combat_stats(_t"#LIGHT_BLUE#Main Hand", player, actor_to_compare, player.INVEN_MAINHAND, _t"mainhand", i) h = h + self.font_h
 			end
 		else -- Handle bare-handed combat
-			display_combat_stats("#LIGHT_BLUE#Unarmed", player, actor_to_compare, player.INVEN_MAINHAND, "barehand", 1) h = h + self.font_h
+			display_combat_stats(_t"#LIGHT_BLUE#Unarmed", player, actor_to_compare, player.INVEN_MAINHAND, _t"barehand", 1) h = h + self.font_h
 		end
 		-- All weapons in off hands
 		-- Most offhand attacks are with a damage penalty, that can be reduced by talents
@@ -983,48 +983,48 @@ The amount of %s automatically gained or lost each turn.]]):format(res_def.name,
 		if player:getInven(player.INVEN_OFFHAND) then
 			for i, o in ipairs(player:getInven(player.INVEN_OFFHAND)) do
 				count = count + 1
-				display_combat_stats("#LIGHT_BLUE#Offhand"..(player:attr("disarmed") and " (disabled)" or ""), player, actor_to_compare, player.INVEN_OFFHAND, "offhand", i) h = h + self.font_h
+				display_combat_stats(("#LIGHT_BLUE#Offhand%s"):tformat(player:attr("disarmed") and _t" (disabled)" or ""), player, actor_to_compare, player.INVEN_OFFHAND, "offhand", i) h = h + self.font_h
 			end
 		end
 		-- special case: double weapon in mainhand
 		if double_weapon and count == 0 then
-			display_combat_stats("#LIGHT_BLUE#Offhand-Dual Weapon"..(player:attr("disarmed") and " (disabled)" or ""), player, actor_to_compare, player.INVEN_MAINHAND, "offhand", double_weapon) h = h + self.font_h
+			display_combat_stats(("#LIGHT_BLUE#Offhand-Dual Weapon%s"):tformat(player:attr("disarmed") and _t" (disabled)" or ""), player, actor_to_compare, player.INVEN_MAINHAND, "offhand", double_weapon) h = h + self.font_h
 		end
 		-- Psionic Focus weapon if present (only 1 slot)
 		if player:getInven(player.INVEN_PSIONIC_FOCUS) and player:attr("psi_focus_combat") then
-			display_combat_stats("#LIGHT_BLUE#Psionic Focus", player, actor_to_compare, player.INVEN_PSIONIC_FOCUS, "psionic", 1) h = h + self.font_h
+			display_combat_stats(_t"#LIGHT_BLUE#Psionic Focus", player, actor_to_compare, player.INVEN_PSIONIC_FOCUS, "psionic", 1) h = h + self.font_h
 		end
 
 		h = 0
 		w = self.w * 0.25
-		s:drawColorStringBlended(self.font, "#LIGHT_BLUE#Physical:", w, h, 255, 255, 255, true) h = h + self.font_h
+		s:drawColorStringBlended(self.font, _t"#LIGHT_BLUE#Physical:", w, h, 255, 255, 255, true) h = h + self.font_h
 		text = compare_fields(player, actor_to_compare, function(actor, ...) return actor:combatPhysicalpower() end, "%3d", "%+.0f")
-		self:mouseTooltip(self.TOOLTIP_PHYSICAL_POWER, s:drawColorStringBlended(self.font, ("Phys. Power: #00ff00#%s"):format(text), w, h, 255, 255, 255, true)) h = h + self.font_h
+		self:mouseTooltip(self.TOOLTIP_PHYSICAL_POWER, s:drawColorStringBlended(self.font, ("Phys. Power: #00ff00#%s"):tformat(text), w, h, 255, 255, 255, true)) h = h + self.font_h
 		text = compare_fields(player, actor_to_compare, function(actor, ...) return actor:combatCrit() end, "%d%%", "%+.0f%%")
-		self:mouseTooltip(self.TOOLTIP_PHYSICAL_CRIT, s:drawColorStringBlended(self.font,  ("Crit. chance: #00ff00#%s"):format(text), w, h, 255, 255, 255, true)) h = h + self.font_h
+		self:mouseTooltip(self.TOOLTIP_PHYSICAL_CRIT, s:drawColorStringBlended(self.font,  ("Crit. chance: #00ff00#%s"):tformat(text), w, h, 255, 255, 255, true)) h = h + self.font_h
 		h = h + self.font_h
-		s:drawColorStringBlended(self.font, "#LIGHT_BLUE#Magical:", w, h, 255, 255, 255, true) h = h + self.font_h
+		s:drawColorStringBlended(self.font, _t"#LIGHT_BLUE#Magical:", w, h, 255, 255, 255, true) h = h + self.font_h
 		text = compare_fields(player, actor_to_compare, function(actor, ...) return actor:combatSpellpower() end, "%3d", "%+.0f")
-		self:mouseTooltip(self.TOOLTIP_SPELL_POWER, s:drawColorStringBlended(self.font, ("Spellpower  : #00ff00#%s"):format(text), w, h, 255, 255, 255, true)) h = h + self.font_h
+		self:mouseTooltip(self.TOOLTIP_SPELL_POWER, s:drawColorStringBlended(self.font, ("Spellpower  : #00ff00#%s"):tformat(text), w, h, 255, 255, 255, true)) h = h + self.font_h
 		text = compare_fields(player, actor_to_compare, function(actor, ...) return actor:combatSpellCrit() end, "%d%%", "%+.0f%%")
-		self:mouseTooltip(self.TOOLTIP_SPELL_CRIT, s:drawColorStringBlended(self.font,  ("Crit. chance: #00ff00#%s"):format(text), w, h, 255, 255, 255, true)) h = h + self.font_h
+		self:mouseTooltip(self.TOOLTIP_SPELL_CRIT, s:drawColorStringBlended(self.font,  ("Crit. chance: #00ff00#%s"):tformat(text), w, h, 255, 255, 255, true)) h = h + self.font_h
 		color = 1/player:combatSpellSpeed()
 		color = color >= 1 and "#LIGHT_GREEN#" or "#LIGHT_RED#"
 		text = compare_fields(player, actor_to_compare, function(actor, ...) return 1/actor:combatSpellSpeed() end, color.."%.1f%%", "%+.1f%%", 100)
-		self:mouseTooltip(self.TOOLTIP_SPELL_SPEED, s:drawColorStringBlended(self.font, ("Spell speed : #00ff00#%s"):format(text), w, h, 255, 255, 255, true)) h = h + self.font_h
+		self:mouseTooltip(self.TOOLTIP_SPELL_SPEED, s:drawColorStringBlended(self.font, ("Spell speed : #00ff00#%s"):tformat(text), w, h, 255, 255, 255, true)) h = h + self.font_h
 		text = compare_fields(player, actor_to_compare, function(actor, ...) return (1 - (actor.spell_cooldown_reduction or 0)) * 100 end, "%3d%%", "%+.0f%%", nil, true)
-		self:mouseTooltip(self.TOOLTIP_SPELL_COOLDOWN  , s:drawColorStringBlended(self.font,   ("Spell cooldown: #00ff00#%s"):format(text), w, h, 255, 255, 255, true)) h = h + self.font_h
+		self:mouseTooltip(self.TOOLTIP_SPELL_COOLDOWN  , s:drawColorStringBlended(self.font,   ("Spell cooldown: #00ff00#%s"):tformat(text), w, h, 255, 255, 255, true)) h = h + self.font_h
 		h = h + self.font_h
-		s:drawColorStringBlended(self.font, "#LIGHT_BLUE#Mental:", w, h, 255, 255, 255, true) h = h + self.font_h
+		s:drawColorStringBlended(self.font, _t"#LIGHT_BLUE#Mental:", w, h, 255, 255, 255, true) h = h + self.font_h
 		text = compare_fields(player, actor_to_compare, function(actor, ...) return actor:combatMindpower() end, "%3d", "%+.0f")
 		dur_text = ("%d"):format(math.floor(player:combatMindpower()/5))
-		self:mouseTooltip(self.TOOLTIP_MINDPOWER, s:drawColorStringBlended(self.font, ("Mindpower: #00ff00#%s"):format(text, dur_text), w, h, 255, 255, 255, true)) h = h + self.font_h
+		self:mouseTooltip(self.TOOLTIP_MINDPOWER, s:drawColorStringBlended(self.font, ("Mindpower: #00ff00#%s"):tformat(text, dur_text), w, h, 255, 255, 255, true)) h = h + self.font_h
 		text = compare_fields(player, actor_to_compare, function(actor, ...) return actor:combatMindCrit() end, "%d%%", "%+.0f%%")
-		self:mouseTooltip(self.TOOLTIP_MIND_CRIT, s:drawColorStringBlended(self.font,  ("Crit. chance: #00ff00#%s"):format(text), w, h, 255, 255, 255, true)) h = h + self.font_h
+		self:mouseTooltip(self.TOOLTIP_MIND_CRIT, s:drawColorStringBlended(self.font,  ("Crit. chance: #00ff00#%s"):tformat(text), w, h, 255, 255, 255, true)) h = h + self.font_h
 		color = 1/player:combatMindSpeed()
 		color = color >= 1 and "#LIGHT_GREEN#" or "#LIGHT_RED#"
 		text = compare_fields(player, actor_to_compare, function(actor, ...) return 1/actor:combatMindSpeed() end, color.."%.1f%%", "%+.1f%%", 100)
-		self:mouseTooltip(self.TOOLTIP_MIND_SPEED, s:drawColorStringBlended(self.font, ("Mind speed : #00ff00#%s"):format(text), w, h, 255, 255, 255, true)) h = h + self.font_h
+		self:mouseTooltip(self.TOOLTIP_MIND_SPEED, s:drawColorStringBlended(self.font, ("Mind speed : #00ff00#%s"):tformat(text), w, h, 255, 255, 255, true)) h = h + self.font_h
 
 		-- Hook to display additional types of attack power
 		local hd = {"CharacterSheet:Attack:power", player=player, actor_to_compare=actor_to_compare, h=h, w=w, s=s, compare_fields = compare_fields}
@@ -1035,13 +1035,13 @@ The amount of %s automatically gained or lost each turn.]]):format(res_def.name,
 		h = 0
 		w = self.w * 0.5
 
-		s:drawColorStringBlended(self.font, "#LIGHT_BLUE#Damage Modifiers:", w, h, 255, 255, 255, true) h = h + self.font_h
+		s:drawColorStringBlended(self.font, _t"#LIGHT_BLUE#Damage Modifiers:", w, h, 255, 255, 255, true) h = h + self.font_h
 		text = compare_fields(player, actor_to_compare, function(actor, ...) return 150 + (actor.combat_critical_power or 0) end, "%3d%%", "%+.0f%%")
-		self:mouseTooltip(self.TOOLTIP_INC_CRIT_POWER  , s:drawColorStringBlended(self.font,   ("Critical mult.: #00ff00#%s"):format(text), w, h, 255, 255, 255, true)) h = h + self.font_h
+		self:mouseTooltip(self.TOOLTIP_INC_CRIT_POWER  , s:drawColorStringBlended(self.font,   ("Critical mult.: #00ff00#%s"):tformat(text), w, h, 255, 255, 255, true)) h = h + self.font_h
 
 		if player.inc_damage.all and player.inc_damage.all ~= 0 or (actor_to_compare and actor_to_compare.inc_damage.all and actor_to_compare.inc_damage.all ~= 0) then
 			text = compare_fields(player, actor_to_compare, function(actor, ...) return actor.inc_damage and actor.inc_damage.all or 0 end, "%3d%%", "%+.0f%%")
-			self:mouseTooltip(self.TOOLTIP_INC_DAMAGE_ALL, s:drawColorStringBlended(self.font, ("All damage    : #00ff00#%s"):format(text), w, h, 255, 255, 255, true)) h = h + self.font_h
+			self:mouseTooltip(self.TOOLTIP_INC_DAMAGE_ALL, s:drawColorStringBlended(self.font, ("All damage    : #00ff00#%s"):tformat(text), w, h, 255, 255, 255, true)) h = h + self.font_h
 		end
 
 		-- Specific Damage type increases
@@ -1065,7 +1065,7 @@ The amount of %s automatically gained or lost each turn.]]):format(res_def.name,
 				local valo = actor_to_compare and actor_to_compare.inc_damage_actor_type and actor_to_compare.inc_damage_actor_type[t] or 0
 				if valn~=0 or valo~=0 then
 					text = compare_fields(player, actor_to_compare, function(actor, ...) return actor == player and valn or actor == actor_to_compare and valo or 0 end, "%+3d%%", "%+.0f%%")
-					self:mouseTooltip(self.TOOLTIP_INC_DAMAGE_ACTOR, s:drawColorStringBlended(self.font, ("%s%-20s: #00ff00#%s"):format("#ORANGE#", "vs "..t:capitalize().."#LAST#", text), w, h, 255, 255, 255, true)) h = h + self.font_h
+					self:mouseTooltip(self.TOOLTIP_INC_DAMAGE_ACTOR, s:drawColorStringBlended(self.font, ("%s%-20s: #00ff00#%s"):format("#ORANGE#", _t"vs "..t:capitalize().."#LAST#", text), w, h, 255, 255, 255, true)) h = h + self.font_h
 				end
 			end
 		end
@@ -1073,14 +1073,14 @@ The amount of %s automatically gained or lost each turn.]]):format(res_def.name,
 		h = 0
 		w = self.w * 0.75
 		--Resist penetration
-		text=[[#GOLD#Restance Penetration#LAST#
+		text=_t[[#GOLD#Restance Penetration#LAST#
 Ability to reduce opponent resistances to your damage]]
-		self:mouseTooltip(text, s:drawColorStringBlended(self.font, "#LIGHT_BLUE#Damage penetration:", w, h, 255, 255, 255, true)) h = h + self.font_h
+		self:mouseTooltip(text, s:drawColorStringBlended(self.font, _t"#LIGHT_BLUE#Damage penetration:", w, h, 255, 255, 255, true)) h = h + self.font_h
 		
 		if player.resists_pen.all then
 			text = compare_fields(player, actor_to_compare, function(actor, ...) return actor.resists_pen and actor.resists_pen.all or 0 end, "%3d%%", "%+.0f%%")
 			
-			self:mouseTooltip(self.TOOLTIP_RESISTS_PEN_ALL, s:drawColorStringBlended(self.font, ("All damage    : #00ff00#%s"):format(text), w, h, 255, 255, 255, true)) h = h + self.font_h
+			self:mouseTooltip(self.TOOLTIP_RESISTS_PEN_ALL, s:drawColorStringBlended(self.font, ("All damage    : #00ff00#%s"):tformat(text), w, h, 255, 255, 255, true)) h = h + self.font_h
 		end
 
 		for i, t in pairs(DamageType.dam_def) do
@@ -1095,7 +1095,7 @@ Ability to reduce opponent resistances to your damage]]
 		-- melee project
 		if next(player.melee_project) or (actor_to_compare and next(actor_to_compare.melee_project)) then
 			h = h + self.font_h
-			self:mouseTooltip(self.TOOLTIP_MELEE_PROJECT_INNATE, s:drawColorStringBlended(self.font, "#LIGHT_BLUE#Additional Melee Damage:", w, h, 255, 255, 255, true)) h = h + self.font_h
+			self:mouseTooltip(self.TOOLTIP_MELEE_PROJECT_INNATE, s:drawColorStringBlended(self.font, _t"#LIGHT_BLUE#Additional Melee Damage:", w, h, 255, 255, 255, true)) h = h + self.font_h
 			for i, t in pairs(DamageType.dam_def) do
 				local valn = player.melee_project[DamageType[t.type]] and player:damDesc(t.type, player.melee_project[DamageType[t.type]]) or 0
 				local valo = actor_to_compare and actor_to_compare.melee_project[DamageType[t.type]] and actor_to_compare:damDesc(t, actor_to_compare.melee_project[DamageType[t.type]]) or 0
@@ -1109,7 +1109,7 @@ Ability to reduce opponent resistances to your damage]]
 		-- ranged project
 		if next(player.ranged_project) or (actor_to_compare and next(actor_to_compare.ranged_project)) then
 			h = h + self.font_h
-			self:mouseTooltip(self.TOOLTIP_RANGED_PROJECT_INNATE, s:drawColorStringBlended(self.font, "#LIGHT_BLUE#Additional Ranged Damage:", w, h, 255, 255, 255, true)) h = h + self.font_h
+			self:mouseTooltip(self.TOOLTIP_RANGED_PROJECT_INNATE, s:drawColorStringBlended(self.font, _t"#LIGHT_BLUE#Additional Ranged Damage:", w, h, 255, 255, 255, true)) h = h + self.font_h
 			for i, t in pairs(DamageType.dam_def) do
 				local valn = player.ranged_project[DamageType[t.type]] and player:damDesc(t.type, player.ranged_project[DamageType[t.type]]) or 0
 				local valo = actor_to_compare and actor_to_compare.ranged_project[DamageType[t.type]] and actor_to_compare:damDesc(t, actor_to_compare.ranged_project[DamageType[t.type]]) or 0
@@ -1126,39 +1126,39 @@ Ability to reduce opponent resistances to your damage]]
 
 		local ArmorTxt = "#LIGHT_BLUE#"
 		if player:hasHeavyArmor() then
-			ArmorTxt = ArmorTxt.."Heavy armor"
+			ArmorTxt = ArmorTxt.._t"Heavy armor"
 		elseif player:hasMassiveArmor() then
-			ArmorTxt = ArmorTxt.."Massive armor"
+			ArmorTxt = ArmorTxt.._t"Massive armor"
 		else
-			ArmorTxt = ArmorTxt.."Light armor"
+			ArmorTxt = ArmorTxt.._t"Light armor"
 		end
 
 		ArmorTxt = ArmorTxt..":"
 
 		s:drawColorStringBlended(self.font, ArmorTxt, w, h, 255, 255, 255, true) h = h + self.font_h
 		text = compare_fields(player, actor_to_compare, function(actor, ...) return actor:combatFatigue() end, "%3d%%", "%+.0f%%", 1, true)
-		self:mouseTooltip(self.TOOLTIP_FATIGUE, s:drawColorStringBlended(self.font,           ("Fatigue         : #00ff00#%s"):format(text), w, h, 255, 255, 255, true)) h = h + self.font_h
+		self:mouseTooltip(self.TOOLTIP_FATIGUE, s:drawColorStringBlended(self.font,           ("Fatigue         : #00ff00#%s"):tformat(text), w, h, 255, 255, 255, true)) h = h + self.font_h
 		text = compare_fields(player, actor_to_compare, function(actor, ...) return actor:combatArmorHardiness() end, "%3d%%", "%+.0f%%")
-		self:mouseTooltip(self.TOOLTIP_ARMOR_HARDINESS,   s:drawColorStringBlended(self.font, ("Armor Hardiness : #00ff00#%s"):format(text), w, h, 255, 255, 255, true)) h = h + self.font_h
+		self:mouseTooltip(self.TOOLTIP_ARMOR_HARDINESS,   s:drawColorStringBlended(self.font, ("Armor Hardiness : #00ff00#%s"):tformat(text), w, h, 255, 255, 255, true)) h = h + self.font_h
 		text = compare_fields(player, actor_to_compare, function(actor, ...) return actor:combatArmor() end, "%3d", "%+.0f")
-		self:mouseTooltip(self.TOOLTIP_ARMOR,   s:drawColorStringBlended(self.font,           ("Armor           : #00ff00#%s"):format(text), w, h, 255, 255, 255, true)) h = h + self.font_h
+		self:mouseTooltip(self.TOOLTIP_ARMOR,   s:drawColorStringBlended(self.font,           ("Armor           : #00ff00#%s"):tformat(text), w, h, 255, 255, 255, true)) h = h + self.font_h
 		text = compare_fields(player, actor_to_compare, function(actor, ...) return actor:combatDefense(true) end, "%3d", "%+.0f")
-		self:mouseTooltip(self.TOOLTIP_DEFENSE, s:drawColorStringBlended(self.font,           ("Defense         : #00ff00#%s"):format(text), w, h, 255, 255, 255, true)) h = h + self.font_h
+		self:mouseTooltip(self.TOOLTIP_DEFENSE, s:drawColorStringBlended(self.font,           ("Defense         : #00ff00#%s"):tformat(text), w, h, 255, 255, 255, true)) h = h + self.font_h
 		text = compare_fields(player, actor_to_compare, function(actor, ...) return actor:combatDefenseRanged(true) end, "%3d", "%+.0f")
-		self:mouseTooltip(self.TOOLTIP_RDEFENSE,s:drawColorStringBlended(self.font,           ("Ranged Defense  : #00ff00#%s"):format(text), w, h, 255, 255, 255, true)) h = h + self.font_h
+		self:mouseTooltip(self.TOOLTIP_RDEFENSE,s:drawColorStringBlended(self.font,           ("Ranged Defense  : #00ff00#%s"):tformat(text), w, h, 255, 255, 255, true)) h = h + self.font_h
 		text = compare_fields(player, actor_to_compare, function(actor, ...) return actor:combatCritReduction()  end, "%d%%", "%+.0f%%")
-		self:mouseTooltip(self.TOOLTIP_CRIT_REDUCTION,s:drawColorStringBlended(self.font,           ("Crit. Reduction : #00ff00#%s"):format(text), w, h, 255, 255, 255, true)) h = h + self.font_h
+		self:mouseTooltip(self.TOOLTIP_CRIT_REDUCTION,s:drawColorStringBlended(self.font,           ("Crit. Reduction : #00ff00#%s"):tformat(text), w, h, 255, 255, 255, true)) h = h + self.font_h
 		text = compare_fields(player, actor_to_compare, function(actor, ...) return actor:attr("ignore_direct_crits") or 0 end, "%d%%", "%+.0f%%")
-		self:mouseTooltip(self.TOOLTIP_CRIT_SHRUG,s:drawColorStringBlended(self.font,           ("Crit. Shrug Off : #00ff00#%s"):format(text), w, h, 255, 255, 255, true)) h = h + self.font_h
+		self:mouseTooltip(self.TOOLTIP_CRIT_SHRUG,s:drawColorStringBlended(self.font,           ("Crit. Shrug Off : #00ff00#%s"):tformat(text), w, h, 255, 255, 255, true)) h = h + self.font_h
 
 		h = h + self.font_h
-		self:mouseTooltip(self.TOOLTIP_SAVES, s:drawColorStringBlended(self.font, "#LIGHT_BLUE#Saves:", w, h, 255, 255, 255, true)) h = h + self.font_h
+		self:mouseTooltip(self.TOOLTIP_SAVES, s:drawColorStringBlended(self.font, _t"#LIGHT_BLUE#Saves:", w, h, 255, 255, 255, true)) h = h + self.font_h
 		text = compare_fields(player, actor_to_compare, function(actor, ...) return math.floor(actor:combatPhysicalResist(true)) end, "%3d", "%+.0f")
-		self:mouseTooltip(self.TOOLTIP_PHYS_SAVE,   s:drawColorStringBlended(self.font, ("Physical: #00ff00#%s"):format(text), w, h, 255, 255, 255, true)) h = h + self.font_h
+		self:mouseTooltip(self.TOOLTIP_PHYS_SAVE,   s:drawColorStringBlended(self.font, ("Physical: #00ff00#%s"):tformat(text), w, h, 255, 255, 255, true)) h = h + self.font_h
 		text = compare_fields(player, actor_to_compare, function(actor, ...) return math.floor(actor:combatSpellResist(true)) end, "%3d", "%+.0f")
-		self:mouseTooltip(self.TOOLTIP_SPELL_SAVE,  s:drawColorStringBlended(self.font, ("Spell   : #00ff00#%s"):format(text), w, h, 255, 255, 255, true)) h = h + self.font_h
+		self:mouseTooltip(self.TOOLTIP_SPELL_SAVE,  s:drawColorStringBlended(self.font, ("Spell   : #00ff00#%s"):tformat(text), w, h, 255, 255, 255, true)) h = h + self.font_h
 		text = compare_fields(player, actor_to_compare, function(actor, ...) return math.floor(actor:combatMentalResist(true)) end, "%3d", "%+.0f")
-		self:mouseTooltip(self.TOOLTIP_MENTAL_SAVE, s:drawColorStringBlended(self.font, ("Mental  : #00ff00#%s"):format(text), w, h, 255, 255, 255, true)) h = h + self.font_h
+		self:mouseTooltip(self.TOOLTIP_MENTAL_SAVE, s:drawColorStringBlended(self.font, ("Mental  : #00ff00#%s"):tformat(text), w, h, 255, 255, 255, true)) h = h + self.font_h
 
 		-- Hook to display additional types of saves
 		local hd = {"CharacterSheet:Defence:saves", player=player, actor_to_compare=actor_to_compare, h=h, w=w, s=s, compare_fields = compare_fields}
@@ -1169,7 +1169,7 @@ Ability to reduce opponent resistances to your damage]]
 		h = 0
 		w = self.w * 0.25
 		-- Damage Resistance
-		self:mouseTooltip(self.TOOLTIP_RESIST_DAMAGE, s:drawColorStringBlended(self.font, "#LIGHT_BLUE#Resistances   : base / cap:", w, h, 255, 255, 255, true)) h = h + self.font_h
+		self:mouseTooltip(self.TOOLTIP_RESIST_DAMAGE, s:drawColorStringBlended(self.font, _t"#LIGHT_BLUE#Resistances   : base / cap:", w, h, 255, 255, 255, true)) h = h + self.font_h
 		if player.resists.all or actor_to_compare and actor_to_compare.resists.all then
 			local res = player.resists.all or 0
 			local reso = actor_to_compare and actor_to_compare.resists.all or res
@@ -1197,7 +1197,7 @@ Ability to reduce opponent resistances to your damage]]
 					local rdiff, capdiff = res-reso, cap-capo
 					change = ("(%s%+3.0f%%#LAST#/%s%+3.0f%%#LAST#)"):format(rdiff>0 and "#LIGHT_GREEN#" or rdiff<0 and "#RED#" or "#GREY#", rdiff, capdiff>0 and "#LIGHT_GREEN#" or capdiff<0 and "#RED#" or "#GREY#", capdiff)
 				end
-				self:mouseTooltip(self.TOOLTIP_RESIST_ABSOLUTE, s:drawColorStringBlended(self.font, ("#SALMON#%-14s: #00ff00#%3d%% / %3.0f%% %s"):format("Absolute", res, cap, change), w, h, 255, 255, 255, true)) h = h + self.font_h
+				self:mouseTooltip(self.TOOLTIP_RESIST_ABSOLUTE, s:drawColorStringBlended(self.font, ("#SALMON#%-14s: #00ff00#%3d%% / %3.0f%% %s"):format(_t"Absolute", res, cap, change), w, h, 255, 255, 255, true)) h = h + self.font_h
 			end
 		end
 		if player:attr("speed_resist") or actor_to_compare and actor_to_compare:attr("speed_resist") then
@@ -1214,7 +1214,7 @@ Ability to reduce opponent resistances to your damage]]
 				local rdiff, capdiff = res-reso, cap-capo
 				change = ("(%s%+3.0f%%#LAST#/%s%+3.0f%%#LAST#)"):format(rdiff>0 and "#LIGHT_GREEN#" or rdiff<0 and "#RED#" or "#GREY#", rdiff, capdiff>0 and "#LIGHT_GREEN#" or capdiff<0 and "#RED#" or "#GREY#", capdiff)
 			end
-			self:mouseTooltip(self.TOOLTIP_RESIST_SPEED, s:drawColorStringBlended(self.font, ("#SALMON#%-14s: #00ff00#%3d%% / %3.0f%% %s"):format("Speed Res", res, cap, change), w, h, 255, 255, 255, true)) h = h + self.font_h
+			self:mouseTooltip(self.TOOLTIP_RESIST_SPEED, s:drawColorStringBlended(self.font, ("#SALMON#%-14s: #00ff00#%3d%% / %3.0f%% %s"):format(_t"Speed Res", res, cap, change), w, h, 255, 255, 255, true)) h = h + self.font_h
 		end
 		-- Resists vs specific damage types
 		for i, t in pairs(DamageType.dam_def) do
@@ -1256,7 +1256,7 @@ Ability to reduce opponent resistances to your damage]]
 						local capdiff = cap-capo
 						change = ("(%s%+.0f%%#LAST#/%s%+.0f%%#LAST#)"):format(rdiff>0 and "#LIGHT_GREEN#" or rdiff<0 and "#RED#" or "#GREY#", rdiff, capdiff>0 and "#LIGHT_GREEN#" or capdiff<0 and "#RED#" or "#GREY#", capdiff)
 					end
-					self:mouseTooltip(self.TOOLTIP_RESIST_DAMAGE_ACTOR, s:drawColorStringBlended(self.font, ("#ORANGE#vs %-11s#LAST#: #00ff00#%3s %s"):format(t:capitalize(), vals, change), w, h, 255, 255, 255, true)) h = h + self.font_h
+					self:mouseTooltip(self.TOOLTIP_RESIST_DAMAGE_ACTOR, s:drawColorStringBlended(self.font, ("#ORANGE#vs %-11s#LAST#: #00ff00#%3s %s"):tformat(t:capitalize(), vals, change), w, h, 255, 255, 255, true)) h = h + self.font_h
 
 				end
 			end
@@ -1264,12 +1264,12 @@ Ability to reduce opponent resistances to your damage]]
 		
 		h = h + self.font_h
 		--Damage Affinities
-		s:drawColorStringBlended(self.font, "#LIGHT_BLUE#Damage affinities:", w, h, 255, 255, 255, true) h = h + self.font_h
+		s:drawColorStringBlended(self.font, _t"#LIGHT_BLUE#Damage affinities:", w, h, 255, 255, 255, true) h = h + self.font_h
 
 		if player.damage_affinity.all or (actor_to_compare and actor_to_compare.damage_affinity.all) then
 			text = compare_fields(player, actor_to_compare, function(actor, ...) return actor.damage_affinity and actor.damage_affinity.all or 0 end, "%3d%%", "%+.0f%%")
 			if text ~= "  0%" then
-				self:mouseTooltip(self.TOOLTIP_AFFINITY_ALL, s:drawColorStringBlended(self.font, ("All damage    : #00ff00#%s"):format(text), w, h, 255, 255, 255, true)) h = h + self.font_h
+				self:mouseTooltip(self.TOOLTIP_AFFINITY_ALL, s:drawColorStringBlended(self.font, ("All damage    : #00ff00#%s"):tformat(text), w, h, 255, 255, 255, true)) h = h + self.font_h
 			end
 		end
 
@@ -1287,12 +1287,12 @@ Ability to reduce opponent resistances to your damage]]
 		--Flat resists
 		if player.flat_damage_armor and next(player.flat_damage_armor) then
 			h = h + self.font_h
-			s:drawColorStringBlended(self.font, "#LIGHT_BLUE#Flat resistances:", w, h, 255, 255, 255, true) h = h + self.font_h
+			s:drawColorStringBlended(self.font, _t"#LIGHT_BLUE#Flat resistances:", w, h, 255, 255, 255, true) h = h + self.font_h
 
 			if player.flat_damage_armor.all or (actor_to_compare and actor_to_compare.flat_damage_armor.all) then
 				text = compare_fields(player, actor_to_compare, function(actor, ...) return actor:combatGetFlatResist("none") end, "%3d", "%+.0f")
 				if text ~= "  0%" then
-					self:mouseTooltip(self.TOOLTIP_FLAT_RESIST, s:drawColorStringBlended(self.font, ("All damage    : #00ff00#%s"):format(text), w, h, 255, 255, 255, true)) h = h + self.font_h
+					self:mouseTooltip(self.TOOLTIP_FLAT_RESIST, s:drawColorStringBlended(self.font, ("All damage    : #00ff00#%s"):tformat(text), w, h, 255, 255, 255, true)) h = h + self.font_h
 				end
 			end
 
@@ -1309,7 +1309,7 @@ Ability to reduce opponent resistances to your damage]]
 		-- Status Immunities
 		h = 0
 		w = self.w * 0.52
-		self:mouseTooltip(self.TOOLTIP_STATUS_IMMUNE, s:drawColorStringBlended(self.font, "#LIGHT_BLUE#Effect resistances:", w, h, 255, 255, 255, true)) h = h + self.font_h
+		self:mouseTooltip(self.TOOLTIP_STATUS_IMMUNE, s:drawColorStringBlended(self.font, _t"#LIGHT_BLUE#Effect resistances:", w, h, 255, 255, 255, true)) h = h + self.font_h
 
 		-- list the status immunities in pre-sorted order
 		for i, immune_type in ipairs(self.immune_order) do
@@ -1345,7 +1345,7 @@ Ability to reduce opponent resistances to your damage]]
 		h = 0
 		w = self.w * 0.75
 
-		self:mouseTooltip(self.TOOLTIP_ON_HIT_DAMAGE, s:drawColorStringBlended(self.font, "#LIGHT_BLUE#Damage when hit:", w, h, 255, 255, 255, true)) h = h + self.font_h
+		self:mouseTooltip(self.TOOLTIP_ON_HIT_DAMAGE, s:drawColorStringBlended(self.font, _t"#LIGHT_BLUE#Damage when hit:", w, h, 255, 255, 255, true)) h = h + self.font_h
 
 		for i, t in pairs(DamageType.dam_def) do
 			if player.on_melee_hit[DamageType[t.type]] and player.on_melee_hit[DamageType[t.type]] ~= 0 then
diff --git a/game/modules/tome/dialogs/CursedAuraSelect.lua b/game/modules/tome/dialogs/CursedAuraSelect.lua
index 635b9a7ceb68dfdf7d921ae75f1dbc026e2fd94e..d6fe9295bc11a691bc37ebaf65c59c14fd667e0d 100644
--- a/game/modules/tome/dialogs/CursedAuraSelect.lua
+++ b/game/modules/tome/dialogs/CursedAuraSelect.lua
@@ -33,7 +33,7 @@ function _M:init(actor)
 
 	self:generateList()
 
-	local c_desc = Textzone.new{width=350, auto_height=true, text="A malevolent aura begins to form around you. Choose your curse:"}
+	local c_desc = Textzone.new{width=350, auto_height=true, text=_t"A malevolent aura begins to form around you. Choose your curse:"}
 	local c_list = List.new{width=350, height=400, nb_items=#self.list, list=self.list, fct=function(item) self:use(item) end}
 	self:loadUI{
 		{left=0, top=0, ui=c_desc},
diff --git a/game/modules/tome/dialogs/DeathDialog.lua b/game/modules/tome/dialogs/DeathDialog.lua
index 3504ae4b2d62b5cbc2d3aae4a19992a066ba0a8d..3e0544709031ef5be599ee35162dd8aa94d8b15d 100644
--- a/game/modules/tome/dialogs/DeathDialog.lua
+++ b/game/modules/tome/dialogs/DeathDialog.lua
@@ -39,12 +39,12 @@ function _M:init(actor)
 	if self.dont_show then return end
 	if not config.settings.cheat then game:saveGame() end
 
-	local text = [[Death in #{bold}#Tales of Maj'Eyal#{normal}# is usually permanent, but if you have a means of resurrection it will be proposed in the menu below.
+	local text = _t[[Death in #{bold}#Tales of Maj'Eyal#{normal}# is usually permanent, but if you have a means of resurrection it will be proposed in the menu below.
 You can dump your character data to a file to remember her/him forever, or you can exit and try once again to survive in the wilds!
 ]]
 
 	if #game.party.on_death_show_achieved > 0 then
-		self.c_achv = Textzone.new{width=self.iw, scrollbar=true, height=100, text="#LIGHT_GREEN#During your game you#WHITE#:\n* "..table.concat(game.party.on_death_show_achieved, "\n* ")}
+		self.c_achv = Textzone.new{width=self.iw, scrollbar=true, height=100, text=("#LIGHT_GREEN#During your game you#WHITE#:\n* %s"):tformat(table.concat(game.party.on_death_show_achieved, "\n* "))}
 	end
 
 	self:setTitleShadowShader(Shader.default.textoutline and Shader.default.textoutline.shad, 1.5)
@@ -168,7 +168,7 @@ function _M:eidolonPlane()
 	game:onTickEnd(function()
 		if not self.actor:attr("infinite_lifes") then
 			self.actor:attr("easy_mode_lifes", -1)
-			game.log("#LIGHT_RED#You have %s left.", (self.actor:attr("easy_mode_lifes") and self.actor:attr("easy_mode_lifes").." life(s)") or "no more lives")
+			game.log("#LIGHT_RED#You have %s left.", (self.actor:attr("easy_mode_lifes") and self.actor:attr("easy_mode_lifes").._t" life(s)") or _t"no more lives")
 		end
 
 		local is_exploration = game.permadeath == game.PERMADEATH_INFINITE
@@ -213,7 +213,7 @@ function _M:use(item)
 	elseif act == "dump" then
 		game:registerDialog(require("mod.dialogs.CharacterSheet").new(self.actor))
 	elseif act == "log" then
-		game:registerDialog(require("mod.dialogs.ShowChatLog").new("Message Log", 0.6, game.uiset.logdisplay, profile.chat))
+		game:registerDialog(require("mod.dialogs.ShowChatLog").new(_t"Message Log", 0.6, game.uiset.logdisplay, profile.chat))
 	elseif act == "cheat" then
 		game.logPlayer(self.actor, "#LIGHT_BLUE#You resurrect! CHEATER!")
 
@@ -298,7 +298,7 @@ function _M:generateList()
 		allow_res = false
 	end
 
-	if config.settings.cheat then list[#list+1] = {name="Resurrect by cheating", action="cheat"} end
+	if config.settings.cheat then list[#list+1] = {name=_t"Resurrect by cheating", action="cheat"} end
 	if not self.actor.no_resurrect and allow_res then
 		if self.actor:hasEffect(self.actor.EFF_SEE_THREADS) and game._chronoworlds then
 			self:use{action="threads"}
@@ -330,11 +330,11 @@ function _M:generateList()
 		self.actor:fireTalentCheck("callbackOnDeathbox", self, list)
 	end
 
-	list[#list+1] = {name=(not profile.auth and "Message Log" or "Message/Chat log (allows to talk)"), action="log"}
-	list[#list+1] = {name="Character dump", action="dump"}
-	list[#list+1] = {name="Restart the same character", action="exit", subaction="restart"}
-	list[#list+1] = {name="Restart with a new character", action="exit", subaction="restart-new"}
-	list[#list+1] = {name="Exit to main menu", action="exit", subaction="none"}
+	list[#list+1] = {name=(not profile.auth and _t"Message Log" or _t"Message/Chat log (allows to talk)"), action="log"}
+	list[#list+1] = {name=_t"Character dump", action="dump"}
+	list[#list+1] = {name=_t"Restart the same character", action="exit", subaction="restart"}
+	list[#list+1] = {name=_t"Restart with a new character", action="exit", subaction="restart-new"}
+	list[#list+1] = {name=_t"Exit to main menu", action="exit", subaction="none"}
 
 	self.list = list
 	for _, item in ipairs(list) do self.possible_items[item.action] = true end
diff --git a/game/modules/tome/dialogs/Donation.lua b/game/modules/tome/dialogs/Donation.lua
index 2de2673292073c176fc247cde481f0e5bfefbd15..f8bf70ddcccb4aca5cb46bb68702b1b34a21a817 100644
--- a/game/modules/tome/dialogs/Donation.lua
+++ b/game/modules/tome/dialogs/Donation.lua
@@ -41,32 +41,32 @@ function _M:init(source)
 	local recur = false
 
 	if not profile.auth or not tonumber(profile.auth.donated) or tonumber(profile.auth.donated) <= 1 or true then
-		local donation_features = { "#GOLD#Character cosmetic customization and special tiles#WHITE#", "#GOLD#Exploration mode (infinite lives)#WHITE#", "#GOLD#Item's appearance change (Shimmering)#WHITE#"}
+		local donation_features = { _t"#GOLD#Character cosmetic customization and special tiles#WHITE#", "#GOLD#Exploration mode (infinite lives)#WHITE#", "#GOLD#Item's appearance change (Shimmering)#WHITE#"}
 		self:triggerHook{"DonationDialog:features", list=donation_features}
 
 		-- First time donation
-		desc = Textzone.new{width=self.iw, auto_height=true, text=[[Hi, I am Nicolas (DarkGod), the maker of this game.
+		desc = Textzone.new{width=self.iw, auto_height=true, text=([[Hi, I am Nicolas (DarkGod), the maker of this game.
 It is my dearest hope that you find my game enjoyable, and that you will continue to do so for many years to come!
 
 ToME is free and open-source and will stay that way, but that does not mean I can live without money, so I have come to disturb you here and now to ask for your kindness.
 If you feel that the (many) hours you have spent having fun were worth it, please consider making a donation for the future of the game.
 
-Donators are also granted a few special features: ]]..table.concatNice(donation_features, ", ", " and ").."."}
+Donators are also granted a few special features: .]]):tformat(table.concatNice(donation_features, ", ", _t" and "))}
 	else
 		-- Recurring donation
 		recur = true
-		desc = Textzone.new{width=self.iw, auto_height=true, text=[[Thank you for supporting ToME, your donation was greatly appreciated.
+		desc = Textzone.new{width=self.iw, auto_height=true, text=_t[[Thank you for supporting ToME, your donation was greatly appreciated.
 If you want to continue supporting ToME you are welcome to make a new donation or even a reccuring one which helps ensure the future of the game.
 Thank you for your kindness!]]}
 	end
 
 	self.c_donate = Numberbox.new{title=_t"Donation amount: ", number=10, max=1000, min=5, chars=5, fct=function() end}
 	self.c_recur = Checkbox.new{title=_t"Monthly donation", default=recur, fct=function() end}
-	local euro = Textzone.new{auto_width=true, auto_height=true, text=[[euro]]}
+	local euro = Textzone.new{auto_width=true, auto_height=true, text=_t[[euro]]}
 	local patreon = ButtonImage.new{alpha_unfocus=1, file="ui/patreon.png", fct=function() self:patreon() end}
 	local paypal = ButtonImage.new{alpha_unfocus=1, file="ui/paypal.png", fct=function() self:paypal() end}
-	local cancel = Button.new{text="Cancel", fct=function() self:cancel() end}
-	local patreon_explain = Textzone.new{width=patreon.w, auto_height=true, text=[[You can also make a pledge on Patreon if you prefer.]]}
+	local cancel = Button.new{text=_t"Cancel", fct=function() self:cancel() end}
+	local patreon_explain = Textzone.new{width=patreon.w, auto_height=true, text=_t[[You can also make a pledge on Patreon if you prefer.]]}
 	local hsep = Separator.new{dir="horizontal", size=self.c_donate.h+paypal.h+self.c_recur.h-cancel.h}
 
 	self:loadUI{
@@ -95,7 +95,7 @@ function _M:paypal()
 
 	local inside = jit and jit.os ~= "Linux" and core.webview and true or false
 
-	if not inside then self:simplePopup("Thank you", "Thank you, a paypal page should now open in your browser.") end
+	if not inside then self:simplePopup(_t"Thank you", _t"Thank you, a paypal page should now open in your browser.") end
 
 	local url = ("https://te4.org/ingame-donate/%s/%s/%s/EUR/%s"):format(self.c_donate.number, self.c_recur.checked and "monthly" or "onetime", (profile.auth and profile.auth.drupid) and profile.auth.drupid or "0", self.donation_source)
 
@@ -106,6 +106,6 @@ end
 function _M:patreon()
 	game:unregisterDialog(self)
 
-	self:simplePopup("Thank you", "Thank you, a Patreon page should now open in your browser.")
+	self:simplePopup(_t"Thank you", _t"Thank you, a Patreon page should now open in your browser.")
 	util.browserOpenUrl("https://www.patreon.com/darkgodone", {is_external=true})
 end
diff --git a/game/modules/tome/dialogs/GameOptions.lua b/game/modules/tome/dialogs/GameOptions.lua
index b1eb330f1ae15de80bc7e3fb887e8fe1ddf7807f..7a8631c2fe9b691d81c17d66fadc72f52b8d4f51 100644
--- a/game/modules/tome/dialogs/GameOptions.lua
+++ b/game/modules/tome/dialogs/GameOptions.lua
@@ -95,8 +95,8 @@ function _M:generateListUi()
 	local list = {}
 	local i = 0
 
-	local zone = Textzone.new{width=self.c_desc.w, height=self.c_desc.h, text=string.toTString"Select the graphical mode to display the world.\nDefault is 'Modern'.\nWhen you change it, make a new character or it may look strange."}
-	list[#list+1] = { zone=zone, name=string.toTString"#GOLD##{bold}#Graphic Mode#WHITE##{normal}#", status=function(item)
+	local zone = Textzone.new{width=self.c_desc.w, height=self.c_desc.h, text=(_t"Select the graphical mode to display the world.\nDefault is 'Modern'.\nWhen you change it, make a new character or it may look strange."):toTString()}
+	list[#list+1] = { zone=zone, name=(_t"#GOLD##{bold}#Graphic Mode#WHITE##{normal}#"):toTString(), status=function(item)
 		local ts = GraphicMode.tiles_packs[config.settings.tome.gfx.tiles]
 		local size = config.settings.tome.gfx.size or "???x???"
 		return (ts and ts.name or "???").." <"..size..">"
@@ -104,8 +104,8 @@ function _M:generateListUi()
 		game:registerDialog(GraphicMode.new())
 	end,}
 
-	local zone = Textzone.new{width=self.c_desc.w, height=self.c_desc.h, text=string.toTString"Make the movement of creatures and projectiles 'smooth'. When set to 0 movement will be instantaneous.\nThe higher this value the slower the movements will appear.\n\nNote: This does not affect the turn-based idea of the game. You can move again while your character is still moving, and it will correctly update and compute a new animation."}
-	list[#list+1] = { zone=zone, name=string.toTString"#GOLD##{bold}#Smooth creatures movement#WHITE##{normal}#", status=function(item)
+	local zone = Textzone.new{width=self.c_desc.w, height=self.c_desc.h, text=(_t"Make the movement of creatures and projectiles 'smooth'. When set to 0 movement will be instantaneous.\nThe higher this value the slower the movements will appear.\n\nNote: This does not affect the turn-based idea of the game. You can move again while your character is still moving, and it will correctly update and compute a new animation."):toTString()}
+	list[#list+1] = { zone=zone, name=(_t"#GOLD##{bold}#Smooth creatures movement#WHITE##{normal}#"):toTString(), status=function(item)
 		return tostring(config.settings.tome.smooth_move)
 	end, fct=function(item)
 		game:registerDialog(GetQuantity.new("Enter movement speed(lower is faster)", "From 0 to 60", config.settings.tome.smooth_move, 60, function(qty)
@@ -116,8 +116,8 @@ function _M:generateListUi()
 		end))
 	end,}
 
-	local zone = Textzone.new{width=self.c_desc.w, height=self.c_desc.h, text=string.toTString"Enables or disables 'twitch' movement.\nWhen enabled creatures will do small bumps when moving and attacking.#WHITE#"}
-	list[#list+1] = { zone=zone, name=string.toTString"#GOLD##{bold}#Twitch creatures movement and attack#WHITE##{normal}#", status=function(item)
+	local zone = Textzone.new{width=self.c_desc.w, height=self.c_desc.h, text=(_t"Enables or disables 'twitch' movement.\nWhen enabled creatures will do small bumps when moving and attacking.#WHITE#"):toTString()}
+	list[#list+1] = { zone=zone, name=(_t"#GOLD##{bold}#Twitch creatures movement and attack#WHITE##{normal}#"):toTString(), status=function(item)
 		return tostring(config.settings.tome.twitch_move and "enabled" or "disabled")
 	end, fct=function(item)
 		config.settings.tome.twitch_move = not config.settings.tome.twitch_move
@@ -125,8 +125,8 @@ function _M:generateListUi()
 		self.c_list:drawItem(item)
 	end,}
 
-	local zone = Textzone.new{width=self.c_desc.w, height=self.c_desc.h, text=string.toTString"Enables smooth fog-of-war.\nDisabling it will make the fog of war look 'blocky' but might gain a slight performance increase.#WHITE#"}
-	list[#list+1] = { zone=zone, name=string.toTString"#GOLD##{bold}#Smooth fog of war#WHITE##{normal}#", status=function(item)
+	local zone = Textzone.new{width=self.c_desc.w, height=self.c_desc.h, text=(_t"Enables smooth fog-of-war.\nDisabling it will make the fog of war look 'blocky' but might gain a slight performance increase.#WHITE#"):toTString()}
+	list[#list+1] = { zone=zone, name=(_t"#GOLD##{bold}#Smooth fog of war#WHITE##{normal}#"):toTString(), status=function(item)
 		return tostring(config.settings.tome.smooth_fov and "enabled" or "disabled")
 	end, fct=function(item)
 		config.settings.tome.smooth_fov = not config.settings.tome.smooth_fov
@@ -134,8 +134,8 @@ function _M:generateListUi()
 		self.c_list:drawItem(item)
 	end,}
 
-	local zone = Textzone.new{width=self.c_desc.w, height=self.c_desc.h, text=string.toTString"Select the interface look. Metal is the default one. Simple is basic but takes less screen space.\nYou must restart the game for the change to take effect."}
-	list[#list+1] = { zone=zone, name=string.toTString"#GOLD##{bold}#Interface Style#WHITE##{normal}#", status=function(item)
+	local zone = Textzone.new{width=self.c_desc.w, height=self.c_desc.h, text=(_t"Select the interface look. Metal is the default one. Simple is basic but takes less screen space.\nYou must restart the game for the change to take effect."):toTString()}
+	list[#list+1] = { zone=zone, name=(_t"#GOLD##{bold}#Interface Style#WHITE##{normal}#"):toTString(), status=function(item)
 		return tostring(config.settings.tome.ui_theme3):capitalize()
 	end, fct=function(item)
 		local uis = {{name="Dark", ui="dark"}, {name="Metal", ui="metal"}, {name="Stone", ui="stone"}, {name="Simple", ui="simple"}}
@@ -148,8 +148,8 @@ function _M:generateListUi()
 		end)
 	end,}
 
-	local zone = Textzone.new{width=self.c_desc.w, height=self.c_desc.h, text=string.toTString"Select the HUD look. 'Minimalist' is the default one.\n#LIGHT_RED#This will take effect on next restart."}
-	list[#list+1] = { zone=zone, name=string.toTString"#GOLD##{bold}#HUD Style#WHITE##{normal}#", status=function(item)
+	local zone = Textzone.new{width=self.c_desc.w, height=self.c_desc.h, text=(_t"Select the HUD look. 'Minimalist' is the default one.\n#LIGHT_RED#This will take effect on next restart."):toTString()}
+	list[#list+1] = { zone=zone, name=(_t"#GOLD##{bold}#HUD Style#WHITE##{normal}#"):toTString(), status=function(item)
 		return tostring(config.settings.tome.uiset_mode):capitalize()
 	end, fct=function(item)
 		local huds = {{name="Minimalist", ui="Minimalist"}, {name="Classic", ui="Classic"}}
@@ -163,8 +163,8 @@ function _M:generateListUi()
 	end,}
 
 	if self:isTome() and game.uiset:checkGameOption("log_lines") then	
-		local zone = Textzone.new{width=self.c_desc.w, height=self.c_desc.h, text=string.toTString"The number of lines to display in the combat log (for the Classic HUD)."}
-		list[#list+1] = { zone=zone, name=string.toTString"#GOLD##{bold}#Log lines#WHITE##{normal}#", status=function(item)
+		local zone = Textzone.new{width=self.c_desc.w, height=self.c_desc.h, text=(_t"The number of lines to display in the combat log (for the Classic HUD)."):toTString()}
+		list[#list+1] = { zone=zone, name=(_t"#GOLD##{bold}#Log lines#WHITE##{normal}#"):toTString(), status=function(item)
 			return tostring(config.settings.tome.log_lines)
 		end, fct=function(item)
 			game:registerDialog(GetQuantity.new("Log lines", "From 5 to 50", config.settings.tome.log_lines, 50, function(qty)
@@ -179,8 +179,8 @@ function _M:generateListUi()
 		end,}
 	end
 
-	local zone = Textzone.new{width=self.c_desc.w, height=self.c_desc.h, text=string.toTString"Draw faint lines to separate each grid, making visual positioning easier to see.#WHITE#"}
-	list[#list+1] = { zone=zone, name=string.toTString"#GOLD##{bold}#Display map grid lines#WHITE##{normal}#", status=function(item)
+	local zone = Textzone.new{width=self.c_desc.w, height=self.c_desc.h, text=(_t"Draw faint lines to separate each grid, making visual positioning easier to see.#WHITE#"):toTString()}
+	list[#list+1] = { zone=zone, name=(_t"#GOLD##{bold}#Display map grid lines#WHITE##{normal}#"):toTString(), status=function(item)
 		return tostring(config.settings.tome.show_grid_lines and "enabled" or "disabled")
 	end, fct=function(item)
 		config.settings.tome.show_grid_lines = not config.settings.tome.show_grid_lines
@@ -189,8 +189,8 @@ function _M:generateListUi()
 		if self:isTome() then game:createMapGridLines() end
 	end,}
 
-	local zone = Textzone.new{width=self.c_desc.w, height=self.c_desc.h, text=string.toTString"Select the fonts look. Fantasy is the default one. Basic is simplified and smaller.\nYou must restart the game for the change to take effect."}
-	list[#list+1] = { zone=zone, name=string.toTString"#GOLD##{bold}#Font Style#WHITE##{normal}#", status=function(item)
+	local zone = Textzone.new{width=self.c_desc.w, height=self.c_desc.h, text=(_t"Select the fonts look. Fantasy is the default one. Basic is simplified and smaller.\nYou must restart the game for the change to take effect."):toTString()}
+	list[#list+1] = { zone=zone, name=(_t"#GOLD##{bold}#Font Style#WHITE##{normal}#"):toTString(), status=function(item)
 		return tostring(config.settings.tome.fonts.type):capitalize()
 	end, fct=function(item)
 		local list = FontPackage:list()
@@ -202,8 +202,8 @@ function _M:generateListUi()
 		end)
 	end,}
 
-	local zone = Textzone.new{width=self.c_desc.w, height=self.c_desc.h, text=string.toTString"Select the fonts size.\nYou must restart the game for the change to take effect."}
-	list[#list+1] = { zone=zone, name=string.toTString"#GOLD##{bold}#Font Size#WHITE##{normal}#", status=function(item)
+	local zone = Textzone.new{width=self.c_desc.w, height=self.c_desc.h, text=(_t"Select the fonts size.\nYou must restart the game for the change to take effect."):toTString()}
+	list[#list+1] = { zone=zone, name=(_t"#GOLD##{bold}#Font Size#WHITE##{normal}#"):toTString(), status=function(item)
 		return tostring(config.settings.tome.fonts.size):capitalize()
 	end, fct=function(item)
 		Dialog:listPopup("Font size", "Select font", {{name="Normal", size="normal"},{name="Small", size="small"},{name="Big", size="big"},}, 300, 200, function(sel)
@@ -214,8 +214,8 @@ function _M:generateListUi()
 		end)
 	end,}
 
-	local zone = Textzone.new{width=self.c_desc.w, height=self.c_desc.h, text=string.toTString"How many seconds before log and chat lines begin to fade away.\nIf set to 0 the logs will never fade away."}
-	list[#list+1] = { zone=zone, name=string.toTString"#GOLD##{bold}#Log fade time#WHITE##{normal}#", status=function(item)
+	local zone = Textzone.new{width=self.c_desc.w, height=self.c_desc.h, text=(_t"How many seconds before log and chat lines begin to fade away.\nIf set to 0 the logs will never fade away."):toTString()}
+	list[#list+1] = { zone=zone, name=(_t"#GOLD##{bold}#Log fade time#WHITE##{normal}#"):toTString(), status=function(item)
 		return tostring(config.settings.tome.log_fade)
 	end, fct=function(item)
 		game:registerDialog(GetQuantity.new("Fade time (in seconds)", "From 0 to 20", config.settings.tome.log_fade, 20, function(qty)
@@ -230,8 +230,8 @@ function _M:generateListUi()
 		end, 0))
 	end,}
 
-	local zone = Textzone.new{width=self.c_desc.w, height=self.c_desc.h, text=string.toTString"How long will flying text messages be visible on screen.\nThe range is 1 (very short) to 100 (10x slower) than the normal duration, which varies with each individual message."}
-	list[#list+1] = { zone=zone, name=string.toTString"#GOLD##{bold}#Duration of flying text#WHITE##{normal}#", status=function(item)
+	local zone = Textzone.new{width=self.c_desc.w, height=self.c_desc.h, text=(_t"How long will flying text messages be visible on screen.\nThe range is 1 (very short) to 100 (10x slower) than the normal duration, which varies with each individual message."):toTString()}
+	list[#list+1] = { zone=zone, name=(_t"#GOLD##{bold}#Duration of flying text#WHITE##{normal}#"):toTString(), status=function(item)
 		return tostring((config.settings.tome.flyers_fade_time or 10) )
 	end, fct=function(item)
 		game:registerDialog(GetQuantity.new("Relative duration", "From 1 to 100", (config.settings.tome.flyers_fade_time or 10), 100, function(qty)
@@ -244,8 +244,8 @@ function _M:generateListUi()
 
 	if self:isTome() then
 		if game.uiset:checkGameOption("icons_temp_effects") then
-			local zone = Textzone.new{width=self.c_desc.w, height=self.c_desc.h, text=string.toTString"Uses the icons for status effects instead of text.#WHITE#"}
-			list[#list+1] = { zone=zone, name=string.toTString"#GOLD##{bold}#Icons status effects#WHITE##{normal}#", status=function(item)
+			local zone = Textzone.new{width=self.c_desc.w, height=self.c_desc.h, text=(_t"Uses the icons for status effects instead of text.#WHITE#"):toTString()}
+			list[#list+1] = { zone=zone, name=(_t"#GOLD##{bold}#Icons status effects#WHITE##{normal}#"):toTString(), status=function(item)
 				return tostring(config.settings.tome.effects_icons and "enabled" or "disabled")
 			end, fct=function(item)
 				config.settings.tome.effects_icons = not config.settings.tome.effects_icons
@@ -256,8 +256,8 @@ function _M:generateListUi()
 		end
 
 		if game.uiset:checkGameOption("icons_hotkeys") then
-			local zone = Textzone.new{width=self.c_desc.w, height=self.c_desc.h, text=string.toTString"Uses the icons hotkeys toolbar or the textual one.#WHITE#"}
-			list[#list+1] = { zone=zone, name=string.toTString"#GOLD##{bold}#Icons hotkey toolbar#WHITE##{normal}#", status=function(item)
+			local zone = Textzone.new{width=self.c_desc.w, height=self.c_desc.h, text=(_t"Uses the icons hotkeys toolbar or the textual one.#WHITE#"):toTString()}
+			list[#list+1] = { zone=zone, name=(_t"#GOLD##{bold}#Icons hotkey toolbar#WHITE##{normal}#"):toTString(), status=function(item)
 				return tostring(config.settings.tome.hotkey_icons and "enabled" or "disabled")
 			end, fct=function(item)
 				config.settings.tome.hotkey_icons = not config.settings.tome.hotkey_icons
@@ -268,8 +268,8 @@ function _M:generateListUi()
 		end
 
 		if game.uiset:checkGameOption("hotkeys_rows") then
-			local zone = Textzone.new{width=self.c_desc.w, height=self.c_desc.h, text=string.toTString"Number of rows to show in the icons hotkeys toolbar.#WHITE#"}
-			list[#list+1] = { zone=zone, name=string.toTString"#GOLD##{bold}#Icons hotkey toolbar rows#WHITE##{normal}#", status=function(item)
+			local zone = Textzone.new{width=self.c_desc.w, height=self.c_desc.h, text=(_t"Number of rows to show in the icons hotkeys toolbar.#WHITE#"):toTString()}
+			list[#list+1] = { zone=zone, name=(_t"#GOLD##{bold}#Icons hotkey toolbar rows#WHITE##{normal}#"):toTString(), status=function(item)
 				return tostring(config.settings.tome.hotkey_icons_rows)
 			end, fct=function(item)
 				game:registerDialog(GetQuantity.new("Number of icons rows", "From 1 to 4", config.settings.tome.hotkey_icons_rows, 4, function(qty)
@@ -283,8 +283,8 @@ function _M:generateListUi()
 		end
 	end
 
-	local zone = Textzone.new{width=self.c_desc.w, height=self.c_desc.h, text=string.toTString"When you activate a hotkey, either by keyboard or click a visual feedback will appear over it in the hotkeys bar.#WHITE#"}
-	list[#list+1] = { zone=zone, name=string.toTString"#GOLD##{bold}#Visual hotkeys feedback#WHITE##{normal}#", status=function(item)
+	local zone = Textzone.new{width=self.c_desc.w, height=self.c_desc.h, text=(_t"When you activate a hotkey, either by keyboard or click a visual feedback will appear over it in the hotkeys bar.#WHITE#"):toTString()}
+	list[#list+1] = { zone=zone, name=(_t"#GOLD##{bold}#Visual hotkeys feedback#WHITE##{normal}#"):toTString(), status=function(item)
 		return tostring(config.settings.tome.visual_hotkeys and "enabled" or "disabled")
 	end, fct=function(item)
 		config.settings.tome.visual_hotkeys = not config.settings.tome.visual_hotkeys
@@ -292,8 +292,8 @@ function _M:generateListUi()
 		self.c_list:drawItem(item)
 	end,}
 
-	local zone = Textzone.new{width=self.c_desc.w, height=self.c_desc.h, text=string.toTString"When the player or an NPC uses a talent shows a quick popup with the talent's icon and name over its head.#WHITE#"}
-	list[#list+1] = { zone=zone, name=string.toTString"#GOLD##{bold}#Talents activations map display#WHITE##{normal}#", status=function(item)
+	local zone = Textzone.new{width=self.c_desc.w, height=self.c_desc.h, text=(_t"When the player or an NPC uses a talent shows a quick popup with the talent's icon and name over its head.#WHITE#"):toTString()}
+	list[#list+1] = { zone=zone, name=(_t"#GOLD##{bold}#Talents activations map display#WHITE##{normal}#"):toTString(), status=function(item)
 		return tostring(config.settings.tome.talents_flyers and "enabled" or "disabled")
 	end, fct=function(item)
 		config.settings.tome.talents_flyers = not config.settings.tome.talents_flyers
@@ -301,8 +301,8 @@ function _M:generateListUi()
 		self.c_list:drawItem(item)
 	end,}
 
-	local zone = Textzone.new{width=self.c_desc.w, height=self.c_desc.h, text=string.toTString"Size of the icons in the hotkeys toolbar.#WHITE#"}
-	list[#list+1] = { zone=zone, name=string.toTString"#GOLD##{bold}#Icons hotkey toolbar icon size#WHITE##{normal}#", status=function(item)
+	local zone = Textzone.new{width=self.c_desc.w, height=self.c_desc.h, text=(_t"Size of the icons in the hotkeys toolbar.#WHITE#"):toTString()}
+	list[#list+1] = { zone=zone, name=(_t"#GOLD##{bold}#Icons hotkey toolbar icon size#WHITE##{normal}#"):toTString(), status=function(item)
 		return tostring(config.settings.tome.hotkey_icons_size)
 	end, fct=function(item)
 		game:registerDialog(GetQuantity.new("Icons size", "From 32 to 64", config.settings.tome.hotkey_icons_size, 64, function(qty)
@@ -314,8 +314,8 @@ function _M:generateListUi()
 		end, 32))
 	end,}
 
-	local zone = Textzone.new{width=self.c_desc.w, height=self.c_desc.h, text=string.toTString"If disabled lore popups will only appear the first time you see the lore on your profile.\nIf enabled it will appear the first time you see it with each character.#WHITE#"}
-	list[#list+1] = { zone=zone, name=string.toTString"#GOLD##{bold}#Always show lore popup#WHITE##{normal}#", status=function(item)
+	local zone = Textzone.new{width=self.c_desc.w, height=self.c_desc.h, text=(_t"If disabled lore popups will only appear the first time you see the lore on your profile.\nIf enabled it will appear the first time you see it with each character.#WHITE#"):toTString()}
+	list[#list+1] = { zone=zone, name=(_t"#GOLD##{bold}#Always show lore popup#WHITE##{normal}#"):toTString(), status=function(item)
 		return tostring(config.settings.tome.lore_popup and "enabled" or "disabled")
 	end, fct=function(item)
 		config.settings.tome.lore_popup = not config.settings.tome.lore_popup
@@ -323,8 +323,8 @@ function _M:generateListUi()
 		self.c_list:drawItem(item)
 	end,}
 
-	local zone = Textzone.new{width=self.c_desc.w, height=self.c_desc.h, text=string.toTString"If disabled items with activations will not be auto-added to your hotkeys, you will need to manualty drag them from the inventory screen.#WHITE#"}
-	list[#list+1] = { zone=zone, name=string.toTString"#GOLD##{bold}#Always add objects to hotkeys#WHITE##{normal}#", status=function(item)
+	local zone = Textzone.new{width=self.c_desc.w, height=self.c_desc.h, text=(_t"If disabled items with activations will not be auto-added to your hotkeys, you will need to manualty drag them from the inventory screen.#WHITE#"):toTString()}
+	list[#list+1] = { zone=zone, name=(_t"#GOLD##{bold}#Always add objects to hotkeys#WHITE##{normal}#"):toTString(), status=function(item)
 		return tostring(config.settings.tome.auto_hotkey_object and "enabled" or "disabled")
 	end, fct=function(item)
 		config.settings.tome.auto_hotkey_object = not config.settings.tome.auto_hotkey_object
@@ -340,7 +340,7 @@ function _M:generateListUi()
 - No tactical information at all
 
 #{italic}#You can also change this directly ingame by pressing shift+T.#{normal}##WHITE#]]}
-		list[#list+1] = { zone=zone, name=string.toTString"#GOLD##{bold}#Tactical overlay#WHITE##{normal}#", status=function(item)
+		list[#list+1] = { zone=zone, name=(_t"#GOLD##{bold}#Tactical overlay#WHITE##{normal}#"):toTString(), status=function(item)
 			local vs = "Combined Small"
 			if game.always_target == "old" then
 				vs = "Combined Big"
@@ -366,8 +366,8 @@ function _M:generateListUi()
 		end,}
 	end
 
-	local zone = Textzone.new{width=self.c_desc.w, height=self.c_desc.h, text=string.toTString"Toggles between a normal or flagpost tactical bars.#WHITE#"}
-	list[#list+1] = { zone=zone, name=string.toTString"#GOLD##{bold}#Flagpost tactical bars#WHITE##{normal}#", status=function(item)
+	local zone = Textzone.new{width=self.c_desc.w, height=self.c_desc.h, text=(_t"Toggles between a normal or flagpost tactical bars.#WHITE#"):toTString()}
+	list[#list+1] = { zone=zone, name=(_t"#GOLD##{bold}#Flagpost tactical bars#WHITE##{normal}#"):toTString(), status=function(item)
 		return tostring(config.settings.tome.flagpost_tactical and "Enabled" or "Disabled")
 	end, fct=function(item)
 		config.settings.tome.flagpost_tactical = not config.settings.tome.flagpost_tactical
@@ -375,8 +375,8 @@ function _M:generateListUi()
 		self.c_list:drawItem(item)
 	end,}
 
-	local zone = Textzone.new{width=self.c_desc.w, height=self.c_desc.h, text=string.toTString"Toggles between a bottom or side display for tactial healthbars.#WHITE#"}
-	list[#list+1] = { zone=zone, name=string.toTString"#GOLD##{bold}#Healthbars position#WHITE##{normal}#", status=function(item)
+	local zone = Textzone.new{width=self.c_desc.w, height=self.c_desc.h, text=(_t"Toggles between a bottom or side display for tactial healthbars.#WHITE#"):toTString()}
+	list[#list+1] = { zone=zone, name=(_t"#GOLD##{bold}#Healthbars position#WHITE##{normal}#"):toTString(), status=function(item)
 		return tostring(config.settings.tome.small_frame_side and "Sides" or "Bottom")
 	end, fct=function(item)
 		config.settings.tome.small_frame_side = not config.settings.tome.small_frame_side
@@ -384,8 +384,8 @@ function _M:generateListUi()
 		self.c_list:drawItem(item)
 	end,}
 
-	local zone = Textzone.new{width=self.c_desc.w, height=self.c_desc.h, text=string.toTString"If disabled you will not get a fullscreen notification of stun/daze effects. Beware.#WHITE#"}
-	list[#list+1] = { zone=zone, name=string.toTString"#GOLD##{bold}#Fullscreen stun/daze notification#WHITE##{normal}#", status=function(item)
+	local zone = Textzone.new{width=self.c_desc.w, height=self.c_desc.h, text=(_t"If disabled you will not get a fullscreen notification of stun/daze effects. Beware.#WHITE#"):toTString()}
+	list[#list+1] = { zone=zone, name=(_t"#GOLD##{bold}#Fullscreen stun/daze notification#WHITE##{normal}#"):toTString(), status=function(item)
 		return tostring(config.settings.tome.fullscreen_stun and "enabled" or "disabled")
 	end, fct=function(item)
 		config.settings.tome.fullscreen_stun = not config.settings.tome.fullscreen_stun
@@ -394,8 +394,8 @@ function _M:generateListUi()
 		if self:isTome() then if game.player.updateMainShader then game.player:updateMainShader() end end
 	end,}
 
-	local zone = Textzone.new{width=self.c_desc.w, height=self.c_desc.h, text=string.toTString"If disabled you will not get a fullscreen notification of confusion effects. Beware.#WHITE#"}
-	list[#list+1] = { zone=zone, name=string.toTString"#GOLD##{bold}#Fullscreen confusion notification#WHITE##{normal}#", status=function(item)
+	local zone = Textzone.new{width=self.c_desc.w, height=self.c_desc.h, text=(_t"If disabled you will not get a fullscreen notification of confusion effects. Beware.#WHITE#"):toTString()}
+	list[#list+1] = { zone=zone, name=(_t"#GOLD##{bold}#Fullscreen confusion notification#WHITE##{normal}#"):toTString(), status=function(item)
 		return tostring(config.settings.tome.fullscreen_confusion and "enabled" or "disabled")
 	end, fct=function(item)
 		config.settings.tome.fullscreen_confusion = not config.settings.tome.fullscreen_confusion
@@ -404,8 +404,8 @@ function _M:generateListUi()
 		if self:isTome() then if game.player.updateMainShader then game.player:updateMainShader() end end
 	end,}
 
-	local zone = Textzone.new{width=self.c_desc.w, height=self.c_desc.h, text=string.toTString"Toggles advanced weapon statistics display.#WHITE#"}
-	list[#list+1] = { zone=zone, name=string.toTString"#GOLD##{bold}#Advanced Weapon Statistics#WHITE##{normal}#", status=function(item)
+	local zone = Textzone.new{width=self.c_desc.w, height=self.c_desc.h, text=(_t"Toggles advanced weapon statistics display.#WHITE#"):toTString()}
+	list[#list+1] = { zone=zone, name=(_t"#GOLD##{bold}#Advanced Weapon Statistics#WHITE##{normal}#"):toTString(), status=function(item)
 		return tostring(config.settings.tome.advanced_weapon_stats and "enabled" or "disabled")
 	end, fct=function(item)
 		config.settings.tome.advanced_weapon_stats = not config.settings.tome.advanced_weapon_stats
@@ -413,8 +413,8 @@ function _M:generateListUi()
 		self.c_list:drawItem(item)
 	end,}
 
-	local zone = Textzone.new{width=self.c_desc.w, height=self.c_desc.h, text=string.toTString"Always display the combat properties of gloves even if you don't know unarmed attack talents.#WHITE#"}
-	list[#list+1] = { zone=zone, name=string.toTString"#GOLD##{bold}#Always show glove combat properties#WHITE##{normal}#", status=function(item)
+	local zone = Textzone.new{width=self.c_desc.w, height=self.c_desc.h, text=(_t"Always display the combat properties of gloves even if you don't know unarmed attack talents.#WHITE#"):toTString()}
+	list[#list+1] = { zone=zone, name=(_t"#GOLD##{bold}#Always show glove combat properties#WHITE##{normal}#"):toTString(), status=function(item)
 		return tostring(config.settings.tome.display_glove_stats and "enabled" or "disabled")
 	end, fct=function(item)
 		config.settings.tome.display_glove_stats = not config.settings.tome.display_glove_stats
@@ -422,8 +422,8 @@ function _M:generateListUi()
 		self.c_list:drawItem(item)
 	end,}
 
-	local zone = Textzone.new{width=self.c_desc.w, height=self.c_desc.h, text=string.toTString"Always display combat properties of shields even if you don't know shield attack talents.#WHITE#"}
-	list[#list+1] = { zone=zone, name=string.toTString"#GOLD##{bold}#Always show shield combat properties#WHITE##{normal}#", status=function(item)
+	local zone = Textzone.new{width=self.c_desc.w, height=self.c_desc.h, text=(_t"Always display combat properties of shields even if you don't know shield attack talents.#WHITE#"):toTString()}
+	list[#list+1] = { zone=zone, name=(_t"#GOLD##{bold}#Always show shield combat properties#WHITE##{normal}#"):toTString(), status=function(item)
 		return tostring(config.settings.tome.display_shield_stats and "enabled" or "disabled")
 	end, fct=function(item)
 		config.settings.tome.display_shield_stats = not config.settings.tome.display_shield_stats
@@ -431,8 +431,8 @@ function _M:generateListUi()
 		self.c_list:drawItem(item)
 	end,}
 
-	local zone = Textzone.new{width=self.c_desc.w, height=self.c_desc.h, text=string.toTString"When you do a mouse gesture (right click + drag) a color coded trail is displayed.#WHITE#"}
-	list[#list+1] = { zone=zone, name=string.toTString"#GOLD##{bold}#Display mouse gesture trails#WHITE##{normal}#", status=function(item)
+	local zone = Textzone.new{width=self.c_desc.w, height=self.c_desc.h, text=(_t"When you do a mouse gesture (right click + drag) a color coded trail is displayed.#WHITE#"):toTString()}
+	list[#list+1] = { zone=zone, name=(_t"#GOLD##{bold}#Display mouse gesture trails#WHITE##{normal}#"):toTString(), status=function(item)
 		return tostring(config.settings.hide_gestures and "disabled" or "enabled")
 	end, fct=function(item)
 		config.settings.hide_gestures = not config.settings.hide_gestures
@@ -440,8 +440,8 @@ function _M:generateListUi()
 		self.c_list:drawItem(item)
 	end,}
 
-	local zone = Textzone.new{width=self.c_desc.w, height=self.c_desc.h, text=string.toTString"If enabled new quests and quests updates will display a big popup, if not a simple line of text will fly on the screen.#WHITE#"}
-	list[#list+1] = { zone=zone, name=string.toTString"#GOLD##{bold}#Big Quest Popups#WHITE##{normal}#", status=function(item)
+	local zone = Textzone.new{width=self.c_desc.w, height=self.c_desc.h, text=(_t"If enabled new quests and quests updates will display a big popup, if not a simple line of text will fly on the screen.#WHITE#"):toTString()}
+	list[#list+1] = { zone=zone, name=(_t"#GOLD##{bold}#Big Quest Popups#WHITE##{normal}#"):toTString(), status=function(item)
 		return tostring(config.settings.tome.quest_popup and "enabled" or "disabled")
 	end, fct=function(item)
 		config.settings.tome.quest_popup = not config.settings.tome.quest_popup
@@ -449,8 +449,8 @@ function _M:generateListUi()
 		self.c_list:drawItem(item)
 	end,}
 
-	local zone = Textzone.new{width=self.c_desc.w, height=self.c_desc.h, text=string.toTString"Sharpen Visuals, set to 0 to disable.#WHITE#"}
-	list[#list+1] = { zone=zone, name=string.toTString"#GOLD##{bold}#Sharpen Visuals#WHITE##{normal}#", status=function(item)
+	local zone = Textzone.new{width=self.c_desc.w, height=self.c_desc.h, text=(_t"Sharpen Visuals, set to 0 to disable.#WHITE#"):toTString()}
+	list[#list+1] = { zone=zone, name=(_t"#GOLD##{bold}#Sharpen Visuals#WHITE##{normal}#"):toTString(), status=function(item)
 		return tostring((config.settings.tome.sharpen_display or 0))
 	end, fct=function(item)
 		game:registerDialog(GetQuantitySlider.new("Enter Sharpen Power", "From 0(disable) to 10", math.floor(config.settings.tome.sharpen_display or 0), 0, 10, 1, function(qty)
@@ -470,8 +470,8 @@ function _M:generateListGameplay()
 	local list = {}
 	local i = 0
 
-	local zone = Textzone.new{width=self.c_desc.w, height=self.c_desc.h, text=string.toTString"Defines the distance from the screen edge at which scrolling will start. If set high enough the game will always center on the player.#WHITE#"}
-	list[#list+1] = { zone=zone, name=string.toTString"#GOLD##{bold}#Scroll distance#WHITE##{normal}#", status=function(item)
+	local zone = Textzone.new{width=self.c_desc.w, height=self.c_desc.h, text=(_t"Defines the distance from the screen edge at which scrolling will start. If set high enough the game will always center on the player.#WHITE#"):toTString()}
+	list[#list+1] = { zone=zone, name=(_t"#GOLD##{bold}#Scroll distance#WHITE##{normal}#"):toTString(), status=function(item)
 		return tostring(config.settings.tome.scroll_dist)
 	end, fct=function(item)
 		game:registerDialog(GetQuantity.new("Scroll distance", "From 1 to 50", config.settings.tome.scroll_dist, 50, function(qty)
@@ -482,8 +482,8 @@ function _M:generateListGameplay()
 		end, 1))
 	end,}
 
-	local zone = Textzone.new{width=self.c_desc.w, height=self.c_desc.h, text=string.toTString"If you loose more than this percentage of life in a turn, a warning will display and all key/mouse input will be ignored for 2 seconds to prevent mistakes.#WHITE#"}
-	list[#list+1] = { zone=zone, name=string.toTString"#GOLD##{bold}#Life Lost Warning#WHITE##{normal}#", status=function(item)
+	local zone = Textzone.new{width=self.c_desc.w, height=self.c_desc.h, text=(_t"If you loose more than this percentage of life in a turn, a warning will display and all key/mouse input will be ignored for 2 seconds to prevent mistakes.#WHITE#"):toTString()}
+	list[#list+1] = { zone=zone, name=(_t"#GOLD##{bold}#Life Lost Warning#WHITE##{normal}#"):toTString(), status=function(item)
 		return (not config.settings.tome.life_lost_warning or config.settings.tome.life_lost_warning == 100) and "disabled" or tostring(config.settings.tome.life_lost_warning).."%"
 	end, fct=function(item)
 		game:registerDialog(GetQuantity.new("Life lost percentage (out of max life)", "From 1 to 99 (100 to disable)", config.settings.tome.life_lost_warning or 100, 100, function(qty)
@@ -494,8 +494,8 @@ function _M:generateListGameplay()
 		end, 1))
 	end,}
 
-	local zone = Textzone.new{width=self.c_desc.w, height=self.c_desc.h, text=string.toTString"Enables or disables weather effects in some zones.\nDisabling it can gain some performance. It will not affect previously visited zones.#WHITE#"}
-	list[#list+1] = { zone=zone, name=string.toTString"#GOLD##{bold}#Weather effects#WHITE##{normal}#", status=function(item)
+	local zone = Textzone.new{width=self.c_desc.w, height=self.c_desc.h, text=(_t"Enables or disables weather effects in some zones.\nDisabling it can gain some performance. It will not affect previously visited zones.#WHITE#"):toTString()}
+	list[#list+1] = { zone=zone, name=(_t"#GOLD##{bold}#Weather effects#WHITE##{normal}#"):toTString(), status=function(item)
 		return tostring(config.settings.tome.weather_effects and "enabled" or "disabled")
 	end, fct=function(item)
 		config.settings.tome.weather_effects = not config.settings.tome.weather_effects
@@ -503,8 +503,8 @@ function _M:generateListGameplay()
 		self.c_list:drawItem(item)
 	end,}
 
-	local zone = Textzone.new{width=self.c_desc.w, height=self.c_desc.h, text=string.toTString"Enables or disables day/night light variations effects..#WHITE#"}
-	list[#list+1] = { zone=zone, name=string.toTString"#GOLD##{bold}#Day/night light cycle#WHITE##{normal}#", status=function(item)
+	local zone = Textzone.new{width=self.c_desc.w, height=self.c_desc.h, text=(_t"Enables or disables day/night light variations effects..#WHITE#"):toTString()}
+	list[#list+1] = { zone=zone, name=(_t"#GOLD##{bold}#Day/night light cycle#WHITE##{normal}#"):toTString(), status=function(item)
 		return tostring(config.settings.tome.daynight and "enabled" or "disabled")
 	end, fct=function(item)
 		config.settings.tome.daynight = not config.settings.tome.daynight
@@ -512,8 +512,8 @@ function _M:generateListGameplay()
 		self.c_list:drawItem(item)
 	end,}
 
-	local zone = Textzone.new{width=self.c_desc.w, height=self.c_desc.h, text=string.toTString"Enables easy movement using the mouse by left-clicking on the map.#WHITE#"}
-	list[#list+1] = { zone=zone, name=string.toTString"#GOLD##{bold}#Use mouse to move#WHITE##{normal}#", status=function(item)
+	local zone = Textzone.new{width=self.c_desc.w, height=self.c_desc.h, text=(_t"Enables easy movement using the mouse by left-clicking on the map.#WHITE#"):toTString()}
+	list[#list+1] = { zone=zone, name=(_t"#GOLD##{bold}#Use mouse to move#WHITE##{normal}#"):toTString(), status=function(item)
 		return tostring(config.settings.mouse_move and "enabled" or "disabled")
 	end, fct=function(item)
 		config.settings.mouse_move = not config.settings.mouse_move
@@ -521,8 +521,8 @@ function _M:generateListGameplay()
 		self.c_list:drawItem(item)
 	end,}
 
-	local zone = Textzone.new{width=self.c_desc.w, height=self.c_desc.h, text=string.toTString"Enables quick melee targeting.\nTalents that require a melee target will automatically target when pressing a direction key instead of requiring a confirmation.#WHITE#"}
-	list[#list+1] = { zone=zone, name=string.toTString"#GOLD##{bold}#Quick melee targeting#WHITE##{normal}#", status=function(item)
+	local zone = Textzone.new{width=self.c_desc.w, height=self.c_desc.h, text=(_t"Enables quick melee targeting.\nTalents that require a melee target will automatically target when pressing a direction key instead of requiring a confirmation.#WHITE#"):toTString()}
+	list[#list+1] = { zone=zone, name=(_t"#GOLD##{bold}#Quick melee targeting#WHITE##{normal}#"):toTString(), status=function(item)
 		return tostring(config.settings.tome.immediate_melee_keys and "enabled" or "disabled")
 	end, fct=function(item)
 		config.settings.tome.immediate_melee_keys = not config.settings.tome.immediate_melee_keys
@@ -530,8 +530,8 @@ function _M:generateListGameplay()
 		self.c_list:drawItem(item)
 	end,}
 
-	local zone = Textzone.new{width=self.c_desc.w, height=self.c_desc.h, text=string.toTString"Enables quick melee targeting auto attacking.\nTalents that require a melee target will automatically target and confirm if there is only one hostile creatue around.#WHITE#"}
-	list[#list+1] = { zone=zone, name=string.toTString"#GOLD##{bold}#Quick melee targeting auto attack#WHITE##{normal}#", status=function(item)
+	local zone = Textzone.new{width=self.c_desc.w, height=self.c_desc.h, text=(_t"Enables quick melee targeting auto attacking.\nTalents that require a melee target will automatically target and confirm if there is only one hostile creatue around.#WHITE#"):toTString()}
+	list[#list+1] = { zone=zone, name=(_t"#GOLD##{bold}#Quick melee targeting auto attack#WHITE##{normal}#"):toTString(), status=function(item)
 		return tostring(config.settings.tome.immediate_melee_keys_auto and "enabled" or "disabled")
 	end, fct=function(item)
 		config.settings.tome.immediate_melee_keys_auto = not config.settings.tome.immediate_melee_keys_auto
@@ -539,8 +539,8 @@ function _M:generateListGameplay()
 		self.c_list:drawItem(item)
 	end,}
 
-	local zone = Textzone.new{width=self.c_desc.w, height=self.c_desc.h, text=string.toTString"Enables mouse targeting. If disabled mouse movements will not change the target when casting a spell or using a talent.#WHITE#"}
-	list[#list+1] = { zone=zone, name=string.toTString"#GOLD##{bold}#Mouse targeting#WHITE##{normal}#", status=function(item)
+	local zone = Textzone.new{width=self.c_desc.w, height=self.c_desc.h, text=(_t"Enables mouse targeting. If disabled mouse movements will not change the target when casting a spell or using a talent.#WHITE#"):toTString()}
+	list[#list+1] = { zone=zone, name=(_t"#GOLD##{bold}#Mouse targeting#WHITE##{normal}#"):toTString(), status=function(item)
 		return tostring(config.settings.tome.disable_mouse_targeting and "disabled" or "enabled")
 	end, fct=function(item)
 		config.settings.tome.disable_mouse_targeting = not config.settings.tome.disable_mouse_targeting
@@ -548,8 +548,8 @@ function _M:generateListGameplay()
 		self.c_list:drawItem(item)
 	end,}
 
-	local zone = Textzone.new{width=self.c_desc.w, height=self.c_desc.h, text=string.toTString"Auto-validate targets. If you fire an arrow/talent/... it will automatically use the default target without asking\n#LIGHT_RED#This is dangerous. Do not enable unless you know exactly what you are doing.#WHITE#\n\nDefault target is always either one of:\n - The last creature hovered by the mouse\n - The last attacked creature\n - The closest creature"}
-	list[#list+1] = { zone=zone, name=string.toTString"#GOLD##{bold}#Auto-accept target#WHITE##{normal}#", status=function(item)
+	local zone = Textzone.new{width=self.c_desc.w, height=self.c_desc.h, text=(_t"Auto-validate targets. If you fire an arrow/talent/... it will automatically use the default target without asking\n#LIGHT_RED#This is dangerous. Do not enable unless you know exactly what you are doing.#WHITE#\n\nDefault target is always either one of:\n - The last creature hovered by the mouse\n - The last attacked creature\n - The closest creature"):toTString()}
+	list[#list+1] = { zone=zone, name=(_t"#GOLD##{bold}#Auto-accept target#WHITE##{normal}#"):toTString(), status=function(item)
 		return tostring(config.settings.auto_accept_target and "enabled" or "disabled")
 	end, fct=function(item)
 		config.settings.auto_accept_target = not config.settings.auto_accept_target
@@ -557,8 +557,8 @@ function _M:generateListGameplay()
 		self.c_list:drawItem(item)
 	end,}
 
-	local zone = Textzone.new{width=self.c_desc.w, height=self.c_desc.h, text=string.toTString"New games begin with some talent points auto-assigned.#WHITE#"}
-	list[#list+1] = { zone=zone, name=string.toTString"#GOLD##{bold}#Auto-assign talent points at birth#WHITE##{normal}#", status=function(item)
+	local zone = Textzone.new{width=self.c_desc.w, height=self.c_desc.h, text=(_t"New games begin with some talent points auto-assigned.#WHITE#"):toTString()}
+	list[#list+1] = { zone=zone, name=(_t"#GOLD##{bold}#Auto-assign talent points at birth#WHITE##{normal}#"):toTString(), status=function(item)
 		return tostring(config.settings.tome.autoassign_talents_on_birth and "enabled" or "disabled")
 	end, fct=function(item)
 		config.settings.tome.autoassign_talents_on_birth = not config.settings.tome.autoassign_talents_on_birth
@@ -566,8 +566,8 @@ function _M:generateListGameplay()
 		self.c_list:drawItem(item)
 	end,}
 
-	local zone = Textzone.new{width=self.c_desc.w, height=self.c_desc.h, text=string.toTString"Always rest to full before auto-exploring.#WHITE#"}
-	list[#list+1] = { zone=zone, name=string.toTString"#GOLD##{bold}#Rest before auto-explore#WHITE##{normal}#", status=function(item)
+	local zone = Textzone.new{width=self.c_desc.w, height=self.c_desc.h, text=(_t"Always rest to full before auto-exploring.#WHITE#"):toTString()}
+	list[#list+1] = { zone=zone, name=(_t"#GOLD##{bold}#Rest before auto-explore#WHITE##{normal}#"):toTString(), status=function(item)
 		return tostring(config.settings.tome.rest_before_explore and "enabled" or "disabled")
 	end, fct=function(item)
 		config.settings.tome.rest_before_explore = not config.settings.tome.rest_before_explore
@@ -575,8 +575,8 @@ function _M:generateListGameplay()
 		self.c_list:drawItem(item)
 	end,}
 
-	local zone = Textzone.new{width=self.c_desc.w, height=self.c_desc.h, text=string.toTString"When swaping an item with a tinker attached, swap the tinker to the newly worn item automatically.#WHITE#"}
-	list[#list+1] = { zone=zone, name=string.toTString"#GOLD##{bold}#Swap tinkers#WHITE##{normal}#", status=function(item)
+	local zone = Textzone.new{width=self.c_desc.w, height=self.c_desc.h, text=(_t"When swaping an item with a tinker attached, swap the tinker to the newly worn item automatically.#WHITE#"):toTString()}
+	list[#list+1] = { zone=zone, name=(_t"#GOLD##{bold}#Swap tinkers#WHITE##{normal}#"):toTString(), status=function(item)
 		return tostring(config.settings.tome.tinker_auto_switch and "enabled" or "disabled")
 	end, fct=function(item)
 		config.settings.tome.tinker_auto_switch = not config.settings.tome.tinker_auto_switch
@@ -592,8 +592,8 @@ function _M:generateListOnline()
 	local list = {}
 	local i = 0
 
-	local zone = Textzone.new{width=self.c_desc.w, height=self.c_desc.h, text=string.toTString"Configure the chat filters to select what kind of messages to see.#WHITE#"}
-	list[#list+1] = { zone=zone, name=string.toTString"#GOLD##{bold}#Chat message filters#WHITE##{normal}#", status=function(item)
+	local zone = Textzone.new{width=self.c_desc.w, height=self.c_desc.h, text=(_t"Configure the chat filters to select what kind of messages to see.#WHITE#"):toTString()}
+	list[#list+1] = { zone=zone, name=(_t"#GOLD##{bold}#Chat message filters#WHITE##{normal}#"):toTString(), status=function(item)
 		return "select to configure"
 	end, fct=function(item)
 		game:registerDialog(require("engine.dialogs.ChatFilter").new({
@@ -602,18 +602,18 @@ function _M:generateListOnline()
 		}))
 	end,}
 
-	local zone = Textzone.new{width=self.c_desc.w, height=self.c_desc.h, text=string.toTString"Configure the chat ignore filter.#WHITE#"}
-	list[#list+1] = { zone=zone, name=string.toTString"#GOLD##{bold}#Chat ignore list#WHITE##{normal}#", status=function(item)
+	local zone = Textzone.new{width=self.c_desc.w, height=self.c_desc.h, text=(_t"Configure the chat ignore filter.#WHITE#"):toTString()}
+	list[#list+1] = { zone=zone, name=(_t"#GOLD##{bold}#Chat ignore list#WHITE##{normal}#"):toTString(), status=function(item)
 		return "select to configure"
 	end, fct=function(item)	game:registerDialog(require("engine.dialogs.ChatIgnores").new()) end,}
 
-	local zone = Textzone.new{width=self.c_desc.w, height=self.c_desc.h, text=string.toTString"Configure the chat channels to listen to.#WHITE#"}
-	list[#list+1] = { zone=zone, name=string.toTString"#GOLD##{bold}#Chat channels#WHITE##{normal}#", status=function(item)
+	local zone = Textzone.new{width=self.c_desc.w, height=self.c_desc.h, text=(_t"Configure the chat channels to listen to.#WHITE#"):toTString()}
+	list[#list+1] = { zone=zone, name=(_t"#GOLD##{bold}#Chat channels#WHITE##{normal}#"):toTString(), status=function(item)
 		return "select to configure"
 	end, fct=function(item)	game:registerDialog(require("engine.dialogs.ChatChannels").new()) end,}
 
-	local zone = Textzone.new{width=self.c_desc.w, height=self.c_desc.h, text=string.toTString"Open links in external browser instead of the embedded one.\nThis does not affect addons browse and installation which always stays ingame."}
-	list[#list+1] = { zone=zone, name=string.toTString"#GOLD##{bold}#Open links in external browser#WHITE##{normal}#", status=function(item)
+	local zone = Textzone.new{width=self.c_desc.w, height=self.c_desc.h, text=(_t"Open links in external browser instead of the embedded one.\nThis does not affect addons browse and installation which always stays ingame."):toTString()}
+	list[#list+1] = { zone=zone, name=(_t"#GOLD##{bold}#Open links in external browser#WHITE##{normal}#"):toTString(), status=function(item)
 		return tostring(config.settings.open_links_external and "enabled" or "disabled")
 	end, fct=function(item)
 		config.settings.open_links_external = not config.settings.open_links_external
@@ -621,8 +621,8 @@ function _M:generateListOnline()
 		self.c_list:drawItem(item)
 	end,}
 
-	local zone = Textzone.new{width=self.c_desc.w, height=self.c_desc.h, text=string.toTString"Enable Discord's Rich Presence integration to show your current character on your currently playing profile on Discord (restart the game to apply).\n#ANTIQUE_WHITE#If you do not use Discord this option doesn't do anything in either state."}
-	list[#list+1] = { zone=zone, name=string.toTString"#GOLD##{bold}#Discord's Rich Presence#WHITE##{normal}#", status=function(item)
+	local zone = Textzone.new{width=self.c_desc.w, height=self.c_desc.h, text=(_t"Enable Discord's Rich Presence integration to show your current character on your currently playing profile on Discord (restart the game to apply).\n#ANTIQUE_WHITE#If you do not use Discord this option doesn't do anything in either state."):toTString()}
+	list[#list+1] = { zone=zone, name=(_t"#GOLD##{bold}#Discord's Rich Presence#WHITE##{normal}#"):toTString(), status=function(item)
 		return tostring(not config.settings.disable_discord and "enabled" or "disabled")
 	end, fct=function(item)
 		config.settings.disable_discord = not config.settings.disable_discord
@@ -630,8 +630,8 @@ function _M:generateListOnline()
 		self.c_list:drawItem(item)
 	end,}
 
-	local zone = Textzone.new{width=self.c_desc.w, height=self.c_desc.h, text=string.toTString"Keep a copy of your character sheets (not the whole savefile) on the online vault at te4.org.\nFor each character you will be given a link to this online character sheet so that you can brag about your heroic deeds or sad deaths to your friends or the whole community.#WHITE#"}
-	list[#list+1] = { zone=zone, name=string.toTString"#GOLD##{bold}#Upload characters sheets to the online vault#WHITE##{normal}#", status=function(item)
+	local zone = Textzone.new{width=self.c_desc.w, height=self.c_desc.h, text=(_t"Keep a copy of your character sheets (not the whole savefile) on the online vault at te4.org.\nFor each character you will be given a link to this online character sheet so that you can brag about your heroic deeds or sad deaths to your friends or the whole community.#WHITE#"):toTString()}
+	list[#list+1] = { zone=zone, name=(_t"#GOLD##{bold}#Upload characters sheets to the online vault#WHITE##{normal}#"):toTString(), status=function(item)
 		return tostring(config.settings.upload_charsheet and "enabled" or "disabled")
 	end, fct=function(item)
 		config.settings.upload_charsheet = not config.settings.upload_charsheet
@@ -640,8 +640,8 @@ function _M:generateListOnline()
 
 	end,}
 
-	local zone = Textzone.new{width=self.c_desc.w, height=self.c_desc.h, text=string.toTString"Allow various events that are pushed by the server when playing online\n#{bold}#All#{normal}#: Allow all server events (bonus zones, random events, ...)\n#{bold}#Technical help only#{normal}#: Allow administrator to help in case of bugs or weirdness and allows website services (data reset, steam achievements push, ...) to work.\n#{bold}#Disabled#{normal}#: Disallow all.\n#WHITE#"}
-	list[#list+1] = { zone=zone, name=string.toTString"#GOLD##{bold}#Allow online events#WHITE##{normal}#", status=function(item)
+	local zone = Textzone.new{width=self.c_desc.w, height=self.c_desc.h, text=(_t"Allow various events that are pushed by the server when playing online\n#{bold}#All#{normal}#: Allow all server events (bonus zones, random events, ...)\n#{bold}#Technical help only#{normal}#: Allow administrator to help in case of bugs or weirdness and allows website services (data reset, steam achievements push, ...) to work.\n#{bold}#Disabled#{normal}#: Disallow all.\n#WHITE#"):toTString()}
+	list[#list+1] = { zone=zone, name=(_t"#GOLD##{bold}#Allow online events#WHITE##{normal}#"):toTString(), status=function(item)
 		return tostring(config.settings.allow_online_events == true and "all" or (config.settings.allow_online_events == "limited" and "technical help only" or "disabled"))
 	end, fct=function(item)
 		if config.settings.allow_online_events == true then config.settings.allow_online_events = "limited"
@@ -668,7 +668,7 @@ If you do not want that, simply run the game directly: the #{bold}#only#{normal}
 
 #{bold}##CRIMSON#This is an extremely restrictive setting. It is recommended you only activate it if you have no other choice as it will remove many fun and acclaimed features.
 A full exit and restart of the game is neccessary to apply this setting.#{normal}#]]}
-	list[#list+1] = { zone=zone, name=string.toTString"#GOLD##{bold}#Disable all connectivity#WHITE##{normal}#", status=function(item)
+	list[#list+1] = { zone=zone, name=(_t"#GOLD##{bold}#Disable all connectivity#WHITE##{normal}#"):toTString(), status=function(item)
 		return tostring(config.settings.disable_all_connectivity and "yes" or "no")
 	end, fct=function(item)
 		config.settings.disable_all_connectivity = not config.settings.disable_all_connectivity
@@ -684,8 +684,8 @@ function _M:generateListMisc()
 	local list = {}
 	local i = 0
 
-	local zone = Textzone.new{width=self.c_desc.w, height=self.c_desc.h, text=string.toTString"Saves in the background, allowing you to continue playing.\n#LIGHT_RED#Disabling it is not recommended.#WHITE#"}
-	list[#list+1] = { zone=zone, name=string.toTString"#GOLD##{bold}#Save in the background#WHITE##{normal}#", status=function(item)
+	local zone = Textzone.new{width=self.c_desc.w, height=self.c_desc.h, text=(_t"Saves in the background, allowing you to continue playing.\n#LIGHT_RED#Disabling it is not recommended.#WHITE#"):toTString()}
+	list[#list+1] = { zone=zone, name=(_t"#GOLD##{bold}#Save in the background#WHITE##{normal}#"):toTString(), status=function(item)
 		return tostring(config.settings.background_saves and "enabled" or "disabled")
 	end, fct=function(item)
 		config.settings.background_saves = not config.settings.background_saves
@@ -693,8 +693,8 @@ function _M:generateListMisc()
 		self.c_list:drawItem(item)
 	end,}
 
-	local zone = Textzone.new{width=self.c_desc.w, height=self.c_desc.h, text=string.toTString"Forces the game to save each level instead of each zone.\nThis makes it save more often but the game will use less memory when deep in a dungeon.\n\n#LIGHT_RED#Changing this option will not affect already visited zones.\n*THIS DOES NOT MAKE A FULL SAVE EACH LEVEL*.\n#LIGHT_RED#Disabling it is not recommended#WHITE#"}
-	list[#list+1] = { zone=zone, name=string.toTString"#GOLD##{bold}#Zone save per level#WHITE##{normal}#", status=function(item)
+	local zone = Textzone.new{width=self.c_desc.w, height=self.c_desc.h, text=(_t"Forces the game to save each level instead of each zone.\nThis makes it save more often but the game will use less memory when deep in a dungeon.\n\n#LIGHT_RED#Changing this option will not affect already visited zones.\n*THIS DOES NOT MAKE A FULL SAVE EACH LEVEL*.\n#LIGHT_RED#Disabling it is not recommended#WHITE#"):toTString()}
+	list[#list+1] = { zone=zone, name=(_t"#GOLD##{bold}#Zone save per level#WHITE##{normal}#"):toTString(), status=function(item)
 		return tostring(config.settings.tome.save_zone_levels and "enabled" or "disabled")
 	end, fct=function(item)
 		config.settings.tome.save_zone_levels = not config.settings.tome.save_zone_levels
@@ -702,8 +702,8 @@ function _M:generateListMisc()
 		self.c_list:drawItem(item)
 	end,}
 
-	local zone = Textzone.new{width=self.c_desc.w, height=self.c_desc.h, text=string.toTString"Disallow boot images that could be found 'offensive'.#WHITE#"}
-	list[#list+1] = { zone=zone, name=string.toTString"#GOLD##{bold}#Censor boot#WHITE##{normal}#", status=function(item)
+	local zone = Textzone.new{width=self.c_desc.w, height=self.c_desc.h, text=(_t"Disallow boot images that could be found 'offensive'.#WHITE#"):toTString()}
+	list[#list+1] = { zone=zone, name=(_t"#GOLD##{bold}#Censor boot#WHITE##{normal}#"):toTString(), status=function(item)
 		return tostring(config.settings.censor_boot and "enabled" or "disabled")
 	end, fct=function(item)
 		config.settings.censor_boot = not config.settings.censor_boot
@@ -711,8 +711,8 @@ function _M:generateListMisc()
 		self.c_list:drawItem(item)
 	end,}
 
-	local zone = Textzone.new{width=self.c_desc.w, height=self.c_desc.h, text=string.toTString"Replace headwear images by cloak hoods if a cloak is worn#WHITE#"}
-	list[#list+1] = { zone=zone, name=string.toTString"#GOLD##{bold}#Show cloak hoods#WHITE##{normal}#", status=function(item)
+	local zone = Textzone.new{width=self.c_desc.w, height=self.c_desc.h, text=(_t"Replace headwear images by cloak hoods if a cloak is worn#WHITE#"):toTString()}
+	list[#list+1] = { zone=zone, name=(_t"#GOLD##{bold}#Show cloak hoods#WHITE##{normal}#"):toTString(), status=function(item)
 		return tostring(config.settings.tome.show_cloak_hoods and "enabled" or "disabled")
 	end, fct=function(item)
 		config.settings.tome.show_cloak_hoods = not config.settings.tome.show_cloak_hoods
diff --git a/game/modules/tome/dialogs/GraphicMode.lua b/game/modules/tome/dialogs/GraphicMode.lua
index 293894b1d2f887c65a6da5df0968c035f7d8dea6..310c4e97bfa8169cc3ea4484303466dc0d65dae1 100644
--- a/game/modules/tome/dialogs/GraphicMode.lua
+++ b/game/modules/tome/dialogs/GraphicMode.lua
@@ -30,13 +30,13 @@ local Map = require "engine.Map"
 module(..., package.seeall, class.inherit(Dialog))
 
 tiles_packs = {
-	shockbolt = {name= "Modern", order=1},
-	ascii = {name= "ASCII", order=5},
-	ascii_full = {name= "ASCII with background", order=6},
-	customtiles = {name= "Custom Tileset", order=7},
+	shockbolt = {name= _t"Modern", order=1},
+	ascii = {name= _t"ASCII", order=5},
+	ascii_full = {name= _t"ASCII with background", order=6},
+	customtiles = {name= _t"Custom Tileset", order=7},
 }
-if fs.exists("/data/gfx/altefcat") then tiles_packs.altefcat = {name= "Altefcat/Gervais", order=3} end
-if fs.exists("/data/gfx/oldrpg") then tiles_packs.oldrpg = {name= "Old RPG", order=4} end
+if fs.exists("/data/gfx/altefcat") then tiles_packs.altefcat = {name= _t"Altefcat/Gervais", order=3} end
+if fs.exists("/data/gfx/oldrpg") then tiles_packs.oldrpg = {name= _t"Old RPG", order=4} end
 
 
 function _M:init()
@@ -74,15 +74,15 @@ function _M:isTome()
 end
 
 function _M:doCustomTiles()
-	local d = Dialog.new("Custom Tileset", 100, 100)
+	local d = Dialog.new(_t"Custom Tileset", 100, 100)
 
-	local help = Textzone.new{width=500, auto_height=true, text=[[You can configure the game to use a custom tileset.
+	local help = Textzone.new{width=500, auto_height=true, text=_t[[You can configure the game to use a custom tileset.
 You must place all files of your tileset in a subfolder of the modules's data/gfx/ folder, just like the existing tilesets.
 Each tile must be correctly named according to the existing tilesets.]]}
 	local dir = Textbox.new{title=_t"Folder: ", text="", chars=30, max_len=50, fct=function() end}
 	local moddable_tiles = Checkbox.new{title=_t"Use moddable tiles (equipment showing on player)", default=false, fct=function() end }
 	local adv_tiles = Checkbox.new{title=_t"Use advanced tiles (transitions, wide tiles, ...)", default=false, fct=function() end }
-	local ok = Button.new{text="Use custom tileset", fct=function()
+	local ok = Button.new{text=_t"Use custom tileset", fct=function()
 		config.settings.tome.gfx.tiles = "customtiles"
 		config.settings.tome.gfx.tiles_custom_dir = dir.text
 		config.settings.tome.gfx.tiles_custom_moddable = moddable_tiles.checked
@@ -91,7 +91,7 @@ Each tile must be correctly named according to the existing tilesets.]]}
 		self:use{change_sel = "main"}
 		game:unregisterDialog(d)
 	end}
-	local cancel = Button.new{text="Cancel", fct=function() game:unregisterDialog(d) end}
+	local cancel = Button.new{text=_t"Cancel", fct=function() game:unregisterDialog(d) end}
 
 	d:loadUI{
 		{left=0, top=0, ui=help},
@@ -112,7 +112,7 @@ function _M:use(item)
 
 	if item.sub and item.val then
 		if item.val == "customsize" then
-			game:registerDialog(GetQuantity.new("Tile size", "From 10 to 128", Map.tile_w or 64, 128, function(qty)
+			game:registerDialog(GetQuantity.new(_t"Tile size", _t"From 10 to 128", Map.tile_w or 64, 128, function(qty)
 				qty = math.floor(util.bound(qty, 10, 128))
 				self:use{name=qty.."x"..qty, sub=item.sub, val=qty.."x"..qty}
 			end, 10))
@@ -139,8 +139,8 @@ function _M:generateList()
 	if self.cur_sel == "main" then
 		local cur = tiles_packs[config.settings.tome.gfx.tiles]
 		list = {
-			{name="Select style [current: "..(cur and cur.name or "???").."]", change_sel="tiles"},
-			{name="Select tiles size [current: "..config.settings.tome.gfx.size.."]", change_sel="size"},
+			{name=("Select style [current: %s]"):tformat(cur and cur.name or "???"), change_sel="tiles"},
+			{name=("Select tiles size [current: %s]"):tformat(config.settings.tome.gfx.size), change_sel="size"},
 		}
 	elseif self.cur_sel == "tiles" then
 		list = {}
@@ -150,11 +150,11 @@ function _M:generateList()
 		table.sort(list, function(a, b) return a.order < b.order end)
 	elseif self.cur_sel == "size" then
 		list = {
-			{name="64x64", sub="size", val="64x64"},
-			{name="48x48", sub="size", val="48x48"},
-			{name="32x32", sub="size", val="32x32"},
-			{name="16x16", sub="size", val="16x16"},
-			{name="Custom", sub="size", val="customsize"},
+			{name=_t"64x64", sub="size", val="64x64"},
+			{name=_t"48x48", sub="size", val="48x48"},
+			{name=_t"32x32", sub="size", val="32x32"},
+			{name=_t"16x16", sub="size", val="16x16"},
+			{name=_t"Custom", sub="size", val="customsize"},
 		}
 	end
 
diff --git a/game/modules/tome/dialogs/LevelupDialog.lua b/game/modules/tome/dialogs/LevelupDialog.lua
index c1188b96d760389e5e7deadf2542630229c503c0..42231037f8f574e4d21674397ff1c99d2dfcfd4c 100644
--- a/game/modules/tome/dialogs/LevelupDialog.lua
+++ b/game/modules/tome/dialogs/LevelupDialog.lua
@@ -86,7 +86,7 @@ function _M:init(actor, on_finish, on_birth)
 		end
 	end
 
-	Dialog.init(self, ("Levelup: %s"):tformat(actor.name.."), level "..actor.level, game.w * 0.9, game.h * 0.9, game.w * 0.05, game.h * 0.05)
+	Dialog.init(self, ("Levelup: %s, level %s"):tformat(actor.name, actor.level), game.w * 0.9, game.h * 0.9, game.w * 0.05, game.h * 0.05)
 	if game.w * 0.9 >= 1000 then
 		self.no_tooltip = true
 	end
@@ -126,7 +126,7 @@ function _M:init(actor, on_finish, on_birth)
 
 			if self.actor.unused_stats~=self.actor_dup.unused_stats or self.actor.unused_talents_types~=self.actor_dup.unused_talents_types or
 			self.actor.unused_talents~=self.actor_dup.unused_talents or self.actor.unused_generics~=self.actor_dup.unused_generics or self.actor.unused_prodigies~=self.actor_dup.unused_prodigies or changed then
-				self:yesnocancelPopup("Finish","Do you accept changes?", function(yes, cancel)
+				self:yesnocancelPopup(_t"Finish",_t"Do you accept changes?", function(yes, cancel)
 				if cancel then
 					return nil
 				else
@@ -181,11 +181,11 @@ local subtleMessageOtherColor = {r=255, g=215, b=0}
 function _M:finish()
 	local ok, dep_miss = self:checkDeps(true, true)
 	if not ok and not config.settings.cheat then
-		self:simpleLongPopup("Impossible", "You cannot learn this talent(s): "..dep_miss, game.w * 0.4)
+		self:simpleLongPopup(_t"Impossible", _t"You cannot learn this talent(s): "..dep_miss, game.w * 0.4)
 		return nil
 	end
 
-	local txt = "#LIGHT_BLUE#Warning: You have increased some of your statistics or talent. Talent(s) actually sustained: \n %s If these are dependent on one of the stats you changed, you need to re-use them for the changes to take effect."
+	local txt = _t"#LIGHT_BLUE#Warning: You have increased some of your statistics or talent. Talent(s) actually sustained: \n %s If these are dependent on one of the stats you changed, you need to re-use them for the changes to take effect."
 	local talents = ""
 	local reset = {}
 	for tid, act in pairs(self.actor.sustain_talents) do
@@ -249,20 +249,20 @@ end
 function _M:incStat(sid, v)
 	if v == 1 then
 		if self.actor.unused_stats <= 0 then
-			self:subtleMessage("Not enough stat points", "You have no stat points left!", subtleMessageErrorColor)
+			self:subtleMessage(_t"Not enough stat points", _t"You have no stat points left!", subtleMessageErrorColor)
 			return
 		end
 		if self.actor:getStat(sid, nil, nil, true) >= self.actor.level * 1.4 + 20 then
-			self:subtleMessage("Stat is at the maximum for your level", "You cannot increase this stat further until next level!", subtleMessageOtherColor)
+			self:subtleMessage(_t"Stat is at the maximum for your level", _t"You cannot increase this stat further until next level!", subtleMessageOtherColor)
 			return
 		end
 		if self.actor:isStatMax(sid) or self.actor:getStat(sid, nil, nil, true) >= 60 + math.max(0, (self.actor.level - 50)) then
-			self:subtleMessage("Stat is at the maximum", "You cannot increase this stat further!", subtleMessageWarningColor)
+			self:subtleMessage(_t"Stat is at the maximum", _t"You cannot increase this stat further!", subtleMessageWarningColor)
 			return
 		end
 	else
 		if self.actor_dup:getStat(sid, nil, nil, true) == self.actor:getStat(sid, nil, nil, true) then
-			self:subtleMessage("Impossible", "You cannot take out more points!", subtleMessageErrorColor)
+			self:subtleMessage(_t"Impossible", _t"You cannot take out more points!", subtleMessageErrorColor)
 			return
 		end
 	end
@@ -318,7 +318,7 @@ function _M:checkDeps(simple, ignore_special)
 		local t = self.actor:getTalentFromId(t_id)
 		local ok, reason = self.actor:canLearnTalent(t, 0, ignore_special)
 		if not ok and (self.actor:knowTalent(t) or force) then talents = talents.."\n#GOLD##{bold}#    - "..t.name.."#{normal}##LAST#("..reason..")" end
-		if reason == "not enough stat" then
+		if reason == _t"not enough stat" then
 			stats_ok = false
 		end
 
@@ -367,15 +367,15 @@ function _M:learnTalent(t_id, v)
 	if t.generic then t_type, t_index = "generic", "unused_generics" end
 	if v then
 		if self.actor[t_index] < 1 then
-			self:subtleMessage("Not enough "..t_type.." talent points", "You have no "..t_type.." talent points left!", subtleMessageErrorColor)
+			self:subtleMessage(("Not enough %s talent points"):tformat(t_type), ("You have no %s talent points left!"):tformat(t_type), subtleMessageErrorColor)
 			return
 		end
 		if not self.actor:canLearnTalent(t) then
-			self:subtleMessage("Cannot learn talent", "Prerequisites not met!", subtleMessageErrorColor)
+			self:subtleMessage(_t"Cannot learn talent", _t"Prerequisites not met!", subtleMessageErrorColor)
 			return
 		end
 		if self.actor:getTalentLevelRaw(t_id) >= self:getMaxTPoints(t) then
-			self:subtleMessage("Already known", "You already fully know this talent!", subtleMessageWarningColor)
+			self:subtleMessage(_t"Already known", _t"You already fully know this talent!", subtleMessageWarningColor)
 			return
 		end
 		self.actor:learnTalent(t_id, true)
@@ -385,15 +385,15 @@ function _M:learnTalent(t_id, v)
 		self.new_talents_changed = true
 	else
 		if not self.actor:knowTalent(t_id) then
-			self:subtleMessage("Impossible", "You do not know this talent!", subtleMessageErrorColor)
+			self:subtleMessage(_t"Impossible", _t"You do not know this talent!", subtleMessageErrorColor)
 			return
 		end
 		if not self:isUnlearnable(t, true) and self.actor_dup:getTalentLevelRaw(t_id) >= self.actor:getTalentLevelRaw(t_id) then
 			local _, could = self:isUnlearnable(t, true)
 			if could then
-				self:subtleMessage("Impossible here", "You must be out of combat or in a quiet place like a #{bold}#town#{normal}# to unlearn this talent.", {r=200, g=200, b=255})
+				self:subtleMessage(_t"Impossible here", _t"You must be out of combat or in a quiet place like a #{bold}#town#{normal}# to unlearn this talent.", {r=200, g=200, b=255})
 			else
-				self:subtleMessage("Impossible", "You cannot unlearn this talent!", subtleMessageErrorColor)
+				self:subtleMessage(_t"Impossible", _t"You cannot unlearn this talent!", subtleMessageErrorColor)
 			end
 			return
 		end
@@ -402,13 +402,13 @@ function _M:learnTalent(t_id, v)
 		local _, reason = self.actor:canLearnTalent(t, 0)
 		local ok, dep_miss, stats_ok = self:checkDeps(nil, true)
 		self.actor:learnTalent(t_id, true, nil, {no_unlearn=true})
-		if ok or reason == "not enough stat" or not stats_ok then
+		if ok or reason == _t"not enough stat" or not stats_ok then
 			self.actor:unlearnTalent(t_id)
 			self.actor[t_index] = self.actor[t_index] + 1
 			self.talents_learned[t_id] = self.talents_learned[t_id] - 1
 			self.new_talents_changed = true
 		else
-			self:simpleLongPopup("Impossible", "You cannot unlearn this talent because of talent(s): "..dep_miss, game.w * 0.4)
+			self:simpleLongPopup(_t"Impossible", _t"You cannot unlearn this talent because of talent(s): "..dep_miss, game.w * 0.4)
 			return
 		end
 	end
@@ -419,15 +419,15 @@ function _M:learnType(tt, v)
 	self.talent_types_learned[tt] = self.talent_types_learned[tt] or {}
 	if v then
 		if self.actor:knowTalentType(tt) and self.actor.__increased_talent_types[tt] and self.actor.__increased_talent_types[tt] >= 1 then
-			self:subtleMessage("Impossible", "You can only improve a category mastery once!", subtleMessageWarningColor)
+			self:subtleMessage(_t"Impossible", _t"You can only improve a category mastery once!", subtleMessageWarningColor)
 			return
 		end
 		if self.actor.unused_talents_types <= 0 then
-			self:subtleMessage("Not enough talent category points", "You have no category points left!", subtleMessageErrorColor)
+			self:subtleMessage(_t"Not enough talent category points", _t"You have no category points left!", subtleMessageErrorColor)
 			return
 		end
 		if not self.actor.talents_types_def[tt] or (self.actor.talents_types_def[tt].min_lev or 0) > self.actor.level then
-			self:simplePopup("Too low level", ("This talent tree only provides talents starting at level %d. Learning it now would be useless."):format(self.actor.talents_types_def[tt].min_lev))
+			self:simplePopup(_t"Too low level", ("This talent tree only provides talents starting at level %d. Learning it now would be useless."):tformat(self.actor.talents_types_def[tt].min_lev))
 			return
 		end
 		if not self.actor:knowTalentType(tt) then
@@ -443,15 +443,15 @@ function _M:learnType(tt, v)
 		self.new_talents_changed = true
 	else
 		if self.actor_dup:knowTalentType(tt) == true and self.actor:knowTalentType(tt) == true and (self.actor_dup.__increased_talent_types[tt] or 0) >= (self.actor.__increased_talent_types[tt] or 0) then
-			self:subtleMessage("Impossible", "You cannot take out more points!", subtleMessageErrorColor)
+			self:subtleMessage(_t"Impossible", _t"You cannot take out more points!", subtleMessageErrorColor)
 			return
 		end
 		if self.actor_dup:knowTalentType(tt) == true and self.actor:knowTalentType(tt) == true and (self.actor.__increased_talent_types[tt] or 0) == 0 then
-			self:subtleMessage("Impossible", "You cannot unlearn this category!", subtleMessageWarningColor)
+			self:subtleMessage(_t"Impossible", _t"You cannot unlearn this category!", subtleMessageWarningColor)
 			return
 		end
 		if not self.actor:knowTalentType(tt) then
-			self:subtleMessage("Impossible", "You do not know this category!", subtleMessageErrorColor)
+			self:subtleMessage(_t"Impossible", _t"You do not know this category!", subtleMessageErrorColor)
 			return
 		end
 
@@ -469,7 +469,7 @@ function _M:learnType(tt, v)
 				self.new_talents_changed = true
 				self.talent_types_learned[tt][1] = nil
 			else
-				self:simpleLongPopup("Impossible", "You cannot unlearn this category because of: "..dep_miss, game.w * 0.4)
+				self:simpleLongPopup(_t"Impossible", ("You cannot unlearn this category because of: %s"):tformat(dep_miss), game.w * 0.4)
 				self.actor:learnTalentType(tt)
 				return
 			end
@@ -493,12 +493,12 @@ function _M:generateList()
 			local isgeneric = self.actor.talents_types_def[tt.type].generic
 			local tshown = (self.actor.__hidden_talent_types[tt.type] == nil and ttknown) or (self.actor.__hidden_talent_types[tt.type] ~= nil and not self.actor.__hidden_talent_types[tt.type])
 			local node = {
-				name=function(item) return tstring{{"font", "bold"}, cat:capitalize().." / "..tt.name:capitalize() ..(" (%s)"):format((isgeneric and "generic" or "class")), {"font", "normal"}} end,
+				name=function(item) return tstring{{"font", "bold"}, cat:capitalize().." / "..tt.name:capitalize() ..(" (%s)"):format((isgeneric and _t"generic" or _t"class")), {"font", "normal"}} end,
 				rawname=function(item) return cat:capitalize().." / "..tt.name:capitalize() ..(" (x%.2f)"):format(self.actor:getTalentTypeMastery(item.type)) end,
 				type=tt.type,
 				color=function(item) return ((self.actor:knowTalentType(item.type) ~= self.actor_dup:knowTalentType(item.type)) or ((self.actor.__increased_talent_types[item.type] or 0) ~= (self.actor_dup.__increased_talent_types[item.type] or 0))) and {255, 215, 0} or self.actor:knowTalentType(item.type) and {0,200,0} or {175,175,175} end,
 				shown = tshown,
-				status = function(item) return self.actor:knowTalentType(item.type) and tstring{{"font", "bold"}, ((self.actor.__increased_talent_types[item.type] or 0) >=1) and {"color", 255, 215, 0} or {"color", 0x00, 0xFF, 0x00}, ("%.2f"):format(self.actor:getTalentTypeMastery(item.type)), {"font", "normal"}} or tstring{{"color",  0xFF, 0x00, 0x00}, "unknown"} end,
+				status = function(item) return self.actor:knowTalentType(item.type) and tstring{{"font", "bold"}, ((self.actor.__increased_talent_types[item.type] or 0) >=1) and {"color", 255, 215, 0} or {"color", 0x00, 0xFF, 0x00}, ("%.2f"):format(self.actor:getTalentTypeMastery(item.type)), {"font", "normal"}} or tstring{{"color",  0xFF, 0x00, 0x00}, _t"unknown"} end,
 				nodes = {},
 				isgeneric = isgeneric and 0 or 1,
 				order_id = i,
@@ -607,32 +607,32 @@ end
 -- UI Stuff
 -----------------------------------------------------------------
 
-local _points_left = [[
+local _points_left = _t[[
 Stats points left: #00FF00#%d#LAST#
 Category points left: #00FF00#%d#LAST#
 Class talent points left: #00FF00#%d#LAST#
 Generic talent points left: #00FF00#%d#LAST#]]
 
-local desc_stats = ([[Stat points allow you to increase your core stats.
+local desc_stats = (_t[[Stat points allow you to increase your core stats.
 Each level you gain 3 new stat points to use.
 
 You may only increase stats to a natural maximum of 60 or lower (relative to your level).]]):toTString()
 
-local desc_class = ([[Class talent points allow you to learn new class talents or improve them.
+local desc_class = (_t[[Class talent points allow you to learn new class talents or improve them.
 Class talents are core to your class and can not be learnt by training.
 
 Each level you gain 1 new class point to use.
 Each five levels you gain one more.
 ]]):toTString()
 
-local desc_generic = ([[Generic talent points allow you to learn new generic talents or improve them.
+local desc_generic = (_t[[Generic talent points allow you to learn new generic talents or improve them.
 Generic talents comes from your class, your race or various outside training you can get during your adventures.
 
 Each level you gain 1 new generic point to use.
 Each five levels you gain one less.
 ]]):toTString()
 
-local desc_types = ([[Talent category points allow you to either:
+local desc_types = (_t[[Talent category points allow you to either:
 - learn a new talent (class or generic) category
 - improve a known talent category efficiency by 0.2
 - learn a new inscription slot (up to a maximum of 5, learning it is automatic when using an inscription)
@@ -640,13 +640,13 @@ local desc_types = ([[Talent category points allow you to either:
 You gain a new point at level 10, 20 and 34.
 Some races or items may increase them as well.]]):toTString()
 
-local desc_prodigies = ([[Prodigies are special talents that only the most powerful of characters can attain.
+local desc_prodigies = (_t[[Prodigies are special talents that only the most powerful of characters can attain.
 All of them require at least 50 in a core stat and many also have more special demands. You can learn a new prodigy at level 25 and 42.]]):toTString()
 
-local desc_inscriptions = ([[You can use a category point to unlock a new inscription slot (up to 5 slots).]]):toTString()
+local desc_inscriptions = (_t[[You can use a category point to unlock a new inscription slot (up to 5 slots).]]):toTString()
 
 function _M:createDisplay()
-	self.b_prodigies = Button.new{text="Prodigies", fct=function()
+	self.b_prodigies = Button.new{text=_t"Prodigies", fct=function()
 			self.on_finish_prodigies = self.on_finish_prodigies or {}
 			local d = require("mod.dialogs.UberTalent").new(self.actor, self.on_finish_prodigies)
 			game:registerDialog(d)
@@ -661,20 +661,20 @@ function _M:createDisplay()
 	end}
 
 	if self.actor.inscriptions_slots_added < 2 then
-		self.b_inscriptions = Button.new{text="Inscriptions", fct=function()
+		self.b_inscriptions = Button.new{text=_t"Inscriptions", fct=function()
 				if self.actor.inscriptions_slots_added >= 2 then
-					Dialog:simplePopup("Inscriptions", "You have learnt all the inscription slots you could.")
+					Dialog:simplePopup(_t"Inscriptions", _t"You have learnt all the inscription slots you could.")
 				else
 					if self.actor.unused_talents_types > 0 then
-						Dialog:yesnoPopup("Inscriptions", ("You can learn %d new slot(s). Do you wish to buy one with one category point?"):format(2 - self.actor.inscriptions_slots_added), function(ret) if ret then
+						Dialog:yesnoPopup(_t"Inscriptions", ("You can learn %d new slot(s). Do you wish to buy one with one category point?"):tformat(2 - self.actor.inscriptions_slots_added), function(ret) if ret then
 							self.actor.unused_talents_types = self.actor.unused_talents_types - 1
 							self.actor.max_inscriptions = self.actor.max_inscriptions + 1
 							self.actor.inscriptions_slots_added = self.actor.inscriptions_slots_added + 1
-							self.b_types.text = "Category points: "..self.actor.unused_talents_types
+							self.b_types.text = ("Category points: %s"):tformat(self.actor.unused_talents_types)
 							self.b_types:generate()
 						end end)
 					else
-						Dialog:simplePopup("Inscriptions", ("You can still learn %d new slot(s) but you need a category point."):format(2 - self.actor.inscriptions_slots_added))
+						Dialog:simplePopup(_t"Inscriptions", ("You can still learn %d new slot(s) but you need a category point."):tformat(2 - self.actor.inscriptions_slots_added))
 					end
 				end
 			end, on_select=function()
@@ -755,7 +755,7 @@ function _M:createDisplay()
 		no_tooltip = self.no_tooltip,
 	}
 
-	self.b_stat = Button.new{can_focus = false, can_focus_mouse=true, text="Stats: "..self.actor.unused_stats, fct=function() end, on_select=function()
+	self.b_stat = Button.new{can_focus = false, can_focus_mouse=true, text=("Stats: %s"):tformat(self.actor.unused_stats), fct=function() end, on_select=function()
 		local str = desc_stats
 		if self.no_tooltip then
 			self.c_desc:erase()
@@ -764,7 +764,7 @@ function _M:createDisplay()
 			game:tooltipDisplayAtMap(self.b_stat.last_display_x + self.b_stat.w, self.b_stat.last_display_y, str)
 		end
 	end}
-	self.b_class = Button.new{can_focus = false, can_focus_mouse=true, text="Class points: "..self.actor.unused_talents, fct=function() end, on_select=function()
+	self.b_class = Button.new{can_focus = false, can_focus_mouse=true, text=("Class points: %s"):tformat(self.actor.unused_talents), fct=function() end, on_select=function()
 		local str = desc_class
 		if self.no_tooltip then
 			self.c_desc:erase()
@@ -773,7 +773,7 @@ function _M:createDisplay()
 			game:tooltipDisplayAtMap(self.b_stat.last_display_x + self.b_stat.w, self.b_stat.last_display_y, str)
 		end
 	end}
-	self.b_generic = Button.new{can_focus = false, can_focus_mouse=true, text="Generic points: "..self.actor.unused_generics, fct=function() end, on_select=function()
+	self.b_generic = Button.new{can_focus = false, can_focus_mouse=true, text=("Generic points: %s"):tformat(self.actor.unused_generics), fct=function() end, on_select=function()
 		local str = desc_generic
 		if self.no_tooltip then
 			self.c_desc:erase()
@@ -782,7 +782,7 @@ function _M:createDisplay()
 			game:tooltipDisplayAtMap(self.b_stat.last_display_x + self.b_stat.w, self.b_stat.last_display_y, str)
 		end
 	end}
-	self.b_types = Button.new{can_focus = false, can_focus_mouse=true, text="Category points: "..self.actor.unused_talents_types, fct=function() end, on_select=function()
+	self.b_types = Button.new{can_focus = false, can_focus_mouse=true, text=("Category points: %s"):tformat(self.actor.unused_talents_types), fct=function() end, on_select=function()
 		local str = desc_types
 		if self.no_tooltip then
 			self.c_desc:erase()
@@ -858,57 +858,57 @@ function _M:getStatDesc(item)
 	local color = diff >= 0 and {"color", "LIGHT_GREEN"} or {"color", "RED"}
 	local dc = {"color", "LAST"}
 
-	text:add("Current value: ", {"color", "LIGHT_GREEN"}, ("%d"):format(self.actor:getStat(stat_id)), dc, true)
-	text:add("Base value: ", {"color", "LIGHT_GREEN"}, ("%d"):format(self.actor:getStat(stat_id, nil, nil, true)), dc, true, true)
+	text:add(_t"Current value: ", {"color", "LIGHT_GREEN"}, ("%d"):format(self.actor:getStat(stat_id)), dc, true)
+	text:add(_t"Base value: ", {"color", "LIGHT_GREEN"}, ("%d"):format(self.actor:getStat(stat_id, nil, nil, true)), dc, true, true)
 
-	text:add({"color", "LIGHT_BLUE"}, "Stat gives:", dc, true)
+	text:add({"color", "LIGHT_BLUE"}, _t"Stat gives:", dc, true)
 	if stat_id == self.actor.STAT_CON then
 		local multi_life = 4 + (self.actor.inc_resource_multi.life or 0)
-		text:add("Max life: ", color, ("%0.2f"):format(diff * multi_life), dc, true)
-		text:add("Physical save: ", color, ("%0.2f"):format(diff * 0.35), dc, true)
-		text:add("Healing mod: ", color, ("%0.1f%%"):format((self.actor:combatStatLimit("con", 1.5, 0, 0.5) - self.actor_dup:combatStatLimit("con", 1.5, 0, 0.5))*100), dc, true)
+		text:add(_t"Max life: ", color, ("%0.2f"):format(diff * multi_life), dc, true)
+		text:add(_t"Physical save: ", color, ("%0.2f"):format(diff * 0.35), dc, true)
+		text:add(_t"Healing mod: ", color, ("%0.1f%%"):format((self.actor:combatStatLimit("con", 1.5, 0, 0.5) - self.actor_dup:combatStatLimit("con", 1.5, 0, 0.5))*100), dc, true)
 	elseif stat_id == self.actor.STAT_WIL then
 		if self.actor:knowTalent(self.actor.T_MANA_POOL) then
 			local multi_mana = 5 + (self.actor.inc_resource_multi.mana or 0)
-			text:add("Max mana: ", color, ("%0.2f"):format(diff * multi_mana), dc, true)
+			text:add(_t"Max mana: ", color, ("%0.2f"):format(diff * multi_mana), dc, true)
 		end
 		if self.actor:knowTalent(self.actor.T_STAMINA_POOL) then
 			local multi_stamina = 2.5 + (self.actor.inc_resource_multi.stamina or 0)
-			text:add("Max stamina: ", color, ("%0.2f"):format(diff * multi_stamina), dc, true)
+			text:add(_t"Max stamina: ", color, ("%0.2f"):format(diff * multi_stamina), dc, true)
 		end
 		if self.actor:knowTalent(self.actor.T_PSI_POOL) then
 			local multi_psi = 1 + (self.actor.inc_resource_multi.psi or 0)
-			text:add("Max psi: ", color, ("%0.2f"):format(diff * multi_psi), dc, true)
+			text:add(_t"Max psi: ", color, ("%0.2f"):format(diff * multi_psi), dc, true)
 		end
-		text:add("Mindpower: ", color, ("%0.2f"):format(diff * 0.7), dc, true)
-		text:add("Mental save: ", color, ("%0.2f"):format(diff * 0.35), dc, true)
-		text:add("Spell save: ", color, ("%0.2f"):format(diff * 0.35), dc, true)
+		text:add(_t"Mindpower: ", color, ("%0.2f"):format(diff * 0.7), dc, true)
+		text:add(_t"Mental save: ", color, ("%0.2f"):format(diff * 0.35), dc, true)
+		text:add(_t"Spell save: ", color, ("%0.2f"):format(diff * 0.35), dc, true)
 --		if self.actor:attr("use_psi_combat") then
 --			text:add("Accuracy: ", color, ("%0.2f"):format(diff * 0.35), dc, true)
 --		end
 	elseif stat_id == self.actor.STAT_STR then
-		text:add("Physical power: ", color, ("%0.2f"):format(diff), dc, true)
-		text:add("Max encumbrance: ", color, ("%0.2f"):format(diff * 1.8), dc, true)
-		text:add("Physical save: ", color, ("%0.2f"):format(diff * 0.35), dc, true)
+		text:add(_t"Physical power: ", color, ("%0.2f"):format(diff), dc, true)
+		text:add(_t"Max encumbrance: ", color, ("%0.2f"):format(diff * 1.8), dc, true)
+		text:add(_t"Physical save: ", color, ("%0.2f"):format(diff * 0.35), dc, true)
 	elseif stat_id == self.actor.STAT_CUN then
-		text:add("Crit. chance: ", color, ("%0.2f"):format(diff * 0.3), dc, true)
-		text:add("Mental save: ", color, ("%0.2f"):format(diff * 0.35), dc, true)
-		text:add("Mindpower: ", color, ("%0.2f"):format(diff * 0.4), dc, true)
+		text:add(_t"Crit. chance: ", color, ("%0.2f"):format(diff * 0.3), dc, true)
+		text:add(_t"Mental save: ", color, ("%0.2f"):format(diff * 0.35), dc, true)
+		text:add(_t"Mindpower: ", color, ("%0.2f"):format(diff * 0.4), dc, true)
 		if self.actor:attr("use_psi_combat") then
-			text:add("Accuracy: ", color, ("%0.2f"):format(diff * 0.35), dc, true)
+			text:add(_t"Accuracy: ", color, ("%0.2f"):format(diff * 0.35), dc, true)
 		end
 	elseif stat_id == self.actor.STAT_MAG then
-		text:add("Spell save: ", color, ("%0.2f"):format(diff * 0.35), dc, true)
-		text:add("Spellpower: ", color, ("%0.2f"):format(diff * 1), dc, true)
+		text:add(_t"Spell save: ", color, ("%0.2f"):format(diff * 0.35), dc, true)
+		text:add(_t"Spellpower: ", color, ("%0.2f"):format(diff * 1), dc, true)
 	elseif stat_id == self.actor.STAT_DEX then
-		text:add("Defense: ", color, ("%0.2f"):format(diff * 0.35), dc, true)
-		text:add("Ranged defense: ", color, ("%0.2f"):format(diff * 0.35), dc, true)
-		text:add("Accuracy: ", color, ("%0.2f"):format(diff), dc, true)
-		text:add("Shrug off criticals chance: ", color, ("%0.2f%%"):format(diff * 0.3), dc, true)
+		text:add(_t"Defense: ", color, ("%0.2f"):format(diff * 0.35), dc, true)
+		text:add(_t"Ranged defense: ", color, ("%0.2f"):format(diff * 0.35), dc, true)
+		text:add(_t"Accuracy: ", color, ("%0.2f"):format(diff), dc, true)
+		text:add(_t"Shrug off criticals chance: ", color, ("%0.2f%%"):format(diff * 0.3), dc, true)
 	end
 
 	if self.actor.player and self.desc_def and self.desc_def.getStatDesc and self.desc_def.getStatDesc(stat_id, self.actor) then
-		text:add({"color", "LIGHT_BLUE"}, "Class powers:", dc, true)
+		text:add({"color", "LIGHT_BLUE"}, _t"Class powers:", dc, true)
 		text:add(self.desc_def.getStatDesc(stat_id, self.actor))
 	end
 	return text
@@ -923,15 +923,15 @@ function _M:getTalentDesc(item)
 	text:add(true, true)
 
 	if item.type then
-		text:add({"color",0x00,0xFF,0xFF}, "Talent Category", true)
-		text:add({"color",0x00,0xFF,0xFF}, "A talent category contains talents you may learn. You gain a talent category point at level 10, 20 and 34. You may also find trainers or artifacts that allow you to learn more.\nA talent category point can be used either to learn a new category or increase the mastery of a known one.", true, true, {"color", "WHITE"})
+		text:add({"color",0x00,0xFF,0xFF}, _t"Talent Category", true)
+		text:add({"color",0x00,0xFF,0xFF}, _t"A talent category contains talents you may learn. You gain a talent category point at level 10, 20 and 34. You may also find trainers or artifacts that allow you to learn more.\nA talent category point can be used either to learn a new category or increase the mastery of a known one.", true, true, {"color", "WHITE"})
 
 		if self.actor.talents_types_def[item.type].generic then
-			text:add({"color",0x00,0xFF,0xFF}, "Generic talent tree", true)
-			text:add({"color",0x00,0xFF,0xFF}, "A generic talent allows you to perform various utility actions and improve your character. It represents a skill anybody can learn (should you find a trainer for it). You gain one point every level (except every 5th level). You may also find trainers or artifacts that allow you to learn more.", true, true, {"color", "WHITE"})
+			text:add({"color",0x00,0xFF,0xFF}, _t"Generic talent tree", true)
+			text:add({"color",0x00,0xFF,0xFF}, _t"A generic talent allows you to perform various utility actions and improve your character. It represents a skill anybody can learn (should you find a trainer for it). You gain one point every level (except every 5th level). You may also find trainers or artifacts that allow you to learn more.", true, true, {"color", "WHITE"})
 		else
-			text:add({"color",0x00,0xFF,0xFF}, "Class talent tree", true)
-			text:add({"color",0x00,0xFF,0xFF}, "A class talent allows you to perform new combat moves, cast spells, and improve your character. It represents the core function of your class. You gain one point every level and two every 5th level. You may also find trainers or artifacts that allow you to learn more.", true, true, {"color", "WHITE"})
+			text:add({"color",0x00,0xFF,0xFF}, _t"Class talent tree", true)
+			text:add({"color",0x00,0xFF,0xFF}, _t"A class talent allows you to perform new combat moves, cast spells, and improve your character. It represents the core function of your class. You gain one point every level and two every 5th level. You may also find trainers or artifacts that allow you to learn more.", true, true, {"color", "WHITE"})
 		end
 
 		text:add(self.actor:getTalentTypeFrom(item.type).description)
@@ -942,12 +942,12 @@ function _M:getTalentDesc(item)
 		local unlearnable, could_unlearn = self:isUnlearnable(t, true)
 		if unlearnable then
 			local max = tostring(self.actor:lastLearntTalentsMax(t.generic and "generic" or "class"))
-			text:add({"color","LIGHT_BLUE"}, "This talent was recently learnt; you can still unlearn it.", true, "The last ", max, t.generic and " generic" or " class", " talents you learnt are always unlearnable.", {"color","LAST"}, true, true)
+			text:add({"color","LIGHT_BLUE"}, _t"This talent was recently learnt; you can still unlearn it.", true, ("The last %d %s talents you learnt are always unlearnable."):tformat(max, t.generic and _t" generic" or _t" class"), " ", {"color","LAST"}, true, true)
 		elseif t.no_unlearn_last then
-			text:add({"color","YELLOW"}, "This talent can alter the world in a permanent way; as such, you can never unlearn it once known.", {"color","LAST"}, true, true)
+			text:add({"color","YELLOW"}, _t"This talent can alter the world in a permanent way; as such, you can never unlearn it once known.", {"color","LAST"}, true, true)
 		elseif could_unlearn then
 			local max = tostring(self.actor:lastLearntTalentsMax(t.generic and "generic" or "class"))
-			text:add({"color","LIGHT_BLUE"}, "This talent was recently learnt; you can still unlearn it if you are out of combat or in a quiet area like a #{bold}#town#{normal}#.", true, "The last ", max, t.generic and " generic" or " class", " talents you learnt are always unlearnable.", {"color","LAST"}, true, true)
+			text:add({"color","LIGHT_BLUE"}, _t"This talent was recently learnt; you can still unlearn it if you are out of combat or in a quiet area like a #{bold}#town#{normal}#.", true, ("The last %d %s talents you learnt are always unlearnable."):tformat(max, t.generic and _t" generic" or _t" class"), {"color","LAST"}, true, true)
 		end
 
 		local traw = self.actor:getTalentLevelRaw(t.id)
@@ -960,7 +960,7 @@ function _M:getTalentDesc(item)
 		if traw == 0 then
 			local req = self.actor:getTalentReqDesc(item.talent, 1):toTString():tokenize(" ()[]")
 			text:add{"color","WHITE"}
-			text:add({"font", "bold"}, "First talent level: ", tostring(traw+1), {"font", "normal"})
+			text:add({"font", "bold"}, _t"First talent level: ", tostring(traw+1), {"font", "normal"})
 			text:add(true)
 			text:merge(req)
 			text:merge(self.actor:getTalentFullDescription(t, 1000):diffWith(self.actor:getTalentFullDescription(t, 1), diff_color))
@@ -968,13 +968,13 @@ function _M:getTalentDesc(item)
 			local req = self.actor:getTalentReqDesc(item.talent):toTString():tokenize(" ()[]")
 			local req2 = self.actor:getTalentReqDesc(item.talent, 1):toTString():tokenize(" ()[]")
 			text:add{"color","WHITE"}
-			text:add({"font", "bold"}, traw == 0 and "Next talent level" or "Current talent level: ", tostring(traw), " [-> ", tostring(traw + 1), "]", {"font", "normal"})
+			text:add({"font", "bold"}, traw == 0 and _t"Next talent level" or _t"Current talent level: ", tostring(traw), " [-> ", tostring(traw + 1), "]", {"font", "normal"})
 			text:add(true)
 			text:merge(req2:diffWith(req, diff_full))
 			text:merge(self.actor:getTalentFullDescription(t, 1):diffWith(self.actor:getTalentFullDescription(t), diff_full))
 		else
 			local req = self.actor:getTalentReqDesc(item.talent):toTString():tokenize(" ()[]")
-			text:add({"font", "bold"}, "Current talent level: "..traw, {"font", "normal"})
+			text:add({"font", "bold"}, _t"Current talent level: "..traw, {"font", "normal"})
 			text:add(true)
 			text:merge(req)
 			text:merge(self.actor:getTalentFullDescription(t, 1000):diffWith(self.actor:getTalentFullDescription(t), diff_color))
@@ -1002,13 +1002,13 @@ function _M:onUseTalent(item, inc)
 		self.c_gtree:redrawAllItems()
 	end
 
-	self.b_stat.text = "Stats: "..self.actor.unused_stats
+	self.b_stat.text = ("Stats: %s"):tformat(self.actor.unused_stats)
 	self.b_stat:generate()
-	self.b_class.text = "Class points: "..self.actor.unused_talents
+	self.b_class.text = ("Class points: %s"):tformat(self.actor.unused_talents)
 	self.b_class:generate()
-	self.b_generic.text = "Generic points: "..self.actor.unused_generics
+	self.b_generic.text = ("Generic points: %s"):tformat(self.actor.unused_generics)
 	self.b_generic:generate()
-	self.b_types.text = "Category points: "..self.actor.unused_talents_types
+	self.b_types.text = ("Category points: %s"):tformat(self.actor.unused_talents_types)
 	self.b_types:generate()
 end