summaryrefslogtreecommitdiffstats
path: root/mount/swapon.c
diff options
context:
space:
mode:
authorBenno Schulenberg2010-06-10 14:29:27 +0200
committerKarel Zak2010-06-14 11:19:19 +0200
commite6b0611b4622d70569705dd6eef68002a5a1298c (patch)
tree8155ecf25914ec8092d23a656db3da87902583c6 /mount/swapon.c
parenttextual: fix typos, and rephrase some things for clarity (diff)
downloadkernel-qcow2-util-linux-e6b0611b4622d70569705dd6eef68002a5a1298c.tar.gz
kernel-qcow2-util-linux-e6b0611b4622d70569705dd6eef68002a5a1298c.tar.xz
kernel-qcow2-util-linux-e6b0611b4622d70569705dd6eef68002a5a1298c.zip
messages: gettextize a few skipped or forgotten ones
Signed-off-by: Benno Schulenberg <bensberg@justemail.net>
Diffstat (limited to 'mount/swapon.c')
-rw-r--r--mount/swapon.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/mount/swapon.c b/mount/swapon.c
index 4ee3c2f75..c7006550e 100644
--- a/mount/swapon.c
+++ b/mount/swapon.c
@@ -425,7 +425,7 @@ swapon_checks(const char *special)
unsigned long long swapsize =
swap_get_size(hdr, special, pagesize);
if (verbose)
- warnx("%s: pagesize=%d, swapsize=%llu, devsize=%llu",
+ warnx(_("%s: pagesize=%d, swapsize=%llu, devsize=%llu"),
special, pagesize, swapsize, devsize);
if (swapsize > devsize) {
@@ -663,7 +663,7 @@ main_swapon(int argc, char *argv[]) {
++verbose;
break;
case 'V': /* version */
- printf("%s: (%s)\n", progname, PACKAGE_STRING);
+ printf(_("%s (%s)\n"), progname, PACKAGE_STRING);
exit(0);
case 0:
break;
@@ -715,7 +715,7 @@ main_swapoff(int argc, char *argv[]) {
++verbose;
break;
case 'V': /* version */
- printf("%s (%s)\n", progname, PACKAGE_STRING);
+ printf(_("%s (%s)\n"), progname, PACKAGE_STRING);
exit(0);
case 'L':
addl(optarg);