aboutsummaryrefslogtreecommitdiff
path: root/src/hashtab.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/hashtab.c')
-rw-r--r--src/hashtab.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/hashtab.c b/src/hashtab.c
index 0649ead..77edb95 100644
--- a/src/hashtab.c
+++ b/src/hashtab.c
@@ -137,11 +137,11 @@ hashtab_strerror(int rc)
{
switch (rc) {
case ENOENT:
- return "element not found in table";
+ return _("element not found in table");
case E2BIG:
- return "symbol table is full";
+ return _("symbol table is full");
case ENOMEM:
- return "out of memory";
+ return _("out of memory");
}
return strerror(rc);
}

Return to:

Send suggestions and report system problems to the System administrator.