Merge remote-tracking branch 'origin/master'
This commit is contained in:
commit
ebc2995643
@ -56,7 +56,9 @@
|
|||||||
};
|
};
|
||||||
|
|
||||||
_converse.registerPongHandler = function () {
|
_converse.registerPongHandler = function () {
|
||||||
|
if (!_.isUndefined(_converse.connection.disco)) {
|
||||||
_converse.connection.disco.addFeature(Strophe.NS.PING);
|
_converse.connection.disco.addFeature(Strophe.NS.PING);
|
||||||
|
}
|
||||||
_converse.connection.ping.addPingHandler(_converse.pong);
|
_converse.connection.ping.addPingHandler(_converse.pong);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
// Copyright (c) 2012-2017, Jan-Carel Brand <jc@opkode.com>
|
// Copyright (c) 2012-2017, Jan-Carel Brand <jc@opkode.com>
|
||||||
// Licensed under the Mozilla Public License (MPLv2)
|
// Licensed under the Mozilla Public License (MPLv2)
|
||||||
//
|
//
|
||||||
/*global define, escape, locales, Jed */
|
/*global define, escape, locales, window */
|
||||||
(function (root, factory) {
|
(function (root, factory) {
|
||||||
define([
|
define([
|
||||||
"sizzle",
|
"sizzle",
|
||||||
@ -86,8 +86,11 @@
|
|||||||
// Translation machinery
|
// Translation machinery
|
||||||
// ---------------------
|
// ---------------------
|
||||||
u.__ = function (str) {
|
u.__ = function (str) {
|
||||||
|
if (_.isUndefined(window.Jed)) {
|
||||||
|
return str;
|
||||||
|
}
|
||||||
if (!u.isConverseLocale(this.locale) || this.locale === 'en') {
|
if (!u.isConverseLocale(this.locale) || this.locale === 'en') {
|
||||||
return Jed.sprintf.apply(Jed, arguments);
|
return Jed.sprintf.apply(window.Jed, arguments);
|
||||||
}
|
}
|
||||||
if (typeof this.jed === "undefined") {
|
if (typeof this.jed === "undefined") {
|
||||||
this.jed = new Jed(window.JSON.parse(locales[this.locale]));
|
this.jed = new Jed(window.JSON.parse(locales[this.locale]));
|
||||||
|
Loading…
Reference in New Issue
Block a user