summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey Poznyakoff <gray@gnu.org>2021-08-09 09:38:44 +0300
committerSergey Poznyakoff <gray@gnu.org>2021-08-09 09:38:44 +0300
commit61970346dcfe83b0b9885117af1815b9d2b8ab20 (patch)
tree9e60280ba87d97b9d2f0574071651a8914381c35
parent611cac791f192834d49cd1bd8cfab76a190bfc40 (diff)
downloadgdbm-61970346dcfe83b0b9885117af1815b9d2b8ab20.tar.gz
Version 1.20.91. Minor changes in translatable strings.
-rw-r--r--NEWS4
-rw-r--r--configure.ac2
-rw-r--r--src/gdbmtool.c10
3 files changed, 10 insertions, 6 deletions
diff --git a/NEWS b/NEWS
index 64dc53f..1f267d0 100644
--- a/NEWS
+++ b/NEWS
@@ -1,10 +1,10 @@
-GNU dbm NEWS -- history of user-visible changes.
+GNU dbm NEWS -- history of user-visible changes. 2021-08-09
Copyright (C) 1990-2021 Free Software Foundation, Inc.
See the end of file for copying conditions.
Please send gdbm bug reports to <bug-gdbm@gnu.org>.
-Version 1.20.90 (git)
+Version 1.20.91 (git)
* Crash tolerance
diff --git a/configure.ac b/configure.ac
index 23302c5..253318a 100644
--- a/configure.ac
+++ b/configure.ac
@@ -16,7 +16,7 @@
m4_define([_GDBM_VERSION_MAJOR], 1)
m4_define([_GDBM_VERSION_MINOR], 20)
-m4_define([_GDBM_VERSION_PATCH], 90)
+m4_define([_GDBM_VERSION_PATCH], 91)
AC_INIT([gdbm],
_GDBM_VERSION_MAJOR._GDBM_VERSION_MINOR[]m4_ifdef([_GDBM_VERSION_PATCH],._GDBM_VERSION_PATCH),
diff --git a/src/gdbmtool.c b/src/gdbmtool.c
index fd21e69..61d81a9 100644
--- a/src/gdbmtool.c
+++ b/src/gdbmtool.c
@@ -947,6 +947,7 @@ print_snapshot (char const *snapname, FILE *fp)
if (dbf->xheader)
fprintf (fp, " %u", dbf->xheader->numsync);
else
+ /* TRANSLATORS: Stands for "Not Available". */
fprintf (fp, " %s", _("N/A"));
}
else if (gdbm_check_syserr (gdbm_errno))
@@ -1593,13 +1594,13 @@ struct command command_tab[] = {
{ { NULL } },
FALSE,
REPEAT_NEVER,
- N_("Upgrade the database") },
+ N_("Upgrade the database to extended format") },
{ S(downgrade), T_CMD,
checkdb_begin, downgrade_handler, NULL,
{ { NULL } },
FALSE,
REPEAT_NEVER,
- N_("Downgrade the database") },
+ N_("Downgrade the database to standard format") },
{ S(snapshot), T_CMD,
NULL, snapshot_handler, NULL,
{ { "FILE", GDBM_ARG_STRING },
@@ -1857,7 +1858,10 @@ struct gdbm_option optab[] = {
{ 'r', "read-only", NULL, N_("open database in read-only mode") },
{ 's', "synchronize", NULL, N_("synchronize to disk after each write") },
{ 'q', "quiet", NULL, N_("don't print initial banner") },
- { 'd', "db-descriptor", N_("FD"),N_("open database at the given file descriptor") },
+ { 'd', "db-descriptor",
+ /* TRANSLATORS: File Descriptor. */
+ N_("FD"),
+ N_("open database at the given file descriptor") },
{ 'x', "extended", NULL, N_("extended format (numsync)") },
{ 0, "numsync", NULL, NULL, PARSEOPT_ALIAS },
#if GDBMTOOL_DEBUG