• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/gettext-0.17/gettext-tools/src/

Lines Matching defs:domain

103   /* Name of domain these ID/String pairs are part of.  */
107 /* Link to the next domain. */
126 /* Check that domain directives can be satisfied. */
154 { "check-domain", no_argument, NULL, CHAR_MAX + 2 },
204 struct msg_domain *domain;
220 /* Set the text message domain. */
306 case CHAR_MAX + 2: /* --check-domain */
494 /* The -o option determines the name of the domain and therefore
506 /* Remember that we currently have not specified any domain. This
523 for (domain = domain_list; domain != NULL; domain = domain->next)
524 message_list_remove_if_not (domain->mlp, is_nonobsolete);
530 for (domain = domain_list; domain != NULL; domain = domain->next)
532 check_message_list (domain->mlp,
549 for (domain = domain_list; domain != NULL; domain = domain->next)
553 if (msgdomain_write_java (domain->mlp, canon_encoding,
560 if (msgdomain_write_csharp (domain->mlp, canon_encoding,
567 if (msgdomain_write_csharp_resources (domain->mlp, canon_encoding,
568 domain->domain_name,
569 domain->file_name))
574 if (msgdomain_write_tcl (domain->mlp, canon_encoding,
580 if (msgdomain_write_qt (domain->mlp, canon_encoding,
581 domain->domain_name, domain->file_name))
586 if (msgdomain_write_mo (domain->mlp, domain->domain_name,
587 domain->file_name))
592 message_list_free (domain->mlp, 0);
724 --check-format, --check-header, --check-domain\n"));
730 --check-domain check for conflicts between domain directives\n\
796 struct msg_domain *domain;
798 domain = XMALLOC (struct msg_domain);
799 domain->mlp = message_list_alloc (true);
800 domain->domain_name = name;
801 domain->file_name = file_name;
802 domain->next = NULL;
803 *p_dom = domain;
823 - The multi-domain handling is adapted to our domain_list.
891 /* Set 'domain' directive when seen in .po file. */
895 /* If no output file was given, we change it with each `domain'
909 domain name \"%s\" not suitable as file name"), name);
914 domain name \"%s\" not suitable as file name: will use prefix"), name);
918 /* Set new domain. */
920 this->domain = current_domain->domain_name;
927 _("`domain %s' directive ignored"), name);
948 /* Check whether already a domain is specified. If not, use default
949 domain. */
954 /* Keep current_domain and this->domain synchronized. */
955 this->domain = current_domain->domain_name;
1090 /* Keep current_domain and this->domain synchronized. */
1091 pop->domain = current_domain->domain_name;