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", "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.1", "version": "1.0.2",
"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",

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(){}); define("components/almond/almond.js", function(){});
/** /**
* @license RequireJS text 2.0.14 Copyright (c) 2010-2014, The Dojo Foundation All Rights Reserved. * @license text 2.0.15 Copyright jQuery Foundation and other contributors.
* Available via the MIT or new BSD license. * Released under MIT license, http://github.com/requirejs/text/LICENSE
* see: http://github.com/requirejs/text for details
*/ */
/*jslint regexp: true */ /*jslint regexp: true */
/*global require, XMLHttpRequest, ActiveXObject, /*global require, XMLHttpRequest, ActiveXObject,
@ -451,8 +450,26 @@ define('text',['module'], function (module) {
buildMap = {}, buildMap = {},
masterConfig = (module.config && module.config()) || {}; 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 = { text = {
version: '2.0.14', version: '2.0.15',
strip: function (content) { strip: function (content) {
//Strips <?xml ...?> declarations so that external SVG and XML //Strips <?xml ...?> declarations so that external SVG and XML
@ -570,7 +587,7 @@ define('text',['module'], function (module) {
return (!uProtocol || uProtocol === protocol) && return (!uProtocol || uProtocol === protocol) &&
(!uHostName || uHostName.toLowerCase() === hostname.toLowerCase()) && (!uHostName || uHostName.toLowerCase() === hostname.toLowerCase()) &&
((!uPort && !uHostName) || uPort === port); ((!uPort && !uHostName) || isSamePort(uProtocol, uPort, protocol, port));
}, },
finishLoad: function (name, strip, content, onLoad) { 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 * fetching the roster we are ready to receive presence
* updates from our contacts. * 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) { } 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

457
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. # built documents.
# #
# The short X.Y version. # The short X.Y version.
version = '1.0.1' version = '1.0.2'
# The full version, including alpha/beta/rc tags. # 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 # The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages. # for a list of supported languages.

View File

@ -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-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" "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"
@ -983,35 +983,35 @@ msgstr "Geselserig"
msgid "Extended Away" msgid "Extended Away"
msgstr "Weg vir langer" 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" msgid "Click to remove this contact"
msgstr "Klik om hierdie kontak te verwyder" msgstr "Klik om hierdie kontak te verwyder"
#: src/converse-rosterview.js:583 #: src/converse-rosterview.js:584
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:584 #: src/converse-rosterview.js:585
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:595 #: src/converse-rosterview.js:596
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:597 #: src/converse-rosterview.js:598
msgid "Name" msgid "Name"
msgstr "Naam" msgstr "Naam"
#: src/converse-rosterview.js:652 #: src/converse-rosterview.js:653
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:663 #: src/converse-rosterview.js:664
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:682 #: src/converse-rosterview.js:683
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?"

View File

@ -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-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" "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"
@ -995,35 +995,35 @@ msgstr ""
msgid "Extended Away" msgid "Extended Away"
msgstr "" 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" msgid "Click to remove this contact"
msgstr "Feu clic per eliminar aquest contacte" msgstr "Feu clic per eliminar aquest contacte"
#: src/converse-rosterview.js:583 #: src/converse-rosterview.js:584
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:584 #: src/converse-rosterview.js:585
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:595 #: src/converse-rosterview.js:596
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:597 #: src/converse-rosterview.js:598
msgid "Name" msgid "Name"
msgstr "Nom" msgstr "Nom"
#: src/converse-rosterview.js:652 #: src/converse-rosterview.js:653
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:663 #: src/converse-rosterview.js:664
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:682 #: src/converse-rosterview.js:683
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?"

View File

@ -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-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" "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"
@ -938,34 +938,34 @@ msgstr ""
msgid "Extended Away" msgid "Extended Away"
msgstr "" 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" msgid "Click to remove this contact"
msgstr "" msgstr ""
#: src/converse-rosterview.js:583 #: src/converse-rosterview.js:584
msgid "Click to accept this contact request" msgid "Click to accept this contact request"
msgstr "" msgstr ""
#: src/converse-rosterview.js:584 #: src/converse-rosterview.js:585
msgid "Click to decline this contact request" msgid "Click to decline this contact request"
msgstr "" msgstr ""
#: src/converse-rosterview.js:595 #: src/converse-rosterview.js:596
msgid "Click to chat with this contact" msgid "Click to chat with this contact"
msgstr "" msgstr ""
#: src/converse-rosterview.js:597 #: src/converse-rosterview.js:598
msgid "Name" msgid "Name"
msgstr "" msgstr ""
#: src/converse-rosterview.js:652 #: src/converse-rosterview.js:653
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:663 #: src/converse-rosterview.js:664
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:682 #: src/converse-rosterview.js:683
msgid "Are you sure you want to decline this contact request?" msgid "Are you sure you want to decline this contact request?"
msgstr "" msgstr ""

View File

@ -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-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" "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"
@ -962,35 +962,35 @@ msgstr ""
msgid "Extended Away" msgid "Extended Away"
msgstr "" 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" 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:583 #: src/converse-rosterview.js:584
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:584 #: src/converse-rosterview.js:585
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:595 #: src/converse-rosterview.js:596
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:597 #: src/converse-rosterview.js:598
msgid "Name" msgid "Name"
msgstr "" msgstr ""
#: src/converse-rosterview.js:652 #: src/converse-rosterview.js:653
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:663 #: src/converse-rosterview.js:664
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:682 #: src/converse-rosterview.js:683
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?"

View File

@ -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-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" "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"
@ -946,35 +946,35 @@ msgstr ""
msgid "Extended Away" msgid "Extended Away"
msgstr "" 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" msgid "Click to remove this contact"
msgstr "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" msgid "Click to accept this contact request"
msgstr "" msgstr ""
#: src/converse-rosterview.js:584 #: src/converse-rosterview.js:585
msgid "Click to decline this contact request" msgid "Click to decline this contact request"
msgstr "" msgstr ""
#: src/converse-rosterview.js:595 #: src/converse-rosterview.js:596
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:597 #: src/converse-rosterview.js:598
msgid "Name" msgid "Name"
msgstr "" msgstr ""
#: src/converse-rosterview.js:652 #: src/converse-rosterview.js:653
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:663 #: src/converse-rosterview.js:664
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:682 #: src/converse-rosterview.js:683
msgid "Are you sure you want to decline this contact request?" msgid "Are you sure you want to decline this contact request?"
msgstr "" msgstr ""

View File

@ -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-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" "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"
@ -1009,37 +1009,37 @@ msgstr ""
msgid "Extended Away" msgid "Extended Away"
msgstr "" 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" msgid "Click to remove this contact"
msgstr "Haga click para eliminar este contacto" 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 #: src/converse-rosterview.js:584
#, fuzzy #, 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" 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:595 #: src/converse-rosterview.js:596
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:597 #: src/converse-rosterview.js:598
msgid "Name" msgid "Name"
msgstr "" msgstr ""
#: src/converse-rosterview.js:652 #: src/converse-rosterview.js:653
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:663 #: src/converse-rosterview.js:664
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:682 #: src/converse-rosterview.js:683
#, 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?"

View File

@ -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-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" "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"
@ -990,35 +990,35 @@ msgstr ""
msgid "Extended Away" msgid "Extended Away"
msgstr "" 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" msgid "Click to remove this contact"
msgstr "Cliquez pour supprimer ce contact" msgstr "Cliquez pour supprimer ce contact"
#: src/converse-rosterview.js:583 #: src/converse-rosterview.js:584
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:584 #: src/converse-rosterview.js:585
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:595 #: src/converse-rosterview.js:596
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:597 #: src/converse-rosterview.js:598
msgid "Name" msgid "Name"
msgstr "" msgstr ""
#: src/converse-rosterview.js:652 #: src/converse-rosterview.js:653
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:663 #: src/converse-rosterview.js:664
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:682 #: src/converse-rosterview.js:683
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?"

View File

@ -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-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" "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"
@ -983,35 +983,35 @@ msgstr ""
msgid "Extended Away" msgid "Extended Away"
msgstr "" 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" msgid "Click to remove this contact"
msgstr "לחץ כדי להסיר את איש קשר זה" msgstr "לחץ כדי להסיר את איש קשר זה"
#: src/converse-rosterview.js:583 #: src/converse-rosterview.js:584
msgid "Click to accept this contact request" msgid "Click to accept this contact request"
msgstr "לחץ כדי לקבל את בקשת איש קשר זה" msgstr "לחץ כדי לקבל את בקשת איש קשר זה"
#: src/converse-rosterview.js:584 #: src/converse-rosterview.js:585
msgid "Click to decline this contact request" msgid "Click to decline this contact request"
msgstr "לחץ כדי לסרב את בקשת איש קשר זה" msgstr "לחץ כדי לסרב את בקשת איש קשר זה"
#: src/converse-rosterview.js:595 #: src/converse-rosterview.js:596
msgid "Click to chat with this contact" msgid "Click to chat with this contact"
msgstr "לחץ כדי לשוחח עם איש קשר זה" msgstr "לחץ כדי לשוחח עם איש קשר זה"
#: src/converse-rosterview.js:597 #: src/converse-rosterview.js:598
msgid "Name" msgid "Name"
msgstr "שם" msgstr "שם"
#: src/converse-rosterview.js:652 #: src/converse-rosterview.js:653
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:663 #: src/converse-rosterview.js:664
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:682 #: src/converse-rosterview.js:683
msgid "Are you sure you want to decline this contact request?" msgid "Are you sure you want to decline this contact request?"
msgstr "האם אתה בטוח כי ברצונך לסרב את בקשת איש קשר זה?" msgstr "האם אתה בטוח כי ברצונך לסרב את בקשת איש קשר זה?"

View File

@ -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-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" "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"
@ -978,35 +978,35 @@ msgstr ""
msgid "Extended Away" msgid "Extended Away"
msgstr "" 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" msgid "Click to remove this contact"
msgstr "Partner törlése" msgstr "Partner törlése"
#: src/converse-rosterview.js:583 #: src/converse-rosterview.js:584
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:584 #: src/converse-rosterview.js:585
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:595 #: src/converse-rosterview.js:596
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:597 #: src/converse-rosterview.js:598
msgid "Name" msgid "Name"
msgstr "Név" msgstr "Név"
#: src/converse-rosterview.js:652 #: src/converse-rosterview.js:653
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:663 #: src/converse-rosterview.js:664
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:682 #: src/converse-rosterview.js:683
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?"

View File

@ -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-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" "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"
@ -1005,38 +1005,38 @@ msgstr ""
msgid "Extended Away" msgid "Extended Away"
msgstr "" 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" msgid "Click to remove this contact"
msgstr "Klik untuk menghapus teman ini" 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 #: src/converse-rosterview.js:584
#, fuzzy #, 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" msgid "Click to decline this contact request"
msgstr "Klik untuk menghapus teman ini" msgstr "Klik untuk menghapus teman ini"
#: src/converse-rosterview.js:595 #: src/converse-rosterview.js:596
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:597 #: src/converse-rosterview.js:598
msgid "Name" msgid "Name"
msgstr "" msgstr ""
#: src/converse-rosterview.js:652 #: src/converse-rosterview.js:653
#, 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:663 #: src/converse-rosterview.js:664
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:682 #: src/converse-rosterview.js:683
#, 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"

View File

@ -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-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" "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"
@ -965,35 +965,35 @@ msgstr ""
msgid "Extended Away" msgid "Extended Away"
msgstr "" 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" msgid "Click to remove this contact"
msgstr "Clicca per rimuovere questo contatto" msgstr "Clicca per rimuovere questo contatto"
#: src/converse-rosterview.js:583 #: src/converse-rosterview.js:584
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:584 #: src/converse-rosterview.js:585
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:595 #: src/converse-rosterview.js:596
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:597 #: src/converse-rosterview.js:598
msgid "Name" msgid "Name"
msgstr "Nome" msgstr "Nome"
#: src/converse-rosterview.js:652 #: src/converse-rosterview.js:653
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:663 #: src/converse-rosterview.js:664
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:682 #: src/converse-rosterview.js:683
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?"

View File

@ -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-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" "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"
@ -996,38 +996,38 @@ msgstr ""
msgid "Extended Away" msgid "Extended Away"
msgstr "" 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" msgid "Click to remove this contact"
msgstr "クリックしてこの相手先を削除" msgstr "クリックしてこの相手先を削除"
#: src/converse-rosterview.js:583
#, fuzzy
msgid "Click to accept this contact request"
msgstr "クリックしてこの相手先を削除"
#: src/converse-rosterview.js:584 #: src/converse-rosterview.js:584
#, fuzzy #, fuzzy
msgid "Click to accept this contact request"
msgstr "クリックしてこの相手先を削除"
#: src/converse-rosterview.js:585
#, fuzzy
msgid "Click to decline this contact request" msgid "Click to decline this contact request"
msgstr "クリックしてこの相手先を削除" msgstr "クリックしてこの相手先を削除"
#: src/converse-rosterview.js:595 #: src/converse-rosterview.js:596
msgid "Click to chat with this contact" msgid "Click to chat with this contact"
msgstr "クリックしてこの相手先とチャット" msgstr "クリックしてこの相手先とチャット"
#: src/converse-rosterview.js:597 #: src/converse-rosterview.js:598
msgid "Name" msgid "Name"
msgstr "" msgstr ""
#: src/converse-rosterview.js:652 #: src/converse-rosterview.js:653
#, 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:663 #: src/converse-rosterview.js:664
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:682 #: src/converse-rosterview.js:683
#, 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 "クリックしてこの相手先を削除"

View File

@ -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-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" "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"
@ -995,35 +995,35 @@ msgstr ""
msgid "Extended Away" msgid "Extended Away"
msgstr "" 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" msgid "Click to remove this contact"
msgstr "Klikk for å fjerne denne kontakten" msgstr "Klikk for å fjerne denne kontakten"
#: src/converse-rosterview.js:583 #: src/converse-rosterview.js:584
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:584 #: src/converse-rosterview.js:585
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:595 #: src/converse-rosterview.js:596
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:597 #: src/converse-rosterview.js:598
msgid "Name" msgid "Name"
msgstr "" msgstr ""
#: src/converse-rosterview.js:652 #: src/converse-rosterview.js:653
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:663 #: src/converse-rosterview.js:664
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:682 #: src/converse-rosterview.js:683
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?"

View File

@ -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-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" "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"
@ -977,38 +977,38 @@ msgstr ""
msgid "Extended Away" msgid "Extended Away"
msgstr "" 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" msgid "Click to remove this contact"
msgstr "Klik om contact te verwijderen" 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 #: src/converse-rosterview.js:584
#, fuzzy #, 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" msgid "Click to decline this contact request"
msgstr "Klik om contact te verwijderen" msgstr "Klik om contact te verwijderen"
#: src/converse-rosterview.js:595 #: src/converse-rosterview.js:596
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:597 #: src/converse-rosterview.js:598
msgid "Name" msgid "Name"
msgstr "" msgstr ""
#: src/converse-rosterview.js:652 #: src/converse-rosterview.js:653
#, 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:663 #: src/converse-rosterview.js:664
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:682 #: src/converse-rosterview.js:683
#, 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"

View File

@ -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-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" "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"
@ -986,35 +986,35 @@ msgstr ""
msgid "Extended Away" msgid "Extended Away"
msgstr "" 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" msgid "Click to remove this contact"
msgstr "Kliknij aby usunąć kontakt" msgstr "Kliknij aby usunąć kontakt"
#: src/converse-rosterview.js:583 #: src/converse-rosterview.js:584
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:584 #: src/converse-rosterview.js:585
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:595 #: src/converse-rosterview.js:596
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:597 #: src/converse-rosterview.js:598
msgid "Name" msgid "Name"
msgstr "Nazwa" msgstr "Nazwa"
#: src/converse-rosterview.js:652 #: src/converse-rosterview.js:653
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:663 #: src/converse-rosterview.js:664
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:682 #: src/converse-rosterview.js:683
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?"

View File

@ -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-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" "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"
@ -1010,38 +1010,38 @@ msgstr ""
msgid "Extended Away" msgid "Extended Away"
msgstr "" 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" msgid "Click to remove this contact"
msgstr "Clique para remover o contato" 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 #: src/converse-rosterview.js:584
#, fuzzy #, 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" msgid "Click to decline this contact request"
msgstr "Clique para remover o contato" msgstr "Clique para remover o contato"
#: src/converse-rosterview.js:595 #: src/converse-rosterview.js:596
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:597 #: src/converse-rosterview.js:598
msgid "Name" msgid "Name"
msgstr "" msgstr ""
#: src/converse-rosterview.js:652 #: src/converse-rosterview.js:653
#, 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:663 #: src/converse-rosterview.js:664
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:682 #: src/converse-rosterview.js:683
#, 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"

View File

@ -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-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" "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"
@ -983,35 +983,35 @@ msgstr ""
msgid "Extended Away" msgid "Extended Away"
msgstr "" 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" msgid "Click to remove this contact"
msgstr "Удалить контакт" msgstr "Удалить контакт"
#: src/converse-rosterview.js:583 #: src/converse-rosterview.js:584
msgid "Click to accept this contact request" msgid "Click to accept this contact request"
msgstr "Кликните, чтобы принять запрос этого контакта" msgstr "Кликните, чтобы принять запрос этого контакта"
#: src/converse-rosterview.js:584 #: src/converse-rosterview.js:585
msgid "Click to decline this contact request" msgid "Click to decline this contact request"
msgstr "Кликните, чтобы отклонить запрос этого контакта" msgstr "Кликните, чтобы отклонить запрос этого контакта"
#: src/converse-rosterview.js:595 #: src/converse-rosterview.js:596
msgid "Click to chat with this contact" msgid "Click to chat with this contact"
msgstr "Кликните, чтобы начать общение" msgstr "Кликните, чтобы начать общение"
#: src/converse-rosterview.js:597 #: src/converse-rosterview.js:598
msgid "Name" msgid "Name"
msgstr "Имя" msgstr "Имя"
#: src/converse-rosterview.js:652 #: src/converse-rosterview.js:653
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:663 #: src/converse-rosterview.js:664
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:682 #: src/converse-rosterview.js:683
msgid "Are you sure you want to decline this contact request?" msgid "Are you sure you want to decline this contact request?"
msgstr "Вы уверены, что хотите отклонить запрос от этого контакта?" msgstr "Вы уверены, что хотите отклонить запрос от этого контакта?"

View File

@ -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-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" "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"
@ -984,35 +984,35 @@ msgstr ""
msgid "Extended Away" msgid "Extended Away"
msgstr "" 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" msgid "Click to remove this contact"
msgstr "Клацніть, щоб видалити цей контакт" msgstr "Клацніть, щоб видалити цей контакт"
#: src/converse-rosterview.js:583 #: src/converse-rosterview.js:584
msgid "Click to accept this contact request" msgid "Click to accept this contact request"
msgstr "Клацніть, щоб прийняти цей запит контакту" msgstr "Клацніть, щоб прийняти цей запит контакту"
#: src/converse-rosterview.js:584 #: src/converse-rosterview.js:585
msgid "Click to decline this contact request" msgid "Click to decline this contact request"
msgstr "Клацніть, щоб відхилити цей запит контакту" msgstr "Клацніть, щоб відхилити цей запит контакту"
#: src/converse-rosterview.js:595 #: src/converse-rosterview.js:596
msgid "Click to chat with this contact" msgid "Click to chat with this contact"
msgstr "Клацніть, щоб почати розмову з цим контактом" msgstr "Клацніть, щоб почати розмову з цим контактом"
#: src/converse-rosterview.js:597 #: src/converse-rosterview.js:598
msgid "Name" msgid "Name"
msgstr "" msgstr ""
#: src/converse-rosterview.js:652 #: src/converse-rosterview.js:653
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:663 #: src/converse-rosterview.js:664
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:682 #: src/converse-rosterview.js:683
msgid "Are you sure you want to decline this contact request?" msgid "Are you sure you want to decline this contact request?"
msgstr "Ви впевнені, що хочете відхилити цей запит контакту?" msgstr "Ви впевнені, що хочете відхилити цей запит контакту?"

View File

@ -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-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" "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"
@ -992,38 +992,38 @@ msgstr ""
msgid "Extended Away" msgid "Extended Away"
msgstr "" 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" msgid "Click to remove this contact"
msgstr "点击移除联系人" msgstr "点击移除联系人"
#: src/converse-rosterview.js:583
#, fuzzy
msgid "Click to accept this contact request"
msgstr "点击移除联系人"
#: src/converse-rosterview.js:584 #: src/converse-rosterview.js:584
#, fuzzy #, fuzzy
msgid "Click to accept this contact request"
msgstr "点击移除联系人"
#: src/converse-rosterview.js:585
#, fuzzy
msgid "Click to decline this contact request" msgid "Click to decline this contact request"
msgstr "点击移除联系人" msgstr "点击移除联系人"
#: src/converse-rosterview.js:595 #: src/converse-rosterview.js:596
msgid "Click to chat with this contact" msgid "Click to chat with this contact"
msgstr "点击与对方交谈" msgstr "点击与对方交谈"
#: src/converse-rosterview.js:597 #: src/converse-rosterview.js:598
msgid "Name" msgid "Name"
msgstr "" msgstr ""
#: src/converse-rosterview.js:652 #: src/converse-rosterview.js:653
#, 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:663 #: src/converse-rosterview.js:664
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:682 #: src/converse-rosterview.js:683
#, 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 "确定移除联系人吗?"

View File

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