aboutsummaryrefslogtreecommitdiffhomepage
path: root/core/locale.lua
diff options
context:
space:
mode:
authorGravatar mitchell <70453897+667e-11@users.noreply.github.com>2012-06-24 18:46:07 -0400
committerGravatar mitchell <70453897+667e-11@users.noreply.github.com>2012-06-24 18:46:07 -0400
commitd847e314957b041d677d4498b1f4f431d3a6e827 (patch)
tree1452b46152598b1f202bc6d2b62120a21bd1e4ce /core/locale.lua
parent51136aba16a9d070de374627e361a359ec7b9578 (diff)
Show the text to be localized in the 'No Localization' message; core/locale.lua
Diffstat (limited to 'core/locale.lua')
-rw-r--r--core/locale.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/locale.lua b/core/locale.lua
index a2a0d9d4..90142708 100644
--- a/core/locale.lua
+++ b/core/locale.lua
@@ -22,4 +22,4 @@ for line in f:lines() do
end
f:close()
-return setmetatable(M, { __index = function() return M._NIL end })
+return setmetatable(M, { __index = function(t, k) return M._NIL..': '..k end })