Explorar o código

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 %!s(int64=12) %!d(string=hai) anos
pai
achega
62e701f3fb
Modificáronse 1 ficheiros con 11 adicións e 0 borrados
  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);