diff options
author | Guillem Jover <guillem@debian.org> | 2017-10-21 13:17:45 +0200 |
---|---|---|
committer | Guillem Jover <guillem@debian.org> | 2017-10-21 15:50:27 +0200 |
commit | c18496842f69044d3ae8d05378daf35779583c2a (patch) | |
tree | 87b44bde943eebfe3945877a214d692b2cae1f3a | |
parent | b4e46fab018e3d5ae813642b20b955d8a5327b1e (diff) | |
download | dpkg-c18496842f69044d3ae8d05378daf35779583c2a.tar.gz |
dselect: Stop marking an untranslatable string as such
Spotted-by: Santiago Vila <sanvila@debian.org>
-rw-r--r-- | dselect/method.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dselect/method.cc b/dselect/method.cc index d7d155ef9..ef5c4c344 100644 --- a/dselect/method.cc +++ b/dselect/method.cc @@ -61,7 +61,7 @@ sthfailed(const char * reasoning) { curseson(); clear(); - printw(_("\n\n%s: %s\n"), DSELECT, reasoning); + printw("\n\n%s: %s\n", DSELECT, reasoning); attrset(A_BOLD); addstr(_("\nPress <enter> to continue.")); attrset(A_NORMAL); |