diff options
author | Pixel <> | 2001-04-15 01:15:02 +0000 |
---|---|---|
committer | Pixel <> | 2001-04-15 01:15:02 +0000 |
commit | 1d2c4bd4e380395c68151d40239d1539d39fdd91 (patch) | |
tree | 5d257d14007c3a67ac716c01c8334878483c3697 /lib/meta.c | |
parent | a984cf3f28d3a5935c84f96f6da3bc7bd39a9ff1 (diff) |
Assembleur
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'; |