change translator-specific comments in search.c so that they show up in

nano.pot


git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@3381 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
master
David Lawrence Ramsey 2006-04-14 22:22:00 +00:00
parent 57c9afb9e6
commit 8f6fb3c6b6
2 changed files with 7 additions and 7 deletions

View File

@ -12,7 +12,7 @@ CVS code -
Changes to load_history() and do_rcfile(). (DLR) Changes to load_history() and do_rcfile(). (DLR)
- Change translator-specific comments in global.c and prompt.c - Change translator-specific comments in global.c and prompt.c
so that they show up in nano.pot, and make them all so that they show up in nano.pot, and make them all
consistent. (Benno Schulenberg) consistent. (Benno Schulenberg and DLR)
- Reduce USE_UTF8 to a static bool in chars.c, allow nano.c to - Reduce USE_UTF8 to a static bool in chars.c, allow nano.c to
set it via a function, and allow winio.c to read its value set it via a function, and allow winio.c to read its value
when needed. New functions utf8_init() and using_utf8(); when needed. New functions utf8_init() and using_utf8();

View File

@ -178,20 +178,20 @@ int search_init(bool replacing, bool use_answer)
#endif #endif
edit_refresh, "%s%s%s%s%s%s", _("Search"), edit_refresh, "%s%s%s%s%s%s", _("Search"),
#ifndef NANO_TINY #ifndef NANO_TINY
/* This string is just a modifier for the search prompt; no /* TRANSLATORS: This string is just a modifier for the search
* grammar is implied. */ * prompt; no grammar is implied. */
ISSET(CASE_SENSITIVE) ? _(" [Case Sensitive]") : ISSET(CASE_SENSITIVE) ? _(" [Case Sensitive]") :
#endif #endif
"", "",
#ifdef HAVE_REGEX_H #ifdef HAVE_REGEX_H
/* This string is just a modifier for the search prompt; no /* TRANSLATORS: This string is just a modifier for the search
* grammar is implied. */ * prompt; no grammar is implied. */
ISSET(USE_REGEXP) ? _(" [Regexp]") : ISSET(USE_REGEXP) ? _(" [Regexp]") :
#endif #endif
"", "",
#ifndef NANO_TINY #ifndef NANO_TINY
/* This string is just a modifier for the search prompt; no /* TRANSLATORS: This string is just a modifier for the search
* grammar is implied. */ * prompt; no grammar is implied. */
ISSET(BACKWARDS_SEARCH) ? _(" [Backwards]") : ISSET(BACKWARDS_SEARCH) ? _(" [Backwards]") :
#endif #endif
"", replacing ? "", replacing ?