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/find.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/find.lua')
-rw-r--r-- | modules/textadept/find.lua | 20 |
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() |