X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fdata%2Fpor-file-reader.c;h=ce1f562f4f9389f323acacdeff5f606e289f68a7;hb=c90c44ab307b3ba49f606d2bae80e6aff1e228d7;hp=668a8429d5839d9f8fb810009ef50d24d25eb169;hpb=707848060e414fe93458834446dd7cdbf800667f;p=pspp diff --git a/src/data/por-file-reader.c b/src/data/por-file-reader.c index 668a8429d5..ce1f562f4f 100644 --- a/src/data/por-file-reader.c +++ b/src/data/por-file-reader.c @@ -46,6 +46,7 @@ #include "gettext.h" #define _(msgid) gettext (msgid) +#define N_(msgid) (msgid) /* portable_to_local[PORTABLE] translates the given portable character into the local character set. */ @@ -261,7 +262,9 @@ pfm_open_reader (struct file_handle *fh, struct dictionary **dict, goto error; /* Lock file. */ - r->lock = fh_lock (fh, FH_REF_FILE, "portable file", FH_ACC_READ, false); + /* TRANSLATORS: this fragment will be interpolated into + messages in fh_lock() that identify types of files. */ + r->lock = fh_lock (fh, FH_REF_FILE, N_("portable file"), FH_ACC_READ, false); if (r->lock == NULL) goto error;