aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRafael Fontenelle <rafaelff@gnome.org>2020-06-04 10:12:33 -0300
committerAlexey Gladkov <gladkov.alexey@gmail.com>2020-06-05 17:23:05 +0200
commite8f07241d4e12c56f7ad96e7706d6613f833e1cd (patch)
tree970ceb7f48e3db1c2b7c6a191646614ff803cf1e
parentf1d1cfcbe77d5871fe8c6c4cada4df47e5daea5a (diff)
downloadkbd-e8f07241d4e12c56f7ad96e7706d6613f833e1cd.tar.gz
dumpkeys: avoid translating empty string
Empty string marked for translation receives the header fields of translation files, which is not the output desired in the case
-rw-r--r--src/dumpkeys.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dumpkeys.c b/src/dumpkeys.c
index 9395db9b..abd32bde 100644
--- a/src/dumpkeys.c
+++ b/src/dumpkeys.c
@@ -110,7 +110,7 @@ int main(int argc, char *argv[])
{ "-n, --numeric", _("display keytable in hexadecimal notation.") },
{ "-f, --full-table", _("don't use short-hand notations, one row per keycode.") },
{ "-1, --separate-lines", _("one line per (modifier,keycode) pair.") },
- { "-S, --shape={2|4|8|16}", _("") },
+ { "-S, --shape={2|4|8|16}", "" },
{ "-t, --funcs-only", _("display only the function key strings.") },
{ "-k, --keys-only", _("display only key bindings.") },
{ "-d, --compose-only", _("display only compose key combinations.") },