Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
converse.js
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
converse.js
Commits
8a74cc33
Commit
8a74cc33
authored
May 24, 2016
by
JC Brand
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
New release: 1.0.1
parent
0a7caa27
Changes
26
Hide whitespace changes
Inline
Side-by-side
Showing
26 changed files
with
518 additions
and
387 deletions
+518
-387
bower.json
bower.json
+1
-1
dist/converse-mobile.js
dist/converse-mobile.js
+68
-16
dist/converse-no-dependencies.js
dist/converse-no-dependencies.js
+34
-7
dist/converse.js
dist/converse.js
+69
-17
docs/CHANGES.md
docs/CHANGES.md
+1
-1
docs/source/conf.py
docs/source/conf.py
+2
-2
locale/af/LC_MESSAGES/converse.po
locale/af/LC_MESSAGES/converse.po
+18
-18
locale/ca/LC_MESSAGES/converse.po
locale/ca/LC_MESSAGES/converse.po
+18
-18
locale/converse.pot
locale/converse.pot
+18
-18
locale/de/LC_MESSAGES/converse.po
locale/de/LC_MESSAGES/converse.po
+18
-18
locale/en/LC_MESSAGES/converse.po
locale/en/LC_MESSAGES/converse.po
+18
-18
locale/es/LC_MESSAGES/converse.po
locale/es/LC_MESSAGES/converse.po
+18
-18
locale/fr/LC_MESSAGES/converse.po
locale/fr/LC_MESSAGES/converse.po
+18
-18
locale/he/LC_MESSAGES/converse.po
locale/he/LC_MESSAGES/converse.po
+18
-18
locale/hu/LC_MESSAGES/converse.po
locale/hu/LC_MESSAGES/converse.po
+18
-18
locale/id/LC_MESSAGES/converse.po
locale/id/LC_MESSAGES/converse.po
+18
-18
locale/it/LC_MESSAGES/converse.po
locale/it/LC_MESSAGES/converse.po
+18
-18
locale/ja/LC_MESSAGES/converse.po
locale/ja/LC_MESSAGES/converse.po
+18
-18
locale/nb/LC_MESSAGES/converse.po
locale/nb/LC_MESSAGES/converse.po
+18
-18
locale/nl/LC_MESSAGES/converse.po
locale/nl/LC_MESSAGES/converse.po
+18
-18
locale/pl/LC_MESSAGES/converse.po
locale/pl/LC_MESSAGES/converse.po
+18
-18
locale/pt_BR/LC_MESSAGES/converse.po
locale/pt_BR/LC_MESSAGES/converse.po
+18
-18
locale/ru/LC_MESSAGES/converse.po
locale/ru/LC_MESSAGES/converse.po
+18
-18
locale/uk/LC_MESSAGES/converse.po
locale/uk/LC_MESSAGES/converse.po
+18
-18
locale/zh/LC_MESSAGES/converse.po
locale/zh/LC_MESSAGES/converse.po
+18
-18
package.json
package.json
+1
-1
No files found.
bower.json
View file @
8a74cc33
{
{
"name"
:
"converse.js"
,
"name"
:
"converse.js"
,
"description"
:
"Web-based XMPP/Jabber chat client written in javascript"
,
"description"
:
"Web-based XMPP/Jabber chat client written in javascript"
,
"version"
:
"1.0.
0
"
,
"version"
:
"1.0.
1
"
,
"license"
:
"MPL-2.0"
,
"license"
:
"MPL-2.0"
,
"devDependencies"
:
{
"devDependencies"
:
{
"jasmine"
:
"https://github.com/jcbrand/jasmine.git#1_3_x"
,
"jasmine"
:
"https://github.com/jcbrand/jasmine.git#1_3_x"
,
...
...
dist/converse-mobile.js
View file @
8a74cc33
...
@@ -20173,19 +20173,17 @@ Strophe.Handler.prototype = {
...
@@ -20173,19 +20173,17 @@ Strophe.Handler.prototype = {
result = this.handler(elem);
result = this.handler(elem);
} catch (e) {
} catch (e) {
if (e.sourceURL) {
if (e.sourceURL) {
Strophe.fatal(
Strophe.fatal("error: " + this.handler +
"error: " + this.handler +
" " + e.sourceURL + ":" +
" " + e.sourceURL + ":" + e.line +
e.line + " - " + e.name + ": " + e.message);
" - " + e.name + ": " + e.message + "\n" + e.stack);
} else if (e.fileName) {
} else if (e.fileName) {
if (typeof(console) != "undefined") {
if (typeof(console) != "undefined") {
console.trace();
console.trace();
console.error(this.handler, " - error - ", e,
console.error(this.handler, " - error - ", e, e.message);
e.message + "\n" + e.stack);
}
}
Strophe.fatal("error: " + this.handler + " " +
Strophe.fatal("error: " + this.handler + " " +
e.fileName + ":" + e.lineNumber + " - " +
e.fileName + ":" + e.lineNumber + " - " +
e.name + ": " + e.message
+ "\n" + e.stack
);
e.name + ": " + e.message);
} else {
} else {
Strophe.fatal("error: " + e.message + "\n" + e.stack);
Strophe.fatal("error: " + e.message + "\n" + e.stack);
}
}
...
@@ -21140,7 +21138,7 @@ Strophe.Connection.prototype = {
...
@@ -21140,7 +21138,7 @@ Strophe.Connection.prototype = {
plugin.statusChanged(status, condition);
plugin.statusChanged(status, condition);
} catch (err) {
} catch (err) {
Strophe.error("" + k + " plugin caused an exception " +
Strophe.error("" + k + " plugin caused an exception " +
"changing status: " + err
.stack
);
"changing status: " + err);
}
}
}
}
}
}
...
@@ -21152,7 +21150,7 @@ Strophe.Connection.prototype = {
...
@@ -21152,7 +21150,7 @@ Strophe.Connection.prototype = {
this.connect_callback(status, condition);
this.connect_callback(status, condition);
} catch (e) {
} catch (e) {
Strophe.error("User connection callback caused an " +
Strophe.error("User connection callback caused an " +
"exception: " + e
.stack
);
"exception: " + e);
}
}
}
}
},
},
...
@@ -22023,6 +22021,7 @@ Strophe.SASLMechanism.prototype = {
...
@@ -22023,6 +22021,7 @@ Strophe.SASLMechanism.prototype = {
* Strophe.SASLPlain - SASL Plain authentication.
* Strophe.SASLPlain - SASL Plain authentication.
* Strophe.SASLMD5 - SASL Digest-MD5 authentication
* Strophe.SASLMD5 - SASL Digest-MD5 authentication
* Strophe.SASLSHA1 - SASL SCRAM-SHA1 authentication
* Strophe.SASLSHA1 - SASL SCRAM-SHA1 authentication
* Strophe.SASLOAuthBearer - SASL OAuth Bearer authentication
*/
*/
// Building SASL callbacks
// Building SASL callbacks
...
@@ -22237,6 +22236,32 @@ Strophe.SASLMD5.prototype.onChallenge = function(connection, challenge, test_cno
...
@@ -22237,6 +22236,32 @@ Strophe.SASLMD5.prototype.onChallenge = function(connection, challenge, test_cno
Strophe.Connection.prototype.mechanisms[Strophe.SASLMD5.prototype.name] = Strophe.SASLMD5;
Strophe.Connection.prototype.mechanisms[Strophe.SASLMD5.prototype.name] = Strophe.SASLMD5;
/** PrivateConstructor: SASLOAuthBearer
* SASL OAuth Bearer authentication.
*/
Strophe.SASLOAuthBearer = function() {};
Strophe.SASLOAuthBearer.prototype = new Strophe.SASLMechanism("OAUTHBEARER", true, 80);
Strophe.SASLOAuthBearer.test = function(connection) {
return connection.authcid !== null;
};
Strophe.SASLOAuthBearer.prototype.onChallenge = function(connection) {
var auth_str = 'n,a=';
auth_str = auth_str + connection.authzid;
auth_str = auth_str + ','
auth_str = auth_str + "\u0001";
auth_str = auth_str + 'auth=Bearer ';
auth_str = auth_str + connection.pass;
auth_str = auth_str + "\u0001";
auth_str = auth_str + "\u0001";
return utils.utf16to8(auth_str);
};
Strophe.Connection.prototype.mechanisms[Strophe.SASLOAuthBearer.prototype.name] = Strophe.SASLOAuthBearer;
return {
return {
Strophe: Strophe,
Strophe: Strophe,
$build: $build,
$build: $build,
...
@@ -23521,7 +23546,7 @@ Strophe.Websocket.prototype = {
...
@@ -23521,7 +23546,7 @@ Strophe.Websocket.prototype = {
*/
*/
_onClose: function() {
_onClose: function() {
if(this._conn.connected && !this._conn.disconnecting) {
if(this._conn.connected && !this._conn.disconnecting) {
Strophe.error("Websocket closed unex
c
ectedly");
Strophe.error("Websocket closed unex
p
ectedly");
this._conn._doDisconnect();
this._conn._doDisconnect();
} else {
} else {
Strophe.info("Websocket closed");
Strophe.info("Websocket closed");
...
@@ -28286,6 +28311,9 @@ return Backbone.BrowserStorage;
...
@@ -28286,6 +28311,9 @@ return Backbone.BrowserStorage;
$(event_context).one(evt, handler);
$(event_context).one(evt, handler);
},
},
on: function (evt, handler) {
on: function (evt, handler) {
if (_.contains(['ready', 'initialized'], evt)) {
converse.log('Warning: The "'+evt+'" event has been deprecated and will be removed, please use "connected".');
}
$(event_context).bind(evt, handler);
$(event_context).bind(evt, handler);
},
},
off: function (evt, handler) {
off: function (evt, handler) {
...
@@ -28855,6 +28883,18 @@ return Backbone.BrowserStorage;
...
@@ -28855,6 +28883,18 @@ return Backbone.BrowserStorage;
// know whether these boxes are of the same account or not, so we
// know whether these boxes are of the same account or not, so we
// close them now.
// close them now.
var deferred = new $.Deferred();
var deferred = new $.Deferred();
// XXX: ran into an issue where a returned PubSub BOSH response was
// not received by the browser. The solution was to flush the
// connection early on. I don't know what the underlying cause of
// this issue is, and whether it's a Strophe.js or Prosody bug.
// My suspicion is that Prosody replies to an invalid/expired
// Request, which is why the browser then doesn't receive it.
// In any case, flushing here (sending out a new BOSH request)
// solves the problem.
converse.connection.flush();
/* Called as soon as a new connection has been established, either
* by logging in or by attaching to an existing BOSH session.
*/
this.chatboxviews.closeAllChatBoxes();
this.chatboxviews.closeAllChatBoxes();
this.jid = this.connection.jid;
this.jid = this.connection.jid;
this.bare_jid = Strophe.getBareJidFromJid(this.connection.jid);
this.bare_jid = Strophe.getBareJidFromJid(this.connection.jid);
...
@@ -29638,10 +29678,10 @@ return Backbone.BrowserStorage;
...
@@ -29638,10 +29678,10 @@ return Backbone.BrowserStorage;
},
},
constructPresence: function (type, status_message) {
constructPresence: function (type, status_message) {
if (typeof type
=== 'undefined
') {
if (typeof type
!== 'string
') {
type = this.get('status') || 'online';
type = this.get('status') || 'online';
}
}
if (typeof status_message
=== 'undefined
') {
if (typeof status_message
!== 'string
') {
status_message = this.get('status_message');
status_message = this.get('status_message');
}
}
var presence;
var presence;
...
@@ -30125,6 +30165,9 @@ return Backbone.BrowserStorage;
...
@@ -30125,6 +30165,9 @@ return Backbone.BrowserStorage;
},
},
},
},
'user': {
'user': {
'jid': function () {
return converse.connection.jid;
},
'login': function (credentials) {
'login': function (credentials) {
converse.initConnection();
converse.initConnection();
converse.logIn(credentials);
converse.logIn(credentials);
...
@@ -33484,6 +33527,17 @@ define('text!zh',[],function () { return '{\n "domain": "converse",\n "local
...
@@ -33484,6 +33527,17 @@ define('text!zh',[],function () { return '{\n "domain": "converse",\n "local
});
});
}, 250),
}, 250),
isActive: function () {
/* Returns true if the filter is enabled (i.e. if the user
* has added values to the filter).
*/
if (this.model.get('filter_type') === 'state' ||
this.model.get('filter_text')) {
return true;
}
return false;
},
show: function () {
show: function () {
if (this.$el.is(':visible')) { return this; }
if (this.$el.is(':visible')) { return this; }
this.$el.show();
this.$el.show();
...
@@ -33587,7 +33641,7 @@ define('text!zh',[],function () { return '{\n "domain": "converse",\n "local
...
@@ -33587,7 +33641,7 @@ define('text!zh',[],function () { return '{\n "domain": "converse",\n "local
}
}
if (this.$roster.hasScrollBar()) {
if (this.$roster.hasScrollBar()) {
this.filter_view.show();
this.filter_view.show();
} else {
} else
if (!this.filter_view.isActive())
{
this.filter_view.hide();
this.filter_view.hide();
}
}
return this;
return this;
...
@@ -33612,9 +33666,7 @@ define('text!zh',[],function () { return '{\n "domain": "converse",\n "local
...
@@ -33612,9 +33666,7 @@ define('text!zh',[],function () { return '{\n "domain": "converse",\n "local
* fetching the roster we are ready to receive presence
* fetching the roster we are ready to receive presence
* updates from our contacts.
* updates from our contacts.
*/
*/
converse.roster.fetchFromServer(function () {
converse.roster.fetchFromServer(converse.xmppstatus.sendPresence);
converse.xmppstatus.sendPresence();
});
} else if (converse.send_initial_presence) {
} else if (converse.send_initial_presence) {
/* We're not going to fetch the roster again because we have
/* We're not going to fetch the roster again because we have
* it already cached in sessionStorage, but we still need to
* it already cached in sessionStorage, but we still need to
dist/converse-no-dependencies.js
View file @
8a74cc33
...
@@ -2572,6 +2572,9 @@ define("polyfill", function(){});
...
@@ -2572,6 +2572,9 @@ define("polyfill", function(){});
$
(
event_context
).
one
(
evt
,
handler
);
$
(
event_context
).
one
(
evt
,
handler
);
},
},
on
:
function
(
evt
,
handler
)
{
on
:
function
(
evt
,
handler
)
{
if
(
_
.
contains
([
'
ready
'
,
'
initialized
'
],
evt
))
{
converse
.
log
(
'
Warning: The "
'
+
evt
+
'
" event has been deprecated and will be removed, please use "connected".
'
);
}
$
(
event_context
).
bind
(
evt
,
handler
);
$
(
event_context
).
bind
(
evt
,
handler
);
},
},
off
:
function
(
evt
,
handler
)
{
off
:
function
(
evt
,
handler
)
{
...
@@ -3141,6 +3144,18 @@ define("polyfill", function(){});
...
@@ -3141,6 +3144,18 @@ define("polyfill", function(){});
// know whether these boxes are of the same account or not, so we
// know whether these boxes are of the same account or not, so we
// close them now.
// close them now.
var
deferred
=
new
$
.
Deferred
();
var
deferred
=
new
$
.
Deferred
();
// XXX: ran into an issue where a returned PubSub BOSH response was
// not received by the browser. The solution was to flush the
// connection early on. I don't know what the underlying cause of
// this issue is, and whether it's a Strophe.js or Prosody bug.
// My suspicion is that Prosody replies to an invalid/expired
// Request, which is why the browser then doesn't receive it.
// In any case, flushing here (sending out a new BOSH request)
// solves the problem.
converse
.
connection
.
flush
();
/* Called as soon as a new connection has been established, either
* by logging in or by attaching to an existing BOSH session.
*/
this
.
chatboxviews
.
closeAllChatBoxes
();
this
.
chatboxviews
.
closeAllChatBoxes
();
this
.
jid
=
this
.
connection
.
jid
;
this
.
jid
=
this
.
connection
.
jid
;
this
.
bare_jid
=
Strophe
.
getBareJidFromJid
(
this
.
connection
.
jid
);
this
.
bare_jid
=
Strophe
.
getBareJidFromJid
(
this
.
connection
.
jid
);
...
@@ -3924,10 +3939,10 @@ define("polyfill", function(){});
...
@@ -3924,10 +3939,10 @@ define("polyfill", function(){});
},
},
constructPresence
:
function
(
type
,
status_message
)
{
constructPresence
:
function
(
type
,
status_message
)
{
if
(
typeof
type
===
'
undefined
'
)
{
if
(
typeof
type
!==
'
string
'
)
{
type
=
this
.
get
(
'
status
'
)
||
'
online
'
;
type
=
this
.
get
(
'
status
'
)
||
'
online
'
;
}
}
if
(
typeof
status_message
===
'
undefined
'
)
{
if
(
typeof
status_message
!==
'
string
'
)
{
status_message
=
this
.
get
(
'
status_message
'
);
status_message
=
this
.
get
(
'
status_message
'
);
}
}
var
presence
;
var
presence
;
...
@@ -4411,6 +4426,9 @@ define("polyfill", function(){});
...
@@ -4411,6 +4426,9 @@ define("polyfill", function(){});
},
},
},
},
'
user
'
:
{
'
user
'
:
{
'
jid
'
:
function
()
{
return
converse
.
connection
.
jid
;
},
'
login
'
:
function
(
credentials
)
{
'
login
'
:
function
(
credentials
)
{
converse
.
initConnection
();
converse
.
initConnection
();
converse
.
logIn
(
credentials
);
converse
.
logIn
(
credentials
);
...
@@ -6470,6 +6488,17 @@ define('text!ca',[],function () { return '{\n "domain": "converse",\n "local
...
@@ -6470,6 +6488,17 @@ define('text!ca',[],function () { return '{\n "domain": "converse",\n "local
});
});
},
250
),
},
250
),
isActive
:
function
()
{
/* Returns true if the filter is enabled (i.e. if the user
* has added values to the filter).
*/
if
(
this
.
model
.
get
(
'
filter_type
'
)
===
'
state
'
||
this
.
model
.
get
(
'
filter_text
'
))
{
return
true
;
}
return
false
;
},
show
:
function
()
{
show
:
function
()
{
if
(
this
.
$el
.
is
(
'
:visible
'
))
{
return
this
;
}
if
(
this
.
$el
.
is
(
'
:visible
'
))
{
return
this
;
}
this
.
$el
.
show
();
this
.
$el
.
show
();
...
@@ -6573,7 +6602,7 @@ define('text!ca',[],function () { return '{\n "domain": "converse",\n "local
...
@@ -6573,7 +6602,7 @@ define('text!ca',[],function () { return '{\n "domain": "converse",\n "local
}
}
if
(
this
.
$roster
.
hasScrollBar
())
{
if
(
this
.
$roster
.
hasScrollBar
())
{
this
.
filter_view
.
show
();
this
.
filter_view
.
show
();
}
else
{
}
else
if
(
!
this
.
filter_view
.
isActive
())
{
this
.
filter_view
.
hide
();
this
.
filter_view
.
hide
();
}
}
return
this
;
return
this
;
...
@@ -6598,9 +6627,7 @@ define('text!ca',[],function () { return '{\n "domain": "converse",\n "local
...
@@ -6598,9 +6627,7 @@ define('text!ca',[],function () { return '{\n "domain": "converse",\n "local
* fetching the roster we are ready to receive presence
* fetching the roster we are ready to receive presence
* updates from our contacts.
* updates from our contacts.
*/
*/
converse
.
roster
.
fetchFromServer
(
function
()
{
converse
.
roster
.
fetchFromServer
(
converse
.
xmppstatus
.
sendPresence
);
converse
.
xmppstatus
.
sendPresence
();
});
}
else
if
(
converse
.
send_initial_presence
)
{
}
else
if
(
converse
.
send_initial_presence
)
{
/* We're not going to fetch the roster again because we have
/* We're not going to fetch the roster again because we have
* it already cached in sessionStorage, but we still need to
* it already cached in sessionStorage, but we still need to
...
@@ -11798,7 +11825,7 @@ define('text!ca',[],function () { return '{\n "domain": "converse",\n "local
...
@@ -11798,7 +11825,7 @@ define('text!ca',[],function () { return '{\n "domain": "converse",\n "local
},
},
ChatBox
:
{
ChatBox
:
{
initializ
h
e
:
function
()
{
initialize
:
function
()
{
var
result
=
this
.
_super
.
initialize
.
apply
(
this
,
arguments
),
var
result
=
this
.
_super
.
initialize
.
apply
(
this
,
arguments
),
height
=
this
.
get
(
'
height
'
),
width
=
this
.
get
(
'
width
'
),
height
=
this
.
get
(
'
height
'
),
width
=
this
.
get
(
'
width
'
),
save
=
this
.
get
(
'
id
'
)
===
'
controlbox
'
?
this
.
set
.
bind
(
this
)
:
this
.
save
.
bind
(
this
);
save
=
this
.
get
(
'
id
'
)
===
'
controlbox
'
?
this
.
set
.
bind
(
this
)
:
this
.
save
.
bind
(
this
);
...
...
dist/converse.js
View file @
8a74cc33
...
@@ -20173,19 +20173,17 @@ Strophe.Handler.prototype = {
...
@@ -20173,19 +20173,17 @@ Strophe.Handler.prototype = {
result = this.handler(elem);
result = this.handler(elem);
} catch (e) {
} catch (e) {
if (e.sourceURL) {
if (e.sourceURL) {
Strophe.fatal(
Strophe.fatal("error: " + this.handler +
"error: " + this.handler +
" " + e.sourceURL + ":" +
" " + e.sourceURL + ":" + e.line +
e.line + " - " + e.name + ": " + e.message);
" - " + e.name + ": " + e.message + "\n" + e.stack);
} else if (e.fileName) {
} else if (e.fileName) {
if (typeof(console) != "undefined") {
if (typeof(console) != "undefined") {
console.trace();
console.trace();
console.error(this.handler, " - error - ", e,
console.error(this.handler, " - error - ", e, e.message);
e.message + "\n" + e.stack);
}
}
Strophe.fatal("error: " + this.handler + " " +
Strophe.fatal("error: " + this.handler + " " +
e.fileName + ":" + e.lineNumber + " - " +
e.fileName + ":" + e.lineNumber + " - " +
e.name + ": " + e.message
+ "\n" + e.stack
);
e.name + ": " + e.message);
} else {
} else {
Strophe.fatal("error: " + e.message + "\n" + e.stack);
Strophe.fatal("error: " + e.message + "\n" + e.stack);
}
}
...
@@ -21140,7 +21138,7 @@ Strophe.Connection.prototype = {
...
@@ -21140,7 +21138,7 @@ Strophe.Connection.prototype = {
plugin.statusChanged(status, condition);
plugin.statusChanged(status, condition);
} catch (err) {
} catch (err) {
Strophe.error("" + k + " plugin caused an exception " +
Strophe.error("" + k + " plugin caused an exception " +
"changing status: " + err
.stack
);
"changing status: " + err);
}
}
}
}
}
}
...
@@ -21152,7 +21150,7 @@ Strophe.Connection.prototype = {
...
@@ -21152,7 +21150,7 @@ Strophe.Connection.prototype = {
this.connect_callback(status, condition);
this.connect_callback(status, condition);
} catch (e) {
} catch (e) {
Strophe.error("User connection callback caused an " +
Strophe.error("User connection callback caused an " +
"exception: " + e
.stack
);
"exception: " + e);
}
}
}
}
},
},
...
@@ -22023,6 +22021,7 @@ Strophe.SASLMechanism.prototype = {
...
@@ -22023,6 +22021,7 @@ Strophe.SASLMechanism.prototype = {
* Strophe.SASLPlain - SASL Plain authentication.
* Strophe.SASLPlain - SASL Plain authentication.
* Strophe.SASLMD5 - SASL Digest-MD5 authentication
* Strophe.SASLMD5 - SASL Digest-MD5 authentication
* Strophe.SASLSHA1 - SASL SCRAM-SHA1 authentication
* Strophe.SASLSHA1 - SASL SCRAM-SHA1 authentication
* Strophe.SASLOAuthBearer - SASL OAuth Bearer authentication
*/
*/
// Building SASL callbacks
// Building SASL callbacks
...
@@ -22237,6 +22236,32 @@ Strophe.SASLMD5.prototype.onChallenge = function(connection, challenge, test_cno
...
@@ -22237,6 +22236,32 @@ Strophe.SASLMD5.prototype.onChallenge = function(connection, challenge, test_cno
Strophe.Connection.prototype.mechanisms[Strophe.SASLMD5.prototype.name] = Strophe.SASLMD5;
Strophe.Connection.prototype.mechanisms[Strophe.SASLMD5.prototype.name] = Strophe.SASLMD5;
/** PrivateConstructor: SASLOAuthBearer
* SASL OAuth Bearer authentication.
*/
Strophe.SASLOAuthBearer = function() {};
Strophe.SASLOAuthBearer.prototype = new Strophe.SASLMechanism("OAUTHBEARER", true, 80);
Strophe.SASLOAuthBearer.test = function(connection) {
return connection.authcid !== null;
};
Strophe.SASLOAuthBearer.prototype.onChallenge = function(connection) {
var auth_str = 'n,a=';
auth_str = auth_str + connection.authzid;
auth_str = auth_str + ','
auth_str = auth_str + "\u0001";
auth_str = auth_str + 'auth=Bearer ';
auth_str = auth_str + connection.pass;
auth_str = auth_str + "\u0001";
auth_str = auth_str + "\u0001";
return utils.utf16to8(auth_str);
};
Strophe.Connection.prototype.mechanisms[Strophe.SASLOAuthBearer.prototype.name] = Strophe.SASLOAuthBearer;
return {
return {
Strophe: Strophe,
Strophe: Strophe,
$build: $build,
$build: $build,
...
@@ -23521,7 +23546,7 @@ Strophe.Websocket.prototype = {
...
@@ -23521,7 +23546,7 @@ Strophe.Websocket.prototype = {
*/
*/
_onClose: function() {
_onClose: function() {
if(this._conn.connected && !this._conn.disconnecting) {
if(this._conn.connected && !this._conn.disconnecting) {
Strophe.error("Websocket closed unex
c
ectedly");
Strophe.error("Websocket closed unex
p
ectedly");
this._conn._doDisconnect();
this._conn._doDisconnect();
} else {
} else {
Strophe.info("Websocket closed");
Strophe.info("Websocket closed");
...
@@ -28286,6 +28311,9 @@ return Backbone.BrowserStorage;
...
@@ -28286,6 +28311,9 @@ return Backbone.BrowserStorage;
$(event_context).one(evt, handler);
$(event_context).one(evt, handler);
},
},
on: function (evt, handler) {
on: function (evt, handler) {
if (_.contains(['ready', 'initialized'], evt)) {
converse.log('Warning: The "'+evt+'" event has been deprecated and will be removed, please use "connected".');
}
$(event_context).bind(evt, handler);
$(event_context).bind(evt, handler);
},
},
off: function (evt, handler) {
off: function (evt, handler) {
...
@@ -28855,6 +28883,18 @@ return Backbone.BrowserStorage;
...
@@ -28855,6 +28883,18 @@ return Backbone.BrowserStorage;
// know whether these boxes are of the same account or not, so we
// know whether these boxes are of the same account or not, so we
// close them now.
// close them now.
var deferred = new $.Deferred();
var deferred = new $.Deferred();
// XXX: ran into an issue where a returned PubSub BOSH response was
// not received by the browser. The solution was to flush the
// connection early on. I don't know what the underlying cause of
// this issue is, and whether it's a Strophe.js or Prosody bug.
// My suspicion is that Prosody replies to an invalid/expired
// Request, which is why the browser then doesn't receive it.
// In any case, flushing here (sending out a new BOSH request)
// solves the problem.
converse.connection.flush();
/* Called as soon as a new connection has been established, either
* by logging in or by attaching to an existing BOSH session.
*/
this.chatboxviews.closeAllChatBoxes();
this.chatboxviews.closeAllChatBoxes();
this.jid = this.connection.jid;
this.jid = this.connection.jid;
this.bare_jid = Strophe.getBareJidFromJid(this.connection.jid);
this.bare_jid = Strophe.getBareJidFromJid(this.connection.jid);
...
@@ -29638,10 +29678,10 @@ return Backbone.BrowserStorage;
...
@@ -29638,10 +29678,10 @@ return Backbone.BrowserStorage;
},
},
constructPresence: function (type, status_message) {
constructPresence: function (type, status_message) {
if (typeof type
=== 'undefined
') {
if (typeof type
!== 'string
') {
type = this.get('status') || 'online';
type = this.get('status') || 'online';
}
}
if (typeof status_message
=== 'undefined
') {
if (typeof status_message
!== 'string
') {
status_message = this.get('status_message');
status_message = this.get('status_message');
}
}
var presence;
var presence;
...
@@ -30125,6 +30165,9 @@ return Backbone.BrowserStorage;
...
@@ -30125,6 +30165,9 @@ return Backbone.BrowserStorage;
},
},
},
},
'user': {
'user': {
'jid': function () {
return converse.connection.jid;
},
'login': function (credentials) {
'login': function (credentials) {
converse.initConnection();
converse.initConnection();
converse.logIn(credentials);
converse.logIn(credentials);
...
@@ -33484,6 +33527,17 @@ define('text!zh',[],function () { return '{\n "domain": "converse",\n "local
...
@@ -33484,6 +33527,17 @@ define('text!zh',[],function () { return '{\n "domain": "converse",\n "local
});
});
}, 250),
}, 250),
isActive: function () {
/* Returns true if the filter is enabled (i.e. if the user
* has added values to the filter).
*/
if (this.model.get('filter_type') === 'state' ||
this.model.get('filter_text')) {
return true;
}
return false;
},
show: function () {
show: function () {
if (this.$el.is(':visible')) { return this; }
if (this.$el.is(':visible')) { return this; }
this.$el.show();
this.$el.show();
...
@@ -33587,7 +33641,7 @@ define('text!zh',[],function () { return '{\n "domain": "converse",\n "local
...
@@ -33587,7 +33641,7 @@ define('text!zh',[],function () { return '{\n "domain": "converse",\n "local
}
}
if (this.$roster.hasScrollBar()) {
if (this.$roster.hasScrollBar()) {
this.filter_view.show();
this.filter_view.show();
} else {
} else
if (!this.filter_view.isActive())
{
this.filter_view.hide();
this.filter_view.hide();
}
}
return this;
return this;
...
@@ -33612,9 +33666,7 @@ define('text!zh',[],function () { return '{\n "domain": "converse",\n "local
...
@@ -33612,9 +33666,7 @@ define('text!zh',[],function () { return '{\n "domain": "converse",\n "local
* fetching the roster we are ready to receive presence
* fetching the roster we are ready to receive presence
* updates from our contacts.
* updates from our contacts.
*/
*/
converse.roster.fetchFromServer(function () {
converse.roster.fetchFromServer(converse.xmppstatus.sendPresence);
converse.xmppstatus.sendPresence();
});
} else if (converse.send_initial_presence) {
} else if (converse.send_initial_presence) {
/* We're not going to fetch the roster again because we have
/* We're not going to fetch the roster again because we have
* it already cached in sessionStorage, but we still need to
* it already cached in sessionStorage, but we still need to
...
@@ -46662,7 +46714,7 @@ Strophe.addConnectionPlugin('ping', {
...
@@ -46662,7 +46714,7 @@ Strophe.addConnectionPlugin('ping', {
},
},
ChatBox: {
ChatBox: {
initializ
h
e: function () {
initialize: function () {
var result = this._super.initialize.apply(this, arguments),
var result = this._super.initialize.apply(this, arguments),
height = this.get('height'), width = this.get('width'),
height = this.get('height'), width = this.get('width'),
save = this.get('id') === 'controlbox' ? this.set.bind(this) : this.save.bind(this);
save = this.get('id') === 'controlbox' ? this.set.bind(this) : this.save.bind(this);
docs/CHANGES.md
View file @
8a74cc33
# Changelog
# Changelog
## 1.0.1 (
Unreleased
)
## 1.0.1 (
2016-05-24
)
-
Bugfix. Roster filter sometimes gets hidden when it shouldn't.
-
Bugfix. Roster filter sometimes gets hidden when it shouldn't.
-
Chat boxes weren't being initialized due to typo.
-
Chat boxes weren't being initialized due to typo.
...
...
docs/source/conf.py
View file @
8a74cc33
...
@@ -48,9 +48,9 @@ copyright = u'2014, JC Brand'
...
@@ -48,9 +48,9 @@ copyright = u'2014, JC Brand'
# built documents.
# built documents.
#
#
# The short X.Y version.
# The short X.Y version.
version
=
'1.0.
0
'
version
=
'1.0.
1
'
# The full version, including alpha/beta/rc tags.
# The full version, including alpha/beta/rc tags.
release
=
'1.0.
0
'
release
=
'1.0.
1
'
# The language for content autogenerated by Sphinx. Refer to documentation
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
# for a list of supported languages.
...
...
locale/af/LC_MESSAGES/converse.po
View file @
8a74cc33
...
@@ -7,7 +7,7 @@ msgid ""
...
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
msgstr ""
"Project-Id-Version: Converse.js 0.4\n"
"Project-Id-Version: Converse.js 0.4\n"
"Report-Msgid-Bugs-To: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-05-
03 15:34
+0000\n"
"POT-Creation-Date: 2016-05-
24 08:15
+0000\n"
"PO-Revision-Date: 2016-04-07 10:34+0000\n"
"PO-Revision-Date: 2016-04-07 10:34+0000\n"
"Last-Translator: JC Brand <jc@opkode.com>\n"
"Last-Translator: JC Brand <jc@opkode.com>\n"
"Language-Team: Afrikaans\n"
"Language-Team: Afrikaans\n"
...
@@ -85,12 +85,12 @@ msgstr "Voeg 'n emotikon by"
...
@@ -85,12 +85,12 @@ msgstr "Voeg 'n emotikon by"
msgid "Start a call"
msgid "Start a call"
msgstr "Begin 'n oproep"
msgstr "Begin 'n oproep"
#: src/converse-controlbox.js:177 src/converse-core.js:57
0
#: src/converse-controlbox.js:177 src/converse-core.js:57
3
#: src/converse-core.js:61
6
src/converse-rosterview.js:58
#: src/converse-core.js:61
9
src/converse-rosterview.js:58
msgid "Contacts"
msgid "Contacts"
msgstr "Kontakte"
msgstr "Kontakte"
#: src/converse-controlbox.js:265 src/converse-core.js:47
4
#: src/converse-controlbox.js:265 src/converse-core.js:47
7
msgid "Connecting"
msgid "Connecting"
msgstr "Verbind tans"
msgstr "Verbind tans"
...
@@ -225,27 +225,27 @@ msgstr "Klik om as kletskontak by te voeg"
...
@@ -225,27 +225,27 @@ msgstr "Klik om as kletskontak by te voeg"
msgid "Toggle chat"
msgid "Toggle chat"
msgstr "Klets"
msgstr "Klets"
#: src/converse-core.js:43
1
#: src/converse-core.js:43
4
msgid "Attempting to reconnect"
msgid "Attempting to reconnect"
msgstr ""
msgstr ""
#: src/converse-core.js:47
2
#: src/converse-core.js:47
5
msgid "Error"
msgid "Error"
msgstr "Fout"
msgstr "Fout"
#: src/converse-core.js:47
6
#: src/converse-core.js:47
9
msgid "Authenticating"
msgid "Authenticating"
msgstr "Besig om te bekragtig"
msgstr "Besig om te bekragtig"
#: src/converse-core.js:4
78 src/converse-core.js:479
#: src/converse-core.js:4
81 src/converse-core.js:482
msgid "Authentication Failed"
msgid "Authentication Failed"
msgstr "Bekragtiging het gefaal"
msgstr "Bekragtiging het gefaal"
#: src/converse-core.js:8
74
#: src/converse-core.js:8
89
msgid "Sorry, there was an error while trying to add "
msgid "Sorry, there was an error while trying to add "
msgstr ""
msgstr ""
#: src/converse-core.js:10
45
#: src/converse-core.js:10
60
msgid "This client does not allow presence subscriptions"
msgid "This client does not allow presence subscriptions"
msgstr "Hierdie klient laat nie beskikbaarheidsinskrywings toe nie"
msgstr "Hierdie klient laat nie beskikbaarheidsinskrywings toe nie"
...
@@ -983,35 +983,35 @@ msgstr "Geselserig"
...
@@ -983,35 +983,35 @@ msgstr "Geselserig"
msgid "Extended Away"
msgid "Extended Away"
msgstr "Weg vir langer"
msgstr "Weg vir langer"
#: src/converse-rosterview.js:5
66 src/converse-rosterview.js:587
#: src/converse-rosterview.js:5
75 src/converse-rosterview.js:596
msgid "Click to remove this contact"
msgid "Click to remove this contact"
msgstr "Klik om hierdie kontak te verwyder"
msgstr "Klik om hierdie kontak te verwyder"
#: src/converse-rosterview.js:5
74
#: src/converse-rosterview.js:5
83
msgid "Click to accept this contact request"
msgid "Click to accept this contact request"
msgstr "Klik om hierdie kontakversoek te aanvaar"
msgstr "Klik om hierdie kontakversoek te aanvaar"
#: src/converse-rosterview.js:5
75
#: src/converse-rosterview.js:5
84
msgid "Click to decline this contact request"
msgid "Click to decline this contact request"
msgstr "Klik om hierdie kontakversoek te weier"
msgstr "Klik om hierdie kontakversoek te weier"
#: src/converse-rosterview.js:5
86
#: src/converse-rosterview.js:5
95
msgid "Click to chat with this contact"
msgid "Click to chat with this contact"
msgstr "Klik om met hierdie kontak te klets"
msgstr "Klik om met hierdie kontak te klets"
#: src/converse-rosterview.js:5
88
#: src/converse-rosterview.js:5
97
msgid "Name"
msgid "Name"
msgstr "Naam"
msgstr "Naam"
#: src/converse-rosterview.js:6
43
#: src/converse-rosterview.js:6
52
msgid "Are you sure you want to remove this contact?"
msgid "Are you sure you want to remove this contact?"
msgstr "Is u seker u wil hierdie gespreksmaat verwyder?"
msgstr "Is u seker u wil hierdie gespreksmaat verwyder?"
#: src/converse-rosterview.js:6
54
#: src/converse-rosterview.js:6
63
msgid "Sorry, there was an error while trying to remove "
msgid "Sorry, there was an error while trying to remove "
msgstr "Jammer, 'n fout het voorgekom tydens die verwydering van "
msgstr "Jammer, 'n fout het voorgekom tydens die verwydering van "
#: src/converse-rosterview.js:6
73
#: src/converse-rosterview.js:6
82
msgid "Are you sure you want to decline this contact request?"
msgid "Are you sure you want to decline this contact request?"
msgstr "Is u seker dat u hierdie persoon se versoek wil afkeur?"
msgstr "Is u seker dat u hierdie persoon se versoek wil afkeur?"
...
...
locale/ca/LC_MESSAGES/converse.po
View file @
8a74cc33
...
@@ -6,7 +6,7 @@ msgid ""
...
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
msgstr ""
"Project-Id-Version: Converse.js 0.4\n"
"Project-Id-Version: Converse.js 0.4\n"
"Report-Msgid-Bugs-To: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-05-
03 15:34
+0000\n"
"POT-Creation-Date: 2016-05-
24 08:15
+0000\n"
"PO-Revision-Date: 2016-01-25 17:25+0100\n"
"PO-Revision-Date: 2016-01-25 17:25+0100\n"
"Last-Translator: Ruben Mansilla <ramansilla@gmail.com>\n"
"Last-Translator: Ruben Mansilla <ramansilla@gmail.com>\n"
"Language-Team: CA <product@spamina.com>\n"
"Language-Team: CA <product@spamina.com>\n"
...
@@ -91,12 +91,12 @@ msgstr "Insereix una cara somrient"
...
@@ -91,12 +91,12 @@ msgstr "Insereix una cara somrient"
msgid "Start a call"
msgid "Start a call"
msgstr "Inicia una trucada"
msgstr "Inicia una trucada"
#: src/converse-controlbox.js:177 src/converse-core.js:57
0
#: src/converse-controlbox.js:177 src/converse-core.js:57
3
#: src/converse-core.js:61
6
src/converse-rosterview.js:58
#: src/converse-core.js:61
9
src/converse-rosterview.js:58
msgid "Contacts"
msgid "Contacts"
msgstr "Contactes"
msgstr "Contactes"
#: src/converse-controlbox.js:265 src/converse-core.js:47
4
#: src/converse-controlbox.js:265 src/converse-core.js:47
7
msgid "Connecting"
msgid "Connecting"
msgstr "S'està establint la connexió"
msgstr "S'està establint la connexió"
...
@@ -232,28 +232,28 @@ msgstr "Feu clic per afegir com a contacte del xat"
...
@@ -232,28 +232,28 @@ msgstr "Feu clic per afegir com a contacte del xat"
msgid "Toggle chat"
msgid "Toggle chat"
msgstr "Canvia de xat"
msgstr "Canvia de xat"
#: src/converse-core.js:43
1
#: src/converse-core.js:43
4
#, fuzzy
#, fuzzy
msgid "Attempting to reconnect"
msgid "Attempting to reconnect"
msgstr "S'intentarà tornar a establir la connexió en 5 segons"
msgstr "S'intentarà tornar a establir la connexió en 5 segons"
#: src/converse-core.js:47
2
#: src/converse-core.js:47
5
msgid "Error"
msgid "Error"
msgstr "Error"
msgstr "Error"
#: src/converse-core.js:47
6
#: src/converse-core.js:47
9
msgid "Authenticating"
msgid "Authenticating"
msgstr "S'està efectuant l'autenticació"
msgstr "S'està efectuant l'autenticació"
#: src/converse-core.js:4
78 src/converse-core.js:479
#: src/converse-core.js:4
81 src/converse-core.js:482
msgid "Authentication Failed"
msgid "Authentication Failed"
msgstr "Error d'autenticació"
msgstr "Error d'autenticació"
#: src/converse-core.js:8
74
#: src/converse-core.js:8
89
msgid "Sorry, there was an error while trying to add "
msgid "Sorry, there was an error while trying to add "
msgstr "S'ha produït un error en intentar afegir "
msgstr "S'ha produït un error en intentar afegir "
#: src/converse-core.js:10
45
#: src/converse-core.js:10
60
msgid "This client does not allow presence subscriptions"
msgid "This client does not allow presence subscriptions"
msgstr "Aquest client no admet les subscripcions de presència"
msgstr "Aquest client no admet les subscripcions de presència"
...
@@ -995,35 +995,35 @@ msgstr ""
...
@@ -995,35 +995,35 @@ msgstr ""
msgid "Extended Away"
msgid "Extended Away"
msgstr ""
msgstr ""
#: src/converse-rosterview.js:5
66 src/converse-rosterview.js:587
#: src/converse-rosterview.js:5
75 src/converse-rosterview.js:596
msgid "Click to remove this contact"
msgid "Click to remove this contact"
msgstr "Feu clic per eliminar aquest contacte"
msgstr "Feu clic per eliminar aquest contacte"
#: src/converse-rosterview.js:5
74
#: src/converse-rosterview.js:5
83
msgid "Click to accept this contact request"
msgid "Click to accept this contact request"
msgstr "Feu clic per acceptar aquesta sol·licitud de contacte"
msgstr "Feu clic per acceptar aquesta sol·licitud de contacte"
#: src/converse-rosterview.js:5
75
#: src/converse-rosterview.js:5
84
msgid "Click to decline this contact request"
msgid "Click to decline this contact request"
msgstr "Feu clic per rebutjar aquesta sol·licitud de contacte"
msgstr "Feu clic per rebutjar aquesta sol·licitud de contacte"
#: src/converse-rosterview.js:5
86
#: src/converse-rosterview.js:5
95
msgid "Click to chat with this contact"
msgid "Click to chat with this contact"
msgstr "Feu clic per conversar amb aquest contacte"
msgstr "Feu clic per conversar amb aquest contacte"
#: src/converse-rosterview.js:5
88
#: src/converse-rosterview.js:5
97
msgid "Name"
msgid "Name"
msgstr "Nom"
msgstr "Nom"
#: src/converse-rosterview.js:6
43
#: src/converse-rosterview.js:6
52
msgid "Are you sure you want to remove this contact?"
msgid "Are you sure you want to remove this contact?"
msgstr "Segur que voleu eliminar aquest contacte?"
msgstr "Segur que voleu eliminar aquest contacte?"
#: src/converse-rosterview.js:6
54
#: src/converse-rosterview.js:6
63
msgid "Sorry, there was an error while trying to remove "
msgid "Sorry, there was an error while trying to remove "
msgstr "S'ha produït un error en intentar eliminar "
msgstr "S'ha produït un error en intentar eliminar "
#: src/converse-rosterview.js:6
73
#: src/converse-rosterview.js:6
82
msgid "Are you sure you want to decline this contact request?"
msgid "Are you sure you want to decline this contact request?"
msgstr "Segur que voleu rebutjar aquesta sol·licitud de contacte?"
msgstr "Segur que voleu rebutjar aquesta sol·licitud de contacte?"
...
...
locale/converse.pot
View file @
8a74cc33
...
@@ -8,7 +8,7 @@ msgid ""
...
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
msgstr ""
"Project-Id-Version: Converse.js 0.10.1\n"
"Project-Id-Version: Converse.js 0.10.1\n"
"Report-Msgid-Bugs-To: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-05-
03 15:34
+0000\n"
"POT-Creation-Date: 2016-05-
24 08:16
+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
...
@@ -82,12 +82,12 @@ msgstr ""
...
@@ -82,12 +82,12 @@ msgstr ""
msgid "Start a call"
msgid "Start a call"
msgstr ""
msgstr ""
#: src/converse-controlbox.js:177 src/converse-core.js:57
0
#: src/converse-controlbox.js:177 src/converse-core.js:57
3
#: src/converse-core.js:61
6
src/converse-rosterview.js:58
#: src/converse-core.js:61
9
src/converse-rosterview.js:58
msgid "Contacts"
msgid "Contacts"
msgstr ""
msgstr ""
#: src/converse-controlbox.js:265 src/converse-core.js:47
4
#: src/converse-controlbox.js:265 src/converse-core.js:47
7
msgid "Connecting"
msgid "Connecting"
msgstr ""
msgstr ""
...
@@ -221,27 +221,27 @@ msgstr ""
...
@@ -221,27 +221,27 @@ msgstr ""
msgid "Toggle chat"
msgid "Toggle chat"
msgstr ""
msgstr ""
#: src/converse-core.js:43
1
#: src/converse-core.js:43
4
msgid "Attempting to reconnect"
msgid "Attempting to reconnect"
msgstr ""
msgstr ""
#: src/converse-core.js:47
2
#: src/converse-core.js:47
5
msgid "Error"
msgid "Error"
msgstr ""
msgstr ""
#: src/converse-core.js:47
6
#: src/converse-core.js:47
9
msgid "Authenticating"
msgid "Authenticating"
msgstr ""
msgstr ""
#: src/converse-core.js:4
78 src/converse-core.js:479
#: src/converse-core.js:4
81 src/converse-core.js:482
msgid "Authentication Failed"
msgid "Authentication Failed"
msgstr ""
msgstr ""
#: src/converse-core.js:8
74
#: src/converse-core.js:8
89
msgid "Sorry, there was an error while trying to add "
msgid "Sorry, there was an error while trying to add "
msgstr ""
msgstr ""
#: src/converse-core.js:10
45
#: src/converse-core.js:10
60
msgid "This client does not allow presence subscriptions"
msgid "This client does not allow presence subscriptions"
msgstr ""
msgstr ""
...
@@ -938,34 +938,34 @@ msgstr ""
...
@@ -938,34 +938,34 @@ msgstr ""
msgid "Extended Away"
msgid "Extended Away"
msgstr ""
msgstr ""
#: src/converse-rosterview.js:5
66 src/converse-rosterview.js:587
#: src/converse-rosterview.js:5
75 src/converse-rosterview.js:596
msgid "Click to remove this contact"
msgid "Click to remove this contact"
msgstr ""
msgstr ""
#: src/converse-rosterview.js:5
74
#: src/converse-rosterview.js:5
83
msgid "Click to accept this contact request"
msgid "Click to accept this contact request"
msgstr ""
msgstr ""
#: src/converse-rosterview.js:5
75
#: src/converse-rosterview.js:5
84
msgid "Click to decline this contact request"
msgid "Click to decline this contact request"
msgstr ""
msgstr ""
#: src/converse-rosterview.js:5
86
#: src/converse-rosterview.js:5
95
msgid "Click to chat with this contact"
msgid "Click to chat with this contact"
msgstr ""
msgstr ""
#: src/converse-rosterview.js:5
88
#: src/converse-rosterview.js:5
97
msgid "Name"
msgid "Name"
msgstr ""
msgstr ""
#: src/converse-rosterview.js:6
43
#: src/converse-rosterview.js:6
52
msgid "Are you sure you want to remove this contact?"
msgid "Are you sure you want to remove this contact?"
msgstr ""
msgstr ""
#: src/converse-rosterview.js:6
54
#: src/converse-rosterview.js:6
63
msgid "Sorry, there was an error while trying to remove "
msgid "Sorry, there was an error while trying to remove "
msgstr ""
msgstr ""
#: src/converse-rosterview.js:6
73
#: src/converse-rosterview.js:6
82
msgid "Are you sure you want to decline this contact request?"
msgid "Are you sure you want to decline this contact request?"
msgstr ""
msgstr ""
locale/de/LC_MESSAGES/converse.po
View file @
8a74cc33
...
@@ -7,7 +7,7 @@ msgid ""
...
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
msgstr ""
"Project-Id-Version: Converse.js 0.4\n"
"Project-Id-Version: Converse.js 0.4\n"
"Report-Msgid-Bugs-To: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-05-
03 15:34
+0000\n"
"POT-Creation-Date: 2016-05-
24 08:15
+0000\n"
"PO-Revision-Date: 2016-04-07 10:20+0000\n"
"PO-Revision-Date: 2016-04-07 10:20+0000\n"
"Last-Translator: JC Brand <jc@opkode.com>\n"
"Last-Translator: JC Brand <jc@opkode.com>\n"
"Language-Team: German\n"
"Language-Team: German\n"
...
@@ -89,12 +89,12 @@ msgstr ""
...
@@ -89,12 +89,12 @@ msgstr ""
msgid "Start a call"
msgid "Start a call"
msgstr ""
msgstr ""
#: src/converse-controlbox.js:177 src/converse-core.js:57
0
#: src/converse-controlbox.js:177 src/converse-core.js:57
3
#: src/converse-core.js:61
6
src/converse-rosterview.js:58
#: src/converse-core.js:61
9
src/converse-rosterview.js:58
msgid "Contacts"
msgid "Contacts"
msgstr "Kontakte"
msgstr "Kontakte"
#: src/converse-controlbox.js:265 src/converse-core.js:47
4
#: src/converse-controlbox.js:265 src/converse-core.js:47
7
msgid "Connecting"
msgid "Connecting"
msgstr "Verbindungsaufbau …"
msgstr "Verbindungsaufbau …"
...
@@ -231,27 +231,27 @@ msgstr "Hier klicken um als Kontakt hinzuzufügen"
...
@@ -231,27 +231,27 @@ msgstr "Hier klicken um als Kontakt hinzuzufügen"
msgid "Toggle chat"
msgid "Toggle chat"
msgstr "Chat ein-/ausblenden"
msgstr "Chat ein-/ausblenden"
#: src/converse-core.js:43
1
#: src/converse-core.js:43
4
msgid "Attempting to reconnect"
msgid "Attempting to reconnect"
msgstr ""
msgstr ""
#: src/converse-core.js:47
2
#: src/converse-core.js:47
5
msgid "Error"
msgid "Error"
msgstr "Fehler"
msgstr "Fehler"
#: src/converse-core.js:47
6
#: src/converse-core.js:47
9
msgid "Authenticating"
msgid "Authenticating"
msgstr "Authentifizierung"
msgstr "Authentifizierung"
#: src/converse-core.js:4
78 src/converse-core.js:479
#: src/converse-core.js:4
81 src/converse-core.js:482
msgid "Authentication Failed"
msgid "Authentication Failed"
msgstr "Authentifizierung gescheitert"
msgstr "Authentifizierung gescheitert"
#: src/converse-core.js:8
74
#: src/converse-core.js:8
89
msgid "Sorry, there was an error while trying to add "
msgid "Sorry, there was an error while trying to add "
msgstr ""
msgstr ""
#: src/converse-core.js:10
45
#: src/converse-core.js:10
60
msgid "This client does not allow presence subscriptions"
msgid "This client does not allow presence subscriptions"
msgstr ""
msgstr ""
...
@@ -962,35 +962,35 @@ msgstr ""
...
@@ -962,35 +962,35 @@ msgstr ""
msgid "Extended Away"
msgid "Extended Away"
msgstr ""
msgstr ""
#: src/converse-rosterview.js:5
66 src/converse-rosterview.js:587
#: src/converse-rosterview.js:5
75 src/converse-rosterview.js:596
msgid "Click to remove this contact"
msgid "Click to remove this contact"
msgstr "Hier klicken um diesen Kontakt zu entfernen"
msgstr "Hier klicken um diesen Kontakt zu entfernen"
#: src/converse-rosterview.js:5
74
#: src/converse-rosterview.js:5
83
msgid "Click to accept this contact request"
msgid "Click to accept this contact request"
msgstr "Hier klicken um diese Kontaktanfrage zu akzeptieren"
msgstr "Hier klicken um diese Kontaktanfrage zu akzeptieren"
#: src/converse-rosterview.js:5
75
#: src/converse-rosterview.js:5
84
msgid "Click to decline this contact request"
msgid "Click to decline this contact request"
msgstr "Hier klicken um diese Kontaktanfrage zu abzulehnen"
msgstr "Hier klicken um diese Kontaktanfrage zu abzulehnen"
#: src/converse-rosterview.js:5
86
#: src/converse-rosterview.js:5
95
msgid "Click to chat with this contact"
msgid "Click to chat with this contact"
msgstr "Hier klicken um mit diesem Kontakt zu chatten"
msgstr "Hier klicken um mit diesem Kontakt zu chatten"
#: src/converse-rosterview.js:5
88
#: src/converse-rosterview.js:5
97
msgid "Name"
msgid "Name"
msgstr ""
msgstr ""
#: src/converse-rosterview.js:6
43
#: src/converse-rosterview.js:6
52
msgid "Are you sure you want to remove this contact?"
msgid "Are you sure you want to remove this contact?"
msgstr "Wollen Sie diesen Kontakt wirklich entfernen?"
msgstr "Wollen Sie diesen Kontakt wirklich entfernen?"
#: src/converse-rosterview.js:6
54
#: src/converse-rosterview.js:6
63
msgid "Sorry, there was an error while trying to remove "
msgid "Sorry, there was an error while trying to remove "
msgstr ""
msgstr ""
#: src/converse-rosterview.js:6
73
#: src/converse-rosterview.js:6
82
msgid "Are you sure you want to decline this contact request?"
msgid "Are you sure you want to decline this contact request?"
msgstr "Wollen Sie diese Kontaktanfrage wirklich ablehnen?"
msgstr "Wollen Sie diese Kontaktanfrage wirklich ablehnen?"
...
...
locale/en/LC_MESSAGES/converse.po
View file @
8a74cc33
...
@@ -7,7 +7,7 @@ msgid ""
...
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
msgstr ""
"Project-Id-Version: Converse.js 0.4\n"
"Project-Id-Version: Converse.js 0.4\n"
"Report-Msgid-Bugs-To: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-05-
03 15:34
+0000\n"
"POT-Creation-Date: 2016-05-
24 08:15
+0000\n"
"PO-Revision-Date: 2015-05-01 12:37+0200\n"
"PO-Revision-Date: 2015-05-01 12:37+0200\n"
"Last-Translator: JC Brand <jc@opkode.com>\n"
"Last-Translator: JC Brand <jc@opkode.com>\n"
"Language-Team: English\n"
"Language-Team: English\n"
...
@@ -82,12 +82,12 @@ msgstr ""
...
@@ -82,12 +82,12 @@ msgstr ""
msgid "Start a call"
msgid "Start a call"
msgstr ""
msgstr ""
#: src/converse-controlbox.js:177 src/converse-core.js:57
0
#: src/converse-controlbox.js:177 src/converse-core.js:57
3
#: src/converse-core.js:61
6
src/converse-rosterview.js:58
#: src/converse-core.js:61
9
src/converse-rosterview.js:58
msgid "Contacts"
msgid "Contacts"
msgstr ""
msgstr ""
#: src/converse-controlbox.js:265 src/converse-core.js:47
4
#: src/converse-controlbox.js:265 src/converse-core.js:47
7
msgid "Connecting"
msgid "Connecting"
msgstr ""
msgstr ""
...
@@ -223,27 +223,27 @@ msgstr ""
...
@@ -223,27 +223,27 @@ msgstr ""
msgid "Toggle chat"
msgid "Toggle chat"
msgstr ""
msgstr ""
#: src/converse-core.js:43
1
#: src/converse-core.js:43
4
msgid "Attempting to reconnect"
msgid "Attempting to reconnect"
msgstr ""
msgstr ""
#: src/converse-core.js:47
2
#: src/converse-core.js:47
5
msgid "Error"
msgid "Error"
msgstr ""
msgstr ""
#: src/converse-core.js:47
6
#: src/converse-core.js:47
9
msgid "Authenticating"
msgid "Authenticating"
msgstr ""
msgstr ""
#: src/converse-core.js:4
78 src/converse-core.js:479
#: src/converse-core.js:4
81 src/converse-core.js:482
msgid "Authentication Failed"
msgid "Authentication Failed"
msgstr ""
msgstr ""
#: src/converse-core.js:8
74
#: src/converse-core.js:8
89
msgid "Sorry, there was an error while trying to add "
msgid "Sorry, there was an error while trying to add "
msgstr ""
msgstr ""
#: src/converse-core.js:10
45
#: src/converse-core.js:10
60
msgid "This client does not allow presence subscriptions"
msgid "This client does not allow presence subscriptions"
msgstr ""
msgstr ""
...
@@ -946,35 +946,35 @@ msgstr ""
...
@@ -946,35 +946,35 @@ msgstr ""
msgid "Extended Away"
msgid "Extended Away"
msgstr ""
msgstr ""
#: src/converse-rosterview.js:5
66 src/converse-rosterview.js:587
#: src/converse-rosterview.js:5
75 src/converse-rosterview.js:596
msgid "Click to remove this contact"
msgid "Click to remove this contact"
msgstr "Click to remove this contact"
msgstr "Click to remove this contact"
#: src/converse-rosterview.js:5
74
#: src/converse-rosterview.js:5
83
msgid "Click to accept this contact request"
msgid "Click to accept this contact request"
msgstr ""
msgstr ""
#: src/converse-rosterview.js:5
75
#: src/converse-rosterview.js:5
84
msgid "Click to decline this contact request"
msgid "Click to decline this contact request"
msgstr ""
msgstr ""
#: src/converse-rosterview.js:5
86
#: src/converse-rosterview.js:5
95
msgid "Click to chat with this contact"
msgid "Click to chat with this contact"
msgstr "Click to chat with this contact"
msgstr "Click to chat with this contact"
#: src/converse-rosterview.js:5
88
#: src/converse-rosterview.js:5
97
msgid "Name"
msgid "Name"
msgstr ""
msgstr ""
#: src/converse-rosterview.js:6
43
#: src/converse-rosterview.js:6
52
msgid "Are you sure you want to remove this contact?"
msgid "Are you sure you want to remove this contact?"
msgstr ""
msgstr ""
#: src/converse-rosterview.js:6
54
#: src/converse-rosterview.js:6
63
msgid "Sorry, there was an error while trying to remove "
msgid "Sorry, there was an error while trying to remove "
msgstr ""
msgstr ""
#: src/converse-rosterview.js:6
73
#: src/converse-rosterview.js:6
82
msgid "Are you sure you want to decline this contact request?"
msgid "Are you sure you want to decline this contact request?"
msgstr ""
msgstr ""
...
...
locale/es/LC_MESSAGES/converse.po
View file @
8a74cc33
...
@@ -6,7 +6,7 @@ msgid ""
...
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
msgstr ""
"Project-Id-Version: Converse.js 0.4\n"
"Project-Id-Version: Converse.js 0.4\n"
"Report-Msgid-Bugs-To: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-05-
03 15:34
+0000\n"
"POT-Creation-Date: 2016-05-
24 08:15
+0000\n"
"PO-Revision-Date: 2016-04-07 10:21+0000\n"
"PO-Revision-Date: 2016-04-07 10:21+0000\n"
"Last-Translator: Javier Lopez <m@javier.io>\n"
"Last-Translator: Javier Lopez <m@javier.io>\n"
"Language-Team: ES <LL@li.org>\n"
"Language-Team: ES <LL@li.org>\n"
...
@@ -95,12 +95,12 @@ msgstr ""
...
@@ -95,12 +95,12 @@ msgstr ""
msgid "Start a call"
msgid "Start a call"
msgstr ""
msgstr ""
#: src/converse-controlbox.js:177 src/converse-core.js:57
0
#: src/converse-controlbox.js:177 src/converse-core.js:57
3
#: src/converse-core.js:61
6
src/converse-rosterview.js:58
#: src/converse-core.js:61
9
src/converse-rosterview.js:58
msgid "Contacts"
msgid "Contacts"
msgstr "Contactos"
msgstr "Contactos"
#: src/converse-controlbox.js:265 src/converse-core.js:47
4
#: src/converse-controlbox.js:265 src/converse-core.js:47
7
msgid "Connecting"
msgid "Connecting"
msgstr "Conectando"
msgstr "Conectando"
...
@@ -240,27 +240,27 @@ msgstr "Haga click para agregar como contacto de chat"
...
@@ -240,27 +240,27 @@ msgstr "Haga click para agregar como contacto de chat"
msgid "Toggle chat"
msgid "Toggle chat"
msgstr "Chat"
msgstr "Chat"
#: src/converse-core.js:43
1
#: src/converse-core.js:43
4
msgid "Attempting to reconnect"
msgid "Attempting to reconnect"
msgstr ""
msgstr ""
#: src/converse-core.js:47
2
#: src/converse-core.js:47
5
msgid "Error"
msgid "Error"
msgstr "Error"
msgstr "Error"
#: src/converse-core.js:47
6
#: src/converse-core.js:47
9
msgid "Authenticating"
msgid "Authenticating"
msgstr "Autenticando"
msgstr "Autenticando"
#: src/converse-core.js:4
78 src/converse-core.js:479
#: src/converse-core.js:4
81 src/converse-core.js:482
msgid "Authentication Failed"
msgid "Authentication Failed"
msgstr "La autenticación falló"
msgstr "La autenticación falló"
#: src/converse-core.js:8
74
#: src/converse-core.js:8
89
msgid "Sorry, there was an error while trying to add "
msgid "Sorry, there was an error while trying to add "
msgstr ""
msgstr ""
#: src/converse-core.js:10
45
#: src/converse-core.js:10
60
msgid "This client does not allow presence subscriptions"
msgid "This client does not allow presence subscriptions"
msgstr ""
msgstr ""
...
@@ -1009,37 +1009,37 @@ msgstr ""
...
@@ -1009,37 +1009,37 @@ msgstr ""
msgid "Extended Away"
msgid "Extended Away"
msgstr ""
msgstr ""
#: src/converse-rosterview.js:5
66 src/converse-rosterview.js:587
#: src/converse-rosterview.js:5
75 src/converse-rosterview.js:596
msgid "Click to remove this contact"
msgid "Click to remove this contact"
msgstr "Haga click para eliminar este contacto"
msgstr "Haga click para eliminar este contacto"
#: src/converse-rosterview.js:5
74
#: src/converse-rosterview.js:5
83
#, fuzzy
#, fuzzy
msgid "Click to accept this contact request"
msgid "Click to accept this contact request"
msgstr "Haga click para eliminar este contacto"
msgstr "Haga click para eliminar este contacto"
#: src/converse-rosterview.js:5
75
#: src/converse-rosterview.js:5
84
#, fuzzy
#, fuzzy
msgid "Click to decline this contact request"
msgid "Click to decline this contact request"
msgstr "Haga click para eliminar este contacto"
msgstr "Haga click para eliminar este contacto"
#: src/converse-rosterview.js:5
86
#: src/converse-rosterview.js:5
95
msgid "Click to chat with this contact"
msgid "Click to chat with this contact"
msgstr "Haga click para conversar con este contacto"
msgstr "Haga click para conversar con este contacto"
#: src/converse-rosterview.js:5
88
#: src/converse-rosterview.js:5
97
msgid "Name"
msgid "Name"
msgstr ""
msgstr ""
#: src/converse-rosterview.js:6
43
#: src/converse-rosterview.js:6
52
msgid "Are you sure you want to remove this contact?"
msgid "Are you sure you want to remove this contact?"
msgstr "¿Esta seguro de querer eliminar este contacto?"
msgstr "¿Esta seguro de querer eliminar este contacto?"
#: src/converse-rosterview.js:6
54
#: src/converse-rosterview.js:6
63
msgid "Sorry, there was an error while trying to remove "
msgid "Sorry, there was an error while trying to remove "
msgstr ""
msgstr ""
#: src/converse-rosterview.js:6
73
#: src/converse-rosterview.js:6
82
#, fuzzy
#, fuzzy
msgid "Are you sure you want to decline this contact request?"
msgid "Are you sure you want to decline this contact request?"
msgstr "¿Esta seguro de querer eliminar este contacto?"
msgstr "¿Esta seguro de querer eliminar este contacto?"
...
...
locale/fr/LC_MESSAGES/converse.po
View file @
8a74cc33
...
@@ -5,7 +5,7 @@ msgid ""
...
@@ -5,7 +5,7 @@ msgid ""
msgstr ""
msgstr ""
"Project-Id-Version: Converse.js 0.4\n"
"Project-Id-Version: Converse.js 0.4\n"
"Report-Msgid-Bugs-To: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-05-
03 15:34
+0000\n"
"POT-Creation-Date: 2016-05-
24 08:15
+0000\n"
"PO-Revision-Date: 2016-04-07 10:22+0000\n"
"PO-Revision-Date: 2016-04-07 10:22+0000\n"
"Language-Team: FR <LL@li.org>\n"
"Language-Team: FR <LL@li.org>\n"
"Language: fr\n"
"Language: fr\n"
...
@@ -87,12 +87,12 @@ msgstr ""
...
@@ -87,12 +87,12 @@ msgstr ""
msgid "Start a call"
msgid "Start a call"
msgstr "Démarrer un appel"
msgstr "Démarrer un appel"
#: src/converse-controlbox.js:177 src/converse-core.js:57
0
#: src/converse-controlbox.js:177 src/converse-core.js:57
3
#: src/converse-core.js:61
6
src/converse-rosterview.js:58
#: src/converse-core.js:61
9
src/converse-rosterview.js:58
msgid "Contacts"
msgid "Contacts"
msgstr "Contacts"
msgstr "Contacts"
#: src/converse-controlbox.js:265 src/converse-core.js:47
4
#: src/converse-controlbox.js:265 src/converse-core.js:47
7
msgid "Connecting"
msgid "Connecting"
msgstr "Connexion"
msgstr "Connexion"
...
@@ -229,27 +229,27 @@ msgstr "Cliquer pour ajouter aux contacts"
...
@@ -229,27 +229,27 @@ msgstr "Cliquer pour ajouter aux contacts"
msgid "Toggle chat"
msgid "Toggle chat"
msgstr "Ouvrir IM"
msgstr "Ouvrir IM"
#: src/converse-core.js:43
1
#: src/converse-core.js:43
4
msgid "Attempting to reconnect"
msgid "Attempting to reconnect"
msgstr ""
msgstr ""
#: src/converse-core.js:47
2
#: src/converse-core.js:47
5
msgid "Error"
msgid "Error"
msgstr "Erreur"
msgstr "Erreur"
#: src/converse-core.js:47
6
#: src/converse-core.js:47
9
msgid "Authenticating"
msgid "Authenticating"
msgstr "Authentification"
msgstr "Authentification"
#: src/converse-core.js:4
78 src/converse-core.js:479
#: src/converse-core.js:4
81 src/converse-core.js:482
msgid "Authentication Failed"
msgid "Authentication Failed"
msgstr "L'authentification a échoué"
msgstr "L'authentification a échoué"
#: src/converse-core.js:8
74
#: src/converse-core.js:8
89
msgid "Sorry, there was an error while trying to add "
msgid "Sorry, there was an error while trying to add "
msgstr ""
msgstr ""
#: src/converse-core.js:10
45
#: src/converse-core.js:10
60
msgid "This client does not allow presence subscriptions"
msgid "This client does not allow presence subscriptions"
msgstr ""
msgstr ""
...
@@ -990,35 +990,35 @@ msgstr ""
...
@@ -990,35 +990,35 @@ msgstr ""
msgid "Extended Away"
msgid "Extended Away"
msgstr ""
msgstr ""
#: src/converse-rosterview.js:5
66 src/converse-rosterview.js:587
#: src/converse-rosterview.js:5
75 src/converse-rosterview.js:596
msgid "Click to remove this contact"
msgid "Click to remove this contact"
msgstr "Cliquez pour supprimer ce contact"
msgstr "Cliquez pour supprimer ce contact"
#: src/converse-rosterview.js:5
74
#: src/converse-rosterview.js:5
83
msgid "Click to accept this contact request"
msgid "Click to accept this contact request"
msgstr "Cliquez pour accepter la demande de ce contact"
msgstr "Cliquez pour accepter la demande de ce contact"
#: src/converse-rosterview.js:5
75
#: src/converse-rosterview.js:5
84
msgid "Click to decline this contact request"
msgid "Click to decline this contact request"
msgstr "Cliquez pour refuser la demande de ce contact"
msgstr "Cliquez pour refuser la demande de ce contact"
#: src/converse-rosterview.js:5
86
#: src/converse-rosterview.js:5
95
msgid "Click to chat with this contact"
msgid "Click to chat with this contact"
msgstr "Cliquez pour discuter avec ce contact"
msgstr "Cliquez pour discuter avec ce contact"
#: src/converse-rosterview.js:5
88
#: src/converse-rosterview.js:5
97
msgid "Name"
msgid "Name"
msgstr ""
msgstr ""
#: src/converse-rosterview.js:6
43
#: src/converse-rosterview.js:6
52
msgid "Are you sure you want to remove this contact?"
msgid "Are you sure you want to remove this contact?"
msgstr "Êtes-vous sûr de vouloir supprimer ce contact?"
msgstr "Êtes-vous sûr de vouloir supprimer ce contact?"
#: src/converse-rosterview.js:6
54
#: src/converse-rosterview.js:6
63
msgid "Sorry, there was an error while trying to remove "
msgid "Sorry, there was an error while trying to remove "
msgstr ""
msgstr ""
#: src/converse-rosterview.js:6
73
#: src/converse-rosterview.js:6
82
msgid "Are you sure you want to decline this contact request?"
msgid "Are you sure you want to decline this contact request?"
msgstr "Êtes-vous sûr de vouloir refuser la demande de ce contact?"
msgstr "Êtes-vous sûr de vouloir refuser la demande de ce contact?"
...
...
locale/he/LC_MESSAGES/converse.po
View file @
8a74cc33
...
@@ -7,7 +7,7 @@ msgid ""
...
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
msgstr ""
"Project-Id-Version: Converse.js 0.8.8\n"
"Project-Id-Version: Converse.js 0.8.8\n"
"Report-Msgid-Bugs-To: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-05-
03 15:34
+0000\n"
"POT-Creation-Date: 2016-05-
24 08:15
+0000\n"
"PO-Revision-Date: 2016-04-07 10:21+0000\n"
"PO-Revision-Date: 2016-04-07 10:21+0000\n"
"Last-Translator: GreenLunar <https://github.com/GreenLunar>\n"
"Last-Translator: GreenLunar <https://github.com/GreenLunar>\n"
"Language-Team: Rahut <http://sourceforge.net/projects/rahut/>\n"
"Language-Team: Rahut <http://sourceforge.net/projects/rahut/>\n"
...
@@ -87,12 +87,12 @@ msgstr "הכנס סמיילי"
...
@@ -87,12 +87,12 @@ msgstr "הכנס סמיילי"
msgid "Start a call"
msgid "Start a call"
msgstr "התחל שיחה"
msgstr "התחל שיחה"
#: src/converse-controlbox.js:177 src/converse-core.js:57
0
#: src/converse-controlbox.js:177 src/converse-core.js:57
3
#: src/converse-core.js:61
6
src/converse-rosterview.js:58
#: src/converse-core.js:61
9
src/converse-rosterview.js:58
msgid "Contacts"
msgid "Contacts"
msgstr "אנשי קשר"
msgstr "אנשי קשר"
#: src/converse-controlbox.js:265 src/converse-core.js:47
4
#: src/converse-controlbox.js:265 src/converse-core.js:47
7
msgid "Connecting"
msgid "Connecting"
msgstr "כעת מתחבר"
msgstr "כעת מתחבר"
...
@@ -229,28 +229,28 @@ msgstr "לחץ כדי להוסיף בתור איש קשר שיחה"
...
@@ -229,28 +229,28 @@ msgstr "לחץ כדי להוסיף בתור איש קשר שיחה"
msgid "Toggle chat"
msgid "Toggle chat"
msgstr "הפעל שיח"
msgstr "הפעל שיח"
#: src/converse-core.js:43
1
#: src/converse-core.js:43
4
#, fuzzy
#, fuzzy
msgid "Attempting to reconnect"
msgid "Attempting to reconnect"
msgstr "מנסה להתחבר בעוד 5 שניות"
msgstr "מנסה להתחבר בעוד 5 שניות"
#: src/converse-core.js:47
2
#: src/converse-core.js:47
5
msgid "Error"
msgid "Error"
msgstr "שגיאה"
msgstr "שגיאה"
#: src/converse-core.js:47
6
#: src/converse-core.js:47
9
msgid "Authenticating"
msgid "Authenticating"
msgstr "כעת מאמת"
msgstr "כעת מאמת"
#: src/converse-core.js:4
78 src/converse-core.js:479
#: src/converse-core.js:4
81 src/converse-core.js:482
msgid "Authentication Failed"
msgid "Authentication Failed"
msgstr "אימות נכשל"
msgstr "אימות נכשל"
#: src/converse-core.js:8
74
#: src/converse-core.js:8
89
msgid "Sorry, there was an error while trying to add "
msgid "Sorry, there was an error while trying to add "
msgstr "מצטערים, היתה שגיאה במהלך ניסיון הוספת "
msgstr "מצטערים, היתה שגיאה במהלך ניסיון הוספת "
#: src/converse-core.js:10
45
#: src/converse-core.js:10
60
msgid "This client does not allow presence subscriptions"
msgid "This client does not allow presence subscriptions"
msgstr "לקוח זה לא מתיר הרשמות נוכחות"
msgstr "לקוח זה לא מתיר הרשמות נוכחות"
...
@@ -983,35 +983,35 @@ msgstr ""
...
@@ -983,35 +983,35 @@ msgstr ""
msgid "Extended Away"
msgid "Extended Away"
msgstr ""
msgstr ""
#: src/converse-rosterview.js:5
66 src/converse-rosterview.js:587
#: src/converse-rosterview.js:5
75 src/converse-rosterview.js:596
msgid "Click to remove this contact"
msgid "Click to remove this contact"
msgstr "לחץ כדי להסיר את איש קשר זה"
msgstr "לחץ כדי להסיר את איש קשר זה"
#: src/converse-rosterview.js:5
74
#: src/converse-rosterview.js:5
83
msgid "Click to accept this contact request"
msgid "Click to accept this contact request"
msgstr "לחץ כדי לקבל את בקשת איש קשר זה"
msgstr "לחץ כדי לקבל את בקשת איש קשר זה"
#: src/converse-rosterview.js:5
75
#: src/converse-rosterview.js:5
84
msgid "Click to decline this contact request"
msgid "Click to decline this contact request"
msgstr "לחץ כדי לסרב את בקשת איש קשר זה"
msgstr "לחץ כדי לסרב את בקשת איש קשר זה"
#: src/converse-rosterview.js:5
86
#: src/converse-rosterview.js:5
95
msgid "Click to chat with this contact"
msgid "Click to chat with this contact"
msgstr "לחץ כדי לשוחח עם איש קשר זה"
msgstr "לחץ כדי לשוחח עם איש קשר זה"
#: src/converse-rosterview.js:5
88
#: src/converse-rosterview.js:5
97
msgid "Name"
msgid "Name"
msgstr "שם"
msgstr "שם"
#: src/converse-rosterview.js:6
43
#: src/converse-rosterview.js:6
52
msgid "Are you sure you want to remove this contact?"
msgid "Are you sure you want to remove this contact?"
msgstr "האם אתה בטוח כי ברצונך להסיר את איש קשר זה?"
msgstr "האם אתה בטוח כי ברצונך להסיר את איש קשר זה?"
#: src/converse-rosterview.js:6
54
#: src/converse-rosterview.js:6
63
msgid "Sorry, there was an error while trying to remove "
msgid "Sorry, there was an error while trying to remove "
msgstr "מצטערים, היתה שגיאה במהלך ניסיון להסיר את "
msgstr "מצטערים, היתה שגיאה במהלך ניסיון להסיר את "
#: src/converse-rosterview.js:6
73
#: src/converse-rosterview.js:6
82
msgid "Are you sure you want to decline this contact request?"
msgid "Are you sure you want to decline this contact request?"
msgstr "האם אתה בטוח כי ברצונך לסרב את בקשת איש קשר זה?"
msgstr "האם אתה בטוח כי ברצונך לסרב את בקשת איש קשר זה?"
...
...
locale/hu/LC_MESSAGES/converse.po
View file @
8a74cc33
...
@@ -7,7 +7,7 @@ msgid ""
...
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
msgstr ""
"Project-Id-Version: Converse.js 0.8.8\n"
"Project-Id-Version: Converse.js 0.8.8\n"
"Report-Msgid-Bugs-To: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-05-
03 15:34
+0000\n"
"POT-Creation-Date: 2016-05-
24 08:15
+0000\n"
"PO-Revision-Date: 2016-04-07 10:23+0000\n"
"PO-Revision-Date: 2016-04-07 10:23+0000\n"
"Last-Translator: Meskó Balázs <meskobalazs@gmail.com>\n"
"Last-Translator: Meskó Balázs <meskobalazs@gmail.com>\n"
"Language-Team: Hungarian\n"
"Language-Team: Hungarian\n"
...
@@ -85,12 +85,12 @@ msgstr "Hangulatjel beszúrása"
...
@@ -85,12 +85,12 @@ msgstr "Hangulatjel beszúrása"
msgid "Start a call"
msgid "Start a call"
msgstr "Hívás indítása"
msgstr "Hívás indítása"
#: src/converse-controlbox.js:177 src/converse-core.js:57
0
#: src/converse-controlbox.js:177 src/converse-core.js:57
3
#: src/converse-core.js:61
6
src/converse-rosterview.js:58
#: src/converse-core.js:61
9
src/converse-rosterview.js:58
msgid "Contacts"
msgid "Contacts"
msgstr "Kapcsolatok"
msgstr "Kapcsolatok"
#: src/converse-controlbox.js:265 src/converse-core.js:47
4
#: src/converse-controlbox.js:265 src/converse-core.js:47
7
msgid "Connecting"
msgid "Connecting"
msgstr "Kapcsolódás"
msgstr "Kapcsolódás"
...
@@ -226,28 +226,28 @@ msgstr "Felvétel a csevegőpartnerek közé"
...
@@ -226,28 +226,28 @@ msgstr "Felvétel a csevegőpartnerek közé"
msgid "Toggle chat"
msgid "Toggle chat"
msgstr "Csevegőablak"
msgstr "Csevegőablak"
#: src/converse-core.js:43
1
#: src/converse-core.js:43
4
#, fuzzy
#, fuzzy
msgid "Attempting to reconnect"
msgid "Attempting to reconnect"
msgstr "Újrakapcsolódás 5 másodperc múlva"
msgstr "Újrakapcsolódás 5 másodperc múlva"
#: src/converse-core.js:47
2
#: src/converse-core.js:47
5
msgid "Error"
msgid "Error"
msgstr "Hiba"
msgstr "Hiba"
#: src/converse-core.js:47
6
#: src/converse-core.js:47
9
msgid "Authenticating"
msgid "Authenticating"
msgstr "Azonosítás"
msgstr "Azonosítás"
#: src/converse-core.js:4
78 src/converse-core.js:479
#: src/converse-core.js:4
81 src/converse-core.js:482
msgid "Authentication Failed"
msgid "Authentication Failed"
msgstr "Azonosítási hiba"
msgstr "Azonosítási hiba"
#: src/converse-core.js:8
74
#: src/converse-core.js:8
89
msgid "Sorry, there was an error while trying to add "
msgid "Sorry, there was an error while trying to add "
msgstr "Sajnáljuk, hiba történt a hozzáadás során"
msgstr "Sajnáljuk, hiba történt a hozzáadás során"
#: src/converse-core.js:10
45
#: src/converse-core.js:10
60
msgid "This client does not allow presence subscriptions"
msgid "This client does not allow presence subscriptions"
msgstr "Ez a kliens nem engedélyezi a jelenlét követését"
msgstr "Ez a kliens nem engedélyezi a jelenlét követését"
...
@@ -978,35 +978,35 @@ msgstr ""
...
@@ -978,35 +978,35 @@ msgstr ""
msgid "Extended Away"
msgid "Extended Away"
msgstr ""
msgstr ""
#: src/converse-rosterview.js:5
66 src/converse-rosterview.js:587
#: src/converse-rosterview.js:5
75 src/converse-rosterview.js:596
msgid "Click to remove this contact"
msgid "Click to remove this contact"
msgstr "Partner törlése"
msgstr "Partner törlése"
#: src/converse-rosterview.js:5
74
#: src/converse-rosterview.js:5
83
msgid "Click to accept this contact request"
msgid "Click to accept this contact request"
msgstr "Partner felvételének elfogadása"
msgstr "Partner felvételének elfogadása"
#: src/converse-rosterview.js:5
75
#: src/converse-rosterview.js:5
84
msgid "Click to decline this contact request"
msgid "Click to decline this contact request"
msgstr "Partner felvételének megtagadása"
msgstr "Partner felvételének megtagadása"
#: src/converse-rosterview.js:5
86
#: src/converse-rosterview.js:5
95
msgid "Click to chat with this contact"
msgid "Click to chat with this contact"
msgstr "Csevegés indítása ezzel a partnerünkkel"
msgstr "Csevegés indítása ezzel a partnerünkkel"
#: src/converse-rosterview.js:5
88
#: src/converse-rosterview.js:5
97
msgid "Name"
msgid "Name"
msgstr "Név"
msgstr "Név"
#: src/converse-rosterview.js:6
43
#: src/converse-rosterview.js:6
52
msgid "Are you sure you want to remove this contact?"
msgid "Are you sure you want to remove this contact?"
msgstr "Valóban törölni szeretné a csevegőpartnerét?"
msgstr "Valóban törölni szeretné a csevegőpartnerét?"
#: src/converse-rosterview.js:6
54
#: src/converse-rosterview.js:6
63
msgid "Sorry, there was an error while trying to remove "
msgid "Sorry, there was an error while trying to remove "
msgstr "Sajnáljuk, hiba történt a törlés során"
msgstr "Sajnáljuk, hiba történt a törlés során"
#: src/converse-rosterview.js:6
73
#: src/converse-rosterview.js:6
82
msgid "Are you sure you want to decline this contact request?"
msgid "Are you sure you want to decline this contact request?"
msgstr "Valóban elutasítja ezt a partnerkérelmet?"
msgstr "Valóban elutasítja ezt a partnerkérelmet?"
...
...
locale/id/LC_MESSAGES/converse.po
View file @
8a74cc33
...
@@ -8,7 +8,7 @@ msgid ""
...
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
msgstr ""
"Project-Id-Version: Converse.js 0.7.0\n"
"Project-Id-Version: Converse.js 0.7.0\n"
"Report-Msgid-Bugs-To: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-05-
03 15:34
+0000\n"
"POT-Creation-Date: 2016-05-
24 08:15
+0000\n"
"PO-Revision-Date: 2014-01-25 21:30+0700\n"
"PO-Revision-Date: 2014-01-25 21:30+0700\n"
"Last-Translator: Priyadi Iman Nurcahyo <priyadi@priyadi.net>\n"
"Last-Translator: Priyadi Iman Nurcahyo <priyadi@priyadi.net>\n"
"Language-Team: Bahasa Indonesia\n"
"Language-Team: Bahasa Indonesia\n"
...
@@ -87,12 +87,12 @@ msgstr ""
...
@@ -87,12 +87,12 @@ msgstr ""
msgid "Start a call"
msgid "Start a call"
msgstr ""
msgstr ""
#: src/converse-controlbox.js:177 src/converse-core.js:57
0
#: src/converse-controlbox.js:177 src/converse-core.js:57
3
#: src/converse-core.js:61
6
src/converse-rosterview.js:58
#: src/converse-core.js:61
9
src/converse-rosterview.js:58
msgid "Contacts"
msgid "Contacts"
msgstr "Teman"
msgstr "Teman"
#: src/converse-controlbox.js:265 src/converse-core.js:47
4
#: src/converse-controlbox.js:265 src/converse-core.js:47
7
msgid "Connecting"
msgid "Connecting"
msgstr "Menyambung"
msgstr "Menyambung"
...
@@ -232,27 +232,27 @@ msgstr "Klik untuk menambahkan sebagai teman"
...
@@ -232,27 +232,27 @@ msgstr "Klik untuk menambahkan sebagai teman"
msgid "Toggle chat"
msgid "Toggle chat"
msgstr ""
msgstr ""
#: src/converse-core.js:43
1
#: src/converse-core.js:43
4
msgid "Attempting to reconnect"
msgid "Attempting to reconnect"
msgstr ""
msgstr ""
#: src/converse-core.js:47
2
#: src/converse-core.js:47
5
msgid "Error"
msgid "Error"
msgstr "Kesalahan"
msgstr "Kesalahan"
#: src/converse-core.js:47
6
#: src/converse-core.js:47
9
msgid "Authenticating"
msgid "Authenticating"
msgstr "Melakukan otentikasi"
msgstr "Melakukan otentikasi"
#: src/converse-core.js:4
78 src/converse-core.js:479
#: src/converse-core.js:4
81 src/converse-core.js:482
msgid "Authentication Failed"
msgid "Authentication Failed"
msgstr "Otentikasi gagal"
msgstr "Otentikasi gagal"
#: src/converse-core.js:8
74
#: src/converse-core.js:8
89
msgid "Sorry, there was an error while trying to add "
msgid "Sorry, there was an error while trying to add "
msgstr ""
msgstr ""
#: src/converse-core.js:10
45
#: src/converse-core.js:10
60
msgid "This client does not allow presence subscriptions"
msgid "This client does not allow presence subscriptions"
msgstr ""
msgstr ""
...
@@ -1005,38 +1005,38 @@ msgstr ""
...
@@ -1005,38 +1005,38 @@ msgstr ""
msgid "Extended Away"
msgid "Extended Away"
msgstr ""
msgstr ""
#: src/converse-rosterview.js:5
66 src/converse-rosterview.js:587
#: src/converse-rosterview.js:5
75 src/converse-rosterview.js:596
msgid "Click to remove this contact"
msgid "Click to remove this contact"
msgstr "Klik untuk menghapus teman ini"
msgstr "Klik untuk menghapus teman ini"
#: src/converse-rosterview.js:5
74
#: src/converse-rosterview.js:5
83
#, fuzzy
#, fuzzy
msgid "Click to accept this contact request"
msgid "Click to accept this contact request"
msgstr "Klik untuk menghapus teman ini"
msgstr "Klik untuk menghapus teman ini"
#: src/converse-rosterview.js:5
75
#: src/converse-rosterview.js:5
84
#, fuzzy
#, fuzzy
msgid "Click to decline this contact request"
msgid "Click to decline this contact request"
msgstr "Klik untuk menghapus teman ini"
msgstr "Klik untuk menghapus teman ini"
#: src/converse-rosterview.js:5
86
#: src/converse-rosterview.js:5
95
msgid "Click to chat with this contact"
msgid "Click to chat with this contact"
msgstr "Klik untuk mulai perbinjangan dengan teman ini"
msgstr "Klik untuk mulai perbinjangan dengan teman ini"
#: src/converse-rosterview.js:5
88
#: src/converse-rosterview.js:5
97
msgid "Name"
msgid "Name"
msgstr ""
msgstr ""
#: src/converse-rosterview.js:6
43
#: src/converse-rosterview.js:6
52
#, fuzzy
#, fuzzy
msgid "Are you sure you want to remove this contact?"
msgid "Are you sure you want to remove this contact?"
msgstr "Klik untuk menghapus teman ini"
msgstr "Klik untuk menghapus teman ini"
#: src/converse-rosterview.js:6
54
#: src/converse-rosterview.js:6
63
msgid "Sorry, there was an error while trying to remove "
msgid "Sorry, there was an error while trying to remove "
msgstr ""
msgstr ""
#: src/converse-rosterview.js:6
73
#: src/converse-rosterview.js:6
82
#, fuzzy
#, fuzzy
msgid "Are you sure you want to decline this contact request?"
msgid "Are you sure you want to decline this contact request?"
msgstr "Klik untuk menghapus teman ini"
msgstr "Klik untuk menghapus teman ini"
...
...
locale/it/LC_MESSAGES/converse.po
View file @
8a74cc33
...
@@ -7,7 +7,7 @@ msgid ""
...
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
msgstr ""
"Project-Id-Version: Converse.js 0.4\n"
"Project-Id-Version: Converse.js 0.4\n"
"Report-Msgid-Bugs-To: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-05-
03 15:34
+0000\n"
"POT-Creation-Date: 2016-05-
24 08:15
+0000\n"
"PO-Revision-Date: 2016-04-07 10:23+0000\n"
"PO-Revision-Date: 2016-04-07 10:23+0000\n"
"Last-Translator: Fabio Bas <ctrlaltca@gmail.com>\n"
"Last-Translator: Fabio Bas <ctrlaltca@gmail.com>\n"
"Language-Team: Italian\n"
"Language-Team: Italian\n"
...
@@ -87,12 +87,12 @@ msgstr ""
...
@@ -87,12 +87,12 @@ msgstr ""
msgid "Start a call"
msgid "Start a call"
msgstr ""
msgstr ""
#: src/converse-controlbox.js:177 src/converse-core.js:57
0
#: src/converse-controlbox.js:177 src/converse-core.js:57
3
#: src/converse-core.js:61
6
src/converse-rosterview.js:58
#: src/converse-core.js:61
9
src/converse-rosterview.js:58
msgid "Contacts"
msgid "Contacts"
msgstr "Contatti"
msgstr "Contatti"
#: src/converse-controlbox.js:265 src/converse-core.js:47
4
#: src/converse-controlbox.js:265 src/converse-core.js:47
7
msgid "Connecting"
msgid "Connecting"
msgstr "Connessione in corso"
msgstr "Connessione in corso"
...
@@ -228,28 +228,28 @@ msgstr "Clicca per aggiungere il contatto alla chat"
...
@@ -228,28 +228,28 @@ msgstr "Clicca per aggiungere il contatto alla chat"
msgid "Toggle chat"
msgid "Toggle chat"
msgstr "Attiva/disattiva chat"
msgstr "Attiva/disattiva chat"
#: src/converse-core.js:43
1
#: src/converse-core.js:43
4
#, fuzzy
#, fuzzy
msgid "Attempting to reconnect"
msgid "Attempting to reconnect"
msgstr "Attendi riconversione in 5 secondi"
msgstr "Attendi riconversione in 5 secondi"
#: src/converse-core.js:47
2
#: src/converse-core.js:47
5
msgid "Error"
msgid "Error"
msgstr "Errore"
msgstr "Errore"
#: src/converse-core.js:47
6
#: src/converse-core.js:47
9
msgid "Authenticating"
msgid "Authenticating"
msgstr "Autenticazione in corso"
msgstr "Autenticazione in corso"
#: src/converse-core.js:4
78 src/converse-core.js:479
#: src/converse-core.js:4
81 src/converse-core.js:482
msgid "Authentication Failed"
msgid "Authentication Failed"
msgstr "Autenticazione fallita"
msgstr "Autenticazione fallita"
#: src/converse-core.js:8
74
#: src/converse-core.js:8
89
msgid "Sorry, there was an error while trying to add "
msgid "Sorry, there was an error while trying to add "
msgstr "Si è verificato un errore durante il tentativo di aggiunta"
msgstr "Si è verificato un errore durante il tentativo di aggiunta"
#: src/converse-core.js:10
45
#: src/converse-core.js:10
60
msgid "This client does not allow presence subscriptions"
msgid "This client does not allow presence subscriptions"
msgstr "Questo client non consente sottoscrizioni di presenza"
msgstr "Questo client non consente sottoscrizioni di presenza"
...
@@ -965,35 +965,35 @@ msgstr ""
...
@@ -965,35 +965,35 @@ msgstr ""
msgid "Extended Away"
msgid "Extended Away"
msgstr ""
msgstr ""
#: src/converse-rosterview.js:5
66 src/converse-rosterview.js:587
#: src/converse-rosterview.js:5
75 src/converse-rosterview.js:596
msgid "Click to remove this contact"
msgid "Click to remove this contact"
msgstr "Clicca per rimuovere questo contatto"
msgstr "Clicca per rimuovere questo contatto"
#: src/converse-rosterview.js:5
74
#: src/converse-rosterview.js:5
83
msgid "Click to accept this contact request"
msgid "Click to accept this contact request"
msgstr "Clicca per accettare questa richiesta di contatto"
msgstr "Clicca per accettare questa richiesta di contatto"
#: src/converse-rosterview.js:5
75
#: src/converse-rosterview.js:5
84
msgid "Click to decline this contact request"
msgid "Click to decline this contact request"
msgstr "Clicca per rifiutare questa richiesta di contatto"
msgstr "Clicca per rifiutare questa richiesta di contatto"
#: src/converse-rosterview.js:5
86
#: src/converse-rosterview.js:5
95
msgid "Click to chat with this contact"
msgid "Click to chat with this contact"
msgstr "Clicca per parlare con questo contatto"
msgstr "Clicca per parlare con questo contatto"
#: src/converse-rosterview.js:5
88
#: src/converse-rosterview.js:5
97
msgid "Name"
msgid "Name"
msgstr "Nome"
msgstr "Nome"
#: src/converse-rosterview.js:6
43
#: src/converse-rosterview.js:6
52
msgid "Are you sure you want to remove this contact?"
msgid "Are you sure you want to remove this contact?"
msgstr "Sei sicuro di voler rimuovere questo contatto?"
msgstr "Sei sicuro di voler rimuovere questo contatto?"
#: src/converse-rosterview.js:6
54
#: src/converse-rosterview.js:6
63
msgid "Sorry, there was an error while trying to remove "
msgid "Sorry, there was an error while trying to remove "
msgstr "Si è verificato un errore durante il tentativo di rimozione"
msgstr "Si è verificato un errore durante il tentativo di rimozione"
#: src/converse-rosterview.js:6
73
#: src/converse-rosterview.js:6
82
msgid "Are you sure you want to decline this contact request?"
msgid "Are you sure you want to decline this contact request?"
msgstr "Sei sicuro dirifiutare questa richiesta di contatto?"
msgstr "Sei sicuro dirifiutare questa richiesta di contatto?"
...
...
locale/ja/LC_MESSAGES/converse.po
View file @
8a74cc33
...
@@ -7,7 +7,7 @@ msgid ""
...
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
msgstr ""
"Project-Id-Version: Converse.js 0.4\n"
"Project-Id-Version: Converse.js 0.4\n"
"Report-Msgid-Bugs-To: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-05-
03 15:34
+0000\n"
"POT-Creation-Date: 2016-05-
24 08:15
+0000\n"
"PO-Revision-Date: 2014-01-07 11:32+0900\n"
"PO-Revision-Date: 2014-01-07 11:32+0900\n"
"Last-Translator: Mako N <mako@pasero.net>\n"
"Last-Translator: Mako N <mako@pasero.net>\n"
"Language-Team: Language JA\n"
"Language-Team: Language JA\n"
...
@@ -87,12 +87,12 @@ msgstr ""
...
@@ -87,12 +87,12 @@ msgstr ""
msgid "Start a call"
msgid "Start a call"
msgstr ""
msgstr ""
#: src/converse-controlbox.js:177 src/converse-core.js:57
0
#: src/converse-controlbox.js:177 src/converse-core.js:57
3
#: src/converse-core.js:61
6
src/converse-rosterview.js:58
#: src/converse-core.js:61
9
src/converse-rosterview.js:58
msgid "Contacts"
msgid "Contacts"
msgstr "相手先"
msgstr "相手先"
#: src/converse-controlbox.js:265 src/converse-core.js:47
4
#: src/converse-controlbox.js:265 src/converse-core.js:47
7
msgid "Connecting"
msgid "Connecting"
msgstr "接続中です"
msgstr "接続中です"
...
@@ -232,27 +232,27 @@ msgstr "クリックしてチャットの相手先として追加"
...
@@ -232,27 +232,27 @@ msgstr "クリックしてチャットの相手先として追加"
msgid "Toggle chat"
msgid "Toggle chat"
msgstr ""
msgstr ""
#: src/converse-core.js:43
1
#: src/converse-core.js:43
4
msgid "Attempting to reconnect"
msgid "Attempting to reconnect"
msgstr ""
msgstr ""
#: src/converse-core.js:47
2
#: src/converse-core.js:47
5
msgid "Error"
msgid "Error"
msgstr "エラー"
msgstr "エラー"
#: src/converse-core.js:47
6
#: src/converse-core.js:47
9
msgid "Authenticating"
msgid "Authenticating"
msgstr "認証中"
msgstr "認証中"
#: src/converse-core.js:4
78 src/converse-core.js:479
#: src/converse-core.js:4
81 src/converse-core.js:482
msgid "Authentication Failed"
msgid "Authentication Failed"
msgstr "認証に失敗"
msgstr "認証に失敗"
#: src/converse-core.js:8
74
#: src/converse-core.js:8
89
msgid "Sorry, there was an error while trying to add "
msgid "Sorry, there was an error while trying to add "
msgstr ""
msgstr ""
#: src/converse-core.js:10
45
#: src/converse-core.js:10
60
msgid "This client does not allow presence subscriptions"
msgid "This client does not allow presence subscriptions"
msgstr ""
msgstr ""
...
@@ -996,38 +996,38 @@ msgstr ""
...
@@ -996,38 +996,38 @@ msgstr ""
msgid "Extended Away"
msgid "Extended Away"
msgstr ""
msgstr ""
#: src/converse-rosterview.js:5
66 src/converse-rosterview.js:587
#: src/converse-rosterview.js:5
75 src/converse-rosterview.js:596
msgid "Click to remove this contact"
msgid "Click to remove this contact"
msgstr "クリックしてこの相手先を削除"
msgstr "クリックしてこの相手先を削除"
#: src/converse-rosterview.js:5
74
#: src/converse-rosterview.js:5
83
#, fuzzy
#, fuzzy
msgid "Click to accept this contact request"
msgid "Click to accept this contact request"
msgstr "クリックしてこの相手先を削除"
msgstr "クリックしてこの相手先を削除"
#: src/converse-rosterview.js:5
75
#: src/converse-rosterview.js:5
84
#, fuzzy
#, fuzzy
msgid "Click to decline this contact request"
msgid "Click to decline this contact request"
msgstr "クリックしてこの相手先を削除"
msgstr "クリックしてこの相手先を削除"
#: src/converse-rosterview.js:5
86
#: src/converse-rosterview.js:5
95
msgid "Click to chat with this contact"
msgid "Click to chat with this contact"
msgstr "クリックしてこの相手先とチャット"
msgstr "クリックしてこの相手先とチャット"
#: src/converse-rosterview.js:5
88
#: src/converse-rosterview.js:5
97
msgid "Name"
msgid "Name"
msgstr ""
msgstr ""
#: src/converse-rosterview.js:6
43
#: src/converse-rosterview.js:6
52
#, fuzzy
#, fuzzy
msgid "Are you sure you want to remove this contact?"
msgid "Are you sure you want to remove this contact?"
msgstr "クリックしてこの相手先を削除"
msgstr "クリックしてこの相手先を削除"
#: src/converse-rosterview.js:6
54
#: src/converse-rosterview.js:6
63
msgid "Sorry, there was an error while trying to remove "
msgid "Sorry, there was an error while trying to remove "
msgstr ""
msgstr ""
#: src/converse-rosterview.js:6
73
#: src/converse-rosterview.js:6
82
#, fuzzy
#, fuzzy
msgid "Are you sure you want to decline this contact request?"
msgid "Are you sure you want to decline this contact request?"
msgstr "クリックしてこの相手先を削除"
msgstr "クリックしてこの相手先を削除"
...
...
locale/nb/LC_MESSAGES/converse.po
View file @
8a74cc33
...
@@ -2,7 +2,7 @@ msgid ""
...
@@ -2,7 +2,7 @@ msgid ""
msgstr ""
msgstr ""
"Project-Id-Version: Converse JS 0.8.6\n"
"Project-Id-Version: Converse JS 0.8.6\n"
"Report-Msgid-Bugs-To: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-05-
03 15:34
+0000\n"
"POT-Creation-Date: 2016-05-
24 08:15
+0000\n"
"PO-Revision-Date: 2016-04-07 10:23+0000\n"
"PO-Revision-Date: 2016-04-07 10:23+0000\n"
"Last-Translator: Andreas Lorentsen <andreas.lorentsen@gmail.com>\n"
"Last-Translator: Andreas Lorentsen <andreas.lorentsen@gmail.com>\n"
"Language-Team: \n"
"Language-Team: \n"
...
@@ -88,12 +88,12 @@ msgstr ""
...
@@ -88,12 +88,12 @@ msgstr ""
msgid "Start a call"
msgid "Start a call"
msgstr "Start en samtale"
msgstr "Start en samtale"
#: src/converse-controlbox.js:177 src/converse-core.js:57
0
#: src/converse-controlbox.js:177 src/converse-core.js:57
3
#: src/converse-core.js:61
6
src/converse-rosterview.js:58
#: src/converse-core.js:61
9
src/converse-rosterview.js:58
msgid "Contacts"
msgid "Contacts"
msgstr "Kontakter"
msgstr "Kontakter"
#: src/converse-controlbox.js:265 src/converse-core.js:47
4
#: src/converse-controlbox.js:265 src/converse-core.js:47
7
msgid "Connecting"
msgid "Connecting"
msgstr "Kobler til"
msgstr "Kobler til"
...
@@ -231,27 +231,27 @@ msgstr "Klikk for å legge til som meldingskontakt"
...
@@ -231,27 +231,27 @@ msgstr "Klikk for å legge til som meldingskontakt"
msgid "Toggle chat"
msgid "Toggle chat"
msgstr "Endre chatten"
msgstr "Endre chatten"
#: src/converse-core.js:43
1
#: src/converse-core.js:43
4
msgid "Attempting to reconnect"
msgid "Attempting to reconnect"
msgstr ""
msgstr ""
#: src/converse-core.js:47
2
#: src/converse-core.js:47
5
msgid "Error"
msgid "Error"
msgstr "Feil"
msgstr "Feil"
#: src/converse-core.js:47
6
#: src/converse-core.js:47
9
msgid "Authenticating"
msgid "Authenticating"
msgstr "Godkjenner"
msgstr "Godkjenner"
#: src/converse-core.js:4
78 src/converse-core.js:479
#: src/converse-core.js:4
81 src/converse-core.js:482
msgid "Authentication Failed"
msgid "Authentication Failed"
msgstr "Godkjenning mislyktes"
msgstr "Godkjenning mislyktes"
#: src/converse-core.js:8
74
#: src/converse-core.js:8
89
msgid "Sorry, there was an error while trying to add "
msgid "Sorry, there was an error while trying to add "
msgstr ""
msgstr ""
#: src/converse-core.js:10
45
#: src/converse-core.js:10
60
msgid "This client does not allow presence subscriptions"
msgid "This client does not allow presence subscriptions"
msgstr ""
msgstr ""
...
@@ -995,35 +995,35 @@ msgstr ""
...
@@ -995,35 +995,35 @@ msgstr ""
msgid "Extended Away"
msgid "Extended Away"
msgstr ""
msgstr ""
#: src/converse-rosterview.js:5
66 src/converse-rosterview.js:587
#: src/converse-rosterview.js:5
75 src/converse-rosterview.js:596
msgid "Click to remove this contact"
msgid "Click to remove this contact"
msgstr "Klikk for å fjerne denne kontakten"
msgstr "Klikk for å fjerne denne kontakten"
#: src/converse-rosterview.js:5
74
#: src/converse-rosterview.js:5
83
msgid "Click to accept this contact request"
msgid "Click to accept this contact request"
msgstr "Klikk for å Godta denne kontaktforespørselen"
msgstr "Klikk for å Godta denne kontaktforespørselen"
#: src/converse-rosterview.js:5
75
#: src/converse-rosterview.js:5
84
msgid "Click to decline this contact request"
msgid "Click to decline this contact request"
msgstr "Klikk for å avslå denne kontaktforespørselen"
msgstr "Klikk for å avslå denne kontaktforespørselen"
#: src/converse-rosterview.js:5
86
#: src/converse-rosterview.js:5
95
msgid "Click to chat with this contact"
msgid "Click to chat with this contact"
msgstr "Klikk for å chatte med denne kontakten"
msgstr "Klikk for å chatte med denne kontakten"
#: src/converse-rosterview.js:5
88
#: src/converse-rosterview.js:5
97
msgid "Name"
msgid "Name"
msgstr ""
msgstr ""
#: src/converse-rosterview.js:6
43
#: src/converse-rosterview.js:6
52
msgid "Are you sure you want to remove this contact?"
msgid "Are you sure you want to remove this contact?"
msgstr "Er du sikker på at du vil fjerne denne kontakten?"
msgstr "Er du sikker på at du vil fjerne denne kontakten?"
#: src/converse-rosterview.js:6
54
#: src/converse-rosterview.js:6
63
msgid "Sorry, there was an error while trying to remove "
msgid "Sorry, there was an error while trying to remove "
msgstr ""
msgstr ""
#: src/converse-rosterview.js:6
73
#: src/converse-rosterview.js:6
82
msgid "Are you sure you want to decline this contact request?"
msgid "Are you sure you want to decline this contact request?"
msgstr "Er du sikker på at du vil avslå denne kontaktforespørselen?"
msgstr "Er du sikker på at du vil avslå denne kontaktforespørselen?"
...
...
locale/nl/LC_MESSAGES/converse.po
View file @
8a74cc33
...
@@ -7,7 +7,7 @@ msgid ""
...
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
msgstr ""
"Project-Id-Version: Converse.js 0.4\n"
"Project-Id-Version: Converse.js 0.4\n"
"Report-Msgid-Bugs-To: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-05-
03 15:34
+0000\n"
"POT-Creation-Date: 2016-05-
24 08:15
+0000\n"
"PO-Revision-Date: 2016-04-07 10:21+0000\n"
"PO-Revision-Date: 2016-04-07 10:21+0000\n"
"Last-Translator: Maarten Kling <maarten@fourdigits.nl>\n"
"Last-Translator: Maarten Kling <maarten@fourdigits.nl>\n"
"Language-Team: Dutch\n"
"Language-Team: Dutch\n"
...
@@ -92,12 +92,12 @@ msgstr ""
...
@@ -92,12 +92,12 @@ msgstr ""
msgid "Start a call"
msgid "Start a call"
msgstr ""
msgstr ""
#: src/converse-controlbox.js:177 src/converse-core.js:57
0
#: src/converse-controlbox.js:177 src/converse-core.js:57
3
#: src/converse-core.js:61
6
src/converse-rosterview.js:58
#: src/converse-core.js:61
9
src/converse-rosterview.js:58
msgid "Contacts"
msgid "Contacts"
msgstr "Contacten"
msgstr "Contacten"
#: src/converse-controlbox.js:265 src/converse-core.js:47
4
#: src/converse-controlbox.js:265 src/converse-core.js:47
7
msgid "Connecting"
msgid "Connecting"
msgstr "Verbinden"
msgstr "Verbinden"
...
@@ -237,27 +237,27 @@ msgstr "Klik om contact toe te voegen"
...
@@ -237,27 +237,27 @@ msgstr "Klik om contact toe te voegen"
msgid "Toggle chat"
msgid "Toggle chat"
msgstr ""
msgstr ""
#: src/converse-core.js:43
1
#: src/converse-core.js:43
4
msgid "Attempting to reconnect"
msgid "Attempting to reconnect"
msgstr ""
msgstr ""
#: src/converse-core.js:47
2
#: src/converse-core.js:47
5
msgid "Error"
msgid "Error"
msgstr "Error"
msgstr "Error"
#: src/converse-core.js:47
6
#: src/converse-core.js:47
9
msgid "Authenticating"
msgid "Authenticating"
msgstr "Authenticeren"
msgstr "Authenticeren"
#: src/converse-core.js:4
78 src/converse-core.js:479
#: src/converse-core.js:4
81 src/converse-core.js:482
msgid "Authentication Failed"
msgid "Authentication Failed"
msgstr "Authenticeren mislukt"
msgstr "Authenticeren mislukt"
#: src/converse-core.js:8
74
#: src/converse-core.js:8
89
msgid "Sorry, there was an error while trying to add "
msgid "Sorry, there was an error while trying to add "
msgstr ""
msgstr ""
#: src/converse-core.js:10
45
#: src/converse-core.js:10
60
msgid "This client does not allow presence subscriptions"
msgid "This client does not allow presence subscriptions"
msgstr ""
msgstr ""
...
@@ -977,38 +977,38 @@ msgstr ""
...
@@ -977,38 +977,38 @@ msgstr ""
msgid "Extended Away"
msgid "Extended Away"
msgstr ""
msgstr ""
#: src/converse-rosterview.js:5
66 src/converse-rosterview.js:587
#: src/converse-rosterview.js:5
75 src/converse-rosterview.js:596
msgid "Click to remove this contact"
msgid "Click to remove this contact"
msgstr "Klik om contact te verwijderen"
msgstr "Klik om contact te verwijderen"
#: src/converse-rosterview.js:5
74
#: src/converse-rosterview.js:5
83
#, fuzzy
#, fuzzy
msgid "Click to accept this contact request"
msgid "Click to accept this contact request"
msgstr "Klik om contact te verwijderen"
msgstr "Klik om contact te verwijderen"
#: src/converse-rosterview.js:5
75
#: src/converse-rosterview.js:5
84
#, fuzzy
#, fuzzy
msgid "Click to decline this contact request"
msgid "Click to decline this contact request"
msgstr "Klik om contact te verwijderen"
msgstr "Klik om contact te verwijderen"
#: src/converse-rosterview.js:5
86
#: src/converse-rosterview.js:5
95
msgid "Click to chat with this contact"
msgid "Click to chat with this contact"
msgstr "Klik om te chatten met contact"
msgstr "Klik om te chatten met contact"
#: src/converse-rosterview.js:5
88
#: src/converse-rosterview.js:5
97
msgid "Name"
msgid "Name"
msgstr ""
msgstr ""
#: src/converse-rosterview.js:6
43
#: src/converse-rosterview.js:6
52
#, fuzzy
#, fuzzy
msgid "Are you sure you want to remove this contact?"
msgid "Are you sure you want to remove this contact?"
msgstr "Klik om contact te verwijderen"
msgstr "Klik om contact te verwijderen"
#: src/converse-rosterview.js:6
54
#: src/converse-rosterview.js:6
63
msgid "Sorry, there was an error while trying to remove "
msgid "Sorry, there was an error while trying to remove "
msgstr ""
msgstr ""
#: src/converse-rosterview.js:6
73
#: src/converse-rosterview.js:6
82
#, fuzzy
#, fuzzy
msgid "Are you sure you want to decline this contact request?"
msgid "Are you sure you want to decline this contact request?"
msgstr "Klik om contact te verwijderen"
msgstr "Klik om contact te verwijderen"
...
...
locale/pl/LC_MESSAGES/converse.po
View file @
8a74cc33
...
@@ -8,7 +8,7 @@ msgid ""
...
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
msgstr ""
"Project-Id-Version: Converse.js 0.9.6\n"
"Project-Id-Version: Converse.js 0.9.6\n"
"Report-Msgid-Bugs-To: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-05-
03 15:34
+0000\n"
"POT-Creation-Date: 2016-05-
24 08:15
+0000\n"
"PO-Revision-Date: 2016-04-07 10:22+0000\n"
"PO-Revision-Date: 2016-04-07 10:22+0000\n"
"Last-Translator: Serge Victor <converse.js@random.re>\n"
"Last-Translator: Serge Victor <converse.js@random.re>\n"
"Language-Team: Polish\n"
"Language-Team: Polish\n"
...
@@ -87,12 +87,12 @@ msgstr "Wstaw uśmieszek"
...
@@ -87,12 +87,12 @@ msgstr "Wstaw uśmieszek"
msgid "Start a call"
msgid "Start a call"
msgstr "Zadzwoń"
msgstr "Zadzwoń"
#: src/converse-controlbox.js:177 src/converse-core.js:57
0
#: src/converse-controlbox.js:177 src/converse-core.js:57
3
#: src/converse-core.js:61
6
src/converse-rosterview.js:58
#: src/converse-core.js:61
9
src/converse-rosterview.js:58
msgid "Contacts"
msgid "Contacts"
msgstr "Kontakty"
msgstr "Kontakty"
#: src/converse-controlbox.js:265 src/converse-core.js:47
4
#: src/converse-controlbox.js:265 src/converse-core.js:47
7
msgid "Connecting"
msgid "Connecting"
msgstr "Łączę się"
msgstr "Łączę się"
...
@@ -228,27 +228,27 @@ msgstr "Kliknij aby dodać jako kontakt"
...
@@ -228,27 +228,27 @@ msgstr "Kliknij aby dodać jako kontakt"
msgid "Toggle chat"
msgid "Toggle chat"
msgstr "Przełącz rozmowę"
msgstr "Przełącz rozmowę"
#: src/converse-core.js:43
1
#: src/converse-core.js:43
4
msgid "Attempting to reconnect"
msgid "Attempting to reconnect"
msgstr ""
msgstr ""
#: src/converse-core.js:47
2
#: src/converse-core.js:47
5
msgid "Error"
msgid "Error"
msgstr "Błąd"
msgstr "Błąd"
#: src/converse-core.js:47
6
#: src/converse-core.js:47
9
msgid "Authenticating"
msgid "Authenticating"
msgstr "Autoryzacja"
msgstr "Autoryzacja"
#: src/converse-core.js:4
78 src/converse-core.js:479
#: src/converse-core.js:4
81 src/converse-core.js:482
msgid "Authentication Failed"
msgid "Authentication Failed"
msgstr "Autoryzacja nie powiodła się"
msgstr "Autoryzacja nie powiodła się"
#: src/converse-core.js:8
74
#: src/converse-core.js:8
89
msgid "Sorry, there was an error while trying to add "
msgid "Sorry, there was an error while trying to add "
msgstr "Wystąpił błąd w czasie próby dodania "
msgstr "Wystąpił błąd w czasie próby dodania "
#: src/converse-core.js:10
45
#: src/converse-core.js:10
60
msgid "This client does not allow presence subscriptions"
msgid "This client does not allow presence subscriptions"
msgstr "Klient nie umożliwia subskrybcji obecności"
msgstr "Klient nie umożliwia subskrybcji obecności"
...
@@ -986,35 +986,35 @@ msgstr ""
...
@@ -986,35 +986,35 @@ msgstr ""
msgid "Extended Away"
msgid "Extended Away"
msgstr ""
msgstr ""
#: src/converse-rosterview.js:5
66 src/converse-rosterview.js:587
#: src/converse-rosterview.js:5
75 src/converse-rosterview.js:596
msgid "Click to remove this contact"
msgid "Click to remove this contact"
msgstr "Kliknij aby usunąć kontakt"
msgstr "Kliknij aby usunąć kontakt"
#: src/converse-rosterview.js:5
74
#: src/converse-rosterview.js:5
83
msgid "Click to accept this contact request"
msgid "Click to accept this contact request"
msgstr "Klknij aby zaakceptować życzenie nawiązania kontaktu"
msgstr "Klknij aby zaakceptować życzenie nawiązania kontaktu"
#: src/converse-rosterview.js:5
75
#: src/converse-rosterview.js:5
84
msgid "Click to decline this contact request"
msgid "Click to decline this contact request"
msgstr "Kliknij aby odrzucić życzenie nawiązania kontaktu"
msgstr "Kliknij aby odrzucić życzenie nawiązania kontaktu"
#: src/converse-rosterview.js:5
86
#: src/converse-rosterview.js:5
95
msgid "Click to chat with this contact"
msgid "Click to chat with this contact"
msgstr "Kliknij aby porozmawiać z kontaktem"
msgstr "Kliknij aby porozmawiać z kontaktem"
#: src/converse-rosterview.js:5
88
#: src/converse-rosterview.js:5
97
msgid "Name"
msgid "Name"
msgstr "Nazwa"
msgstr "Nazwa"
#: src/converse-rosterview.js:6
43
#: src/converse-rosterview.js:6
52
msgid "Are you sure you want to remove this contact?"
msgid "Are you sure you want to remove this contact?"
msgstr "Czy potwierdzasz zamiar usnunięcia tego kontaktu?"
msgstr "Czy potwierdzasz zamiar usnunięcia tego kontaktu?"
#: src/converse-rosterview.js:6
54
#: src/converse-rosterview.js:6
63
msgid "Sorry, there was an error while trying to remove "
msgid "Sorry, there was an error while trying to remove "
msgstr "Wystąpił błąd w trakcie próby usunięcia "
msgstr "Wystąpił błąd w trakcie próby usunięcia "
#: src/converse-rosterview.js:6
73
#: src/converse-rosterview.js:6
82
msgid "Are you sure you want to decline this contact request?"
msgid "Are you sure you want to decline this contact request?"
msgstr "Czy potwierdzasz odrzucenie chęci nawiązania kontaktu?"
msgstr "Czy potwierdzasz odrzucenie chęci nawiązania kontaktu?"
...
...
locale/pt_BR/LC_MESSAGES/converse.po
View file @
8a74cc33
...
@@ -7,7 +7,7 @@ msgid ""
...
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
msgstr ""
"Project-Id-Version: Converse.js 0.6.3\n"
"Project-Id-Version: Converse.js 0.6.3\n"
"Report-Msgid-Bugs-To: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-05-
03 15:34
+0000\n"
"POT-Creation-Date: 2016-05-
24 08:15
+0000\n"
"PO-Revision-Date: 2016-04-07 10:23+0000\n"
"PO-Revision-Date: 2016-04-07 10:23+0000\n"
"Last-Translator: Alan Meira <alan@engarte.com>\n"
"Last-Translator: Alan Meira <alan@engarte.com>\n"
"Language-Team: Brazilian Portuguese\n"
"Language-Team: Brazilian Portuguese\n"
...
@@ -92,12 +92,12 @@ msgstr ""
...
@@ -92,12 +92,12 @@ msgstr ""
msgid "Start a call"
msgid "Start a call"
msgstr ""
msgstr ""
#: src/converse-controlbox.js:177 src/converse-core.js:57
0
#: src/converse-controlbox.js:177 src/converse-core.js:57
3
#: src/converse-core.js:61
6
src/converse-rosterview.js:58
#: src/converse-core.js:61
9
src/converse-rosterview.js:58
msgid "Contacts"
msgid "Contacts"
msgstr "Contatos"
msgstr "Contatos"
#: src/converse-controlbox.js:265 src/converse-core.js:47
4
#: src/converse-controlbox.js:265 src/converse-core.js:47
7
msgid "Connecting"
msgid "Connecting"
msgstr "Conectando"
msgstr "Conectando"
...
@@ -237,27 +237,27 @@ msgstr "Clique para adicionar como um contato do chat"
...
@@ -237,27 +237,27 @@ msgstr "Clique para adicionar como um contato do chat"
msgid "Toggle chat"
msgid "Toggle chat"
msgstr "Alternar bate-papo"
msgstr "Alternar bate-papo"
#: src/converse-core.js:43
1
#: src/converse-core.js:43
4
msgid "Attempting to reconnect"
msgid "Attempting to reconnect"
msgstr ""
msgstr ""
#: src/converse-core.js:47
2
#: src/converse-core.js:47
5
msgid "Error"
msgid "Error"
msgstr "Erro"
msgstr "Erro"
#: src/converse-core.js:47
6
#: src/converse-core.js:47
9
msgid "Authenticating"
msgid "Authenticating"
msgstr "Autenticando"
msgstr "Autenticando"
#: src/converse-core.js:4
78 src/converse-core.js:479
#: src/converse-core.js:4
81 src/converse-core.js:482
msgid "Authentication Failed"
msgid "Authentication Failed"
msgstr "Falha de autenticação"
msgstr "Falha de autenticação"
#: src/converse-core.js:8
74
#: src/converse-core.js:8
89
msgid "Sorry, there was an error while trying to add "
msgid "Sorry, there was an error while trying to add "
msgstr ""
msgstr ""
#: src/converse-core.js:10
45
#: src/converse-core.js:10
60
msgid "This client does not allow presence subscriptions"
msgid "This client does not allow presence subscriptions"
msgstr ""
msgstr ""
...
@@ -1010,38 +1010,38 @@ msgstr ""
...
@@ -1010,38 +1010,38 @@ msgstr ""
msgid "Extended Away"
msgid "Extended Away"
msgstr ""
msgstr ""
#: src/converse-rosterview.js:5
66 src/converse-rosterview.js:587
#: src/converse-rosterview.js:5
75 src/converse-rosterview.js:596
msgid "Click to remove this contact"
msgid "Click to remove this contact"
msgstr "Clique para remover o contato"
msgstr "Clique para remover o contato"
#: src/converse-rosterview.js:5
74
#: src/converse-rosterview.js:5
83
#, fuzzy
#, fuzzy
msgid "Click to accept this contact request"
msgid "Click to accept this contact request"
msgstr "Clique para remover o contato"
msgstr "Clique para remover o contato"
#: src/converse-rosterview.js:5
75
#: src/converse-rosterview.js:5
84
#, fuzzy
#, fuzzy
msgid "Click to decline this contact request"
msgid "Click to decline this contact request"
msgstr "Clique para remover o contato"
msgstr "Clique para remover o contato"
#: src/converse-rosterview.js:5
86
#: src/converse-rosterview.js:5
95
msgid "Click to chat with this contact"
msgid "Click to chat with this contact"
msgstr "Clique para conversar com o contato"
msgstr "Clique para conversar com o contato"
#: src/converse-rosterview.js:5
88
#: src/converse-rosterview.js:5
97
msgid "Name"
msgid "Name"
msgstr ""
msgstr ""
#: src/converse-rosterview.js:6
43
#: src/converse-rosterview.js:6
52
#, fuzzy
#, fuzzy
msgid "Are you sure you want to remove this contact?"
msgid "Are you sure you want to remove this contact?"
msgstr "Clique para remover o contato"
msgstr "Clique para remover o contato"
#: src/converse-rosterview.js:6
54
#: src/converse-rosterview.js:6
63
msgid "Sorry, there was an error while trying to remove "
msgid "Sorry, there was an error while trying to remove "
msgstr ""
msgstr ""
#: src/converse-rosterview.js:6
73
#: src/converse-rosterview.js:6
82
#, fuzzy
#, fuzzy
msgid "Are you sure you want to decline this contact request?"
msgid "Are you sure you want to decline this contact request?"
msgstr "Clique para remover o contato"
msgstr "Clique para remover o contato"
...
...
locale/ru/LC_MESSAGES/converse.po
View file @
8a74cc33
...
@@ -7,7 +7,7 @@ msgid ""
...
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
msgstr ""
"Project-Id-Version: Converse.js 0.10\n"
"Project-Id-Version: Converse.js 0.10\n"
"Report-Msgid-Bugs-To: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-05-
03 15:34
+0000\n"
"POT-Creation-Date: 2016-05-
24 08:15
+0000\n"
"PO-Revision-Date: 2016-04-07 10:22+0000\n"
"PO-Revision-Date: 2016-04-07 10:22+0000\n"
"Last-Translator: Laconic Team <info@laconic.website>\n"
"Last-Translator: Laconic Team <info@laconic.website>\n"
"Language-Team: Laconic Team <info@laconic.website>\n"
"Language-Team: Laconic Team <info@laconic.website>\n"
...
@@ -82,12 +82,12 @@ msgstr "Вставить смайлик"
...
@@ -82,12 +82,12 @@ msgstr "Вставить смайлик"
msgid "Start a call"
msgid "Start a call"
msgstr "Инициировать звонок"
msgstr "Инициировать звонок"
#: src/converse-controlbox.js:177 src/converse-core.js:57
0
#: src/converse-controlbox.js:177 src/converse-core.js:57
3
#: src/converse-core.js:61
6
src/converse-rosterview.js:58
#: src/converse-core.js:61
9
src/converse-rosterview.js:58
msgid "Contacts"
msgid "Contacts"
msgstr "Контакты"
msgstr "Контакты"
#: src/converse-controlbox.js:265 src/converse-core.js:47
4
#: src/converse-controlbox.js:265 src/converse-core.js:47
7
msgid "Connecting"
msgid "Connecting"
msgstr "Соединение"
msgstr "Соединение"
...
@@ -224,28 +224,28 @@ msgstr "Кликните, чтобы добавить контакт"
...
@@ -224,28 +224,28 @@ msgstr "Кликните, чтобы добавить контакт"
msgid "Toggle chat"
msgid "Toggle chat"
msgstr "Включить чат"
msgstr "Включить чат"
#: src/converse-core.js:43
1
#: src/converse-core.js:43
4
#, fuzzy
#, fuzzy
msgid "Attempting to reconnect"
msgid "Attempting to reconnect"
msgstr "Попытка восстановить соединение через 5 секунд"
msgstr "Попытка восстановить соединение через 5 секунд"
#: src/converse-core.js:47
2
#: src/converse-core.js:47
5
msgid "Error"
msgid "Error"
msgstr "Ошибка"
msgstr "Ошибка"
#: src/converse-core.js:47
6
#: src/converse-core.js:47
9
msgid "Authenticating"
msgid "Authenticating"
msgstr "Авторизация"
msgstr "Авторизация"
#: src/converse-core.js:4
78 src/converse-core.js:479
#: src/converse-core.js:4
81 src/converse-core.js:482
msgid "Authentication Failed"
msgid "Authentication Failed"
msgstr "Не удалось авторизоваться"
msgstr "Не удалось авторизоваться"
#: src/converse-core.js:8
74
#: src/converse-core.js:8
89
msgid "Sorry, there was an error while trying to add "
msgid "Sorry, there was an error while trying to add "
msgstr "Возникла ошибка при добавлении "
msgstr "Возникла ошибка при добавлении "
#: src/converse-core.js:10
45
#: src/converse-core.js:10
60
msgid "This client does not allow presence subscriptions"
msgid "This client does not allow presence subscriptions"
msgstr "Программа не поддерживает уведомления о статусе"
msgstr "Программа не поддерживает уведомления о статусе"
...
@@ -983,35 +983,35 @@ msgstr ""
...
@@ -983,35 +983,35 @@ msgstr ""
msgid "Extended Away"
msgid "Extended Away"
msgstr ""
msgstr ""
#: src/converse-rosterview.js:5
66 src/converse-rosterview.js:587
#: src/converse-rosterview.js:5
75 src/converse-rosterview.js:596
msgid "Click to remove this contact"
msgid "Click to remove this contact"
msgstr "Удалить контакт"
msgstr "Удалить контакт"
#: src/converse-rosterview.js:5
74
#: src/converse-rosterview.js:5
83
msgid "Click to accept this contact request"
msgid "Click to accept this contact request"
msgstr "Кликните, чтобы принять запрос этого контакта"
msgstr "Кликните, чтобы принять запрос этого контакта"
#: src/converse-rosterview.js:5
75
#: src/converse-rosterview.js:5
84
msgid "Click to decline this contact request"
msgid "Click to decline this contact request"
msgstr "Кликните, чтобы отклонить запрос этого контакта"
msgstr "Кликните, чтобы отклонить запрос этого контакта"
#: src/converse-rosterview.js:5
86
#: src/converse-rosterview.js:5
95
msgid "Click to chat with this contact"
msgid "Click to chat with this contact"
msgstr "Кликните, чтобы начать общение"
msgstr "Кликните, чтобы начать общение"
#: src/converse-rosterview.js:5
88
#: src/converse-rosterview.js:5
97
msgid "Name"
msgid "Name"
msgstr "Имя"
msgstr "Имя"
#: src/converse-rosterview.js:6
43
#: src/converse-rosterview.js:6
52
msgid "Are you sure you want to remove this contact?"
msgid "Are you sure you want to remove this contact?"
msgstr "Вы уверены, что хотите удалить этот контакт?"
msgstr "Вы уверены, что хотите удалить этот контакт?"
#: src/converse-rosterview.js:6
54
#: src/converse-rosterview.js:6
63
msgid "Sorry, there was an error while trying to remove "
msgid "Sorry, there was an error while trying to remove "
msgstr "Возникла ошибка при удалении "
msgstr "Возникла ошибка при удалении "
#: src/converse-rosterview.js:6
73
#: src/converse-rosterview.js:6
82
msgid "Are you sure you want to decline this contact request?"
msgid "Are you sure you want to decline this contact request?"
msgstr "Вы уверены, что хотите отклонить запрос от этого контакта?"
msgstr "Вы уверены, что хотите отклонить запрос от этого контакта?"
...
...
locale/uk/LC_MESSAGES/converse.po
View file @
8a74cc33
...
@@ -7,7 +7,7 @@ msgid ""
...
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
msgstr ""
"Project-Id-Version: Converse.js 0.7.0\n"
"Project-Id-Version: Converse.js 0.7.0\n"
"Report-Msgid-Bugs-To: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-05-
03 15:34
+0000\n"
"POT-Creation-Date: 2016-05-
24 08:15
+0000\n"
"PO-Revision-Date: 2016-04-07 10:22+0000\n"
"PO-Revision-Date: 2016-04-07 10:22+0000\n"
"Last-Translator: Andriy Kopystyansky <anri@polynet.lviv.ua>\n"
"Last-Translator: Andriy Kopystyansky <anri@polynet.lviv.ua>\n"
"Language-Team: Ukrainian\n"
"Language-Team: Ukrainian\n"
...
@@ -87,12 +87,12 @@ msgstr ""
...
@@ -87,12 +87,12 @@ msgstr ""
msgid "Start a call"
msgid "Start a call"
msgstr "Почати виклик"
msgstr "Почати виклик"
#: src/converse-controlbox.js:177 src/converse-core.js:57
0
#: src/converse-controlbox.js:177 src/converse-core.js:57
3
#: src/converse-core.js:61
6
src/converse-rosterview.js:58
#: src/converse-core.js:61
9
src/converse-rosterview.js:58
msgid "Contacts"
msgid "Contacts"
msgstr "Контакти"
msgstr "Контакти"
#: src/converse-controlbox.js:265 src/converse-core.js:47
4
#: src/converse-controlbox.js:265 src/converse-core.js:47
7
msgid "Connecting"
msgid "Connecting"
msgstr "Під'єднуюсь"
msgstr "Під'єднуюсь"
...
@@ -230,27 +230,27 @@ msgstr "Клацніть, щоб додати як чат-контакт"
...
@@ -230,27 +230,27 @@ msgstr "Клацніть, щоб додати як чат-контакт"
msgid "Toggle chat"
msgid "Toggle chat"
msgstr "Включити чат"
msgstr "Включити чат"
#: src/converse-core.js:43
1
#: src/converse-core.js:43
4
msgid "Attempting to reconnect"
msgid "Attempting to reconnect"
msgstr ""
msgstr ""
#: src/converse-core.js:47
2
#: src/converse-core.js:47
5
msgid "Error"
msgid "Error"
msgstr "Помилка"
msgstr "Помилка"
#: src/converse-core.js:47
6
#: src/converse-core.js:47
9
msgid "Authenticating"
msgid "Authenticating"
msgstr "Автентикуюсь"
msgstr "Автентикуюсь"
#: src/converse-core.js:4
78 src/converse-core.js:479
#: src/converse-core.js:4
81 src/converse-core.js:482
msgid "Authentication Failed"
msgid "Authentication Failed"
msgstr "Автентикація невдала"
msgstr "Автентикація невдала"
#: src/converse-core.js:8
74
#: src/converse-core.js:8
89
msgid "Sorry, there was an error while trying to add "
msgid "Sorry, there was an error while trying to add "
msgstr ""
msgstr ""
#: src/converse-core.js:10
45
#: src/converse-core.js:10
60
msgid "This client does not allow presence subscriptions"
msgid "This client does not allow presence subscriptions"
msgstr ""
msgstr ""
...
@@ -984,35 +984,35 @@ msgstr ""
...
@@ -984,35 +984,35 @@ msgstr ""
msgid "Extended Away"
msgid "Extended Away"
msgstr ""
msgstr ""
#: src/converse-rosterview.js:5
66 src/converse-rosterview.js:587
#: src/converse-rosterview.js:5
75 src/converse-rosterview.js:596
msgid "Click to remove this contact"
msgid "Click to remove this contact"
msgstr "Клацніть, щоб видалити цей контакт"
msgstr "Клацніть, щоб видалити цей контакт"
#: src/converse-rosterview.js:5
74
#: src/converse-rosterview.js:5
83
msgid "Click to accept this contact request"
msgid "Click to accept this contact request"
msgstr "Клацніть, щоб прийняти цей запит контакту"
msgstr "Клацніть, щоб прийняти цей запит контакту"
#: src/converse-rosterview.js:5
75
#: src/converse-rosterview.js:5
84
msgid "Click to decline this contact request"
msgid "Click to decline this contact request"
msgstr "Клацніть, щоб відхилити цей запит контакту"
msgstr "Клацніть, щоб відхилити цей запит контакту"
#: src/converse-rosterview.js:5
86
#: src/converse-rosterview.js:5
95
msgid "Click to chat with this contact"
msgid "Click to chat with this contact"
msgstr "Клацніть, щоб почати розмову з цим контактом"
msgstr "Клацніть, щоб почати розмову з цим контактом"
#: src/converse-rosterview.js:5
88
#: src/converse-rosterview.js:5
97
msgid "Name"
msgid "Name"
msgstr ""
msgstr ""
#: src/converse-rosterview.js:6
43
#: src/converse-rosterview.js:6
52
msgid "Are you sure you want to remove this contact?"
msgid "Are you sure you want to remove this contact?"
msgstr "Ви впевнені, що хочете видалити цей контакт?"
msgstr "Ви впевнені, що хочете видалити цей контакт?"
#: src/converse-rosterview.js:6
54
#: src/converse-rosterview.js:6
63
msgid "Sorry, there was an error while trying to remove "
msgid "Sorry, there was an error while trying to remove "
msgstr ""
msgstr ""
#: src/converse-rosterview.js:6
73
#: src/converse-rosterview.js:6
82
msgid "Are you sure you want to decline this contact request?"
msgid "Are you sure you want to decline this contact request?"
msgstr "Ви впевнені, що хочете відхилити цей запит контакту?"
msgstr "Ви впевнені, що хочете відхилити цей запит контакту?"
...
...
locale/zh/LC_MESSAGES/converse.po
View file @
8a74cc33
...
@@ -7,7 +7,7 @@ msgid ""
...
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
msgstr ""
"Project-Id-Version: Converse.js 0.4\n"
"Project-Id-Version: Converse.js 0.4\n"
"Report-Msgid-Bugs-To: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-05-
03 15:34
+0000\n"
"POT-Creation-Date: 2016-05-
24 08:15
+0000\n"
"PO-Revision-Date: 2016-04-07 10:23+0000\n"
"PO-Revision-Date: 2016-04-07 10:23+0000\n"
"Last-Translator: Huxisuz Hu <huxisuz@gmail.com>\n"
"Last-Translator: Huxisuz Hu <huxisuz@gmail.com>\n"
"Language-Team: Language zh\n"
"Language-Team: Language zh\n"
...
@@ -89,12 +89,12 @@ msgstr ""
...
@@ -89,12 +89,12 @@ msgstr ""
msgid "Start a call"
msgid "Start a call"
msgstr ""
msgstr ""
#: src/converse-controlbox.js:177 src/converse-core.js:57
0
#: src/converse-controlbox.js:177 src/converse-core.js:57
3
#: src/converse-core.js:61
6
src/converse-rosterview.js:58
#: src/converse-core.js:61
9
src/converse-rosterview.js:58
msgid "Contacts"
msgid "Contacts"
msgstr "联系人"
msgstr "联系人"
#: src/converse-controlbox.js:265 src/converse-core.js:47
4
#: src/converse-controlbox.js:265 src/converse-core.js:47
7
msgid "Connecting"
msgid "Connecting"
msgstr "连接中"
msgstr "连接中"
...
@@ -234,27 +234,27 @@ msgstr "点击添加为好友"
...
@@ -234,27 +234,27 @@ msgstr "点击添加为好友"
msgid "Toggle chat"
msgid "Toggle chat"
msgstr "折叠聊天窗口"
msgstr "折叠聊天窗口"
#: src/converse-core.js:43
1
#: src/converse-core.js:43
4
msgid "Attempting to reconnect"
msgid "Attempting to reconnect"
msgstr ""
msgstr ""
#: src/converse-core.js:47
2
#: src/converse-core.js:47
5
msgid "Error"
msgid "Error"
msgstr "错误"
msgstr "错误"
#: src/converse-core.js:47
6
#: src/converse-core.js:47
9
msgid "Authenticating"
msgid "Authenticating"
msgstr "验证中"
msgstr "验证中"
#: src/converse-core.js:4
78 src/converse-core.js:479
#: src/converse-core.js:4
81 src/converse-core.js:482
msgid "Authentication Failed"
msgid "Authentication Failed"
msgstr "验证失败"
msgstr "验证失败"
#: src/converse-core.js:8
74
#: src/converse-core.js:8
89
msgid "Sorry, there was an error while trying to add "
msgid "Sorry, there was an error while trying to add "
msgstr ""
msgstr ""
#: src/converse-core.js:10
45
#: src/converse-core.js:10
60
msgid "This client does not allow presence subscriptions"
msgid "This client does not allow presence subscriptions"
msgstr ""
msgstr ""
...
@@ -992,38 +992,38 @@ msgstr ""
...
@@ -992,38 +992,38 @@ msgstr ""
msgid "Extended Away"
msgid "Extended Away"
msgstr ""
msgstr ""
#: src/converse-rosterview.js:5
66 src/converse-rosterview.js:587
#: src/converse-rosterview.js:5
75 src/converse-rosterview.js:596
msgid "Click to remove this contact"
msgid "Click to remove this contact"
msgstr "点击移除联系人"
msgstr "点击移除联系人"
#: src/converse-rosterview.js:5
74
#: src/converse-rosterview.js:5
83
#, fuzzy
#, fuzzy
msgid "Click to accept this contact request"
msgid "Click to accept this contact request"
msgstr "点击移除联系人"
msgstr "点击移除联系人"
#: src/converse-rosterview.js:5
75
#: src/converse-rosterview.js:5
84
#, fuzzy
#, fuzzy
msgid "Click to decline this contact request"
msgid "Click to decline this contact request"
msgstr "点击移除联系人"
msgstr "点击移除联系人"
#: src/converse-rosterview.js:5
86
#: src/converse-rosterview.js:5
95
msgid "Click to chat with this contact"
msgid "Click to chat with this contact"
msgstr "点击与对方交谈"
msgstr "点击与对方交谈"
#: src/converse-rosterview.js:5
88
#: src/converse-rosterview.js:5
97
msgid "Name"
msgid "Name"
msgstr ""
msgstr ""
#: src/converse-rosterview.js:6
43
#: src/converse-rosterview.js:6
52
#, fuzzy
#, fuzzy
msgid "Are you sure you want to remove this contact?"
msgid "Are you sure you want to remove this contact?"
msgstr "确定移除联系人吗?"
msgstr "确定移除联系人吗?"
#: src/converse-rosterview.js:6
54
#: src/converse-rosterview.js:6
63
msgid "Sorry, there was an error while trying to remove "
msgid "Sorry, there was an error while trying to remove "
msgstr ""
msgstr ""
#: src/converse-rosterview.js:6
73
#: src/converse-rosterview.js:6
82
#, fuzzy
#, fuzzy
msgid "Are you sure you want to decline this contact request?"
msgid "Are you sure you want to decline this contact request?"
msgstr "确定移除联系人吗?"
msgstr "确定移除联系人吗?"
...
...
package.json
View file @
8a74cc33
{
{
"name"
:
"converse.js"
,
"name"
:
"converse.js"
,
"version"
:
"1.0.
0
"
,
"version"
:
"1.0.
1
"
,
"description"
:
"Browser based XMPP instant messaging client"
,
"description"
:
"Browser based XMPP instant messaging client"
,
"main"
:
"main.js"
,
"main"
:
"main.js"
,
"directories"
:
{
"directories"
:
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment