aboutsummaryrefslogtreecommitdiff
path: root/modules/textadept/run.lua
diff options
context:
space:
mode:
authormitchell <70453897+667e-11@users.noreply.github.com>2020-02-21 16:09:53 -0500
committermitchell <70453897+667e-11@users.noreply.github.com>2020-02-21 16:09:53 -0500
commit5b2511834db13d21724314c20be06aa71afdee2b (patch)
tree8235872dd868dd2bf87592a0b2ac0a11bf945f2c /modules/textadept/run.lua
parentb4a67ffb3aedafcd778ad853246f8119f7e5e9e6 (diff)
downloadtextadept-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.lua2
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