lynx-dev
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

lynx-dev correct few messages in pre.4 (patch)


From: Leonid Pauzner
Subject: lynx-dev correct few messages in pre.4 (patch)
Date: Thu, 13 Apr 2000 14:49:58 +0400 (MSD)

Looking back into "recent statusline messages"
I found have remembered that there are several more messages
that should be without trailing period.

Hope that would not introduce big problem for translation teams.


                                      Your recent statusline messages (p1 of 2)

   23. Cancelled!!!
   22. Trace ON!
   21. Data transfer complete
   20. HTTP/1.1 200 OK
   19. HTTP request sent; waiting for response.
   18. Sending HTTP request.
   17. Making HTTP connection to proxy.mccme.ru:3128
   16. Looking up proxy.mccme.ru:3128
   15. HTTP/1.1 302 Found
   14. Data transfer complete
   13. 'A'lways allowing from domain 'www.job.ru'.
   12. HTTP/1.1 302 Found
   11. HTTP request sent; waiting for response.
   10. Sending HTTP request.
    9. Making HTTP connection to proxy.mccme.ru:3128
    8. Looking up proxy.mccme.ru:3128
    7. Looking up www.job.ru first
    6. Data transfer complete
    5. HTTP/1.1 200 OK
    4. HTTP request sent; waiting for response.
    3. Sending HTTP request.

=======================================


* remove trailing "." from few more messages ended with file/host name,
  and most popular ones: "Sending HTTP request." and
  "HTTP request sent; waiting for response."


diff -u old/http.c ./http.c
--- old/http.c  Sun Mar 12 16:38:38 2000
+++ ./http.c    Thu Apr 13 14:44:10 2000
@@ -782,7 +782,7 @@
               command,
               (anAnchor->post_data ? crlf : "")));

-  _HTProgress (gettext("Sending HTTP request."));
+  _HTProgress (gettext("Sending HTTP request"));

 #ifdef    NOT_ASCII  /* S/390 -- gil -- 0548 */
   {   char *p;
@@ -822,7 +822,7 @@
   }

   CTRACE((tfp, "HTTP: WRITE delivered OK\n"));
-  _HTProgress (gettext("HTTP request sent; waiting for response."));
+  _HTProgress (gettext("HTTP request sent; waiting for response..."));

   /*   Read the first line of the response
   **   -----------------------------------
diff -u old/lymessag.h ./lymessag.h
--- old/lymessag.h      Sun Apr  2 19:44:00 2000
+++ ./lymessag.h        Thu Apr 13 14:28:10 2000
@@ -472,7 +472,7 @@
 #define READING_DIRECTORY gettext("Reading directory...")
 #define BUILDING_DIR_LIST gettext("Building directory listing...")
 #define SAVING gettext("Saving...")
-#define COULD_NOT_EDIT_FILE gettext("Could not edit file '%s'.")
+#define COULD_NOT_EDIT_FILE gettext("Could not edit file '%s'")
 #define COULD_NOT_ACCESS_DOCUMENT gettext("Unable to access document!")
 #define COULD_NOT_ACCESS_FILE gettext("Could not access file.")
 #define COULD_NOT_ACCESS_DIR gettext("Could not access directory.")
@@ -750,9 +750,9 @@
 #define DELETE_DOMAIN_SET_ALLOW_OR_CANCEL \
  gettext("D)elete domain, set allow A)lways/P)rompt/neV)er, or C)ancel? ")
 #define DOMAIN_COOKIES_EATEN gettext("All cookies in the domain have been 
eaten!")
-#define ALWAYS_ALLOWING_COOKIES gettext("'A'lways allowing from domain '%s'.")
-#define NEVER_ALLOWING_COOKIES gettext("ne'V'er allowing from domain '%s'.")
-#define PROMPTING_TO_ALLOW_COOKIES gettext("'P'rompting to allow from domain 
'%s'.")
+#define ALWAYS_ALLOWING_COOKIES gettext("'A'lways allowing from domain '%s'")
+#define NEVER_ALLOWING_COOKIES gettext("ne'V'er allowing from domain '%s'")
+#define PROMPTING_TO_ALLOW_COOKIES gettext("'P'rompting to allow from domain 
'%s'")
 #define DELETE_ALL_COOKIES_IN_DOMAIN gettext("Delete all cookies in this 
domain?")
 #define ALL_COOKIES_EATEN gettext("All of the cookies in the jar have been 
eaten!")




reply via email to

[Prev in Thread] Current Thread [Next in Thread]