summaryrefslogtreecommitdiffstats
path: root/src/catalog.d
blob: fd605458cfaab12ac9123b5e076c0de36ccfbf0c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
module catalog;

public static class Catalog
{
	public static void Init(char[] packageid, char[] localedir)
	{
		
	}

	public static char[] GetString(char[] s)
	{
		return s;
	}

	public static char[] GetPluralString(char[] s, char[] p, char[] n)
	{
		return s;
	}
}