X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fdata%2Fsys-file-writer.c;fp=src%2Fdata%2Fsys-file-writer.c;h=3e0d3499c9cd543450929e1b5dbb628552bc6640;hb=51d8c9b54d65bd0aa3944b8fb9d4460875048e14;hp=d25d5e8d62529606474901336cfdb079701c4527;hpb=2ad5fe55e454b8ccb271a710e2c4b1b53c57fc8c;p=pspp-builds.git diff --git a/src/data/sys-file-writer.c b/src/data/sys-file-writer.c index d25d5e8d..3e0d3499 100644 --- a/src/data/sys-file-writer.c +++ b/src/data/sys-file-writer.c @@ -53,6 +53,7 @@ #include "gettext.h" #define _(msgid) gettext (msgid) +#define N_(msgid) (msgid) /* Compression bias used by PSPP. Values between (1 - COMPRESSION_BIAS) and (251 - COMPRESSION_BIAS) inclusive can be @@ -184,7 +185,9 @@ sfm_open_writer (struct file_handle *fh, struct dictionary *d, &w->sfm_var_cnt); /* Open file handle as an exclusive writer. */ - w->lock = fh_lock (fh, FH_REF_FILE, "system file", FH_ACC_WRITE, true); + /* TRANSLATORS: this fragment will be interpolated into + messages in fh_lock() that identify types of files. */ + w->lock = fh_lock (fh, FH_REF_FILE, N_("system file"), FH_ACC_WRITE, true); if (w->lock == NULL) goto error;