diff options
author | Steven Barth <steven@midlink.org> | 2008-05-06 20:44:45 +0000 |
---|---|---|
committer | Steven Barth <steven@midlink.org> | 2008-05-06 20:44:45 +0000 |
commit | fc65325c174e13cc1a9329d154e74069257ebb12 (patch) | |
tree | 1c5813fa25f538989802eacf6fe45a2ed7b06867 /core/src/ffluci/i18n.lua | |
parent | 21bd8ca76deec06b8e4f4dc3bc2ea75c7f9c3260 (diff) |
* General code cleanup
* Removed unnecessary module dependencies
* Completed SGI abstraction
* Reworked ffluci.sgi.webuci
Diffstat (limited to 'core/src/ffluci/i18n.lua')
-rw-r--r-- | core/src/ffluci/i18n.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/src/ffluci/i18n.lua b/core/src/ffluci/i18n.lua index 11f4afe871..489308cc9e 100644 --- a/core/src/ffluci/i18n.lua +++ b/core/src/ffluci/i18n.lua @@ -25,11 +25,11 @@ limitations under the License. ]]-- module("ffluci.i18n", package.seeall) - require("ffluci.config") +require("ffluci.sys") table = {} -i18ndir = ffluci.config.path .. "/i18n/" +i18ndir = ffluci.sys.libpath() .. "/i18n/" -- Clears the translation table function clear() |