summaryrefslogtreecommitdiffstats
path: root/disk-utils
diff options
context:
space:
mode:
authorBenno Schulenberg2015-01-18 17:21:24 +0100
committerKarel Zak2015-01-26 11:53:48 +0100
commitfd4484a712dadd828352139cf6874abd211f6b87 (patch)
tree9d1fff9c2bf40484ce4fce4344a45753c932cf75 /disk-utils
parentswitch_root: document that maintains /run too (diff)
downloadkernel-qcow2-util-linux-fd4484a712dadd828352139cf6874abd211f6b87.tar.gz
kernel-qcow2-util-linux-fd4484a712dadd828352139cf6874abd211f6b87.tar.xz
kernel-qcow2-util-linux-fd4484a712dadd828352139cf6874abd211f6b87.zip
cfdisk: don't mess up the help screen by printing the PO file header
Asking for the translation of the empty string ("") produces the header of the PO file corresponding to the current locale, which messes up the help screen. So, don't use empty strings in the array of help strings but (arbitrary) double spaces. Signed-off-by: Benno Schulenberg <bensberg@justemail.net>
Diffstat (limited to 'disk-utils')
-rw-r--r--disk-utils/cfdisk.c11
1 files changed, 5 insertions, 6 deletions
diff --git a/disk-utils/cfdisk.c b/disk-utils/cfdisk.c
index 509fbbd63..8fc9c24e5 100644
--- a/disk-utils/cfdisk.c
+++ b/disk-utils/cfdisk.c
@@ -1798,14 +1798,14 @@ static int ui_help(void)
size_t i;
static const char *help[] = {
N_("Help Screen for cfdisk"),
- "",
+ " ",
N_("This is cfdisk, a curses based disk partitioning program, which"),
N_("allows you to create, delete and modify partitions on your hard"),
N_("disk drive."),
- "",
+ " ",
N_("Copyright (C) 2014 Karel Zak <kzak@redhat.com> "),
N_("Based on the original cfdisk from Kevin E. Martin & aeb."),
- "",
+ " ",
N_("Command Meaning"),
N_("------- -------"),
N_(" b Toggle bootable flag of the current partition"),
@@ -1824,11 +1824,10 @@ static int ui_help(void)
N_("Down Arrow Move cursor to the next partition"),
N_("Left Arrow Move cursor to the previous menu item"),
N_("Right Arrow Move cursor to the next menu item"),
-
- "",
+ " ",
N_("Note: All of the commands can be entered with either upper or lower"),
N_("case letters (except for Writes)."),
- "",
+ " ",
N_("Use lsblk(8) or partx(8) to see more details about the device.")
};