diff options
author | 2011-06-30 01:26:43 -0400 | |
---|---|---|
committer | 2011-06-30 01:26:43 -0400 | |
commit | d3483ade7ba04106fa9f67332b1d46cf5306ee2a (patch) | |
tree | b493e28a010a8d3332471764cbedbe6fca83d3f5 /modules/textadept/find.lua | |
parent | c407317f84ae66afd5843b00237318f083a0eddd (diff) | |
download | textadept-d3483ade7ba04106fa9f67332b1d46cf5306ee2a.tar.gz textadept-d3483ade7ba04106fa9f67332b1d46cf5306ee2a.zip |
Localize the labels and buttons in the find GUI frame; src/textadept.c
Diffstat (limited to 'modules/textadept/find.lua')
-rw-r--r-- | modules/textadept/find.lua | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/modules/textadept/find.lua b/modules/textadept/find.lua index a4298d67..a3723683 100644 --- a/modules/textadept/find.lua +++ b/modules/textadept/find.lua @@ -5,6 +5,17 @@ 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') + local MARK_FIND = _SCINTILLA.next_marker_number() local MARK_FIND_COLOR = 0x4D9999 local previous_view |