Search engine: change some text constants.

* change names of search types
 * change error message about unimplemented search type
This commit is contained in:
Slava Zanko 2009-04-30 14:25:42 +03:00
parent 15b2d19428
commit ebd271feca
2 changed files with 4 additions and 4 deletions

View File

@ -37,7 +37,7 @@
/*** global variables ****************************************************************************/
char STR_E_NOTFOUND[] = N_(" Search string not found ");
char STR_E_UNKNOWN_TYPE[] = N_(" Unsupported search type ");
char STR_E_UNKNOWN_TYPE[] = N_(" Not implemented yet ");
/*** file scope macro definitions ****************************************************************/

View File

@ -46,9 +46,9 @@
static const mc_search_type_str_t mc_search__list_types[] = {
{N_("Normal"), MC_SEARCH_T_NORMAL},
{N_("Regex"), MC_SEARCH_T_REGEX},
{N_("Hex"), MC_SEARCH_T_HEX},
{N_("File"), MC_SEARCH_T_GLOB},
{N_("&Regular expression"), MC_SEARCH_T_REGEX},
{N_("Hexadecimal"), MC_SEARCH_T_HEX},
{N_("Wildcard search"), MC_SEARCH_T_GLOB},
{NULL, -1}
};