New release 1.0.2

This commit is contained in:
JC Brand 2016-05-24 08:47:22 +00:00
parent 6550544b41
commit 1545018edf
25 changed files with 749 additions and 589 deletions

View File

@ -1,7 +1,7 @@
{
"name": "converse.js",
"description": "Web-based XMPP/Jabber chat client written in javascript",
"version": "1.0.1",
"version": "1.0.2",
"license": "MPL-2.0",
"devDependencies": {
"jasmine": "https://github.com/jcbrand/jasmine.git#1_3_x",

File diff suppressed because it is too large Load Diff

View File

@ -428,9 +428,8 @@ var requirejs, require, define;
define("components/almond/almond.js", function(){});
/**
* @license RequireJS text 2.0.14 Copyright (c) 2010-2014, The Dojo Foundation All Rights Reserved.
* Available via the MIT or new BSD license.
* see: http://github.com/requirejs/text for details
* @license text 2.0.15 Copyright jQuery Foundation and other contributors.
* Released under MIT license, http://github.com/requirejs/text/LICENSE
*/
/*jslint regexp: true */
/*global require, XMLHttpRequest, ActiveXObject,
@ -451,8 +450,26 @@ define('text',['module'], function (module) {
buildMap = {},
masterConfig = (module.config && module.config()) || {};
function useDefault(value, defaultValue) {
return value === undefined || value === '' ? defaultValue : value;
}
//Allow for default ports for http and https.
function isSamePort(protocol1, port1, protocol2, port2) {
if (port1 === port2) {
return true;
} else if (protocol1 === protocol2) {
if (protocol1 === 'http') {
return useDefault(port1, '80') === useDefault(port2, '80');
} else if (protocol1 === 'https') {
return useDefault(port1, '443') === useDefault(port2, '443');
}
}
return false;
}
text = {
version: '2.0.14',
version: '2.0.15',
strip: function (content) {
//Strips <?xml ...?> declarations so that external SVG and XML
@ -570,7 +587,7 @@ define('text',['module'], function (module) {
return (!uProtocol || uProtocol === protocol) &&
(!uHostName || uHostName.toLowerCase() === hostname.toLowerCase()) &&
((!uPort && !uHostName) || uPort === port);
((!uPort && !uHostName) || isSamePort(uProtocol, uPort, protocol, port));
},
finishLoad: function (name, strip, content, onLoad) {
@ -6627,7 +6644,8 @@ define('text!ca',[],function () { return '{\n "domain": "converse",\n "local
* fetching the roster we are ready to receive presence
* updates from our contacts.
*/
converse.roster.fetchFromServer(converse.xmppstatus.sendPresence);
converse.roster.fetchFromServer(
converse.xmppstatus.sendPresence.bind(converse.xmppstatus));
} else if (converse.send_initial_presence) {
/* We're not going to fetch the roster again because we have
* it already cached in sessionStorage, but we still need to

461
dist/converse.js vendored

File diff suppressed because it is too large Load Diff

View File

@ -48,9 +48,9 @@ copyright = u'2014, JC Brand'
# built documents.
#
# The short X.Y version.
version = '1.0.1'
version = '1.0.2'
# The full version, including alpha/beta/rc tags.
release = '1.0.1'
release = '1.0.2'
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.

View File

@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Converse.js 0.4\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-05-24 08:15+0000\n"
"POT-Creation-Date: 2016-05-24 08:43+0000\n"
"PO-Revision-Date: 2016-04-07 10:34+0000\n"
"Last-Translator: JC Brand <jc@opkode.com>\n"
"Language-Team: Afrikaans\n"
@ -983,35 +983,35 @@ msgstr "Geselserig"
msgid "Extended Away"
msgstr "Weg vir langer"
#: src/converse-rosterview.js:575 src/converse-rosterview.js:596
#: src/converse-rosterview.js:576 src/converse-rosterview.js:597
msgid "Click to remove this contact"
msgstr "Klik om hierdie kontak te verwyder"
#: src/converse-rosterview.js:583
#: src/converse-rosterview.js:584
msgid "Click to accept this contact request"
msgstr "Klik om hierdie kontakversoek te aanvaar"
#: src/converse-rosterview.js:584
#: src/converse-rosterview.js:585
msgid "Click to decline this contact request"
msgstr "Klik om hierdie kontakversoek te weier"
#: src/converse-rosterview.js:595
#: src/converse-rosterview.js:596
msgid "Click to chat with this contact"
msgstr "Klik om met hierdie kontak te klets"
#: src/converse-rosterview.js:597
#: src/converse-rosterview.js:598
msgid "Name"
msgstr "Naam"
#: src/converse-rosterview.js:652
#: src/converse-rosterview.js:653
msgid "Are you sure you want to remove this contact?"
msgstr "Is u seker u wil hierdie gespreksmaat verwyder?"
#: src/converse-rosterview.js:663
#: src/converse-rosterview.js:664
msgid "Sorry, there was an error while trying to remove "
msgstr "Jammer, 'n fout het voorgekom tydens die verwydering van "
#: src/converse-rosterview.js:682
#: src/converse-rosterview.js:683
msgid "Are you sure you want to decline this contact request?"
msgstr "Is u seker dat u hierdie persoon se versoek wil afkeur?"

View File

@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Converse.js 0.4\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-05-24 08:15+0000\n"
"POT-Creation-Date: 2016-05-24 08:43+0000\n"
"PO-Revision-Date: 2016-01-25 17:25+0100\n"
"Last-Translator: Ruben Mansilla <ramansilla@gmail.com>\n"
"Language-Team: CA <product@spamina.com>\n"
@ -995,35 +995,35 @@ msgstr ""
msgid "Extended Away"
msgstr ""
#: src/converse-rosterview.js:575 src/converse-rosterview.js:596
#: src/converse-rosterview.js:576 src/converse-rosterview.js:597
msgid "Click to remove this contact"
msgstr "Feu clic per eliminar aquest contacte"
#: src/converse-rosterview.js:583
#: src/converse-rosterview.js:584
msgid "Click to accept this contact request"
msgstr "Feu clic per acceptar aquesta sol·licitud de contacte"
#: src/converse-rosterview.js:584
#: src/converse-rosterview.js:585
msgid "Click to decline this contact request"
msgstr "Feu clic per rebutjar aquesta sol·licitud de contacte"
#: src/converse-rosterview.js:595
#: src/converse-rosterview.js:596
msgid "Click to chat with this contact"
msgstr "Feu clic per conversar amb aquest contacte"
#: src/converse-rosterview.js:597
#: src/converse-rosterview.js:598
msgid "Name"
msgstr "Nom"
#: src/converse-rosterview.js:652
#: src/converse-rosterview.js:653
msgid "Are you sure you want to remove this contact?"
msgstr "Segur que voleu eliminar aquest contacte?"
#: src/converse-rosterview.js:663
#: src/converse-rosterview.js:664
msgid "Sorry, there was an error while trying to remove "
msgstr "S'ha produït un error en intentar eliminar "
#: src/converse-rosterview.js:682
#: src/converse-rosterview.js:683
msgid "Are you sure you want to decline this contact request?"
msgstr "Segur que voleu rebutjar aquesta sol·licitud de contacte?"

View File

@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Converse.js 0.10.1\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-05-24 08:16+0000\n"
"POT-Creation-Date: 2016-05-24 08:43+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@ -938,34 +938,34 @@ msgstr ""
msgid "Extended Away"
msgstr ""
#: src/converse-rosterview.js:575 src/converse-rosterview.js:596
#: src/converse-rosterview.js:576 src/converse-rosterview.js:597
msgid "Click to remove this contact"
msgstr ""
#: src/converse-rosterview.js:583
#: src/converse-rosterview.js:584
msgid "Click to accept this contact request"
msgstr ""
#: src/converse-rosterview.js:584
#: src/converse-rosterview.js:585
msgid "Click to decline this contact request"
msgstr ""
#: src/converse-rosterview.js:595
#: src/converse-rosterview.js:596
msgid "Click to chat with this contact"
msgstr ""
#: src/converse-rosterview.js:597
#: src/converse-rosterview.js:598
msgid "Name"
msgstr ""
#: src/converse-rosterview.js:652
#: src/converse-rosterview.js:653
msgid "Are you sure you want to remove this contact?"
msgstr ""
#: src/converse-rosterview.js:663
#: src/converse-rosterview.js:664
msgid "Sorry, there was an error while trying to remove "
msgstr ""
#: src/converse-rosterview.js:682
#: src/converse-rosterview.js:683
msgid "Are you sure you want to decline this contact request?"
msgstr ""

View File

@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Converse.js 0.4\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-05-24 08:15+0000\n"
"POT-Creation-Date: 2016-05-24 08:43+0000\n"
"PO-Revision-Date: 2016-04-07 10:20+0000\n"
"Last-Translator: JC Brand <jc@opkode.com>\n"
"Language-Team: German\n"
@ -962,35 +962,35 @@ msgstr ""
msgid "Extended Away"
msgstr ""
#: src/converse-rosterview.js:575 src/converse-rosterview.js:596
#: src/converse-rosterview.js:576 src/converse-rosterview.js:597
msgid "Click to remove this contact"
msgstr "Hier klicken um diesen Kontakt zu entfernen"
#: src/converse-rosterview.js:583
#: src/converse-rosterview.js:584
msgid "Click to accept this contact request"
msgstr "Hier klicken um diese Kontaktanfrage zu akzeptieren"
#: src/converse-rosterview.js:584
#: src/converse-rosterview.js:585
msgid "Click to decline this contact request"
msgstr "Hier klicken um diese Kontaktanfrage zu abzulehnen"
#: src/converse-rosterview.js:595
#: src/converse-rosterview.js:596
msgid "Click to chat with this contact"
msgstr "Hier klicken um mit diesem Kontakt zu chatten"
#: src/converse-rosterview.js:597
#: src/converse-rosterview.js:598
msgid "Name"
msgstr ""
#: src/converse-rosterview.js:652
#: src/converse-rosterview.js:653
msgid "Are you sure you want to remove this contact?"
msgstr "Wollen Sie diesen Kontakt wirklich entfernen?"
#: src/converse-rosterview.js:663
#: src/converse-rosterview.js:664
msgid "Sorry, there was an error while trying to remove "
msgstr ""
#: src/converse-rosterview.js:682
#: src/converse-rosterview.js:683
msgid "Are you sure you want to decline this contact request?"
msgstr "Wollen Sie diese Kontaktanfrage wirklich ablehnen?"

View File

@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Converse.js 0.4\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-05-24 08:15+0000\n"
"POT-Creation-Date: 2016-05-24 08:43+0000\n"
"PO-Revision-Date: 2015-05-01 12:37+0200\n"
"Last-Translator: JC Brand <jc@opkode.com>\n"
"Language-Team: English\n"
@ -946,35 +946,35 @@ msgstr ""
msgid "Extended Away"
msgstr ""
#: src/converse-rosterview.js:575 src/converse-rosterview.js:596
#: src/converse-rosterview.js:576 src/converse-rosterview.js:597
msgid "Click to remove this contact"
msgstr "Click to remove this contact"
#: src/converse-rosterview.js:583
#: src/converse-rosterview.js:584
msgid "Click to accept this contact request"
msgstr ""
#: src/converse-rosterview.js:584
#: src/converse-rosterview.js:585
msgid "Click to decline this contact request"
msgstr ""
#: src/converse-rosterview.js:595
#: src/converse-rosterview.js:596
msgid "Click to chat with this contact"
msgstr "Click to chat with this contact"
#: src/converse-rosterview.js:597
#: src/converse-rosterview.js:598
msgid "Name"
msgstr ""
#: src/converse-rosterview.js:652
#: src/converse-rosterview.js:653
msgid "Are you sure you want to remove this contact?"
msgstr ""
#: src/converse-rosterview.js:663
#: src/converse-rosterview.js:664
msgid "Sorry, there was an error while trying to remove "
msgstr ""
#: src/converse-rosterview.js:682
#: src/converse-rosterview.js:683
msgid "Are you sure you want to decline this contact request?"
msgstr ""

View File

@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Converse.js 0.4\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-05-24 08:15+0000\n"
"POT-Creation-Date: 2016-05-24 08:43+0000\n"
"PO-Revision-Date: 2016-04-07 10:21+0000\n"
"Last-Translator: Javier Lopez <m@javier.io>\n"
"Language-Team: ES <LL@li.org>\n"
@ -1009,37 +1009,37 @@ msgstr ""
msgid "Extended Away"
msgstr ""
#: src/converse-rosterview.js:575 src/converse-rosterview.js:596
#: src/converse-rosterview.js:576 src/converse-rosterview.js:597
msgid "Click to remove this contact"
msgstr "Haga click para eliminar este contacto"
#: src/converse-rosterview.js:583
#, fuzzy
msgid "Click to accept this contact request"
msgstr "Haga click para eliminar este contacto"
#: src/converse-rosterview.js:584
#, fuzzy
msgid "Click to accept this contact request"
msgstr "Haga click para eliminar este contacto"
#: src/converse-rosterview.js:585
#, fuzzy
msgid "Click to decline this contact request"
msgstr "Haga click para eliminar este contacto"
#: src/converse-rosterview.js:595
#: src/converse-rosterview.js:596
msgid "Click to chat with this contact"
msgstr "Haga click para conversar con este contacto"
#: src/converse-rosterview.js:597
#: src/converse-rosterview.js:598
msgid "Name"
msgstr ""
#: src/converse-rosterview.js:652
#: src/converse-rosterview.js:653
msgid "Are you sure you want to remove this contact?"
msgstr "¿Esta seguro de querer eliminar este contacto?"
#: src/converse-rosterview.js:663
#: src/converse-rosterview.js:664
msgid "Sorry, there was an error while trying to remove "
msgstr ""
#: src/converse-rosterview.js:682
#: src/converse-rosterview.js:683
#, fuzzy
msgid "Are you sure you want to decline this contact request?"
msgstr "¿Esta seguro de querer eliminar este contacto?"

View File

@ -5,7 +5,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Converse.js 0.4\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-05-24 08:15+0000\n"
"POT-Creation-Date: 2016-05-24 08:43+0000\n"
"PO-Revision-Date: 2016-04-07 10:22+0000\n"
"Language-Team: FR <LL@li.org>\n"
"Language: fr\n"
@ -990,35 +990,35 @@ msgstr ""
msgid "Extended Away"
msgstr ""
#: src/converse-rosterview.js:575 src/converse-rosterview.js:596
#: src/converse-rosterview.js:576 src/converse-rosterview.js:597
msgid "Click to remove this contact"
msgstr "Cliquez pour supprimer ce contact"
#: src/converse-rosterview.js:583
#: src/converse-rosterview.js:584
msgid "Click to accept this contact request"
msgstr "Cliquez pour accepter la demande de ce contact"
#: src/converse-rosterview.js:584
#: src/converse-rosterview.js:585
msgid "Click to decline this contact request"
msgstr "Cliquez pour refuser la demande de ce contact"
#: src/converse-rosterview.js:595
#: src/converse-rosterview.js:596
msgid "Click to chat with this contact"
msgstr "Cliquez pour discuter avec ce contact"
#: src/converse-rosterview.js:597
#: src/converse-rosterview.js:598
msgid "Name"
msgstr ""
#: src/converse-rosterview.js:652
#: src/converse-rosterview.js:653
msgid "Are you sure you want to remove this contact?"
msgstr "Êtes-vous sûr de vouloir supprimer ce contact?"
#: src/converse-rosterview.js:663
#: src/converse-rosterview.js:664
msgid "Sorry, there was an error while trying to remove "
msgstr ""
#: src/converse-rosterview.js:682
#: src/converse-rosterview.js:683
msgid "Are you sure you want to decline this contact request?"
msgstr "Êtes-vous sûr de vouloir refuser la demande de ce contact?"

View File

@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Converse.js 0.8.8\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-05-24 08:15+0000\n"
"POT-Creation-Date: 2016-05-24 08:43+0000\n"
"PO-Revision-Date: 2016-04-07 10:21+0000\n"
"Last-Translator: GreenLunar <https://github.com/GreenLunar>\n"
"Language-Team: Rahut <http://sourceforge.net/projects/rahut/>\n"
@ -983,35 +983,35 @@ msgstr ""
msgid "Extended Away"
msgstr ""
#: src/converse-rosterview.js:575 src/converse-rosterview.js:596
#: src/converse-rosterview.js:576 src/converse-rosterview.js:597
msgid "Click to remove this contact"
msgstr "לחץ כדי להסיר את איש קשר זה"
#: src/converse-rosterview.js:583
#: src/converse-rosterview.js:584
msgid "Click to accept this contact request"
msgstr "לחץ כדי לקבל את בקשת איש קשר זה"
#: src/converse-rosterview.js:584
#: src/converse-rosterview.js:585
msgid "Click to decline this contact request"
msgstr "לחץ כדי לסרב את בקשת איש קשר זה"
#: src/converse-rosterview.js:595
#: src/converse-rosterview.js:596
msgid "Click to chat with this contact"
msgstr "לחץ כדי לשוחח עם איש קשר זה"
#: src/converse-rosterview.js:597
#: src/converse-rosterview.js:598
msgid "Name"
msgstr "שם"
#: src/converse-rosterview.js:652
#: src/converse-rosterview.js:653
msgid "Are you sure you want to remove this contact?"
msgstr "האם אתה בטוח כי ברצונך להסיר את איש קשר זה?"
#: src/converse-rosterview.js:663
#: src/converse-rosterview.js:664
msgid "Sorry, there was an error while trying to remove "
msgstr "מצטערים, היתה שגיאה במהלך ניסיון להסיר את "
#: src/converse-rosterview.js:682
#: src/converse-rosterview.js:683
msgid "Are you sure you want to decline this contact request?"
msgstr "האם אתה בטוח כי ברצונך לסרב את בקשת איש קשר זה?"

View File

@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Converse.js 0.8.8\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-05-24 08:15+0000\n"
"POT-Creation-Date: 2016-05-24 08:43+0000\n"
"PO-Revision-Date: 2016-04-07 10:23+0000\n"
"Last-Translator: Meskó Balázs <meskobalazs@gmail.com>\n"
"Language-Team: Hungarian\n"
@ -978,35 +978,35 @@ msgstr ""
msgid "Extended Away"
msgstr ""
#: src/converse-rosterview.js:575 src/converse-rosterview.js:596
#: src/converse-rosterview.js:576 src/converse-rosterview.js:597
msgid "Click to remove this contact"
msgstr "Partner törlése"
#: src/converse-rosterview.js:583
#: src/converse-rosterview.js:584
msgid "Click to accept this contact request"
msgstr "Partner felvételének elfogadása"
#: src/converse-rosterview.js:584
#: src/converse-rosterview.js:585
msgid "Click to decline this contact request"
msgstr "Partner felvételének megtagadása"
#: src/converse-rosterview.js:595
#: src/converse-rosterview.js:596
msgid "Click to chat with this contact"
msgstr "Csevegés indítása ezzel a partnerünkkel"
#: src/converse-rosterview.js:597
#: src/converse-rosterview.js:598
msgid "Name"
msgstr "Név"
#: src/converse-rosterview.js:652
#: src/converse-rosterview.js:653
msgid "Are you sure you want to remove this contact?"
msgstr "Valóban törölni szeretné a csevegőpartnerét?"
#: src/converse-rosterview.js:663
#: src/converse-rosterview.js:664
msgid "Sorry, there was an error while trying to remove "
msgstr "Sajnáljuk, hiba történt a törlés során"
#: src/converse-rosterview.js:682
#: src/converse-rosterview.js:683
msgid "Are you sure you want to decline this contact request?"
msgstr "Valóban elutasítja ezt a partnerkérelmet?"

View File

@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Converse.js 0.7.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-05-24 08:15+0000\n"
"POT-Creation-Date: 2016-05-24 08:43+0000\n"
"PO-Revision-Date: 2014-01-25 21:30+0700\n"
"Last-Translator: Priyadi Iman Nurcahyo <priyadi@priyadi.net>\n"
"Language-Team: Bahasa Indonesia\n"
@ -1005,38 +1005,38 @@ msgstr ""
msgid "Extended Away"
msgstr ""
#: src/converse-rosterview.js:575 src/converse-rosterview.js:596
#: src/converse-rosterview.js:576 src/converse-rosterview.js:597
msgid "Click to remove this contact"
msgstr "Klik untuk menghapus teman ini"
#: src/converse-rosterview.js:583
#, fuzzy
msgid "Click to accept this contact request"
msgstr "Klik untuk menghapus teman ini"
#: src/converse-rosterview.js:584
#, fuzzy
msgid "Click to accept this contact request"
msgstr "Klik untuk menghapus teman ini"
#: src/converse-rosterview.js:585
#, fuzzy
msgid "Click to decline this contact request"
msgstr "Klik untuk menghapus teman ini"
#: src/converse-rosterview.js:595
#: src/converse-rosterview.js:596
msgid "Click to chat with this contact"
msgstr "Klik untuk mulai perbinjangan dengan teman ini"
#: src/converse-rosterview.js:597
#: src/converse-rosterview.js:598
msgid "Name"
msgstr ""
#: src/converse-rosterview.js:652
#: src/converse-rosterview.js:653
#, fuzzy
msgid "Are you sure you want to remove this contact?"
msgstr "Klik untuk menghapus teman ini"
#: src/converse-rosterview.js:663
#: src/converse-rosterview.js:664
msgid "Sorry, there was an error while trying to remove "
msgstr ""
#: src/converse-rosterview.js:682
#: src/converse-rosterview.js:683
#, fuzzy
msgid "Are you sure you want to decline this contact request?"
msgstr "Klik untuk menghapus teman ini"

View File

@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Converse.js 0.4\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-05-24 08:15+0000\n"
"POT-Creation-Date: 2016-05-24 08:43+0000\n"
"PO-Revision-Date: 2016-04-07 10:23+0000\n"
"Last-Translator: Fabio Bas <ctrlaltca@gmail.com>\n"
"Language-Team: Italian\n"
@ -965,35 +965,35 @@ msgstr ""
msgid "Extended Away"
msgstr ""
#: src/converse-rosterview.js:575 src/converse-rosterview.js:596
#: src/converse-rosterview.js:576 src/converse-rosterview.js:597
msgid "Click to remove this contact"
msgstr "Clicca per rimuovere questo contatto"
#: src/converse-rosterview.js:583
#: src/converse-rosterview.js:584
msgid "Click to accept this contact request"
msgstr "Clicca per accettare questa richiesta di contatto"
#: src/converse-rosterview.js:584
#: src/converse-rosterview.js:585
msgid "Click to decline this contact request"
msgstr "Clicca per rifiutare questa richiesta di contatto"
#: src/converse-rosterview.js:595
#: src/converse-rosterview.js:596
msgid "Click to chat with this contact"
msgstr "Clicca per parlare con questo contatto"
#: src/converse-rosterview.js:597
#: src/converse-rosterview.js:598
msgid "Name"
msgstr "Nome"
#: src/converse-rosterview.js:652
#: src/converse-rosterview.js:653
msgid "Are you sure you want to remove this contact?"
msgstr "Sei sicuro di voler rimuovere questo contatto?"
#: src/converse-rosterview.js:663
#: src/converse-rosterview.js:664
msgid "Sorry, there was an error while trying to remove "
msgstr "Si è verificato un errore durante il tentativo di rimozione"
#: src/converse-rosterview.js:682
#: src/converse-rosterview.js:683
msgid "Are you sure you want to decline this contact request?"
msgstr "Sei sicuro dirifiutare questa richiesta di contatto?"

View File

@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Converse.js 0.4\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-05-24 08:15+0000\n"
"POT-Creation-Date: 2016-05-24 08:43+0000\n"
"PO-Revision-Date: 2014-01-07 11:32+0900\n"
"Last-Translator: Mako N <mako@pasero.net>\n"
"Language-Team: Language JA\n"
@ -996,38 +996,38 @@ msgstr ""
msgid "Extended Away"
msgstr ""
#: src/converse-rosterview.js:575 src/converse-rosterview.js:596
#: src/converse-rosterview.js:576 src/converse-rosterview.js:597
msgid "Click to remove this contact"
msgstr "クリックしてこの相手先を削除"
#: src/converse-rosterview.js:583
#, fuzzy
msgid "Click to accept this contact request"
msgstr "クリックしてこの相手先を削除"
#: src/converse-rosterview.js:584
#, fuzzy
msgid "Click to accept this contact request"
msgstr "クリックしてこの相手先を削除"
#: src/converse-rosterview.js:585
#, fuzzy
msgid "Click to decline this contact request"
msgstr "クリックしてこの相手先を削除"
#: src/converse-rosterview.js:595
#: src/converse-rosterview.js:596
msgid "Click to chat with this contact"
msgstr "クリックしてこの相手先とチャット"
#: src/converse-rosterview.js:597
#: src/converse-rosterview.js:598
msgid "Name"
msgstr ""
#: src/converse-rosterview.js:652
#: src/converse-rosterview.js:653
#, fuzzy
msgid "Are you sure you want to remove this contact?"
msgstr "クリックしてこの相手先を削除"
#: src/converse-rosterview.js:663
#: src/converse-rosterview.js:664
msgid "Sorry, there was an error while trying to remove "
msgstr ""
#: src/converse-rosterview.js:682
#: src/converse-rosterview.js:683
#, fuzzy
msgid "Are you sure you want to decline this contact request?"
msgstr "クリックしてこの相手先を削除"

View File

@ -2,7 +2,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Converse JS 0.8.6\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-05-24 08:15+0000\n"
"POT-Creation-Date: 2016-05-24 08:43+0000\n"
"PO-Revision-Date: 2016-04-07 10:23+0000\n"
"Last-Translator: Andreas Lorentsen <andreas.lorentsen@gmail.com>\n"
"Language-Team: \n"
@ -995,35 +995,35 @@ msgstr ""
msgid "Extended Away"
msgstr ""
#: src/converse-rosterview.js:575 src/converse-rosterview.js:596
#: src/converse-rosterview.js:576 src/converse-rosterview.js:597
msgid "Click to remove this contact"
msgstr "Klikk for å fjerne denne kontakten"
#: src/converse-rosterview.js:583
#: src/converse-rosterview.js:584
msgid "Click to accept this contact request"
msgstr "Klikk for å Godta denne kontaktforespørselen"
#: src/converse-rosterview.js:584
#: src/converse-rosterview.js:585
msgid "Click to decline this contact request"
msgstr "Klikk for å avslå denne kontaktforespørselen"
#: src/converse-rosterview.js:595
#: src/converse-rosterview.js:596
msgid "Click to chat with this contact"
msgstr "Klikk for å chatte med denne kontakten"
#: src/converse-rosterview.js:597
#: src/converse-rosterview.js:598
msgid "Name"
msgstr ""
#: src/converse-rosterview.js:652
#: src/converse-rosterview.js:653
msgid "Are you sure you want to remove this contact?"
msgstr "Er du sikker på at du vil fjerne denne kontakten?"
#: src/converse-rosterview.js:663
#: src/converse-rosterview.js:664
msgid "Sorry, there was an error while trying to remove "
msgstr ""
#: src/converse-rosterview.js:682
#: src/converse-rosterview.js:683
msgid "Are you sure you want to decline this contact request?"
msgstr "Er du sikker på at du vil avslå denne kontaktforespørselen?"

View File

@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Converse.js 0.4\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-05-24 08:15+0000\n"
"POT-Creation-Date: 2016-05-24 08:43+0000\n"
"PO-Revision-Date: 2016-04-07 10:21+0000\n"
"Last-Translator: Maarten Kling <maarten@fourdigits.nl>\n"
"Language-Team: Dutch\n"
@ -977,38 +977,38 @@ msgstr ""
msgid "Extended Away"
msgstr ""
#: src/converse-rosterview.js:575 src/converse-rosterview.js:596
#: src/converse-rosterview.js:576 src/converse-rosterview.js:597
msgid "Click to remove this contact"
msgstr "Klik om contact te verwijderen"
#: src/converse-rosterview.js:583
#, fuzzy
msgid "Click to accept this contact request"
msgstr "Klik om contact te verwijderen"
#: src/converse-rosterview.js:584
#, fuzzy
msgid "Click to accept this contact request"
msgstr "Klik om contact te verwijderen"
#: src/converse-rosterview.js:585
#, fuzzy
msgid "Click to decline this contact request"
msgstr "Klik om contact te verwijderen"
#: src/converse-rosterview.js:595
#: src/converse-rosterview.js:596
msgid "Click to chat with this contact"
msgstr "Klik om te chatten met contact"
#: src/converse-rosterview.js:597
#: src/converse-rosterview.js:598
msgid "Name"
msgstr ""
#: src/converse-rosterview.js:652
#: src/converse-rosterview.js:653
#, fuzzy
msgid "Are you sure you want to remove this contact?"
msgstr "Klik om contact te verwijderen"
#: src/converse-rosterview.js:663
#: src/converse-rosterview.js:664
msgid "Sorry, there was an error while trying to remove "
msgstr ""
#: src/converse-rosterview.js:682
#: src/converse-rosterview.js:683
#, fuzzy
msgid "Are you sure you want to decline this contact request?"
msgstr "Klik om contact te verwijderen"

View File

@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Converse.js 0.9.6\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-05-24 08:15+0000\n"
"POT-Creation-Date: 2016-05-24 08:43+0000\n"
"PO-Revision-Date: 2016-04-07 10:22+0000\n"
"Last-Translator: Serge Victor <converse.js@random.re>\n"
"Language-Team: Polish\n"
@ -986,35 +986,35 @@ msgstr ""
msgid "Extended Away"
msgstr ""
#: src/converse-rosterview.js:575 src/converse-rosterview.js:596
#: src/converse-rosterview.js:576 src/converse-rosterview.js:597
msgid "Click to remove this contact"
msgstr "Kliknij aby usunąć kontakt"
#: src/converse-rosterview.js:583
#: src/converse-rosterview.js:584
msgid "Click to accept this contact request"
msgstr "Klknij aby zaakceptować życzenie nawiązania kontaktu"
#: src/converse-rosterview.js:584
#: src/converse-rosterview.js:585
msgid "Click to decline this contact request"
msgstr "Kliknij aby odrzucić życzenie nawiązania kontaktu"
#: src/converse-rosterview.js:595
#: src/converse-rosterview.js:596
msgid "Click to chat with this contact"
msgstr "Kliknij aby porozmawiać z kontaktem"
#: src/converse-rosterview.js:597
#: src/converse-rosterview.js:598
msgid "Name"
msgstr "Nazwa"
#: src/converse-rosterview.js:652
#: src/converse-rosterview.js:653
msgid "Are you sure you want to remove this contact?"
msgstr "Czy potwierdzasz zamiar usnunięcia tego kontaktu?"
#: src/converse-rosterview.js:663
#: src/converse-rosterview.js:664
msgid "Sorry, there was an error while trying to remove "
msgstr "Wystąpił błąd w trakcie próby usunięcia "
#: src/converse-rosterview.js:682
#: src/converse-rosterview.js:683
msgid "Are you sure you want to decline this contact request?"
msgstr "Czy potwierdzasz odrzucenie chęci nawiązania kontaktu?"

View File

@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Converse.js 0.6.3\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-05-24 08:15+0000\n"
"POT-Creation-Date: 2016-05-24 08:43+0000\n"
"PO-Revision-Date: 2016-04-07 10:23+0000\n"
"Last-Translator: Alan Meira <alan@engarte.com>\n"
"Language-Team: Brazilian Portuguese\n"
@ -1010,38 +1010,38 @@ msgstr ""
msgid "Extended Away"
msgstr ""
#: src/converse-rosterview.js:575 src/converse-rosterview.js:596
#: src/converse-rosterview.js:576 src/converse-rosterview.js:597
msgid "Click to remove this contact"
msgstr "Clique para remover o contato"
#: src/converse-rosterview.js:583
#, fuzzy
msgid "Click to accept this contact request"
msgstr "Clique para remover o contato"
#: src/converse-rosterview.js:584
#, fuzzy
msgid "Click to accept this contact request"
msgstr "Clique para remover o contato"
#: src/converse-rosterview.js:585
#, fuzzy
msgid "Click to decline this contact request"
msgstr "Clique para remover o contato"
#: src/converse-rosterview.js:595
#: src/converse-rosterview.js:596
msgid "Click to chat with this contact"
msgstr "Clique para conversar com o contato"
#: src/converse-rosterview.js:597
#: src/converse-rosterview.js:598
msgid "Name"
msgstr ""
#: src/converse-rosterview.js:652
#: src/converse-rosterview.js:653
#, fuzzy
msgid "Are you sure you want to remove this contact?"
msgstr "Clique para remover o contato"
#: src/converse-rosterview.js:663
#: src/converse-rosterview.js:664
msgid "Sorry, there was an error while trying to remove "
msgstr ""
#: src/converse-rosterview.js:682
#: src/converse-rosterview.js:683
#, fuzzy
msgid "Are you sure you want to decline this contact request?"
msgstr "Clique para remover o contato"

View File

@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Converse.js 0.10\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-05-24 08:15+0000\n"
"POT-Creation-Date: 2016-05-24 08:43+0000\n"
"PO-Revision-Date: 2016-04-07 10:22+0000\n"
"Last-Translator: Laconic Team <info@laconic.website>\n"
"Language-Team: Laconic Team <info@laconic.website>\n"
@ -983,35 +983,35 @@ msgstr ""
msgid "Extended Away"
msgstr ""
#: src/converse-rosterview.js:575 src/converse-rosterview.js:596
#: src/converse-rosterview.js:576 src/converse-rosterview.js:597
msgid "Click to remove this contact"
msgstr "Удалить контакт"
#: src/converse-rosterview.js:583
#: src/converse-rosterview.js:584
msgid "Click to accept this contact request"
msgstr "Кликните, чтобы принять запрос этого контакта"
#: src/converse-rosterview.js:584
#: src/converse-rosterview.js:585
msgid "Click to decline this contact request"
msgstr "Кликните, чтобы отклонить запрос этого контакта"
#: src/converse-rosterview.js:595
#: src/converse-rosterview.js:596
msgid "Click to chat with this contact"
msgstr "Кликните, чтобы начать общение"
#: src/converse-rosterview.js:597
#: src/converse-rosterview.js:598
msgid "Name"
msgstr "Имя"
#: src/converse-rosterview.js:652
#: src/converse-rosterview.js:653
msgid "Are you sure you want to remove this contact?"
msgstr "Вы уверены, что хотите удалить этот контакт?"
#: src/converse-rosterview.js:663
#: src/converse-rosterview.js:664
msgid "Sorry, there was an error while trying to remove "
msgstr "Возникла ошибка при удалении "
#: src/converse-rosterview.js:682
#: src/converse-rosterview.js:683
msgid "Are you sure you want to decline this contact request?"
msgstr "Вы уверены, что хотите отклонить запрос от этого контакта?"

View File

@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Converse.js 0.7.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-05-24 08:15+0000\n"
"POT-Creation-Date: 2016-05-24 08:43+0000\n"
"PO-Revision-Date: 2016-04-07 10:22+0000\n"
"Last-Translator: Andriy Kopystyansky <anri@polynet.lviv.ua>\n"
"Language-Team: Ukrainian\n"
@ -984,35 +984,35 @@ msgstr ""
msgid "Extended Away"
msgstr ""
#: src/converse-rosterview.js:575 src/converse-rosterview.js:596
#: src/converse-rosterview.js:576 src/converse-rosterview.js:597
msgid "Click to remove this contact"
msgstr "Клацніть, щоб видалити цей контакт"
#: src/converse-rosterview.js:583
#: src/converse-rosterview.js:584
msgid "Click to accept this contact request"
msgstr "Клацніть, щоб прийняти цей запит контакту"
#: src/converse-rosterview.js:584
#: src/converse-rosterview.js:585
msgid "Click to decline this contact request"
msgstr "Клацніть, щоб відхилити цей запит контакту"
#: src/converse-rosterview.js:595
#: src/converse-rosterview.js:596
msgid "Click to chat with this contact"
msgstr "Клацніть, щоб почати розмову з цим контактом"
#: src/converse-rosterview.js:597
#: src/converse-rosterview.js:598
msgid "Name"
msgstr ""
#: src/converse-rosterview.js:652
#: src/converse-rosterview.js:653
msgid "Are you sure you want to remove this contact?"
msgstr "Ви впевнені, що хочете видалити цей контакт?"
#: src/converse-rosterview.js:663
#: src/converse-rosterview.js:664
msgid "Sorry, there was an error while trying to remove "
msgstr ""
#: src/converse-rosterview.js:682
#: src/converse-rosterview.js:683
msgid "Are you sure you want to decline this contact request?"
msgstr "Ви впевнені, що хочете відхилити цей запит контакту?"

View File

@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Converse.js 0.4\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-05-24 08:15+0000\n"
"POT-Creation-Date: 2016-05-24 08:43+0000\n"
"PO-Revision-Date: 2016-04-07 10:23+0000\n"
"Last-Translator: Huxisuz Hu <huxisuz@gmail.com>\n"
"Language-Team: Language zh\n"
@ -992,38 +992,38 @@ msgstr ""
msgid "Extended Away"
msgstr ""
#: src/converse-rosterview.js:575 src/converse-rosterview.js:596
#: src/converse-rosterview.js:576 src/converse-rosterview.js:597
msgid "Click to remove this contact"
msgstr "点击移除联系人"
#: src/converse-rosterview.js:583
#, fuzzy
msgid "Click to accept this contact request"
msgstr "点击移除联系人"
#: src/converse-rosterview.js:584
#, fuzzy
msgid "Click to accept this contact request"
msgstr "点击移除联系人"
#: src/converse-rosterview.js:585
#, fuzzy
msgid "Click to decline this contact request"
msgstr "点击移除联系人"
#: src/converse-rosterview.js:595
#: src/converse-rosterview.js:596
msgid "Click to chat with this contact"
msgstr "点击与对方交谈"
#: src/converse-rosterview.js:597
#: src/converse-rosterview.js:598
msgid "Name"
msgstr ""
#: src/converse-rosterview.js:652
#: src/converse-rosterview.js:653
#, fuzzy
msgid "Are you sure you want to remove this contact?"
msgstr "确定移除联系人吗?"
#: src/converse-rosterview.js:663
#: src/converse-rosterview.js:664
msgid "Sorry, there was an error while trying to remove "
msgstr ""
#: src/converse-rosterview.js:682
#: src/converse-rosterview.js:683
#, fuzzy
msgid "Are you sure you want to decline this contact request?"
msgstr "确定移除联系人吗?"

View File

@ -1,6 +1,6 @@
{
"name": "converse.js",
"version": "1.0.1",
"version": "1.0.2",
"description": "Browser based XMPP instant messaging client",
"main": "main.js",
"directories": {