]> git.wh0rd.org Git - nano.git/commitdiff
change translator-specific comments in search.c so that they show up in
authorDavid Lawrence Ramsey <pooka109@gmail.com>
Fri, 14 Apr 2006 22:22:00 +0000 (22:22 +0000)
committerDavid Lawrence Ramsey <pooka109@gmail.com>
Fri, 14 Apr 2006 22:22:00 +0000 (22:22 +0000)
nano.pot

git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@3381 35c25a1d-7b9e-4130-9fde-d3aeb78583b8

ChangeLog
src/search.c

index 59c8fe196730394132885efc64250217f9e09255..3b8181bcbdba2254329c4bec02de32c6a836486a 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -12,7 +12,7 @@ CVS code -
          Changes to load_history() and do_rcfile(). (DLR)
        - Change translator-specific comments in global.c and prompt.c
          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
          set it via a function, and allow winio.c to read its value
          when needed.  New functions utf8_init() and using_utf8();
index f2e7b7d37667f5d177aa22523b7bef2812587b17..a61d04fcf8b6ce78503cc824e5e906b2d3653349 100644 (file)
@@ -178,20 +178,20 @@ int search_init(bool replacing, bool use_answer)
 #endif
        edit_refresh, "%s%s%s%s%s%s", _("Search"),
 #ifndef NANO_TINY
-       /* This string is just a modifier for the search prompt; no
-        * grammar is implied. */
+       /* TRANSLATORS: This string is just a modifier for the search
+        * prompt; no grammar is implied. */
        ISSET(CASE_SENSITIVE) ? _(" [Case Sensitive]") :
 #endif
        "",
 #ifdef HAVE_REGEX_H
-       /* This string is just a modifier for the search prompt; no
-        * grammar is implied. */
+       /* TRANSLATORS: This string is just a modifier for the search
+        * prompt; no grammar is implied. */
        ISSET(USE_REGEXP) ? _(" [Regexp]") :
 #endif
        "",
 #ifndef NANO_TINY
-       /* This string is just a modifier for the search prompt; no
-        * grammar is implied. */
+       /* TRANSLATORS: This string is just a modifier for the search
+        * prompt; no grammar is implied. */
        ISSET(BACKWARDS_SEARCH) ? _(" [Backwards]") :
 #endif
        "", replacing ?