source:
Daodan/MinGW/msys/1.0/share/awk/libintl.awk@
1080
Last change on this file since 1080 was 1046, checked in by , 8 years ago | |
---|---|
File size: 238 bytes |
Rev | Line | |
---|---|---|
[1046] | 1 | function bindtextdomain(dir, domain) |
2 | { | |
3 | return dir | |
4 | } | |
5 | ||
6 | function dcgettext(string, domain, category) | |
7 | { | |
8 | return string | |
9 | } | |
10 | ||
11 | function dcngettext(string1, string2, number, domain, category) | |
12 | { | |
13 | return (number == 1 ? string1 : string2) | |
14 | } |
Note:
See TracBrowser
for help on using the repository browser.