Commit 24b20553 authored by JC Brand's avatar JC Brand

Fix syntax err in Indonesian translations and update CHANGES

parent 8f40b0e8
......@@ -6,6 +6,7 @@ Unreleased
* Option to display a call button in the chatbox toolbar, to allow third-party libraries to provide a calling feature. [Aupajo]
* #108 Japanese Translations. [mako09]
* #115 Indonesian Translations. [priyadi]
0.7.2 (2013-12-18)
------------------
......
(function(root, factory) {
define("de", ['jed'], function() {
return factory(new Jed({
var translations = {
"domain": "converse",
"locale_data": {
{
"converse": {
"": {
"project-id-version": "Converse.js 0.7.0",
"report-msgid-bugs-to": "",
......@@ -164,10 +163,18 @@
"Log In": [null, "Masuk"],
"BOSH Service URL:": [null, "URL Layanan BOSH:"]
}
}
})
};
if (typeof define === 'function' && define.amd) {
define("id", ['jed'], function () {
return factory(new Jed(translations));
});
} else {
if (!window.locales) {
window.locales = {};
}
}(this, function(i18n) {
return i18n;
}));
window.locales.id = factory(new Jed(translations));
}
}(this, function (id) {
return id;
}));
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