18 lines
386 B
Awk
18 lines
386 B
Awk
# This file and how to use it are described in the manual.
|
|
# Therefore, we respectfully advise you to Read The Fine Manual
|
|
# for more information.
|
|
|
|
function bindtextdomain(dir, domain)
|
|
{
|
|
return dir
|
|
}
|
|
|
|
function dcgettext(string, domain, category)
|
|
{
|
|
return string
|
|
}
|
|
|
|
function dcngettext(string1, string2, number, domain, category)
|
|
{
|
|
return (number == 1 ? string1 : string2)
|
|
}
|