diff options
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 a3723683..4d80ae39 100644 --- a/modules/textadept/find.lua +++ b/modules/textadept/find.lua @@ -5,16 +5,16 @@ local events = events local find = gui.find local c = _SCINTILLA.constants -find.find_label_text = L('_Find:') -find.replace_label_text = L('R_eplace:') -find.find_next_button_text = L('Find _Next') -find.find_prev_button_text = L('Find _Prev') -find.replace_button_text = L('_Replace') -find.replace_all_button_text = L('Replace _All') -find.match_case_label_text = L('_Match case') -find.whole_word_label_text = L('_Whole word') -find.lua_pattern_label_text = L('_Lua pattern') -find.in_files_label_text = L('_In files') +find.find_label_text = L('Find:') +find.replace_label_text = L('Replace:') +find.find_next_button_text = L('Find Next') +find.find_prev_button_text = L('Find Prev') +find.replace_button_text = L('Replace') +find.replace_all_button_text = L('Replace All') +find.match_case_label_text = L('Match case') +find.whole_word_label_text = L('Whole word') +find.lua_pattern_label_text = L('Lua pattern') +find.in_files_label_text = L('In files') local MARK_FIND = _SCINTILLA.next_marker_number() local MARK_FIND_COLOR = 0x4D9999 |