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/editing.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/editing.lua')
-rw-r--r-- | modules/textadept/editing.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/textadept/editing.lua b/modules/textadept/editing.lua index e9014f3f..f97e5618 100644 --- a/modules/textadept/editing.lua +++ b/modules/textadept/editing.lua @@ -349,7 +349,7 @@ function M.goto_line(line) if not line then local button, value = ui.dialogs.inputbox{ title = _L['Go To'], informative_text = _L['Line Number:'], - button1 = _L['_OK'], button2 = _L['_Cancel'] + button1 = _L['OK'], button2 = _L['Cancel'] } line = tonumber(value) if button ~= 1 or not line then return end |