diff options
-rw-r--r-- | core/locale.lua | 2 |
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 }) |