]> git.ipfire.org Git - thirdparty/xfsprogs-dev.git/commitdiff
xfsprogs: Don't translate command name
authorArkadiusz Miśkiewicz <arekm@maven.pl>
Fri, 15 Apr 2011 09:07:18 +0000 (09:07 +0000)
committerAlex Elder <aelder@sgi.com>
Thu, 19 May 2011 16:22:33 +0000 (11:22 -0500)
Command names should never be translated. Currently there is
'xfs_quota -x -c "project"...' in one locale (C) while
'xfs_quota -x -c "projekt"...' in another (pl_PL).

Signed-off-by: Arkadiusz Miśkiewicz <arekm@maven.pl>
Signed-off-by: Alex Elder <aelder@sgi.com>
31 files changed:
io/attr.c
io/bmap.c
io/fadvise.c
io/file.c
io/freeze.c
io/fsync.c
io/getrusage.c
io/imap.c
io/inject.c
io/madvise.c
io/mincore.c
io/mmap.c
io/open.c
io/parent.c
io/pread.c
io/prealloc.c
io/pwrite.c
io/resblks.c
io/sendfile.c
io/shutdown.c
io/truncate.c
libxcmd/help.c
libxcmd/quit.c
quota/edit.c
quota/free.c
quota/path.c
quota/project.c
quota/quot.c
quota/quota.c
quota/report.c
quota/state.c

