bind_textdomain_codeset | PHP 4.1.0 |
string bind_textdomain_codeset (string domain, string codeset) |
|
Specifies the character encoding in which the messages from the DOMAIN message catalog will be returned. |
dcgettext | PHP 3.0.7 |
string dcgettext(string domain_name, string msgid, long category) |
|
Returns the translation of msgid for domain_name and category or msgid unaltered if a translation does not exist. |
dcngettext | PHP 4.1.0 |
string dcngettext (string domain, string msgid1, string msgid2, int n, int category) |
|
Plural version of dcgettext( ). |
dgettext | PHP 3.0.7 |
string dgettext(string domain_name, string msgid) |
|
Returns the translation of msgid for domain_name or msgid unaltered if a translation does not exist. |
dngettext | PHP 4.1.0 |
string dngettext (string domain, string msgid1, string msgid2, int count) |
|
Plural version of dgettext(). |
gettext | PHP 3.0.7 |
string gettext(string msgid) |
|
Returns the translation of msgid for the current domain or msgid unaltered if a translation does not exist. |
ngettext | PHP 4.1.0 |
string ngettext(string MSGID1, string MSGID2, int N) |
|
Plural version of gettext(). |
textdomain | PHP 3.0.7 |
string textdomain(string domain) |
|
Sets the textdomain to domain; returns the current domain. |