From 234161ea0df6e03df246ae3114821e9ec877e22a Mon Sep 17 00:00:00 2001
From: DarkGod <darkgod@net-core.org>
Date: Sun, 4 Oct 2020 17:12:09 +0200
Subject: [PATCH] i18n

---
 game/modules/tome/data/general/events/meteor.lua       | 2 +-
 game/modules/tome/data/talents/celestial/celestial.lua | 8 ++++----
 2 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/game/modules/tome/data/general/events/meteor.lua b/game/modules/tome/data/general/events/meteor.lua
index 21a8bcdfce..e9e28644fa 100644
--- a/game/modules/tome/data/general/events/meteor.lua
+++ b/game/modules/tome/data/general/events/meteor.lua
@@ -88,7 +88,7 @@ game.zone.on_turn = function()
 
 	world:gainAchievement("EVENT_METEOR", game:getPlayer(true))
 	game:getPlayer(true):attr("meteoric_crash", 1)
-	require("engine.ui.Dialog"):simplePopup("Meteor!", "As you walk you notice a huge rock falling from the sky. It crashes right near you!")
+	require("engine.ui.Dialog"):simplePopup(_t"Meteor!", _t"As you walk you notice a huge rock falling from the sky. It crashes right near you!")
 end
 
 return true
diff --git a/game/modules/tome/data/talents/celestial/celestial.lua b/game/modules/tome/data/talents/celestial/celestial.lua
index d3c2abffc3..358f14feb3 100644
--- a/game/modules/tome/data/talents/celestial/celestial.lua
+++ b/game/modules/tome/data/talents/celestial/celestial.lua
@@ -40,10 +40,10 @@ newTalentType{ allow_random=true, no_silence=true, is_spell=true, type="celestia
 newTalentType{ no_silence=true, is_spell=true, type="celestial/other", name = _t"other", description = _t"Various celestial talents." }
 
 -- Fallen Class Evolution
-newTalentType{ allow_random=false, no_silence=true, is_spell=true, type="celestial/dirges", name = "Dirges", description = "The songs the Fallen sing." }
-newTalentType{ allow_random=false, no_silence=true, is_spell=true, type="celestial/darkside", name = "Darkside", description = "Signature magics of the Fallen.  The sun shines for the guilty and the innocent alike." }
-newTalentType{ allow_random=false, no_silence=true, is_spell=true, type="celestial/dark-sun", name = "Dark Sun", description = "Celestial combat techniques inspired by the dark places that are not empty." }
-newTalentType{ allow_random=false, no_silence=true, is_spell=true, generic=true, type="celestial/dirge", name = "Dirges", description = "Sing of death and damnation." }
+newTalentType{ allow_random=false, no_silence=true, is_spell=true, type="celestial/dirges", name = _t"Dirges", description = _t"The songs the Fallen sing." }
+newTalentType{ allow_random=false, no_silence=true, is_spell=true, type="celestial/darkside", name = _t"Darkside", description = _t"Signature magics of the Fallen.  The sun shines for the guilty and the innocent alike." }
+newTalentType{ allow_random=false, no_silence=true, is_spell=true, type="celestial/dark-sun", name = _t"Dark Sun", description = _t"Celestial combat techniques inspired by the dark places that are not empty." }
+newTalentType{ allow_random=false, no_silence=true, is_spell=true, generic=true, type="celestial/dirge", name = _t"Dirges", description = _t"Sing of death and damnation." }
 
 -- Generic requires for celestial spells based on talent level
 divi_req1 = {
-- 
GitLab