Lines Matching defs:msg_ctxt_id
130 const char *msg_ctxt_id, const char *msgid,
133 const char *translation = dcgettext (domain, msg_ctxt_id, category);
134 if (translation == msg_ctxt_id)
149 const char *msg_ctxt_id, const char *msgid,
154 dcngettext (domain, msg_ctxt_id, msgid_plural, n, category);
155 if (translation == msg_ctxt_id || translation == msgid_plural)
195 char msg_ctxt_id[msgctxt_len + msgid_len];
198 char *msg_ctxt_id =
202 if (msg_ctxt_id != NULL)
205 memcpy (msg_ctxt_id, msgctxt, msgctxt_len - 1);
206 msg_ctxt_id[msgctxt_len - 1] = '\004';
207 memcpy (msg_ctxt_id + msgctxt_len, msgid, msgid_len);
208 translation = dcgettext (domain, msg_ctxt_id, category);
210 if (msg_ctxt_id != buf)
211 free (msg_ctxt_id);
213 if (translation != msg_ctxt_id)
241 char msg_ctxt_id[msgctxt_len + msgid_len];
244 char *msg_ctxt_id =
248 if (msg_ctxt_id != NULL)
251 memcpy (msg_ctxt_id, msgctxt, msgctxt_len - 1);
252 msg_ctxt_id[msgctxt_len - 1] = '\004';
253 memcpy (msg_ctxt_id + msgctxt_len, msgid, msgid_len);
254 translation = dcngettext (domain, msg_ctxt_id, msgid_plural, n, category);
256 if (msg_ctxt_id != buf)
257 free (msg_ctxt_id);
259 if (!(translation == msg_ctxt_id || translation == msgid_plural))