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
1545018e
Commit
1545018e
authored
May 24, 2016
by
JC Brand
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
New release 1.0.2
parent
6550544b
Changes
25
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
25 changed files
with
731 additions
and
571 deletions
+731
-571
bower.json
bower.json
+1
-1
dist/converse-mobile.js
dist/converse-mobile.js
+266
-195
dist/converse-no-dependencies.js
dist/converse-no-dependencies.js
+24
-6
dist/converse.js
dist/converse.js
+266
-195
docs/source/conf.py
docs/source/conf.py
+2
-2
locale/af/LC_MESSAGES/converse.po
locale/af/LC_MESSAGES/converse.po
+9
-9
locale/ca/LC_MESSAGES/converse.po
locale/ca/LC_MESSAGES/converse.po
+9
-9
locale/converse.pot
locale/converse.pot
+9
-9
locale/de/LC_MESSAGES/converse.po
locale/de/LC_MESSAGES/converse.po
+9
-9
locale/en/LC_MESSAGES/converse.po
locale/en/LC_MESSAGES/converse.po
+9
-9
locale/es/LC_MESSAGES/converse.po
locale/es/LC_MESSAGES/converse.po
+9
-9
locale/fr/LC_MESSAGES/converse.po
locale/fr/LC_MESSAGES/converse.po
+9
-9
locale/he/LC_MESSAGES/converse.po
locale/he/LC_MESSAGES/converse.po
+9
-9
locale/hu/LC_MESSAGES/converse.po
locale/hu/LC_MESSAGES/converse.po
+9
-9
locale/id/LC_MESSAGES/converse.po
locale/id/LC_MESSAGES/converse.po
+9
-9
locale/it/LC_MESSAGES/converse.po
locale/it/LC_MESSAGES/converse.po
+9
-9
locale/ja/LC_MESSAGES/converse.po
locale/ja/LC_MESSAGES/converse.po
+9
-9
locale/nb/LC_MESSAGES/converse.po
locale/nb/LC_MESSAGES/converse.po
+9
-9
locale/nl/LC_MESSAGES/converse.po
locale/nl/LC_MESSAGES/converse.po
+9
-9
locale/pl/LC_MESSAGES/converse.po
locale/pl/LC_MESSAGES/converse.po
+9
-9
locale/pt_BR/LC_MESSAGES/converse.po
locale/pt_BR/LC_MESSAGES/converse.po
+9
-9
locale/ru/LC_MESSAGES/converse.po
locale/ru/LC_MESSAGES/converse.po
+9
-9
locale/uk/LC_MESSAGES/converse.po
locale/uk/LC_MESSAGES/converse.po
+9
-9
locale/zh/LC_MESSAGES/converse.po
locale/zh/LC_MESSAGES/converse.po
+9
-9
package.json
package.json
+1
-1
No files found.
bower.json
View file @
1545018e
{
"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"
,
...
...
dist/converse-mobile.js
View file @
1545018e
This diff is collapsed.
Click to expand it.
dist/converse-no-dependencies.js
View file @
1545018e
...
...
@@ -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.1
4
'
,
version
:
'
2.0.1
5
'
,
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
...
...
dist/converse.js
View file @
1545018e
This diff is collapsed.
Click to expand it.
docs/source/conf.py
View file @
1545018e
...
...
@@ -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.
...
...
locale/af/LC_MESSAGES/converse.po
View file @
1545018e
...
...
@@ -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:57
5 src/converse-rosterview.js:596
#: src/converse-rosterview.js:57
6 src/converse-rosterview.js:597
msgid "Click to remove this contact"
msgstr "Klik om hierdie kontak te verwyder"
#: src/converse-rosterview.js:58
3
#: src/converse-rosterview.js:58
4
msgid "Click to accept this contact request"
msgstr "Klik om hierdie kontakversoek te aanvaar"
#: src/converse-rosterview.js:58
4
#: src/converse-rosterview.js:58
5
msgid "Click to decline this contact request"
msgstr "Klik om hierdie kontakversoek te weier"
#: src/converse-rosterview.js:59
5
#: src/converse-rosterview.js:59
6
msgid "Click to chat with this contact"
msgstr "Klik om met hierdie kontak te klets"
#: src/converse-rosterview.js:59
7
#: src/converse-rosterview.js:59
8
msgid "Name"
msgstr "Naam"
#: src/converse-rosterview.js:65
2
#: src/converse-rosterview.js:65
3
msgid "Are you sure you want to remove this contact?"
msgstr "Is u seker u wil hierdie gespreksmaat verwyder?"
#: src/converse-rosterview.js:66
3
#: src/converse-rosterview.js:66
4
msgid "Sorry, there was an error while trying to remove "
msgstr "Jammer, 'n fout het voorgekom tydens die verwydering van "
#: src/converse-rosterview.js:68
2
#: src/converse-rosterview.js:68
3
msgid "Are you sure you want to decline this contact request?"
msgstr "Is u seker dat u hierdie persoon se versoek wil afkeur?"
...
...
locale/ca/LC_MESSAGES/converse.po
View file @
1545018e
...
...
@@ -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:57
5 src/converse-rosterview.js:596
#: src/converse-rosterview.js:57
6 src/converse-rosterview.js:597
msgid "Click to remove this contact"
msgstr "Feu clic per eliminar aquest contacte"
#: src/converse-rosterview.js:58
3
#: src/converse-rosterview.js:58
4
msgid "Click to accept this contact request"
msgstr "Feu clic per acceptar aquesta sol·licitud de contacte"
#: src/converse-rosterview.js:58
4
#: src/converse-rosterview.js:58
5
msgid "Click to decline this contact request"
msgstr "Feu clic per rebutjar aquesta sol·licitud de contacte"
#: src/converse-rosterview.js:59
5
#: src/converse-rosterview.js:59
6
msgid "Click to chat with this contact"
msgstr "Feu clic per conversar amb aquest contacte"
#: src/converse-rosterview.js:59
7
#: src/converse-rosterview.js:59
8
msgid "Name"
msgstr "Nom"
#: src/converse-rosterview.js:65
2
#: src/converse-rosterview.js:65
3
msgid "Are you sure you want to remove this contact?"
msgstr "Segur que voleu eliminar aquest contacte?"
#: src/converse-rosterview.js:66
3
#: src/converse-rosterview.js:66
4
msgid "Sorry, there was an error while trying to remove "
msgstr "S'ha produït un error en intentar eliminar "
#: src/converse-rosterview.js:68
2
#: src/converse-rosterview.js:68
3
msgid "Are you sure you want to decline this contact request?"
msgstr "Segur que voleu rebutjar aquesta sol·licitud de contacte?"
...
...
locale/converse.pot
View file @
1545018e
...
...
@@ -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:57
5 src/converse-rosterview.js:596
#: src/converse-rosterview.js:57
6 src/converse-rosterview.js:597
msgid "Click to remove this contact"
msgstr ""
#: src/converse-rosterview.js:58
3
#: src/converse-rosterview.js:58
4
msgid "Click to accept this contact request"
msgstr ""
#: src/converse-rosterview.js:58
4
#: src/converse-rosterview.js:58
5
msgid "Click to decline this contact request"
msgstr ""
#: src/converse-rosterview.js:59
5
#: src/converse-rosterview.js:59
6
msgid "Click to chat with this contact"
msgstr ""
#: src/converse-rosterview.js:59
7
#: src/converse-rosterview.js:59
8
msgid "Name"
msgstr ""
#: src/converse-rosterview.js:65
2
#: src/converse-rosterview.js:65
3
msgid "Are you sure you want to remove this contact?"
msgstr ""
#: src/converse-rosterview.js:66
3
#: src/converse-rosterview.js:66
4
msgid "Sorry, there was an error while trying to remove "
msgstr ""
#: src/converse-rosterview.js:68
2
#: src/converse-rosterview.js:68
3
msgid "Are you sure you want to decline this contact request?"
msgstr ""
locale/de/LC_MESSAGES/converse.po
View file @
1545018e
...
...
@@ -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:57
5 src/converse-rosterview.js:596
#: src/converse-rosterview.js:57
6 src/converse-rosterview.js:597
msgid "Click to remove this contact"
msgstr "Hier klicken um diesen Kontakt zu entfernen"
#: src/converse-rosterview.js:58
3
#: src/converse-rosterview.js:58
4
msgid "Click to accept this contact request"
msgstr "Hier klicken um diese Kontaktanfrage zu akzeptieren"
#: src/converse-rosterview.js:58
4
#: src/converse-rosterview.js:58
5
msgid "Click to decline this contact request"
msgstr "Hier klicken um diese Kontaktanfrage zu abzulehnen"
#: src/converse-rosterview.js:59
5
#: src/converse-rosterview.js:59
6
msgid "Click to chat with this contact"
msgstr "Hier klicken um mit diesem Kontakt zu chatten"
#: src/converse-rosterview.js:59
7
#: src/converse-rosterview.js:59
8
msgid "Name"
msgstr ""
#: src/converse-rosterview.js:65
2
#: src/converse-rosterview.js:65
3
msgid "Are you sure you want to remove this contact?"
msgstr "Wollen Sie diesen Kontakt wirklich entfernen?"
#: src/converse-rosterview.js:66
3
#: src/converse-rosterview.js:66
4
msgid "Sorry, there was an error while trying to remove "
msgstr ""
#: src/converse-rosterview.js:68
2
#: src/converse-rosterview.js:68
3
msgid "Are you sure you want to decline this contact request?"
msgstr "Wollen Sie diese Kontaktanfrage wirklich ablehnen?"
...
...
locale/en/LC_MESSAGES/converse.po
View file @
1545018e
...
...
@@ -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:57
5 src/converse-rosterview.js:596
#: src/converse-rosterview.js:57
6 src/converse-rosterview.js:597
msgid "Click to remove this contact"
msgstr "Click to remove this contact"
#: src/converse-rosterview.js:58
3
#: src/converse-rosterview.js:58
4
msgid "Click to accept this contact request"
msgstr ""
#: src/converse-rosterview.js:58
4
#: src/converse-rosterview.js:58
5
msgid "Click to decline this contact request"
msgstr ""
#: src/converse-rosterview.js:59
5
#: src/converse-rosterview.js:59
6
msgid "Click to chat with this contact"
msgstr "Click to chat with this contact"
#: src/converse-rosterview.js:59
7
#: src/converse-rosterview.js:59
8
msgid "Name"
msgstr ""
#: src/converse-rosterview.js:65
2
#: src/converse-rosterview.js:65
3
msgid "Are you sure you want to remove this contact?"
msgstr ""
#: src/converse-rosterview.js:66
3
#: src/converse-rosterview.js:66
4
msgid "Sorry, there was an error while trying to remove "
msgstr ""
#: src/converse-rosterview.js:68
2
#: src/converse-rosterview.js:68
3
msgid "Are you sure you want to decline this contact request?"
msgstr ""
...
...
locale/es/LC_MESSAGES/converse.po
View file @
1545018e
...
...
@@ -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:57
5 src/converse-rosterview.js:596
#: src/converse-rosterview.js:57
6 src/converse-rosterview.js:597
msgid "Click to remove this contact"
msgstr "Haga click para eliminar este contacto"
#: src/converse-rosterview.js:58
3
#: src/converse-rosterview.js:58
4
#, fuzzy
msgid "Click to accept this contact request"
msgstr "Haga click para eliminar este contacto"
#: src/converse-rosterview.js:58
4
#: src/converse-rosterview.js:58
5
#, fuzzy
msgid "Click to decline this contact request"
msgstr "Haga click para eliminar este contacto"
#: src/converse-rosterview.js:59
5
#: src/converse-rosterview.js:59
6
msgid "Click to chat with this contact"
msgstr "Haga click para conversar con este contacto"
#: src/converse-rosterview.js:59
7
#: src/converse-rosterview.js:59
8
msgid "Name"
msgstr ""
#: src/converse-rosterview.js:65
2
#: src/converse-rosterview.js:65
3
msgid "Are you sure you want to remove this contact?"
msgstr "¿Esta seguro de querer eliminar este contacto?"
#: src/converse-rosterview.js:66
3
#: src/converse-rosterview.js:66
4
msgid "Sorry, there was an error while trying to remove "
msgstr ""
#: src/converse-rosterview.js:68
2
#: src/converse-rosterview.js:68
3
#, fuzzy
msgid "Are you sure you want to decline this contact request?"
msgstr "¿Esta seguro de querer eliminar este contacto?"
...
...
locale/fr/LC_MESSAGES/converse.po
View file @
1545018e
...
...
@@ -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:57
5 src/converse-rosterview.js:596
#: src/converse-rosterview.js:57
6 src/converse-rosterview.js:597
msgid "Click to remove this contact"
msgstr "Cliquez pour supprimer ce contact"
#: src/converse-rosterview.js:58
3
#: src/converse-rosterview.js:58
4
msgid "Click to accept this contact request"
msgstr "Cliquez pour accepter la demande de ce contact"
#: src/converse-rosterview.js:58
4
#: src/converse-rosterview.js:58
5
msgid "Click to decline this contact request"
msgstr "Cliquez pour refuser la demande de ce contact"
#: src/converse-rosterview.js:59
5
#: src/converse-rosterview.js:59
6
msgid "Click to chat with this contact"
msgstr "Cliquez pour discuter avec ce contact"
#: src/converse-rosterview.js:59
7
#: src/converse-rosterview.js:59
8
msgid "Name"
msgstr ""
#: src/converse-rosterview.js:65
2
#: src/converse-rosterview.js:65
3
msgid "Are you sure you want to remove this contact?"
msgstr "Êtes-vous sûr de vouloir supprimer ce contact?"
#: src/converse-rosterview.js:66
3
#: src/converse-rosterview.js:66
4
msgid "Sorry, there was an error while trying to remove "
msgstr ""
#: src/converse-rosterview.js:68
2
#: src/converse-rosterview.js:68
3
msgid "Are you sure you want to decline this contact request?"
msgstr "Êtes-vous sûr de vouloir refuser la demande de ce contact?"
...
...
locale/he/LC_MESSAGES/converse.po
View file @
1545018e
...
...
@@ -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:57
5 src/converse-rosterview.js:596
#: src/converse-rosterview.js:57
6 src/converse-rosterview.js:597
msgid "Click to remove this contact"
msgstr "לחץ כדי להסיר את איש קשר זה"
#: src/converse-rosterview.js:58
3
#: src/converse-rosterview.js:58
4
msgid "Click to accept this contact request"
msgstr "לחץ כדי לקבל את בקשת איש קשר זה"
#: src/converse-rosterview.js:58
4
#: src/converse-rosterview.js:58
5
msgid "Click to decline this contact request"
msgstr "לחץ כדי לסרב את בקשת איש קשר זה"
#: src/converse-rosterview.js:59
5
#: src/converse-rosterview.js:59
6
msgid "Click to chat with this contact"
msgstr "לחץ כדי לשוחח עם איש קשר זה"
#: src/converse-rosterview.js:59
7
#: src/converse-rosterview.js:59
8
msgid "Name"
msgstr "שם"
#: src/converse-rosterview.js:65
2
#: src/converse-rosterview.js:65
3
msgid "Are you sure you want to remove this contact?"
msgstr "האם אתה בטוח כי ברצונך להסיר את איש קשר זה?"
#: src/converse-rosterview.js:66
3
#: src/converse-rosterview.js:66
4
msgid "Sorry, there was an error while trying to remove "
msgstr "מצטערים, היתה שגיאה במהלך ניסיון להסיר את "
#: src/converse-rosterview.js:68
2
#: src/converse-rosterview.js:68
3
msgid "Are you sure you want to decline this contact request?"
msgstr "האם אתה בטוח כי ברצונך לסרב את בקשת איש קשר זה?"
...
...
locale/hu/LC_MESSAGES/converse.po
View file @
1545018e
...
...
@@ -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:57
5 src/converse-rosterview.js:596
#: src/converse-rosterview.js:57
6 src/converse-rosterview.js:597
msgid "Click to remove this contact"
msgstr "Partner törlése"
#: src/converse-rosterview.js:58
3
#: src/converse-rosterview.js:58
4
msgid "Click to accept this contact request"
msgstr "Partner felvételének elfogadása"
#: src/converse-rosterview.js:58
4
#: src/converse-rosterview.js:58
5
msgid "Click to decline this contact request"
msgstr "Partner felvételének megtagadása"
#: src/converse-rosterview.js:59
5
#: src/converse-rosterview.js:59
6
msgid "Click to chat with this contact"
msgstr "Csevegés indítása ezzel a partnerünkkel"
#: src/converse-rosterview.js:59
7
#: src/converse-rosterview.js:59
8
msgid "Name"
msgstr "Név"
#: src/converse-rosterview.js:65
2
#: src/converse-rosterview.js:65
3
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:66
3
#: src/converse-rosterview.js:66
4
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:68
2
#: src/converse-rosterview.js:68
3
msgid "Are you sure you want to decline this contact request?"
msgstr "Valóban elutasítja ezt a partnerkérelmet?"
...
...
locale/id/LC_MESSAGES/converse.po
View file @
1545018e
...
...
@@ -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:57
5 src/converse-rosterview.js:596
#: src/converse-rosterview.js:57
6 src/converse-rosterview.js:597
msgid "Click to remove this contact"
msgstr "Klik untuk menghapus teman ini"
#: src/converse-rosterview.js:58
3
#: src/converse-rosterview.js:58
4
#, fuzzy
msgid "Click to accept this contact request"
msgstr "Klik untuk menghapus teman ini"
#: src/converse-rosterview.js:58
4
#: src/converse-rosterview.js:58
5
#, fuzzy
msgid "Click to decline this contact request"
msgstr "Klik untuk menghapus teman ini"
#: src/converse-rosterview.js:59
5
#: src/converse-rosterview.js:59
6
msgid "Click to chat with this contact"
msgstr "Klik untuk mulai perbinjangan dengan teman ini"
#: src/converse-rosterview.js:59
7
#: src/converse-rosterview.js:59
8
msgid "Name"
msgstr ""
#: src/converse-rosterview.js:65
2
#: src/converse-rosterview.js:65
3
#, fuzzy
msgid "Are you sure you want to remove this contact?"
msgstr "Klik untuk menghapus teman ini"
#: src/converse-rosterview.js:66
3
#: src/converse-rosterview.js:66
4
msgid "Sorry, there was an error while trying to remove "
msgstr ""
#: src/converse-rosterview.js:68
2
#: src/converse-rosterview.js:68
3
#, fuzzy
msgid "Are you sure you want to decline this contact request?"
msgstr "Klik untuk menghapus teman ini"
...
...
locale/it/LC_MESSAGES/converse.po
View file @
1545018e
...
...
@@ -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:57
5 src/converse-rosterview.js:596
#: src/converse-rosterview.js:57
6 src/converse-rosterview.js:597
msgid "Click to remove this contact"
msgstr "Clicca per rimuovere questo contatto"
#: src/converse-rosterview.js:58
3
#: src/converse-rosterview.js:58
4
msgid "Click to accept this contact request"
msgstr "Clicca per accettare questa richiesta di contatto"
#: src/converse-rosterview.js:58
4
#: src/converse-rosterview.js:58
5
msgid "Click to decline this contact request"
msgstr "Clicca per rifiutare questa richiesta di contatto"
#: src/converse-rosterview.js:59
5
#: src/converse-rosterview.js:59
6
msgid "Click to chat with this contact"
msgstr "Clicca per parlare con questo contatto"
#: src/converse-rosterview.js:59
7
#: src/converse-rosterview.js:59
8
msgid "Name"
msgstr "Nome"
#: src/converse-rosterview.js:65
2
#: src/converse-rosterview.js:65
3
msgid "Are you sure you want to remove this contact?"
msgstr "Sei sicuro di voler rimuovere questo contatto?"
#: src/converse-rosterview.js:66
3
#: src/converse-rosterview.js:66
4
msgid "Sorry, there was an error while trying to remove "
msgstr "Si è verificato un errore durante il tentativo di rimozione"
#: src/converse-rosterview.js:68
2
#: src/converse-rosterview.js:68
3
msgid "Are you sure you want to decline this contact request?"
msgstr "Sei sicuro dirifiutare questa richiesta di contatto?"
...
...
locale/ja/LC_MESSAGES/converse.po
View file @
1545018e
...
...
@@ -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:57
5 src/converse-rosterview.js:596
#: src/converse-rosterview.js:57
6 src/converse-rosterview.js:597
msgid "Click to remove this contact"
msgstr "クリックしてこの相手先を削除"
#: src/converse-rosterview.js:58
3
#: src/converse-rosterview.js:58
4
#, fuzzy
msgid "Click to accept this contact request"
msgstr "クリックしてこの相手先を削除"
#: src/converse-rosterview.js:58
4
#: src/converse-rosterview.js:58
5
#, fuzzy
msgid "Click to decline this contact request"
msgstr "クリックしてこの相手先を削除"
#: src/converse-rosterview.js:59
5
#: src/converse-rosterview.js:59
6
msgid "Click to chat with this contact"
msgstr "クリックしてこの相手先とチャット"
#: src/converse-rosterview.js:59
7
#: src/converse-rosterview.js:59
8
msgid "Name"
msgstr ""
#: src/converse-rosterview.js:65
2
#: src/converse-rosterview.js:65
3
#, fuzzy
msgid "Are you sure you want to remove this contact?"
msgstr "クリックしてこの相手先を削除"
#: src/converse-rosterview.js:66
3
#: src/converse-rosterview.js:66
4
msgid "Sorry, there was an error while trying to remove "
msgstr ""
#: src/converse-rosterview.js:68
2
#: src/converse-rosterview.js:68
3
#, fuzzy
msgid "Are you sure you want to decline this contact request?"
msgstr "クリックしてこの相手先を削除"
...
...
locale/nb/LC_MESSAGES/converse.po
View file @
1545018e
...
...
@@ -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:57
5 src/converse-rosterview.js:596
#: src/converse-rosterview.js:57
6 src/converse-rosterview.js:597
msgid "Click to remove this contact"
msgstr "Klikk for å fjerne denne kontakten"
#: src/converse-rosterview.js:58
3
#: src/converse-rosterview.js:58
4
msgid "Click to accept this contact request"
msgstr "Klikk for å Godta denne kontaktforespørselen"
#: src/converse-rosterview.js:58
4
#: src/converse-rosterview.js:58
5
msgid "Click to decline this contact request"
msgstr "Klikk for å avslå denne kontaktforespørselen"
#: src/converse-rosterview.js:59
5
#: src/converse-rosterview.js:59
6
msgid "Click to chat with this contact"
msgstr "Klikk for å chatte med denne kontakten"
#: src/converse-rosterview.js:59
7
#: src/converse-rosterview.js:59
8
msgid "Name"
msgstr ""
#: src/converse-rosterview.js:65
2
#: src/converse-rosterview.js:65
3
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:66
3
#: src/converse-rosterview.js:66
4
msgid "Sorry, there was an error while trying to remove "
msgstr ""
#: src/converse-rosterview.js:68
2
#: src/converse-rosterview.js:68
3
msgid "Are you sure you want to decline this contact request?"
msgstr "Er du sikker på at du vil avslå denne kontaktforespørselen?"
...
...
locale/nl/LC_MESSAGES/converse.po
View file @
1545018e
...
...
@@ -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:57
5 src/converse-rosterview.js:596
#: src/converse-rosterview.js:57
6 src/converse-rosterview.js:597
msgid "Click to remove this contact"
msgstr "Klik om contact te verwijderen"
#: src/converse-rosterview.js:58
3
#: src/converse-rosterview.js:58
4
#, fuzzy
msgid "Click to accept this contact request"
msgstr "Klik om contact te verwijderen"
#: src/converse-rosterview.js:58
4
#: src/converse-rosterview.js:58
5
#, fuzzy
msgid "Click to decline this contact request"
msgstr "Klik om contact te verwijderen"
#: src/converse-rosterview.js:59
5
#: src/converse-rosterview.js:59
6
msgid "Click to chat with this contact"
msgstr "Klik om te chatten met contact"
#: src/converse-rosterview.js:59
7
#: src/converse-rosterview.js:59
8
msgid "Name"
msgstr ""
#: src/converse-rosterview.js:65
2
#: src/converse-rosterview.js:65
3
#, fuzzy
msgid "Are you sure you want to remove this contact?"
msgstr "Klik om contact te verwijderen"
#: src/converse-rosterview.js:66
3
#: src/converse-rosterview.js:66
4
msgid "Sorry, there was an error while trying to remove "
msgstr ""
#: src/converse-rosterview.js:68
2
#: src/converse-rosterview.js:68
3
#, fuzzy
msgid "Are you sure you want to decline this contact request?"
msgstr "Klik om contact te verwijderen"
...
...
locale/pl/LC_MESSAGES/converse.po
View file @
1545018e
...
...
@@ -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:57
5 src/converse-rosterview.js:596
#: src/converse-rosterview.js:57
6 src/converse-rosterview.js:597
msgid "Click to remove this contact"
msgstr "Kliknij aby usunąć kontakt"
#: src/converse-rosterview.js:58
3
#: src/converse-rosterview.js:58
4
msgid "Click to accept this contact request"
msgstr "Klknij aby zaakceptować życzenie nawiązania kontaktu"
#: src/converse-rosterview.js:58
4
#: src/converse-rosterview.js:58
5
msgid "Click to decline this contact request"
msgstr "Kliknij aby odrzucić życzenie nawiązania kontaktu"
#: src/converse-rosterview.js:59
5
#: src/converse-rosterview.js:59
6
msgid "Click to chat with this contact"
msgstr "Kliknij aby porozmawiać z kontaktem"
#: src/converse-rosterview.js:59
7
#: src/converse-rosterview.js:59
8
msgid "Name"
msgstr "Nazwa"
#: src/converse-rosterview.js:65
2
#: src/converse-rosterview.js:65
3
msgid "Are you sure you want to remove this contact?"
msgstr "Czy potwierdzasz zamiar usnunięcia tego kontaktu?"
#: src/converse-rosterview.js:66
3
#: src/converse-rosterview.js:66
4
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:68
2
#: src/converse-rosterview.js:68
3
msgid "Are you sure you want to decline this contact request?"
msgstr "Czy potwierdzasz odrzucenie chęci nawiązania kontaktu?"
...
...
locale/pt_BR/LC_MESSAGES/converse.po
View file @
1545018e
...
...
@@ -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:57
5 src/converse-rosterview.js:596
#: src/converse-rosterview.js:57
6 src/converse-rosterview.js:597
msgid "Click to remove this contact"
msgstr "Clique para remover o contato"
#: src/converse-rosterview.js:58
3
#: src/converse-rosterview.js:58
4
#, fuzzy
msgid "Click to accept this contact request"
msgstr "Clique para remover o contato"
#: src/converse-rosterview.js:58
4
#: src/converse-rosterview.js:58
5
#, fuzzy
msgid "Click to decline this contact request"
msgstr "Clique para remover o contato"
#: src/converse-rosterview.js:59
5
#: src/converse-rosterview.js:59
6
msgid "Click to chat with this contact"
msgstr "Clique para conversar com o contato"
#: src/converse-rosterview.js:59
7
#: src/converse-rosterview.js:59
8
msgid "Name"
msgstr ""
#: src/converse-rosterview.js:65
2
#: src/converse-rosterview.js:65
3
#, fuzzy
msgid "Are you sure you want to remove this contact?"
msgstr "Clique para remover o contato"
#: src/converse-rosterview.js:66
3
#: src/converse-rosterview.js:66
4
msgid "Sorry, there was an error while trying to remove "
msgstr ""
#: src/converse-rosterview.js:68
2
#: src/converse-rosterview.js:68
3
#, fuzzy
msgid "Are you sure you want to decline this contact request?"
msgstr "Clique para remover o contato"
...
...
locale/ru/LC_MESSAGES/converse.po
View file @
1545018e
...
...
@@ -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:57
5 src/converse-rosterview.js:596
#: src/converse-rosterview.js:57
6 src/converse-rosterview.js:597
msgid "Click to remove this contact"
msgstr "Удалить контакт"
#: src/converse-rosterview.js:58
3
#: src/converse-rosterview.js:58
4
msgid "Click to accept this contact request"
msgstr "Кликните, чтобы принять запрос этого контакта"
#: src/converse-rosterview.js:58
4
#: src/converse-rosterview.js:58
5
msgid "Click to decline this contact request"
msgstr "Кликните, чтобы отклонить запрос этого контакта"
#: src/converse-rosterview.js:59
5
#: src/converse-rosterview.js:59
6
msgid "Click to chat with this contact"
msgstr "Кликните, чтобы начать общение"
#: src/converse-rosterview.js:59
7
#: src/converse-rosterview.js:59
8
msgid "Name"
msgstr "Имя"
#: src/converse-rosterview.js:65
2
#: src/converse-rosterview.js:65
3
msgid "Are you sure you want to remove this contact?"
msgstr "Вы уверены, что хотите удалить этот контакт?"
#: src/converse-rosterview.js:66
3
#: src/converse-rosterview.js:66
4
msgid "Sorry, there was an error while trying to remove "
msgstr "Возникла ошибка при удалении "
#: src/converse-rosterview.js:68
2
#: src/converse-rosterview.js:68
3
msgid "Are you sure you want to decline this contact request?"
msgstr "Вы уверены, что хотите отклонить запрос от этого контакта?"
...
...
locale/uk/LC_MESSAGES/converse.po
View file @
1545018e
...
...
@@ -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:57
5 src/converse-rosterview.js:596
#: src/converse-rosterview.js:57
6 src/converse-rosterview.js:597
msgid "Click to remove this contact"
msgstr "Клацніть, щоб видалити цей контакт"
#: src/converse-rosterview.js:58
3
#: src/converse-rosterview.js:58
4
msgid "Click to accept this contact request"
msgstr "Клацніть, щоб прийняти цей запит контакту"
#: src/converse-rosterview.js:58
4
#: src/converse-rosterview.js:58
5
msgid "Click to decline this contact request"
msgstr "Клацніть, щоб відхилити цей запит контакту"
#: src/converse-rosterview.js:59
5
#: src/converse-rosterview.js:59
6
msgid "Click to chat with this contact"
msgstr "Клацніть, щоб почати розмову з цим контактом"
#: src/converse-rosterview.js:59
7
#: src/converse-rosterview.js:59
8
msgid "Name"
msgstr ""
#: src/converse-rosterview.js:65
2
#: src/converse-rosterview.js:65
3
msgid "Are you sure you want to remove this contact?"
msgstr "Ви впевнені, що хочете видалити цей контакт?"
#: src/converse-rosterview.js:66
3
#: src/converse-rosterview.js:66
4
msgid "Sorry, there was an error while trying to remove "
msgstr ""
#: src/converse-rosterview.js:68
2
#: src/converse-rosterview.js:68
3
msgid "Are you sure you want to decline this contact request?"
msgstr "Ви впевнені, що хочете відхилити цей запит контакту?"
...
...
locale/zh/LC_MESSAGES/converse.po
View file @
1545018e
...
...
@@ -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:57
5 src/converse-rosterview.js:596
#: src/converse-rosterview.js:57
6 src/converse-rosterview.js:597
msgid "Click to remove this contact"
msgstr "点击移除联系人"
#: src/converse-rosterview.js:58
3
#: src/converse-rosterview.js:58
4
#, fuzzy
msgid "Click to accept this contact request"
msgstr "点击移除联系人"
#: src/converse-rosterview.js:58
4
#: src/converse-rosterview.js:58
5
#, fuzzy
msgid "Click to decline this contact request"
msgstr "点击移除联系人"
#: src/converse-rosterview.js:59
5
#: src/converse-rosterview.js:59
6
msgid "Click to chat with this contact"
msgstr "点击与对方交谈"
#: src/converse-rosterview.js:59
7
#: src/converse-rosterview.js:59
8
msgid "Name"
msgstr ""
#: src/converse-rosterview.js:65
2
#: src/converse-rosterview.js:65
3
#, fuzzy
msgid "Are you sure you want to remove this contact?"
msgstr "确定移除联系人吗?"
#: src/converse-rosterview.js:66
3
#: src/converse-rosterview.js:66
4
msgid "Sorry, there was an error while trying to remove "
msgstr ""
#: src/converse-rosterview.js:68
2
#: src/converse-rosterview.js:68
3
#, fuzzy
msgid "Are you sure you want to decline this contact request?"
msgstr "确定移除联系人吗?"
...
...
package.json
View file @
1545018e
{
"name"
:
"converse.js"
,
"version"
:
"1.0.
1
"
,
"version"
:
"1.0.
2
"
,
"description"
:
"Browser based XMPP instant messaging client"
,
"main"
:
"main.js"
,
"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