diff options
author | 2011-12-31 18:00:19 -0500 | |
---|---|---|
committer | 2011-12-31 18:00:19 -0500 | |
commit | bd55d676f133a5b38ca53c33bf599d66dfe1fc87 (patch) | |
tree | 369c9cfa6fe5e32eeb3bc89d0a86d3c8def57044 /modules/textadept/keys.lua | |
parent | ae8dddf78ef5b07f4d64471d8f6800746373af6e (diff) | |
download | textadept-bd55d676f133a5b38ca53c33bf599d66dfe1fc87.tar.gz textadept-bd55d676f133a5b38ca53c33bf599d66dfe1fc87.zip |
Changed 'locale.localize()' to global '_L' table.
Diffstat (limited to 'modules/textadept/keys.lua')
-rw-r--r-- | modules/textadept/keys.lua | 13 |
1 files changed, 5 insertions, 8 deletions
diff --git a/modules/textadept/keys.lua b/modules/textadept/keys.lua index ce23107f..50ea4dd7 100644 --- a/modules/textadept/keys.lua +++ b/modules/textadept/keys.lua @@ -1,8 +1,5 @@ -- Copyright 2007-2011 Mitchell mitchell<att>caladbolg.net. See LICENSE. -local L = locale.localize -local gui = gui - local M = {} --[[ @@ -12,7 +9,7 @@ local M = {} -- This module, should be 'require'ed last, but before _m.textadept.menu. module('_m.textadept.keys')]] -local keys, _buffer, _view = keys, buffer, view +local keys, gui, _buffer, _view = keys, gui, buffer, view local m_textadept, m_editing = _m.textadept, _m.textadept.editing local c, OSX = _SCINTILLA.constants, OSX @@ -38,8 +35,8 @@ M.utils = { show_style = function() local buffer = buffer local style = buffer.style_at[buffer.current_pos] - local text = string.format("%s %s\n%s %s (%d)", L('Lexer'), - buffer:get_lexer(), L('Style'), + local text = string.format("%s %s\n%s %s (%d)", _L['Lexer'], + buffer:get_lexer(), _L['Style'], buffer:get_style_name(style), style) buffer:call_tip_show(buffer.current_pos, text) end, @@ -78,12 +75,12 @@ M.utils = { if WIN32 then cmd = string.format('start "" "%s"', url) local p = io.popen(cmd) - if not p then error(L('Error loading webpage:')..url) end + if not p then error(_L['Error loading webpage:']..url) end p:close() else cmd = string.format(OSX and 'open "file://%s"' or 'xdg-open "%s" &', url) local _, _, code = os.execute(cmd) - if code ~= 0 then error(L('Error loading webpage:')..url) end + if code ~= 0 then error(_L['Error loading webpage:']..url) end end end } |