diff options
author | Egon Schmid <eschmid@php.net> | 2000-08-08 20:28:19 +0000 |
---|---|---|
committer | Egon Schmid <eschmid@php.net> | 2000-08-08 20:28:19 +0000 |
commit | 3bc8b9dc9c9bacea79b1c762a670dfff6f272a24 (patch) | |
tree | 850caf7b3857863c0214c1afdc5d768d6c9ecd66 /ext/gettext | |
parent | 831e15d0d1842611dbd70400b07291eecd543746 (diff) | |
download | php-git-3bc8b9dc9c9bacea79b1c762a670dfff6f272a24.tar.gz |
Beautified some protos.
Diffstat (limited to 'ext/gettext')
-rw-r--r-- | ext/gettext/gettext.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/ext/gettext/gettext.c b/ext/gettext/gettext.c index cf70362289..71dfc63fe0 100644 --- a/ext/gettext/gettext.c +++ b/ext/gettext/gettext.c @@ -53,7 +53,7 @@ PHP_MINFO_FUNCTION(gettext) } /* {{{ proto string textdomain(string domain) - Set the textdomain to "domain". Returns the current domain. */ + Set the textdomain to "domain". Returns the current domain */ PHP_FUNCTION(textdomain) { pval **domain; @@ -79,7 +79,7 @@ PHP_FUNCTION(textdomain) /* }}} */ /* {{{ proto string gettext(string msgid) - Return the translation of msgid for the current domain, or msgid unaltered if a translation does not exist. */ + Return the translation of msgid for the current domain, or msgid unaltered if a translation does not exist */ PHP_FUNCTION(gettext) { pval **msgid; @@ -97,7 +97,7 @@ PHP_FUNCTION(gettext) /* }}} */ /* {{{ proto string dgettext(string domain_name, string msgid) - Return the translation of msgid for domain_name, or msgid unaltered if a translation does not exist. */ + Return the translation of msgid for domain_name, or msgid unaltered if a translation does not exist */ PHP_FUNCTION(dgettext) { pval **domain_name, **msgid; @@ -118,7 +118,7 @@ PHP_FUNCTION(dgettext) /* }}} */ /* {{{ proto string dcgettext(string domain_name, string msgid, long category) - Return the translation of msgid for domain_name and category, or msgid unaltered if a translation does not exist. */ + Return the translation of msgid for domain_name and category, or msgid unaltered if a translation does not exist */ PHP_FUNCTION(dcgettext) { pval **domain_name, **msgid, **category; @@ -142,7 +142,7 @@ PHP_FUNCTION(dcgettext) /* }}} */ /* {{{ proto string bindtextdomain(string domain_name, string dir) - Bind to the text domain domain_name, looking for translations in dir. Returns the current domain. */ + Bind to the text domain domain_name, looking for translations in dir. Returns the current domain */ PHP_FUNCTION(bindtextdomain) { pval **domain_name, **dir; |