summaryrefslogtreecommitdiff
path: root/quota.h
diff options
context:
space:
mode:
Diffstat (limited to 'quota.h')
-rw-r--r--quota.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/quota.h b/quota.h
index 0491975..ac034d0 100644
--- a/quota.h
+++ b/quota.h
@@ -12,11 +12,13 @@ typedef int64_t qsize_t; /* Type in which we store size limitations */
/*
* Definitions for the default names of the quotas files.
+ * N_ is gettext magic for static strings
*/
+#define N_(x) (x)
#define INITQFNAMES { \
- "user", /* USRQUOTA */ \
- "group", /* GRPQUOTA */ \
- "undefined", \
+ N_("user"), /* USRQUOTA */ \
+ N_("group"), /* GRPQUOTA */ \
+ N_("undefined"), \
}
/*