adding translations and transifex third party tool
[pub/Android/ownCloud.git] / third_party / transifex-client / txclib / __init__.py
diff --git a/third_party/transifex-client/txclib/__init__.py b/third_party/transifex-client/txclib/__init__.py
new file mode 100644 (file)
index 0000000..814773c
--- /dev/null
@@ -0,0 +1,19 @@
+# -*- coding: utf-8 -*-
+
+"""
+Copyright (C) 2010 by Indifex (www.indifex.com), see AUTHORS.
+License: BSD, see LICENSE for details.
+
+For further information visit http://code.indifex.com/transifex-client
+"""
+
+
+VERSION = (0, 9, 0, 'devel')
+
+def get_version():
+    version = '%s.%s' % (VERSION[0], VERSION[1])
+    if VERSION[2]:
+        version = '%s.%s' % (version, VERSION[2])
+    if VERSION[3] != 'final':
+        version = '%s %s' % (version, VERSION[3])
+    return version