• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/gettext-0.17/gettext-tools/src/

Lines Matching defs:def

166   msgdomain_list_ty *def;
389 result = merge (argv[optind], argv[optind + 1], input_syntax, &def);
403 if (!msgdomain_list_equal (def, result, true))
405 /* Back up def.po. */
454 Usage: %s [OPTION] def.po ref.pot\n\
459 Merges two Uniforum style .po files together. The def.po file is an\n\
476 def.po translations referring to old sources\n"));
488 -U, --update update def.po,\n\
489 do nothing if def.po already up to date\n"));
502 The result is written back to def.po.\n"));
504 --backup=CONTROL make a backup of def.po\n"));
522 -m, --multi-domain apply ref.pot to each of the domains in def.po\n"));
611 - A message list from def.po,
617 /* A list of message lists. The first comes from def.po, the other ones
757 message_merge (message_ty *def, message_ty *ref, bool force_fuzzy,
823 cp = def->msgstr;
979 msgstr = def->msgstr;
980 msgstr_len = def->msgstr_len;
982 if (def->is_fuzzy)
984 prev_msgctxt = def->prev_msgctxt;
985 prev_msgid = def->prev_msgid;
986 prev_msgid_plural = def->prev_msgid_plural;
990 prev_msgctxt = def->msgctxt;
991 prev_msgid = def->msgid;
992 prev_msgid_plural = def->msgid_plural;
998 msgstr, msgstr_len, &def->pos);
1002 if (def->comment)
1003 for (j = 0; j < def->comment->nitems; ++j)
1004 message_comment_append (result, def->comment->item[j]);
1016 result->is_fuzzy = def->is_fuzzy | force_fuzzy;
1018 /* If ref and def have the same msgid but different msgid_plural, it's
1022 ? def->msgid_plural == NULL
1023 || strcmp (ref->msgid_plural, def->msgid_plural) != 0
1024 : def->msgid_plural != NULL))
1040 && !possible_format_p (def->is_format[i])
1085 if (def->msgid_plural == NULL)
1090 if (def->msgid_plural != NULL)
1331 /* ref->msgid_plural != NULL but def->msgid_plural == NULL.
1332 Use a copy of def->msgstr for each possible plural form. */
1358 /* ref->msgid_plural == NULL but def->msgid_plural != NULL.
1382 msgdomain_list_ty *def;
1394 def = read_catalog_file (fn1, input_syntax);
1442 def = iconv_msgdomain_list (def, "UTF-8", true, fn1);
1460 for (k = 0; k < def->nitems; k++)
1462 message_list_ty *mlp = def->item[k]->messages;
1508 /* Convert the compendiums to def's encoding. */
1522 if (def->nitems == 0
1523 || (def->nitems == 1 && def->item[0]->messages->nitems == 0))
1586 def = iconv_msgdomain_list (def, "UTF-8", true, fn1);
1614 defmlp = msgdomain_list_sublist (def, domain, false);
1628 for (k = 0; k < def->nitems; k++)
1630 const char *domain = def->item[k]->domain;
1631 message_list_ty *defmlp = def->item[k]->messages;
1652 for (k = 0; k < def->nitems; ++k)
1654 const char *domain = def->item[k]->domain;
1655 message_list_ty *defmlp = def->item[k]->messages;
1696 if (def->encoding == ref->encoding)
1697 result->encoding = def->encoding;
1705 (long) def->nitems, (long) ref->nitems,
1712 *defp = def;