Commit 51d44f96 authored by JC Brand's avatar JC Brand

Add hu.js

parent fcb842f6
(function (root, factory) {
define("hu", ['jed'], function () {
var hu = new Jed({
"domain": "converse",
"locale_data": {
// Paste the data from hu/LC_MESSAGES/converse.json here (but
// remove the outermost curly brackets).
}
});
return factory(hu);
});
}(this, function (hu) {
return hu;
}));
......@@ -4,7 +4,8 @@
"jed": "Libraries/jed",
"af": "locale/af/LC_MESSAGES/af",
"en": "locale/en/LC_MESSAGES/en",
"de": "locale/de/LC_MESSAGES/de"
"de": "locale/de/LC_MESSAGES/de",
"hu": "locale/hu/LC_MESSAGES/hu"
}
});
......@@ -12,11 +13,13 @@
'jed',
'af',
'en',
'de'
], function (jed, af, en, de) {
'de',
'hu'
], function (jed, af, en, de, hu) {
root.locales = {};
root.locales.af = af;
root.locales.en = en;
root.locales.de = de;
root.locales.hu = hu;
});
})(this);
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment