diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/LYIcon.rc | 10 | ||||
-rw-r--r-- | src/LYList.c | 4 | ||||
-rw-r--r-- | src/LYMainLoop.c | 5 |
3 files changed, 9 insertions, 10 deletions
diff --git a/src/LYIcon.rc b/src/LYIcon.rc index 1ca88f80..4862bb86 100644 --- a/src/LYIcon.rc +++ b/src/LYIcon.rc @@ -1,12 +1,12 @@ -// $LynxId: LYIcon.rc,v 1.35 2018/05/07 23:37:31 tom Exp $ +// $LynxId: LYIcon.rc,v 1.36 2018/06/10 20:24:17 tom Exp $ #include <windows.h> 100 ICON "../samples/lynx.ico" VS_VERSION_INFO VERSIONINFO -FILEVERSION 2,8,9,1019 -PRODUCTVERSION 2,8,9,1019 +FILEVERSION 2,8,9,2001 +PRODUCTVERSION 2,8,9,2001 FILEFLAGSMASK VS_FFI_FILEFLAGSMASK FILEFLAGS 0 FILEOS VOS_NT_WINDOWS32 @@ -19,12 +19,12 @@ BEGIN BEGIN VALUE "CompanyName", "http://invisible-island.net/lynx" VALUE "FileDescription", "Lynx - web browser" - VALUE "FileVersion", "2.8.9.1019" + VALUE "FileVersion", "2.8.9.2001" VALUE "InternalName", "Lynx" VALUE "LegalCopyright", "©1997-2018 Thomas E. Dickey" VALUE "OriginalFilename", "lynx.exe" VALUE "ProductName", "Lynx - web browser" - VALUE "ProductVersion", "2.8.9.1019" + VALUE "ProductVersion", "2.8.9.2001" END END BLOCK "VarFileInfo" diff --git a/src/LYList.c b/src/LYList.c index edd4f52a..71633fc4 100644 --- a/src/LYList.c +++ b/src/LYList.c @@ -1,5 +1,5 @@ /* - * $LynxId: LYList.c,v 1.53 2013/10/03 07:46:14 tom Exp $ + * $LynxId: LYList.c,v 1.54 2018/06/10 20:27:01 tom Exp $ * * Lynx Document Reference List Support LYList.c * ==================================== @@ -359,7 +359,7 @@ void printlist(FILE *fp, int titles) if (LYHiddenLinks == HIDDENLINKS_IGNORE) hidden_links = 0; if (hidden_links > 0) { - fprintf(fp, " %s\n", gettext("Visible links")); + fprintf(fp, " %s\n", gettext("Visible links:")); } refs = print_refs(fp, titles, refs) + 1; diff --git a/src/LYMainLoop.c b/src/LYMainLoop.c index 638765eb..0a46ce10 100644 --- a/src/LYMainLoop.c +++ b/src/LYMainLoop.c @@ -1,5 +1,5 @@ /* - * $LynxId: LYMainLoop.c,v 1.240 2018/05/04 22:49:06 tom Exp $ + * $LynxId: LYMainLoop.c,v 1.241 2018/06/10 20:44:10 tom Exp $ */ #include <HTUtils.h> #include <HTAccess.h> @@ -8080,8 +8080,7 @@ static void exit_immediately_with_error_message(int state, int first_file) if (state == NULLFILE) { HTSprintf0(&buf, "%s\n%s\n%s\n", NonNull(buf2), - gettext("lynx: Start file could not be found or is not " - STR_HTML " or " STR_PLAINTEXT), + gettext("lynx: Start file could not be found or is not text/html or text/plain"), gettext(" Exiting...")); } |