index 727c460f4aadabd0f723a04ce5ba88c33ad998ec..9b26f31e2911c842ed015ce554f8091cf76fd5ec 100644 (file)
--- a/io/attr.c
+++ b/io/attr.c
@@ -333,7 +333,7 @@ chattr_f(
 void
 attr_init(void)
 {
-       chattr_cmd.name = _("chattr");
+       chattr_cmd.name = "chattr";
        chattr_cmd.cfunc = chattr_f;
        chattr_cmd.args = _("[-R|-D] [+/-"CHATTR_XFLAG_LIST"]");
        chattr_cmd.argmin = 1;
@@ -343,7 +343,7 @@ attr_init(void)
                _("change extended inode flags on the currently open file");
        chattr_cmd.help = chattr_help;
 
-       lsattr_cmd.name = _("lsattr");
+       lsattr_cmd.name = "lsattr";
        lsattr_cmd.cfunc = lsattr_f;
        lsattr_cmd.args = _("[-R|-D|-a|-v]");
        lsattr_cmd.argmin = 0;
index 55f956efeef06b50597ae1f7f0228f69102cfe2d..a78cbb14baa62da9f25cf803a6670d45f5bd1582 100644 (file)
--- a/io/bmap.c
+++ b/io/bmap.c
@@ -430,7 +430,7 @@ bmap_f(
 void
 bmap_init(void)
 {
-       bmap_cmd.name = _("bmap");
+       bmap_cmd.name = "bmap";
        bmap_cmd.cfunc = bmap_f;
        bmap_cmd.argmin = 0;
        bmap_cmd.argmax = -1;
index 5a76ebb231ac6468335cb63988df582ca5641e73..a27b8f76414d2d5e1b33a3e3525feefe30ce5774 100644 (file)
@@ -114,7 +114,7 @@ fadvise_f(
 void
 fadvise_init(void)
 {
-       fadvise_cmd.name = _("fadvise");
+       fadvise_cmd.name = "fadvise";
        fadvise_cmd.cfunc = fadvise_f;
        fadvise_cmd.argmin = 0;
        fadvise_cmd.argmax = -1;
index debab0f66b5f281002553a1fccb629336d9d79f8..db85ffc74829a0a0cc2889c84165f7315d36510d 100644 (file)
--- a/io/file.c
+++ b/io/file.c
@@ -89,8 +89,8 @@ file_f(
 void
 file_init(void)
 {
-       file_cmd.name = _("file");
-       file_cmd.altname = _("f");
+       file_cmd.name = "file";
+       file_cmd.altname = "f";
        file_cmd.args = _("[N]");
        file_cmd.cfunc = file_f;
        file_cmd.argmin = 0;
@@ -98,8 +98,8 @@ file_init(void)
        file_cmd.flags = CMD_NOMAP_OK | CMD_FOREIGN_OK;
        file_cmd.oneline = _("set the current file");
 
-       print_cmd.name = _("print");
-       print_cmd.altname = _("p");
+       print_cmd.name = "print";
+       print_cmd.altname = "p";
        print_cmd.cfunc = print_f;
        print_cmd.argmin = 0;
        print_cmd.argmax = 0;
index 08f4d47f9b2a4c94993e7ced4e496096def4c308..89cd303c77225aae4053440c8cce1e13a60b8c3d 100644 (file)
@@ -62,14 +62,14 @@ thaw_f(
 void
 freeze_init(void)
 {
-       freeze_cmd.name = _("freeze");
+       freeze_cmd.name = "freeze";
        freeze_cmd.cfunc = freeze_f;
        freeze_cmd.argmin = 0;
        freeze_cmd.argmax = 0;
        freeze_cmd.flags = CMD_NOMAP_OK | CMD_FOREIGN_OK;
        freeze_cmd.oneline = _("freeze filesystem of current file");
 
-       thaw_cmd.name = _("thaw");
+       thaw_cmd.name = "thaw";
        thaw_cmd.cfunc = thaw_f;
        thaw_cmd.argmin = 0;
        thaw_cmd.argmax = 0;
index 83fc0f4378a94290d34fbe831af321690d162e32..5ed8d25a4322e6d7215a717eb5d8a78c44c753d7 100644 (file)
@@ -51,15 +51,15 @@ fdatasync_f(
 void
 fsync_init(void)
 {
-       fsync_cmd.name = _("fsync");
-       fsync_cmd.altname = _("s");
+       fsync_cmd.name = "fsync";
+       fsync_cmd.altname = "s";
        fsync_cmd.cfunc = fsync_f;
        fsync_cmd.flags = CMD_NOMAP_OK | CMD_FOREIGN_OK;
        fsync_cmd.oneline =
                _("calls fsync(2) to flush all in-core file state to disk");
 
-       fdatasync_cmd.name = _("fdatasync");
-       fdatasync_cmd.altname = _("ds");
+       fdatasync_cmd.name = "fdatasync";
+       fdatasync_cmd.altname = "ds";
        fdatasync_cmd.cfunc = fdatasync_f;
        fdatasync_cmd.flags = CMD_NOMAP_OK | CMD_FOREIGN_OK;
        fdatasync_cmd.oneline =
index ba35c5d559dbff521e397b800cda2998a36ad9c0..32f2a7ee3fded38560a3870e930a2a897fb08de7 100644 (file)
@@ -109,8 +109,8 @@ getrusage_f(
 void
 getrusage_init(void)
 {
-       getrusage_cmd.name = _("getrusage");
-       getrusage_cmd.altname = _("g");
+       getrusage_cmd.name = "getrusage";
+       getrusage_cmd.altname = "g";
        getrusage_cmd.argmin = 0;
        getrusage_cmd.argmax = -1;
        getrusage_cmd.cfunc = getrusage_f;
index 458a1fd67c64625af4d2fda6d07e29ceb1100a2f..0a4f14e9ae419e58b2ec8183dcb99a86c1a33e98 100644 (file)
--- a/io/imap.c
+++ b/io/imap.c
@@ -64,7 +64,7 @@ imap_f(int argc, char **argv)
 void
 imap_init(void)
 {
-       imap_cmd.name = _("imap");
+       imap_cmd.name = "imap";
        imap_cmd.cfunc = imap_f;
        imap_cmd.argmin = 0;
        imap_cmd.argmax = 0;
index 4be9d06a0fa1f3da58dc864cf0b6a95fb6d6faa4..1e078aead9ce66f67e0d770df07d5696b7e86c2b 100644 (file)
@@ -148,7 +148,7 @@ inject_f(
 void
 inject_init(void)
 {
-       inject_cmd.name = _("inject");
+       inject_cmd.name = "inject";
        inject_cmd.cfunc = inject_f;
        inject_cmd.argmin = 0;
        inject_cmd.argmax = -1;
index 3235402e0b525078077f8b5f26f9de87e7e1d5c0..87f619da4aeafc033fe9bd94ed6d5b08b91f0056 100644 (file)
@@ -118,8 +118,8 @@ madvise_f(
 void
 madvise_init(void)
 {
-       madvise_cmd.name = _("madvise");
-       madvise_cmd.altname = _("ma");
+       madvise_cmd.name = "madvise";
+       madvise_cmd.altname = "ma";
        madvise_cmd.cfunc = madvise_f;
        madvise_cmd.argmin = 0;
        madvise_cmd.argmax = -1;
index 60625efdc3e49e3df0e8cdec70081dfc9053ca4e..eac86996726ec5c105a191738482f4bdcf1f8530 100644 (file)
@@ -113,8 +113,8 @@ mincore_f(
 void
 mincore_init(void)
 {
-       mincore_cmd.name = _("mincore");
-       mincore_cmd.altname = _("mi");
+       mincore_cmd.name = "mincore";
+       mincore_cmd.altname = "mi";
        mincore_cmd.cfunc = mincore_f;
        mincore_cmd.argmin = 0;
        mincore_cmd.argmax = 2;
index 29374ea63b2bd025041dec2f129dc7df4fd5354b..ea7498fc7871e099f2828194f114ae293d61e991 100644 (file)
--- a/io/mmap.c
+++ b/io/mmap.c
@@ -577,8 +577,8 @@ mwrite_f(
 void
 mmap_init(void)
 {
-       mmap_cmd.name = _("mmap");
-       mmap_cmd.altname = _("mm");
+       mmap_cmd.name = "mmap";
+       mmap_cmd.altname = "mm";
        mmap_cmd.cfunc = mmap_f;
        mmap_cmd.argmin = 0;
        mmap_cmd.argmax = -1;
@@ -588,8 +588,8 @@ mmap_init(void)
                _("mmap a range in the current file, show mappings");
        mmap_cmd.help = mmap_help;
 
-       mread_cmd.name = _("mread");
-       mread_cmd.altname = _("mr");
+       mread_cmd.name = "mread";
+       mread_cmd.altname = "mr";
        mread_cmd.cfunc = mread_f;
        mread_cmd.argmin = 0;
        mread_cmd.argmax = -1;
@@ -599,8 +599,8 @@ mmap_init(void)
                _("reads data from a region in the current memory mapping");
        mread_cmd.help = mread_help;
 
-       msync_cmd.name = _("msync");
-       msync_cmd.altname = _("ms");
+       msync_cmd.name = "msync";
+       msync_cmd.altname = "ms";
        msync_cmd.cfunc = msync_f;
        msync_cmd.argmin = 0;
        msync_cmd.argmax = -1;
@@ -609,16 +609,16 @@ mmap_init(void)
        msync_cmd.oneline = _("flush a region in the current memory mapping");
        msync_cmd.help = msync_help;
 
-       munmap_cmd.name = _("munmap");
-       munmap_cmd.altname = _("mu");
+       munmap_cmd.name = "munmap";
+       munmap_cmd.altname = "mu";
        munmap_cmd.cfunc = munmap_f;
        munmap_cmd.argmin = 0;
        munmap_cmd.argmax = 0;
        munmap_cmd.flags = CMD_NOFILE_OK | CMD_FOREIGN_OK;
        munmap_cmd.oneline = _("unmaps the current memory mapping");
 
-       mwrite_cmd.name = _("mwrite");
-       mwrite_cmd.altname = _("mw");
+       mwrite_cmd.name = "mwrite";
+       mwrite_cmd.altname = "mw";
        mwrite_cmd.cfunc = mwrite_f;
        mwrite_cmd.argmin = 0;
        mwrite_cmd.argmax = -1;
index 64c12ad16693adf7b73b0eb6f4097a3547fefe30..f1a65010473c74801e44e1aa89812f953c02e6ec 100644 (file)
--- a/io/open.c
+++ b/io/open.c
@@ -772,8 +772,8 @@ statfs_f(
 void
 open_init(void)
 {
-       open_cmd.name = _("open");
-       open_cmd.altname = _("o");
+       open_cmd.name = "open";
+       open_cmd.altname = "o";
        open_cmd.cfunc = open_f;
        open_cmd.argmin = 0;
        open_cmd.argmax = -1;
@@ -782,7 +782,7 @@ open_init(void)
        open_cmd.oneline = _("open the file specified by path");
        open_cmd.help = open_help;
 
-       stat_cmd.name = _("stat");
+       stat_cmd.name = "stat";
        stat_cmd.cfunc = stat_f;
        stat_cmd.argmin = 0;
        stat_cmd.argmax = 1;
@@ -790,28 +790,28 @@ open_init(void)
        stat_cmd.args = _("[-v]");
        stat_cmd.oneline = _("statistics on the currently open file");
 
-       close_cmd.name = _("close");
-       close_cmd.altname = _("c");
+       close_cmd.name = "close";
+       close_cmd.altname = "c";
        close_cmd.cfunc = close_f;
        close_cmd.argmin = 0;
        close_cmd.argmax = 0;
        close_cmd.flags = CMD_NOMAP_OK | CMD_FOREIGN_OK;
        close_cmd.oneline = _("close the current open file");
 
-       setfl_cmd.name = _("setfl");
+       setfl_cmd.name = "setfl";
        setfl_cmd.cfunc = setfl_f;
        setfl_cmd.args = _("[-adx]");
        setfl_cmd.flags = CMD_NOMAP_OK | CMD_FOREIGN_OK;
        setfl_cmd.oneline =
                _("set/clear append/direct flags on the open file");
 
-       statfs_cmd.name = _("statfs");
+       statfs_cmd.name = "statfs";
        statfs_cmd.cfunc = statfs_f;
        statfs_cmd.flags = CMD_NOMAP_OK | CMD_FOREIGN_OK;
        statfs_cmd.oneline =
                _("statistics on the filesystem of the currently open file");
 
-       chproj_cmd.name = _("chproj");
+       chproj_cmd.name = "chproj";
        chproj_cmd.cfunc = chproj_f;
        chproj_cmd.args = _("[-D | -R] projid");
        chproj_cmd.argmin = 1;
@@ -821,7 +821,7 @@ open_init(void)
                _("change project identifier on the currently open file");
        chproj_cmd.help = chproj_help;
 
-       lsproj_cmd.name = _("lsproj");
+       lsproj_cmd.name = "lsproj";
        lsproj_cmd.cfunc = lsproj_f;
        lsproj_cmd.args = _("[-D | -R]");
        lsproj_cmd.argmin = 0;
@@ -831,7 +831,7 @@ open_init(void)
                _("list project identifier set on the currently open file");
        lsproj_cmd.help = lsproj_help;
 
-       extsize_cmd.name = _("extsize");
+       extsize_cmd.name = "extsize";
        extsize_cmd.cfunc = extsize_f;
        extsize_cmd.args = _("[-D | -R] [extsize]");
        extsize_cmd.argmin = 0;
index ea2efa8394a21f830dbe146111b1abc8d39b6047..3e93c2254992879f4877c221cd23f8d84878b34b 100644 (file)
@@ -429,7 +429,7 @@ parent_help(void)
 void
 parent_init(void)
 {
-       parent_cmd.name = _("parent");
+       parent_cmd.name = "parent";
        parent_cmd.cfunc = parent_f;
        parent_cmd.argmin = 0;
        parent_cmd.argmax = -1;
index f8b378cb5ad00ec3db9ff98970956cb422bc261f..705dc6907b09281c666ec77df498fbdfbfe9b5b1 100644 (file)
@@ -387,8 +387,8 @@ pread_f(
 void
 pread_init(void)
 {
-       pread_cmd.name = _("pread");
-       pread_cmd.altname = _("r");
+       pread_cmd.name = "pread";
+       pread_cmd.altname = "r";
        pread_cmd.cfunc = pread_f;
        pread_cmd.argmin = 2;
        pread_cmd.argmax = -1;
index 2cf217294393cd43b86b7eac35029c4c5f167ab4..8380646ed83b7acfcc8543a67ccab0c916bedfff 100644 (file)
@@ -208,7 +208,7 @@ fpunch_f(
 void
 prealloc_init(void)
 {
-       allocsp_cmd.name = _("allocsp");
+       allocsp_cmd.name = "allocsp";
        allocsp_cmd.cfunc = allocsp_f;
        allocsp_cmd.argmin = 2;
        allocsp_cmd.argmax = 2;
@@ -216,7 +216,7 @@ prealloc_init(void)
        allocsp_cmd.args = _("off len");
        allocsp_cmd.oneline = _("allocates zeroed space for part of a file");
 
-       freesp_cmd.name = _("freesp");
+       freesp_cmd.name = "freesp";
        freesp_cmd.cfunc = freesp_f;
        freesp_cmd.argmin = 2;
        freesp_cmd.argmax = 2;
@@ -224,7 +224,7 @@ prealloc_init(void)
        freesp_cmd.args = _("off len");
        freesp_cmd.oneline = _("frees space associated with part of a file");
 
-       resvsp_cmd.name = _("resvsp");
+       resvsp_cmd.name = "resvsp";
        resvsp_cmd.cfunc = resvsp_f;
        resvsp_cmd.argmin = 2;
        resvsp_cmd.argmax = 2;
@@ -233,7 +233,7 @@ prealloc_init(void)
        resvsp_cmd.oneline =
                _("reserves space associated with part of a file");
 
-       unresvsp_cmd.name = _("unresvsp");
+       unresvsp_cmd.name = "unresvsp";
        unresvsp_cmd.cfunc = unresvsp_f;
        unresvsp_cmd.argmin = 2;
        unresvsp_cmd.argmax = 2;
@@ -242,7 +242,7 @@ prealloc_init(void)
        unresvsp_cmd.oneline =
                _("frees reserved space associated with part of a file");
 
-       zero_cmd.name = _("zero");
+       zero_cmd.name = "zero";
        zero_cmd.cfunc = zero_f;
        zero_cmd.argmin = 2;
        zero_cmd.argmax = 2;
@@ -258,7 +258,7 @@ prealloc_init(void)
        add_command(&zero_cmd);
 
 #if defined (HAVE_FALLOCATE)
-       falloc_cmd.name = _("falloc");
+       falloc_cmd.name = "falloc";
        falloc_cmd.cfunc = fallocate_f;
        falloc_cmd.argmin = 2;
        falloc_cmd.argmax = -1;
@@ -268,7 +268,7 @@ prealloc_init(void)
                _("allocates space associated with part of a file via fallocate");
        add_command(&falloc_cmd);
 
-       fpunch_cmd.name = _("fpunch");
+       fpunch_cmd.name = "fpunch";
        fpunch_cmd.cfunc = fpunch_f;
        fpunch_cmd.argmin = 2;
        fpunch_cmd.argmax = 2;
index 26a7850de61188e56bb937f3f97dd745e82f24b2..7c3932c6f944f2c187b863fb3688c4341092479b 100644 (file)
@@ -349,8 +349,8 @@ done:
 void
 pwrite_init(void)
 {
-       pwrite_cmd.name = _("pwrite");
-       pwrite_cmd.altname = _("w");
+       pwrite_cmd.name = "pwrite";
+       pwrite_cmd.altname = "w";
        pwrite_cmd.cfunc = pwrite_f;
        pwrite_cmd.argmin = 2;
        pwrite_cmd.argmax = -1;
index face1755becf02e2fd789bc61e012656079383c0..2e54776795f4528e530bf94805698441b199aee8 100644 (file)
@@ -58,7 +58,7 @@ resblks_f(
 void
 resblks_init(void)
 {
-       resblks_cmd.name = _("resblks");
+       resblks_cmd.name = "resblks";
        resblks_cmd.cfunc = resblks_f;
        resblks_cmd.argmin = 0;
        resblks_cmd.argmax = 1;
index 4b34a5f05f1879a8d3804f85add2e6c1598f4f8b..426b75d11bf853bed5a253df4c7fed70f2d49fd4 100644 (file)
@@ -176,8 +176,8 @@ done:
 void
 sendfile_init(void)
 {
-       sendfile_cmd.name = _("sendfile");
-       sendfile_cmd.altname = _("send");
+       sendfile_cmd.name = "sendfile";
+       sendfile_cmd.altname = "send";
        sendfile_cmd.cfunc = sendfile_f;
        sendfile_cmd.argmin = 2;
        sendfile_cmd.argmax = -1;
index cf306fb88266410a9fa740ec20c6df1cdd5a9581..21e162632ae5122974549fac1a9e1cf5a3b86a82 100644 (file)
@@ -51,7 +51,7 @@ shutdown_f(
 void
 shutdown_init(void)
 {
-       shutdown_cmd.name = _("shutdown");
+       shutdown_cmd.name = "shutdown";
        shutdown_cmd.cfunc = shutdown_f;
        shutdown_cmd.argmin = 0;
        shutdown_cmd.argmax = 1;
index e7638da3fdee1506850f87ce8816d5e21285721b..49ced6f63b321a517055dcaaba8cd017bf379ef9 100644 (file)
@@ -49,8 +49,8 @@ truncate_f(
 void
 truncate_init(void)
 {
-       truncate_cmd.name = _("truncate");
-       truncate_cmd.altname = _("t");
+       truncate_cmd.name = "truncate";
+       truncate_cmd.altname = "t";
        truncate_cmd.cfunc = truncate_f;
        truncate_cmd.argmin = 1;
        truncate_cmd.argmax = 1;
index 2e567b68116cf0f0805b2f7a0b4b8ac41192e99e..54d34d88a9167dca77fecec7b464b68e31f1585e 100644 (file)
@@ -83,8 +83,8 @@ help_oneline(
 void
 help_init(void)
 {
-       help_cmd.name = _("help");
-       help_cmd.altname = _("?");
+       help_cmd.name = "help";
+       help_cmd.altname = "?";
        help_cmd.cfunc = help_f;
        help_cmd.argmin = 0;
        help_cmd.argmax = 1;
index 83e48b26543e2092b0493a8dcb9f6a24db4c9e67..faba4d119e03831c8935736af87e23f4f2dde28d 100644 (file)
@@ -33,8 +33,8 @@ quit_f(
 void
 quit_init(void)
 {
-       quit_cmd.name = _("quit");
-       quit_cmd.altname = _("q");
+       quit_cmd.name = "quit";
+       quit_cmd.altname = "q";
        quit_cmd.cfunc = quit_f;
        quit_cmd.argmin = -1;
        quit_cmd.argmax = -1;
index ce7f7e9d43ebca9bb54453e40c4bd30aeae288fa..b704e63a8183c1c521aab8f07c24b260298012da 100644 (file)
@@ -675,7 +675,7 @@ warn_f(
 void
 edit_init(void)
 {
-       limit_cmd.name = _("limit");
+       limit_cmd.name = "limit";
        limit_cmd.cfunc = limit_f;
        limit_cmd.argmin = 2;
        limit_cmd.argmax = -1;
@@ -684,14 +684,14 @@ edit_init(void)
        limit_cmd.oneline = _("modify quota limits");
        limit_cmd.help = limit_help;
 
-       restore_cmd.name = _("restore");
+       restore_cmd.name = "restore";
        restore_cmd.cfunc = restore_f;
        restore_cmd.argmin = 0;
        restore_cmd.argmax = -1;
        restore_cmd.args = _("[-gpu] [-f file]");
        restore_cmd.oneline = _("restore quota limits from a backup file");
 
-       timer_cmd.name = _("timer");
+       timer_cmd.name = "timer";
        timer_cmd.cfunc = timer_f;
        timer_cmd.argmin = 2;
        timer_cmd.argmax = -1;
@@ -699,7 +699,7 @@ edit_init(void)
        timer_cmd.oneline = _("get/set quota enforcement timeouts");
        timer_cmd.help = timer_help;
 
-       warn_cmd.name = _("warn");
+       warn_cmd.name = "warn";
        warn_cmd.cfunc = warn_f;
        warn_cmd.argmin = 2;
        warn_cmd.argmax = -1;
index 1f10dedfa8f62b916f856e92eae7e0978c479fbe..825ce34f2377e255af740036ee1920234786d7b1 100644 (file)
@@ -357,8 +357,8 @@ free_f(
 void
 free_init(void)
 {
-       free_cmd.name = _("df");
-       free_cmd.altname = _("free");
+       free_cmd.name = "df";
+       free_cmd.altname = "free";
        free_cmd.cfunc = free_f;
        free_cmd.argmin = 0;
        free_cmd.argmax = -1;
index 6b532de0c80dfb866e180b34862bd6946f7eb01e..e9a683484d8608cc960716e522cf97c18783d6a6 100644 (file)
@@ -121,8 +121,8 @@ path_f(
 void
 path_init(void)
 {
-       path_cmd.name = _("path");
-       path_cmd.altname = _("paths");
+       path_cmd.name = "path";
+       path_cmd.altname = "paths";
        path_cmd.args = _("[N]");
        path_cmd.cfunc = path_f;
        path_cmd.argmin = 0;
@@ -130,8 +130,8 @@ path_init(void)
        path_cmd.flags = CMD_FLAG_GLOBAL;
        path_cmd.oneline = _("set current path, or show the list of paths");
 
-       print_cmd.name = _("print");
-       print_cmd.altname = _("p");
+       print_cmd.name = "print";
+       print_cmd.altname = "p";
        print_cmd.cfunc = print_f;
        print_cmd.argmin = 0;
        print_cmd.argmax = 0;
index b1f160c75d51a071dd5059d05210ef4f6f7383e1..a2c7046dacdf5270b3c29558176d77584a3bfb4f 100644 (file)
@@ -347,8 +347,8 @@ project_f(
 void
 project_init(void)
 {
-       project_cmd.name = _("project");
-       project_cmd.altname = _("tree");
+       project_cmd.name = "project";
+       project_cmd.altname = "tree";
        project_cmd.cfunc = project_f;
        project_cmd.args = _("[-c|-s|-C|-d <depth>|-p <path>] project ...");
        project_cmd.argmin = 1;
index 54387ea6163fe8deb09daf70b0c50aec82f83770..a7782b44487d197df91085f7f9765c1cef947dc5 100644 (file)
@@ -411,7 +411,7 @@ quot_f(
 void
 quot_init(void)
 {
-       quot_cmd.name = _("quot");
+       quot_cmd.name = "quot";
        quot_cmd.cfunc = quot_f;
        quot_cmd.argmin = 0;
        quot_cmd.argmax = -1;
index 4a1f39fad1d717e2bd2ba829ffe7254a8955696b..3fba055c9e31bed492a8a07e556c66f3bba36bcf 100644 (file)
@@ -452,8 +452,8 @@ quota_f(
 void
 quota_init(void)
 {
-       quota_cmd.name = _("quota");
-       quota_cmd.altname = _("l");
+       quota_cmd.name = "quota";
+       quota_cmd.altname = "l";
        quota_cmd.cfunc = quota_f;
        quota_cmd.argmin = 0;
        quota_cmd.argmax = -1;
index 865359042d54ed70756332a35631144e0ccef3c8..a1e165b0eb1a9fb7a1078436872451a94732ff6c 100644 (file)
@@ -640,7 +640,7 @@ report_f(
 void
 report_init(void)
 {
-       dump_cmd.name = _("dump");
+       dump_cmd.name = "dump";
        dump_cmd.cfunc = dump_f;
        dump_cmd.argmin = 0;
        dump_cmd.argmax = -1;
@@ -648,8 +648,8 @@ report_init(void)
        dump_cmd.oneline = _("dump quota information for backup utilities");
        dump_cmd.help = dump_help;
 
-       report_cmd.name = _("report");
-       report_cmd.altname = _("repquota");
+       report_cmd.name = "report";
+       report_cmd.altname = "repquota";
        report_cmd.cfunc = report_f;
        report_cmd.argmin = 0;
        report_cmd.argmax = -1;
index aa033409127842827a15d1ca460751aa59eafb0c..3862e677ff8a0898e0e7cda614a7aba1fea0e9f0 100644 (file)
@@ -517,7 +517,7 @@ remove_f(
 void
 state_init(void)
 {
-       off_cmd.name = _("off");
+       off_cmd.name = "off";
        off_cmd.cfunc = off_f;
        off_cmd.argmin = 0;
        off_cmd.argmax = -1;
@@ -525,7 +525,7 @@ state_init(void)
        off_cmd.oneline = _("permanently switch quota off for a path");
        off_cmd.help = off_help;
 
-       state_cmd.name = _("state");
+       state_cmd.name = "state";
        state_cmd.cfunc = state_f;
        state_cmd.argmin = 0;
        state_cmd.argmax = -1;
@@ -533,7 +533,7 @@ state_init(void)
        state_cmd.oneline = _("get overall quota state information");
        state_cmd.help = state_help;
 
-       enable_cmd.name = _("enable");
+       enable_cmd.name = "enable";
        enable_cmd.cfunc = enable_f;
        enable_cmd.argmin = 0;
        enable_cmd.argmax = -1;
@@ -541,7 +541,7 @@ state_init(void)
        enable_cmd.oneline = _("enable quota enforcement");
        enable_cmd.help = enable_help;
 
-       disable_cmd.name = _("disable");
+       disable_cmd.name = "disable";
        disable_cmd.cfunc = disable_f;
        disable_cmd.argmin = 0;
        disable_cmd.argmax = -1;
@@ -549,7 +549,7 @@ state_init(void)
        disable_cmd.oneline = _("disable quota enforcement");
        disable_cmd.help = disable_help;
 
-       remove_cmd.name = _("remove");
+       remove_cmd.name = "remove";
        remove_cmd.cfunc = remove_f;
        remove_cmd.argmin = 0;
        remove_cmd.argmax = -1;