summaryrefslogtreecommitdiffstats
path: root/disk-utils
diff options
context:
space:
mode:
authorSami Kerola2018-05-10 22:18:53 +0200
committerKarel Zak2018-05-28 13:36:38 +0200
commit1405658822ac6add648fa02b5c26c2e28617eab9 (patch)
tree1bed03851bd2de41530c7f2dfe3518743fcf1a28 /disk-utils
parentbash-completion: add swapon specifiers to completion (diff)
downloadkernel-qcow2-util-linux-1405658822ac6add648fa02b5c26c2e28617eab9.tar.gz
kernel-qcow2-util-linux-1405658822ac6add648fa02b5c26c2e28617eab9.tar.xz
kernel-qcow2-util-linux-1405658822ac6add648fa02b5c26c2e28617eab9.zip
nls: remove translation strings
While looking earlier commit I noticed everything but formatting was removed from a message in namei.c file. That inspired me to look if there are more strings that does not need translation project attention. This change removes at least some of them, if not all. Reference: e19cc7b65b31c57f0fe9cb73c9afad5197796f82 Signed-off-by: Sami Kerola <kerolasa@iki.fi>
Diffstat (limited to 'disk-utils')
-rw-r--r--disk-utils/fdisk.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/disk-utils/fdisk.c b/disk-utils/fdisk.c
index 2126b4cb1..73525fa51 100644
--- a/disk-utils/fdisk.c
+++ b/disk-utils/fdisk.c
@@ -657,7 +657,7 @@ int print_partition_info(struct fdisk_context *cxt)
goto clean_data;
if (!data || !*data)
continue;
- fdisk_info(cxt, _("%15s: %s"), fdisk_field_get_name(fd), data);
+ fdisk_info(cxt, "%15s: %s", fdisk_field_get_name(fd), data);
free(data);
}