supress intllib check warning, this fixes #19

This commit is contained in:
Tim 2015-02-05 10:00:10 +01:00
parent 1a962542e6
commit 1a1bfc3839
5 changed files with 5 additions and 5 deletions

View File

@ -1,5 +1,5 @@
local S
if intllib then
if rawget(_G, "intllib") then
S = intllib.Getter()
else
S = function(s) return s end

View File

@ -4,7 +4,7 @@
-- License: GPLv3
local S
if intllib then
if rawget(_G, "intllib") then
S = intllib.Getter()
else
S = function(s) return s end

View File

@ -1,5 +1,5 @@
local S
if intllib then
if rawget(_G, "intllib") then
S = intllib.Getter()
else
S = function(s) return s end

View File

@ -1,5 +1,5 @@
local S
if intllib then
if rawget(_G, "intllib") then
S = intllib.Getter()
else
S = function(s) return s end

View File

@ -1,5 +1,5 @@
local S
if intllib then
if rawget(_G, "intllib") then
S = intllib.Getter()
else
S = function(s) return s end