瀏覽代碼

Add locales.js

It will pull in all languages and put them in the locales root object, from
which the specific language translations can be chosen during runtime.
JC Brand 12 年之前
父節點
當前提交
62e701f3fb
共有 1 個文件被更改,包括 11 次插入0 次删除
  1. 11 0
      Libraries/locales.js

+ 11 - 0
Libraries/locales.js

@@ -0,0 +1,11 @@
+(function (root, factory) {
+    define("locales", [
+        'jed',
+        'af',
+        'en'
+        ], function (jed, af, en) {
+            root.locales = {};
+            root.locales.af = af;
+            root.locales.en = en;
+        });
+})(this);