diff options
Diffstat (limited to 'lib/meta.c')
-rw-r--r-- | lib/meta.c | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -512,8 +512,8 @@ int meta_load(char *n) char buf[BUFSIZ], errctx[BUFSIZ], *p; int i = 0; - pushcontext("Loading meta file"); - sprintf(errctx, "Opening file '%s'", n); + pushcontext(_("Loading meta file")); + sprintf(errctx, _("Opening file '%s'"), n); pushcontext(errctx); if (!(f = fopen(n, "r"))) { @@ -521,9 +521,9 @@ int meta_load(char *n) return 1; } popcontext(); - pushcontext("Reading file"); + pushcontext(_("Reading file")); while (fgets(buf, BUFSIZ, f)) { - sprintf(errctx, "Reading line %i", ++i); + sprintf(errctx, _("Reading line %i"), ++i); pushcontext(errctx); if ((p = strchr(buf, '\r'))) { *p = '\0'; |