diff options
author | 2020-02-21 16:09:53 -0500 | |
---|---|---|
committer | 2020-02-21 16:09:53 -0500 | |
commit | 5b2511834db13d21724314c20be06aa71afdee2b (patch) | |
tree | 8235872dd868dd2bf87592a0b2ac0a11bf945f2c /modules/textadept/run.lua | |
parent | b4a67ffb3aedafcd778ad853246f8119f7e5e9e6 (diff) | |
download | textadept-5b2511834db13d21724314c20be06aa71afdee2b.tar.gz textadept-5b2511834db13d21724314c20be06aa71afdee2b.zip |
Removed '_' mnemonics from locale keys.
Kept backward-compatibility for now.
Diffstat (limited to 'modules/textadept/run.lua')
-rw-r--r-- | modules/textadept/run.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/textadept/run.lua b/modules/textadept/run.lua index 047adcca..52471ed7 100644 --- a/modules/textadept/run.lua +++ b/modules/textadept/run.lua @@ -290,7 +290,7 @@ function M.build(root_directory) if lfs.attributes(root_directory..'/'..build_file) then local button, utf8_command = ui.dialogs.inputbox{ title = _L['Command'], informative_text = root_directory, - text = build_command, button1 = _L['_OK'], button2 = _L['_Cancel'] + text = build_command, button1 = _L['OK'], button2 = _L['Cancel'] } if button == 1 then command = utf8_command:iconv(_CHARSET, 'UTF-8') end break |