summaryrefslogtreecommitdiffstats
path: root/src/testshlibrary.d
diff options
context:
space:
mode:
authorGravatar mszulecki2007-06-11 18:18:54 +0000
committerGravatar mszulecki2007-06-11 18:18:54 +0000
commit63db083d9b76e2db4db274a2a99e28cdfc96ed2f (patch)
treea96478edba3f8678ef11e2e25ed8a89e97b4afc2 /src/testshlibrary.d
parent0d8a3ccfe29681d855bb18649af75cc177335a6b (diff)
downloaddskel-63db083d9b76e2db4db274a2a99e28cdfc96ed2f.tar.gz
dskel-63db083d9b76e2db4db274a2a99e28cdfc96ed2f.tar.bz2
Fix localedir if prefix not defined and mark more strings as translated.
git-svn-id: http://svn.sukimashita.com/repos/dskel/trunk@23 4281df72-ff29-0410-8fee-2d9ac0c5f5a7
Diffstat (limited to 'src/testshlibrary.d')
-rw-r--r--src/testshlibrary.d4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/testshlibrary.d b/src/testshlibrary.d
index 13cbea9..0bdfc97 100644
--- a/src/testshlibrary.d
+++ b/src/testshlibrary.d
@@ -1,9 +1,11 @@
module testshlibrary;
+import catalog;
+
public static class HelloWorldSharedObjectFactory
{
public static char[] getVersion()
{
- return "Version:";
+ return Catalog.GetString("Version:");
}
}