lynx-dev
[Top][All Lists]
Advanced

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

lynx-dev 2.8.2rel.1-fix2 - some messages, INFO screen


From: Klaus Weide
Subject: lynx-dev 2.8.2rel.1-fix2 - some messages, INFO screen
Date: Wed, 9 Jun 1999 12:36:50 -0500 (CDT)

* Modified some message texts, mostly for consistency
* Correct display of local file times in INFO screen

   Klaus

--- lynx2-8-2.old/WWW/Library/Implementation/HTFile.c Fri, 04 Jun 1999 20:57:16 
-0500
+++ lynx2-8-2/WWW/Library/Implementation/HTFile.c Wed, 09 Jun 1999 03:19:28 
-0500
@@ -1643,7 +1643,7 @@
        if (status != HT_PARTIAL_CONTENT)
            _HTProgress (gettext("OK"));
        else
-           CTRACE(tfp, "Reading the directory interrupred by user\n");
+           CTRACE(tfp, "Reading the directory interrupted by user\n");
 
 
        /*
--- lynx2-8-2.old/src/LYLocal.c Fri, 04 Jun 1999 20:57:16 -0500
+++ lynx2-8-2/src/LYLocal.c Wed, 09 Jun 1999 03:19:25 -0500
@@ -360,7 +360,7 @@
     if (HTList_isEmpty(tagged))  /* should never happen */
        return 0;
 
-    ans = HTConfirm(gettext("Remove all tagged files and directories "));
+    ans = HTConfirm(gettext("Remove all tagged files and directories?"));
 
     count = 0;
     tag = tagged;
@@ -913,23 +913,23 @@
        /*** Course, it's probably broken for screen sizes other 80, too     
***/
        if (strlen(cp) < 37) {
            HTSprintf0(&tmpbuf,
-                      gettext("Remove '%s' and all of its contents: "), cp);
+                      gettext("Remove '%s' and all of its contents?"), cp);
        } else {
            HTSprintf0(&tmpbuf,
-                      gettext("Remove directory and all of its contents: "));
+                      gettext("Remove directory and all of its contents?"));
        }
     } else if (S_ISREG(dir_info.st_mode)) {
        if (strlen(cp) < 60) {
-           HTSprintf0(&tmpbuf, gettext("Remove file '%s': "), cp);
+           HTSprintf0(&tmpbuf, gettext("Remove file '%s'?"), cp);
        } else {
-           HTSprintf0(&tmpbuf, gettext("Remove file: "));
+           HTSprintf0(&tmpbuf, gettext("Remove file?"));
        }
 #ifdef S_IFLNK
     } else if (S_ISLNK(dir_info.st_mode)) {
        if (strlen(cp) < 50) {
-           HTSprintf0(&tmpbuf, gettext("Remove symbolic link '%s': "), cp);
+           HTSprintf0(&tmpbuf, gettext("Remove symbolic link '%s'?"), cp);
        } else {
-           HTSprintf0(&tmpbuf, gettext("Remove symbolic link: "));
+           HTSprintf0(&tmpbuf, gettext("Remove symbolic link?"));
        }
 #endif
     } else {
--- lynx2-8-2.old/src/LYShowInfo.c Tue, 08 Jun 1999 10:55:11 -0500
+++ lynx2-8-2/src/LYShowInfo.c Wed, 09 Jun 1999 04:01:31 -0500
@@ -150,7 +150,7 @@
 #endif
            name = HTAA_UidToName(dir_info.st_uid);
            if (*name)
-               fprintf(fp0, "   <em>%s</em>  %s\n", gettext("Name of owner"), 
name);
+               fprintf(fp0, "   <em>%s</em>  %s\n", gettext("Name of owner:"), 
name);
            name = HTAA_GidToName (dir_info.st_gid);
            if (*name)
                fprintf(fp0, "      <em>%s</em>  %s\n", gettext("Group name:"), 
name);
@@ -162,13 +162,13 @@
             *  Include date and time information.
             */
            cp = ctime(&dir_info.st_ctime);
-           fprintf(fp0, "   <em>%s</em>  %s", cp, gettext("Creation date:"));
+           fprintf(fp0, "   <em>%s</em>  %s", gettext("Creation date:"), cp);
 
            cp = ctime(&dir_info.st_mtime);
-           fprintf(fp0, "   <em>%s</em>  %s", cp, gettext("Last modified:"));
+           fprintf(fp0, "   <em>%s</em>  %s", gettext("Last modified:"), cp);
 
            cp = ctime(&dir_info.st_atime);
-           fprintf(fp0, "   <em>%s</em>  %s\n", cp, gettext("Last accessed:"));
+           fprintf(fp0, "   <em>%s</em>  %s\n", gettext("Last accessed:"), cp);
 
            fprintf(fp0, "   %s\n", gettext("Access Permissions"));
            fprintf(fp0, "      <em>%s</em>  ", gettext("Owner:"));
@@ -323,7 +323,7 @@
                  HTisDocumentSource() ?
                                  gettext("source") : gettext("normal")),
                 (doc->safe ? gettext(", safe") : ""),
-                (doc->internal_link ? gettext(", internal link") : "")
+                (doc->internal_link ? gettext(", via internal link") : "")
            );
 #ifdef ADVANCED_INFO
     if (LYInfoAdvanced) {



reply via email to

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