diff options
author | 2011-06-30 01:26:43 -0400 | |
---|---|---|
committer | 2011-06-30 01:26:43 -0400 | |
commit | d3483ade7ba04106fa9f67332b1d46cf5306ee2a (patch) | |
tree | b493e28a010a8d3332471764cbedbe6fca83d3f5 /core/.find.luadoc | |
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 'core/.find.luadoc')
-rw-r--r-- | core/.find.luadoc | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/core/.find.luadoc b/core/.find.luadoc index b5e3dd99..7b7a474b 100644 --- a/core/.find.luadoc +++ b/core/.find.luadoc @@ -15,6 +15,26 @@ module('gui.find') -- * `whole_word` [bool]: Only whole-word matches are allowed in searches. -- * `lua` [bool]: The search text is interpreted as a Lua pattern. -- * `in_files` [bool]: Search for the text in a list of files. +-- * `find_label_text` [string]: The text of the 'Find' label. This is primarily +-- used for localization. (Write-only) +-- * `replace_label_text` [string]: The text of the 'Replace' label. This is +-- primarily used for localization. (Write-only) +-- * `find_next_button_text` [string]: The text of the 'Find Next' button. This +-- is primarily used for localization. (Write-only) +-- * `find_prev_button_text` [string]: The text of the 'Find Prev' button. This +-- is primarily used for localization. (Write-only) +-- * `replace_button_text` [string]: The text of the 'Replace' button. This is +-- primarily used for localization. (Write-only) +-- * `replace_all_button_text` [string]: The text of the 'Replace All' button. +-- This is primarily used for localization. (Write-only) +-- * `match_case_label_text` [string]: The text of the 'Match case' label. This +-- is primarily used for localization. (Write-only) +-- * `whole_word_label_text` [string]: The text of the 'Whole word' label. This +-- is primarily used for localization. (Write-only) +-- * `lua_pattern_label_text` [string]: The text of the 'Lua pattern' label. +-- This is primarily used for localization. (Write-only) +-- * `in_files_label_text` [string]: The text of the 'In files' label. This is +-- primarily used for localization. (Write-only) --- -- Displays and focuses the find/replace dialog. |