aboutsummaryrefslogtreecommitdiff
path: root/modules/textadept/find.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/find.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/find.lua')
-rw-r--r--modules/textadept/find.lua20
1 files changed, 10 insertions, 10 deletions
diff --git a/modules/textadept/find.lua b/modules/textadept/find.lua
index 368380e1..70a3f7d7 100644
--- a/modules/textadept/find.lua
+++ b/modules/textadept/find.lua
@@ -67,16 +67,16 @@ local M = ui.find
module('ui.find')]]
local _L = _L
-M.find_label_text = _L['_Find:']
-M.replace_label_text = _L['R_eplace:']
-M.find_next_button_text = not CURSES and _L['Find _Next'] or _L['[Next]']
-M.find_prev_button_text = not CURSES and _L['Find _Prev'] or _L['[Prev]']
-M.replace_button_text = not CURSES and _L['_Replace'] or _L['[Replace]']
-M.replace_all_button_text = not CURSES and _L['Replace _All'] or _L['[All]']
-M.match_case_label_text = not CURSES and _L['_Match case'] or _L['Case(F1)']
-M.whole_word_label_text = not CURSES and _L['_Whole word'] or _L['Word(F2)']
-M.regex_label_text = not CURSES and _L['Rege_x'] or _L['Regex(F3)']
-M.in_files_label_text = not CURSES and _L['_In files'] or _L['Files(F4)']
+M.find_label_text = _L['Find:']
+M.replace_label_text = _L['Replace:']
+M.find_next_button_text = not CURSES and _L['Find Next'] or _L['[Next]']
+M.find_prev_button_text = not CURSES and _L['Find Prev'] or _L['[Prev]']
+M.replace_button_text = not CURSES and _L['Replace'] or _L['[Replace]']
+M.replace_all_button_text = not CURSES and _L['Replace All'] or _L['[All]']
+M.match_case_label_text = not CURSES and _L['Match case'] or _L['Case(F1)']
+M.whole_word_label_text = not CURSES and _L['Whole word'] or _L['Word(F2)']
+M.regex_label_text = not CURSES and _L['Regex'] or _L['Regex(F3)']
+M.in_files_label_text = not CURSES and _L['In files'] or _L['Files(F4)']
M.find_in_files_timeout = 10
M.INDIC_FIND = _SCINTILLA.next_indic_number()