HomeSort by: relevance | last modified time | path
    Searched refs:catalog (Results 1 - 25 of 89) sorted by relevancy

1 2 3 4

  /src/external/gpl2/gettext/dist/gettext-tools/man/
msgen.x 2 msgen \- create English message catalog
msginit.x 2 msginit \- initialize a message catalog
msgattrib.x 2 msgattrib \- attribute matching and manipulation on message catalog
msgcmp.x 2 msgcmp \- compare message catalog and template
msgconv.x 2 msgconv \- character set conversion for message catalog
msgexec.x 2 msgexec \- process translations of message catalog
msgfilter.x 2 msgfilter \- edit translations of message catalog
msgfmt.x 2 msgfmt \- compile message catalog to binary format
msggrep.x 2 msggrep \- pattern matching on message catalog
msgmerge.x 2 msgmerge \- merge message catalog and template
msgunfmt.x 2 msgunfmt \- uncompile message catalog from binary format
msguniq.x 2 msguniq \- unify duplicate translations in message catalog
  /src/external/mpl/bind/dist/bin/tests/system/catz/
setup.sh 16 cp -f ns1/catalog.example.db.in ns1/catalog0.example.db
17 cp -f ns1/catalog.example.db.in ns1/catalog1.example.db
18 cp -f ns3/catalog.example.db.in ns3/catalog2.example.db
19 cp -f ns1/catalog.example.db.in ns1/catalog3.example.db
20 cp -f ns1/catalog.example.db.in ns1/catalog4.example.db
22 cp -f ns1/catalog.example.db.in ns1/catalog6.example.db
23 cp -f ns1/catalog.example.db.in ns1/catalog-misc.example.db
24 cp -f ns1/catalog.example.db.in ns1/catalog-tls.example.d
    [all...]
  /src/external/gpl3/gcc/dist/libstdc++-v3/config/locale/generic/
messages_members.cc 40 messages<char>::do_get(catalog, int, int, const string& __dfault) const
46 messages<wchar_t>::do_get(catalog, int, int, const wstring& __dfault) const
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/config/locale/generic/
messages_members.cc 40 messages<char>::do_get(catalog, int, int, const string& __dfault) const
46 messages<wchar_t>::do_get(catalog, int, int, const wstring& __dfault) const
  /src/external/gpl2/gettext/dist/gettext-tools/projects/
team-address 6 catalog="$3" # e.g. "pt_BR"
11 /bin/sh "$projectsdir/$project/team-address" "$projectsdir" "$progdir" "$catalog" "$language"
  /src/share/xml/
Makefile 8 # XXX Huge hack for the lack of catalog management. However, this will do
11 FILES= catalog.atf
12 FILESNAME_catalog.atf= catalog
14 FILES= catalog
  /src/external/gpl2/gettext/dist/gettext-tools/examples/hello-csharp/
hello.cs 13 GettextResourceManager catalog =
15 Console.WriteLine(catalog.GetString("Hello, world!"));
18 catalog.GetString("This program is running as process number {0}."),
  /src/external/gpl2/gettext/dist/gettext-tools/projects/TP/
team-address 6 catalog="$3" # e.g. "pt_BR"
13 address=`echo "$html" | tr '\012' '|' | sed -e "$sed_addnl" | sed -n -e "s,^.*<td>$catalog</td>[^<>]*<td>[^|]*</td>[^<>]*<td><a href=\"\\([^\"]*\\)\">[^<>]*</a></td>.*\$,\\1,p" | sed 1q`
19 echo " "`echo "$html" | tr '\012' '|' | sed -e "$sed_addnl" | sed -n -e "s,^.*<td>$catalog</td>[^<>]*<td><a href=\"\\([^\"]*\\)\">[^<>]*</a></td>.*\$,\\1,p" | sed 1q`
35 echo "your local dialect ($catalog). You can either join the existing"
36 echo "translation team for $language or create a new translation team for $catalog."
46 echo "If you want to create a new translation team for $catalog, please visit"
55 echo "If you want to create a new translation team for $language"`test "$catalog" = "$language" || echo " or $catalog"`", please visit"
  /src/external/gpl2/gettext/dist/gettext-runtime/intl-java/gnu/gettext/
GettextResource.java 70 * @param catalog a ResourceBundle
75 public static String gettext (ResourceBundle catalog, String msgid) {
77 String result = (String)catalog.getObject(msgid);
88 * @param catalog a ResourceBundle
94 public static String ngettext (ResourceBundle catalog, String msgid, String msgid_plural, long n) {
100 ResourceBundle origCatalog = catalog;
102 // Try catalog itself.
104 System.out.println("ngettext on "+catalog);
108 handleGetObjectMethod = catalog.getClass().getMethod("handleGetObject", new Class[] { java.lang.String.class });
109 getParentMethod = catalog.getClass().getMethod("getParent", new Class[0])
    [all...]
  /src/external/bsd/nvi/
Makefile 8 SUBDIR+= catalog
  /src/external/bsd/ntp/dist/libntp/lib/isc/nls/
msgcat.c 45 * in order to use a message catalog.
51 nl_catd catalog; member in struct:isc_msgcat
63 * Open a message catalog.
81 msgcat->catalog = catopen(name, 0);
93 * Close a message catalog.
102 if (msgcat->catalog != (nl_catd)(-1))
103 (void)catclose(msgcat->catalog);
129 return (catgets(msgcat->catalog, set, message, default_text));
  /src/external/gpl3/gcc/dist/libstdc++-v3/config/locale/ieee_1003.1-2001/
messages_members.h 42 typename messages<_CharT>::catalog
53 typename messages<_CharT>::catalog
56 { return reinterpret_cast<catalog>(catopen(__s.c_str(), NL_CAT_LOCALE)); }
60 messages<_CharT>::do_get(catalog __c, int __setid, int __msgid,
71 messages<_CharT>::do_close(catalog __c) const
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/config/locale/ieee_1003.1-2001/
messages_members.h 42 typename messages<_CharT>::catalog
53 typename messages<_CharT>::catalog
56 { return reinterpret_cast<catalog>(catopen(__s.c_str(), NL_CAT_LOCALE)); }
60 messages<_CharT>::do_get(catalog __c, int __setid, int __msgid,
71 messages<_CharT>::do_close(catalog __c) const
  /src/external/gpl2/gettext/dist/gettext-tools/examples/hello-java/
Hello.java 14 ResourceBundle catalog = ResourceBundle.getBundle("hello-java"); local
15 System.out.println(GettextResource.gettext(catalog,"Hello, world!"));
18 GettextResource.gettext(catalog,

Completed in 33 milliseconds

1 2 3 4