diff options
author | 2009-07-12 13:49:18 -0400 | |
---|---|---|
committer | 2009-07-12 13:49:18 -0400 | |
commit | d2ccaca2aa99dcf4124b0f4c68a876737aa26537 (patch) | |
tree | 3f14b1acb1436f5df066b5a28b3c63269216d675 /core | |
parent | 7043d8ef2abdc024c813496736145763a0550a59 (diff) | |
download | textadept-d2ccaca2aa99dcf4124b0f4c68a876737aa26537.tar.gz textadept-d2ccaca2aa99dcf4124b0f4c68a876737aa26537.zip |
textadept.dialog doesn't support '--text' for 'fileselect'.
CocoaDialog supports this, but gcocoadialog is used now.
Diffstat (limited to 'core')
-rw-r--r-- | core/ext/find.lua | 1 | ||||
-rw-r--r-- | core/file_io.lua | 1 | ||||
-rw-r--r-- | core/locale.conf | 8 |
3 files changed, 0 insertions, 10 deletions
diff --git a/core/ext/find.lua b/core/ext/find.lua index 1f3dfa99..950d5aa7 100644 --- a/core/ext/find.lua +++ b/core/ext/find.lua @@ -81,7 +81,6 @@ local function find_(text, next, flags, nowrap, wrapped) local utf8_dir = textadept.dialog('fileselect', '--title', locale.FIND_IN_FILES_TITLE, - '--text', locale.FIND_IN_FILES_TEXT, '--select-only-directories', '--with-directory', (buffer.filename or ''):match('^.+[/\\]') or '', diff --git a/core/file_io.lua b/core/file_io.lua index 4634f8f6..d37caf1d 100644 --- a/core/file_io.lua +++ b/core/file_io.lua @@ -151,7 +151,6 @@ function open(utf8_filenames) utf8_filenames or textadept.dialog('fileselect', '--title', locale.IO_OPEN_TITLE, - '--text', locale.IO_OPEN_TEXT, '--select-multiple', '--with-directory', (buffer.filename or ''):match('.+[/\\]') or '') diff --git a/core/locale.conf b/core/locale.conf index a7ce2028..b7ea6e68 100644 --- a/core/locale.conf +++ b/core/locale.conf @@ -76,10 +76,6 @@ IO_ICONV_ERROR "Encoding conversion failed." IO_OPEN_TITLE "Open" % core/file_io.lua -% "Select a file(s) to open" -IO_OPEN_TEXT "Select a file(s) to open" - -% core/file_io.lua % "Save" IO_SAVE_TITLE "Save" @@ -140,10 +136,6 @@ FIND_REPLACEMENTS_MADE "%d replacement(s) made" FIND_IN_FILES_TITLE "Find in Files" % core/ext/find.lua -% "Select Directory to Search" -FIND_IN_FILES_TEXT "Select Directory to Search" - -% core/ext/find.lua % "[Files Found Buffer]" FIND_FILES_FOUND_BUFFER "[Files Found Buffer]" |