ViewVC Help
View File
|
Revision Log
|
View Changeset
|
Root Listing
root
/
Oni2
/
Daodan
/
MinGW
/
msys
/
1.0
/
share
/
awk
/
libintl.awk
Revision:
1046
Committed:
Mon Aug 29 13:19:38 2016 UTC
(9 years, 2 months ago) by
alloc
File size:
238 byte(s)
Log Message:
Daodan: Added Windows MinGW and build batch file
File Contents
#
Content
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
}