diff options
author | Benno Schulenberg <bensberg@justemail.net> | 2010-06-10 14:29:27 +0200 |
---|---|---|
committer | Karel Zak <kzak@redhat.com> | 2010-06-14 11:19:19 +0200 |
commit | e6b0611b4622d70569705dd6eef68002a5a1298c (patch) | |
tree | 8155ecf25914ec8092d23a656db3da87902583c6 /mount | |
parent | d0bb6987a85fd84a3410a21a89592d4809148465 (diff) | |
download | util-linux-old-e6b0611b4622d70569705dd6eef68002a5a1298c.tar.gz |
messages: gettextize a few skipped or forgotten ones
Signed-off-by: Benno Schulenberg <bensberg@justemail.net>
Diffstat (limited to 'mount')
-rw-r--r-- | mount/swapon.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mount/swapon.c b/mount/swapon.c index 4ee3c2f7..c7006550 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); |