summaryrefslogtreecommitdiffstats
path: root/src/catalog.d
diff options
context:
space:
mode:
Diffstat (limited to 'src/catalog.d')
-rw-r--r--src/catalog.d19
1 files changed, 19 insertions, 0 deletions
diff --git a/src/catalog.d b/src/catalog.d
new file mode 100644
index 0000000..ff48a58
--- /dev/null
+++ b/src/catalog.d
@@ -0,0 +1,19 @@
+module catalog;
+
+public static class Catalog
+{
+ public static void Init(char[] p, char[] localedir)
+ {
+
+ }
+
+ public static char[] GetString(char[] s)
+ {
+ return s;
+ }
+
+ public static char[] GetPluralString(char[] s, char[] p, char[] n)
+ {
+ return s;
+ }
+}