Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/nextcloud.com.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLukas Reschke <lukas@statuscode.ch>2016-10-20 14:12:43 +0300
committerLukas Reschke <lukas@statuscode.ch>2016-10-20 14:12:56 +0300
commit95448975f688803664df723929b9c1f604bf7c01 (patch)
tree91d2069637e24dfc712ecd501a006b437563088c /l10n.php
parent6c7446cf79891a11f69aa777a182f89585f781d5 (diff)
Add l10n basic script
Diffstat (limited to 'l10n.php')
-rw-r--r--l10n.php9
1 files changed, 9 insertions, 0 deletions
diff --git a/l10n.php b/l10n.php
new file mode 100644
index 00000000..6b52a161
--- /dev/null
+++ b/l10n.php
@@ -0,0 +1,9 @@
+<?php
+
+class L10N {
+ public function t($string) {
+ return $string;
+ }
+}
+
+$l = new L10N(); \ No newline at end of file