Merge branch 'master' of github.com:jcbrand/converse.js

This commit is contained in:
JC Brand 2015-03-06 17:54:11 +00:00
commit 4d6aed5d81
113 changed files with 60721 additions and 75408 deletions

View File

@ -1,9 +1,11 @@
module.exports = function(grunt) {
var path = require('path');
var cfg = require('./package.json');
grunt.initConfig({
jst: {
compile: {
options: {
namespace: 'templates',
templateSettings: {
evaluate : /\{\[([\s\S]+?)\]\}/g,
interpolate : /\{\{([\s\S]+?)\}\}/g
@ -20,6 +22,20 @@ module.exports = function(grunt) {
}
},
json: {
main: {
options: {
namespace: 'locales',
includePath: true,
processName: function(filename) {
return filename.toLowerCase().match(/^locale\/(.*)\/lc_messages/)[1];
}
},
src: ['locale/**/LC_MESSAGES/*.json'],
dest: 'builds/locales.js'
}
},
jshint: {
options: {
trailing: true
@ -47,12 +63,18 @@ module.exports = function(grunt) {
dest: 'css/converse.min.css',
src: ['css/converse.css']
}
},
touch: {
npm: ['stamp-npm'],
bower: ['stamp-bower']
}
});
grunt.loadNpmTasks('grunt-contrib-cssmin');
grunt.loadNpmTasks('grunt-contrib-jshint');
grunt.loadNpmTasks('grunt-contrib-jst');
grunt.loadNpmTasks('grunt-json');
grunt.loadNpmTasks('grunt-contrib-requirejs');
grunt.loadNpmTasks('grunt-touch');
grunt.registerTask('test', 'Run Tests', function () {
var done = this.async();
@ -91,23 +113,26 @@ module.exports = function(grunt) {
var child_process = require('child_process');
var exec = child_process.exec;
var callback = function (err, stdout, stderr) {
grunt.log.write(stdout);
if (err) {
grunt.log.write('build failed with error code '+err.code);
grunt.log.write(stderr);
}
grunt.log.write(stdout);
done();
done(false);
} else
done();
};
exec('./node_modules/requirejs/bin/r.js -o src/build.js && ' +
'./node_modules/requirejs/bin/r.js -o src/build.js optimize=none out=builds/converse.js && ' +
'./node_modules/requirejs/bin/r.js -o src/build-no-jquery.js &&' +
'./node_modules/requirejs/bin/r.js -o src/build-no-jquery.js optimize=none out=builds/converse.nojquery.js && ' +
'./node_modules/requirejs/bin/r.js -o src/build-no-locales-no-otr.js && ' +
'./node_modules/requirejs/bin/r.js -o src/build-no-locales-no-otr.js optimize=none out=builds/converse-no-locales-no-otr.js && ' +
'./node_modules/requirejs/bin/r.js -o src/build-no-otr.js &&' +
'./node_modules/requirejs/bin/r.js -o src/build-no-otr.js optimize=none out=builds/converse-no-otr.js && ' +
'./node_modules/requirejs/bin/r.js -o src/build-website-no-otr.js &&' +
'./node_modules/requirejs/bin/r.js -o src/build-website.js', callback);
var rjsext = (process.platform === 'win32') ? '.cmd' : '';
var rjs = path.resolve('./node_modules/.bin/r.js' + rjsext);
exec(rjs + ' -o src/build.js && ' +
rjs + ' -o src/build.js optimize=none out=builds/converse.js && ' +
rjs + ' -o src/build-no-jquery.js &&' +
rjs + ' -o src/build-no-jquery.js optimize=none out=builds/converse.nojquery.js && ' +
rjs + ' -o src/build-no-locales-no-otr.js && ' +
rjs + ' -o src/build-no-locales-no-otr.js optimize=none out=builds/converse-no-locales-no-otr.js && ' +
rjs + ' -o src/build-no-otr.js &&' +
rjs + ' -o src/build-no-otr.js optimize=none out=builds/converse-no-otr.js && ' +
rjs + ' -o src/build-website-no-otr.js &&' +
rjs + ' -o src/build-website.js', callback);
// XXX: It might be possible to not have separate build config files. For example:
// 'r.js -o src/build.js paths.converse-dependencies=src/deps-no-otr paths.locales=locale/nolocales out=builds/converse-no-locales-no-otr.min.js'
});

View File

@ -1,12 +1,14 @@
# You can set these variables from the command line.
BOWER ?= node_modules/.bin/bower
BUILDDIR = ./docs
PAPER =
PHANTOMJS ?= node_modules/.bin/phantomjs
SPHINXBUILD ?= ./bin/sphinx-build
SPHINXOPTS =
PO2JSON ?= node_modules/.bin/po2json
SASS ?= sass
BUILDDIR = ./docs
PAPER =
PHANTOMJS ?= ./node_modules/.bin/phantomjs
SPHINXBUILD ?= ./bin/sphinx-build
SPHINXOPTS =
PO2JSON ?= ./node_modules/.bin/po2json
SASS ?= sass
GRUNT ?= ./node_modules/.bin/grunt
HTTPSERVE ?= ./node_modules/.bin/http-server
# Internal variables.
ALLSPHINXOPTS = -d $(BUILDDIR)/doctrees $(PAPEROPT_$(PAPER)) $(SPHINXOPTS) ./docs/source
@ -18,18 +20,27 @@ I18NSPHINXOPTS = $(PAPEROPT_$(PAPER)) $(SPHINXOPTS) ./docs/source
all: dev
help:
@echo "Please use \`make <target>' where <target> is one of"
@echo " dev to set up the development environment"
@echo "Please use \`make <target>' where <target> is one of the following"
@echo " build create minified builds containing converse.js and all its dependencies"
@echo " gettext to make PO message catalogs of the documentation"
@echo " html to make standalone HTML files of the documentation"
@echo " pot to generate a gettext POT file to be used for translations"
@echo " po to generate gettext PO files for each i18n language"
@echo " po2json to generate JSON files from the language PO files"
@echo " release to make a new minified release"
@echo " linkcheck to check all documentation external links for integrity"
@echo " epub to export the documentation to epub"
@echo " changes to make an overview of all changed/added/deprecated items added to the documentation"
@echo " changes make an overview of all changed/added/deprecated items added to the documentation"
@echo " css generate CSS from the Sass files"
@echo " dev set up the development environment"
@echo " epub export the documentation to epub"
@echo " gettext make PO message catalogs of the documentation"
@echo " html make standalone HTML files of the documentation"
@echo " linkcheck check all documentation external links for integrity"
@echo " cssmin minify the CSS files"
@echo " po generate gettext PO files for each i18n language"
@echo " po2json generate JSON files from the language PO files"
@echo " pot generate a gettext POT file to be used for translations"
@echo " release make a new minified release"
@echo " serve serve this directory via a webserver on port 8000"
########################################################################
## Miscellaneous
serve: dev
$(HTTPSERVE) -p 8000
########################################################################
## Translation machinery
@ -48,12 +59,6 @@ po2json:
########################################################################
## Release management
jsmin:
./node_modules/requirejs/bin/r.js -o src/build.js && ./node_modules/requirejs/bin/r.js -o src/build-no-locales-no-otr.js && ./node_modules/requirejs/bin/r.js -o src/build-no-otr.js && ./node_modules/requirejs/bin/r.js -o src/build-website.js
cssmin:
grunt cssmin
release:
sed -i s/Project-Id-Version:\ Converse\.js\ [0-9]\.[0-9]\.[0-9]/Project-Id-Version:\ Converse.js\ $(VERSION)/ locale/converse.pot
sed -i s/\"version\":\ \"[0-9]\.[0-9]\.[0-9]\"/\"version\":\ \"$(VERSION)\"/ bower.json
@ -85,18 +90,24 @@ clean::
dev: clean
npm install
${BOWER} update;
$(BOWER) update;
bundler install --path=.
########################################################################
## Builds
css::
${SASS} sass/converse.scss > css/converse.css
$(SASS) sass/converse.scss > css/converse.css
jsmin:
./node_modules/requirejs/bin/r.js -o src/build.js && ./node_modules/requirejs/bin/r.js -o src/build-no-locales-no-otr.js && ./node_modules/requirejs/bin/r.js -o src/build-no-otr.js && ./node_modules/requirejs/bin/r.js -o src/build-website.js
cssmin:
$(GRUNT) cssmin
build::
./node_modules/.bin/grunt jst
./node_modules/.bin/grunt minify
$(GRUNT) jst
$(GRUNT) minify
########################################################################
## Tests

63
Makefile.win Normal file
View File

@ -0,0 +1,63 @@
# You can set these variables from the command line.
GRUNT ?= node_modules\.bin\grunt.cmd
BOWER ?= node_modules\.bin\bower
PHANTOMJS ?= node_modules\.bin\phantomjs
SASS ?= sass
RMRF ?= rmdir /q /s
RMF ?= del /q
HTTPSERVE ?= ./node_modules/.bin/http-server
.PHONY: all help clean css minjs build
all: dev
help:
@echo "Please use \`make <target>' where <target> is one of the following"
@echo " dev to set up the development environment"
@echo " build create minified builds containing converse.js and all its dependencies"
@echo " serve to serve this directory via a webserver on port 8000"
########################################################################
## Miscellaneous
serve:
$(HTTPSERVE) -p 8000
########################################################################
## Install dependencies
stamp-npm: package.json
npm install
$(GRUNT) touch:npm
stamp-bower: stamp-npm bower.json
$(BOWER) install
$(GRUNT) touch:bower
clean::
@if EXIST stamp-npm $(RMF) stamp-npm
@if EXIST stamp-bower $(RMF) stamp-bower
@if EXIST node_modules\. $(RMRF) node_modules
@if EXIST components\. $(RMRF) components
dev: clean
npm install
$(BOWER) update
bundler install --path=.
########################################################################
## Builds
css::
$(SASS) sass/converse.scss > css/converse.css
build::
$(GRUNT) jst
$(GRUNT) minify
########################################################################
## Tests
check:: stamp-npm
$(PHANTOMJS) node_modules/phantom-jasmine/lib/run_jasmine_test.coffee tests.html

View File

@ -1,6 +1,8 @@
{
"name": "converse",
"version": "0.8.6",
"name": "converse.js",
"description": "Web-based XMPP/Jabber chat client written in javascript",
"version": "0.9.0",
"license": "MPL",
"devDependencies": {
"jasmine": "https://github.com/jcbrand/jasmine.git#1_3_x",
"otr": "0.2.12",
@ -8,29 +10,28 @@
"requirejs-tpl-jcbrand": "*"
},
"dependencies": {
"requirejs": "2.1.11",
"requirejs": "~2.1.15",
"jquery": "1.11.0",
"jed": "0.5.4",
"underscore": "1.6.0",
"backbone": "1.1.2",
"backbone.browserStorage": "*",
"backbone.overview": "*",
"strophe": "~1.1.3",
"strophe.muc": "https://raw.githubusercontent.com/strophe/strophejs-plugins/master/muc/strophe.muc.js",
"otr": "0.2.12",
"crypto-js-evanvosberg": "~3.1.2",
"almond": "~0.2.9",
"almond": "~0.3.0",
"requirejs-text": "~2.0.12",
"requirejs-tpl-jcbrand": "*",
"momentjs": "~2.6.0",
"jquery.browser": "https://raw.githubusercontent.com/jcbrand/jquery-browser-plugin/ae5e88aa7a26f583e8865c3961ba857918c4c9c1/dist/jquery.browser.js",
"jquery.browser": ">=0.0.7",
"jquery-easing-original": "https://raw.githubusercontent.com/jcbrand/jquery.easing/7de3458b1845a72c1f407debf6b223c8446396bf/jquery.easing.1.3.js",
"bootstrap": "~3.2.0",
"bootstrapJS": "https://raw.githubusercontent.com/jcbrand/bootstrap/7d96a5f60d26c67b5348b270a775518b96a702c8/dist/js/bootstrap.js",
"fontawesome": "~4.1.0",
"typeahead.js": "https://raw.githubusercontent.com/jcbrand/typeahead.js/eedfb10505dd3a20123d1fafc07c1352d83f0ab3/dist/typeahead.jquery.js",
"strophejs-plugins": "https://github.com/strophe/strophejs-plugins.git#conversejs",
"skeleton-sass": "~2.0.3"
"skeleton-sass": "~2.0.3",
"strophejs": "https://github.com/strophe/strophejs.git#9e285eaa59f4ceb2b25e4d95c5bbe90690251bbc",
"strophejs-plugins": "https://github.com/strophe/strophejs-plugins.git#amd"
},
"exportsOverride": {}
}

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

122
builds/converse.min.js vendored

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

11108
builds/locales.js Normal file

File diff suppressed because it is too large Load Diff

View File

@ -1,6 +1,6 @@
this["JST"] = this["JST"] || {};
this["templates"] = this["templates"] || {};
this["JST"]["action"] = function(obj) {
this["templates"]["action"] = function(obj) {
obj || (obj = {});
var __t, __p = '', __e = _.escape;
with (obj) {
@ -20,7 +20,7 @@ __p += '<div class="chat-message ' +
return __p
};
this["JST"]["add_contact_dropdown"] = function(obj) {
this["templates"]["add_contact_dropdown"] = function(obj) {
obj || (obj = {});
var __t, __p = '', __e = _.escape;
with (obj) {
@ -34,7 +34,7 @@ __p += '<dl class="add-converse-contact dropdown">\n <dt id="xmpp-contact-sea
return __p
};
this["JST"]["add_contact_form"] = function(obj) {
this["templates"]["add_contact_form"] = function(obj) {
obj || (obj = {});
var __t, __p = '', __e = _.escape;
with (obj) {
@ -48,23 +48,23 @@ __p += '<li>\n <form class="add-xmpp-contact">\n <input type="text"\n
return __p
};
this["JST"]["change_status_message"] = function(obj) {
this["templates"]["change_status_message"] = function(obj) {
obj || (obj = {});
var __t, __p = '', __e = _.escape;
with (obj) {
__p += '<form id="set-custom-xmpp-status">\n <input type="text" class="custom-xmpp-status" ' +
__p += '<form id="set-custom-xmpp-status">\n <span class="input-button-group">\n <input type="text" class="custom-xmpp-status" ' +
((__t = (status_message)) == null ? '' : __t) +
'\n placeholder="' +
'\n placeholder="' +
((__t = (label_custom_status)) == null ? '' : __t) +
'"/>\n <button type="submit">' +
'"/>\n <button type="submit">' +
((__t = (label_save)) == null ? '' : __t) +
'</button>\n</form>\n';
'</button>\n </span>\n</form>\n';
}
return __p
};
this["JST"]["chat_status"] = function(obj) {
this["templates"]["chat_status"] = function(obj) {
obj || (obj = {});
var __t, __p = '', __e = _.escape;
with (obj) {
@ -86,7 +86,7 @@ __p += '<div class="xmpp-status">\n <a class="choose-xmpp-status ' +
return __p
};
this["JST"]["chatarea"] = function(obj) {
this["templates"]["chatarea"] = function(obj) {
obj || (obj = {});
var __t, __p = '', __e = _.escape, __j = Array.prototype.join;
function print() { __p += __j.call(arguments, '') }
@ -103,7 +103,7 @@ __p += '\n <textarea type="text" class="chat-textarea" \n plac
return __p
};
this["JST"]["chatbox"] = function(obj) {
this["templates"]["chatbox"] = function(obj) {
obj || (obj = {});
var __t, __p = '', __e = _.escape, __j = Array.prototype.join;
function print() { __p += __j.call(arguments, '') }
@ -134,7 +134,7 @@ __p += '\n <textarea\n type="text"\n class="chat-te
return __p
};
this["JST"]["chatroom"] = function(obj) {
this["templates"]["chatroom"] = function(obj) {
obj || (obj = {});
var __t, __p = '', __e = _.escape, __j = Array.prototype.join;
function print() { __p += __j.call(arguments, '') }
@ -153,7 +153,7 @@ __p += '>\n <div class="dragresize dragresize-tm"></div>\n <div class="cha
return __p
};
this["JST"]["chatroom_password_form"] = function(obj) {
this["templates"]["chatroom_password_form"] = function(obj) {
obj || (obj = {});
var __t, __p = '', __e = _.escape;
with (obj) {
@ -161,7 +161,7 @@ __p += '<div class="chatroom-form-container">\n <form class="chatroom-form">\
((__t = (heading)) == null ? '' : __t) +
'</legend>\n <label>' +
((__t = (label_password)) == null ? '' : __t) +
'<input type="password" name="password"/></label>\n <input type="submit" value="' +
'</label>\n <input type="password" name="password"/>\n <input type="submit" value="' +
((__t = (label_submit)) == null ? '' : __t) +
'"/>\n </form>\n</div>\n';
@ -169,7 +169,7 @@ __p += '<div class="chatroom-form-container">\n <form class="chatroom-form">\
return __p
};
this["JST"]["chatroom_sidebar"] = function(obj) {
this["templates"]["chatroom_sidebar"] = function(obj) {
obj || (obj = {});
var __t, __p = '', __e = _.escape;
with (obj) {
@ -183,7 +183,7 @@ __p += '<!-- <div class="participants"> -->\n<form class="room-invite">\n <in
return __p
};
this["JST"]["chatrooms_tab"] = function(obj) {
this["templates"]["chatrooms_tab"] = function(obj) {
obj || (obj = {});
var __t, __p = '', __e = _.escape;
with (obj) {
@ -195,7 +195,7 @@ __p += '<li><a class="s" href="#chatrooms">' +
return __p
};
this["JST"]["chats_panel"] = function(obj) {
this["templates"]["chats_panel"] = function(obj) {
obj || (obj = {});
var __t, __p = '', __e = _.escape;
with (obj) {
@ -205,7 +205,7 @@ __p += '<div id="minimized-chats">\n <a id="toggle-minimized-chats" href="#">
return __p
};
this["JST"]["choose_status"] = function(obj) {
this["templates"]["choose_status"] = function(obj) {
obj || (obj = {});
var __t, __p = '', __e = _.escape;
with (obj) {
@ -215,7 +215,7 @@ __p += '<dl id="target" class="dropdown">\n <dt id="fancy-xmpp-status-select"
return __p
};
this["JST"]["contacts_panel"] = function(obj) {
this["templates"]["contacts_panel"] = function(obj) {
obj || (obj = {});
var __t, __p = '', __e = _.escape, __j = Array.prototype.join;
function print() { __p += __j.call(arguments, '') }
@ -240,7 +240,7 @@ __p += '\n </select>\n </span>\n</form>\n';
return __p
};
this["JST"]["contacts_tab"] = function(obj) {
this["templates"]["contacts_tab"] = function(obj) {
obj || (obj = {});
var __t, __p = '', __e = _.escape;
with (obj) {
@ -252,7 +252,7 @@ __p += '<li><a class="s current" href="#users">' +
return __p
};
this["JST"]["controlbox"] = function(obj) {
this["templates"]["controlbox"] = function(obj) {
obj || (obj = {});
var __t, __p = '', __e = _.escape;
with (obj) {
@ -264,7 +264,7 @@ __p += '<div class="box-flyout" style="height: ' +
return __p
};
this["JST"]["controlbox_toggle"] = function(obj) {
this["templates"]["controlbox_toggle"] = function(obj) {
obj || (obj = {});
var __t, __p = '', __e = _.escape;
with (obj) {
@ -276,7 +276,7 @@ __p += '<span class="conn-feedback">' +
return __p
};
this["JST"]["field"] = function(obj) {
this["templates"]["field"] = function(obj) {
obj || (obj = {});
var __t, __p = '', __e = _.escape, __j = Array.prototype.join;
function print() { __p += __j.call(arguments, '') }
@ -303,7 +303,7 @@ __p += '</field>\n';
return __p
};
this["JST"]["form_captcha"] = function(obj) {
this["templates"]["form_captcha"] = function(obj) {
obj || (obj = {});
var __t, __p = '', __e = _.escape, __j = Array.prototype.join;
function print() { __p += __j.call(arguments, '') }
@ -330,7 +330,7 @@ __p += ' >\n\n\n';
return __p
};
this["JST"]["form_checkbox"] = function(obj) {
this["templates"]["form_checkbox"] = function(obj) {
obj || (obj = {});
var __t, __p = '', __e = _.escape;
with (obj) {
@ -348,7 +348,7 @@ __p += '<label>' +
return __p
};
this["JST"]["form_input"] = function(obj) {
this["templates"]["form_input"] = function(obj) {
obj || (obj = {});
var __t, __p = '', __e = _.escape, __j = Array.prototype.join;
function print() { __p += __j.call(arguments, '') }
@ -379,7 +379,7 @@ __p += ' >\n';
return __p
};
this["JST"]["form_select"] = function(obj) {
this["templates"]["form_select"] = function(obj) {
obj || (obj = {});
var __t, __p = '', __e = _.escape, __j = Array.prototype.join;
function print() { __p += __j.call(arguments, '') }
@ -400,7 +400,7 @@ __p += '>' +
return __p
};
this["JST"]["form_textarea"] = function(obj) {
this["templates"]["form_textarea"] = function(obj) {
obj || (obj = {});
var __t, __p = '', __e = _.escape;
with (obj) {
@ -416,7 +416,7 @@ __p += '<label class="label-ta">' +
return __p
};
this["JST"]["form_username"] = function(obj) {
this["templates"]["form_username"] = function(obj) {
obj || (obj = {});
var __t, __p = '', __e = _.escape, __j = Array.prototype.join;
function print() { __p += __j.call(arguments, '') }
@ -449,7 +449,7 @@ __p += ' />\n <span>' +
return __p
};
this["JST"]["group_header"] = function(obj) {
this["templates"]["group_header"] = function(obj) {
obj || (obj = {});
var __t, __p = '', __e = _.escape;
with (obj) {
@ -465,7 +465,7 @@ __p += '<a href="#" class="group-toggle icon-' +
return __p
};
this["JST"]["info"] = function(obj) {
this["templates"]["info"] = function(obj) {
obj || (obj = {});
var __t, __p = '', __e = _.escape;
with (obj) {
@ -477,7 +477,7 @@ __p += '<div class="chat-info">' +
return __p
};
this["JST"]["login_panel"] = function(obj) {
this["templates"]["login_panel"] = function(obj) {
obj || (obj = {});
var __t, __p = '', __e = _.escape;
with (obj) {
@ -493,7 +493,7 @@ __p += '<form id="converse-login" method="post">\n <label>' +
return __p
};
this["JST"]["login_tab"] = function(obj) {
this["templates"]["login_tab"] = function(obj) {
obj || (obj = {});
var __t, __p = '', __e = _.escape;
with (obj) {
@ -505,7 +505,7 @@ __p += '<li><a class="current" href="#login-dialog">' +
return __p
};
this["JST"]["message"] = function(obj) {
this["templates"]["message"] = function(obj) {
obj || (obj = {});
var __t, __p = '', __e = _.escape;
with (obj) {
@ -525,7 +525,7 @@ __p += '<div class="chat-message ' +
return __p
};
this["JST"]["new_day"] = function(obj) {
this["templates"]["new_day"] = function(obj) {
obj || (obj = {});
var __t, __p = '', __e = _.escape;
with (obj) {
@ -539,7 +539,7 @@ __p += '<time class="chat-date" datetime="' +
return __p
};
this["JST"]["occupant"] = function(obj) {
this["templates"]["occupant"] = function(obj) {
obj || (obj = {});
var __t, __p = '', __e = _.escape, __j = Array.prototype.join;
function print() { __p += __j.call(arguments, '') }
@ -572,11 +572,15 @@ __p += '\n>' +
return __p
};
this["JST"]["pending_contact"] = function(obj) {
this["templates"]["pending_contact"] = function(obj) {
obj || (obj = {});
var __t, __p = '', __e = _.escape;
with (obj) {
__p += '<span class="pending-contact-name">' +
__p += '<span class="pending-contact-name" title="Name: ' +
((__t = (fullname)) == null ? '' : __t) +
'\nJID: ' +
((__t = (jid)) == null ? '' : __t) +
'">' +
((__t = (fullname)) == null ? '' : __t) +
'</span> <a class="remove-xmpp-contact icon-remove" title="' +
((__t = (desc_remove)) == null ? '' : __t) +
@ -586,7 +590,7 @@ __p += '<span class="pending-contact-name">' +
return __p
};
this["JST"]["pending_contacts"] = function(obj) {
this["templates"]["pending_contacts"] = function(obj) {
obj || (obj = {});
var __t, __p = '', __e = _.escape;
with (obj) {
@ -602,7 +606,7 @@ __p += '<dt id="pending-xmpp-contacts"><a href="#" class="group-toggle icon-' +
return __p
};
this["JST"]["register_panel"] = function(obj) {
this["templates"]["register_panel"] = function(obj) {
obj || (obj = {});
var __t, __p = '', __e = _.escape;
with (obj) {
@ -624,7 +628,7 @@ __p += '<form id="converse-register">\n <span class="reg-feedback"></span>\n
return __p
};
this["JST"]["register_tab"] = function(obj) {
this["templates"]["register_tab"] = function(obj) {
obj || (obj = {});
var __t, __p = '', __e = _.escape;
with (obj) {
@ -636,7 +640,7 @@ __p += '<li><a class="s" href="#register">' +
return __p
};
this["JST"]["registration_form"] = function(obj) {
this["templates"]["registration_form"] = function(obj) {
obj || (obj = {});
var __t, __p = '', __e = _.escape;
with (obj) {
@ -656,7 +660,7 @@ __p += '<p class="provider-title">' +
return __p
};
this["JST"]["registration_request"] = function(obj) {
this["templates"]["registration_request"] = function(obj) {
obj || (obj = {});
var __t, __p = '', __e = _.escape;
with (obj) {
@ -670,11 +674,15 @@ __p += '<span class="spinner login-submit"/>\n<p class="info">' +
return __p
};
this["JST"]["requesting_contact"] = function(obj) {
this["templates"]["requesting_contact"] = function(obj) {
obj || (obj = {});
var __t, __p = '', __e = _.escape;
with (obj) {
__p += '<span class="req-contact-name">' +
__p += '<span class="req-contact-name" title="Name: ' +
((__t = (fullname)) == null ? '' : __t) +
'\nJID: ' +
((__t = (jid)) == null ? '' : __t) +
'">' +
((__t = (fullname)) == null ? '' : __t) +
'</span>\n<span class="request-actions">\n <a class="accept-xmpp-request icon-checkmark" title="' +
((__t = (desc_accept)) == null ? '' : __t) +
@ -686,7 +694,7 @@ __p += '<span class="req-contact-name">' +
return __p
};
this["JST"]["requesting_contacts"] = function(obj) {
this["templates"]["requesting_contacts"] = function(obj) {
obj || (obj = {});
var __t, __p = '', __e = _.escape;
with (obj) {
@ -702,7 +710,7 @@ __p += '<dt id="xmpp-contact-requests"><a href="#" class="group-toggle icon-' +
return __p
};
this["JST"]["room_description"] = function(obj) {
this["templates"]["room_description"] = function(obj) {
obj || (obj = {});
var __t, __p = '', __e = _.escape, __j = Array.prototype.join;
function print() { __p += __j.call(arguments, '') }
@ -789,7 +797,7 @@ __p += '\n </ul>\n</p>\n</div>\n';
return __p
};
this["JST"]["room_item"] = function(obj) {
this["templates"]["room_item"] = function(obj) {
obj || (obj = {});
var __t, __p = '', __e = _.escape;
with (obj) {
@ -809,49 +817,59 @@ __p += '<dd class="available-chatroom">\n<a class="open-room" data-room-jid="' +
return __p
};
this["JST"]["room_panel"] = function(obj) {
this["templates"]["room_panel"] = function(obj) {
obj || (obj = {});
var __t, __p = '', __e = _.escape;
with (obj) {
__p += '<form class="add-chatroom" action="" method="post">\n <input type="text" name="chatroom" class="new-chatroom-name"\n placeholder="' +
__p += '<form class="add-chatroom" action="" method="post">\n <label>' +
((__t = (label_room_name)) == null ? '' : __t) +
'"/>\n <input type="text" name="nick" class="new-chatroom-nick"\n placeholder="' +
'</label>\n <input type="text" name="chatroom" class="new-chatroom-name"\n placeholder="' +
((__t = (label_room_name)) == null ? '' : __t) +
'"/>\n <label>' +
((__t = (label_nickname)) == null ? '' : __t) +
'"/>\n <input type="' +
'</label>\n <input type="text" name="nick" class="new-chatroom-nick"\n placeholder="' +
((__t = (label_nickname)) == null ? '' : __t) +
'"/>\n <label>' +
((__t = (label_server)) == null ? '' : __t) +
'</label>\n <input type="' +
((__t = (server_input_type)) == null ? '' : __t) +
'" name="server" class="new-chatroom-server"\n placeholder="' +
((__t = (label_server)) == null ? '' : __t) +
'"/>\n <input type="submit" name="join" value="' +
'"/>\n <div class="button-group">\n <input type="submit" class="left" name="join" value="' +
((__t = (label_join)) == null ? '' : __t) +
'"/>\n <input type="button" name="show" id="show-rooms" value="' +
'"/>\n <input type="button" class="right" name="show" id="show-rooms" value="' +
((__t = (label_show_rooms)) == null ? '' : __t) +
'"/>\n</form>\n<dl id="available-chatrooms"></dl>\n';
'"/>\n </div>\n</form>\n<dl id="available-chatrooms"></dl>\n';
}
return __p
};
this["JST"]["roster"] = function(obj) {
this["templates"]["roster"] = function(obj) {
obj || (obj = {});
var __t, __p = '', __e = _.escape;
with (obj) {
__p += '<input style="display: none;" class="roster-filter" placeholder="' +
__p += '<span class="input-button-group">\n <input style="display: none;" class="roster-filter" placeholder="' +
((__t = (placeholder)) == null ? '' : __t) +
'">\n<select style="display: none;" class="filter-type">\n <option value="contacts">' +
'">\n <select style="display: none;" class="filter-type">\n <option value="contacts">' +
((__t = (label_contacts)) == null ? '' : __t) +
'</option>\n <option value="groups">' +
'</option>\n <option value="groups">' +
((__t = (label_groups)) == null ? '' : __t) +
'</option>\n</select>\n';
'</option>\n </select>\n</span>\n';
}
return __p
};
this["JST"]["roster_item"] = function(obj) {
this["templates"]["roster_item"] = function(obj) {
obj || (obj = {});
var __t, __p = '', __e = _.escape;
with (obj) {
__p += '<a class="open-chat" title="' +
__p += '<a class="open-chat" title="Name: ' +
((__t = (fullname)) == null ? '' : __t) +
'\nJID: ' +
((__t = (jid)) == null ? '' : __t) +
'\n' +
((__t = (desc_chat)) == null ? '' : __t) +
'" href="#"><span class="icon-' +
((__t = (chat_status)) == null ? '' : __t) +
@ -867,7 +885,7 @@ __p += '<a class="open-chat" title="' +
return __p
};
this["JST"]["search_contact"] = function(obj) {
this["templates"]["search_contact"] = function(obj) {
obj || (obj = {});
var __t, __p = '', __e = _.escape;
with (obj) {
@ -881,7 +899,7 @@ __p += '<li>\n <form class="search-xmpp-contact">\n <input type="text"
return __p
};
this["JST"]["select_option"] = function(obj) {
this["templates"]["select_option"] = function(obj) {
obj || (obj = {});
var __t, __p = '', __e = _.escape, __j = Array.prototype.join;
function print() { __p += __j.call(arguments, '') }
@ -900,7 +918,7 @@ __p += ' >' +
return __p
};
this["JST"]["status_option"] = function(obj) {
this["templates"]["status_option"] = function(obj) {
obj || (obj = {});
var __t, __p = '', __e = _.escape;
with (obj) {
@ -918,7 +936,7 @@ __p += '<li>\n <a href="#" class="' +
return __p
};
this["JST"]["toggle_chats"] = function(obj) {
this["templates"]["toggle_chats"] = function(obj) {
obj || (obj = {});
var __t, __p = '', __e = _.escape, __j = Array.prototype.join;
function print() { __p += __j.call(arguments, '') }
@ -939,7 +957,7 @@ __p += '\n href="#">' +
return __p
};
this["JST"]["toolbar"] = function(obj) {
this["templates"]["toolbar"] = function(obj) {
obj || (obj = {});
var __t, __p = '', __e = _.escape, __j = Array.prototype.join;
function print() { __p += __j.call(arguments, '') }
@ -1022,7 +1040,7 @@ __p += '\n';
return __p
};
this["JST"]["trimmed_chat"] = function(obj) {
this["templates"]["trimmed_chat"] = function(obj) {
obj || (obj = {});
var __t, __p = '', __e = _.escape, __j = Array.prototype.join;
function print() { __p += __j.call(arguments, '') }

File diff suppressed because it is too large Load Diff

View File

@ -42,6 +42,8 @@
box-sizing: border-box;
/* @group Tabs */
/* status dropdown styles */ }
#conversejs ::selection {
background-color: #E3C9C1; }
#conversejs *, #conversejs *:before, #conversejs *:after {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
@ -71,7 +73,7 @@
#conversejs input[type=text], #conversejs input[type=password],
#conversejs button {
font-size: 14px;
padding: 0.5em;
padding: 0.25em;
min-height: 0; }
#conversejs strong {
font-weight: 700; }
@ -294,6 +296,10 @@
user-select: none; }
#conversejs .emoticon {
font-size: 14px; }
#conversejs .left {
float: left; }
#conversejs .right {
float: right; }
#conversejs .hidden {
display: none; }
#conversejs .locked {
@ -370,6 +376,14 @@
padding: 10px 8px 0 8px; }
#conversejs .toggle-controlbox span {
color: white; }
#conversejs .button-group,
#conversejs .input-button-group {
display: table; }
#conversejs .button-group {
width: 100%; }
#conversejs .input-button-group button,
#conversejs .input-button-group input {
display: table-cell; }
#conversejs #minimized-chats {
color: white;
display: none;
@ -455,9 +469,6 @@
background-color: #176679;
border-right: 1px solid #176679;
border-left: 1px solid #176679; }
#conversejs .chat-message span::selection,
#conversejs .chat-message::selection {
background-color: darkgrey; }
#conversejs .chat-content {
position: relative;
padding: 8px;
@ -678,25 +689,24 @@
overflow: hidden;
/* (jQ addClass:) if input has value: */
/* (jQ addClass:) if mouse is over the 'x' input area*/ }
#conversejs #converse-roster .roster-filter-group {
display: table; }
#conversejs #converse-roster .filter-type {
display: table-cell;
float: right;
font-size: 14px;
height: 25px;
margin: 0 0 0.5em -1px;
padding: 0;
width: 84px; }
#conversejs #converse-roster .roster-filter {
float: left;
background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAHCAYAAADEUlfTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAIGNIUk0AAHolAACAgwAA+f8AAIDpAAB1MAAA6mAAADqYAAAXb5JfxUYAAABNSURBVHjaXI7BDcAwCAMvyQjMyQ6dAbZiKfqoUK34g2zJh1dENIC7M8pMAPYdzAVY3d0ajNz9aypS/b5R6o+ZPdqoKgCq6h80KH3xDgBqNR97p8oAGQAAAABJRU5ErkJggg==) no-repeat right -20px center;
border: 1px solid #999;
display: table-cell;
font-size: 14px;
height: 25px;
margin: 0 0 0.5em 6px;
margin: 0 0 0.5em 7px;
padding: 0;
padding: 2px;
width: 104px; }
width: 103px; }
#conversejs #converse-roster .roster-filter.x {
background-position: right 3px center; }
#conversejs #converse-roster .roster-filter.onX {
@ -715,7 +725,9 @@
#conversejs #converse-roster dt {
display: none; }
#conversejs #converse-roster dd {
line-height: 16px; }
line-height: 16px;
padding: 4px 2px 0 4px;
height: 24px; }
#conversejs #converse-roster dd a, #conversejs #converse-roster dd span {
text-shadow: 0 1px 0 #FAFAFA;
display: inline-block;
@ -724,8 +736,7 @@
text-overflow: ellipsis;
margin-left: 3px; }
#conversejs #converse-roster dd span {
padding: 0 5px 0 0;
margin-left: 3px; }
padding: 0 5px 0 0; }
#conversejs #converse-roster dd a.decline-xmpp-request {
margin-left: 5px; }
#conversejs #converse-roster dd a.remove-xmpp-contact {
@ -745,15 +756,11 @@
color: #436F64; }
#conversejs #converse-roster dd a.open-chat {
width: 80%; }
#conversejs #converse-roster span.pending-contact-name, #conversejs #converse-roster span.req-contact-name {
#conversejs #converse-roster span.pending-contact-name {
width: 80%; }
#conversejs dd.available-chatroom {
display: inline-block;
overflow-x: hidden;
text-overflow: ellipsis;
white-space: nowrap; }
#conversejs dd.available-chatroom a.open-room {
width: 148px; }
#conversejs #converse-roster span.req-contact-name {
width: 69%;
padding: 0; }
#conversejs #available-chatrooms {
text-align: left; }
#conversejs #available-chatrooms dt,
@ -761,7 +768,7 @@
font-weight: normal;
color: #6C4C44;
border: none;
padding: 5px;
padding: 0.5em;
text-shadow: 0 1px 0 #FAFAFA; }
#conversejs .room-info {
font-size: 11px;
@ -778,9 +785,7 @@
display: block;
white-space: normal; }
#conversejs a.room-info {
width: 22px;
height: 22px;
float: right;
width: 15px;
display: none;
clear: right; }
#conversejs a.open-room {
@ -788,20 +793,25 @@
white-space: nowrap;
text-overflow: ellipsis;
overflow-x: hidden; }
#conversejs dd.available-chatroom {
display: inline-block;
overflow-x: hidden;
text-overflow: ellipsis;
padding: 0.25em 0.5em;
white-space: nowrap; }
#conversejs dd.available-chatroom a.open-room {
width: 150px; }
#conversejs dd.available-chatroom:hover a.room-info {
display: inline-block;
margin-top: 3px;
font-size: 15px; }
font-size: 14px; }
#conversejs dd.available-chatroom,
#conversejs #converse-roster dd {
font-weight: bold;
border: none;
display: block;
padding: 4px 2px 0 4px;
color: #6C4C44;
text-shadow: 0 1px 0 #FAFAFA;
clear: both;
height: 24px;
overflow-y: hidden; }
#conversejs .roster-group:hover,
#conversejs dd.available-chatroom:hover,
@ -823,6 +833,7 @@
#conversejs .chatbox {
width: 100%; } }
#conversejs .chatbox .box-flyout {
z-index: 1;
width: 200px; }
@media screen and (max-width: 480px) {
#conversejs .chatbox .box-flyout {
@ -846,8 +857,10 @@
background-color: #F1E2DD; }
#conversejs .chatbox .dropdown dd ul li:hover {
background-color: #E3C9C1; }
#conversejs .chatbox .dropdown dd.search-xmpp ul li:hover {
background-color: #F1E2DD; }
#conversejs .chatbox .dropdown dd.search-xmpp ul {
box-shadow: 1px 4px 10px 1px rgba(0, 0, 0, 0.4); }
#conversejs .chatbox .dropdown dd.search-xmpp ul li:hover {
background-color: #F1E2DD; }
#conversejs .chatbox .dropdown dt a span {
cursor: pointer;
display: block;
@ -950,7 +963,7 @@
width: 100%;
height: 30px;
margin: 5px 0 10px 0;
padding: 0.5em; }
padding-left: 0.5em; }
#conversejs #converse-register .input-group {
display: table;
margin: auto;
@ -985,15 +998,20 @@
margin: 1em 0; }
#conversejs form.add-chatroom {
background: none;
padding: 8px; }
padding: 0.5em; }
#conversejs form.add-chatroom input[type=button],
#conversejs form.add-chatroom input[type=submit],
#conversejs form.add-chatroom input[type=text] {
margin: 0;
width: 100%;
padding: 5px; }
padding: 0.25em; }
#conversejs form.add-chatroom span.spinner,
#conversejs form.add-chatroom input[type=button],
#conversejs form.add-chatroom input[type=submit] {
margin-top: 0.5em;
display: table-cell;
width: auto; }
#conversejs form.add-chatroom input[type=submit] {
margin: 5px 0;
color: #436F64; }
#conversejs select#select-xmpp-status {
float: right;
@ -1040,7 +1058,7 @@
border-bottom: 1px solid #CCC;
border-top-left-radius: 4px;
border-top-right-radius: 4px;
box-shadow: inset 0 4px 12px rgba(0, 0, 0, 0.3);
box-shadow: inset 2px -2px 20px rgba(0, 0, 0, 0.3);
color: #888;
display: block;
font-size: 12px;
@ -1068,13 +1086,16 @@
margin: 0;
padding: 0;
position: relative;
width: 200px;
height: 84px; }
height: 82px;
width: 200px; }
@media screen and (max-width: 480px) {
#conversejs form.sendXMPPMessage {
width: 100%; } }
#conversejs form.sendXMPPMessage .chat-textarea {
border-bottom-left-radius: 4px;
border-bottom-right-radius: 4px;
border: 0;
height: 64px;
height: 62px;
padding: 0.5em;
width: 100%;
resize: none; }
@ -1148,14 +1169,14 @@
float: left;
padding: 0; }
#conversejs #set-custom-xmpp-status input {
height: 23px; }
height: 26px;
width: -webkit-calc(100% - 40px);
width: calc(100% - 40px);
padding: 0 0 0 0.5em; }
#conversejs #set-custom-xmpp-status button {
height: 23px;
height: 26px;
width: 40px;
padding: 1px 2px 1px 1px; }
#conversejs .custom-xmpp-status {
width: -webkit-calc(100% - 40px);
width: calc(100% - 40px); }
padding: 1px; }
#conversejs .chat-textarea-chatbox-selected {
border: 1px solid #578308;
margin: 0; }
@ -1179,11 +1200,13 @@
background: none;
padding: 5px; }
#conversejs .add-xmpp-contact input {
margin: 0 0 1rem; }
margin: 0 0 1rem;
width: 100%; }
#conversejs .add-xmpp-contact button {
width: 100%; }
#conversejs .xmpp-status-menu {
text-align: left; }
text-align: left;
box-shadow: 1px 4px 10px 1px rgba(0, 0, 0, 0.4); }
#conversejs .xmpp-status-menu li {
padding: 2px; }
#conversejs .xmpp-status-menu li a {
@ -1235,5 +1258,3 @@
margin-left: 0;
cursor: n-resize;
z-index: 20; }
/*# sourceMappingURL=converse.css.map */

File diff suppressed because one or more lines are too long

View File

@ -16,11 +16,13 @@ h4,
h5,
h6 {
margin: 0 0 35px;
text-transform: uppercase;
font-family: "Montserrat", "Helvetica Neue", Helvetica, Arial, sans-serif;
font-weight: 700;
letter-spacing: 1px;
}
h1 {
text-transform: uppercase;
}
p {
margin: 0 0 25px;
font-size: 18px;

206
dev.html
View File

@ -13,55 +13,22 @@
<link type="text/css" rel="stylesheet" media="screen" href="components/fontawesome/css/font-awesome.min.css" />
<link type="text/css" rel="stylesheet" media="screen" href="css/theme.css" />
<link type="text/css" rel="stylesheet" media="screen" href="css/converse.css" />
<script type="text/javascript" src="analytics.js"></script>
<script data-main="main" src="components/requirejs/require.js"></script>
</head>
<body id="page-top" data-spy="scroll" data-target=".navbar-custom">
<nav class="navbar navbar-custom navbar-fixed-top" role="navigation">
<div class="container">
<div class="navbar-header page-scroll">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-main-collapse">
<i class="fa fa-bars"></i>
</button>
<a class="navbar-brand" href="#page-top">
<i class="fa fa-play-circle"></i> <span class="light">Home</span>
</a>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse navbar-right navbar-main-collapse">
<ul class="nav navbar-nav">
<!-- Hidden li included to remove active class from about link when scrolled up past about section -->
<li class="hidden">
<a href="#page-top"></a>
</li>
<li class="page-scroll">
<a href="#about">About</a>
</li>
<li class="page-scroll">
<a href="#features">Features</a>
</li>
<!--
<li class="page-scroll">
<a href="#donate">Donate</a>
</li>
-->
<li class="page-scroll">
<a href="#contact">Contact</a>
</li>
<li>
<a href="/docs/html/index.html">Documentation</a>
</li>
<li>
<a href="https://github.com/jcbrand/converse.js/releases" class="button" target="_blank">Download</a>
</li>
<ul class="nav navbar-nav"><li> <a href="/docs/html/index.html">Documentation</a> </li>
</ul>
</div>
<!-- /.navbar-collapse -->
</div>
<!-- /.container -->
</nav>
<section class="intro">
@ -70,147 +37,11 @@
<div class="row">
<div class="col-md-8 col-md-offset-2">
<h1 class="brand-heading"><i class="icon-conversejs"></i>Converse.js</h1>
<p class="intro-text">A free and open-source XMPP chat client for your website</p>
<div class="page-scroll">
<a href="#about" class="btn btn-default btn-lg"><span class="btn-text">Learn More</span></a>
</div>
</div>
</div>
<div class="row">
<div class="col-md-8 col-md-offset-2 banner-social-buttons">
<ul class="list-inline">
<li><a href="https://twitter.com/jcopkode" class="btn btn-circle btn-lg" title="Twitter" target="_blank"><i class="fa fa-twitter"></i></a>
</li>
<li><a href="https://github.com/jcbrand/converse.js" class="btn btn-circle btn-lg" title="GitHub" target="_blank"><i class="fa fa-github"></i></a>
</li>
</ul>
</div>
</div>
</div>
</div>
</section>
<section id="about" class="container content-section text-center">
<div class="row">
<div class="col-lg-8 col-lg-offset-2">
<h2><strong>Converse.js</strong> is a free and open source chat client that runs in your browser. It can be integrated into any website.</h3>
<p>Similar to <a href="https://www.facebook.com/sitetour/chat.php" target="_blank">Facebook chat</a> but it also supports multi-user chatrooms.</p>
<p>
<strong>Converse.js</strong> can connect to any accessible <a href="http://xmpp.org" target="_blank">XMPP/Jabber</a> server,
either from a public provider such as <a href="http://jabber.org">jabber.org</a>, or one you have set up yourself.
</p>
<p>
It's possible to enable single-site-login, whereby users already authenticated in your website will also automatically be logged in on the chat server.
Please refer to the <strong><a href="/docs/html/index.html">documentation</a></strong> for more info.
</p>
</div>
</div>
</section>
<section class="features-section content-section" id="features">
<div class="container">
<div class="row">
<div class="col-lg-4">
<section>
<span class="feature-icon page-scroll"><a class="fa fa-globe" href="#features" title="Integration"></a></span>
<header>
<h2>Integration</h2>
</header>
<ul class="integration">
<li><a href="http://github.com/collective/collective.xmpp.chat" target="_blank">Plone</a></li>
<li><a href="https://pypi.python.org/pypi/django-conversejs" target="_blank">Django</a></li>
<li><a href="https://github.com/priyadi/roundcube-converse.js-xmpp-plugin" target="_blank">Roundcube</a></li>
<li><a href="http://wordpress.org/plugins/conversejs" target="_blank">Wordpress</a></li>
<li><a href="https://github.com/jcbrand/patterns.converse" target="_blank">Patternslib</a></li>
<li><a href="https://github.com/keensoft/alfresco-js-chat-share" target="_blank">Alfresco</a></li>
</ul>
</section>
</div>
<div class="col-lg-4">
<section>
<span class="feature-icon page-scroll"><a class="fa fa-check-square-o" href="#features" title="Features"></a></span>
</section>
<header>
<h2>Features</h2>
</header>
<ul class="features">
<li>Single-user chat</li>
<li>Multi-user chatrooms (<a href="http://xmpp.org/extensions/xep-0045.html" target="_blank">XEP 45</a>)</li>
<li>vCard support (<a href="http://xmpp.org/extensions/xep-0054.html" target="_blank">XEP 54</a>)</li>
<li>Service discovery (<a href="http://xmpp.org/extensions/xep-0030.html" target="_blank">XEP 30</a>)</li>
<li>Contact rosters and groups</li>
<li>Contact subscriptions</li>
<li>Accept or decline contact requests</li>
<li>Roster item exchange (<a href="http://xmpp.org/extensions/tmp/xep-0144-1.1.html" target="_blank">XEP 144</a>)</li>
<li>Chat statuses (online, busy, away, offline)</li>
<li>Custom status messages</li>
<li>Typing notifications</li>
<li>Third person messages (/me )</li>
<li>Translated into 15 languages</li>
<li>Off-the-record encryption
</ul>
</div>
<div class="col-lg-4">
<section>
<span class="feature-icon page-scroll"><a class="fa fa-video-camera" href="#features" title="Screencasts"></a></span>
<header>
<h2>Screencasts</h2>
</header>
<ul class="screencasts">
<li>
<a href="http://opkode.com/media/blog/instant-messaging-for-plone-with-javascript-and-xmpp" target="_blank">
In a Plone site
</a>
</li>
<li>
<a href="http://opkode.com/media/blog/2013/04/02/converse.js-xmpp-instant-messaging-with-javascript" target="_blank">
Chatting with buddies from Jabber.org and Gmail
</a>
</li>
<li>
<a href="https://opkode.com/media/blog/2013/11/11/conversejs-otr-support" target="_blank">
Off-the-record encryption
</a>
</li>
</ul>
</section>
</div>
</div>
</div>
</section>
<!--
<section id="donate" class="donate-section content-section text-center">
<div class="container">
<div class="row">
<div class="col-lg-8 col-lg-offset-2">
<h3>Donate</h3>
<p class="bitcoin-header">Most of the work done on <strong>converse.js</strong> is unpaid and a labor of love.</p>
<p>Thanks to those have donated already.</p>
<p class="bitcoin-header"><strong>Bitcoin</strong></p>
<img src="css/images/bitcoin_qr_code.png"/>
<p>16FsPqE9DhFTryxrUenpsGX4LJ1TPu8GqS</p>
</div>
</div>
</div>
</section>
-->
<section class="outro content-section" id="contact">
<div class="intro-body">
<div class="container">
<div class="row">
<div class="col-lg-8 col-lg-offset-2">
<h2>Contact</h2>
<ul class="contact">
<li>Follow me on <a href="http://twitter.com/jcopkode" target="_blank">Twitter</a>.</li>
<li>Chat with me via XMPP: <a href="xmpp:jc@opkode.com" class="xmpp JSnocheck" title="XMPP/Jabber">jc@opkode.com</a>.</li>
<li>For technical support, please write to the mailing list: <a href="mailto:conversejs@librelist.com">conversejs@librelist.com</a>.</li>
<li>Or ask in the Converse.js chat room: <a href="xmpp:discuss@conference.conversejs.org" class="xmpp JSnocheck" title="Converse.js chat room">discuss@conference.conversejs.org</a>.</li>
<li>Also check out the <a href="http://librelist.com/browser/conversejs" target="_blank">mailing list archives</a>.</li>
<li>Please file <a target="_blank" href="https://github.com/jcbrand/converse.js/issues">bugs on Github</a>.</li>
<li>I'm available for features and <a href="http://opkode.com/contact" target="_blank">consulting</a>.</li>
</ul>
<p class="intro-text">Developer page.</p>
<p class="intro-text">
Converse.js will only work on this page if you have
<a href="https://conversejs.org/docs/html/development.html">set up the development environment</a>.
</p>
</div>
</div>
</div>
@ -220,28 +51,6 @@
<script>
require(['converse'], function (converse) {
(function () {
/* XXX: This function initializes jquery.easing for the https://conversejs.org
* website. This code is only useful in the context of the converse.js
* website and converse.js itself is NOT dependent on it.
*/
var $ = converse.env.jQuery;
$(window).scroll(function() {
if ($(".navbar").offset().top > 50) {
$(".navbar-fixed-top").addClass("top-nav-collapse");
} else {
$(".navbar-fixed-top").removeClass("top-nav-collapse");
}
});
//jQuery for page scrolling feature - requires jQuery Easing plugin
$('.page-scroll a').bind('click', function(event) {
var $anchor = $(this);
$('html, body').stop().animate({
scrollTop: $($anchor.attr('href')).offset().top
}, 700, 'easeInOutExpo');
event.preventDefault();
});
})();
converse.initialize({
bosh_service_url: 'https://conversejs.org/http-bind/', // Please use this connection manager only for testing purposes
i18n: locales['en'], // Refer to ./locale/locales.js to see which locales are supported
@ -250,7 +59,8 @@
play_sounds: true,
roster_groups: true,
show_controlbox_by_default: true,
xhr_user_search: false
xhr_user_search: false,
debug: true
});
});
</script>

1
docs/.gitattributes vendored Normal file
View File

@ -0,0 +1 @@
CHANGES.rst merge=union

View File

@ -1,12 +1,28 @@
Changelog
=========
0.8.8 (Unreleased)
0.9.0 (2015-03-06)
------------------
* Norwegian Bokmål translations. [Andreas Lorentsen]
* Updated Afrikaans translations. [jcbrand]
* #204 Support websocket connections. [jcbrand]
* #252, 253 Add fullname and jid to contact's tooltip in roster. [gbonvehi]
* #292 Better support for XEP-0085 Chat State Notifications. [jcbrand]
* #295 Document "allow_registration". [gbonvehi]
* #304 Added Polish translations. [ser]
* #305 presence/show text in XMPP request isn't allowed by specification. [gbonvehi]
* Add new API method ``chats.open`` to open chat boxes. [jcbrand]
* Add new API method to set and get configuration settings. [jcbrand]
* Add responsiveness to CSS. We now use Sass preprocessor for generating CSS. [jcbrand]
* Bugfix. Custom status message form doesn't submit/disappear. [jcbrand]
* Calling the API method ``contacts.get()`` without parameters now returns all contacts. [jcbrand]
* Don't send out the message carbons IQ stanza on each page load. [jcbrand]
* New Makefile.win to build in Windows environments. [gbonvehi]
* Norwegian Bokmål translations. [Andreas Lorentsen]
* Removed deprecated API methods. [jcbrand]
* Strophe.log and Strophe.error now uses converse.log to output messages. [gbonvehi]
* The API method ``chats.get`` now only returns already opened chat boxes. [jcbrand]
* Updated Afrikaans translations. [jcbrand]
* Add new configuration setting `prebind_url <https://conversejs.org/docs/html/configuration.html#prebind-url>`_ [jcbrand]
0.8.6 (2014-12-07)
------------------
@ -61,7 +77,7 @@ Changelog
* Converse.js now has the ability to maintain sessions across page loads.
Previously, the session tokens had to be handled externally and passed in.
See the `keepalive <https://conversejs.org/docs/html/index.html#keepalive>`_ configuration setting. [jcbrand]
See the `keepalive <https://conversejs.org/docs/html/configuration.html#keepalive>`_ configuration setting. [jcbrand]
* Allow changing of nickname in a chat room via /nick command. [jcbrand]
* Allow a chat room user to be muted or unmuted with the /mute and /voice commands. [jcbrand]
* Add a chat room toolbar button for toggling the list of participants. [jcbrand]
@ -92,7 +108,7 @@ Changelog
.. note::
1. Converse.js is now relicensed under the `Mozilla Public License <http://www.mozilla.org/MPL/2.0/>`_.
2. Configuration options for the chat toolbar have changed. Please refer to the `relevant documentation <http://devbox:8890/docs/html/index.html#visible-toolbar-buttons>`_.
2. Configuration options for the chat toolbar have changed. Please refer to the `relevant documentation <http://devbox:8890/docs/html/configuration.html#visible-toolbar-buttons>`_.
3. This release has reduced support for IE8 (some features won't work).
4. Events have been renamed to remove "on" prefix (sorry for any inconvenience).
@ -101,7 +117,7 @@ Changelog
* Add a new toolbar button for clearing chat messages. [jcbrand]
* Chat boxes and rooms can now be resized vertically. [jcbrand]
* Upgraded dependencies to their latest versions. [jcbrand]
* Add new configuration setting `forward_messages <https://conversejs.org/docs/html/index.html#forward_messages>`_
* Add new configuration setting `forwarded_messages <https://conversejs.org/docs/html/configuration.html#forwarded-messages>`_
Message forwarding was before a default behavior but is now optional (and disabled by default). [jcbrand]
* Newly opened chat boxes always appear immediately left of the controlbox. [jcbrand]
* #71 Chat boxes and rooms can be minimized. [jcbrand]
@ -112,7 +128,7 @@ Changelog
* #123 Show converse.js in the resource assigned to a user. [jcbrand]
* #130 Fixed bootstrap conflicts. [jcbrand]
* #132 Support for `XEP-0280: Message Carbons <https://xmpp.org/extensions/xep-0280.html'>`_.
Configured via `message_carbons <https://conversejs.org/docs/html/index.html#message_carbons>`_ [hejazee]
Configured via `message_carbons <https://conversejs.org/docs/html/configuration.html#message-carbons>`_ [hejazee]
* #176 Add support for caching in sessionStorage as opposed to localStorage. [jcbrand]
* #180 RID and SID undefined [g8g3]
* #191 No messages history [heban]

View File

@ -3,7 +3,7 @@
{# Custom CSS overrides #}
{% set bootswatch_css_custom = ['_static/style.css', "../../css/converse.min.css"] %}
{% set script_files = script_files + ["../../builds/converse.min.js"] %}
{% set script_files = script_files + ["../../builds/converse.min.js", "../../analytics.js"] %}
{# Add some extra stuff before and use existing with 'super()' call. #}
{% block footer %}

View File

@ -1,6 +1,8 @@
======================
Creating custom builds
======================
.. _builds:
===============
Creating builds
===============
.. contents:: Table of Contents
:depth: 3
@ -10,31 +12,53 @@ Creating custom builds
.. warning:: There current documentation in this section does not adequately
explain how to create custom builds.
.. note:: Please make sure to read the section :doc:`development` and that you have installed
all development dependencies (long story short, you should be able to just run ``make dev``)
Creating builds
===============
We use `require.js <http://requirejs.org>`_ to keep track of *Converse.js* and
its dependencies and to to bundle them together in a single file fit for
deployment to a production site.
To create the bundles, simply run::
make build
This command does the following:
* It creates different Javascript bundles of Converse.js.
The individual javascript files will be bundled and minified with `require.js`_'s
optimization tool, using `almond <https://github.com/jrburke/almond>`_.
You can `read more about require.js's optimizer here <http://requirejs.org/docs/optimization.html>`_.
* It bundles the HTML templates in ``./src/templates/`` into a single file called ``templates.js``.
This file can then be included via the ``<script>`` tag. See for example the ``non_amd.html`` example page.
* It bundles all the translation files in ``./locale/`` into a single file ``locales.js``.
This file can then be included via the ``<script>`` tag. See for example the ``non_amd.html`` example page.
* Also, the CSS files in the ``./css`` directory will be minified.
The built Javasript bundles are contained in the ``./builds`` directory:
.. code-block:: bash
jc@conversejs:~/converse.js (master)$ ls builds/
converse.js converse-no-locales-no-otr.js converse.website.min.js
converse.min.js converse-no-locales-no-otr.min.js converse.website-no-otr.min.js
converse.nojquery.js converse-no-otr.js locales.js
converse.nojquery.min.js converse-no-otr.min.js templates.js
.. _`minification`:
Minification
============
Minifying the CSS
-----------------
Minifying Javascript and CSS
----------------------------
To only minify the CSS files, nothing else, run the following command::
Please make sure to read the section :doc:`development` and that you have installed
all development dependencies (long story short, you can run ``npm install``
and then ``grunt fetch``).
make cssmin
We use `require.js <http://requirejs.org>`_ to keep track of *Converse.js* and its dependencies and to
to bundle them together in a single minified file fit for deployment to a
production site.
The CSS files are minified via `cssmin <https://github.com/gruntjs/grunt-contrib-cssmin>`_.
To minify the Javascript and CSS, run the following command:
::
grunt minify
Javascript will be bundled and minified with `require.js`_'s optimization tool,
using `almond <https://github.com/jrburke/almond>`_.
You can `read more about require.js's optimizer here <http://requirejs.org/docs/optimization.html>`_.
CSS is minified via `cssmin <https://github.com/gruntjs/grunt-contrib-cssmin>`_.

View File

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

View File

@ -53,6 +53,15 @@ Default: ``true``
Allow Off-the-record encryption of single-user chat messages.
allow_registration
------------------
Default: ``true``
Support for `XEP-0077: In band registration <http://xmpp.org/extensions/xep-0077.html>`_
Allow XMPP account registration showing the corresponding UI register form interface.
animate
-------
@ -94,11 +103,20 @@ If true, the user will automatically subscribe back to any contact requests.
bosh_service_url
----------------
Connections to an XMPP server depend on a BOSH connection manager which acts as
a middle man between HTTP and XMPP.
Default: ``undefined``
To connect to an XMPP server over HTTP you need a `BOSH <https://en.wikipedia.org/wiki/BOSH>`_
connection manager which acts as a middle man between the HTTP and XMPP
protocols.
The bosh_service_url setting takes the URL of a BOSH connection manager.
Please refer to your XMPP server's documentation on how to enable BOSH.
For more information, read this blog post: `Which BOSH server do you need? <http://metajack.im/2008/09/08/which-bosh-server-do-you-need>`_
A more modern alternative to BOSH is to use `websockets <https://developer.mozilla.org/en/docs/WebSockets>`_.
Please see the :ref:`websocket-url` configuration setting.
cache_otr_key
-------------
@ -136,6 +154,8 @@ Default: ``e.g. conversejs.org``
The placeholder text shown in the domain input on the registration form.
.. _`keepalive`:
keepalive
---------
@ -149,6 +169,13 @@ See also:
* :ref:`session-support`
* `Using prebind in connection with keepalive`_
.. note::
Currently the "keepalive" setting only works with BOSH and not with
websockets. This is because XMPP over websocket does not use the same
session token as with BOSH. A possible solution for this is to implement
`XEP-0198 <http://xmpp.org/extensions/xep-0198.html>`_, specifically
with regards to "stream resumption".
message_carbons
---------------
@ -248,6 +275,8 @@ it in both formats as ``http://yoursite.com/sounds/msg_received.mp3`` and
``http://yoursite.com`` should of course be your site's URL.
.. _`prebind`:
prebind
--------
@ -255,71 +284,74 @@ Default: ``false``
See also: :ref:`session-support`
Use this option when you want to attach to an existing XMPP connection that was
already authenticated (usually on the backend before page load).
Use this option when you want to attach to an existing XMPP
`BOSH <https://en.wikipedia.org/wiki/BOSH>`_ session.
This is useful when you don't want to render the login form on the chat control
box with each page load.
Usually a BOSH session is set up server-side in your web app.
For prebinding to work, you must set up a pre-authenticated BOSH session,
for which you will receive a JID (jabber ID), SID (session ID) and RID
(Request ID).
Attaching to an existing BOSH session that was set up server-side is useful
when you want to maintain a persistent single session for your users instead of
requiring them to log in manually.
These values (``rid``, ``sid`` and ``jid``) need to be passed into
``converse.initialize`` (with the exception of ``keepalive``, see below).
When a BOSH session is initially created, you'll receive three tokens.
A JID (jabber ID), SID (session ID) and RID (Request ID).
Additionally, you also have to specify a ``bosh_service_url``.
Converse.js needs these tokens in order to attach to that same session.
Using prebind in connection with keepalive
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
There are two complementary configuration settings to ``prebind``.
They are :ref:`keepalive` and :ref:`prebind_url`.
The ``prebind`` and `keepalive`_ options can be used together.
``keepalive`` can be used keep the session alive without having to pass in
new tokens to ``converse.initialize`` every time you reload the page. This
removes the need to set up a new BOSH session every time a page loads.
The ``keepalive`` option caches the ``rid``, ``sid`` and ``jid`` values
(henceforth referred to as *session tokens*) one receives from a prebinded
BOSH session, in order to re-use them when the page reloads.
``prebind_url`` lets you specify a URL which converse.js will call whenever a
new BOSH session needs to be set up.
However, if besides setting ``keepalive`` to ``true``, you also set ``prebind``
to ``true``, and you pass in valid session tokens to ``converse.initialize``,
then those passed in session tokens will be used instead of any tokens cached by
``keepalive``.
If you set ``prebind`` to ``true`` and don't pass in the session tokens to
``converse.initialize``, then converse.js will look for tokens cached by
``keepalive``.
If you've set ``keepalive`` and ``prebind`` to ``true``, don't pass in session
tokens and converse.js doesn't find any cached session tokens, then
converse.js will emit an event ``noResumeableSession`` and exit.
This allows you to start a prebinded session with valid tokens, and then fall
back to ``keepalive`` for maintaining that session across page reloads. When
for some reason ``keepalive`` doesn't have cached session tokens anymore, you
can listen for the ``noResumeableSession`` event and take that as a cue that
you should again prebind in order to get valid session tokens.
Here is a code example:
Here's an example of converse.js being initialized with these three options:
.. code-block:: javascript
converse.on('noResumeableSession', function () {
$.getJSON('/prebind', function (data) {
converse.initialize({
prebind: true,
keepalive: true,
bosh_service_url: 'https://bind.example.com',
jid: data.jid,
sid: data.sid,
rid: data.rid
});
});
});
converse.initialize({
prebind: true,
keepalive: true,
bosh_service_url: 'https://bind.example.com'
}));
converse.initialize({
bosh_service_url: 'https://bind.example.com',
keepalive: true,
prebind: true,
prebind_url: 'http://example.com/api/prebind',
allow_logout: false
});
.. note:: The ``prebind_url`` configuration setting is new in version 0.9 and
simplifies the code needed to set up and maintain prebinded sessions.
When using ``prebind_url`` and ``keepalive``, you don't need to manually pass in
the RID, SID and JID tokens anymore.
.. _`prebind_url`:
prebind_url
-----------
* Default: ``null``
* Type: URL
See also: :ref:`session-support`
This setting should be used in conjunction with :ref:`prebind` and :ref:`keepalive`.
It allows you to specify a URL which converse.js will call when it needs to get
the RID and SID (Request ID and Session ID) tokens of a BOSH connection, which
converse.js will then attach to.
The server behind ``prebind_url`` should return a JSON encoded object with the
three tokens::
{
"jid": "me@example.com/resource",
"sid": "346234623462",
"rid": "876987608760"
}
providers_link
--------------
@ -443,6 +475,33 @@ Allows you to show or hide buttons on the chat boxes' toolbars.
* toggle_participants:
Shows a button for toggling (i.e. showing/hiding) the list of participants in a chat room.
.. _`websocket-url`:
websocket_url
-------------
Default: ``undefined``
This option is used to specify a
`websocket <https://developer.mozilla.org/en/docs/WebSockets>`_ URI to which
converse.js can connect to.
Websockets provide a more modern and effective two-way communication protocol
between the browser and a server, effectively emulating TCP at the application
layer and therefore overcoming many of the problems with existing long-polling
techniques for bidirectional HTTP (such as `BOSH <https://en.wikipedia.org/wiki/BOSH>`_).
Please refer to your XMPP server's documentation on how to enable websocket
support.
.. note::
Please note that not older browsers do not support websockets. For older
browsers you'll want to specify a BOSH URL. See the :ref:`bosh-service-url`
configuration setting).
.. note::
Converse.js does not yet support "keepalive" with websockets.
xhr_custom_status
-----------------

View File

@ -1,3 +1,5 @@
.. _development:
===========
Development
===========
@ -12,6 +14,8 @@ follow the instructions below to create this folder and fetch Converse's
3rd-party dependencies.
.. note::
Windows environment: We recommend installing the required tools using `Chocolatey <https://chocolatey.org/>`_
You will need Node.js (nodejs.install), Git (git.install) and optionally to build using Makefile, GNU Make (make)
If you have trouble setting up a development environment on Windows,
please read `this post <http://librelist.com/browser//conversejs/2014/11/5/openfire-converse-and-visual-studio-questions/#b28387e7f8f126693b11598a8acbe810>`_
in the mailing list.:
@ -27,6 +31,9 @@ version `here <https://nodejs.org/download>`_.
Also make sure you have ``Git`` installed. `Details <http://git-scm.com/book/en/Getting-Started-Installing-Git>`_.
.. note::
Windows users should use Chocolatey as recommended above.:
Once you have *Node.js* and *git* installed, run the following command inside the Converse.js
directory:
@ -34,13 +41,18 @@ directory:
make dev
On Windows you need to specify Makefile.win to be used by running:
::
make -f Makefile.win dev
Or alternatively, if you don't have GNU Make:
::
npm install
bower update
This will first install the Node.js development tools (like Grunt and Bower)
and then use Bower to install all of Converse.js's front-end dependencies.
@ -64,7 +76,6 @@ If you are curious to know what the different dependencies are:
Double-check the output of ```make dev``` to see if there are any errors
listed. For support, you can write to the mailing list: conversejs@librelist.com
With AMD and require.js (recommended)
=====================================
@ -152,7 +163,6 @@ which you can then call certain standardised accessors and mutators, like::
.get
.set
.add
.all
.remove
This is done to increase readability and to allow intuitive method chaining.
@ -165,6 +175,10 @@ To get multiple contacts, just pass in an array of jids::
converse.contacts.get(['jid1@example.com', 'jid2@example.com']);
To get all contacts, simply call ``get`` without any jids::
converse.contacts.get();
**Here follows now a breakdown of all API groupings and methods**:
@ -207,14 +221,22 @@ Example:
get
~~~
Returns a map of attributes for a given buddy (i.e. roster contact), specified
by JID (Jabber ID).
This method is used to retrieve roster contacts.
Example::
To get a single roster contact, call the method with the contact's JID (Jabber ID):
converse.contacts.get('buddy@example.com')
The map of attributes:
To get multiple contacts, pass in an array of JIDs::
converse.contacts.get(['buddy1@example.com', 'buddy2@example.com'])
To return all contacts, simply call ``get`` without any parameters::
converse.contacts.get()
The returned roster contact objects have these attributes:
+----------------+--------------------------------------------------------------------------------------------------------------------------------------+
| Attribute | |
@ -256,12 +278,36 @@ The map of attributes:
get
~~~
Returns an object/map representing a chat box (without opening or affecting that chat box).
Returns an object representing a chat box, if that chat box is already open.
If the chat box is not already open, this method will return ``null``.
Example::
To return a single chat box, provide the JID of the contact you're chatting
with in that chat box::
converse.chats.get('buddy@example.com')
To return an array of chat boxes, provide an array of JIDs::
converse.chats.get(['buddy1@example.com', 'buddy2@example.com'])
To return all open chat boxes, call the method without any JIDs::
converse.chats.get()
open
~~~~
Opens a chat box and returns an object representing a chat box.
To open a single chat box, provide the JID of the contact::
converse.chats.get('buddy@example.com')
To return an array of chat boxes, provide an array of JIDs::
converse.chats.get(['buddy1@example.com', 'buddy2@example.com'])
*The returned chat box contains the following methods:*
+-------------+------------------------------------------+
@ -279,6 +325,8 @@ Example::
+-------------+------------------------------------------+
| set | Set an attribute (i.e. mutator). |
+-------------+------------------------------------------+
| close | Close the chat box. |
+-------------+------------------------------------------+
*The get and set methods can be used to retrieve and change the following attributes:*
@ -290,6 +338,36 @@ Example::
| url | The URL of the chat box heading. |
+-------------+-----------------------------------------------------+
"settings" grouping
-------------------
This grouping allows you to get or set the configuration settings of converse.js.
get(key)
~~~~~~~~
Returns the value of a configuration settings. For example::
converse.settings.get("play_sounds"); // default value returned would be false;
set(key, value) or set(object)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Set one or many configuration settings. For example::
converse.settings.set("play_sounds", true);
or ::
converse.settings.set({
"play_sounds", true,
"hide_offline_users" true
});
Note, this is not an alternative to calling ``converse.initialize``, which still needs
to be called. Generally, you'd use this method after converse.js is already
running and you want to change the configuration on-the-fly.
"tokens" grouping
-----------------

View File

@ -33,7 +33,7 @@ The :ref:`what-you-will-need` and :ref:`session-support` sections provide more i
Table of Contents
=================
.. toctree::
:maxdepth: 2
@ -42,6 +42,7 @@ Table of Contents
setup
configuration
development
theming
translations
documentation
builds

View File

@ -120,15 +120,15 @@ Apache
Single Session Support
----------------------
Server-side authentication
==========================
Server-side authentication (prebind)
====================================
It's possible to enable single-site login, whereby users already
authenticated in your website will also automatically be logged in on the chat server,
It's possible to enable shared sessions whereby users already
authenticated in your website will also automatically be logged in on the XMPP server,
This session should also persist across page loads. In other words, we don't
want the user to have to give their chat credentials every time they reload the
page.
This session can also be made to persist across page loads. In other words, we want
a user to automatically be logged in to chat when they log in to the website,
and we want their chat session to persist across page loads.
To do this you will require a `BOSH server <http://xmpp.org/about-xmpp/technology-overview/bosh/>`_
for converse.js to connect to (see the :ref:`bosh-service-url` under :ref:`configuration-variables`)
@ -158,41 +158,11 @@ page load). Each page load is a new request which requires a new unique RID.
The best way to achieve this is to simply increment the RID with each page
load.
When you initialize converse.js in your browser, you need to pass it these two
tokens. Converse.js will then use them to attach to the session you just
created.
You can embed the RID and SID tokens in your HTML markup or you can do an
XMLHttpRequest call to your server and ask it to return them for you.
Below is one example of how this could work. An Ajax call is made to the
relative URL **/prebind** and it expects to receive JSON data back.
.. code-block:: javascript
$.getJSON('/prebind', function (data) {
converse.initialize({
prebind: true,
bosh_service_url: data.bosh_service_url,
jid: data.jid,
sid: data.sid,
rid: data.rid
});
);
**Here's what's happening:**
The JSON data returned from the Ajax call to example.com/prebind contains the user's JID (jabber ID), RID, SID and the URL to the
BOSH server (also called a *connection manager*).
These values are then passed to converse.js's ``initialize`` method.
.. note::
If you want to enable single session support, you need to set **prebind: true**
when calling **converse.initialize** (see ./index.html).
Additionally you need to pass in valid **jid**, **sid**, **rid** and
**bosh_service_url** values.
You'll need to configure converse.js with the :ref:`prebind`, :ref:`keepalive` and
:ref:`prebind_url` settings.
Please read the documentation on those settings for a fuller picture of what
needs to be done.
Example code for server-side prebinding
=======================================

63
docs/source/theming.rst Normal file
View File

@ -0,0 +1,63 @@
=======
Theming
=======
.. contents:: Table of Contents
:depth: 2
:local:
Setting up your environment
===========================
In order to theme converse.js, you'll first need to set up a `development_` environment.
You'll also want to preview the changes you make in the browser.
To set up the development environment and also start up a web browser which
will serve the files for you, simply run::
make serve
You can now open http://localhost:8000 in your webbrowser to see the
converse.js website.
However, when developing or changing the theme, you'll want to load all the
unminified JS and CSS resources. To do this, open http://localhost:8000/dev.html
instead.
Mockups
=======
Converse.js contains some mockups in the ``./mockup`` directory against which you
can preview and tweak your changes.
The ``./mockup/index.html`` file contains the most comprehensive mockup, while
the other files focus on particular UI aspects.
To see it in your browser, simply open: http://localhost:8000/mockup
Modifying the HTML templates of Converse.js
===========================================
The HTML markup of converse.js is contained small ``.html`` files in the
``./src/templates`` directory.
Modifying the CSS
=================
The CSS files are generated from `Sass <http://sass-lang.com>`_ files in
the ``./sass`` directory.
To generate the CSS you can run::
make css
Creating builds
===============
Once you've themed converse.js, you'll want to create new minified builds of
the Javascript and CSS files.
Please refer to the :doc:`builds` section for information on how this is done.

View File

@ -10,9 +10,9 @@ Translations
Translations take up a lot of space and will bloat your minified file.
At the time of writing, all the translations add about 50KB of extra data to
the minified javascript file. Therefore, make sure to only
include those languages that you intend to support and remove from
./locale/locales.js those which you don't need. Remember to rebuild the
minified file afterwards.
include those languages which you intend to support and remove from
./src/locales.js those which you don't need. Remember to rebuild the
minified file afterwards, by running `make build`.
----------------------------------------------
Updating the translations template (.pot file)
@ -61,9 +61,9 @@ the Javascript translations library that we're using.
"domain: converse\n"
"lang: pl\n"
"Content-Type: text/plain; charset=UTF-8\n"
"plural_forms: nplurals=2; plural=(n != 1);\n"
--------------------------------------
Updating an existing translations file
--------------------------------------
@ -107,33 +107,14 @@ You can then convert the translations into JSON format:
po2json -p -f jed -d converse locale/de/LC_MESSAGES/converse.po locale/de/LC_MESSAGES/converse.json
Now from converse.json paste the data as a value for the "locale_data" key in the
object in the language's .js file.
To do this for ALL languages, run:
So, if you are for example translating into German (language code 'de'), you'll
create or update the file ./locale/LC_MESSAGES/de.js with the following code:
::
.. code-block:: javascript
make po2json
(function (root, factory) {
define("de", ['jed'], function () {
return factory(new Jed({
"domain": "converse",
"locale_data": {
// Paste the JSON data from converse.json here
}
})
}
}(this, function (i18n) {
return i18n;
}));
making sure to also paste the JSON data as value to the "locale_data" key.
.. note::
If you are adding translations for a new language that is not already supported,
you'll have to add the language path in main.js and make one more edit in ./locale/locales.js
you'll have to add the language path in main.js and make one more edit in ./src/locales.js
to make sure the language is loaded by require.js.
Congratulations, you've now succesfully added your translations. Sorry for all
those hoops you had to jump through.

View File

@ -77,7 +77,7 @@
<div class="row">
<div class="col-md-8 col-md-offset-2">
<h1 class="brand-heading"><i class="icon-conversejs"></i>Converse.js</h1>
<p class="intro-text">A free and open-source XMPP chat client for your website</p>
<p class="intro-text">A free and open-source XMPP chat client</p>
<div class="page-scroll">
<a href="#about" class="btn btn-default btn-lg"><span class="btn-text">Learn More</span></a>
</div>
@ -100,16 +100,14 @@
<section id="about" class="container content-section text-center">
<div class="row">
<div class="col-lg-8 col-lg-offset-2">
<h2><strong>Converse.js</strong> is a free and open source chat client that runs in your browser. It can be integrated into any website.</h3>
<p>Similar to <a href="https://www.facebook.com/sitetour/chat.php" target="_blank">Facebook chat</a> but it also supports multi-user chatrooms.</p>
<h2><strong>Converse.js</strong> is written in Javascript and runs in your browser.</h2>
<p>You can start using it here immediately, or you can <a href="/docs/html/index.html">integrate it into your own website</a>.</p>
<p>
<strong>Converse.js</strong> can connect to any accessible <a href="http://xmpp.org" target="_blank">XMPP/Jabber</a> server,
You can connect to any publically accessible <a href="http://xmpp.org" target="_blank">XMPP/Jabber</a> server,
either from a <a href="https://xmpp.net/directory.php">public provider</a>, or one you have set up yourself.
</p>
<p>
It's possible to enable single-site-login, whereby users already authenticated in your website will also automatically be logged in on the chat server.
Please refer to the <strong><a href="/docs/html/index.html">documentation</a></strong> for more info.
</p>
<h3>Don't have an XMPP/Jabber account?</h3>
<p>No problem! With converse.js you can register an account on any public XMPP server that allows registration.</p>
</div>
</div>
</section>
@ -210,10 +208,9 @@
<div class="col-lg-8 col-lg-offset-2">
<h2>Contact</h2>
<ul class="contact">
<li>Follow me on <a href="http://twitter.com/jcopkode" target="_blank">Twitter</a>.</li>
<li>Chat with me via XMPP: <a href="xmpp:jc@opkode.com" class="xmpp JSnocheck" title="XMPP/Jabber">jc@opkode.com</a>.</li>
<li>For technical support, please write to the mailing list: <a href="mailto:conversejs@librelist.com">conversejs@librelist.com</a>.</li>
<li>Or ask in the Converse.js chat room: <a href="xmpp:discuss@conference.conversejs.org" class="xmpp JSnocheck" title="Converse.js chat room">discuss@conference.conversejs.org</a>.</li>
<li>Follow me on <a href="http://twitter.com/jcopkode" target="_blank">Twitter</a> or chat with me via XMPP at <a href="xmpp:jc@opkode.com" class="xmpp JSnocheck" title="XMPP/Jabber">jc@opkode.com</a>.</li>
<li>For technical support, please write to the mailing list: <a href="mailto:conversejs@librelist.com">conversejs@librelist.com</a><br/>
or ask in the Converse.js chat room: <a href="xmpp:discuss@conference.conversejs.org" class="xmpp JSnocheck" title="Converse.js chat room">discuss@conference.conversejs.org</a>.</li>
<li>Also check out the <a href="http://librelist.com/browser/conversejs" target="_blank">mailing list archives</a>.</li>
<li>Please file <a target="_blank" href="https://github.com/jcbrand/converse.js/issues">bugs on Github</a>.</li>
<li>I'm available for features and <a href="http://opkode.com/contact" target="_blank">consulting</a>.</li>

View File

@ -1,765 +0,0 @@
(function (root, factory) {
var translations = {
"domain": "converse",
"locale_data": {
"converse": {
"": {
"domain": "converse",
"lang": "af"
},
"unencrypted": [
null,
"nie-privaat"
],
"unverified": [
null,
"ongeverifieer"
],
"verified": [
null,
"privaat"
],
"finished": [
null,
"afgesluit"
],
"This contact is busy": [
null,
"Hierdie persoon is besig"
],
"This contact is online": [
null,
"Hierdie persoon is aanlyn"
],
"This contact is offline": [
null,
"Hierdie persoon is aflyn"
],
"This contact is unavailable": [
null,
"Hierdie persoon is onbeskikbaar"
],
"This contact is away for an extended period": [
null,
"Hierdie persoon is vir lank afwesig"
],
"This contact is away": [
null,
"Hierdie persoon is afwesig"
],
"My contacts": [
null,
"My kontakte"
],
"Pending contacts": [
null,
"Hangende kontakte"
],
"Contact requests": [
null,
"Kontak versoeke"
],
"Ungrouped": [
null,
"Ongegroepeer"
],
"Contacts": [
null,
"Kontakte"
],
"Groups": [
null,
"Groepe"
],
"Reconnecting": [
null,
"Herkonnekteer"
],
"Error": [
null,
"Fout"
],
"Connecting": [
null,
"Verbind tans"
],
"Authenticating": [
null,
"Besig om te bekragtig"
],
"Authentication Failed": [
null,
"Bekragtiging het gefaal"
],
"Online Contacts": [
null,
"Kontakte aangemeld"
],
"Re-establishing encrypted session": [
null,
"Herstel versleutelde sessie"
],
"Generating private key.": [
null,
"Genereer private sleutel."
],
"Your browser might become unresponsive.": [
null,
"U webblaaier mag tydelik onreageerbaar word."
],
"Authentication request from %1$s\n\nYour chat contact is attempting to verify your identity, by asking you the question below.\n\n%2$s": [
null,
"Verifieeringsversoek van %1$s\n\nU gespreksmaat probeer om u identiteit te verifieer, deur die volgende vraag te vra \n\n%2$s"
],
"Could not verify this user's identify.": [
null,
"Kon nie hierdie gebruiker se identitied verifieer nie."
],
"Exchanging private key with contact.": [
null,
"Sleutels word met gespreksmaat uitgeruil."
],
"Personal message": [
null,
"Persoonlike boodskap"
],
"Are you sure you want to clear the messages from this room?": [
null,
"Is u seker dat u die boodskappe in hierdie kamer wil verwyder?"
],
"me": [
null,
"ek"
],
"is typing": [
null,
"tik tans"
],
"has stopped typing": [
null,
"het opgehou tik"
],
"Show this menu": [
null,
"Vertoon hierdie keuselys"
],
"Write in the third person": [
null,
"Skryf in die derde persoon"
],
"Remove messages": [
null,
"Verwyder boodskappe"
],
"Are you sure you want to clear the messages from this chat box?": [
null,
"Is u seker u wil die boodskappe van hierdie klets uitvee?"
],
"Your message could not be sent": [
null,
"U boodskap kon nie gestuur word nie"
],
"We received an unencrypted message": [
null,
"Ons het 'n onversleutelde boodskap ontvang"
],
"We received an unreadable encrypted message": [
null,
"Ons het 'n onleesbare versleutelde boodskap ontvang"
],
"This user has requested an encrypted session.": [
null,
"Hierdie gebruiker versoek 'n versleutelde sessie"
],
"Here are the fingerprints, please confirm them with %1$s, outside of this chat.\n\nFingerprint for you, %2$s: %3$s\n\nFingerprint for %1$s: %4$s\n\nIf you have confirmed that the fingerprints match, click OK, otherwise click Cancel.": [
null,
"Hier is die vingerafdrukke, bevestig hulle met %1$s, buite hierdie kletskanaal \n\nU vingerafdruk, %2$s: %3$s\n\nVingerafdruk vir %1$s: %4$s\n\nIndien u die vingerafdrukke bevestig het, klik OK, andersinds klik Kanselleer"
],
"You will be prompted to provide a security question and then an answer to that question.\n\nYour contact will then be prompted the same question and if they type the exact same answer (case sensitive), their identity will be verified.": [
null,
"Daar sal van u verwag word om 'n sekuriteitsvraag te stel, en dan ook die antwoord tot daardie vraag te verskaf.\n\nU gespreksmaat sal dan daardie vraag gestel word, en indien hulle presies dieselfde antwoord (lw. hoofletters tel) verskaf, sal hul identiteit geverifieer wees."
],
"What is your security question?": [
null,
"Wat is u sekuriteitsvraag?"
],
"What is the answer to the security question?": [
null,
"Wat is die antwoord tot die sekuriteitsvraag?"
],
"Invalid authentication scheme provided": [
null,
"Ongeldige verifikasiemetode verskaf"
],
"Your messages are not encrypted anymore": [
null,
"U boodskappe is nie meer versleutel nie"
],
"Your messages are now encrypted but your contact's identity has not been verified.": [
null,
"U boodskappe is now versleutel maar u gespreksmaat se identiteit is nog onseker."
],
"Your contact's identify has been verified.": [
null,
"U gespreksmaat se identiteit is geverifieer."
],
"Your contact has ended encryption on their end, you should do the same.": [
null,
"U gespreksmaat het versleuteling gestaak, u behoort nou dieselfde te doen."
],
"Your messages are not encrypted. Click here to enable OTR encryption.": [
null,
"U boodskappe is nie versleutel nie. Klik hier om OTR versleuteling te aktiveer."
],
"Your messages are encrypted, but your contact has not been verified.": [
null,
"U boodskappe is versleutel, maar u gespreksmaat se identiteit is not onseker."
],
"Your messages are encrypted and your contact verified.": [
null,
"U boodskappe is versleutel en u gespreksmaat se identiteit geverifieer."
],
"Your contact has closed their end of the private session, you should do the same": [
null,
"U gespreksmaat het die private sessie gestaak. U behoort dieselfde te doen"
],
"Clear all messages": [
null,
"Vee alle boodskappe uit"
],
"End encrypted conversation": [
null,
"Beëindig versleutelde gesprek"
],
"Hide the list of participants": [
null,
"Verskuil die lys van deelnemers"
],
"Refresh encrypted conversation": [
null,
"Verfris versleutelde gesprek"
],
"Start a call": [
null,
"Begin 'n oproep"
],
"Start encrypted conversation": [
null,
"Begin versleutelde gesprek"
],
"Verify with fingerprints": [
null,
"Verifieer met vingerafdrukke"
],
"Verify with SMP": [
null,
"Verifieer met SMP"
],
"What's this?": [
null,
"Wat is hierdie?"
],
"Online": [
null,
"Aangemeld"
],
"Busy": [
null,
"Besig"
],
"Away": [
null,
"Afwesig"
],
"Offline": [
null,
"Afgemeld"
],
"Contact name": [
null,
"Kontaknaam"
],
"Search": [
null,
"Soek"
],
"Contact username": [
null,
"Konak gebruikersnaam"
],
"Add": [
null,
"Voeg by"
],
"Click to add new chat contacts": [
null,
"Kliek om nuwe kletskontakte by te voeg"
],
"Add a contact": [
null,
"Voeg 'n kontak by"
],
"No users found": [
null,
"Geen gebruikers gevind"
],
"Click to add as a chat contact": [
null,
"Kliek om as kletskontak by te voeg"
],
"Room name": [
null,
"Kamer naam"
],
"Nickname": [
null,
"Bynaam"
],
"Server": [
null,
"Bediener"
],
"Join": [
null,
"Sluit aan"
],
"Show rooms": [
null,
"Wys kamers"
],
"Rooms": [
null,
"Kamers"
],
"No rooms on %1$s": [
null,
"Geen kamers op %1$s"
],
"Rooms on %1$s": [
null,
"Kamers op %1$s"
],
"Click to open this room": [
null,
"Kliek om hierdie kletskamer te open"
],
"Show more information on this room": [
null,
"Wys meer inligting aangaande hierdie kletskamer"
],
"Description:": [
null,
"Beskrywing:"
],
"Occupants:": [
null,
"Deelnemers:"
],
"Features:": [
null,
"Eienskappe:"
],
"Requires authentication": [
null,
"Benodig magtiging"
],
"Hidden": [
null,
"Verskuil"
],
"Requires an invitation": [
null,
"Benodig 'n uitnodiging"
],
"Moderated": [
null,
"Gemodereer"
],
"Non-anonymous": [
null,
"Nie-anoniem"
],
"Open room": [
null,
"Oop kletskamer"
],
"Permanent room": [
null,
"Permanente kamer"
],
"Public": [
null,
"Publiek"
],
"Semi-anonymous": [
null,
"Deels anoniem"
],
"Temporary room": [
null,
"Tydelike kamer"
],
"Unmoderated": [
null,
"Ongemodereer"
],
"This user is a moderator": [
null,
"Hierdie gebruiker is 'n moderator"
],
"This user can send messages in this room": [
null,
"Hierdie gebruiker kan boodskappe na die kamer stuur"
],
"This user can NOT send messages in this room": [
null,
"Hierdie gebruiker kan NIE boodskappe na die kamer stuur nie"
],
"Invite...": [
null,
"Nooi uit..."
],
"Occupants": [
null,
"Deelnemers"
],
"You are about to invite %1$s to the chat room \"%2$s\". ": [
null,
"U is op die punt om %1$s na die kletskamer \"%2$s\" uit te nooi."
],
"You may optionally include a message, explaining the reason for the invitation.": [
null,
"U mag na keuse 'n boodskap insluit, om bv. die rede vir die uitnodiging te staaf."
],
"Message": [
null,
"Boodskap"
],
"Error: could not execute the command": [
null,
"Fout: kon nie die opdrag uitvoer nie"
],
"Ban user from room": [
null,
"Verban gebruiker uit hierdie kletskamer"
],
"Kick user from room": [
null,
"Skop gebruiker uit hierdie kletskamer"
],
"Write in 3rd person": [
null,
"Skryf in die derde persoon"
],
"Remove user's ability to post messages": [
null,
"Verwyder gebruiker se vermoë om boodskappe te plaas"
],
"Change your nickname": [
null,
"Verander u bynaam"
],
"Set room topic": [
null,
"Stel onderwerp vir kletskamer"
],
"Allow muted user to post messages": [
null,
"Laat stilgemaakte gebruiker toe om weer boodskappe te plaas"
],
"Save": [
null,
"Stoor"
],
"Cancel": [
null,
"Kanseleer"
],
"An error occurred while trying to save the form.": [
null,
"A fout het voorgekom terwyl probeer is om die vorm te stoor."
],
"This chatroom requires a password": [
null,
"Hiedie kletskamer benodig 'n wagwoord"
],
"Password: ": [
null,
"Wagwoord:"
],
"Submit": [
null,
"Dien in"
],
"This room is not anonymous": [
null,
"Hierdie vertrek is nie anoniem nie"
],
"This room now shows unavailable members": [
null,
"Hierdie vertrek wys nou onbeskikbare lede"
],
"This room does not show unavailable members": [
null,
"Hierdie vertrek wys nie onbeskikbare lede nie"
],
"Non-privacy-related room configuration has changed": [
null,
"Nie-privaatheidverwante kamer instellings het verander"
],
"Room logging is now enabled": [
null,
"Kamer log is nou aangeskakel"
],
"Room logging is now disabled": [
null,
"Kamer log is nou afgeskakel"
],
"This room is now non-anonymous": [
null,
"Hiedie kamer is nou nie anoniem nie"
],
"This room is now semi-anonymous": [
null,
"Hierdie kamer is nou gedeeltelik anoniem"
],
"This room is now fully-anonymous": [
null,
"Hierdie kamer is nou ten volle anoniem"
],
"A new room has been created": [
null,
"'n Nuwe kamer is geskep"
],
"You have been banned from this room": [
null,
"Jy is uit die kamer verban"
],
"You have been kicked from this room": [
null,
"Jy is uit die kamer geskop"
],
"You have been removed from this room because of an affiliation change": [
null,
"Jy is vanuit die kamer verwyder a.g.v 'n verandering van affiliasie"
],
"You have been removed from this room because the room has changed to members-only and you're not a member": [
null,
"Jy is vanuit die kamer verwyder omdat die kamer nou slegs tot lede beperk word en jy nie 'n lid is nie."
],
"You have been removed from this room because the MUC (Multi-user chat) service is being shut down.": [
null,
"Jy is van hierdie kamer verwyder aangesien die MUC (Multi-user chat) diens nou afgeskakel word."
],
"<strong>%1$s</strong> has been banned": [
null,
"<strong>%1$s</strong> is verban"
],
"<strong>%1$s</strong> has been kicked out": [
null,
"<strong>%1$s</strong> is uitgeskop"
],
"<strong>%1$s</strong> has been removed because of an affiliation change": [
null,
"<strong>%1$s</strong> is verwyder a.g.v 'n verandering van affiliasie"
],
"<strong>%1$s</strong> has been removed for not being a member": [
null,
"<strong>%1$s</strong> is nie 'n lid nie, en dus verwyder"
],
"Your nickname has been automatically changed to: <strong>%1$s</strong>": [
null,
"U bynaam is outomaties verander na: <strong>%1$s</strong>"
],
"Your nickname has been changed to: <strong>%1$s</strong>": [
null,
"U bynaam is verander na: <strong>%1$s</strong>"
],
"The reason given is: \"": [
null,
"Die gegewe rede is: \""
],
"You are not on the member list of this room": [
null,
"Jy is nie op die ledelys van hierdie kamer nie"
],
"No nickname was specified": [
null,
"Geen bynaam verskaf nie"
],
"You are not allowed to create new rooms": [
null,
"Jy word nie toegelaat om nog kamers te skep nie"
],
"Your nickname doesn't conform to this room's policies": [
null,
"Jou bynaam voldoen nie aan die kamer se beleid nie"
],
"Your nickname is already taken": [
null,
"Jou bynaam is reeds geneem"
],
"This room does not (yet) exist": [
null,
"Hierdie kamer bestaan tans (nog) nie"
],
"This room has reached it's maximum number of occupants": [
null,
"Hierdie kamer het sy maksimum aantal deelnemers bereik"
],
"Topic set by %1$s to: %2$s": [
null,
"Onderwerp deur %1$s bygewerk na: %2$s"
],
"%1$s has invited you to join a chat room: %2$s": [
null,
"%1$s het u uitgenooi om die kletskamer %2$s te besoek"
],
"%1$s has invited you to join a chat room: %2$s, and left the following reason: \"%3$s\"": [
null,
"%1$s het u uitgenooi om die kletskamer %2$s te besoek, en het die volgende rede verskaf: \"%3$s\""
],
"Click to restore this chat": [
null,
"Kliek om hierdie klets te herstel"
],
"Minimized": [
null,
"Geminimaliseer"
],
"Click to remove this contact": [
null,
"Kliek om hierdie kontak te verwyder"
],
"Click to chat with this contact": [
null,
"Kliek om met hierdie kontak te klets"
],
"Are you sure you want to remove this contact?": [
null,
"Is u seker u wil hierdie gespreksmaat verwyder?"
],
"Are you sure you want to decline this contact request?": [
null,
"Is u seker dat u hierdie persoon se versoek wil afkeur?"
],
"Type to filter": [
null,
"Tik om te filtreer"
],
"I am %1$s": [
null,
"Ek is %1$s"
],
"Click here to write a custom status message": [
null,
"Kliek hier om jou eie statusboodskap te skryf"
],
"Click to change your chat status": [
null,
"Kliek om jou klets-status te verander"
],
"Custom status": [
null,
"Doelgemaakte status"
],
"online": [
null,
"aangemeld"
],
"busy": [
null,
"besig"
],
"away for long": [
null,
"vir lank afwesig"
],
"away": [
null,
"afwesig"
],
"Your XMPP provider's domain name:": [
null,
"U XMPP-verskaffer se domein naam:"
],
"Fetch registration form": [
null,
"Haal die registrasie form"
],
"Tip: A list of public XMPP providers is available": [
null,
"Wenk: A lys van publieke XMPP-verskaffers is beskikbaar"
],
"here": [
null,
"hier"
],
"Register": [
null,
"Registreer"
],
"Sorry, the given provider does not support in band account registration. Please try with a different provider.": [
null,
"Jammer, die gekose verskaffer ondersteun nie in-band registrasie nie.Probeer weer met 'n ander verskaffer."
],
"Requesting a registration form from the XMPP server": [
null,
"Vra tans die XMPP-bediener vir 'n registrasie vorm"
],
"Something went wrong while establishing a connection with \"%1$s\". Are you sure it exists?": [
null,
"Iets het fout geloop tydens koppeling met \"%1$s\". Is u seker dat dit bestaan?"
],
"Now logging you in": [
null,
"U word nou aangemeld"
],
"Registered successfully": [
null,
"Suksesvol geregistreer"
],
"Return": [
null,
"Terug"
],
"The provider rejected your registration attempt. ": [
null,
"Die verskaffer het u registrasieversoek verwerp."
],
"XMPP Username:": [
null,
"XMPP Gebruikersnaam:"
],
"Password:": [
null,
"Wagwoord"
],
"Log In": [
null,
"Meld aan"
],
"Sign in": [
null,
"Teken in"
],
"Toggle chat": [
null,
"Klets"
]
}
}
};
if (typeof define === 'function' && define.amd) {
define("af", ['jed'], function () {
return factory(new Jed(translations));
});
} else {
if (!window.locales) {
window.locales = {};
}
window.locales.af = factory(new Jed(translations));
}
}(this, function (af) {
return af;
}));

View File

@ -6,6 +6,10 @@
"domain": "converse",
"lang": "af"
},
" e.g. conversejs.org": [
null,
""
],
"unencrypted": [
null,
"nie-privaat"
@ -90,10 +94,6 @@
null,
"Bekragtiging het gefaal"
],
"Online Contacts": [
null,
"Kontakte aangemeld"
],
"Re-establishing encrypted session": [
null,
"Herstel versleutelde sessie"
@ -166,10 +166,6 @@
null,
"Ons het 'n onleesbare versleutelde boodskap ontvang"
],
"This user has requested an encrypted session.": [
null,
"Hierdie gebruiker versoek 'n versleutelde sessie"
],
"Here are the fingerprints, please confirm them with %1$s, outside of this chat.\n\nFingerprint for you, %2$s: %3$s\n\nFingerprint for %1$s: %4$s\n\nIf you have confirmed that the fingerprints match, click OK, otherwise click Cancel.": [
null,
"Hier is die vingerafdrukke, bevestig hulle met %1$s, buite hierdie kletskanaal \n\nU vingerafdruk, %2$s: %3$s\n\nVingerafdruk vir %1$s: %4$s\n\nIndien u die vingerafdrukke bevestig het, klik OK, andersinds klik Kanselleer"
@ -318,10 +314,6 @@
null,
"Bediener"
],
"Join": [
null,
"Sluit aan"
],
"Show rooms": [
null,
"Wys kamers"
@ -438,6 +430,10 @@
null,
"Fout: kon nie die opdrag uitvoer nie"
],
"Change user's affiliation to admin": [
null,
""
],
"Ban user from room": [
null,
"Verban gebruiker uit hierdie kletskamer"
@ -450,6 +446,10 @@
null,
"Skryf in die derde persoon"
],
"Grant membership to a user": [
null,
""
],
"Remove user's ability to post messages": [
null,
"Verwyder gebruiker se vermoë om boodskappe te plaas"
@ -458,6 +458,14 @@
null,
"Verander u bynaam"
],
"Grant moderator role to user": [
null,
""
],
"Revoke user's membership": [
null,
""
],
"Set room topic": [
null,
"Stel onderwerp vir kletskamer"

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -1,637 +0,0 @@
(function (root, factory) {
var translations = {
"domain": "converse",
"locale_data": {
"converse": {
"": {
"Project-Id-Version": "Converse.js 0.4",
"Report-Msgid-Bugs-To": "",
"POT-Creation-Date": "2013-09-15 21:55+0200",
"PO-Revision-Date": "2013-09-15 22:03+0200",
"Last-Translator": "JC Brand <jc@opkode.com>",
"Language-Team": "German",
"Language": "de",
"MIME-Version": "1.0",
"Content-Type": "text/plain; charset=UTF-8",
"Content-Transfer-Encoding": "8bit",
"Plural-Forms": "nplurals=2; plural=(n != 1);",
"domain": "converse",
"lang": "de",
"plural_forms": "nplurals=2; plural=(n != 1);"
},
"unencrypted": [
null,
""
],
"unverified": [
null,
""
],
"verified": [
null,
""
],
"finished": [
null,
""
],
"Disconnected": [
null,
"Verbindung unterbrochen."
],
"Error": [
null,
"Fehler"
],
"Connecting": [
null,
"Verbindungsaufbau …"
],
"Connection Failed": [
null,
"Entfernte Verbindung fehlgeschlagen"
],
"Authenticating": [
null,
"Authentifizierung"
],
"Authentication Failed": [
null,
"Authentifizierung gescheitert"
],
"Disconnecting": [
null,
"Trenne Verbindung"
],
"Re-establishing encrypted session": [
null,
""
],
"Your browser needs to generate a private key, which will be used in your encrypted chat session. This can take up to 30 seconds during which your browser might freeze and become unresponsive.": [
null,
""
],
"Private key generated.": [
null,
""
],
"Authentication request from %1$s\n\nYour buddy is attempting to verify your identity, by asking you the question below.\n\n%2$s": [
null,
""
],
"Could not verify this user's identify.": [
null,
""
],
"Personal message": [
null,
"Persönliche Nachricht"
],
"Start encrypted conversation": [
null,
""
],
"Refresh encrypted conversation": [
null,
""
],
"End encrypted conversation": [
null,
""
],
"Verify with SMP": [
null,
""
],
"Verify with fingerprints": [
null,
""
],
"What's this?": [
null,
""
],
"me": [
null,
"Ich"
],
"Show this menu": [
null,
"Dieses Menü anzeigen"
],
"Write in the third person": [
null,
"In der dritten Person schreiben"
],
"Remove messages": [
null,
"Nachrichten entfernen"
],
"Your message could not be sent": [
null,
""
],
"We received an unencrypted message": [
null,
""
],
"We received an unreadable encrypted message": [
null,
""
],
"This user has requested an encrypted session.": [
null,
""
],
"Here are the fingerprints, please confirm them with %1$s, outside of this chat.\n\nFingerprint for you, %2$s: %3$s\n\nFingerprint for %1$s: %4$s\n\nIf you have confirmed that the fingerprints match, click OK, otherwise click Cancel.": [
null,
""
],
"You will be prompted to provide a security question and then an answer to that question.\n\nYour buddy will then be prompted the same question and if they type the exact same answer (case sensitive), their identity will have been verified.": [
null,
""
],
"What is your security question?": [
null,
""
],
"What is the answer to the security question?": [
null,
""
],
"Invalid authentication scheme provided": [
null,
""
],
"Your messages are not encrypted anymore": [
null,
""
],
"Your messages are now encrypted but your buddy's identity has not been verified.": [
null,
""
],
"Your buddy's identify has been verified.": [
null,
""
],
"Your buddy has ended encryption on their end, you should do the same.": [
null,
""
],
"Your messages are not encrypted. Click here to enable OTR encryption.": [
null,
""
],
"Your messages are encrypted, but your buddy has not been verified.": [
null,
""
],
"Your messages are encrypted and your buddy verified.": [
null,
""
],
"Your buddy has closed their end of the private session, you should do the same": [
null,
""
],
"Contacts": [
null,
"Kontakte"
],
"Online": [
null,
"Online"
],
"Busy": [
null,
"Beschäfticht"
],
"Away": [
null,
"Abwesend"
],
"Offline": [
null,
"Abgemeldet"
],
"Click to add new chat contacts": [
null,
"Klicken Sie, um einen neuen Kontakt hinzuzufügen"
],
"Add a contact": [
null,
"Kontakte hinzufügen"
],
"Contact username": [
null,
"Benutzername"
],
"Add": [
null,
"Hinzufügen"
],
"Contact name": [
null,
"Name des Kontakts"
],
"Search": [
null,
"Suche"
],
"No users found": [
null,
"Keine Benutzer gefunden"
],
"Click to add as a chat contact": [
null,
"Hier klicken um als Kontakt hinzuzufügen"
],
"Click to open this room": [
null,
"Hier klicken um diesen Raum zu öffnen"
],
"Show more information on this room": [
null,
"Mehr Information über diesen Raum zeigen"
],
"Description:": [
null,
"Beschreibung"
],
"Occupants:": [
null,
"Teilnehmer"
],
"Features:": [
null,
"Funktionen:"
],
"Requires authentication": [
null,
"Authentifizierung erforderlich"
],
"Hidden": [
null,
"Versteckt"
],
"Requires an invitation": [
null,
"Einladung erforderlich"
],
"Moderated": [
null,
"Moderiert"
],
"Non-anonymous": [
null,
"Nicht anonym"
],
"Open room": [
null,
"Offener Raum"
],
"Permanent room": [
null,
"Dauerhafter Raum"
],
"Public": [
null,
"Öffentlich"
],
"Semi-anonymous": [
null,
"Teils anonym"
],
"Temporary room": [
null,
"Vorübergehender Raum"
],
"Unmoderated": [
null,
"Unmoderiert"
],
"Rooms": [
null,
"Räume"
],
"Room name": [
null,
"Raumname"
],
"Nickname": [
null,
"Spitzname"
],
"Server": [
null,
"Server"
],
"Join": [
null,
"Beitreten"
],
"Show rooms": [
null,
"Räume anzeigen"
],
"No rooms on %1$s": [
null,
"Keine Räume auf %1$s"
],
"Rooms on %1$s": [
null,
"Räume auf %1$s"
],
"Set chatroom topic": [
null,
"Chatraum Thema festlegen"
],
"Kick user from chatroom": [
null,
"Werfe einen Benutzer aus dem Raum."
],
"Ban user from chatroom": [
null,
"Verbanne einen Benutzer aus dem Raum."
],
"Message": [
null,
"Nachricht"
],
"Save": [
null,
"Speichern"
],
"Cancel": [
null,
"Abbrechen"
],
"An error occurred while trying to save the form.": [
null,
"Beim Speichern der Formular is ein Fehler aufgetreten."
],
"This chatroom requires a password": [
null,
"Passwort wird für die Anmeldung benötigt."
],
"Password: ": [
null,
"Passwort: "
],
"Submit": [
null,
"Einreichen"
],
"This room is not anonymous": [
null,
"Dieser Raum ist nicht anonym"
],
"This room now shows unavailable members": [
null,
"Dieser Raum zeigt jetzt unferfügbare Mitglieder"
],
"This room does not show unavailable members": [
null,
"Dieser Raum zeigt nicht unverfügbare Mitglieder"
],
"Non-privacy-related room configuration has changed": [
null,
"Die Konfiguration, die nicht auf die Privatsphäre bezogen ist, hat sich geändert"
],
"Room logging is now enabled": [
null,
"Zukünftige Nachrichten dieses Raums werden protokolliert."
],
"Room logging is now disabled": [
null,
"Zukünftige Nachrichten dieses Raums werden nicht protokolliert."
],
"This room is now non-anonymous": [
null,
"Dieser Raum ist jetzt nicht anonym"
],
"This room is now semi-anonymous": [
null,
"Dieser Raum ist jetzt teils anonym"
],
"This room is now fully-anonymous": [
null,
"Dieser Raum ist jetzt anonym"
],
"A new room has been created": [
null,
"Einen neuen Raum ist erstellen"
],
"Your nickname has been changed": [
null,
"Spitzname festgelegen"
],
"<strong>%1$s</strong> has been banned": [
null,
"<strong>%1$s</strong> ist verbannt"
],
"<strong>%1$s</strong> has been kicked out": [
null,
"<strong>%1$s</strong> ist hinausgeworfen"
],
"<strong>%1$s</strong> has been removed because of an affiliation change": [
null,
"<strong>%1$s</strong> wurde wegen einer Zugehörigkeitsänderung entfernt"
],
"<strong>%1$s</strong> has been removed for not being a member": [
null,
"<strong>%1$s</strong> ist kein Mitglied und wurde daher entfernt"
],
"You have been banned from this room": [
null,
"Sie sind aus diesem Raum verbannt worden"
],
"You have been kicked from this room": [
null,
"Sie wurden aus diesem Raum hinausgeworfen"
],
"You have been removed from this room because of an affiliation change": [
null,
"Sie wurden wegen einer Zugehörigkeitsänderung entfernt"
],
"You have been removed from this room because the room has changed to members-only and you're not a member": [
null,
"Sie wurden aus diesem Raum entfernt da Sie kein Mitglied sind."
],
"You have been removed from this room because the MUC (Multi-user chat) service is being shut down.": [
null,
"Sie werden aus diesem Raum entfernt da der MUC (Muli-user chat) Dienst gerade abgeschalten wird."
],
"You are not on the member list of this room": [
null,
"Sie sind nicht auf der Mitgliederliste dieses Raums"
],
"No nickname was specified": [
null,
"Kein Spitzname festgelegt"
],
"You are not allowed to create new rooms": [
null,
"Es ist Ihnen nicht erlaubt, neue Räume anzulegen"
],
"Your nickname doesn't conform to this room's policies": [
null,
"Ungültiger Spitzname"
],
"Your nickname is already taken": [
null,
"Ihre Spitzname existiert bereits."
],
"This room does not (yet) exist": [
null,
"Dieser Raum existiert (noch) nicht"
],
"This room has reached it's maximum number of occupants": [
null,
"Dieser Raum hat die maximale Mitgliederanzahl erreicht"
],
"Topic set by %1$s to: %2$s": [
null,
"%1$s hat das Thema zu \"%2$s\" abgeändert"
],
"This user is a moderator": [
null,
"Dieser Benutzer ist ein Moderator"
],
"This user can send messages in this room": [
null,
"Dieser Benutzer kann Nachrichten in diesem Raum verschicken"
],
"This user can NOT send messages in this room": [
null,
"Dieser Benutzer kann keine Nachrichten in diesem Raum verschicken"
],
"Click to chat with this contact": [
null,
"Hier klicken um mit diesem Kontakt zu chatten"
],
"Click to remove this contact": [
null,
"Hier klicken um diesen Kontakt zu entfernen"
],
"This contact is busy": [
null,
"Dieser Kontakt ist beschäfticht"
],
"This contact is online": [
null,
"Dieser Kontakt ist online"
],
"This contact is offline": [
null,
"Dieser Kontakt ist offline"
],
"This contact is unavailable": [
null,
"Dieser Kontakt ist nicht verfügbar"
],
"This contact is away for an extended period": [
null,
"Dieser Kontakt is für längere Zeit abwesend"
],
"This contact is away": [
null,
"Dieser Kontakt ist abwesend"
],
"Contact requests": [
null,
"Kontaktanfragen"
],
"My contacts": [
null,
"Meine Kontakte"
],
"Pending contacts": [
null,
"Unbestätigte Kontakte"
],
"Custom status": [
null,
"Status-Nachricht"
],
"Click to change your chat status": [
null,
"Klicken Sie, um ihrer Status to ändern"
],
"Click here to write a custom status message": [
null,
"Klicken Sie hier, um ihrer Status-Nachricht to ändern"
],
"online": [
null,
"online"
],
"busy": [
null,
"beschäfticht"
],
"away for long": [
null,
"länger abwesend"
],
"away": [
null,
"abwesend"
],
"I am %1$s": [
null,
"Ich bin %1$s"
],
"Sign in": [
null,
"Anmelden"
],
"XMPP/Jabber Username:": [
null,
"XMPP/Jabber Benutzername"
],
"Password:": [
null,
"Passwort:"
],
"Log In": [
null,
"Anmelden"
],
"BOSH Service URL:": [
null,
"BOSH "
],
"Online Contacts": [
null,
"Online-Kontakte"
],
"%1$s is typing": [
null,
"%1$s tippt"
],
"Connected": [
null,
"Verbunden"
],
"Attached": [
null,
"Angehängt"
]
}
}
};
if (typeof define === 'function' && define.amd) {
define("de", ['jed'], function () {
return factory(new Jed(translations));
});
} else {
if (!window.locales) {
window.locales = {};
}
window.locales.de = factory(new Jed(translations));
}
}(this, function (de) {
return de;
}));

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -1,26 +0,0 @@
(function (root, factory) {
var translations = {
"domain": "converse",
"locale_data": {
"converse": {
"": {
"domain": "converse",
"lang": "en",
"plural_forms": "nplurals=2; plural=(n != 1);"
}
}
}
};
if (typeof define === 'function' && define.amd) {
define("en", ['jed'], function () {
return factory(new Jed(translations));
});
} else {
if (!window.locales) {
window.locales = {};
}
window.locales.en = factory(new Jed(translations));
}
}(this, function (en) {
return en;
}));

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -1,638 +0,0 @@
(function (root, factory) {
var translations = {
"domain": "converse",
"locale_data": {
"converse": {
"": {
"Project-Id-Version": "Converse.js 0.4",
"Report-Msgid-Bugs-To": "",
"POT-Creation-Date": "2013-09-15 21:55+0200",
"PO-Revision-Date": "2013-09-15 21:59+0200",
"Last-Translator": "Javier Lopez <m@javier.io>",
"Language-Team": "ES <LL@li.org>",
"Language": "es",
"MIME-Version": "1.0",
"Content-Type": "text/plain; charset=UTF-8",
"Content-Transfer-Encoding": "8bit",
"Plural-Forms": "nplurals=2; plural=(n != 1);",
"plural_forms": "nplurals=2; plural=(n != 1);",
"lang": "es",
"Language-Code": "es",
"Language-Name": "Español",
"Preferred-Encodings": "utf-8 latin1",
"Domain": "converse",
"domain": "converse",
"X-Is-Fallback-For": "es-ar es-bo es-cl es-co es-cr es-do es-ec es-es es-sv es-gt es-hn es-mx es-ni es-pa es-py es-pe es-pr es-us es-uy es-ve"
},
"unencrypted": [
null,
"texto plano"
],
"unverified": [
null,
"sin verificar"
],
"verified": [
null,
"verificado"
],
"finished": [
null,
"finalizado"
],
"Disconnected": [
null,
"Desconectado"
],
"Error": [
null,
"Error"
],
"Connecting": [
null,
"Conectando"
],
"Connection Failed": [
null,
"La conexión falló"
],
"Authenticating": [
null,
"Autenticando"
],
"Authentication Failed": [
null,
"La autenticación falló"
],
"Disconnecting": [
null,
"Desconectando"
],
"Re-establishing encrypted session": [
null,
"Re-estableciendo sesión cifrada"
],
"Your browser needs to generate a private key, which will be used in your encrypted chat session. This can take up to 30 seconds during which your browser might freeze and become unresponsive.": [
null,
"Su navegador generará una llave privada para usarse en la sesión cifrada. Esto puede tomar hasta 30 segundo, durante este tiempo su navegador puede dejar de responder."
],
"Private key generated.": [
null,
"Llave privada generada"
],
"Authentication request from %1$s\n\nYour buddy is attempting to verify your identity, by asking you the question below.\n\n%2$s": [
null,
"Petición de autenticación de %1$s\n\nSu contacto intenta verificar su identidad haciendo la siguiente pregunta.\n\n%2$s"
],
"Could not verify this user's identify.": [
null,
"No se pudo verificar la identidad de este usuario"
],
"Personal message": [
null,
"Mensaje personal"
],
"Start encrypted conversation": [
null,
"Iniciar sesión cifrada"
],
"Refresh encrypted conversation": [
null,
"Actualizar sesión cifrada"
],
"End encrypted conversation": [
null,
"Finalizar sesión cifrada"
],
"Verify with SMP": [
null,
"Verificar con SMP"
],
"Verify with fingerprints": [
null,
"Verificar con identificadores"
],
"What's this?": [
null,
"¿Qué es esto?"
],
"me": [
null,
"yo"
],
"Show this menu": [
null,
"Mostrar este menú"
],
"Write in the third person": [
null,
"Escribir en tercera persona"
],
"Remove messages": [
null,
"Eliminar mensajes"
],
"Your message could not be sent": [
null,
"Su mensaje no se pudo enviar"
],
"We received an unencrypted message": [
null,
"Se recibío un mensaje sin cifrar"
],
"We received an unreadable encrypted message": [
null,
"Se recibío un mensaje cifrado corrupto"
],
"This user has requested an encrypted session.": [
null,
"El usuario ha solicitado una sesión cifrada"
],
"Here are the fingerprints, please confirm them with %1$s, outside of this chat.\n\nFingerprint for you, %2$s: %3$s\n\nFingerprint for %1$s: %4$s\n\nIf you have confirmed that the fingerprints match, click OK, otherwise click Cancel.": [
null,
"Por favor confirme los identificadores de %1$s fuera de este chat\n\n. Su identificador es, %2$s: %3$s\n\n. El identificador de %1$s es: %4$s\n\n. Después de confirmar los identificadores haga click en OK, cancele si no concuerdan."
],
"You will be prompted to provide a security question and then an answer to that question.\n\nYour buddy will then be prompted the same question and if they type the exact same answer (case sensitive), their identity will have been verified.": [
null,
"Se le solicitará una pregunta de seguridad.\n\n. La pregunta que responda se le hará a su contacto, si las respuestas concuerdan (cuidando mayúsculas/minúsculas) su identidad quedará verificada."
],
"What is your security question?": [
null,
"Introduzca su pregunta de seguridad"
],
"What is the answer to the security question?": [
null,
"Introduzca la respuesta a su pregunta de seguridad"
],
"Invalid authentication scheme provided": [
null,
"Esquema de autenticación inválido"
],
"Your messages are not encrypted anymore": [
null,
"Sus mensajes han dejado de cifrarse"
],
"Your messages are now encrypted but your buddy's identity has not been verified.": [
null,
"Sus mensajes están ahora cifrados pero la identidad de su contacto no ha sido verificada"
],
"Your buddy's identify has been verified.": [
null,
"La identidad de su contacto ha sido confirmada"
],
"Your buddy has ended encryption on their end, you should do the same.": [
null,
"Su contacto finalizó la sesión cifrada, debería hacer lo mismo"
],
"Your messages are not encrypted. Click here to enable OTR encryption.": [
null,
"Sus mensajes no están cifrados. Haga click aquí para habilitar el cifrado OTR"
],
"Your messages are encrypted, but your buddy has not been verified.": [
null,
"Sus mensajes están cifrados pero la identidad de su contacto no ha sido verificada"
],
"Your messages are encrypted and your buddy verified.": [
null,
"Sus mensajes están cifrados y su contacto ha sido verificado"
],
"Your buddy has closed their end of the private session, you should do the same": [
null,
"Su contacto finalizó la sesión cifrada, debería hacer lo mismo"
],
"Contacts": [
null,
"Contactos"
],
"Online": [
null,
"En linea"
],
"Busy": [
null,
"Ocupado"
],
"Away": [
null,
"Ausente"
],
"Offline": [
null,
"Desconectado"
],
"Click to add new chat contacts": [
null,
"Haga click para agregar nuevos contactos al chat"
],
"Add a contact": [
null,
"Agregar un contacto"
],
"Contact username": [
null,
"Nombre de usuario de contacto"
],
"Add": [
null,
"Agregar"
],
"Contact name": [
null,
"Nombre de contacto"
],
"Search": [
null,
"Búsqueda"
],
"No users found": [
null,
"Sin usuarios encontrados"
],
"Click to add as a chat contact": [
null,
"Haga click para agregar como contacto de chat"
],
"Click to open this room": [
null,
"Haga click para abrir esta sala"
],
"Show more information on this room": [
null,
"Mostrar más información en esta sala"
],
"Description:": [
null,
"Descripción"
],
"Occupants:": [
null,
"Ocupantes:"
],
"Features:": [
null,
"Características:"
],
"Requires authentication": [
null,
"Autenticación requerida"
],
"Hidden": [
null,
"Oculto"
],
"Requires an invitation": [
null,
"Requiere una invitación"
],
"Moderated": [
null,
"Moderado"
],
"Non-anonymous": [
null,
"No anónimo"
],
"Open room": [
null,
"Abrir sala"
],
"Permanent room": [
null,
"Sala permanente"
],
"Public": [
null,
"Publico"
],
"Semi-anonymous": [
null,
"Semi anónimo"
],
"Temporary room": [
null,
"Sala temporal"
],
"Unmoderated": [
null,
"Sin moderar"
],
"Rooms": [
null,
"Salas"
],
"Room name": [
null,
"Nombre de sala"
],
"Nickname": [
null,
"Apodo"
],
"Server": [
null,
"Servidor"
],
"Join": [
null,
"Unirse"
],
"Show rooms": [
null,
"Mostrar salas"
],
"No rooms on %1$s": [
null,
"Sin salas en %1$s"
],
"Rooms on %1$s": [
null,
"Salas en %1$s"
],
"Set chatroom topic": [
null,
"Definir tema de sala de chat"
],
"Kick user from chatroom": [
null,
"Expulsar usuario de sala de chat."
],
"Ban user from chatroom": [
null,
"Bloquear usuario de sala de chat."
],
"Message": [
null,
"Mensaje"
],
"Save": [
null,
"Guardar"
],
"Cancel": [
null,
"Cancelar"
],
"An error occurred while trying to save the form.": [
null,
"Un error ocurrío mientras se guardaba el formulario."
],
"This chatroom requires a password": [
null,
"Esta sala de chat requiere una contraseña."
],
"Password: ": [
null,
"Contraseña: "
],
"Submit": [
null,
"Enviar"
],
"This room is not anonymous": [
null,
"Esta sala no es para usuarios anónimos"
],
"This room now shows unavailable members": [
null,
"Esta sala ahora muestra los miembros no disponibles"
],
"This room does not show unavailable members": [
null,
"Esta sala no muestra los miembros no disponibles"
],
"Non-privacy-related room configuration has changed": [
null,
"Una configuración de la sala no relacionada con la privacidad ha sido cambiada"
],
"Room logging is now enabled": [
null,
"El registro de la sala ahora está habilitado"
],
"Room logging is now disabled": [
null,
"El registro de la sala ahora está deshabilitado"
],
"This room is now non-anonymous": [
null,
"Esta sala ahora es pública"
],
"This room is now semi-anonymous": [
null,
"Esta sala ahora es semi-anónima"
],
"This room is now fully-anonymous": [
null,
"Esta sala ahora es completamente anónima"
],
"A new room has been created": [
null,
"Una nueva sala ha sido creada"
],
"Your nickname has been changed": [
null,
"Su apodo ha sido cambiado"
],
"<strong>%1$s</strong> has been banned": [
null,
"<strong>%1$s</strong> ha sido bloqueado"
],
"<strong>%1$s</strong> has been kicked out": [
null,
"<strong>%1$s</strong> ha sido expulsado"
],
"<strong>%1$s</strong> has been removed because of an affiliation change": [
null,
"<strong>%1$s</strong> ha sido eliminado debido a un cambio de afiliación"
],
"<strong>%1$s</strong> has been removed for not being a member": [
null,
"<strong>%1$s</strong> ha sido eliminado debido a que no es miembro"
],
"You have been banned from this room": [
null,
"Usted ha sido bloqueado de esta sala"
],
"You have been kicked from this room": [
null,
"Usted ha sido expulsado de esta sala"
],
"You have been removed from this room because of an affiliation change": [
null,
"Usted ha sido eliminado de esta sala debido a un cambio de afiliación"
],
"You have been removed from this room because the room has changed to members-only and you're not a member": [
null,
"Usted ha sido eliminado de esta sala debido a que la sala cambio su configuración a solo-miembros y usted no es un miembro"
],
"You have been removed from this room because the MUC (Multi-user chat) service is being shut down.": [
null,
"Usted ha sido eliminado de esta sala debido a que el servicio MUC (Multi-user chat) está deshabilitado."
],
"You are not on the member list of this room": [
null,
"Usted no está en la lista de miembros de esta sala"
],
"No nickname was specified": [
null,
"Sin apodo especificado"
],
"You are not allowed to create new rooms": [
null,
"Usted no esta autorizado para crear nuevas salas"
],
"Your nickname doesn't conform to this room's policies": [
null,
"Su apodo no se ajusta a la política de esta sala"
],
"Your nickname is already taken": [
null,
"Su apodo ya ha sido tomando por otro usuario"
],
"This room does not (yet) exist": [
null,
"Esta sala (aún) no existe"
],
"This room has reached it's maximum number of occupants": [
null,
"Esta sala ha alcanzado su número máximo de ocupantes"
],
"Topic set by %1$s to: %2$s": [
null,
"Tema fijado por %1$s a: %2$s"
],
"This user is a moderator": [
null,
"Este usuario es un moderador"
],
"This user can send messages in this room": [
null,
"Este usuario puede enviar mensajes en esta sala"
],
"This user can NOT send messages in this room": [
null,
"Este usuario NO puede enviar mensajes en esta"
],
"Click to chat with this contact": [
null,
"Haga click para conversar con este contacto"
],
"Click to remove this contact": [
null,
"Haga click para eliminar este contacto"
],
"This contact is busy": [
null,
"Este contacto está ocupado"
],
"This contact is online": [
null,
"Este contacto está en línea"
],
"This contact is offline": [
null,
"Este contacto está desconectado"
],
"This contact is unavailable": [
null,
"Este contacto no está disponible"
],
"This contact is away for an extended period": [
null,
"Este contacto está ausente por un largo periodo de tiempo"
],
"This contact is away": [
null,
"Este contacto está ausente"
],
"Contact requests": [
null,
"Solicitudes de contacto"
],
"My contacts": [
null,
"Mis contactos"
],
"Pending contacts": [
null,
"Contactos pendientes"
],
"Custom status": [
null,
"Personalizar estatus"
],
"Click to change your chat status": [
null,
"Haga click para cambiar su estatus de chat"
],
"Click here to write a custom status message": [
null,
"Haga click para escribir un mensaje de estatus personalizado"
],
"online": [
null,
"en línea"
],
"busy": [
null,
"ocupado"
],
"away for long": [
null,
"ausente por mucho tiempo"
],
"away": [
null,
"ausente"
],
"I am %1$s": [
null,
"Estoy %1$s"
],
"Sign in": [
null,
"Registrar"
],
"XMPP/Jabber Username:": [
null,
"Nombre de usuario XMPP/Jabber"
],
"Password:": [
null,
"Contraseña:"
],
"Log In": [
null,
"Iniciar sesión"
],
"BOSH Service URL:": [
null,
"URL del servicio BOSH:"
],
"Online Contacts": [
null,
"En línea"
],
"Connected": [
null,
"Conectado"
],
"Attached": [
null,
"Adjuntado"
]
}
}
};
if (typeof define === 'function' && define.amd) {
define("es", ['jed'], function () {
return factory(new Jed(translations));
});
} else {
if (!window.locales) {
window.locales = {};
}
window.locales.es = factory(new Jed(translations));
}
}(this, function (es) {
return es;
}));

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -1,635 +0,0 @@
(function (root, factory) {
var translations = {
"domain": "converse",
"locale_data": {
"converse": {
"": {
"Project-Id-Version": "Converse.js 0.4",
"Report-Msgid-Bugs-To": "",
"POT-Creation-Date": "2013-09-15 21:55+0200",
"PO-Revision-Date": "2013-09-15 21:58+0200",
"Language-Team": "FR <LL@li.org>",
"Language": "fr",
"MIME-Version": "1.0",
"Content-Type": "text/plain; charset=UTF-8",
"Content-Transfer-Encoding": "8bit",
"Plural-Forms": "nplurals=2; plural=(n != 1);",
"plural_forms": "nplurals=2; plural=(n != 1);",
"lang": "fr",
"Language-Code": "fr",
"Preferred-Encodings": "utf-8 latin1",
"Domain": "converse",
"domain": "converse"
},
"unencrypted": [
null,
""
],
"unverified": [
null,
""
],
"verified": [
null,
""
],
"finished": [
null,
""
],
"Disconnected": [
null,
"Déconnecté"
],
"Error": [
null,
"Erreur"
],
"Connecting": [
null,
"Connection"
],
"Connection Failed": [
null,
"La connection a échoué"
],
"Authenticating": [
null,
"Authentification"
],
"Authentication Failed": [
null,
"L'authentification a échoué"
],
"Disconnecting": [
null,
"Déconnection"
],
"Re-establishing encrypted session": [
null,
""
],
"Your browser needs to generate a private key, which will be used in your encrypted chat session. This can take up to 30 seconds during which your browser might freeze and become unresponsive.": [
null,
""
],
"Private key generated.": [
null,
""
],
"Authentication request from %1$s\n\nYour buddy is attempting to verify your identity, by asking you the question below.\n\n%2$s": [
null,
""
],
"Could not verify this user's identify.": [
null,
""
],
"Personal message": [
null,
"Message personnel"
],
"Start encrypted conversation": [
null,
""
],
"Refresh encrypted conversation": [
null,
""
],
"End encrypted conversation": [
null,
""
],
"Verify with SMP": [
null,
""
],
"Verify with fingerprints": [
null,
""
],
"What's this?": [
null,
""
],
"me": [
null,
""
],
"Show this menu": [
null,
"Afficher ce menu"
],
"Write in the third person": [
null,
"Écrire à la troisième personne"
],
"Remove messages": [
null,
"Effacer les messages"
],
"Your message could not be sent": [
null,
""
],
"We received an unencrypted message": [
null,
""
],
"We received an unreadable encrypted message": [
null,
""
],
"This user has requested an encrypted session.": [
null,
""
],
"Here are the fingerprints, please confirm them with %1$s, outside of this chat.\n\nFingerprint for you, %2$s: %3$s\n\nFingerprint for %1$s: %4$s\n\nIf you have confirmed that the fingerprints match, click OK, otherwise click Cancel.": [
null,
""
],
"You will be prompted to provide a security question and then an answer to that question.\n\nYour buddy will then be prompted the same question and if they type the exact same answer (case sensitive), their identity will have been verified.": [
null,
""
],
"What is your security question?": [
null,
""
],
"What is the answer to the security question?": [
null,
""
],
"Invalid authentication scheme provided": [
null,
""
],
"Your messages are not encrypted anymore": [
null,
""
],
"Your messages are now encrypted but your buddy's identity has not been verified.": [
null,
""
],
"Your buddy's identify has been verified.": [
null,
""
],
"Your buddy has ended encryption on their end, you should do the same.": [
null,
""
],
"Your messages are not encrypted. Click here to enable OTR encryption.": [
null,
""
],
"Your messages are encrypted, but your buddy has not been verified.": [
null,
""
],
"Your messages are encrypted and your buddy verified.": [
null,
""
],
"Your buddy has closed their end of the private session, you should do the same": [
null,
""
],
"Contacts": [
null,
"Contacts"
],
"Online": [
null,
"En ligne"
],
"Busy": [
null,
"Occupé"
],
"Away": [
null,
"Absent"
],
"Offline": [
null,
"Déconnecté"
],
"Click to add new chat contacts": [
null,
"Cliquez pour ajouter de nouveaux contacts"
],
"Add a contact": [
null,
"Ajouter un contact"
],
"Contact username": [
null,
"Nom du contact"
],
"Add": [
null,
"Ajouter"
],
"Contact name": [
null,
"Nom du contact"
],
"Search": [
null,
"Rechercher"
],
"No users found": [
null,
"Aucun utilisateur trouvé"
],
"Click to add as a chat contact": [
null,
"Cliquer pour ajouter aux contacts de chat"
],
"Click to open this room": [
null,
"Cliquer pour ouvrir ce salon"
],
"Show more information on this room": [
null,
"Afficher davantage d'informations sur ce salon"
],
"Description:": [
null,
"Description :"
],
"Occupants:": [
null,
"Participants :"
],
"Features:": [
null,
"Caractéristiques :"
],
"Requires authentication": [
null,
"Nécessite une authentification"
],
"Hidden": [
null,
"Masqué"
],
"Requires an invitation": [
null,
"Nécessite une invitation"
],
"Moderated": [
null,
"Modéré"
],
"Non-anonymous": [
null,
"Non-anonyme"
],
"Open room": [
null,
"Ouvrir un salon"
],
"Permanent room": [
null,
"Salon permanent"
],
"Public": [
null,
"Public"
],
"Semi-anonymous": [
null,
"Semi-anonyme"
],
"Temporary room": [
null,
"Salon temporaire"
],
"Unmoderated": [
null,
"Non modéré"
],
"Rooms": [
null,
"Salons"
],
"Room name": [
null,
"Numéro de salon"
],
"Nickname": [
null,
"Alias"
],
"Server": [
null,
"Serveur"
],
"Join": [
null,
"Rejoindre"
],
"Show rooms": [
null,
"Afficher les salons"
],
"No rooms on %1$s": [
null,
"Aucun salon dans %1$s"
],
"Rooms on %1$s": [
null,
"Salons dans %1$s"
],
"Set chatroom topic": [
null,
"Indiquer le sujet du salon"
],
"Kick user from chatroom": [
null,
"Expulser l'utilisateur du salon."
],
"Ban user from chatroom": [
null,
"Bannir l'utilisateur du salon."
],
"Message": [
null,
"Message"
],
"Save": [
null,
"Enregistrer"
],
"Cancel": [
null,
"Annuler"
],
"An error occurred while trying to save the form.": [
null,
"Une erreur est survenue lors de l'enregistrement du formulaire."
],
"This chatroom requires a password": [
null,
"Ce salon nécessite un mot de passe."
],
"Password: ": [
null,
"Mot de passe : "
],
"Submit": [
null,
"Soumettre"
],
"This room is not anonymous": [
null,
"Ce salon n'est pas anonyme"
],
"This room now shows unavailable members": [
null,
"Ce salon affiche maintenant des membres indisponibles"
],
"This room does not show unavailable members": [
null,
"Ce salon n'affiche pas les membres indisponibles"
],
"Non-privacy-related room configuration has changed": [
null,
"Les paramètres du salon non liés à la confidentialité ont été modifiés"
],
"Room logging is now enabled": [
null,
"Le logging du salon est activé"
],
"Room logging is now disabled": [
null,
"Le logging du salon est désactivé"
],
"This room is now non-anonymous": [
null,
"Ce salon est maintenant non-anonyme"
],
"This room is now semi-anonymous": [
null,
"Ce salon est maintenant semi-anonyme"
],
"This room is now fully-anonymous": [
null,
"Ce salon est maintenant entièrement anonyme"
],
"A new room has been created": [
null,
"Un nouveau salon a été créé"
],
"Your nickname has been changed": [
null,
"Votre alias a été modifié"
],
"<strong>%1$s</strong> has been banned": [
null,
"<strong>%1$s</strong> a été banni"
],
"<strong>%1$s</strong> has been kicked out": [
null,
"<strong>%1$s</strong> a été expulsé"
],
"<strong>%1$s</strong> has been removed because of an affiliation change": [
null,
"<strong>%1$s</strong> a été supprimé à cause d'un changement d'affiliation"
],
"<strong>%1$s</strong> has been removed for not being a member": [
null,
"<strong>%1$s</strong> a été supprimé car il n'est pas membre"
],
"You have been banned from this room": [
null,
"Vous avez été banni de ce salon"
],
"You have been kicked from this room": [
null,
"Vous avez été expulsé de ce salon"
],
"You have been removed from this room because of an affiliation change": [
null,
"Vous avez été retiré de ce salon du fait d'un changement d'affiliation"
],
"You have been removed from this room because the room has changed to members-only and you're not a member": [
null,
"Vous avez été retiré de ce salon parce que ce salon est devenu réservé aux membres et vous n'êtes pas membre"
],
"You have been removed from this room because the MUC (Multi-user chat) service is being shut down.": [
null,
"Vous avez été retiré de ce salon parce que le service de chat multi-utilisateur a été désactivé."
],
"You are not on the member list of this room": [
null,
"Vous n'êtes pas dans la liste des membres de ce salon"
],
"No nickname was specified": [
null,
"Aucun alias n'a été indiqué"
],
"You are not allowed to create new rooms": [
null,
"Vous n'êtes pas autorisé à créer des salons"
],
"Your nickname doesn't conform to this room's policies": [
null,
"Votre alias n'est pas conforme à la politique de ce salon"
],
"Your nickname is already taken": [
null,
"Votre alias est déjà utilisé"
],
"This room does not (yet) exist": [
null,
"Ce salon n'existe pas encore"
],
"This room has reached it's maximum number of occupants": [
null,
"Ce salon a atteint la limite maximale d'occupants"
],
"Topic set by %1$s to: %2$s": [
null,
"Le sujet '%1$s' a été défini par %2$s"
],
"This user is a moderator": [
null,
"Cet utilisateur est modérateur"
],
"This user can send messages in this room": [
null,
"Cet utilisateur peut envoyer des messages dans ce salon"
],
"This user can NOT send messages in this room": [
null,
"Cet utilisateur ne peut PAS envoyer de messages dans ce salon"
],
"Click to chat with this contact": [
null,
"Cliquez pour discuter avec ce contact"
],
"Click to remove this contact": [
null,
"Cliquez pour supprimer ce contact"
],
"This contact is busy": [
null,
""
],
"This contact is online": [
null,
""
],
"This contact is offline": [
null,
""
],
"This contact is unavailable": [
null,
"Ce salon affiche maintenant des membres indisponibles"
],
"This contact is away for an extended period": [
null,
""
],
"This contact is away": [
null,
""
],
"Contact requests": [
null,
"Demandes de contacts"
],
"My contacts": [
null,
"Mes contacts"
],
"Pending contacts": [
null,
"Contacts en attente"
],
"Custom status": [
null,
"Statut personnel"
],
"Click to change your chat status": [
null,
"Cliquez pour changer votre statut"
],
"Click here to write a custom status message": [
null,
"Cliquez ici pour indiquer votre statut personnel"
],
"online": [
null,
"en ligne"
],
"busy": [
null,
"occupé"
],
"away for long": [
null,
"absent pour une longue durée"
],
"away": [
null,
"absent"
],
"I am %1$s": [
null,
"Je suis %1$s"
],
"Sign in": [
null,
"S'inscrire"
],
"XMPP/Jabber Username:": [
null,
"Nom d'utilisateur XMPP/Jabber"
],
"Password:": [
null,
"Mot de passe :"
],
"Log In": [
null,
"Se connecter"
],
"BOSH Service URL:": [
null,
"URL du service BOSH:"
],
"Online Contacts": [
null,
"Contacts en ligne"
],
"Connected": [
null,
"Connecté"
],
"Attached": [
null,
"Attaché"
]
}
}
};
if (typeof define === 'function' && define.amd) {
define("fr", ['jed'], function () {
return factory(new Jed(translations));
});
} else {
if (!window.locales) {
window.locales = {};
}
window.locales.fr = factory(new Jed(translations));
}
}(this, function (fr) {
return fr;
}));

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -1,524 +0,0 @@
(function (root, factory) {
var translations = {
"domain": "converse",
"locale_data": {
"converse": {
"": {
"project-id-version": "Converse.js 0.8.1",
"report-msgid-bugs-to": "",
"pot-creation-date": "2014-08-25 14:37+0200",
"po-revision-date": "2014-02-21 06:07+0200",
"last-translator": "GreenLunar <GreenLunar@github.com>",
"language-team": "Rahut <http://sourceforge.net/projects/rahut/>",
"language": "he",
"mime-version": "1.0",
"content-type": "text/plain; charset=UTF-8",
"content-transfer-encoding": "8bit",
"x-generator": "Poedit 1.5.1",
"plural-forms": "nplurals=2; plural=(n != 1);"
},
"unencrypted":[
null,"לא מוצפנת"
],
"unverified":[
null,"לא מאומתת"
],
"verified":[
null,"מאומתת"
],
"finished":[
null,"מוגמרת"
],
"This contact is busy":[
null,"איש קשר זה עסוק"
],
"This contact is online":[
null,"איש קשר זה מקוון"
],
"This contact is offline":[
null,"איש קשר זה לא מקוון"
],
"This contact is unavailable":[
null,"איש קשר זה לא זמין"
],
"This contact is away for an extended period":[
null,"איש קשר זה נעדר למשך זמן ממושך"
],
"This contact is away":[
null,"איש קשר זה הינו נעדר"
],
"Click to hide these contacts":[
null,"לחץ כדי להסתיר את אנשי קשר אלה"
],
"My contacts":[
null,"אנשי הקשר שלי"
],
"Pending contacts":[
null,"אנשי קשר ממתינים"
],
"Contact requests":[
null,"בקשות איש קשר"
],
"Ungrouped":[
null,"ללא קבוצה"
],
"Contacts":[
null,"אנשי קשר"
],
"Groups":[
null,"קבוצות"
],
"Reconnecting":[
null,"כעת מתחבר"
],
"Disconnected":[
null,"מנותק"
],
"Error":[
null,"שגיאה"
],
"Connecting":[
null,"כעת מתחבר"
],
"Connection Failed":[
null,"חיבור נכשל"
],
"Authenticating":[
null,"כעת מאמת"
],
"Authentication Failed":[
null,"אימות נכשל"
],
"Disconnecting":[
null,"כעת מתנתק"
],
"Online Contacts":[
null,"אנשי קשר מקוונים"
],
"Re-establishing encrypted session":[
null,"בסס מחדש ישיבה מוצפנת"
],
"Generating private key.":[
null,"כעת מפיק מפתח פרטי."
],
"Your browser might become unresponsive.":[
null,"הדפדפן שלך עשוי שלא להגיב."
],
"Authentication request from %1$s\n\nYour buddy is attempting to verify your identity, by asking you the question below.\n\n%2$s":[
null,"בקשת אימות מאת %1$s\n\nהאישיות שכנגד מנסה לאמת את הזהות שלך, בעזרת שאילת שאלה להלן.\n\n%2$s"
],
"Could not verify this user's identify.":[
null,"לא היתה אפשרות לאמת את זהות משתמש זה."
],
"Exchanging private key with buddy.":[
null,"ממיר מפתח פרטי עם איש קשר."
],
"Personal message":[
null,"הודעה אישית"
],
"Are you sure you want to clear the messages from this room?":[
null,"האם אתה בטוח כי ברצונך לטהר את ההודעות מתוך חדר זה?"
],
"me":[
null,"אני"
],
"is typing":[
null,"מקליד/ה כעת"
],
"has stopped typing":[
null,"חדל/ה מלהקליד"
],
"Show this menu":[
null,"הצג את תפריט זה"
],
"Write in the third person":[
null,"כתוב בגוף השלישי"
],
"Remove messages":[
null,"הסר הודעות"
],
"Are you sure you want to clear the messages from this chat box?":[
null,"האם אתה בטוח כי ברצונך לטהר את ההודעות מתוך תיבת שיחה זה?"
],
"Your message could not be sent":[
null,"ההודעה שלך לא היתה יכולה להישלח"
],
"We received an unencrypted message":[
null,"אנחנו קיבלנו הודעה לא מוצפנת"
],
"We received an unreadable encrypted message":[
null,"אנחנו קיבלנו הודעה מוצפנת לא קריאה"
],
"This user has requested an encrypted session.":[
null,"משתמש זה ביקש ישיבה מוצפנת."
],
"Here are the fingerprints, please confirm them with %1$s, outside of this chat.\n\nFingerprint for you, %2$s: %3$s\n\nFingerprint for %1$s: %4$s\n\nIf you have confirmed that the fingerprints match, click OK, otherwise click Cancel.":[
null,"הרי טביעות האצבע, אנא אמת אותן עם %1$s, מחוץ לשיחה זו.\n\nטביעת אצבע עבורך, %2$s: %3$s\n\nטביעת אצבע עבור %1$s: %4$s\n\nהיה ואימתת כי טביעות האצבע תואמות, לחץ אישור (OK), אחרת לחץ ביטול (Cancel)."
],
"You will be prompted to provide a security question and then an answer to that question.\n\nYour buddy will then be prompted the same question and if they type the exact same answer (case sensitive), their identity will be verified.":[
null,"אתה תתבקש לספק שאלת אבטחה ולאחריה תשובה לשאלה הזו.\n\nהאישיות שכנגד תתבקש עובר זאת לאותה שאלת אבטחה ואם זו תקלידו את את אותה התשובה במדויק (case sensitive), זהותה תאומת."
],
"What is your security question?":[
null,"מהי שאלת האבטחה שלך?"
],
"What is the answer to the security question?":[
null,"מהי התשובה לשאלת האבטחה?"
],
"Invalid authentication scheme provided":[
null,"סופקה סכימת אימות שגויה"
],
"Your messages are not encrypted anymore":[
null,"ההודעות שלך אינן מוצפנות עוד"
],
"Your messages are now encrypted but your buddy's identity has not been verified.":[
null,"ההודעות שלך מוצפנות כעת אך זהות האישיות שכנגד טרם אומתה."
],
"Your buddy's identify has been verified.":[
null,"זהות האישיות שכנגד אומתה."
],
"Your buddy has ended encryption on their end, you should do the same.":[
null,"האישיות שכנגד סיימה הצפנה בקצה שלה, עליך לעשות את אותו הדבר."
],
"Your messages are not encrypted. Click here to enable OTR encryption.":[
null,"ההודעות שלך אינן מוצפנות. לחץ כאן כדי לאפשר OTR."
],
"Your messages are encrypted, but your buddy has not been verified.":[
null,"ההודעות שלך מוצפנות כעת, אך האישיות שכנגד טרם אומתה."
],
"Your messages are encrypted and your buddy verified.":[
null,"ההודעות שלך מוצפנות כעת והאישיות שכנגד אומתה."
],
"Your buddy has closed their end of the private session, you should do the same":[
null,"האישיות שכנגד סגרה את קצה הישיבה הפרטית שלה, עליך לעשות את אותו הדבר"
],
"End encrypted conversation":[
null,"סיים ישיבה מוצפנת"
],
"Refresh encrypted conversation":[
null,"רענן ישיבה מוצפנת"
],
"Start encrypted conversation":[
null,"התחל ישיבה מוצפנת"
],
"Verify with fingerprints":[
null,"אמת בעזרת טביעות אצבע"
],
"Verify with SMP":[
null,"אמת בעזרת SMP"
],
"What's this?":[
null,"מה זה?"
],
"Online":[
null,"מקוון"
],
"Busy":[
null,"עסוק"
],
"Away":[
null,"נעדר"
],
"Offline":[
null,"בלתי מקוון"
],
"Contact name":[
null,"שם איש קשר"
],
"Search":[
null,"חיפוש"
],
"Contact username":[
null,"שם משתמש איש קשר"
],
"Add":[
null,"הוסף"
],
"Click to add new chat contacts":[
null,"לחץ כדי להוסיף אנשי קשר שיחה חדשים"
],
"Add a contact":[
null,"הוסף איש קשר"
],
"No users found":[
null,"לא נמצאו משתמשים"
],
"Click to add as a chat contact":[
null,"לחץ כדי להוסיף בתור איש קשר שיחה"
],
"Room name":[
null,"שם חדר"
],
"Nickname":[
null,"שם כינוי"
],
"Server":[
null,"שרת"
],
"Join":[
null,"הצטרף"
],
"Show rooms":[
null,"הצג חדרים"
],
"Rooms":[
null,"חדרים"
],
"No rooms on %1$s":[
null,"אין חדרים על %1$s"
],
"Rooms on %1$s":[
null,"חדרים על %1$s"
],
"Click to open this room":[
null,"לחץ כדי לפתוח את חדר זה"
],
"Show more information on this room":[
null,"הצג עוד מידע אודות חדר זה"
],
"Description:":[
null,"תיאור:"
],
"Occupants:":[
null,"נוכחים:"
],
"Features:":[
null,"תכונות:"
],
"Requires authentication":[
null,"מצריך אישור"
],
"Hidden":[
null,"נסתר"
],
"Requires an invitation":[
null,"מצריך הזמנה"
],
"Moderated":[
null,"מבוקר"
],
"Non-anonymous":[
null,"לא אנונימי"
],
"Open room":[
null,"חדר פתוח"
],
"Permanent room":[
null,"חדר צמיתה"
],
"Public":[
null,"פומבי"
],
"Semi-anonymous":[
null,"אנונימי למחצה"
],
"Temporary room":[
null,"חדר זמני"
],
"Unmoderated":[
null,"לא מבוקר"
],
"Set chatroom topic":[
null,"קבע נושא חדר שיחה"
],
"Kick user from chatroom":[
null,"בעט משתמש מתוך חדר שיחה"
],
"Ban user from chatroom":[
null,"אסור משתמש מתוך חדר שיחה"
],
"Message":[
null,"הודעה"
],
"Save":[
null,"שמור"
],
"Cancel":[
null,"ביטול"
],
"An error occurred while trying to save the form.":[
null,"אירעה שגיאה במהלך ניסיון שמירת הטופס."
],
"This chatroom requires a password":[
null,"חדר שיחה זה מצריך סיסמה"
],
"Password: ":[
null,"סיסמה: "
],
"Submit":[
null,"שלח"
],
"This room is not anonymous":[
null,"חדר זה אינו אנונימי"
],
"This room now shows unavailable members":[
null,"חדר זה כעת מציג חברים לא זמינים"
],
"This room does not show unavailable members":[
null,"חדר זה לא מציג חברים לא זמינים"
],
"Non-privacy-related room configuration has changed":[
null,"תצורת חדר אשר לא-קשורה-בפרטיות שונתה"
],
"Room logging is now enabled":[
null,"יומן חדר הינו מופעל כעת"
],
"Room logging is now disabled":[
null,"יומן חדר הינו מנוטרל כעת"
],
"This room is now non-anonymous":[
null,"חדר זה אינו אנונימי כעת"
],
"This room is now semi-anonymous":[
null,"חדר זה הינו אנונימי למחצה כעת"
],
"This room is now fully-anonymous":[
null,"חדר זה הינו אנונימי לחלוטין כעת"
],
"A new room has been created":[
null,"חדר חדש נוצר"
],
"Your nickname has been changed":[
null,"שם הכינוי שלך שונה"
],
"<strong>%1$s</strong> has been banned":[
null,"<strong>%1$s</strong> נאסר(ה)"
],
"<strong>%1$s</strong> has been kicked out":[
null,"<strong>%1$s</strong> נבעט(ה)"
],
"<strong>%1$s</strong> has been removed because of an affiliation change":[
null,"<strong>%1$s</strong> הוסרה(ה) משום שינוי שיוך"
],
"<strong>%1$s</strong> has been removed for not being a member":[
null,"<strong>%1$s</strong> הוסר(ה) משום אי הימצאות במסגרת מעמד של חבר"
],
"You have been banned from this room":[
null,"נאסרת מתוך חדר זה"
],
"You have been kicked from this room":[
null,"נבעטת מתוך חדר זה"
],
"You have been removed from this room because of an affiliation change":[
null,"הוסרת מתוך חדר זה משום שינוי שיוך"
],
"You have been removed from this room because the room has changed to members-only and you're not a member":[
null,"הוסרת מתוך חדר זה משום שהחדר שונה לחברים-בלבד ואינך במעמד של חבר"
],
"You have been removed from this room because the MUC (Multi-user chat) service is being shut down.":[
null,"הוסרת מתוך חדר זה משום ששירות שמ״מ (שיחה מרובת משתמשים) זה כעת מצוי בהליכי סגירה."
],
"You are not on the member list of this room":[
null,"אינך ברשימת החברים של חדר זה"
],
"No nickname was specified":[
null,"לא צוין שום שם כינוי"
],
"You are not allowed to create new rooms":[
null,"אין לך רשות ליצור חדרים חדשים"
],
"Your nickname doesn't conform to this room's policies":[
null,"שם הכינוי שלך לא תואם את המדינויות של חדר זה"
],
"Your nickname is already taken":[
null,"שם הכינוי שלך הינו תפוס"
],
"This room does not (yet) exist":[
null,"חדר זה (עדיין) לא קיים"
],
"This room has reached it's maximum number of occupants":[
null,"חדר זה הגיע לסף הנוכחים המרבי שלו"
],
"Topic set by %1$s to: %2$s":[
null,"נושא חדר זה נקבע על ידי %1$s אל: %2$s"
],
"This user is a moderator":[
null,"משתמש זה הינו אחראי"
],
"This user can send messages in this room":[
null,"משתמש זה מסוגל לשלוח הודעות בתוך חדר זה"
],
"This user can NOT send messages in this room":[
null,"משתמש זה ﬥﬡ מסוגל לשלוח הודעות בתוך חדר זה"
],
"Click to restore this chat":[
null,"לחץ כדי לשחזר את שיחה זו"
],
"Minimized":[
null,"ממוזער"
],
"Are you sure you want to remove this contact?":[
null,"האם אתה בטוח כי ברצונך להסיר את איש קשר זה?"
],
"Are you sure you want to decline this contact request?":[
null,"האם אתה בטוח כי ברצונך לסרב את בקשת איש קשר זה?"
],
"Click to remove this contact":[
null,"לחץ כדי להסיר את איש קשר זה"
],
"Click to accept this contact request":[
null,"לחץ כדי לקבל את בקשת איש קשר זה"
],
"Click to decline this contact request":[
null,"לחץ כדי לסרב את בקשת איש קשר זה"
],
"Click to chat with this contact":[
null,"לחץ כדי לשוחח עם איש קשר זה"
],
"Type to filter":[
null,"הקלד כדי לסנן"
],
"Custom status":[
null,"מצב מותאם"
],
"online":[
null,"מקוון"
],
"busy":[
null,"עסוק"
],
"away for long":[
null,"נעדר לזמן מה"
],
"away":[
null,"נעדר"
],
"I am %1$s":[
null,"מצבי כעת הינו %1$s"
],
"Click here to write a custom status message":[
null,"לחץ כאן כדי לכתוב הודעת מצב מותאמת"
],
"Click to change your chat status":[
null,"לחץ כדי לשנות את הודעת השיחה שלך"
],
"XMPP/Jabber Username:":[
null,"שם משתמש XMPP/Jabber:"
],
"Password:":[
null,"סיסמה:"
],
"Log In":[
null,"כניסה"
],
"Sign in":[
null,"התחברות"
],
"Toggle chat":[
null,"הפעל שיח"
]
}
}
};
if (typeof define === 'function' && define.amd) {
define("he", ['jed'], function () {
return factory(new Jed(translations));
});
} else {
if (!window.locales) {
window.locales = {};
}
window.locales.he = factory(new Jed(translations));
}
}(this, function (he) {
return he;
}));

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -1,202 +0,0 @@
(function(root, factory) {
var translations = {
"domain" : "converse",
"locale_data" : {
"converse" : {
"" : {
"Project-Id-Version" : "Converse.js 0.4",
"Report-Msgid-Bugs-To" : "",
"POT-Creation-Date" : "2013-09-24 23:22+0200",
"PO-Revision-Date" : "2013-09-25 22:42+0200",
"Last-Translator" : "Krisztian Kompar <w3host@w3host.hu>",
"Language-Team" : "Hungarian",
"Language" : "hu",
"MIME-Version" : "1.0",
"Content-Type" : "text/plain; charset=UTF-8",
"Content-Transfer-Encoding" : "8bit",
"domain" : "converse",
"lang" : "hu",
"plural_forms" : "nplurals=2; plural=(n != 1);"
},
"Disconnected" : [ null, "Szétkapcsolva" ],
"Error" : [ null, "Hiba" ],
"Connecting" : [ null, "Kapcsolódás" ],
"Connection Failed" : [ null, "Kapcsolódási hiba" ],
"Authenticating" : [ null, "Azonosítás" ],
"Authentication Failed" : [ null, "Azonosítási hiba" ],
"Disconnecting" : [ null, "Szétkapcsolás" ],
"me" : [ null, "én" ],
"%1$s is typing" : [ null, "%1$s gépel" ],
"Show this menu" : [ null, "Mutasd ezt a menüt" ],
"Write in the third person" : [ null, "" ],
"Remove messages" : [ null, "Üzenet törlése" ],
"Personal message" : [ null, "Saját üzenet" ],
"Contacts" : [ null, "Kapcsolatok" ],
"Online" : [ null, "Elérhető" ],
"Busy" : [ null, "Foglalt" ],
"Away" : [ null, "Távol" ],
"Offline" : [ null, "Nem elérhető" ],
"Click to add new chat contacts" : [ null,
"Új kapcsolatok hozzáadása" ],
"Add a contact" : [ null, "Új kapcsolat" ],
"Contact username" : [ null, "Felhasználónév" ],
"Add" : [ null, "Hozzáadás" ],
"Contact name" : [ null, "Kapcsolat neve" ],
"Search" : [ null, "Keresés" ],
"No users found" : [ null, "Nincs találat" ],
"Click to add as a chat contact" : [ null,
"Csevegő kapcsolatként hozzáad" ],
"Click to open this room" : [ null, "Belépés a csevegő szobába" ],
"Show more information on this room" : [ null,
"További információk a csevegő szobáról" ],
"Description:" : [ null, "Leírás:" ],
"Occupants:" : [ null, "Jelenlevők:" ],
"Features:" : [ null, "Tulajdonságok" ],
"Requires authentication" : [ null, "Azonosítás szükséges" ],
"Hidden" : [ null, "Rejtett" ],
"Requires an invitation" : [ null, "Meghívás szükséges" ],
"Moderated" : [ null, "Moderált" ],
"Non-anonymous" : [ null, "NEM névtelen" ],
"Open room" : [ null, "Nyitott szoba" ],
"Permanent room" : [ null, "Állandó szoba" ],
"Public" : [ null, "Nyílvános" ],
"Semi-anonymous" : [ null, "Félig névtelen" ],
"Temporary room" : [ null, "Ideiglenes szoba" ],
"Unmoderated" : [ null, "Moderálatlan" ],
"Rooms" : [ null, "Szobák" ],
"Room name" : [ null, "A szoba neve" ],
"Nickname" : [ null, "Becenév" ],
"Server" : [ null, "Szerver" ],
"Join" : [ null, "Csatlakozás" ],
"Show rooms" : [ null, "Létező szobák" ],
"No rooms on %1$s" : [ null,
"Nincs csevegő szoba a(z) %1$s szerveren" ],
"Rooms on %1$s" : [ null, "Csevegő szobák a(z) %1$s szerveren" ],
"Set chatroom topic" : [ null, "Csevegőszoba téma beállítás" ],
"Kick user from chatroom" : [ null,
"Felhasználó kiléptetése a csevegő szobából" ],
"Ban user from chatroom" : [ null,
"Felhasználó kitíltása a csevegő szobából" ],
"Message" : [ null, "Üzenet" ],
"Save" : [ null, "Mentés" ],
"Cancel" : [ null, "Mégsem" ],
"An error occurred while trying to save the form." : [ null,
"Hiba történt az adatok mentése közben." ],
"This chatroom requires a password" : [ null,
"A csevegő szoba belépéshez jelszó szükséges" ],
"Password: " : [ null, "Jelszó:" ],
"Submit" : [ null, "Küldés" ],
"This room is not anonymous" : [ null,
"Ez a szoba NEM névtelen" ],
"This room now shows unavailable members" : [ null,
"Ez a szoba mutatja az elérhetetlen tagokat" ],
"This room does not show unavailable members" : [ null,
"Ez a szoba nem mutatja az elérhetetlen tagokat" ],
"Non-privacy-related room configuration has changed" : [ null,
"A szoba általános konfigurációja módosult" ],
"Room logging is now enabled" : [ null,
"A szobába a belépés lehetséges" ],
"Room logging is now disabled" : [ null,
"A szobába a belépés szünetel" ],
"This room is now non-anonymous" : [ null,
"Ez a szoba most NEM névtelen" ],
"This room is now semi-anonymous" : [ null,
"Ez a szoba most félig névtelen" ],
"This room is now fully-anonymous" : [ null,
"Ez a szoba most teljesen névtelen" ],
"A new room has been created" : [ null,
"Létrejött egy új csevegő szoba" ],
"Your nickname has been changed" : [ null,
"A beceneved módosításra került" ],
"<strong>%1$s</strong> has been banned" : [ null,
"A szobából kitíltva: <strong>%1$s</strong>" ],
"<strong>%1$s</strong> has been kicked out" : [ null,
"A szobából kidobva: <strong>%1$s</strong>" ],
"<strong>%1$s</strong> has been removed because of an affiliation change" : [
null,
"Taglista módosítás miatt a szobából kiléptetve: <strong>%1$s</strong>" ],
"<strong>%1$s</strong> has been removed for not being a member" : [
null,
"A taglistán nem szerepel így a szobából kiléptetve: <strong>%1$s</strong>" ],
"You have been banned from this room" : [ null,
"Ki lettél tíltva ebből a szobából" ],
"You have been kicked from this room" : [ null,
"Ki lettél dobva ebből a szobából" ],
"You have been removed from this room because of an affiliation change" : [
null,
"Taglista módosítás miatt kiléptettünk a csevegő szobából" ],
"You have been removed from this room because the room has changed to members-only and you're not a member" : [
null,
"Kiléptettünk a csevegő szobából, mert mostantól csak a taglistán szereplők lehetnek jelen." ],
"You have been removed from this room because the MUC (Multi-user chat) service is being shut down." : [
null,
"Kiléptettünk a csevegő szobából, mert a MUC (Multi-User Chat) szolgáltatás leállításra került." ],
"You are not on the member list of this room" : [ null,
"Nem szerepelsz a csevegő szoba taglistáján" ],
"No nickname was specified" : [ null,
"Nem lett megadva becenév" ],
"You are not allowed to create new rooms" : [ null,
"Nem lehet új csevegő szobát létrehozni" ],
"Your nickname doesn't conform to this room's policies" : [
null,
"A beceneved ütközik a csevegő szoba szabályzataival" ],
"Your nickname is already taken" : [ null,
"A becenevedet már valaki használja" ],
"This room does not (yet) exist" : [ null,
"Ez a szoba (még) nem létezik" ],
"This room has reached it's maximum number of occupants" : [
null,
"Ez a csevegő szoba elérte a maximális jelenlevők számát" ],
"Topic set by %1$s to: %2$s" : [ null,
"A következő témát állította be %1$s: %2$s" ],
"This user is a moderator" : [ null,
"Ez a felhasználó egy moderátor" ],
"This user can send messages in this room" : [ null,
"Ez a felhasználó küldhet üzenetet ebbe a szobába" ],
"This user can NOT send messages in this room" : [ null,
"Ez a felhasználó NEM küldhet üzenetet ebbe a szobába" ],
"Click to chat with this contact" : [ null,
"Csevegés indítása ezzel a kapcsolatunkkal" ],
"Click to remove this contact" : [ null, "A kapcsolat törlése" ],
"This contact is busy" : [ null, "Elfoglalt" ],
"This contact is online" : [ null, "Online" ],
"This contact is offline" : [ null, "Nincs bejelentkezve" ],
"This contact is unavailable" : [ null, "Elérhetetlen" ],
"This contact is away for an extended period" : [ null,
"Hosszabb ideje távol" ],
"This contact is away" : [ null, "Távol" ],
"Contact requests" : [ null, "Kapcsolat felvételi kérés" ],
"My contacts" : [ null, "Kapcsolatok:" ],
"Pending contacts" : [ null, "Függőben levő kapcsolatok" ],
"Custom status" : [ null, "Egyedi státusz" ],
"Click to change your chat status" : [ null,
"Saját státusz beállítása" ],
"Click here to write a custom status message" : [ null,
"Egyedi státusz üzenet írása" ],
"online" : [ null, "online" ],
"busy" : [ null, "elfoglalt" ],
"away for long" : [ null, "hosszú ideje távol" ],
"away" : [ null, "távol" ],
"I am %1$s" : [ null, "%1$s vagyok" ],
"Sign in" : [ null, "Belépés" ],
"XMPP/Jabber Username:" : [ null, "XMPP/Jabber azonosító:" ],
"Password:" : [ null, "Jelszó:" ],
"Log In" : [ null, "Belépés" ],
"BOSH Service URL:" : [ null, "BOSH szerver URL" ],
"Online Contacts" : [ null, "Online kapcsolatok" ]
}
}
};
if (typeof define === 'function' && define.amd) {
define("hu", [ 'jed' ], function() {
return factory(new Jed(translations));
});
} else {
if (!window.locales) {
window.locales = {};
}
window.locales.hu = factory(new Jed(translations));
}
}(this, function(hu) {
return hu;
}));

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -1,180 +0,0 @@
(function(root, factory) {
var translations = {
"domain": "converse",
"locale_data": {
"converse": {
"": {
"project-id-version": "Converse.js 0.7.0",
"report-msgid-bugs-to": "",
"pot-creation-date": "2014-01-22 17:07+0200",
"po-revision-date": "2014-01-25 21:30+0700",
"last-translator": "Priyadi Iman Nurcahyo <priyadi@priyadi.net>",
"language-team": "Bahasa Indonesia",
"mime-version": "1.0",
"content-type": "text/plain; charset=UTF-8",
"content-transfer-encoding": "8bit",
"language": "id"
},
"unencrypted": [null, "tak dienkripsi"],
"unverified": [null, "tak diverifikasi"],
"verified": [null, "diverifikasi"],
"finished": [null, "selesai"],
"This contact is busy": [null, "Teman ini sedang sibuk"],
"This contact is online": [null, "Teman ini terhubung"],
"This contact is offline": [null, "Teman ini tidak terhubung"],
"This contact is unavailable": [null, "Teman ini tidak tersedia"],
"This contact is away for an extended period": [null, "Teman ini tidak di tempat untuk waktu yang lama"],
"This contact is away": [null, "Teman ini tidak di tempat"],
"Disconnected": [null, "Terputus"],
"Error": [null, "Kesalahan"],
"Connecting": [null, "Menyambung"],
"Connection Failed": [null, "Gagal Menyambung"],
"Authenticating": [null, "Melakukan otentikasi"],
"Authentication Failed": [null, "Otentikasi gagal"],
"Disconnecting": [null, "Memutuskan hubungan"],
"Online Contacts": [null, "Teman yang Terhubung"],
"Re-establishing encrypted session": [null, "Menyambung kembali sesi terenkripsi"],
"Your browser needs to generate a private key, which will be used in your encrypted chat session. This can take up to 30 seconds during which your browser might freeze and become unresponsive.": [null, "Perambah anda perlu membuat kunci privat, yang akan digunakan pada sesi perbincangan anda. Ini akan membutuhkan waktu sampai 30 detik, dan selama itu perambah mungkin akan tidak responsif."],
"Private key generated.": [null, "Kunci privat berhasil dibuat."],
"Authentication request from %1$s\n\nYour buddy is attempting to verify your identity, by asking you the question below.\n\n%2$s": [null, "Permintaan otentikasi dari %1$s\n\nTeman anda mencoba untuk melakukan verifikasi identitas anda dengan cara menanyakan pertanyaan di bawah ini.\n\n%2$s"],
"Could not verify this user's identify.": [null, "Tak dapat melakukan verifikasi identitas pengguna ini."],
"Personal message": [null, "Pesan pribadi"],
"Start encrypted conversation": [null, "Mulai sesi terenkripsi"],
"Refresh encrypted conversation": [null, "Setel ulang percakapan terenkripsi"],
"End encrypted conversation": [null, "Sudahi percakapan terenkripsi"],
"Verify with SMP": [null, "Verifikasi menggunakan SMP"],
"Verify with fingerprints": [null, "Verifikasi menggunakan sidik jari"],
"What's this?": [null, "Apakah ini?"],
"me": [null, "saya"],
"Show this menu": [null, "Tampilkan menu ini"],
"Write in the third person": [null, "Tulis ini menggunakan bahasa pihak ketiga"],
"Remove messages": [null, "Hapus pesan"],
"Your message could not be sent": [null, "Pesan anda tak dapat dikirim"],
"We received an unencrypted message": [null, "Kami menerima pesan terenkripsi"],
"We received an unreadable encrypted message": [null, "Kami menerima pesan terenkripsi yang gagal dibaca"],
"This user has requested an encrypted session.": [null, "Pengguna ini meminta sesi terenkripsi"],
"Here are the fingerprints, please confirm them with %1$s, outside of this chat.\n\nFingerprint for you, %2$s: %3$s\n\nFingerprint for %1$s: %4$s\n\nIf you have confirmed that the fingerprints match, click OK, otherwise click Cancel.": [null, "Ini adalah sidik jari anda, konfirmasikan bersama mereka dengan %1$s, di luar percakapan ini.\n\nSidik jari untuk anda, %2$s: %3$s\n\nSidik jari untuk %1$s: %4$s\n\nJika anda bisa mengkonfirmasi sidik jadi cocok, klik Lanjutkan, jika tidak klik Batal."],
"You will be prompted to provide a security question and then an answer to that question.\n\nYour buddy will then be prompted the same question and if they type the exact same answer (case sensitive), their identity will have been verified.": [null, "Anda akan ditanyakan pertanyaan untuk keamanan beserta jawaban untuk pertanyaan tersebut.\n\nTeman anda akan ditanyakan pertanyaan yang sama dan jika dia memberikan jawaban yang sama (huruf kapital diperhatikan), identitas mereka diverifikasi."],
"What is your security question?": [null, "Apakah pertanyaan keamanan anda?"],
"What is the answer to the security question?": [null, "Apa jawaban dari pertanyaan keamanan tersebut?"],
"Invalid authentication scheme provided": [null, "Skema otentikasi salah"],
"Your messages are not encrypted anymore": [null, "Pesan anda tidak lagi terenkripsi"],
"Your messages are now encrypted but your buddy's identity has not been verified.": [null, "Pesan anda sekarang terenkripsi, namun identitas teman anda belum dapat diverifikasi."],
"Your buddy's identify has been verified.": [null, "Identitas teman anda telah diverifikasi."],
"Your buddy has ended encryption on their end, you should do the same.": [null, "Teman anda menghentikan percakapan terenkripsi, anda sebaiknya melakukan hal yang sama."],
"Your messages are not encrypted. Click here to enable OTR encryption.": [null, "Pesan anda tak terenkripsi. Klik di sini untuk menyalakan enkripsi OTR."],
"Your messages are encrypted, but your buddy has not been verified.": [null, "Pesan anda terenkripsi, tetapi teman anda belum diverifikasi."],
"Your messages are encrypted and your buddy verified.": [null, "Pesan anda terenkripsi dan teman anda telah diverifikasi."],
"Your buddy has closed their end of the private session, you should do the same": [null, "Teman anda telah mematikan sesi terenkripsi, dan anda juga sebaiknya melakukan hal yang sama"],
"Contacts": [null, "Teman"],
"Online": [null, "Terhubung"],
"Busy": [null, "Sibuk"],
"Away": [null, "Pergi"],
"Offline": [null, "Tak Terhubung"],
"Click to add new chat contacts": [null, "Klik untuk menambahkan teman baru"],
"Add a contact": [null, "Tambah teman"],
"Contact username": [null, "Username teman"],
"Add": [null, "Tambah"],
"Contact name": [null, "Nama teman"],
"Search": [null, "Cari"],
"No users found": [null, "Pengguna tak ditemukan"],
"Click to add as a chat contact": [null, "Klik untuk menambahkan sebagai teman"],
"Click to open this room": [null, "Klik untuk membuka ruangan ini"],
"Show more information on this room": [null, "Tampilkan informasi ruangan ini"],
"Description:": [null, "Keterangan:"],
"Occupants:": [null, "Penghuni:"],
"Features:": [null, "Fitur:"],
"Requires authentication": [null, "Membutuhkan otentikasi"],
"Hidden": [null, "Tersembunyi"],
"Requires an invitation": [null, "Membutuhkan undangan"],
"Moderated": [null, "Dimoderasi"],
"Non-anonymous": [null, "Tidak anonim"],
"Open room": [null, "Ruangan terbuka"],
"Permanent room": [null, "Ruangan permanen"],
"Public": [null, "Umum"],
"Semi-anonymous": [null, "Semi-anonim"],
"Temporary room": [null, "Ruangan sementara"],
"Unmoderated": [null, "Tak dimoderasi"],
"Rooms": [null, "Ruangan"],
"Room name": [null, "Nama ruangan"],
"Nickname": [null, "Nama panggilan"],
"Server": [null, "Server"],
"Join": [null, "Ikuti"],
"Show rooms": [null, "Perlihatkan ruangan"],
"No rooms on %1$s": [null, "Tak ada ruangan di %1$s"],
"Rooms on %1$s": [null, "Ruangan di %1$s"],
"Set chatroom topic": [null, "Setel topik ruangan"],
"Kick user from chatroom": [null, "Tendang pengguna dari ruangan"],
"Ban user from chatroom": [null, "Larang pengguna dari ruangan"],
"Message": [null, "Pesan"],
"Save": [null, "Simpan"],
"Cancel": [null, "Batal"],
"An error occurred while trying to save the form.": [null, "Kesalahan terjadi saat menyimpan formulir ini."],
"This chatroom requires a password": [null, "Ruangan ini membutuhkan kata sandi"],
"Password: ": [null, "Kata sandi: "],
"Submit": [null, "Kirim"],
"This room is not anonymous": [null, "Ruangan ini tidak anonim"],
"This room now shows unavailable members": [null, "Ruangan ini menampilkan anggota yang tak tersedia"],
"This room does not show unavailable members": [null, "Ruangan ini tidak menampilkan anggota yang tak tersedia"],
"Non-privacy-related room configuration has changed": [null, "Konfigurasi ruangan yang tak berhubungan dengan privasi telah diubah"],
"Room logging is now enabled": [null, "Pencatatan di ruangan ini sekarang dinyalakan"],
"Room logging is now disabled": [null, "Pencatatan di ruangan ini sekarang dimatikan"],
"This room is now non-anonymous": [null, "Ruangan ini sekarang tak-anonim"],
"This room is now semi-anonymous": [null, "Ruangan ini sekarang semi-anonim"],
"This room is now fully-anonymous": [null, "Ruangan ini sekarang anonim"],
"A new room has been created": [null, "Ruangan baru telah dibuat"],
"Your nickname has been changed": [null, "Nama panggilan anda telah diubah"],
"<strong>%1$s</strong> has been banned": [null, "<strong>%1$s</strong> telah dicekal"],
"<strong>%1$s</strong> has been kicked out": [null, "<strong>%1$s</strong> telah ditendang keluar"],
"<strong>%1$s</strong> has been removed because of an affiliation change": [null, "<strong>%1$s</strong> telah dihapus karena perubahan afiliasi"],
"<strong>%1$s</strong> has been removed for not being a member": [null, "<strong>%1$s</strong> telah dihapus karena bukan anggota"],
"You have been banned from this room": [null, "Anda telah dicekal dari ruangan ini"],
"You have been kicked from this room": [null, "Anda telah ditendang dari ruangan ini"],
"You have been removed from this room because of an affiliation change": [null, "Anda telah dihapus dari ruangan ini karena perubahan afiliasi"],
"You have been removed from this room because the room has changed to members-only and you're not a member": [null, "Anda telah dihapus dari ruangan ini karena ruangan ini hanya terbuka untuk anggota dan anda bukan anggota"],
"You have been removed from this room because the MUC (Multi-user chat) service is being shut down.": [null, "Anda telah dihapus dari ruangan ini karena layanan MUC (Multi-user chat) telah dimatikan."],
"You are not on the member list of this room": [null, "Anda bukan anggota dari ruangan ini"],
"No nickname was specified": [null, "Nama panggilan belum ditentukan"],
"You are not allowed to create new rooms": [null, "Anda tak diizinkan untuk membuat ruangan baru"],
"Your nickname doesn't conform to this room's policies": [null, "Nama panggilan anda tidak sesuai aturan ruangan ini"],
"Your nickname is already taken": [null, "Nama panggilan anda telah digunakan orang lain"],
"This room does not (yet) exist": [null, "Ruangan ini belum dibuat"],
"This room has reached it's maximum number of occupants": [null, "Ruangan ini telah mencapai jumlah penghuni maksimum"],
"Topic set by %1$s to: %2$s": [null, "Topik diganti oleh %1$s menjadi: %2$s"],
"This user is a moderator": [null, "Pengguna ini adalah moderator"],
"This user can send messages in this room": [null, "Pengguna ini dapat mengirim pesan di ruangan ini"],
"This user can NOT send messages in this room": [null, "Pengguna ini tak dapat mengirim pesan di ruangan ini"],
"Click to chat with this contact": [null, "Klik untuk mulai perbinjangan dengan teman ini"],
"Click to remove this contact": [null, "Klik untuk menghapus teman ini"],
"Contact requests": [null, "Permintaan pertemanan"],
"My contacts": [null, "Teman saya"],
"Pending contacts": [null, "Teman yang menunggu"],
"Custom status": [null, "Status kustom"],
"Click to change your chat status": [null, "Klik untuk mengganti status"],
"Click here to write a custom status message": [null, "Klik untuk menulis status kustom"],
"online": [null, "terhubung"],
"busy": [null, "sibuk"],
"away for long": [null, "lama tak di tempat"],
"away": [null, "tak di tempat"],
"I am %1$s": [null, "Saya %1$s"],
"Sign in": [null, "Masuk"],
"XMPP/Jabber Username:": [null, "Nama pengguna XMPP/Jabber:"],
"Password:": [null, "Kata sandi:"],
"Log In": [null, "Masuk"],
"BOSH Service URL:": [null, "URL Layanan BOSH:"]
}
}
};
if (typeof define === 'function' && define.amd) {
define("id", ['jed'], function () {
return factory(new Jed(translations));
});
} else {
if (!window.locales) {
window.locales = {};
}
window.locales.id = factory(new Jed(translations));
}
}(this, function (id) {
return id;
}));

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -1,633 +0,0 @@
(function (root, factory) {
var translations = {
"domain": "converse",
"locale_data": {
"converse": {
"": {
"Project-Id-Version": "Converse.js 0.4",
"Report-Msgid-Bugs-To": "",
"POT-Creation-Date": "2013-09-15 21:55+0200",
"PO-Revision-Date": "2013-09-15 22:00+0200",
"Last-Translator": "Fabio Bas <ctrlaltca@gmail.com>",
"Language-Team": "Italian",
"Language": "it",
"MIME-Version": "1.0",
"Content-Type": "text/plain; charset=UTF-8",
"Content-Transfer-Encoding": "8bit",
"Plural-Forms": "nplurals=2; plural=(n != 1);",
"domain": "converse",
"lang": "it",
"plural_forms": "nplurals=2; plural=(n != 1);"
},
"unencrypted": [
null,
""
],
"unverified": [
null,
""
],
"verified": [
null,
""
],
"finished": [
null,
""
],
"Disconnected": [
null,
"Disconnesso"
],
"Error": [
null,
"Errore"
],
"Connecting": [
null,
"Connessione in corso"
],
"Connection Failed": [
null,
"Connessione fallita"
],
"Authenticating": [
null,
"Autenticazione in corso"
],
"Authentication Failed": [
null,
"Autenticazione fallita"
],
"Disconnecting": [
null,
"Disconnessione in corso"
],
"Re-establishing encrypted session": [
null,
""
],
"Your browser needs to generate a private key, which will be used in your encrypted chat session. This can take up to 30 seconds during which your browser might freeze and become unresponsive.": [
null,
""
],
"Private key generated.": [
null,
""
],
"Authentication request from %1$s\n\nYour buddy is attempting to verify your identity, by asking you the question below.\n\n%2$s": [
null,
""
],
"Could not verify this user's identify.": [
null,
""
],
"Personal message": [
null,
"Messaggio personale"
],
"Start encrypted conversation": [
null,
""
],
"Refresh encrypted conversation": [
null,
""
],
"End encrypted conversation": [
null,
""
],
"Verify with SMP": [
null,
""
],
"Verify with fingerprints": [
null,
""
],
"What's this?": [
null,
""
],
"me": [
null,
""
],
"Show this menu": [
null,
"Mostra questo menu"
],
"Write in the third person": [
null,
"Scrivi in terza persona"
],
"Remove messages": [
null,
"Rimuovi messaggi"
],
"Your message could not be sent": [
null,
""
],
"We received an unencrypted message": [
null,
""
],
"We received an unreadable encrypted message": [
null,
""
],
"This user has requested an encrypted session.": [
null,
""
],
"Here are the fingerprints, please confirm them with %1$s, outside of this chat.\n\nFingerprint for you, %2$s: %3$s\n\nFingerprint for %1$s: %4$s\n\nIf you have confirmed that the fingerprints match, click OK, otherwise click Cancel.": [
null,
""
],
"You will be prompted to provide a security question and then an answer to that question.\n\nYour buddy will then be prompted the same question and if they type the exact same answer (case sensitive), their identity will have been verified.": [
null,
""
],
"What is your security question?": [
null,
""
],
"What is the answer to the security question?": [
null,
""
],
"Invalid authentication scheme provided": [
null,
""
],
"Your messages are not encrypted anymore": [
null,
""
],
"Your messages are now encrypted but your buddy's identity has not been verified.": [
null,
""
],
"Your buddy's identify has been verified.": [
null,
""
],
"Your buddy has ended encryption on their end, you should do the same.": [
null,
""
],
"Your messages are not encrypted. Click here to enable OTR encryption.": [
null,
""
],
"Your messages are encrypted, but your buddy has not been verified.": [
null,
""
],
"Your messages are encrypted and your buddy verified.": [
null,
""
],
"Your buddy has closed their end of the private session, you should do the same": [
null,
""
],
"Contacts": [
null,
"Contatti"
],
"Online": [
null,
"In linea"
],
"Busy": [
null,
"Occupato"
],
"Away": [
null,
"Assente"
],
"Offline": [
null,
"Non in linea"
],
"Click to add new chat contacts": [
null,
"Clicca per aggiungere nuovi contatti alla chat"
],
"Add a contact": [
null,
"Aggiungi contatti"
],
"Contact username": [
null,
"Nome utente del contatto"
],
"Add": [
null,
"Aggiungi"
],
"Contact name": [
null,
"Nome del contatto"
],
"Search": [
null,
"Cerca"
],
"No users found": [
null,
"Nessun utente trovato"
],
"Click to add as a chat contact": [
null,
"Clicca per aggiungere il contatto alla chat"
],
"Click to open this room": [
null,
"Clicca per aprire questa stanza"
],
"Show more information on this room": [
null,
"Mostra più informazioni su questa stanza"
],
"Description:": [
null,
"Descrizione:"
],
"Occupants:": [
null,
"Utenti presenti:"
],
"Features:": [
null,
"Funzionalità:"
],
"Requires authentication": [
null,
"Richiede autenticazione"
],
"Hidden": [
null,
"Nascosta"
],
"Requires an invitation": [
null,
"Richiede un invito"
],
"Moderated": [
null,
"Moderata"
],
"Non-anonymous": [
null,
"Non-anonima"
],
"Open room": [
null,
"Stanza aperta"
],
"Permanent room": [
null,
"Stanza permanente"
],
"Public": [
null,
"Pubblica"
],
"Semi-anonymous": [
null,
"Semi-anonima"
],
"Temporary room": [
null,
"Stanza temporanea"
],
"Unmoderated": [
null,
"Non moderata"
],
"Rooms": [
null,
"Stanze"
],
"Room name": [
null,
"Nome stanza"
],
"Nickname": [
null,
"Soprannome"
],
"Server": [
null,
"Server"
],
"Join": [
null,
"Entra"
],
"Show rooms": [
null,
"Mostra stanze"
],
"No rooms on %1$s": [
null,
"Nessuna stanza su %1$s"
],
"Rooms on %1$s": [
null,
"Stanze su %1$s"
],
"Set chatroom topic": [
null,
"Cambia oggetto della stanza"
],
"Kick user from chatroom": [
null,
"Espelli utente dalla stanza"
],
"Ban user from chatroom": [
null,
"Bandisci utente dalla stanza"
],
"Message": [
null,
"Messaggio"
],
"Save": [
null,
"Salva"
],
"Cancel": [
null,
"Annulla"
],
"An error occurred while trying to save the form.": [
null,
"Errore durante il salvataggio del modulo"
],
"This chatroom requires a password": [
null,
"Questa stanza richiede una password"
],
"Password: ": [
null,
"Password: "
],
"Submit": [
null,
"Invia"
],
"This room is not anonymous": [
null,
"Questa stanza non è anonima"
],
"This room now shows unavailable members": [
null,
"Questa stanza mostra i membri non disponibili al momento"
],
"This room does not show unavailable members": [
null,
"Questa stanza non mostra i membri non disponibili"
],
"Non-privacy-related room configuration has changed": [
null,
"Una configurazione della stanza non legata alla privacy è stata modificata"
],
"Room logging is now enabled": [
null,
"La registrazione è abilitata nella stanza"
],
"Room logging is now disabled": [
null,
"La registrazione è disabilitata nella stanza"
],
"This room is now non-anonymous": [
null,
"Questa stanza è non-anonima"
],
"This room is now semi-anonymous": [
null,
"Questa stanza è semi-anonima"
],
"This room is now fully-anonymous": [
null,
"Questa stanza è completamente-anonima"
],
"A new room has been created": [
null,
"Una nuova stanza è stata creata"
],
"Your nickname has been changed": [
null,
"Il tuo soprannome è stato cambiato"
],
"<strong>%1$s</strong> has been banned": [
null,
"<strong>%1$s</strong> è stato bandito"
],
"<strong>%1$s</strong> has been kicked out": [
null,
"<strong>%1$s</strong> è stato espulso"
],
"<strong>%1$s</strong> has been removed because of an affiliation change": [
null,
"<strong>%1$s</strong> è stato rimosso a causa di un cambio di affiliazione"
],
"<strong>%1$s</strong> has been removed for not being a member": [
null,
"<strong>%1$s</strong> è stato rimosso in quanto non membro"
],
"You have been banned from this room": [
null,
"Sei stato bandito da questa stanza"
],
"You have been kicked from this room": [
null,
"Sei stato espulso da questa stanza"
],
"You have been removed from this room because of an affiliation change": [
null,
"Sei stato rimosso da questa stanza a causa di un cambio di affiliazione"
],
"You have been removed from this room because the room has changed to members-only and you're not a member": [
null,
"Sei stato rimosso da questa stanza poiché ora la stanza accetta solo membri"
],
"You have been removed from this room because the MUC (Multi-user chat) service is being shut down.": [
null,
"Sei stato rimosso da questa stanza poiché il servizio MUC (Chat multi utente) è in fase di spegnimento"
],
"You are not on the member list of this room": [
null,
"Non sei nella lista dei membri di questa stanza"
],
"No nickname was specified": [
null,
"Nessun soprannome specificato"
],
"You are not allowed to create new rooms": [
null,
"Non ti è permesso creare nuove stanze"
],
"Your nickname doesn't conform to this room's policies": [
null,
"Il tuo soprannome non è conforme alle regole di questa stanza"
],
"Your nickname is already taken": [
null,
"Il tuo soprannome è già utilizzato"
],
"This room does not (yet) exist": [
null,
"Questa stanza non esiste (per ora)"
],
"This room has reached it's maximum number of occupants": [
null,
"Questa stanza ha raggiunto il limite massimo di utenti"
],
"Topic set by %1$s to: %2$s": [
null,
"Topic impostato da %1$s a: %2$s"
],
"This user is a moderator": [
null,
"Questo utente è un moderatore"
],
"This user can send messages in this room": [
null,
"Questo utente può inviare messaggi in questa stanza"
],
"This user can NOT send messages in this room": [
null,
"Questo utente NON può inviare messaggi in questa stanza"
],
"Click to chat with this contact": [
null,
"Clicca per parlare con questo contatto"
],
"Click to remove this contact": [
null,
"Clicca per rimuovere questo contatto"
],
"This contact is busy": [
null,
""
],
"This contact is online": [
null,
""
],
"This contact is offline": [
null,
""
],
"This contact is unavailable": [
null,
"Questa stanza mostra i membri non disponibili al momento"
],
"This contact is away for an extended period": [
null,
""
],
"This contact is away": [
null,
""
],
"Contact requests": [
null,
"Richieste dei contatti"
],
"My contacts": [
null,
"I miei contatti"
],
"Pending contacts": [
null,
"Contatti in attesa"
],
"Custom status": [
null,
"Stato personalizzato"
],
"Click to change your chat status": [
null,
"Clicca per cambiare il tuo stato"
],
"Click here to write a custom status message": [
null,
"Clicca qui per scrivere un messaggio di stato personalizzato"
],
"online": [
null,
"in linea"
],
"busy": [
null,
"occupato"
],
"away for long": [
null,
"assente da molto"
],
"away": [
null,
"assente"
],
"I am %1$s": [
null,
"Sono %1$s"
],
"Sign in": [
null,
"Accesso"
],
"XMPP/Jabber Username:": [
null,
"Nome utente:"
],
"Password:": [
null,
"Password:"
],
"Log In": [
null,
"Entra"
],
"BOSH Service URL:": [
null,
"Indirizzo servizio BOSH:"
],
"Online Contacts": [
null,
"Contatti in linea"
],
"Connected": [
null,
"Connesso"
],
"Attached": [
null,
"Allegato"
]
}
}
};
if (typeof define === 'function' && define.amd) {
define("it", ['jed'], function () {
return factory(new Jed(translations));
});
} else {
if (!window.locales) {
window.locales = {};
}
window.locales.it = factory(new Jed(translations));
}
}(this, function (it) {
return it;
}));

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -1,622 +0,0 @@
(function (root, factory) {
var translations = {
"domain": "converse",
"locale_data": {
"converse": {
"": {
"Project-Id-Version": "Converse.js 0.4",
"Report-Msgid-Bugs-To": "",
"POT-Creation-Date": "2014-01-07 11:12+0900",
"PO-Revision-Date": "2014-01-07 11:32+0900",
"Last-Translator": "Mako N <mako@pasero.net>",
"Language-Team": "Language JA",
"Language": "JA",
"MIME-Version": "1.0",
"Content-Type": "text/plain; charset=UTF-8",
"Content-Transfer-Encoding": "8bit",
"Plural-Forms": "nplurals=1; plural=0;"
},
"unencrypted": [
null,
"暗号化されていません"
],
"unverified": [
null,
"検証されていません"
],
"verified": [
null,
"検証されました"
],
"finished": [
null,
"完了"
],
"This contact is busy": [
null,
"この相手先は取り込み中です"
],
"This contact is online": [
null,
"この相手先は在席しています"
],
"This contact is offline": [
null,
"この相手先はオフラインです"
],
"This contact is unavailable": [
null,
"この相手先は不通です"
],
"This contact is away for an extended period": [
null,
"この相手先は不在です"
],
"This contact is away": [
null,
"この相手先は離席中です"
],
"Disconnected": [
null,
"切断中"
],
"Error": [
null,
"エラー"
],
"Connecting": [
null,
"接続中です"
],
"Connection Failed": [
null,
"接続に失敗しました"
],
"Authenticating": [
null,
"認証中"
],
"Authentication Failed": [
null,
"認証に失敗"
],
"Disconnecting": [
null,
"切断"
],
"Online Contacts": [
null,
"オンラインの相手先"
],
"Re-establishing encrypted session": [
null,
"暗号化セッションの再接続"
],
"Your browser needs to generate a private key, which will be used in your encrypted chat session. This can take up to 30 seconds during which your browser might freeze and become unresponsive.": [
null,
"暗号化チャットで使用する秘密鍵を生成する必要があります。これには30秒ほどかかり、そのあいだブラウザがフリーズして反応しないかもしれません。"
],
"Private key generated.": [
null,
"秘密鍵を生成しました。"
],
"Authentication request from %1$s\n\nYour buddy is attempting to verify your identity, by asking you the question below.\n\n%2$s": [
null,
"%1$s からの認証のリクエスト\n\n相手はあなたの本人性を検証しようとしています。次の質問に答えてください。\n\n%2$s"
],
"Could not verify this user's identify.": [
null,
"このユーザーの本人性を検証できませんでした。"
],
"Personal message": [
null,
"私信"
],
"Start encrypted conversation": [
null,
"暗号化された会話を開始"
],
"Refresh encrypted conversation": [
null,
"暗号化された会話をリフレッシュ"
],
"End encrypted conversation": [
null,
"暗号化された会話を終了"
],
"Verify with SMP": [
null,
"SMP で検証"
],
"Verify with fingerprints": [
null,
"鍵指紋で検証"
],
"What's this?": [
null,
"これは何ですか?"
],
"me": [
null,
"私"
],
"Show this menu": [
null,
"このメニューを表示"
],
"Write in the third person": [
null,
"第三者に書く"
],
"Remove messages": [
null,
"メッセージを削除"
],
"Your message could not be sent": [
null,
"メッセージを送信できませんでした"
],
"We received an unencrypted message": [
null,
"暗号化されていないメッセージを受信しました"
],
"We received an unreadable encrypted message": [
null,
"読めない暗号化メッセージを受信しました"
],
"This user has requested an encrypted session.": [
null,
"このユーザーは暗号化セッションを求めています。"
],
"Here are the fingerprints, please confirm them with %1$s, outside of this chat.\n\nFingerprint for you, %2$s: %3$s\n\nFingerprint for %1$s: %4$s\n\nIf you have confirmed that the fingerprints match, click OK, otherwise click Cancel.": [
null,
"これは鍵指紋です。チャット以外の方法でこれらを %1$s と確認してください。\n\nあなた %2$s の鍵指紋: %3$s\n\n%1$s の鍵指紋: %4$s\n\n確認して、鍵指紋が正しければ「OK」を、正しくなければ「キャンセル」をクリックしてください。"
],
"You will be prompted to provide a security question and then an answer to that question.\n\nYour buddy will then be prompted the same question and if they type the exact same answer (case sensitive), their identity will have been verified.": [
null,
"秘密の質問を入力し、それに対して答えるように促されます。\n\n相手にも、同じ質問が表示され、正しく同じ答(大文字・小文字は区別されます)を入力することで、本人性を検証します。"
],
"What is your security question?": [
null,
"秘密の質問はなんですか?"
],
"What is the answer to the security question?": [
null,
"秘密の質問の答はなんですか?"
],
"Invalid authentication scheme provided": [
null,
"認証の方式が正しくありません"
],
"Your messages are not encrypted anymore": [
null,
"メッセージはもう暗号化されません"
],
"Your messages are now encrypted but your buddy's identity has not been verified.": [
null,
"メッセージは暗号化されますが、相手が本人であることは検証されていません。"
],
"Your buddy's identify has been verified.": [
null,
"相手の本人性を検証しました。"
],
"Your buddy has ended encryption on their end, you should do the same.": [
null,
"相手は、暗号化を終了しました。あなたもそれに合わせる必要があります。"
],
"Your messages are not encrypted. Click here to enable OTR encryption.": [
null,
"メッセージは暗号化されません。OTR 暗号化を有効にするにはここをクリックしてください。"
],
"Your messages are encrypted, but your buddy has not been verified.": [
null,
"メッセージは暗号化されますが、相手は検証されていません。"
],
"Your messages are encrypted and your buddy verified.": [
null,
"メッセージは暗号化され、相手も検証されています。"
],
"Your buddy has closed their end of the private session, you should do the same": [
null,
"相手は私信を終了しました。あなたも同じようにしてください"
],
"Contacts": [
null,
"相手先"
],
"Online": [
null,
"オンライン"
],
"Busy": [
null,
"取り込み中"
],
"Away": [
null,
"離席中"
],
"Offline": [
null,
"オフライン"
],
"Click to add new chat contacts": [
null,
"クリックして新しいチャットの相手先を追加"
],
"Add a contact": [
null,
"相手先を追加"
],
"Contact username": [
null,
"相手先の名前"
],
"Add": [
null,
"追加"
],
"Contact name": [
null,
"名前"
],
"Search": [
null,
"検索"
],
"No users found": [
null,
"ユーザーが見つかりません"
],
"Click to add as a chat contact": [
null,
"クリックしてチャットの相手先として追加"
],
"Click to open this room": [
null,
"クリックしてこの談話室を開く"
],
"Show more information on this room": [
null,
"この談話室についての詳細を見る"
],
"Description:": [
null,
"説明: "
],
"Occupants:": [
null,
"入室者:"
],
"Features:": [
null,
"特徴:"
],
"Requires authentication": [
null,
"認証の要求"
],
"Hidden": [
null,
"非表示"
],
"Requires an invitation": [
null,
"招待の要求"
],
"Moderated": [
null,
"発言制限"
],
"Non-anonymous": [
null,
"非匿名"
],
"Open room": [
null,
"開放談話室"
],
"Permanent room": [
null,
"常設談話室"
],
"Public": [
null,
"公開談話室"
],
"Semi-anonymous": [
null,
"半匿名"
],
"Temporary room": [
null,
"臨時談話室"
],
"Unmoderated": [
null,
"発言制限なし"
],
"Rooms": [
null,
"談話室"
],
"Room name": [
null,
"談話室の名前"
],
"Nickname": [
null,
"ニックネーム"
],
"Server": [
null,
"サーバー"
],
"Join": [
null,
"入室"
],
"Show rooms": [
null,
"談話室一覧を見る"
],
"No rooms on %1$s": [
null,
"%1$s に談話室はありません"
],
"Rooms on %1$s": [
null,
"%1$s の談話室一覧"
],
"Set chatroom topic": [
null,
"談話室の話題を設定"
],
"Kick user from chatroom": [
null,
"ユーザーを談話室から蹴り出す"
],
"Ban user from chatroom": [
null,
"ユーザーを談話室から締め出す"
],
"Message": [
null,
"メッセージ"
],
"Save": [
null,
"保存"
],
"Cancel": [
null,
"キャンセル"
],
"An error occurred while trying to save the form.": [
null,
"フォームを保存する際にエラーが発生しました。"
],
"This chatroom requires a password": [
null,
"この談話室にはパスワードが必要です"
],
"Password: ": [
null,
"パスワード:"
],
"Submit": [
null,
"送信"
],
"This room is not anonymous": [
null,
"この談話室は非匿名です"
],
"This room now shows unavailable members": [
null,
"この談話室はメンバー以外にも見えます"
],
"This room does not show unavailable members": [
null,
"この談話室はメンバー以外には見えません"
],
"Non-privacy-related room configuration has changed": [
null,
"談話室の設定(プライバシーに無関係)が変更されました"
],
"Room logging is now enabled": [
null,
"談話室の記録を取りはじめます"
],
"Room logging is now disabled": [
null,
"談話室の記録を止めます"
],
"This room is now non-anonymous": [
null,
"この談話室はただいま非匿名です"
],
"This room is now semi-anonymous": [
null,
"この談話室はただいま半匿名です"
],
"This room is now fully-anonymous": [
null,
"この談話室はただいま匿名です"
],
"A new room has been created": [
null,
"新しい談話室が作成されました"
],
"Your nickname has been changed": [
null,
"ニックネームを変更しました"
],
"<strong>%1$s</strong> has been banned": [
null,
"<strong>%1$s</strong> を締め出しました"
],
"<strong>%1$s</strong> has been kicked out": [
null,
"<strong>%1$s</strong> を蹴り出しました"
],
"<strong>%1$s</strong> has been removed because of an affiliation change": [
null,
"分掌の変更のため、<strong>%1$s</strong> を削除しました"
],
"<strong>%1$s</strong> has been removed for not being a member": [
null,
"メンバーでなくなったため、<strong>%1$s</strong> を削除しました"
],
"You have been banned from this room": [
null,
"この談話室から締め出されました"
],
"You have been kicked from this room": [
null,
"この談話室から蹴り出されました"
],
"You have been removed from this room because of an affiliation change": [
null,
"分掌の変更のため、この談話室から削除されました"
],
"You have been removed from this room because the room has changed to members-only and you're not a member": [
null,
"談話室がメンバー制に変更されました。メンバーではないため、この談話室から削除されました"
],
"You have been removed from this room because the MUC (Multi-user chat) service is being shut down.": [
null,
"MUC(グループチャット)のサービスが停止したため、この談話室から削除されました。"
],
"You are not on the member list of this room": [
null,
"この談話室のメンバー一覧にいません"
],
"No nickname was specified": [
null,
"ニックネームがありません"
],
"You are not allowed to create new rooms": [
null,
"新しい談話室を作成する権限がありません"
],
"Your nickname doesn't conform to this room's policies": [
null,
"ニックネームがこの談話室のポリシーに従っていません"
],
"Your nickname is already taken": [
null,
"ニックネームは既に使われています"
],
"This room does not (yet) exist": [
null,
"この談話室は存在しません"
],
"This room has reached it's maximum number of occupants": [
null,
"この談話室は入室者数の上限に達しています"
],
"Topic set by %1$s to: %2$s": [
null,
"%1$s が話題を設定しました: %2$s"
],
"This user is a moderator": [
null,
"このユーザーは司会者です"
],
"This user can send messages in this room": [
null,
"このユーザーはこの談話室で発言できます"
],
"This user can NOT send messages in this room": [
null,
"このユーザーはこの談話室で発言できません"
],
"Click to chat with this contact": [
null,
"クリックしてこの相手先とチャット"
],
"Click to remove this contact": [
null,
"クリックしてこの相手先を削除"
],
"Contact requests": [
null,
"会話に呼び出し"
],
"My contacts": [
null,
"相手先一覧"
],
"Pending contacts": [
null,
"保留中の相手先"
],
"Custom status": [
null,
"独自の在席状況"
],
"Click to change your chat status": [
null,
"クリックして、在席状況を変更"
],
"Click here to write a custom status message": [
null,
"状況メッセージを入力するには、ここをクリック"
],
"online": [
null,
"在席"
],
"busy": [
null,
"取り込み中"
],
"away for long": [
null,
"不在"
],
"away": [
null,
"離席中"
],
"I am %1$s": [
null,
"私はいま %1$s"
],
"Sign in": [
null,
"サインイン"
],
"XMPP/Jabber Username:": [
null,
"XMPP/Jabber ユーザー名:"
],
"Password:": [
null,
"パスワード:"
],
"Log In": [
null,
"ログイン"
],
"BOSH Service URL:": [
null,
"BOSH サービス URL:"
]
}
}
};
if (typeof define === 'function' && define.amd) {
define("ja", ['jed'], function () {
return factory(new Jed(translations));
});
} else {
if (!window.locales) {
window.locales = {};
}
window.locales.ja = factory(new Jed(translations));
}
}(this, function (ja) {
return ja;
}));

View File

@ -1,45 +0,0 @@
/*
* This file specifies the language dependencies.
*
* Translations take up a lot of space and you are therefore advised to remove
* from here any languages that you don't need.
*/
(function (root, factory) {
define("locales", [
'jed',
'af',
'de',
'en',
'es',
'fr',
'he',
'hu',
'id',
'it',
'ja',
'nb',
'nl',
'pt_BR',
'ru',
'zh'
], function (jed, af, de, en, es, fr, he, hu, id, it, ja, nb, nl, pt_BR, ru, zh) {
root.locales = {
'af': af,
'de': de,
'en': en,
'es': es,
'fr': fr,
'he': he,
'hu': hu,
'id': id,
'it': it,
'ja': ja,
'nb': nb,
'nl': nl,
'pt-br': pt_BR,
'ru': ru,
'zh':zh
};
});
})(this);

View File

@ -7,6 +7,10 @@
"plural_forms": "nplurals=2; plural=(n != 1);",
"lang": "nb"
},
" e.g. conversejs.org": [
null,
""
],
"unencrypted": [
null,
"ukryptertß"
@ -95,10 +99,6 @@
null,
"Godkjenning mislyktes"
],
"Online Contacts": [
null,
"Påloggede Kontakter"
],
"Re-establishing encrypted session": [
null,
"Gjenopptar kryptert økt"
@ -171,10 +171,6 @@
null,
"Vi mottok en uleselig melding"
],
"This user has requested an encrypted session.": [
null,
"Denne brukeren har ønsket en kryptert økt"
],
"Here are the fingerprints, please confirm them with %1$s, outside of this chat.\n\nFingerprint for you, %2$s: %3$s\n\nFingerprint for %1$s: %4$s\n\nIf you have confirmed that the fingerprints match, click OK, otherwise click Cancel.": [
null,
"Here are the fingerprints, please confirm them with %1$s, outside of this chat.\n\nFingerprint for you, %2$s: %3$s\n\nFingerprint for %1$s: %4$s\n\nOm du har bekreftet at avtrykkene matcher, klikk OK. I motsatt fall, trykk Avbryt."
@ -327,10 +323,6 @@
null,
"Server"
],
"Join": [
null,
"Koble til"
],
"Show rooms": [
null,
"Vis Rom"
@ -447,6 +439,10 @@
null,
"Feil: kunne ikke utføre kommandoen"
],
"Change user's affiliation to admin": [
null,
""
],
"Ban user from room": [
null,
"Utesteng bruker fra rommet"
@ -459,6 +455,10 @@
null,
"Skriv i tredjeperson"
],
"Grant membership to a user": [
null,
""
],
"Remove user's ability to post messages": [
null,
"Fjern brukerens muligheter til å skrive meldinger"
@ -467,6 +467,14 @@
null,
"Endre ditt kallenavn"
],
"Grant moderator role to user": [
null,
""
],
"Revoke user's membership": [
null,
""
],
"Set room topic": [
null,
"Endre rommets emne"

File diff suppressed because it is too large Load Diff

View File

@ -1,786 +0,0 @@
(function (root, factory) {
var translations = {
"domain": "converse",
"locale_data": {
"converse": {
"": {
"domain": "converse",
"plural_forms": "nplurals=2; plural=(n != 1);",
"lang": "nb"
},
"unencrypted": [
null,
"ukryptertß"
],
"unverified": [
null,
"uverifisert"
],
"verified": [
null,
"verifisert"
],
"finished": [
null,
"ferdig"
],
"This contact is busy": [
null,
"Denne kontakten er opptatt"
],
"This contact is online": [
null,
"Kontakten er pålogget"
],
"This contact is offline": [
null,
"Kontakten er avlogget"
],
"This contact is unavailable": [
null,
"Kontakten er utilgjengelig"
],
"This contact is away for an extended period": [
null,
"Kontakten er borte for en lengre periode"
],
"This contact is away": [
null,
"Kontakten er borte"
],
"Click to hide these contacts": [
null,
"Klikk for å skjule disse kontaktene"
],
"My contacts": [
null,
"Mine Kontakter"
],
"Pending contacts": [
null,
"Kontakter som venter på godkjenning"
],
"Contact requests": [
null,
"Kontaktforespørsler"
],
"Ungrouped": [
null,
"Ugrupperte"
],
"Contacts": [
null,
"Kontakter"
],
"Groups": [
null,
"Grupper"
],
"Reconnecting": [
null,
"Kobler til igjen"
],
"Error": [
null,
"Feil"
],
"Connecting": [
null,
"Kobler til"
],
"Authenticating": [
null,
"Godkjenner"
],
"Authentication Failed": [
null,
"Godkjenning mislyktes"
],
"Online Contacts": [
null,
"Påloggede Kontakter"
],
"Re-establishing encrypted session": [
null,
"Gjenopptar kryptert økt"
],
"Generating private key.": [
null,
"Genererer privat nøkkel"
],
"Your browser might become unresponsive.": [
null,
"Din nettleser kan bli uresponsiv"
],
"Authentication request from %1$s\n\nYour chat contact is attempting to verify your identity, by asking you the question below.\n\n%2$s": [
null,
"Godkjenningsforespørsel fra %1$s\n\nDin nettpratkontakt forsøker å bekrefte din identitet, ved å spørre deg spørsmålet under.\n\n%2$s"
],
"Could not verify this user's identify.": [
null,
"Kunne ikke bekrefte denne brukerens identitet"
],
"Exchanging private key with contact.": [
null,
"Bytter private nøkler med kontakt"
],
"Personal message": [
null,
"Personlig melding"
],
"Are you sure you want to clear the messages from this room?": [
null,
"Er du sikker på at du vil fjerne meldingene fra dette rommet?"
],
"me": [
null,
"meg"
],
"is typing": [
null,
"skriver"
],
"has stopped typing": [
null,
"har stoppet å skrive"
],
"Show this menu": [
null,
"Viser denne menyen"
],
"Write in the third person": [
null,
"Skriv i tredjeperson"
],
"Remove messages": [
null,
"Fjern meldinger"
],
"Are you sure you want to clear the messages from this chat box?": [
null,
"Er du sikker på at du vil fjerne meldingene fra denne meldingsboksen?"
],
"Your message could not be sent": [
null,
"Beskjeden din kunne ikke sendes"
],
"We received an unencrypted message": [
null,
"Vi mottok en ukryptert beskjed"
],
"We received an unreadable encrypted message": [
null,
"Vi mottok en uleselig melding"
],
"This user has requested an encrypted session.": [
null,
"Denne brukeren har ønsket en kryptert økt"
],
"Here are the fingerprints, please confirm them with %1$s, outside of this chat.\n\nFingerprint for you, %2$s: %3$s\n\nFingerprint for %1$s: %4$s\n\nIf you have confirmed that the fingerprints match, click OK, otherwise click Cancel.": [
null,
"Here are the fingerprints, please confirm them with %1$s, outside of this chat.\n\nFingerprint for you, %2$s: %3$s\n\nFingerprint for %1$s: %4$s\n\nOm du har bekreftet at avtrykkene matcher, klikk OK. I motsatt fall, trykk Avbryt."
],
"You will be prompted to provide a security question and then an answer to that question.\n\nYour contact will then be prompted the same question and if they type the exact same answer (case sensitive), their identity will be verified.": [
null,
"Du vil bli spurt etter å tilby et sikkerhetsspørsmål og siden svare på dette.\n\nDin kontakt vil så bli spurt om det samme spørsmålet, og om de svarer det nøyaktig samme svaret (det er forskjell på små og store bokstaver), vil identiteten verifiseres."
],
"What is your security question?": [
null,
"Hva er ditt Sikkerhetsspørsmål?"
],
"What is the answer to the security question?": [
null,
"Hva er svaret på ditt Sikkerhetsspørsmål?"
],
"Invalid authentication scheme provided": [
null,
"Du har vedlagt en ugyldig godkjenningsplan."
],
"Your messages are not encrypted anymore": [
null,
"Dine meldinger er ikke kryptert lenger."
],
"Your messages are now encrypted but your contact's identity has not been verified.": [
null,
"Dine meldinger er nå krypterte, men identiteten til din kontakt har ikke blitt verifisert."
],
"Your contact's identify has been verified.": [
null,
"Din kontakts identitet har blitt verifisert."
],
"Your contact has ended encryption on their end, you should do the same.": [
null,
"Din kontakt har avsluttet kryptering i sin ende, dette burde du også gjøre."
],
"Your messages are not encrypted. Click here to enable OTR encryption.": [
null,
"Dine meldinger er ikke krypterte. Klikk her for å aktivere OTR-kryptering."
],
"Your messages are encrypted, but your contact has not been verified.": [
null,
"Dine meldinger er krypterte, men din kontakt har ikke blitt verifisert."
],
"Your messages are encrypted and your contact verified.": [
null,
"Dine meldinger er krypterte og din kontakt er verifisert."
],
"Your contact has closed their end of the private session, you should do the same": [
null,
"Din kontakt har avsluttet økten i sin ende, dette burde du også gjøre."
],
"Clear all messages": [
null,
"Fjern alle meldinger"
],
"End encrypted conversation": [
null,
"Avslutt kryptert økt"
],
"Hide the list of participants": [
null,
"Skjul deltakerlisten"
],
"Refresh encrypted conversation": [
null,
"Last inn kryptert samtale på nytt"
],
"Start a call": [
null,
"Start en samtale"
],
"Start encrypted conversation": [
null,
"Start en kryptert samtale"
],
"Verify with fingerprints": [
null,
"Verifiser med Avtrykk"
],
"Verify with SMP": [
null,
"Verifiser med SMP"
],
"What's this?": [
null,
"Hva er dette?"
],
"Online": [
null,
"Pålogget"
],
"Busy": [
null,
"Opptatt"
],
"Away": [
null,
"Borte"
],
"Offline": [
null,
"Avlogget"
],
"Log out": [
null,
"Logg Av"
],
"Contact name": [
null,
"Kontaktnavn"
],
"Search": [
null,
"Søk"
],
"Contact username": [
null,
"Brukernavnet til Kontakt"
],
"Add": [
null,
"Legg Til"
],
"Click to add new chat contacts": [
null,
"Klikk for å legge til nye meldingskontakter"
],
"Add a contact": [
null,
"Legg til en Kontakt"
],
"No users found": [
null,
"Ingen brukere funnet"
],
"Click to add as a chat contact": [
null,
"Klikk for å legge til som meldingskontakt"
],
"Room name": [
null,
"Romnavn"
],
"Nickname": [
null,
"Kallenavn"
],
"Server": [
null,
"Server"
],
"Join": [
null,
"Koble til"
],
"Show rooms": [
null,
"Vis Rom"
],
"Rooms": [
null,
"Rom"
],
"No rooms on %1$s": [
null,
"Ingen rom på %1$s"
],
"Rooms on %1$s": [
null,
"Rom på %1$s"
],
"Click to open this room": [
null,
"Klikk for å åpne dette rommet"
],
"Show more information on this room": [
null,
"Vis mer informasjon om dette rommet"
],
"Description:": [
null,
"Beskrivelse:"
],
"Occupants:": [
null,
"Brukere her:"
],
"Features:": [
null,
"Egenskaper:"
],
"Requires authentication": [
null,
"Krever Godkjenning"
],
"Hidden": [
null,
"Skjult"
],
"Requires an invitation": [
null,
"Krever en invitasjon"
],
"Moderated": [
null,
"Moderert"
],
"Non-anonymous": [
null,
"Ikke-Anonym"
],
"Open room": [
null,
"Åpent Rom"
],
"Permanent room": [
null,
"Permanent Rom"
],
"Public": [
null,
"Alle"
],
"Semi-anonymous": [
null,
"Semi-anonymt"
],
"Temporary room": [
null,
"Midlertidig Rom"
],
"Unmoderated": [
null,
"Umoderert"
],
"This user is a moderator": [
null,
"Denne brukeren er moderator"
],
"This user can send messages in this room": [
null,
"Denne brukeren kan skrive meldinger i dette rommet"
],
"This user can NOT send messages in this room": [
null,
"Denne brukeren kan IKKE sende meldinger i dette rommet"
],
"Invite...": [
null,
"Invitér..."
],
"Occupants": [
null,
"Brukere her:"
],
"You are about to invite %1$s to the chat room \"%2$s\". ": [
null,
"Du er i ferd med å invitere %1$s til samtalerommet \"%2$s\". "
],
"You may optionally include a message, explaining the reason for the invitation.": [
null,
"Du kan eventuelt inkludere en melding og forklare årsaken til invitasjonen."
],
"Message": [
null,
"Melding"
],
"Error: could not execute the command": [
null,
"Feil: kunne ikke utføre kommandoen"
],
"Ban user from room": [
null,
"Utesteng bruker fra rommet"
],
"Kick user from room": [
null,
"Kast ut bruker fra rommet"
],
"Write in 3rd person": [
null,
"Skriv i tredjeperson"
],
"Remove user's ability to post messages": [
null,
"Fjern brukerens muligheter til å skrive meldinger"
],
"Change your nickname": [
null,
"Endre ditt kallenavn"
],
"Set room topic": [
null,
"Endre rommets emne"
],
"Allow muted user to post messages": [
null,
"Tillat stumme brukere å skrive meldinger"
],
"Save": [
null,
"Lagre"
],
"Cancel": [
null,
"Avbryt"
],
"An error occurred while trying to save the form.": [
null,
"En feil skjedde under lagring av skjemaet."
],
"This chatroom requires a password": [
null,
"Dette rommet krever et passord"
],
"Password: ": [
null,
"Passord:"
],
"Submit": [
null,
"Send"
],
"This room is not anonymous": [
null,
"Dette rommet er ikke anonymt"
],
"This room now shows unavailable members": [
null,
"Dette rommet viser nå utilgjengelige medlemmer"
],
"This room does not show unavailable members": [
null,
"Dette rommet viser ikke utilgjengelige medlemmer"
],
"Non-privacy-related room configuration has changed": [
null,
"Ikke-personvernsrelatert romkonfigurasjon har blitt endret"
],
"Room logging is now enabled": [
null,
"Romlogging er nå aktivert"
],
"Room logging is now disabled": [
null,
"Romlogging er nå deaktivert"
],
"This room is now non-anonymous": [
null,
"Dette rommet er nå ikke-anonymt"
],
"This room is now semi-anonymous": [
null,
"Dette rommet er nå semi-anonymt"
],
"This room is now fully-anonymous": [
null,
"Dette rommet er nå totalt anonymt"
],
"A new room has been created": [
null,
"Et nytt rom har blitt opprettet"
],
"You have been banned from this room": [
null,
"Du har blitt utestengt fra dette rommet"
],
"You have been kicked from this room": [
null,
"Du ble kastet ut av dette rommet"
],
"You have been removed from this room because of an affiliation change": [
null,
"Du har blitt fjernet fra dette rommet på grunn av en holdningsendring"
],
"You have been removed from this room because the room has changed to members-only and you're not a member": [
null,
"Du har blitt fjernet fra dette rommet fordi rommet nå kun tillater medlemmer, noe du ikke er."
],
"You have been removed from this room because the MUC (Multi-user chat) service is being shut down.": [
null,
"Du har blitt fjernet fra dette rommet fordi MBC (Multi-Bruker-Chat)-tjenesten er stengt ned."
],
"<strong>%1$s</strong> has been banned": [
null,
"<strong>%1$s</strong> har blitt utestengt"
],
"<strong>%1$s</strong>'s nickname has changed": [
null,
"<strong>%1$s</strong> sitt kallenavn er endret"
],
"<strong>%1$s</strong> has been kicked out": [
null,
"<strong>%1$s</strong> ble kastet ut"
],
"<strong>%1$s</strong> has been removed because of an affiliation change": [
null,
"<strong>%1$s</strong> har blitt fjernet på grunn av en holdningsendring"
],
"<strong>%1$s</strong> has been removed for not being a member": [
null,
"<strong>%1$s</strong> har blitt fjernet på grunn av at han/hun ikke er medlem"
],
"Your nickname has been automatically changed to: <strong>%1$s</strong>": [
null,
"Ditt kallenavn har blitt automatisk endret til <strong>%1$s</strong> "
],
"Your nickname has been changed to: <strong>%1$s</strong>": [
null,
"Ditt kallenavn har blitt endret til <strong>%1$s</strong> "
],
"The reason given is: \"": [
null,
"Årsaken som er oppgitt er: \""
],
"You are not on the member list of this room": [
null,
"Du er ikke på medlemslisten til dette rommet"
],
"No nickname was specified": [
null,
"Ingen kallenavn var spesifisert"
],
"You are not allowed to create new rooms": [
null,
"Du har ikke tillatelse til å opprette nye rom"
],
"Your nickname doesn't conform to this room's policies": [
null,
"Ditt kallenavn er ikke i samsvar med rommets regler"
],
"Your nickname is already taken": [
null,
"Kallenavnet er allerede tatt"
],
"This room does not (yet) exist": [
null,
"Dette rommet eksisterer ikke (enda)"
],
"This room has reached it's maximum number of occupants": [
null,
"Dette rommet har nådd maksimalt antall brukere"
],
"Topic set by %1$s to: %2$s": [
null,
"Emnet ble endret den %1$s til: %2$s"
],
"%1$s has invited you to join a chat room: %2$s": [
null,
"%1$s har invitert deg til å bli med i chatterommet: %2$s"
],
"%1$s has invited you to join a chat room: %2$s, and left the following reason: \"%3$s\"": [
null,
"%1$s har invitert deg til å bli med i chatterommet: %2$s, og forlot selv av følgende grunn: \"%3$s\""
],
"Click to restore this chat": [
null,
"Klikk for å gjenopprette denne samtalen"
],
"Minimized": [
null,
"Minimert"
],
"Click to remove this contact": [
null,
"Klikk for å fjerne denne kontakten"
],
"Click to accept this contact request": [
null,
"Klikk for å Godta denne kontaktforespørselen"
],
"Click to decline this contact request": [
null,
"Klikk for å avslå denne kontaktforespørselen"
],
"Click to chat with this contact": [
null,
"Klikk for å chatte med denne kontakten"
],
"Are you sure you want to remove this contact?": [
null,
"Er du sikker på at du vil fjerne denne kontakten?"
],
"Are you sure you want to decline this contact request?": [
null,
"Er du sikker på at du vil avslå denne kontaktforespørselen?"
],
"Type to filter": [
null,
"Skriv til filter"
],
"I am %1$s": [
null,
"Jeg er %1$s"
],
"Click here to write a custom status message": [
null,
"Klikk her for å skrive en personlig statusmelding"
],
"Click to change your chat status": [
null,
"Klikk for å endre din meldingsstatus"
],
"Custom status": [
null,
"Personlig status"
],
"online": [
null,
"pålogget"
],
"busy": [
null,
"opptatt"
],
"away for long": [
null,
"borte lenge"
],
"away": [
null,
"borte"
],
"Your XMPP provider's domain name:": [
null,
"Din XMPP-tilbyders domenenavn:"
],
"Fetch registration form": [
null,
"Hent registreringsskjema"
],
"Tip: A list of public XMPP providers is available": [
null,
"Tips: En liste med offentlige XMPP-tilbydere er tilgjengelig"
],
"here": [
null,
"her"
],
"Register": [
null,
"Registrér deg"
],
"Sorry, the given provider does not support in band account registration. Please try with a different provider.": [
null,
"Beklager, den valgte tilbyderen støtter ikke in band kontoregistrering. Vennligst prøv igjen med en annen tilbyder. "
],
"Requesting a registration form from the XMPP server": [
null,
"Spør etter registreringsskjema fra XMPP-tjeneren"
],
"Something went wrong while establishing a connection with \"%1$s\". Are you sure it exists?": [
null,
"Noe gikk galt under etablering av forbindelse med \"%1$s\". Er du sikker på at denne eksisterer?"
],
"Now logging you in": [
null,
"Logger deg inn"
],
"Registered successfully": [
null,
"Registrering var vellykket"
],
"Return": [
null,
"Tilbake"
],
"The provider rejected your registration attempt. ": [
null,
"Tilbyderen avviste ditt registreringsforsøk."
],
"XMPP Username:": [
null,
"XMPP Brukernavn:"
],
"Password:": [
null,
"Passord:"
],
"Log In": [
null,
"Logg inn"
],
"Sign in": [
null,
"Innlogging"
],
"Toggle chat": [
null,
"Endre chatten"
]
}
}
};
if (typeof define === 'function' && define.amd) {
define("nb", ['jed'], function () {
return factory(new Jed(translations));
});
} else {
if (!window.locales) {
window.locales = {};
}
window.locales.nb = factory(new Jed(translations));
}
}(this, function (nb) {
return nb;
}));

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -1,637 +0,0 @@
(function (root, factory) {
var translations = {
"domain": "converse",
"locale_data": {
"converse": {
"": {
"Project-Id-Version": "Converse.js 0.4",
"Report-Msgid-Bugs-To": "",
"POT-Creation-Date": "2013-09-15 21:55+0200",
"PO-Revision-Date": "2013-09-15 22:03+0200",
"Last-Translator": "Maarten Kling <maarten@fourdigits.nl>",
"Language-Team": "Dutch",
"Language": "nl",
"MIME-Version": "1.0",
"Content-Type": "text/plain; charset=UTF-8",
"Content-Transfer-Encoding": "8bit",
"Plural-Forms": "nplurals=2; plural=(n != 1);",
"domain": "converse",
"lang": "nl",
"plural_forms": "nplurals=2; plural=(n != 1);"
},
"unencrypted": [
null,
"ongecodeerde"
],
"unverified": [
null,
"niet geverifieerd"
],
"verified": [
null,
"geverifieerd"
],
"finished": [
null,
"klaar"
],
"Disconnected": [
null,
"Verbinding verbroken."
],
"Error": [
null,
"Error"
],
"Connecting": [
null,
"Verbinden"
],
"Connection Failed": [
null,
"Verbinden mislukt"
],
"Authenticating": [
null,
"Authenticeren"
],
"Authentication Failed": [
null,
"Authenticeren mislukt"
],
"Disconnecting": [
null,
""
],
"Re-establishing encrypted session": [
null,
"Bezig versleutelde sessie te herstellen"
],
"Your browser needs to generate a private key, which will be used in your encrypted chat session. This can take up to 30 seconds during which your browser might freeze and become unresponsive.": [
null,
""
],
"Private key generated.": [
null,
"Private key gegenereerd."
],
"Authentication request from %1$s\n\nYour buddy is attempting to verify your identity, by asking you the question below.\n\n%2$s": [
null,
""
],
"Could not verify this user's identify.": [
null,
"Niet kon de identiteit van deze gebruiker niet identificeren."
],
"Personal message": [
null,
"Persoonlijk bericht"
],
"Start encrypted conversation": [
null,
"Start encrypted gesprek"
],
"Refresh encrypted conversation": [
null,
"Ververs encrypted gesprek"
],
"End encrypted conversation": [
null,
"Beeindig encrypted gesprek"
],
"Verify with SMP": [
null,
""
],
"Verify with fingerprints": [
null,
""
],
"What's this?": [
null,
"Wat is dit?"
],
"me": [
null,
"ikzelf"
],
"Show this menu": [
null,
"Toon dit menu"
],
"Write in the third person": [
null,
"Schrijf in de 3de persoon"
],
"Remove messages": [
null,
"Verwijder bericht"
],
"Your message could not be sent": [
null,
"Je bericht kon niet worden verzonden"
],
"We received an unencrypted message": [
null,
"We ontvingen een unencrypted bericht "
],
"We received an unreadable encrypted message": [
null,
"We ontvangen een onleesbaar unencrypted bericht"
],
"This user has requested an encrypted session.": [
null,
"Deze gebruiker heeft een encrypted sessie aangevraagd."
],
"Here are the fingerprints, please confirm them with %1$s, outside of this chat.\n\nFingerprint for you, %2$s: %3$s\n\nFingerprint for %1$s: %4$s\n\nIf you have confirmed that the fingerprints match, click OK, otherwise click Cancel.": [
null,
""
],
"You will be prompted to provide a security question and then an answer to that question.\n\nYour buddy will then be prompted the same question and if they type the exact same answer (case sensitive), their identity will have been verified.": [
null,
""
],
"What is your security question?": [
null,
"Wat is jou sericury vraag?"
],
"What is the answer to the security question?": [
null,
"Wat is het antwoord op de security vraag?"
],
"Invalid authentication scheme provided": [
null,
""
],
"Your messages are not encrypted anymore": [
null,
"Je berichten zijn niet meer encrypted"
],
"Your messages are now encrypted but your buddy's identity has not been verified.": [
null,
""
],
"Your buddy's identify has been verified.": [
null,
"Jou contact is geverifieerd"
],
"Your buddy has ended encryption on their end, you should do the same.": [
null,
"Jou contact heeft encryption aanstaan, je moet het zelfde doen."
],
"Your messages are not encrypted. Click here to enable OTR encryption.": [
null,
"Jou bericht is niet encrypted. KLik hier om ORC encrytion aan te zetten."
],
"Your messages are encrypted, but your buddy has not been verified.": [
null,
"Jou berichten zijn encrypted, maar je contact is niet geverifieerd."
],
"Your messages are encrypted and your buddy verified.": [
null,
"Jou bericht is encrypted en jou contact is geverifieerd."
],
"Your buddy has closed their end of the private session, you should do the same": [
null,
""
],
"Contacts": [
null,
"Contacten"
],
"Online": [
null,
"Online"
],
"Busy": [
null,
"Bezet"
],
"Away": [
null,
"Afwezig"
],
"Offline": [
null,
""
],
"Click to add new chat contacts": [
null,
"Klik om nieuwe contacten toe te voegen"
],
"Add a contact": [
null,
"Voeg contact toe"
],
"Contact username": [
null,
"Contact gebruikernaam"
],
"Add": [
null,
"Toevoegen"
],
"Contact name": [
null,
"Contact naam"
],
"Search": [
null,
"Zoeken"
],
"No users found": [
null,
"Geen gebruikers gevonden"
],
"Click to add as a chat contact": [
null,
"Klik om contact toe te voegen"
],
"Click to open this room": [
null,
"Klik om room te openen"
],
"Show more information on this room": [
null,
"Toon meer informatie over deze room"
],
"Description:": [
null,
"Beschrijving"
],
"Occupants:": [
null,
"Deelnemers:"
],
"Features:": [
null,
"Functies:"
],
"Requires authentication": [
null,
"Verificatie vereist"
],
"Hidden": [
null,
"Verborgen"
],
"Requires an invitation": [
null,
"Veriest een uitnodiging"
],
"Moderated": [
null,
"Gemodereerd"
],
"Non-anonymous": [
null,
"Niet annoniem"
],
"Open room": [
null,
"Open room"
],
"Permanent room": [
null,
"Blijvend room"
],
"Public": [
null,
"Publiek"
],
"Semi-anonymous": [
null,
"Semi annoniem"
],
"Temporary room": [
null,
"Tijdelijke room"
],
"Unmoderated": [
null,
"Niet gemodereerd"
],
"Rooms": [
null,
"Rooms"
],
"Room name": [
null,
"Room naam"
],
"Nickname": [
null,
"Nickname"
],
"Server": [
null,
"Server"
],
"Join": [
null,
"Deelnemen"
],
"Show rooms": [
null,
"Toon rooms"
],
"No rooms on %1$s": [
null,
"Geen room op %1$s"
],
"Rooms on %1$s": [
null,
"Room op %1$s"
],
"Set chatroom topic": [
null,
"Zet chatroom topic"
],
"Kick user from chatroom": [
null,
"Goei gebruiker uit chatroom"
],
"Ban user from chatroom": [
null,
"Ban gebruiker van chatroom"
],
"Message": [
null,
"Bericht"
],
"Save": [
null,
"Opslaan"
],
"Cancel": [
null,
"Annuleren"
],
"An error occurred while trying to save the form.": [
null,
"Een error tijdens het opslaan van het formulier."
],
"This chatroom requires a password": [
null,
"Chatroom heeft een wachtwoord"
],
"Password: ": [
null,
"Wachtwoord: "
],
"Submit": [
null,
"Indienen"
],
"This room is not anonymous": [
null,
"Deze room is niet annoniem"
],
"This room now shows unavailable members": [
null,
""
],
"This room does not show unavailable members": [
null,
""
],
"Non-privacy-related room configuration has changed": [
null,
""
],
"Room logging is now enabled": [
null,
""
],
"Room logging is now disabled": [
null,
""
],
"This room is now non-anonymous": [
null,
"Deze room is nu niet annoniem"
],
"This room is now semi-anonymous": [
null,
"Deze room is nu semie annoniem"
],
"This room is now fully-anonymous": [
null,
"Deze room is nu volledig annoniem"
],
"A new room has been created": [
null,
"Een nieuwe room is gemaakt"
],
"Your nickname has been changed": [
null,
"Je nickname is veranderd"
],
"<strong>%1$s</strong> has been banned": [
null,
"<strong>%1$s</strong> is verbannen"
],
"<strong>%1$s</strong> has been kicked out": [
null,
"<strong>%1$s</strong> has been kicked out"
],
"<strong>%1$s</strong> has been removed because of an affiliation change": [
null,
""
],
"<strong>%1$s</strong> has been removed for not being a member": [
null,
""
],
"You have been banned from this room": [
null,
"Je bent verbannen uit deze room"
],
"You have been kicked from this room": [
null,
"Je bent uit de room gegooid"
],
"You have been removed from this room because of an affiliation change": [
null,
""
],
"You have been removed from this room because the room has changed to members-only and you're not a member": [
null,
""
],
"You have been removed from this room because the MUC (Multi-user chat) service is being shut down.": [
null,
""
],
"You are not on the member list of this room": [
null,
"Je bent niet een gebruiker van deze room"
],
"No nickname was specified": [
null,
"Geen nickname ingegeven"
],
"You are not allowed to create new rooms": [
null,
"Je bent niet toegestaan nieuwe rooms te maken"
],
"Your nickname doesn't conform to this room's policies": [
null,
"Je nickname is niet conform policy"
],
"Your nickname is already taken": [
null,
"Je nickname bestaat al"
],
"This room does not (yet) exist": [
null,
"Deze room bestaat niet"
],
"This room has reached it's maximum number of occupants": [
null,
"Deze room heeft het maximale aantal gebruikers"
],
"Topic set by %1$s to: %2$s": [
null,
""
],
"This user is a moderator": [
null,
"Dit is een moderator"
],
"This user can send messages in this room": [
null,
"Deze gebruiker kan berichten sturen in deze room"
],
"This user can NOT send messages in this room": [
null,
"Deze gebruiker kan NIET een bericht sturen in deze room"
],
"Click to chat with this contact": [
null,
"Klik om te chatten met contact"
],
"Click to remove this contact": [
null,
"Klik om contact te verwijderen"
],
"This contact is busy": [
null,
"Contact is bezet"
],
"This contact is online": [
null,
"Contact is online"
],
"This contact is offline": [
null,
"Contact is offline"
],
"This contact is unavailable": [
null,
"Contact is niet beschikbaar"
],
"This contact is away for an extended period": [
null,
"Contact is afwezig voor lange periode"
],
"This contact is away": [
null,
"Conact is afwezig"
],
"Contact requests": [
null,
"Contact uitnodiging"
],
"My contacts": [
null,
"Mijn contacts"
],
"Pending contacts": [
null,
"Conacten in afwachting van"
],
"Custom status": [
null,
""
],
"Click to change your chat status": [
null,
"Klik hier om status te wijzigen"
],
"Click here to write a custom status message": [
null,
"Klik hier om custom status bericht te maken"
],
"online": [
null,
"online"
],
"busy": [
null,
"bezet"
],
"away for long": [
null,
"afwezig lange tijd"
],
"away": [
null,
"afwezig"
],
"I am %1$s": [
null,
"Ik ben %1$s"
],
"Sign in": [
null,
"Aanmelden"
],
"XMPP/Jabber Username:": [
null,
"XMPP/Jabber Username:"
],
"Password:": [
null,
"Wachtwoord:"
],
"Log In": [
null,
"Aanmelden"
],
"BOSH Service URL:": [
null,
""
],
"Online Contacts": [
null,
"Online Contacten"
],
"%1$s is typing": [
null,
"%1$s is aan typen"
],
"Connected": [
null,
"Verbonden"
],
"Attached": [
null,
"Bijlage"
]
}
}
};
if (typeof define === 'function' && define.amd) {
define("nl", ['jed'], function () {
return factory(new Jed(translations));
});
} else {
if (!window.locales) {
window.locales = {};
}
window.locales.nl = factory(new Jed(translations));
}
}(this, function (nl) {
return nl;
}));

View File

@ -0,0 +1,780 @@
{
"domain": "converse",
"locale_data": {
"converse": {
"": {
"domain": "converse",
"plural_forms": "nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);",
"lang": "pl"
},
" e.g. conversejs.org": [
null,
""
],
"unencrypted": [
null,
"nieszyfrowane"
],
"unverified": [
null,
"niezweryfikowane"
],
"verified": [
null,
"zweryfikowane"
],
"finished": [
null,
"zakończone"
],
"This contact is busy": [
null,
"Kontakt jest zajęty"
],
"This contact is online": [
null,
"Kontakt jest połączony"
],
"This contact is offline": [
null,
"Kontakt jest niepołączony"
],
"This contact is unavailable": [
null,
"Kontakt jest niedostępny"
],
"This contact is away for an extended period": [
null,
"Kontakt jest nieobecny przez dłuższą chwilę"
],
"This contact is away": [
null,
"Kontakt jest nieobecny"
],
"Click to hide these contacts": [
null,
"Kliknij aby schować te kontakty"
],
"My contacts": [
null,
"Moje kontakty"
],
"Pending contacts": [
null,
"Kontakty oczekujące"
],
"Contact requests": [
null,
"Zaproszenia do kontaktu"
],
"Ungrouped": [
null,
"Niezgrupowane"
],
"Contacts": [
null,
"Kontakty"
],
"Groups": [
null,
"Grupy"
],
"Reconnecting": [
null,
"Przywracam połączenie"
],
"Error": [
null,
"Błąd"
],
"Connecting": [
null,
"Łączę się"
],
"Authenticating": [
null,
"Autoryzacja"
],
"Authentication Failed": [
null,
"Autoryzacja nie powiodła się"
],
"Re-establishing encrypted session": [
null,
"Przywrócenie sesji szyfrowanej"
],
"Generating private key.": [
null,
"Generuję klucz prywatny."
],
"Your browser might become unresponsive.": [
null,
"Twoja przeglądarka może nieco zwolnić."
],
"Authentication request from %1$s\n\nYour chat contact is attempting to verify your identity, by asking you the question below.\n\n%2$s": [
null,
"Prośba o autoryzację od %1$s\n\nKontakt próbuje zweryfikować twoją tożsamość, zadając ci pytanie poniżej.\n\n%2$s"
],
"Could not verify this user's identify.": [
null,
"Nie jestem w stanie zweryfikować tożsamości kontaktu."
],
"Exchanging private key with contact.": [
null,
"Wymieniam klucze szyfrujące z kontaktem."
],
"Personal message": [
null,
"Wiadomość osobista"
],
"Are you sure you want to clear the messages from this room?": [
null,
"Potwierdź czy rzeczywiście chcesz wyczyścić wiadomości z tego pokoju?"
],
"me": [
null,
"ja"
],
"is typing": [
null,
"pisze"
],
"has stopped typing": [
null,
"przestał pisać"
],
"Show this menu": [
null,
"Pokaż menu"
],
"Write in the third person": [
null,
"Pisz w trzeciej osobie"
],
"Remove messages": [
null,
"Usuń wiadomość"
],
"Are you sure you want to clear the messages from this chat box?": [
null,
"Potwierdź czy rzeczywiście chcesz wyczyścić wiadomości z okienka rozmowy?"
],
"Your message could not be sent": [
null,
"Twoja wiadomość nie została wysłana"
],
"We received an unencrypted message": [
null,
"Otrzymaliśmy niezaszyfrowaną wiadomość"
],
"We received an unreadable encrypted message": [
null,
"Otrzymaliśmy nieczytelną zaszyfrowaną wiadomość"
],
"Here are the fingerprints, please confirm them with %1$s, outside of this chat.\n\nFingerprint for you, %2$s: %3$s\n\nFingerprint for %1$s: %4$s\n\nIf you have confirmed that the fingerprints match, click OK, otherwise click Cancel.": [
null,
"Oto odciski palców, potwiedź je proszę z %1$s używając innego sposobuwymiany informacji niż ta rozmowa.\n\nOdcisk palca dla ciebie, %2$s: %3$s\n\nOdcisk palca dla %1$s: %4$s\n\nJeśli odciski palców zostały potwierdzone, kliknij OK, w inny wypadku kliknij Anuluj."
],
"You will be prompted to provide a security question and then an answer to that question.\n\nYour contact will then be prompted the same question and if they type the exact same answer (case sensitive), their identity will be verified.": [
null,
"Poprosimy cię o podanie pytania sprawdzającego i odpowiedzi na nie.\n\nTwój kontakt zostanie poproszony później o odpowiedź na to samo pytanie i jeśli udzieli tej samej odpowiedzi (ważna jest wielkość liter), tożsamość zostanie zwerfikowana."
],
"What is your security question?": [
null,
"Jakie jest pytanie bezpieczeństwa?"
],
"What is the answer to the security question?": [
null,
"Jaka jest odpowiedź na pytanie bezpieczeństwa?"
],
"Invalid authentication scheme provided": [
null,
"Niewłaściwy schemat autoryzacji"
],
"Your messages are not encrypted anymore": [
null,
"Twoje wiadomości nie są już szyfrowane"
],
"Your messages are now encrypted but your contact's identity has not been verified.": [
null,
"Wiadomości są teraz szyfrowane, ale tożsamość kontaktu nie została zweryfikowana."
],
"Your contact's identify has been verified.": [
null,
"Tożsamość kontaktu została zweryfikowana"
],
"Your contact has ended encryption on their end, you should do the same.": [
null,
"Kontakt zakończył sesję szyfrowaną, powinieneś zrobić to samo."
],
"Your messages are not encrypted. Click here to enable OTR encryption.": [
null,
"Twoje wiadomości nie są szyfrowane. Kliknij, aby uruchomić szyfrowanie OTR"
],
"Your messages are encrypted, but your contact has not been verified.": [
null,
"Wiadomości są szyfrowane, ale tożsamość kontaktu nie została zweryfikowana."
],
"Your messages are encrypted and your contact verified.": [
null,
"Wiadomości są szyfrowane i tożsamość kontaktu została zweryfikowana."
],
"Your contact has closed their end of the private session, you should do the same": [
null,
"Kontakt zakończył prywatną rozmowę i ty zrób to samo"
],
"Clear all messages": [
null,
"Wyczyść wszystkie wiadomości"
],
"End encrypted conversation": [
null,
"Zakończ szyfrowaną rozmowę"
],
"Hide the list of participants": [
null,
"Ukryj listę rozmówców"
],
"Refresh encrypted conversation": [
null,
"Odśwież szyfrowaną rozmowę"
],
"Start a call": [
null,
"Zadzwoń"
],
"Start encrypted conversation": [
null,
"Rozpocznij szyfrowaną rozmowę"
],
"Verify with fingerprints": [
null,
"Zweryfikuj za pomocą odcisków palców"
],
"Verify with SMP": [
null,
"Zweryfikuj za pomocą SMP"
],
"What's this?": [
null,
"Co to jest?"
],
"Online": [
null,
"Dostępny"
],
"Busy": [
null,
"Zajęty"
],
"Away": [
null,
"Nieobecny"
],
"Offline": [
null,
"Rozłączony"
],
"Log out": [
null,
"Wyloguj"
],
"Contact name": [
null,
"Nazwa kontaktu"
],
"Search": [
null,
"Szukaj"
],
"Contact username": [
null,
"Ksywka kontaktu"
],
"Add": [
null,
"Dodaj"
],
"Click to add new chat contacts": [
null,
"Kliknij aby dodać nowe kontakty"
],
"Add a contact": [
null,
"Dodaj kontakt"
],
"No users found": [
null,
"Nie znaleziono użytkowników"
],
"Click to add as a chat contact": [
null,
"Kliknij aby dodać jako kontakt"
],
"Room name": [
null,
"Nazwa pokoju"
],
"Nickname": [
null,
"Ksywka"
],
"Server": [
null,
"Serwer"
],
"Show rooms": [
null,
"Pokaż pokoje"
],
"Rooms": [
null,
"Pokoje"
],
"No rooms on %1$s": [
null,
"Brak jest pokojów na %1$s"
],
"Rooms on %1$s": [
null,
"Pokoje na %1$s"
],
"Click to open this room": [
null,
"Kliknij aby wejść do pokoju"
],
"Show more information on this room": [
null,
"Pokaż więcej informacji o pokoju"
],
"Description:": [
null,
"Opis:"
],
"Occupants:": [
null,
"Uczestnicy:"
],
"Features:": [
null,
"Możliwości:"
],
"Requires authentication": [
null,
"Wymaga autoryzacji"
],
"Hidden": [
null,
"Ukryty"
],
"Requires an invitation": [
null,
"Wymaga zaproszenia"
],
"Moderated": [
null,
"Moderowany"
],
"Non-anonymous": [
null,
"Nieanonimowy"
],
"Open room": [
null,
"Otwarty pokój"
],
"Permanent room": [
null,
"Stały pokój"
],
"Public": [
null,
"Publiczny"
],
"Semi-anonymous": [
null,
"Półanonimowy"
],
"Temporary room": [
null,
"Pokój tymczasowy"
],
"Unmoderated": [
null,
"Niemoderowany"
],
"This user is a moderator": [
null,
"Ten człowiek jest moderatorem"
],
"This user can send messages in this room": [
null,
"Ten człowiek może rozmawiać w niejszym pokoju"
],
"This user can NOT send messages in this room": [
null,
"Ten człowiek nie może rozmawiać w niniejszym pokoju"
],
"Invite...": [
null,
"Zaproś..."
],
"Occupants": [
null,
"Uczestników"
],
"You are about to invite %1$s to the chat room \"%2$s\". ": [
null,
"Zamierzasz zaprosić %1$s do pokoju rozmów \"%2$s\". "
],
"You may optionally include a message, explaining the reason for the invitation.": [
null,
"Masz opcjonalną możliwość dołączenia wiadomości, która wyjaśni przyczynę zaproszenia."
],
"Message": [
null,
"Wiadomość:"
],
"Error: could not execute the command": [
null,
"Błąd: nie potrafię uruchomić polecenia"
],
"Change user's affiliation to admin": [
null,
""
],
"Ban user from room": [
null,
"Zablokuj dostępu do pokoju"
],
"Kick user from room": [
null,
"Wykop z pokoju"
],
"Write in 3rd person": [
null,
"Pisz w trzeciej osobie"
],
"Grant membership to a user": [
null,
""
],
"Remove user's ability to post messages": [
null,
"Zablokuj człowiekowi możliwość rozmowy"
],
"Change your nickname": [
null,
"Zmień ksywkę"
],
"Grant moderator role to user": [
null,
""
],
"Revoke user's membership": [
null,
""
],
"Set room topic": [
null,
"Ustaw temat pokoju"
],
"Allow muted user to post messages": [
null,
"Pozwól uciszonemu człowiekowi na rozmowę"
],
"Save": [
null,
"Zachowaj"
],
"Cancel": [
null,
"Anuluj"
],
"An error occurred while trying to save the form.": [
null,
"Wystąpił błąd w czasie próby zachowania formularza."
],
"This chatroom requires a password": [
null,
"Pokój rozmów wymaga podania hasła"
],
"Password: ": [
null,
"Hasło:"
],
"Submit": [
null,
"Wyślij"
],
"This room is not anonymous": [
null,
"Pokój nie jest anonimowy"
],
"This room now shows unavailable members": [
null,
"Pokój pokazuje niedostępnych rozmówców"
],
"This room does not show unavailable members": [
null,
"Ten pokój nie wyświetla niedostępnych członków"
],
"Non-privacy-related room configuration has changed": [
null,
"Ustawienia pokoju nie związane z prywatnością zostały zmienione"
],
"Room logging is now enabled": [
null,
"Zostało włączone zapisywanie rozmów w pokoju"
],
"Room logging is now disabled": [
null,
"Zostało wyłączone zapisywanie rozmów w pokoju"
],
"This room is now non-anonymous": [
null,
"Pokój stał się nieanonimowy"
],
"This room is now semi-anonymous": [
null,
"Pokój stał się półanonimowy"
],
"This room is now fully-anonymous": [
null,
"Pokój jest teraz w pełni anonimowy"
],
"A new room has been created": [
null,
"Został utworzony nowy pokój"
],
"You have been banned from this room": [
null,
"Jesteś niemile widziany w tym pokoju"
],
"You have been kicked from this room": [
null,
"Zostałeś wykopany z pokoju"
],
"You have been removed from this room because of an affiliation change": [
null,
"Zostałeś usunięty z pokoju ze względu na zmianę przynależności"
],
"You have been removed from this room because the room has changed to members-only and you're not a member": [
null,
"Zostałeś usunięty z pokoju ze względu na to, że pokój zmienił się na wymagający członkowstwa, a ty nie jesteś członkiem"
],
"You have been removed from this room because the MUC (Multi-user chat) service is being shut down.": [
null,
"Zostałeś usunięty z pokoju ze względu na to, że serwis MUC(Multi-user chat) został wyłączony."
],
"<strong>%1$s</strong> has been banned": [
null,
"<strong>%1$s</strong> został zbanowany"
],
"<strong>%1$s</strong>'s nickname has changed": [
null,
"<strong>%1$s</strong> zmienił ksywkę"
],
"<strong>%1$s</strong> has been kicked out": [
null,
"<strong>%1$s</strong> został wykopany"
],
"<strong>%1$s</strong> has been removed because of an affiliation change": [
null,
"<strong>%1$s</strong> został usunięty z powodu zmiany przynależności"
],
"<strong>%1$s</strong> has been removed for not being a member": [
null,
"<strong>%1$s</strong> został usunięty ze względu na to, że nie jest członkiem"
],
"Your nickname has been automatically changed to: <strong>%1$s</strong>": [
null,
"Twoja ksywka została automatycznie zmieniona na: <strong>%1$s</strong>"
],
"Your nickname has been changed to: <strong>%1$s</strong>": [
null,
"Twoja ksywka została zmieniona na: <strong>%1$s</strong>"
],
"The reason given is: \"": [
null,
"Podana przyczyna to: \""
],
"You are not on the member list of this room": [
null,
"Nie jesteś członkiem tego pokoju rozmów"
],
"No nickname was specified": [
null,
"Nie podałeś ksywki"
],
"You are not allowed to create new rooms": [
null,
"Nie masz uprawnień do tworzenia nowych pokojów rozmów"
],
"Your nickname doesn't conform to this room's policies": [
null,
"Twoja ksywka nie jest zgodna z regulaminem pokoju"
],
"Your nickname is already taken": [
null,
"Twoja ksywka jest już w użyciu"
],
"This room does not (yet) exist": [
null,
"Ten pokój (jeszcze) nie istnieje"
],
"This room has reached it's maximum number of occupants": [
null,
"Pokój przekroczył dozwoloną ilość rozmówców"
],
"Topic set by %1$s to: %2$s": [
null,
"Temat ustawiony przez %1$s na: %2$s"
],
"%1$s has invited you to join a chat room: %2$s": [
null,
"%1$s zaprosił(a) cię do wejścia do pokoju rozmów %2$s"
],
"%1$s has invited you to join a chat room: %2$s, and left the following reason: \"%3$s\"": [
null,
"%1$s zaprosił cię do pokoju: %2$s, podając następujący powód: \"%3$s\""
],
"Click to restore this chat": [
null,
"Kliknij aby powrócić do rozmowy"
],
"Minimized": [
null,
"Zminimalizowany"
],
"Click to remove this contact": [
null,
"Kliknij aby usunąć kontakt"
],
"Click to accept this contact request": [
null,
"Klknij aby zaakceptować życzenie nawiązania kontaktu"
],
"Click to decline this contact request": [
null,
"Kliknij aby odrzucić życzenie nawiązania kontaktu"
],
"Click to chat with this contact": [
null,
"Kliknij aby porozmawiać z kontaktem"
],
"Are you sure you want to remove this contact?": [
null,
"Czy potwierdzasz zamiar usnunięcia tego kontaktu?"
],
"Are you sure you want to decline this contact request?": [
null,
"Czy potwierdzasz odrzucenie chęci nawiązania kontaktu?"
],
"Type to filter": [
null,
"Zacznij pisać, aby odfiltrować"
],
"I am %1$s": [
null,
"Jestem %1$s"
],
"Click here to write a custom status message": [
null,
"Kliknij aby wpisać nowy status"
],
"Click to change your chat status": [
null,
"Kliknij aby zmienić status rozmowy"
],
"Custom status": [
null,
"Własny status"
],
"online": [
null,
"dostępny"
],
"busy": [
null,
"zajęty"
],
"away for long": [
null,
"dłużej nieobecny"
],
"away": [
null,
"nieobecny"
],
"Your XMPP provider's domain name:": [
null,
"Domena twojego dostawcy XMPP:"
],
"Fetch registration form": [
null,
"Pobierz formularz rejestracyjny"
],
"Tip: A list of public XMPP providers is available": [
null,
"Wskazówka: dostępna jest lista publicznych dostawców XMPP"
],
"here": [
null,
"tutaj"
],
"Register": [
null,
"Zarejestruj"
],
"Sorry, the given provider does not support in band account registration. Please try with a different provider.": [
null,
"Przepraszamy, ale podany dostawca nie obsługuje rejestracji. Spróbuj wskazać innego dostawcę."
],
"Requesting a registration form from the XMPP server": [
null,
"Pobieranie formularza rejestracyjnego z serwera XMPP"
],
"Something went wrong while establishing a connection with \"%1$s\". Are you sure it exists?": [
null,
"Coś nie zadziałało przy próbie połączenia z \"%1$s\". Jesteś pewien że istnieje?"
],
"Now logging you in": [
null,
"Teraz jesteś logowany"
],
"Registered successfully": [
null,
"Szczęśliwie zarejestrowany"
],
"Return": [
null,
"Powrót"
],
"The provider rejected your registration attempt. ": [
null,
"Dostawca odrzucił twoją próbę rejestracji. "
],
"XMPP Username:": [
null,
"Nazwa użytkownika XMPP:"
],
"Password:": [
null,
"Hasło:"
],
"Log In": [
null,
"Zaloguj się"
],
"Sign in": [
null,
"Zarejestruj się"
],
"Toggle chat": [
null,
"Przełącz rozmowę"
]
}
}
}

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -1,532 +0,0 @@
(function (root, factory) {
var translations = {
"domain": "converse",
"locale_data":
{
"converse": {
"": {
"Project-Id-Version": "Converse.js 0.4",
"Report-Msgid-Bugs-To": "",
"POT-Creation-Date": "2013-09-15 22:06+0200",
"PO-Revision-Date": "2013-09-29 17:24+0300",
"Last-Translator": "Boris Kocherov <bk@raskon.org>",
"Language-Team": "<bk@raskon.ru>",
"Language": "ru",
"MIME-Version": "1.0",
"Content-Type": "text/plain; charset=UTF-8",
"Content-Transfer-Encoding": "8bit",
"X-Generator": "Poedit 1.5.5"
},
"unencrypted": [
null,
"не зашифровано"
],
"unverified": [
null,
"непроверено"
],
"verified": [
null,
"проверено"
],
"finished": [
null,
"закончено"
],
"Disconnected": [
null,
"Отключено"
],
"Error": [
null,
"Ошибка"
],
"Connecting": [
null,
"Соединение"
],
"Connection Failed": [
null,
"Не удалось соединится"
],
"Authenticating": [
null,
"Авторизация"
],
"Authentication Failed": [
null,
"Не удалось авторизоваться"
],
"Disconnecting": [
null,
"Отключаемся"
],
"Private key generated.": [
null,
"Приватный ключ сгенерирован."
],
"Personal message": [
null,
"Введите сообщение"
],
"What's this?": [
null,
"Что это?"
],
"me": [
null,
"Я"
],
"Show this menu": [
null,
"Показать это меню"
],
"Remove messages": [
null,
"Удалить сообщения"
],
"Your message could not be sent": [
null,
"Ваше сообщение не послано"
],
"Your messages are not encrypted anymore": [
null,
"Ваши сообщения больше не шифруются"
],
"Your messages are now encrypted but your buddy's identity has not been verified.": [
null,
"Ваши сообщения шифруются, но ваша учётная запись не проверена вашим собеседником."
],
"Your buddy's identify has been verified.": [
null,
"Ваша учётная запись проверена вашим собеседником."
],
"Your messages are not encrypted. Click here to enable OTR encryption.": [
null,
"Ваши сообщения не шифруются. Нажмите здесь чтобы настроить шифрование."
],
"Your messages are encrypted, but your buddy has not been verified.": [
null,
"Ваши сообщения шифруются, но ваш контакт не проверен."
],
"Your messages are encrypted and your buddy verified.": [
null,
"Ваши сообщения шифруются и ваш контакт проверен"
],
"Contacts": [
null,
"Контакты"
],
"Online": [
null,
"В сети"
],
"Busy": [
null,
"Занят"
],
"Away": [
null,
"Отошёл"
],
"Offline": [
null,
"Не в сети"
],
"Click to add new chat contacts": [
null,
"Добавить новую конференцию"
],
"Add a contact": [
null,
"Добавть контакт"
],
"Contact username": [
null,
"Имя пользователя"
],
"Add": [
null,
"Добавить"
],
"Contact name": [
null,
"Имя контакта"
],
"Search": [
null,
"Поиск"
],
"No users found": [
null,
"Пользователи не найдены"
],
"Click to add as a chat contact": [
null,
"Добавить контакт"
],
"Click to open this room": [
null,
"Зайти в конференцию"
],
"Show more information on this room": [
null,
"Показать больше информации об этой конференции"
],
"Description:": [
null,
"Описание:"
],
"Occupants:": [
null,
"Участники:"
],
"Features:": [
null,
"Свойства:"
],
"Requires authentication": [
null,
"Требуется авторизация"
],
"Hidden": [
null,
"Скрыто"
],
"Requires an invitation": [
null,
"Требуется приглашение"
],
"Moderated": [
null,
"Модерируемая"
],
"Non-anonymous": [
null,
"Не анонимная"
],
"Open room": [
null,
"Открыть конференцию"
],
"Permanent room": [
null,
"Перманентная конференция"
],
"Public": [
null,
"Публичный"
],
"Semi-anonymous": [
null,
"Частично анонимная"
],
"Temporary room": [
null,
"Временная конференция"
],
"Unmoderated": [
null,
"Немодерируемая"
],
"Rooms": [
null,
"Конфер."
],
"Room name": [
null,
"Имя конференции"
],
"Nickname": [
null,
"Псевдоним"
],
"Server": [
null,
"Сервер"
],
"Join": [
null,
"Подключиться"
],
"Show rooms": [
null,
"Обновить"
],
"No rooms on %1$s": [
null,
"Нет доступных конференций %1$s"
],
"Rooms on %1$s": [
null,
"Конференции %1$s:"
],
"Set chatroom topic": [
null,
"Установить тему"
],
"Kick user from chatroom": [
null,
"Отключить пользователя от кнофер."
],
"Ban user from chatroom": [
null,
"Забанить пользователя в этой конф."
],
"Message": [
null,
"Сообщение"
],
"Save": [
null,
"Сохранить"
],
"Cancel": [
null,
"Отменить"
],
"An error occurred while trying to save the form.": [
null,
"При сохранение формы произошла ошибка."
],
"This chatroom requires a password": [
null,
"Для доступа в конфер. необходим пароль."
],
"Password: ": [
null,
"Пароль: "
],
"Submit": [
null,
"Отправить"
],
"This room is not anonymous": [
null,
"Эта комната не анонимная"
],
"This room now shows unavailable members": [
null,
"Эта комната показывает доступных собеседников"
],
"This room does not show unavailable members": [
null,
"Эта комната не показывает недоступных собеседников"
],
"This room is now non-anonymous": [
null,
"Эта комната не анонимная"
],
"This room is now semi-anonymous": [
null,
"Эта комната частично анонимная"
],
"This room is now fully-anonymous": [
null,
"Эта комната стала полностью анонимной"
],
"A new room has been created": [
null,
"Новая комната была создана"
],
"Your nickname has been changed": [
null,
"Ваш псевдоним уже используется другим пользователем"
],
"<strong>%1$s</strong> has been banned": [
null,
"<strong>%1$s</strong> забанен"
],
"<strong>%1$s</strong> has been kicked out": [
null,
"<strong>%1$s</strong> выдворен"
],
"<strong>%1$s</strong> has been removed because of an affiliation change": [
null,
"<strong>%1$s</strong> has been removed because of an affiliation change"
],
"<strong>%1$s</strong> has been removed for not being a member": [
null,
"<strong>%1$s</strong> удалён потому что не участник"
],
"You have been banned from this room": [
null,
"Вам запрещено подключатся к этой конференции"
],
"You have been kicked from this room": [
null,
"Вам запрещено подключатся к этой конференции"
],
"You have been removed from this room because of an affiliation change": [
null,
"<strong>%1$s</strong> удалён потому что изменились права"
],
"You have been removed from this room because the room has changed to members-only and you're not a member": [
null,
"Вы отключены от этой конференции потому что режим изменился: только-участники"
],
"You have been removed from this room because the MUC (Multi-user chat) service is being shut down.": [
null,
"Вы отключены от этой конференции потому что сервись конференций выключен."
],
"You are not on the member list of this room": [
null,
"Вас нет в списке этой конференции"
],
"No nickname was specified": [
null,
"Вы не указали псевдоним"
],
"You are not allowed to create new rooms": [
null,
"Вы не имеете права создавать конфер."
],
"Your nickname doesn't conform to this room's policies": [
null,
"Псевдоним не согласуется с правилами конфер."
],
"Your nickname is already taken": [
null,
"Ваш ник уже используется другим пользователем"
],
"This room does not (yet) exist": [
null,
"Эта комната не существует"
],
"This room has reached it's maximum number of occupants": [
null,
"Конференция достигла максимального количества участников"
],
"Topic set by %1$s to: %2$s": [
null,
"Тема %2$s устатновлена %1$s"
],
"This user is a moderator": [
null,
"Модератор"
],
"This user can send messages in this room": [
null,
"Собеседник"
],
"This user can NOT send messages in this room": [
null,
"Пользователь не может посылать сообщения в эту комнату"
],
"Click to chat with this contact": [
null,
"Начать общение"
],
"Click to remove this contact": [
null,
"Удалить контакт"
],
"This contact is busy": [
null,
"Занят"
],
"This contact is online": [
null,
"В сети"
],
"This contact is offline": [
null,
"Не в сети"
],
"This contact is unavailable": [
null,
"Не доступен"
],
"This contact is away for an extended period": [
null,
"На долго отошёл"
],
"This contact is away": [
null,
"Отошёл"
],
"Contact requests": [
null,
"Запросы на авторизацию"
],
"My contacts": [
null,
"Контакты"
],
"Pending contacts": [
null,
"Собеседники ожидающие авторизации"
],
"Custom status": [
null,
"Произвольный статус"
],
"Click to change your chat status": [
null,
"Изменить ваш статус"
],
"Click here to write a custom status message": [
null,
"Редактировать произвольный статус"
],
"online": [
null,
"на связи"
],
"busy": [
null,
"занят"
],
"away for long": [
null,
"отошёл на долго"
],
"away": [
null,
"отошёл"
],
"I am %1$s": [
null,
"%1$s"
],
"Sign in": [
null,
"Подписать"
],
"XMPP/Jabber Username:": [
null,
"JID:"
],
"Password:": [
null,
"Пароль:"
],
"Log In": [
null,
"Войти"
],
"Online Contacts": [
null,
"Cписок собеседников"
]
}
}
};
if (typeof define === 'function' && define.amd) {
define("ru", ['jed'], function () {
return factory(new Jed(translations));
});
} else {
if (!window.locales) {
window.locales = {};
}
window.locales.ru = factory(new Jed(translations));
}
}(this, function (ru) {
return ru;
}));

View File

@ -1,168 +1,671 @@
{
"converse": {
"":{
"project-id-version": "Converse.js 0.4",
"report-msgid-bugs-to":"",
"pot-creation-date":"2014-07-06 17:58+0200",
"po-revision-date":"2014-07-06 18:05+0200",
"last-translator":"Huxisuz Hu <huxisuz@gmail.com>",
"language-team":"Language zh",
"language":"zh",
"mime-version":"1.0",
"content-type":"text/plain; charset=UTF-8",
"content-transfer-encoding":"8bit",
"domain":"converse",
"lang":"zh",
"plural_forms":"nplurals=2; plural=(n != 1);"
},
"unencrypted": [null,"未加密"],
"unverified": [null,"未验证"],
"verified": [null,"已验证"],
"finished": [null,"结束了"],
"This contact is busy": [null,"对方忙碌中"],
"This contact is online": [null,"对方在线中"],
"This contact is offline": [null,"对方已下线"],
"This contact is unavailable": [null,"对方免打扰"],
"This contact is away for an extended period": [null,"对方暂时离开"],
"This contact is away": [null,"对方离开"],
"Disconnected": [null,"连接已断开"],
"Error": [null,"错误"],
"Connecting": [null,"连接中"],
"Connection Failed": [null,"连接失败"],
"Authenticating": [null,"验证中"],
"Authentication Failed": [null,"验证失败"],
"Disconnecting": [null,"断开链接中"],
"Online Contacts": [null,"在线好友"],
"Re-establishing encrypted session": [null,"重新建立加密会话"],
"Generating private key.": [null,"正在生成私钥"],
"Your browser might become unresponsive.": [null,"您的浏览器可能会暂时无响应"],
"Authentication request from %1$s\n\nYour buddy is attempting to verify your identity, by asking you the question below.\n\n%2$s": [null,"来自%1$s的验证请求 \n\n对方正在试图验证您的信息请回答如下问题\n\n%2$s"],
"Could not verify this user's identify.": [null,"无法验证对方信息。"],
"Exchanging private key with buddy.": [null,"正在与对方交换私钥"],
"Personal message": [null,"私信"],
"me": [null,"我"],
"Show this menu": [null,"显示此项菜单"],
"Write in the third person": [null,"以第三者身份写"],
"Remove messages": [null,"移除消息"],
"Are you sure you want to clear the messages from this chat box?": [null,"你确定清除此次的聊天记录吗?"],
"Your message could not be sent": [null,"您的消息无法送出"],
"We received an unencrypted message": [null,"我们收到了一条未加密的信息"],
"We received an unreadable encrypted message": [null,"我们收到一条无法读取的信息"],
"This user has requested an encrypted session.": [null,"此用户请求了一个加密会话。"],
"Here are the fingerprints, please confirm them with %1$s, outside of this chat.\n\nFingerprint for you, %2$s: %3$s\n\nFingerprint for %1$s: %4$s\n\nIf you have confirmed that the fingerprints match, click OK, otherwise click Cancel.": [null,"这里是指纹。请与 %1$s 确认。\n\n您的 %2$s 指纹: %3$s\n\n%1$s 的指纹: %4$s\n\n如果确认符合请点击OK否则点击取消"],
"What is your security question?": [null,"您的安全问题是?"],
"What is the answer to the security question?": [null,"此安全问题的答案是?"],
"Invalid authentication scheme provided": [null,"非法的认证方式"],
"Your messages are not encrypted anymore": [null,"您的消息将不再被加密"],
"Your messages are now encrypted but your buddy's identity has not been verified.": [null,"您的消息现已加密,但是对方身份尚未验证"],
"Your buddy's identify has been verified.": [null,"对方的身份已通过验证。"],
"Your buddy has ended encryption on their end, you should do the same.": [null,"对方已结束加密,您也需要做同样的操作。"],
"Your messages are not encrypted. Click here to enable OTR encryption.": [null,"您的消息未加密。点击这里来启用OTR加密"],
"Your messages are encrypted, but your buddy has not been verified.": [null,"您的消息已加密,但对方未通过验证"],
"Your messages are encrypted and your buddy verified.": [null,"您的消息已加密,对方已验证。"],
"Your buddy has closed their end of the private session, you should do the same": [null,"对方已关闭私有会话,您也应该关闭"],
"End encrypted conversation": [null,"结束加密的会话"],
"Refresh encrypted conversation": [null,"刷新加密的会话"],
"Start encrypted conversation": [null,"开始加密的会话"],
"Verify with fingerprints": [null,"验证指纹"],
"Verify with SMP": [null,"验证SMP"],
"What's this?": [null,"这是什么?"],
"Online": [null,"在线"],
"Busy": [null,"忙碌中"],
"Away": [null,"离开"],
"Offline": [null,"离线"],
"Contacts": [null,"联系人"],
"Contact name": [null,"联系人名称"],
"Search": [null,"搜索"],
"Contact username": [null,"联系人姓名"],
"Add": [null,"添加"],
"Click to add new chat contacts": [null,"点击添加新联系人"],
"Add a contact": [null,"添加联系人"],
"No users found": [null,"未找到用户"],
"Click to add as a chat contact": [null,"点击添加为好友"],
"Room name": [null,"聊天室名称"],
"Nickname": [null,"昵称"],
"Server": [null,"服务器"],
"Join": [null,"加入"],
"Show rooms": [null,"显示所有聊天室"],
"Rooms": [null,"聊天室"],
"No rooms on %1$s": [null,"%1$s 上没有聊天室"],
"Rooms on %1$s": [null,"%1$s 上的聊天室"],
"Click to open this room": [null,"打开聊天室"],
"Show more information on this room": [null,"显示次聊天室的更多信息"],
"Description:": [null,"描述: "],
"Occupants:": [null,"成员:"],
"Features:": [null,"特性:"],
"Requires authentication": [null,"需要验证"],
"Hidden": [null,"隐藏的"],
"Requires an invitation": [null,"需要被邀请"],
"Moderated": [null,"发言受限"],
"Non-anonymous": [null,"非匿名"],
"Open room": [null,"打开聊天室"],
"Permanent room": [null,"永久聊天室"],
"Public": [null,"公开的"],
"Semi-anonymous": [null,"半匿名"],
"Temporary room": [null,"临时聊天室"],
"Unmoderated": [null,"无发言限制"],
"Set chatroom topic": [null,"设置房间主题"],
"Kick user from chatroom": [null,"把用户踢出房间"],
"Ban user from chatroom": [null,"阻止此用户进入房间"],
"Message": [null,"信息"],
"Save": [null,"保存"],
"Cancel": [null,"取消"],
"An error occurred while trying to save the form.": [null,"保存表单是出错。"],
"This chatroom requires a password": [null,"此聊天室需要密码"],
"Password: ": [null,"密码:"],
"Submit": [null,"发送"],
"This room is not anonymous": [null,"此为非匿名聊天室"],
"This room now shows unavailable members": [null,"此聊天室显示不可用用户"],
"This room does not show unavailable members": [null,"此聊天室不显示不可用用户"],
"Non-privacy-related room configuration has changed": [null,"此聊天室设置(非私密性)已改变"],
"Room logging is now enabled": [null,"聊天室聊天记录已启用"],
"Room logging is now disabled": [null,"聊天室聊天记录已禁用"],
"This room is now non-anonymous": [null,"此聊天室非匿名"],
"This room is now semi-anonymous": [null,"此聊天室半匿名"],
"This room is now fully-anonymous": [null,"此聊天室完全匿名"],
"A new room has been created": [null,"新聊天室已创建"],
"Your nickname has been changed": [null,"您的昵称被更改了"],
"<strong>%1$s</strong> has been banned": [null,"<strong>%1$s</strong> 已被禁止"],
"<strong>%1$s</strong> has been kicked out": [null,"<strong>%1$s</strong> 已被踢出"],
"<strong>%1$s</strong> has been removed because of an affiliation change": [null,"由于关系解除、<strong>%1$s</strong> 已被移除"],
"<strong>%1$s</strong> has been removed for not being a member": [null,"由于不是成员、<strong>%1$s</strong> 已被移除"],
"You have been banned from this room": [null,"您已被此聊天室禁止入内"],
"You have been kicked from this room": [null,"您已被踢出次房间"],
"You have been removed from this room because of an affiliation change": [null,"由于关系变化,您已被移除此房间"],
"You have been removed from this room because the room has changed to members-only and you're not a member": [null,"您已被移除此房间因为此房间更改为只允许成员加入,而您非成员"],
"You have been removed from this room because the MUC (Multi-user chat) service is being shut down.": [null,"由于服务不可用,您已被移除此房间。"],
"You are not on the member list of this room": [null,"您并非此房间成员"],
"No nickname was specified": [null,"未指定昵称"],
"You are not allowed to create new rooms": [null,"您可此创建新房间了"],
"Your nickname doesn't conform to this room's policies": [null,"您的昵称不符合此房间标准"],
"Your nickname is already taken": [null,"您的昵称已被占用"],
"This room does not (yet) exist": [null,"此房间不存在"],
"This room has reached it's maximum number of occupants": [null,"此房间人数已达上线"],
"Topic set by %1$s to: %2$s": [null,"%1$s 设置话题为: %2$s"],
"This user is a moderator": [null,"此用户是主持人"],
"This user can send messages in this room": [null,"此用户在这房间里可发消息"],
"This user can NOT send messages in this room": [null,"此用户不可在此房间发消息"],
"Minimized": [null,"最小化的"],
"Click to remove this contact": [null,"点击移除联系人"],
"Accept": [null,"接受"],
"Click to chat with this contact": [null,"点击与对方交谈"],
"My contacts": [null,"我的好友列表"],
"Contact requests": [null,"来自好友的请求"],
"Pending contacts": [null,"保留中的联系人"],
"Custom status": [null,"DIY状态"],
"online": [null,"在线"],
"busy": [null,"忙碌"],
"away for long": [null,"长时间离开"],
"away": [null,"离开"],
"I am %1$s": [null,"我现在%1$s"],
"Click here to write a custom status message": [null,"点击这里,填写状态信息"],
"Click to change your chat status": [null,"点击这里改变聊天状态"],
"XMPP/Jabber Username:": [null,"XMPP/Jabber用户名:"],
"Password:": [null,"密码:"],
"Log In": [null,"登录"],
"Sign in": [null,"登录"],
"Toggle chat": [null,"折叠聊天窗口"]
}
"domain": "converse",
"locale_data": {
"converse": {
"": {
"domain": "converse",
"lang": "zh"
},
" e.g. conversejs.org": [
null,
""
],
"unencrypted": [
null,
"未加密"
],
"unverified": [
null,
"未验证"
],
"verified": [
null,
"已验证"
],
"finished": [
null,
"结束了"
],
"This contact is busy": [
null,
"对方忙碌中"
],
"This contact is online": [
null,
"对方在线中"
],
"This contact is offline": [
null,
"对方已下线"
],
"This contact is unavailable": [
null,
"对方免打扰"
],
"This contact is away for an extended period": [
null,
"对方暂时离开"
],
"This contact is away": [
null,
"对方离开"
],
"My contacts": [
null,
"我的好友列表"
],
"Pending contacts": [
null,
"保留中的联系人"
],
"Contact requests": [
null,
"来自好友的请求"
],
"Ungrouped": [
null,
""
],
"Contacts": [
null,
"联系人"
],
"Groups": [
null,
""
],
"Error": [
null,
"错误"
],
"Connecting": [
null,
"连接中"
],
"Authenticating": [
null,
"验证中"
],
"Authentication Failed": [
null,
"验证失败"
],
"Re-establishing encrypted session": [
null,
"重新建立加密会话"
],
"Generating private key.": [
null,
"正在生成私钥"
],
"Your browser might become unresponsive.": [
null,
"您的浏览器可能会暂时无响应"
],
"Could not verify this user's identify.": [
null,
"无法验证对方信息。"
],
"Personal message": [
null,
"私信"
],
"me": [
null,
"我"
],
"is typing": [
null,
""
],
"has stopped typing": [
null,
""
],
"Show this menu": [
null,
"显示此项菜单"
],
"Write in the third person": [
null,
"以第三者身份写"
],
"Remove messages": [
null,
"移除消息"
],
"Are you sure you want to clear the messages from this chat box?": [
null,
"你确定清除此次的聊天记录吗?"
],
"Your message could not be sent": [
null,
"您的消息无法送出"
],
"We received an unencrypted message": [
null,
"我们收到了一条未加密的信息"
],
"We received an unreadable encrypted message": [
null,
"我们收到一条无法读取的信息"
],
"Here are the fingerprints, please confirm them with %1$s, outside of this chat.\n\nFingerprint for you, %2$s: %3$s\n\nFingerprint for %1$s: %4$s\n\nIf you have confirmed that the fingerprints match, click OK, otherwise click Cancel.": [
null,
"这里是指纹。请与 %1$s 确认。\n\n您的 %2$s 指纹: %3$s\n\n%1$s 的指纹: %4$s\n\n如果确认符合请点击OK否则点击取消"
],
"What is your security question?": [
null,
"您的安全问题是?"
],
"What is the answer to the security question?": [
null,
"此安全问题的答案是?"
],
"Invalid authentication scheme provided": [
null,
"非法的认证方式"
],
"Your messages are not encrypted anymore": [
null,
"您的消息将不再被加密"
],
"Your messages are not encrypted. Click here to enable OTR encryption.": [
null,
"您的消息未加密。点击这里来启用OTR加密"
],
"End encrypted conversation": [
null,
"结束加密的会话"
],
"Hide the list of participants": [
null,
""
],
"Refresh encrypted conversation": [
null,
"刷新加密的会话"
],
"Start a call": [
null,
""
],
"Start encrypted conversation": [
null,
"开始加密的会话"
],
"Verify with fingerprints": [
null,
"验证指纹"
],
"Verify with SMP": [
null,
"验证SMP"
],
"What's this?": [
null,
"这是什么?"
],
"Online": [
null,
"在线"
],
"Busy": [
null,
"忙碌中"
],
"Away": [
null,
"离开"
],
"Offline": [
null,
"离线"
],
"Contact name": [
null,
"联系人名称"
],
"Search": [
null,
"搜索"
],
"Contact username": [
null,
"联系人姓名"
],
"Add": [
null,
"添加"
],
"Click to add new chat contacts": [
null,
"点击添加新联系人"
],
"Add a contact": [
null,
"添加联系人"
],
"No users found": [
null,
"未找到用户"
],
"Click to add as a chat contact": [
null,
"点击添加为好友"
],
"Room name": [
null,
"聊天室名称"
],
"Nickname": [
null,
"昵称"
],
"Server": [
null,
"服务器"
],
"Show rooms": [
null,
"显示所有聊天室"
],
"Rooms": [
null,
"聊天室"
],
"No rooms on %1$s": [
null,
"%1$s 上没有聊天室"
],
"Rooms on %1$s": [
null,
"%1$s 上的聊天室"
],
"Click to open this room": [
null,
"打开聊天室"
],
"Show more information on this room": [
null,
"显示次聊天室的更多信息"
],
"Description:": [
null,
"描述: "
],
"Occupants:": [
null,
"成员:"
],
"Features:": [
null,
"特性:"
],
"Requires authentication": [
null,
"需要验证"
],
"Hidden": [
null,
"隐藏的"
],
"Requires an invitation": [
null,
"需要被邀请"
],
"Moderated": [
null,
"发言受限"
],
"Non-anonymous": [
null,
"非匿名"
],
"Open room": [
null,
"打开聊天室"
],
"Permanent room": [
null,
"永久聊天室"
],
"Public": [
null,
"公开的"
],
"Semi-anonymous": [
null,
"半匿名"
],
"Temporary room": [
null,
"临时聊天室"
],
"Unmoderated": [
null,
"无发言限制"
],
"This user is a moderator": [
null,
"此用户是主持人"
],
"This user can send messages in this room": [
null,
"此用户在这房间里可发消息"
],
"This user can NOT send messages in this room": [
null,
"此用户不可在此房间发消息"
],
"Invite...": [
null,
""
],
"You are about to invite %1$s to the chat room \"%2$s\". ": [
null,
""
],
"You may optionally include a message, explaining the reason for the invitation.": [
null,
""
],
"Message": [
null,
"信息"
],
"Error: could not execute the command": [
null,
""
],
"Change user's affiliation to admin": [
null,
""
],
"Change user role to participant": [
null,
""
],
"Grant membership to a user": [
null,
""
],
"Remove user's ability to post messages": [
null,
""
],
"Change your nickname": [
null,
""
],
"Grant moderator role to user": [
null,
""
],
"Revoke user's membership": [
null,
""
],
"Allow muted user to post messages": [
null,
""
],
"Save": [
null,
"保存"
],
"Cancel": [
null,
"取消"
],
"An error occurred while trying to save the form.": [
null,
"保存表单是出错。"
],
"This chatroom requires a password": [
null,
"此聊天室需要密码"
],
"Password: ": [
null,
"密码:"
],
"Submit": [
null,
"发送"
],
"This room is not anonymous": [
null,
"此为非匿名聊天室"
],
"This room now shows unavailable members": [
null,
"此聊天室显示不可用用户"
],
"This room does not show unavailable members": [
null,
"此聊天室不显示不可用用户"
],
"Non-privacy-related room configuration has changed": [
null,
"此聊天室设置(非私密性)已改变"
],
"Room logging is now enabled": [
null,
"聊天室聊天记录已启用"
],
"Room logging is now disabled": [
null,
"聊天室聊天记录已禁用"
],
"This room is now non-anonymous": [
null,
"此聊天室非匿名"
],
"This room is now semi-anonymous": [
null,
"此聊天室半匿名"
],
"This room is now fully-anonymous": [
null,
"此聊天室完全匿名"
],
"A new room has been created": [
null,
"新聊天室已创建"
],
"You have been banned from this room": [
null,
"您已被此聊天室禁止入内"
],
"You have been kicked from this room": [
null,
"您已被踢出次房间"
],
"You have been removed from this room because of an affiliation change": [
null,
"由于关系变化,您已被移除此房间"
],
"You have been removed from this room because the room has changed to members-only and you're not a member": [
null,
"您已被移除此房间因为此房间更改为只允许成员加入,而您非成员"
],
"You have been removed from this room because the MUC (Multi-user chat) service is being shut down.": [
null,
"由于服务不可用,您已被移除此房间。"
],
"<strong>%1$s</strong> has been banned": [
null,
"<strong>%1$s</strong> 已被禁止"
],
"<strong>%1$s</strong> has been kicked out": [
null,
"<strong>%1$s</strong> 已被踢出"
],
"<strong>%1$s</strong> has been removed because of an affiliation change": [
null,
"由于关系解除、<strong>%1$s</strong> 已被移除"
],
"<strong>%1$s</strong> has been removed for not being a member": [
null,
"由于不是成员、<strong>%1$s</strong> 已被移除"
],
"The reason given is: \"": [
null,
""
],
"You are not on the member list of this room": [
null,
"您并非此房间成员"
],
"No nickname was specified": [
null,
"未指定昵称"
],
"You are not allowed to create new rooms": [
null,
"您可此创建新房间了"
],
"Your nickname doesn't conform to this room's policies": [
null,
"您的昵称不符合此房间标准"
],
"Your nickname is already taken": [
null,
"您的昵称已被占用"
],
"This room does not (yet) exist": [
null,
"此房间不存在"
],
"This room has reached it's maximum number of occupants": [
null,
"此房间人数已达上线"
],
"Topic set by %1$s to: %2$s": [
null,
"%1$s 设置话题为: %2$s"
],
"%1$s has invited you to join a chat room: %2$s": [
null,
""
],
"%1$s has invited you to join a chat room: %2$s, and left the following reason: \"%3$s\"": [
null,
""
],
"Minimized": [
null,
"最小化的"
],
"Click to remove this contact": [
null,
"点击移除联系人"
],
"Click to chat with this contact": [
null,
"点击与对方交谈"
],
"Type to filter": [
null,
""
],
"I am %1$s": [
null,
"我现在%1$s"
],
"Click here to write a custom status message": [
null,
"点击这里,填写状态信息"
],
"Click to change your chat status": [
null,
"点击这里改变聊天状态"
],
"Custom status": [
null,
"DIY状态"
],
"online": [
null,
"在线"
],
"busy": [
null,
"忙碌"
],
"away for long": [
null,
"长时间离开"
],
"away": [
null,
"离开"
],
"Your XMPP provider's domain name:": [
null,
""
],
"Fetch registration form": [
null,
""
],
"Tip: A list of public XMPP providers is available": [
null,
""
],
"here": [
null,
""
],
"Register": [
null,
""
],
"Sorry, the given provider does not support in band account registration. Please try with a different provider.": [
null,
""
],
"Requesting a registration form from the XMPP server": [
null,
""
],
"Something went wrong while establishing a connection with \"%1$s\". Are you sure it exists?": [
null,
""
],
"Now logging you in": [
null,
""
],
"Registered successfully": [
null,
""
],
"Return": [
null,
""
],
"The provider rejected your registration attempt. ": [
null,
""
],
"Password:": [
null,
"密码:"
],
"Log In": [
null,
"登录"
],
"Sign in": [
null,
"登录"
],
"Toggle chat": [
null,
"折叠聊天窗口"
]
}
}
}

File diff suppressed because it is too large Load Diff

View File

@ -1,184 +0,0 @@
(function (root, factory) {
var translations = {
"domain": "converse",
"locale_data": {
"converse": {
"": {
"Project-Id-Version": "Converse.js 0.8",
"Report-Msgid-Bugs-To": "",
"POT-Creation-Date": "2014-01-07 11:12+0900",
"PO-Revision-Date": "2014-01-07 11:32+0900",
"Last-Translator": "Huxisuz Hu <huxisuz@gmail.com>",
"Language-Team": "Language zh",
"Language": "zh",
"MIME-Version": "1.0",
"Content-Type": "text/plain; charset=UTF-8",
"Content-Transfer-Encoding": "8bit",
"Plural-Forms": "nplurals=1; plural=0;"
},
"unencrypted": [null,"未加密"],
"unverified": [null,"未验证"],
"verified": [null,"已验证"],
"finished": [null,"结束了"],
"This contact is busy": [null,"对方忙碌中"],
"This contact is online": [null,"对方在线中"],
"This contact is offline": [null,"对方已下线"],
"This contact is unavailable": [null,"对方免打扰"],
"This contact is away for an extended period": [null,"对方暂时离开"],
"This contact is away": [null,"对方离开"],
"Disconnected": [null,"连接已断开"],
"Error": [null,"错误"],
"Connecting": [null,"连接中"],
"Connection Failed": [null,"连接失败"],
"Authenticating": [null,"验证中"],
"Authentication Failed": [null,"验证失败"],
"Disconnecting": [null,"断开链接中"],
"Online Contacts": [null,"在线好友"],
"Re-establishing encrypted session": [null,"重新建立加密会话"],
"Generating private key.": [null,"正在生成私钥"],
"Your browser might become unresponsive.": [null,"您的浏览器可能会暂时无响应"],
"Authentication request from %1$s\n\nYour buddy is attempting to verify your identity, by asking you the question below.\n\n%2$s": [null,"来自%1$s的验证请求 \n\n对方正在试图验证您的信息请回答如下问题\n\n%2$s"],
"Could not verify this user's identify.": [null,"无法验证对方信息。"],
"Exchanging private key with buddy.": [null,"正在与对方交换私钥"],
"Personal message": [null,"私信"],
"me": [null,"我"],
"Show this menu": [null,"显示此项菜单"],
"Write in the third person": [null,"以第三者身份写"],
"Remove messages": [null,"移除消息"],
"Are you sure you want to clear the messages from this chat box?": [null,"你确定清除此次的聊天记录吗?"],
"Your message could not be sent": [null,"您的消息无法送出"],
"We received an unencrypted message": [null,"我们收到了一条未加密的信息"],
"We received an unreadable encrypted message": [null,"我们收到一条无法读取的信息"],
"This user has requested an encrypted session.": [null,"此用户请求了一个加密会话。"],
"Here are the fingerprints, please confirm them with %1$s, outside of this chat.\n\nFingerprint for you, %2$s: %3$s\n\nFingerprint for %1$s: %4$s\n\nIf you have confirmed that the fingerprints match, click OK, otherwise click Cancel.": [null,"这里是指纹。请与 %1$s 确认。\n\n您的 %2$s 指纹: %3$s\n\n%1$s 的指纹: %4$s\n\n如果确认符合请点击OK否则点击取消"],
"What is your security question?": [null,"您的安全问题是?"],
"What is the answer to the security question?": [null,"此安全问题的答案是?"],
"Invalid authentication scheme provided": [null,"非法的认证方式"],
"Your messages are not encrypted anymore": [null,"您的消息将不再被加密"],
"Your messages are now encrypted but your buddy's identity has not been verified.": [null,"您的消息现已加密,但是对方身份尚未验证"],
"Your buddy's identify has been verified.": [null,"对方的身份已通过验证。"],
"Your buddy has ended encryption on their end, you should do the same.": [null,"对方已结束加密,您也需要做同样的操作。"],
"Your messages are not encrypted. Click here to enable OTR encryption.": [null,"您的消息未加密。点击这里来启用OTR加密"],
"Your messages are encrypted, but your buddy has not been verified.": [null,"您的消息已加密,但对方未通过验证"],
"Your messages are encrypted and your buddy verified.": [null,"您的消息已加密,对方已验证。"],
"Your buddy has closed their end of the private session, you should do the same": [null,"对方已关闭私有会话,您也应该关闭"],
"End encrypted conversation": [null,"结束加密的会话"],
"Refresh encrypted conversation": [null,"刷新加密的会话"],
"Start encrypted conversation": [null,"开始加密的会话"],
"Verify with fingerprints": [null,"验证指纹"],
"Verify with SMP": [null,"验证SMP"],
"What's this?": [null,"这是什么?"],
"Online": [null,"在线"],
"Busy": [null,"忙碌中"],
"Away": [null,"离开"],
"Offline": [null,"离线"],
"Contacts": [null,"联系人"],
"Contact name": [null,"联系人名称"],
"Search": [null,"搜索"],
"Contact username": [null,"联系人姓名"],
"Add": [null,"添加"],
"Click to add new chat contacts": [null,"点击添加新联系人"],
"Add a contact": [null,"添加联系人"],
"No users found": [null,"未找到用户"],
"Click to add as a chat contact": [null,"点击添加为好友"],
"Room name": [null,"聊天室名称"],
"Nickname": [null,"昵称"],
"Server": [null,"服务器"],
"Join": [null,"加入"],
"Show rooms": [null,"显示所有聊天室"],
"Rooms": [null,"聊天室"],
"No rooms on %1$s": [null,"%1$s 上没有聊天室"],
"Rooms on %1$s": [null,"%1$s 上的聊天室"],
"Click to open this room": [null,"打开聊天室"],
"Show more information on this room": [null,"显示次聊天室的更多信息"],
"Description:": [null,"描述: "],
"Occupants:": [null,"成员:"],
"Features:": [null,"特性:"],
"Requires authentication": [null,"需要验证"],
"Hidden": [null,"隐藏的"],
"Requires an invitation": [null,"需要被邀请"],
"Moderated": [null,"发言受限"],
"Non-anonymous": [null,"非匿名"],
"Open room": [null,"打开聊天室"],
"Permanent room": [null,"永久聊天室"],
"Public": [null,"公开的"],
"Semi-anonymous": [null,"半匿名"],
"Temporary room": [null,"临时聊天室"],
"Unmoderated": [null,"无发言限制"],
"Set chatroom topic": [null,"设置房间主题"],
"Kick user from chatroom": [null,"把用户踢出房间"],
"Ban user from chatroom": [null,"阻止此用户进入房间"],
"Message": [null,"信息"],
"Save": [null,"保存"],
"Cancel": [null,"取消"],
"An error occurred while trying to save the form.": [null,"保存表单是出错。"],
"This chatroom requires a password": [null,"此聊天室需要密码"],
"Password: ": [null,"密码:"],
"Submit": [null,"发送"],
"This room is not anonymous": [null,"此为非匿名聊天室"],
"This room now shows unavailable members": [null,"此聊天室显示不可用用户"],
"This room does not show unavailable members": [null,"此聊天室不显示不可用用户"],
"Non-privacy-related room configuration has changed": [null,"此聊天室设置(非私密性)已改变"],
"Room logging is now enabled": [null,"聊天室聊天记录已启用"],
"Room logging is now disabled": [null,"聊天室聊天记录已禁用"],
"This room is now non-anonymous": [null,"此聊天室非匿名"],
"This room is now semi-anonymous": [null,"此聊天室半匿名"],
"This room is now fully-anonymous": [null,"此聊天室完全匿名"],
"A new room has been created": [null,"新聊天室已创建"],
"Your nickname has been changed": [null,"您的昵称被更改了"],
"<strong>%1$s</strong> has been banned": [null,"<strong>%1$s</strong> 已被禁止"],
"<strong>%1$s</strong> has been kicked out": [null,"<strong>%1$s</strong> 已被踢出"],
"<strong>%1$s</strong> has been removed because of an affiliation change": [null,"由于关系解除、<strong>%1$s</strong> 已被移除"],
"<strong>%1$s</strong> has been removed for not being a member": [null,"由于不是成员、<strong>%1$s</strong> 已被移除"],
"You have been banned from this room": [null,"您已被此聊天室禁止入内"],
"You have been kicked from this room": [null,"您已被踢出次房间"],
"You have been removed from this room because of an affiliation change": [null,"由于关系变化,您已被移除此房间"],
"You have been removed from this room because the room has changed to members-only and you're not a member": [null,"您已被移除此房间因为此房间更改为只允许成员加入,而您非成员"],
"You have been removed from this room because the MUC (Multi-user chat) service is being shut down.": [null,"由于服务不可用,您已被移除此房间。"],
"You are not on the member list of this room": [null,"您并非此房间成员"],
"No nickname was specified": [null,"未指定昵称"],
"You are not allowed to create new rooms": [null,"您可此创建新房间了"],
"Your nickname doesn't conform to this room's policies": [null,"您的昵称不符合此房间标准"],
"Your nickname is already taken": [null,"您的昵称已被占用"],
"This room does not (yet) exist": [null,"此房间不存在"],
"This room has reached it's maximum number of occupants": [null,"此房间人数已达上线"],
"Topic set by %1$s to: %2$s": [null,"%1$s 设置话题为: %2$s"],
"This user is a moderator": [null,"此用户是主持人"],
"This user can send messages in this room": [null,"此用户在这房间里可发消息"],
"This user can NOT send messages in this room": [null,"此用户不可在此房间发消息"],
"Minimized": [null,"最小化的"],
"Click to remove this contact": [null,"点击移除联系人"],
"Accept": [null,"接受"],
"Click to chat with this contact": [null,"点击与对方交谈"],
"My contacts": [null,"我的好友列表"],
"Contact requests": [null,"来自好友的请求"],
"Pending contacts": [null,"保留中的联系人"],
"Custom status": [null,"DIY状态"],
"online": [null,"在线"],
"busy": [null,"忙碌"],
"away for long": [null,"长时间离开"],
"away": [null,"离开"],
"I am %1$s": [null,"我现在%1$s"],
"Click here to write a custom status message": [null,"点击这里,填写状态信息"],
"Click to change your chat status": [null,"点击这里改变聊天状态"],
"XMPP/Jabber Username:": [null,"XMPP/Jabber用户名:"],
"Password:": [null,"密码:"],
"Log In": [null,"登录"],
"Sign in": [null,"登录"],
"Toggle chat": [null,"折叠聊天窗口"]
}
}
};
if (typeof define === 'function' && define.amd) {
define("zh", ['jed'], function () {
return factory(new Jed(translations));
});
} else {
if (!window.locales) {
window.locales = {};
}
window.locales.zh = factory(new Jed(translations));
}
}(this, function (zh) {
return zh;
}));

55
main.js
View File

@ -1,9 +1,9 @@
var config;
if (typeof(require) === 'undefined') {
/* XXX: Hack to work around r.js's stupid parsing.
* We want to save the configuration in a variable so that we can reuse it in
* tests/main.js.
*/
* We want to save the configuration in a variable so that we can reuse it in
* tests/main.js.
*/
require = {
config: function (c) {
config = c;
@ -24,14 +24,20 @@ require.config({
"eventemitter": "components/otr/build/dep/eventemitter",
"jquery": "components/jquery/dist/jquery",
"jquery-private": "src/jquery-private",
"jquery.browser": "components/jquery.browser/index",
"jquery.browser": "components/jquery.browser/dist/jquery.browser",
"jquery.easing": "components/jquery-easing-original/index", // XXX: Only required for https://conversejs.org website
"moment": "components/momentjs/moment",
"strophe": "components/strophe/strophe",
"strophe-base64": "components/strophejs/src/base64",
"strophe-bosh": "components/strophejs/src/bosh",
"strophe-core": "components/strophejs/src/core",
"strophe": "components/strophejs/src/wrapper",
"strophe-md5": "components/strophejs/src/md5",
"strophe-sha1": "components/strophejs/src/sha1",
"strophe-websocket": "components/strophejs/src/websocket",
"strophe-polyfill": "components/strophejs/src/polyfills",
"strophe.disco": "components/strophejs-plugins/disco/strophe.disco",
"strophe.muc": "components/strophe.muc/index",
"strophe.roster": "src/strophe.roster",
"strophe.vcard": "components/strophejs-plugins/vcard/strophe.vcard",
"strophe.vcard": "src/strophe.vcard",
"text": 'components/requirejs-text/text',
"tpl": 'components/requirejs-tpl-jcbrand/tpl',
"typeahead": "components/typeahead.js/index",
@ -56,23 +62,24 @@ require.config({
"otr": "src/otr",
// Locales paths
"locales": "locale/locales",
"locales": "src/locales",
"jed": "components/jed/jed",
"af": "locale/af/LC_MESSAGES/af",
"de": "locale/de/LC_MESSAGES/de",
"en": "locale/en/LC_MESSAGES/en",
"es": "locale/es/LC_MESSAGES/es",
"fr": "locale/fr/LC_MESSAGES/fr",
"he": "locale/he/LC_MESSAGES/he",
"hu": "locale/hu/LC_MESSAGES/hu",
"id": "locale/id/LC_MESSAGES/id",
"it": "locale/it/LC_MESSAGES/it",
"ja": "locale/ja/LC_MESSAGES/ja",
"nb": "locale/nb/LC_MESSAGES/nb",
"nl": "locale/nl/LC_MESSAGES/nl",
"pt_BR": "locale/pt_BR/LC_MESSAGES/pt_BR",
"ru": "locale/ru/LC_MESSAGES/ru",
"zh": "locale/zh/LC_MESSAGES/zh",
"af": "locale/af/LC_MESSAGES/converse.json",
"de": "locale/de/LC_MESSAGES/converse.json",
"en": "locale/en/LC_MESSAGES/converse.json",
"es": "locale/es/LC_MESSAGES/converse.json",
"fr": "locale/fr/LC_MESSAGES/converse.json",
"he": "locale/he/LC_MESSAGES/converse.json",
"hu": "locale/hu/LC_MESSAGES/converse.json",
"id": "locale/id/LC_MESSAGES/converse.json",
"it": "locale/it/LC_MESSAGES/converse.json",
"ja": "locale/ja/LC_MESSAGES/converse.json",
"nb": "locale/nb/LC_MESSAGES/converse.json",
"nl": "locale/nl/LC_MESSAGES/converse.json",
"pl": "locale/pl/LC_MESSAGES/converse.json",
"pt_BR": "locale/pt_BR/LC_MESSAGES/converse.json",
"ru": "locale/ru/LC_MESSAGES/converse.json",
"zh": "locale/zh/LC_MESSAGES/converse.json",
// Templates
"action": "src/templates/action",
@ -160,9 +167,7 @@ require.config({
'crypto.sha1': { deps: ['crypto.core'] },
'crypto.sha256': { deps: ['crypto.core'] },
'bigint': { deps: ['crypto'] },
'strophe': { exports: 'Strophe' },
'strophe.disco': { deps: ['strophe'] },
'strophe.muc': { deps: ['strophe'] },
'strophe.register': { deps: ['strophe'] },
'strophe.roster': { deps: ['strophe'] },
'strophe.vcard': { deps: ['strophe'] }

View File

@ -131,7 +131,7 @@
</dd>
</dl>
<div id="converse-roster">
<span class="roster-filter-group">
<span class="input-button-group">
<input class="roster-filter" placeholder="Type to filter">
<select class="filter-type">
<option value="contacts">Contacts</option>
@ -143,7 +143,9 @@
<a href="#" data-group="Colleagues" class="group-toggle icon-opened" title="Click to hide these contacts">Colleagues</a>
</dt>
<dd class="online current-xmpp-contact">
<a class="open-chat" title="Click to chat with this contact" href="#">
<a class="open-chat" title="Name: Victor Matfield
JID: victor.matfield@localhost
Click to chat with this contact" href="#">
<span class="icon-online" title="This contact is online"></span>
Victor Matfield
</a>
@ -215,7 +217,8 @@
<a href="#" class="group-toggle icon-opened" title="Click to hide these contacts">Contact Requests</a>
</dt>
<dd class="offline requesting-xmpp-contact">
<span class="req-contact-name">Bob Skinstad</span>
<span class="req-contact-name" title="Name: Bob Skinstad
JID: bob.skinstad@localhost">Bob Skinstad</span>
<span class="request-actions">
<a class="accept-xmpp-request icon-checkmark" title="Click here to accept this contact's request" href="#"></a>
<a class="decline-xmpp-request icon-close" title="Click here to decline this contact's request" href="#"></a>
@ -232,7 +235,8 @@
<dt id="pending-xmpp-contacts" style="display: block;">
<a href="#" class="group-toggle icon-opened" title="Click to hide these contacts">Pending Contacts</a>
</dt>
<dd class="offline pending-xmpp-contact"><span class="pending-contact-name">Rassie Erasmus</span>
<dd class="offline pending-xmpp-contact"><span class="pending-contact-name" title="Name: Rassie Erasmus
JID: rassie.erasmus@localhost">Rassie Erasmus</span>
<a class="remove-xmpp-contact icon-remove" title="Click to remove this contact" href="#"></a>
</dd>
<dd class="offline pending-xmpp-contact"><span class="pending-contact-name">Victor Matfield</span>

View File

@ -1,13 +1,19 @@
<!DOCTYPE html>
<html>
<head>
<title>Converse.js (Non-AMD Example)</title>
<meta charset='utf-8' />
<meta http-equiv="X-UA-Compatible" content="chrome=1" />
<meta name="description" content="Converse.js: Open Source Browser-Based Instant Messaging" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="Converse.js: A free chat client for your website" />
<meta name="author" content="JC Brand" />
<link rel="shortcut icon" type="image/ico" href="css/images/favicon.ico"/>
<link type="text/css" rel="stylesheet" media="screen" href="components/bootstrap/dist/css/bootstrap.min.css" />
<link type="text/css" rel="stylesheet" media="screen" href="components/fontawesome/css/font-awesome.min.css" />
<link type="text/css" rel="stylesheet" media="screen" href="css/theme.css" />
<link type="text/css" rel="stylesheet" media="screen" href="css/converse.css" />
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script type="text/javascript" src="components/jquery/dist/jquery.js"></script>
<script type="text/javascript" src="components/otr/build/dep/salsa20.js"></script>
<script type="text/javascript" src="src/bigint.js"></script>
<!-- CryptoJS -->
@ -25,176 +31,43 @@
<!-- until here -->
<script type="text/javascript" src="components/otr/build/dep/eventemitter.js"></script>
<script type="text/javascript" src="src/otr.js"></script>
<script type="text/javascript" src="components/strophe/strophe.js"></script>
<script type="text/javascript" src="components/strophe.roster/index.js"></script>
<script type="text/javascript" src="components/strophe.muc/index.js"></script>
<script type="text/javascript" src="components/strophe.vcard/index.js"></script>
<script type="text/javascript" src="components/strophe.disco/index.js"></script>
<script type="text/javascript" src="components/strophe/strophe.min.js"></script>
<script type="text/javascript" src="src/strophe.roster.js"></script>
<script type="text/javascript" src="components/strophejs-plugins/vcard/strophe.vcard.js"></script>
<script type="text/javascript" src="components/strophejs-plugins/disco/strophe.disco.js"></script>
<script type="text/javascript" src="components/underscore/underscore.js"></script>
<script type="text/javascript" src="components/backbone//backbone.js"></script>
<script type="text/javascript" src="components/backbone.browserStorage/backbone.browserStorage.js"></script>
<script type="text/javascript" src="components/backbone.overview/backbone.overview.js"></script>
<script type="text/javascript" src="components/momentjs/moment.js"></script>
<script type="text/javascript" src="components/jquery.browser/dist/jquery.browser.js"></script>
<script type="text/javascript" src="components/typeahead.js/dist/typeahead.jquery.js"></script>
<script type="text/javascript" src="components/typeahead.js/index.js"></script>
<script type="text/javascript" src="components/jed/jed.js"></script>
<script type="text/javascript" src="locale/en/LC_MESSAGES/en.js"></script>
<script type="text/javascript" src="builds/locales.js"></script>
<script type="text/javascript" src="builds/templates.js"></script>
<script type="text/javascript" src="src/utils.js"></script>
<script type="text/javascript" src="converse.js"></script>
<title>Converse.js</title>
</head>
<body>
<!-- HEADER -->
<div id="header_wrap" class="outer">
<header class="inner">
<a id="forkme_banner" href="https://github.com/jcbrand/converse.js">View on GitHub</a>
<h1 id="project_title"><a href="http://conversejs.org">Converse.js</a></h1>
<h2 id="project_tagline">Non-AMD Test Page</h2>
<section id="downloads">
<a class="zip_download_link" href="https://github.com/jcbrand/converse.js/archive/v0.4.zip">Download the latest release as a .zip file</a>
<a class="tar_download_link" href="https://github.com/jcbrand/converse.js/archive/v0.4.tar.gz">Download the latest release as a tar.gz file</a>
</section>
</header>
</div>
<!-- MAIN CONTENT -->
<div id="main_content_wrap" class="outer">
<section id="main_content" class="inner">
<p><strong>Converse.js</strong> is an open source, webchat client, that
runs in the browser and can be integrated into any website.</p>
<p>It's similar to <a href="https://www.facebook.com/sitetour/chat.php" target="_blank">Facebook chat</a>, but also supports multi-user chatrooms.</p>
<p><em>Converse.js</em> can connect to any accessible <a href="http://xmpp.org" target="_blank">XMPP/Jabber</a> server, either from a public provider such as
<a href="http://jabber.org">jabber.org</a>, or to one you have set up
yourself.</a>
<p>It's possible to enable single-site login, whereby users already authenticated in your website will also automatically be logged in on the chat server,
but you will have to pre-authenticate them on your server. You can refer to the <a href="/docs/html/index.html">documentation</a> for more
info.</p>
<p>An <a href="http://github.com/collective/collective.xmpp.chat" target="_blank">add-on product</a> that does exactly this,
already exists for the <a href="http://plone.org" target="_blank">Plone</a> CMS. Hopefully in the future more such add-ons will
be created for other platforms.
</p>
<p>If you have integrated <em>Converse.js</em> into any other CMS or framework,
<a href="http://opkode.com/contact.html" target="_blank">please let me know</a> and I'll mention it on this page.</p>
<h2>Features</h2>
<ul>
<li>Single-user chat</li>
<li>Multi-user chat in chatrooms (<a href="http://xmpp.org/extensions/xep-0045.html">XEP 45</a>)</li>
<li>vCard support (<a href="http://xmpp.org/extensions/xep-0054.html">XEP 54</a>)</li>
<li>Service discovery (<a href="http://xmpp.org/extensions/xep-0030.html">XEP 30</a>)</li>
<li>Contact rosters</li>
<li>Manually or automically subscribe to other contacts</li>
<li>Accept or decline contact requests</li>
<li>Roster item exchange (<a href="http://xmpp.org/extensions/tmp/xep-0144-1.1.html">XEP 144</a>)</li>
<li>Chat statuses (online, busy, away, offline)</li>
<li>Custom status messages</li>
<li>Typing notifications</li>
<li>Third person messages (/me )</li>
<li>i18n aware</li>
</ul>
<h2>Screencasts</h2>
<ul>
<li><a href="http://opkode.com/media/blog/instant-messaging-for-plone-with-javascript-and-xmpp" target="_blank">Screencast 1</a>:
Integrated into a Plone site via <strong>collective.xmpp.chat</strong>.
</li>
<li><a href="http://opkode.com/media/blog/2013/04/02/converse.js-xmpp-instant-messaging-with-javascript" target="_blank">Screencast 2</a>:
A static HTML page with <em>Converse.js</em>. Here we chat to external XMPP accounts on Jabber.org and Gmail.
</li>
</ul>
<h2>Demo</h2>
<p>You can log in with any existing XMPP account. There is also a list of public XMPP providers on <a href="http://xmpp.net" target="_blank">xmpp.net</a>.</p>
<p><em><strong>Note:</strong> currently the demo doesn't work in Internet Explorer older
than 10. This is due to lacking support for <a href="https://en.wikipedia.org/wiki/Cross-origin_resource_sharing">CORS</a>,
a standard which enables cross-domain XmlHttpRequests. There are ways
around this, but it hasn't been a priority for me to implement them for
this demo.
</p>
<p>
See <a href="/docs/html/index.html#overcoming-cross-domain-request-restrictions" target="_blank">here</a> for more information.
</p>
</em>
<h3>Is it secure?</h3>
<p>Yes. In this demo <em>Converse.js</em> makes an
<a href="https://en.wikipedia.org/wiki/Secure_Sockets_Layer" target="_blank">SSL</a> encrypted connection to a secure connection manager.
The connection manager then uses SSL and <a href="https://en.wikipedia.org/wiki/Transport_Layer_Security">TLS</a> to connect to an XMPP server.</p>
That said, the developers don't assume any liability for any loss or damages as a result of using this software or demo. Use this demo at your own risk.
<h3>Session support</h3>
<p>
The chat client will disconnect whenever you reload the page. If you
want the user's session to persist across page reloads, you can
establish an authenticated connection on the server side and then attach to
this connection in your browser.
</p>
<p><em>Converse.js</em> already supports this usecase, but you'll have to do some integration work yourself.</p>
<h2>Documentation</h2>
<p>
The documentation is still a bit sparse and a work in progress.
Nevertheless, you can read what's already written <a href="/docs/html/index.html" target="_blank">here</a>.
</p>
<h2>Tests</h2>
<p>
We use the <a href="http://pivotal.github.io/jasmine"
target="_blank">Jasmine</a> testing framework to write tests.
The tests can be run in the browser and can be viewed <a href="http://conversejs.org/tests.html" target="_blank">here</a>.
</p>
<h2>Credits and Dependencies</h2>
<p><strong>Converse.js</strong> depends on a few third party libraries, including:
<ul>
<li><a href="http://jquery.com" target="_blank">JQuery</a></li>
<li><a href="http://strophe.im/strophejs" target="_blank">strophe.js</a></li>
<li><a href="http://backbonejs.org" target="_blank">backbone.js</a></li>
<li><a href="http://requirejs.org" target="_blank">require.js</a> (optional dependency)</li>
</ul>
</p>
<p>Some images were taken from <a href="http://plone.org" target="_blank">Plone</a> and the
<a href="http://openiconlibrary.sourceforge.net" target="_blank">Open Icon Library</a>.
<h2>Licence</h2>
<p><strong>Converse.js</strong> is released under both the <a href="http://opensource.org/licenses/mit-license.php" target="_blank">MIT</a>
and <a href="http://opensource.org/licenses/GPL-2.0" target="_blank">GPL</a> licenses.</p>
<h2>Contact</h2>
<p>You can follow me on <strong><a href="http://twitter.com/jcopkode" target="_blank">Twitter</a></strong> and <strong><a href="http://identi.ca/opkode" target="_blank">Identica</a></strong></p>
<p>My XMPP username is <strong>jc@opkode.im</strong>.</p>
<p>Send me an email via this <a href="http://opkode.com/contact" target="_blank">contact form</a>.</p>
</section>
</div>
<!-- FOOTER -->
<div id="footer_wrap" class="outer">
<footer class="inner">
<p class="copyright">Converse.js created by <a href="http://opkode.com" target="_blank">jcbrand</a></p>
</footer>
</div>
<div id="conversejs"></div>
<script type="text/javascript">
var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
</script>
<script type="text/javascript">try { var pageTracker = _gat._getTracker("UA-2128260-8"); pageTracker._trackPageview(); } catch(err) {}</script>
<body id="page-top" data-spy="scroll" data-target=".navbar-custom">
<section class="intro">
<div class="intro-body">
<div class="container">
<div class="row">
<div class="col-md-8 col-md-offset-2">
<h1 class="brand-heading"><i class="icon-conversejs"></i>Converse.js</h1>
<p class="intro-text">Example page without require.js and AMD module loading.</p>
<div class="page-scroll">
</div>
</div>
</div>
</div>
</div>
</section>
</body>
<script>
converse.initialize({
bosh_service_url: 'https://bind.conversejs.org', // Please use this connection manager only for testing purposes
bosh_service_url: 'https://conversejs.org/http-bind/', // Please use this connection manager only for testing purposes
i18n: locales.en, // Refer to ./locale/locales.js to see which locales are supported
prebind: false,
show_controlbox_by_default: true,

View File

@ -1,10 +1,12 @@
{
"name": "converse.js",
"version": "0.8.6",
"version": "0.9.0",
"description": "Browser based XMPP instant messaging client",
"main": "main.js",
"directories": {
"doc": "docs"
"doc": "docs",
"locale": "locale",
"src": "src"
},
"scripts": {
"test": ""
@ -26,6 +28,9 @@
"bugs": {
"url": "https://github.com/jcbrand/converse.js/issues"
},
"engines": {
"browser": "*"
},
"devDependencies": {
"bower": "latest",
"grunt": "~0.4.4",
@ -34,12 +39,15 @@
"grunt-contrib-jshint": "~0.10.0",
"grunt-contrib-jst": "~0.6.0",
"grunt-contrib-requirejs": "~0.4.3",
"grunt-json": "^0.1.3",
"grunt-touch": "^0.1.0",
"http-server": "^0.7.4",
"less": "~1.7.0",
"phantom-jasmine": "0.1.8",
"phantomjs": "~1.9.7-1",
"po2json": "^0.3.0"
},
"dependencies": {
"requirejs": "~2.1.11"
"requirejs": "~2.1.15"
}
}

View File

@ -33,7 +33,11 @@
#conversejs {
@import "../bourbon/bourbon";
@import "variables";
::selection {
background-color: $highlight-color;
}
color: $text-color;
font-size: $font-size;
bottom: 0;
@ -79,7 +83,7 @@
input[type=text], input[type=password],
button {
font-size: $font-size;
padding: 0.5em;
padding: 0.25em;
min-height: 0;
}
@ -228,6 +232,12 @@
font-size: $font-size;
}
.left {
float: left;
}
.right {
float: right;
}
.hidden {
display: none;
}
@ -289,6 +299,18 @@
}
}
.button-group,
.input-button-group {
display: table;
}
.button-group {
width: 100%;
}
.input-button-group button,
.input-button-group input {
display: table-cell;
}
#minimized-chats {
color: $inverse-link-color;
display: none;
@ -396,11 +418,6 @@
border-left: 1px solid #176679;
}
.chat-message span::selection,
.chat-message::selection {
background-color: darkgrey;
}
.chat-content {
position: relative;
padding: 8px;
@ -411,7 +428,7 @@
background-color: #ffffff;
line-height: 1.3em;
height: 206px;
height: calc(100% - #{$toolbar-height + $chat-textarea-height});
height: calc(100% - #{$toolbar-height + $chat-textarea-height + 2});
}
.chat-info {
@ -715,11 +732,9 @@
height: calc(100% - 68px);
overflow: hidden;
.roster-filter-group {
display: table;
}
.filter-type {
display: table-cell;
float: right;
font-size: $font-size;
height: $controlbox-dropdown-height;
margin: 0 0 0.5em -1px;
@ -727,15 +742,15 @@
width: 84px;
}
.roster-filter {
float: left;
background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAHCAYAAADEUlfTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAIGNIUk0AAHolAACAgwAA+f8AAIDpAAB1MAAA6mAAADqYAAAXb5JfxUYAAABNSURBVHjaXI7BDcAwCAMvyQjMyQ6dAbZiKfqoUK34g2zJh1dENIC7M8pMAPYdzAVY3d0ajNz9aypS/b5R6o+ZPdqoKgCq6h80KH3xDgBqNR97p8oAGQAAAABJRU5ErkJggg== ) no-repeat right -20px center;
border: 1px solid #999;
display: table-cell;
font-size: $font-size;
height: $controlbox-dropdown-height;
margin: 0 0 0.5em 6px;
margin: 0 0 0.5em 7px;
padding: 0;
padding: 2px;
width: 104px;
width: 103px;
}
/* (jQ addClass:) if input has value: */
.roster-filter.x {
@ -763,6 +778,8 @@
}
dd {
line-height: 16px;
padding: 4px 2px 0 4px;
height: 24px;
a, span {
text-shadow: 0 1px 0 $link-shadow-color;
display: inline-block;
@ -773,7 +790,6 @@
}
span {
padding: 0 5px 0 0;
margin-left: 3px;
}
a {
&.decline-xmpp-request {
@ -806,20 +822,13 @@
}
}
span {
&.pending-contact-name,
&.req-contact-name {
&.pending-contact-name {
width: 80%;
}
}
}
dd.available-chatroom {
display: inline-block;
overflow-x: hidden;
text-overflow: ellipsis;
white-space: nowrap;
a.open-room {
width: 148px;
&.req-contact-name {
width: 69%;
padding: 0;
}
}
}
@ -832,7 +841,7 @@
font-weight: normal;
color: $text-color;
border: none;
padding: 5px;
padding: 0.5em;
text-shadow: 0 1px 0 $text-shadow-color;
}
@ -860,9 +869,7 @@
a {
&.room-info {
width: 22px;
height: 22px;
float: right;
width: 15px;
display: none;
clear: right;
}
@ -874,10 +881,20 @@
}
}
dd.available-chatroom {
display: inline-block;
overflow-x: hidden;
text-overflow: ellipsis;
padding: 0.25em 0.5em;
white-space: nowrap;
a.open-room {
width: 150px;
}
}
dd.available-chatroom:hover a.room-info {
display: inline-block;
margin-top: 3px;
font-size: 15px;
font-size: 14px;
}
dd.available-chatroom,
@ -885,11 +902,9 @@
font-weight: bold;
border: none;
display: block;
padding: 4px 2px 0 4px;
color: $text-color;
text-shadow: 0 1px 0 $text-shadow-color;
clear: both;
height: 24px;
overflow-y: hidden;
}
@ -916,6 +931,7 @@
width: $mobile-chat-width;
}
.box-flyout {
z-index: 1;
width: $chat-width;
@media screen and (max-width: $mobile_landscape_length) {
width: $mobile-chat-width;
@ -947,8 +963,12 @@
}
}
}
dd.search-xmpp ul li:hover {
background-color: $light-background-color;
dd.search-xmpp ul {
box-shadow: 1px 4px 10px 1px rgba(0, 0, 0, 0.4);
li:hover {
background-color: $light-background-color;
}
}
dt a span {
cursor: pointer;
@ -1089,7 +1109,7 @@
width: 100%;
height: 30px;
margin: 5px 0 10px 0;
padding: 0.5em;
padding-left: 0.5em;
}
#converse-register {
@ -1142,17 +1162,23 @@
form.add-chatroom {
background: none;
padding: 8px;
padding: 0.5em;
input[type=button],
input[type=submit],
input[type=text] {
margin: 0;
width: 100%;
padding: 5px;
padding: 0.25em;
}
span.spinner,
input[type=button],
input[type=submit] {
margin-top: 0.5em;
display: table-cell;
width: auto;
}
input[type=submit] {
margin: 5px 0;
color: $save-button-color;
}
}
@ -1211,7 +1237,7 @@
border-bottom: 1px solid $border-color;
border-top-left-radius: 4px;
border-top-right-radius: 4px;
box-shadow: inset 0 4px 12px rgba(0, 0, 0, 0.3);
box-shadow: inset 2px -2px 20px rgba(0, 0, 0, 0.3);
color: #888;
display: block;
font-size: 12px;
@ -1247,8 +1273,11 @@
margin: 0;
padding: 0;
position: relative;
width: $chat-width;
height: #{$chat-textarea-height + $toolbar-height};
width: $chat-width;
@media screen and (max-width: $mobile_landscape_length) {
width: 100%;
}
.chat-textarea {
@include border-bottom-radius(4px);
border: 0;
@ -1363,17 +1392,16 @@
float: left;
padding: 0;
input {
height: $controlbox-dropdown-height - 2px;
height: $controlbox-dropdown-height + 1px;
@include calc(width, '100% - 40px');
padding: 0 0 0 0.5em;
}
button {
height: $controlbox-dropdown-height - 2px;
height: $controlbox-dropdown-height + 1px;
width: 40px;
padding: 1px 2px 1px 1px;
padding: 1px;
}
}
.custom-xmpp-status {
@include calc(width, '100% - 40px');
}
.chat-textarea-chatbox-selected {
border: 1px solid #578308;
@ -1414,14 +1442,16 @@
padding: 5px;
input {
margin: 0 0 1rem;
width: 100%;
}
button {
width: 100%;
width: 100%;
}
}
.xmpp-status-menu {
text-align: left;
box-shadow: 1px 4px 10px 1px rgba(0, 0, 0, 0.4);
li {
padding: 2px;
a {

View File

@ -16,7 +16,7 @@
$chat-head-inverse-text-color: white;
$chat-head-height: 44px;
$save-button-color: #436F64;
$chat-textarea-height: 64px;
$chat-textarea-height: 62px;
$toolbar-height: 20px;
$message-them-color: #4B7003;
$roster-height: 194px;

View File

@ -8,6 +8,9 @@
}
);
} (this, function ($, mock, test_utils) {
var $msg = converse_api.env.$msg;
var Strophe = converse_api.env.Strophe;
return describe("Chatboxes", $.proxy(function(mock, test_utils) {
describe("A Chatbox", $.proxy(function () {
beforeEach(function () {
@ -412,7 +415,7 @@
spyOn(converse, 'emit');
var message = 'This is a received message';
var sender_jid = mock.cur_names[0].replace(/ /g,'.').toLowerCase() + '@localhost';
msg = $msg({
var msg = $msg({
from: sender_jid,
to: this.connection.jid,
type: 'chat',
@ -515,7 +518,7 @@
expect(trimmed_chatboxes.keys().length).toBe(0);
}, converse));
}, converse));
it("will indicate when it has a time difference of more than a day between it and its predecessor", $.proxy(function () {
spyOn(converse, 'emit');
var contact_name = mock.cur_names[1];
@ -691,6 +694,240 @@
}, converse));
}, converse));
describe("A Chat Status Notification", $.proxy(function () {
describe("An active notification", $.proxy(function () {
it("is sent when the user opens a chat box", $.proxy(function () {
spyOn(converse.connection, 'send');
var contact_jid = mock.cur_names[0].replace(/ /g,'.').toLowerCase() + '@localhost';
test_utils.openChatBoxFor(contact_jid);
var view = this.chatboxviews.get(contact_jid);
expect(view.model.get('chat_state')).toBe('active');
expect(converse.connection.send).toHaveBeenCalled();
var $stanza = $(converse.connection.send.argsForCall[0][0].tree());
expect($stanza.attr('to')).toBe(contact_jid);
expect($stanza.children().length).toBe(1);
expect($stanza.children().prop('tagName')).toBe('active');
}, converse));
it("is sent when the user maximizes a minimized a chat box", $.proxy(function () {
var contact_jid = mock.cur_names[0].replace(/ /g,'.').toLowerCase() + '@localhost';
test_utils.openChatBoxFor(contact_jid);
var view = this.chatboxviews.get(contact_jid);
view.minimize();
expect(view.model.get('chat_state')).toBe('inactive');
spyOn(converse.connection, 'send');
view.maximize();
expect(view.model.get('chat_state')).toBe('active');
expect(converse.connection.send).toHaveBeenCalled();
var $stanza = $(converse.connection.send.argsForCall[0][0].tree());
expect($stanza.attr('to')).toBe(contact_jid);
expect($stanza.children().length).toBe(1);
expect($stanza.children().prop('tagName')).toBe('active');
}, converse));
}, converse));
describe("A composing notification", $.proxy(function () {
it("is sent as soon as the user starts typing a message which is not a command", $.proxy(function () {
var contact_jid = mock.cur_names[0].replace(/ /g,'.').toLowerCase() + '@localhost';
test_utils.openChatBoxFor(contact_jid);
var view = this.chatboxviews.get(contact_jid);
expect(view.model.get('chat_state')).toBe('active');
spyOn(this.connection, 'send');
view.keyPressed({
target: view.$el.find('textarea.chat-textarea'),
keyCode: 1
});
expect(view.model.get('chat_state')).toBe('composing');
expect(this.connection.send).toHaveBeenCalled();
var $stanza = $(this.connection.send.argsForCall[0][0].tree());
expect($stanza.attr('to')).toBe(contact_jid);
expect($stanza.children().length).toBe(1);
expect($stanza.children().prop('tagName')).toBe('composing');
// The notification is not sent again
view.keyPressed({
target: view.$el.find('textarea.chat-textarea'),
keyCode: 1
});
expect(view.model.get('chat_state')).toBe('composing');
expect(converse.emit.callCount, 1);
}, converse));
it("will be shown if received", $.proxy(function () {
// See XEP-0085 http://xmpp.org/extensions/xep-0085.html#definitions
spyOn(converse, 'emit');
var sender_jid = mock.cur_names[1].replace(/ /g,'.').toLowerCase() + '@localhost';
// <composing> state
var msg = $msg({
from: sender_jid,
to: this.connection.jid,
type: 'chat',
id: (new Date()).getTime()
}).c('body').c('composing', {'xmlns': Strophe.NS.CHATSTATES}).tree();
this.chatboxes.onMessage(msg);
expect(converse.emit).toHaveBeenCalledWith('message', msg);
var chatboxview = this.chatboxviews.get(sender_jid);
expect(chatboxview).toBeDefined();
// Check that the notification appears inside the chatbox in the DOM
var $events = chatboxview.$el.find('.chat-event');
expect($events.length).toBe(1);
expect($events.text()).toEqual(mock.cur_names[1].split(' ')[0] + ' is typing');
}, converse));
}, converse));
describe("A paused notification", $.proxy(function () {
it("is sent if the user has stopped typing since 30 seconds", $.proxy(function () {
this.TIMEOUTS.PAUSED = 200; // Make the timeout shorter so that we can test
var contact_jid = mock.cur_names[0].replace(/ /g,'.').toLowerCase() + '@localhost';
test_utils.openChatBoxFor(contact_jid);
var view = this.chatboxviews.get(contact_jid);
runs(function () {
expect(view.model.get('chat_state')).toBe('active');
view.keyPressed({
target: view.$el.find('textarea.chat-textarea'),
keyCode: 1
});
expect(view.model.get('chat_state')).toBe('composing');
spyOn(converse.connection, 'send');
});
waits(250);
runs(function () {
expect(view.model.get('chat_state')).toBe('paused');
expect(converse.connection.send).toHaveBeenCalled();
var $stanza = $(converse.connection.send.argsForCall[0][0].tree());
expect($stanza.attr('to')).toBe(contact_jid);
expect($stanza.children().length).toBe(1);
expect($stanza.children().prop('tagName')).toBe('paused');
});
}, converse));
it("will be shown if received", $.proxy(function () {
// TODO: only show paused state if the previous state was composing
// See XEP-0085 http://xmpp.org/extensions/xep-0085.html#definitions
spyOn(converse, 'emit');
var sender_jid = mock.cur_names[1].replace(/ /g,'.').toLowerCase() + '@localhost';
// <paused> state
msg = $msg({
from: sender_jid,
to: this.connection.jid,
type: 'chat',
id: (new Date()).getTime()
}).c('body').c('paused', {'xmlns': Strophe.NS.CHATSTATES}).tree();
this.chatboxes.onMessage(msg);
expect(converse.emit).toHaveBeenCalledWith('message', msg);
var chatboxview = this.chatboxviews.get(sender_jid);
$events = chatboxview.$el.find('.chat-event');
expect($events.length).toBe(1);
expect($events.text()).toEqual(mock.cur_names[1].split(' ')[0] + ' has stopped typing');
}, converse));
}, converse));
describe("An inactive notifciation", $.proxy(function () {
it("is sent if the user has stopped typing since 2 minutes", $.proxy(function () {
// Make the timeouts shorter so that we can test
this.TIMEOUTS.PAUSED = 200;
this.TIMEOUTS.INACTIVE = 200;
var contact_jid = mock.cur_names[0].replace(/ /g,'.').toLowerCase() + '@localhost';
test_utils.openChatBoxFor(contact_jid);
var view = this.chatboxviews.get(contact_jid);
runs(function () {
expect(view.model.get('chat_state')).toBe('active');
view.keyPressed({
target: view.$el.find('textarea.chat-textarea'),
keyCode: 1
});
expect(view.model.get('chat_state')).toBe('composing');
});
waits(250);
runs(function () {
expect(view.model.get('chat_state')).toBe('paused');
spyOn(converse.connection, 'send');
});
waits(250);
runs(function () {
expect(view.model.get('chat_state')).toBe('inactive');
expect(converse.connection.send).toHaveBeenCalled();
var $stanza = $(converse.connection.send.argsForCall[0][0].tree());
expect($stanza.attr('to')).toBe(contact_jid);
expect($stanza.children().length).toBe(1);
expect($stanza.children().prop('tagName')).toBe('inactive');
});
}, converse));
it("is sent when the user a minimizes a chat box", $.proxy(function () {
var contact_jid = mock.cur_names[0].replace(/ /g,'.').toLowerCase() + '@localhost';
test_utils.openChatBoxFor(contact_jid);
var view = this.chatboxviews.get(contact_jid);
spyOn(converse.connection, 'send');
view.minimize();
expect(view.model.get('chat_state')).toBe('inactive');
expect(converse.connection.send).toHaveBeenCalled();
var $stanza = $(converse.connection.send.argsForCall[0][0].tree());
expect($stanza.attr('to')).toBe(contact_jid);
expect($stanza.children().length).toBe(1);
expect($stanza.children().prop('tagName')).toBe('inactive');
}, converse));
it("is sent if the user closes a chat box", $.proxy(function () {
var contact_jid = mock.cur_names[0].replace(/ /g,'.').toLowerCase() + '@localhost';
test_utils.openChatBoxFor(contact_jid);
var view = this.chatboxviews.get(contact_jid);
expect(view.model.get('chat_state')).toBe('active');
spyOn(converse.connection, 'send');
view.close();
expect(view.model.get('chat_state')).toBe('inactive');
expect(converse.connection.send).toHaveBeenCalled();
var $stanza = $(converse.connection.send.argsForCall[0][0].tree());
expect($stanza.attr('to')).toBe(contact_jid);
expect($stanza.children().length).toBe(1);
expect($stanza.children().prop('tagName')).toBe('inactive');
}, converse));
it("will clear any other chat status notifications if its received", $.proxy(function () {
// See XEP-0085 http://xmpp.org/extensions/xep-0085.html#definitions
spyOn(converse, 'emit');
var sender_jid = mock.cur_names[1].replace(/ /g,'.').toLowerCase() + '@localhost';
test_utils.openChatBoxFor(sender_jid);
var view = this.chatboxviews.get(sender_jid);
expect(view.$el.find('.chat-event').length).toBe(0);
view.showStatusNotification(sender_jid+' '+'is typing');
expect(view.$el.find('.chat-event').length).toBe(1);
msg = $msg({
from: sender_jid,
to: this.connection.jid,
type: 'chat',
id: (new Date()).getTime()
}).c('body').c('inactive', {'xmlns': Strophe.NS.CHATSTATES}).tree();
this.chatboxes.onMessage(msg);
expect(converse.emit).toHaveBeenCalledWith('message', msg);
expect(view.$el.find('.chat-event').length).toBe(0);
}, converse));
}, converse));
describe("A gone notifciation", $.proxy(function () {
it("will be shown if received", $.proxy(function () {
spyOn(converse, 'emit');
var sender_jid = mock.cur_names[1].replace(/ /g,'.').toLowerCase() + '@localhost';
// <paused> state
msg = $msg({
from: sender_jid,
to: this.connection.jid,
type: 'chat',
id: (new Date()).getTime()
}).c('body').c('gone', {'xmlns': Strophe.NS.CHATSTATES}).tree();
this.chatboxes.onMessage(msg);
expect(converse.emit).toHaveBeenCalledWith('message', msg);
var chatboxview = this.chatboxviews.get(sender_jid);
$events = chatboxview.$el.find('.chat-event');
expect($events.length).toBe(1);
expect($events.text()).toEqual(mock.cur_names[1].split(' ')[0] + ' has gone away');
}, converse));
}, converse));
}, converse));
}, converse));
describe("Special Messages", $.proxy(function () {

View File

@ -2,12 +2,16 @@
define([
"jquery",
"mock",
"test_utils"
], function ($, mock, test_utils) {
return factory($, mock, test_utils);
"test_utils",
"utils"
], function ($, mock, test_utils, utils) {
return factory($, mock, test_utils, utils);
}
);
} (this, function ($, mock, test_utils) {
} (this, function ($, mock, test_utils, utils) {
var $pres = converse_api.env.$pres;
var $msg = converse_api.env.$msg;
return describe("ChatRooms", $.proxy(function (mock, test_utils) {
describe("A Chat Room", $.proxy(function () {
beforeEach(function () {
@ -19,30 +23,75 @@
it("shows users currently present in the room", $.proxy(function () {
test_utils.openChatRoom('lounge', 'localhost', 'dummy');
var chatroomview = this.chatboxviews.get('lounge@localhost'),
$participant_list;
var roster = {}, room = {}, i;
for (i=0; i<mock.chatroom_names.length-1; i++) {
roster[mock.chatroom_names[i]] = {};
chatroomview.onChatRoomRoster(roster, room);
$participant_list = chatroomview.$el.find('.participant-list');
expect($participant_list.find('li').length).toBe(1+i);
expect($($participant_list.find('li')[i]).text()).toBe(mock.chatroom_names[i]);
var name;
var view = this.chatboxviews.get('lounge@localhost'),
$participants = view.$('.participant-list');
spyOn(view, 'onChatRoomPresence').andCallThrough();
var presence, room = {}, i, role;
for (i=0; i<mock.chatroom_names.length; i++) {
name = mock.chatroom_names[i];
role = mock.chatroom_roles[name].role;
// See example 21 http://xmpp.org/extensions/xep-0045.html#enter-pres
presence = $pres({
to:'dummy@localhost/pda',
from:'lounge@localhost/'+name
}).c('x').attrs({xmlns:'http://jabber.org/protocol/muc#user'})
.c('item').attrs({
affiliation: mock.chatroom_roles[name].affiliation,
jid: name.replace(/ /g,'.').toLowerCase() + '@localhost',
role: role
}).up()
.c('status').attrs({code:'110'}).nodeTree;
this.connection._dataRecv(test_utils.createRequest(presence));
expect(view.onChatRoomPresence).toHaveBeenCalled();
expect($participants.find('li').length).toBe(1+i);
expect($($participants.find('li')[i]).text()).toBe(mock.chatroom_names[i]);
expect($($participants.find('li')[i]).hasClass('moderator')).toBe(role === "moderator");
}
// Test users leaving the room
// http://xmpp.org/extensions/xep-0045.html#exit
for (i=mock.chatroom_names.length-1; i>-1; i--) {
name = mock.chatroom_names[i];
console.log(name);
role = mock.chatroom_roles[name].role;
// See example 21 http://xmpp.org/extensions/xep-0045.html#enter-pres
presence = $pres({
to:'dummy@localhost/pda',
from:'lounge@localhost/'+name,
type: 'unavailable'
}).c('x').attrs({xmlns:'http://jabber.org/protocol/muc#user'})
.c('item').attrs({
affiliation: mock.chatroom_roles[name].affiliation,
jid: name.replace(/ /g,'.').toLowerCase() + '@localhost',
role: 'none'
}).nodeTree;
this.connection._dataRecv(test_utils.createRequest(presence));
expect(view.onChatRoomPresence).toHaveBeenCalled();
expect($participants.find('li').length).toBe(i);
}
roster[converse.bare_jid] = {};
chatroomview.onChatRoomRoster(roster, room);
}, converse));
it("indicates moderators by means of a special css class and tooltip", $.proxy(function () {
test_utils.openChatRoom('lounge', 'localhost', 'dummy');
var chatroomview = this.chatboxviews.get('lounge@localhost');
var roster = {}, idx = mock.chatroom_names.length-1;
roster[mock.chatroom_names[idx]] = {};
roster[mock.chatroom_names[idx]].role = 'moderator';
chatroomview.onChatRoomRoster(roster, {});
var occupant = chatroomview.$el.find('.participant-list').find('li');
var view = this.chatboxviews.get('lounge@localhost');
var presence = $pres({
to:'dummy@localhost/pda',
from:'lounge@localhost/moderatorman'
}).c('x').attrs({xmlns:'http://jabber.org/protocol/muc#user'})
.c('item').attrs({
affiliation: 'admin',
jid: name.replace(/ /g,'.').toLowerCase() + '@localhost',
role: 'moderator',
}).up()
.c('status').attrs({code:'110'}).nodeTree;
this.connection._dataRecv(test_utils.createRequest(presence));
var occupant = view.$el.find('.participant-list').find('li');
expect(occupant.length).toBe(1);
expect($(occupant).text()).toBe(mock.chatroom_names[idx]);
expect($(occupant).text()).toBe("moderatorman");
expect($(occupant).attr('class')).toBe('moderator');
expect($(occupant).attr('title')).toBe('This user is a moderator');
}, converse));
@ -99,7 +148,7 @@
expect(converse.chatboxes.models.length).toBe(1);
expect(converse.chatboxes.models[0].id).toBe("controlbox");
converse.chatboxes.onInvite(message);
expect(window.confirm).toHaveBeenCalledWith(
expect(window.confirm).toHaveBeenCalledWith(
name + ' has invited you to join a chat room: '+ room_jid +
', and left the following reason: "'+reason+'"');
expect(converse.chatboxes.models.length).toBe(2);
@ -175,7 +224,7 @@
* <status code='110'/>
* </x>
* </presence>
*
*
* <presence
* from='coven@localhost/oldhag'
* id='5B4F27A4-25ED-43F7-A699-382C6B4AFC67'
@ -188,8 +237,38 @@
* </x>
* </presence>
*/
var __ = $.proxy(utils.__, converse);
test_utils.openChatRoom('lounge', 'localhost', 'oldnick');
var presence = $pres().attrs({
var view = this.chatboxviews.get('lounge@localhost');
var $chat_content = view.$el.find('.chat-content');
spyOn(view, 'onChatRoomPresence').andCallThrough();
// The user has just entered the room and receives their own
// presence from the server.
// See example 24:
// http://xmpp.org/extensions/xep-0045.html#enter-pres
var presence = $pres({
to:'dummy@localhost/pda',
from:'lounge@localhost/oldnick',
id:'DC352437-C019-40EC-B590-AF29E879AF97'
}).c('x').attrs({xmlns:'http://jabber.org/protocol/muc#user'})
.c('item').attrs({
affiliation: 'member',
jid: 'dummy@localhost/pda',
role: 'participant'
}).up()
.c('status').attrs({code:'110'}).up()
.c('status').attrs({code:'210'}).nodeTree;
this.connection._dataRecv(test_utils.createRequest(presence));
expect(view.onChatRoomPresence).toHaveBeenCalled();
$participants = view.$('.participant-list');
expect($participants.children().length).toBe(1);
expect($participants.children().first(0).text()).toBe("oldnick");
expect($chat_content.find('div.chat-info').length).toBe(1);
expect($chat_content.find('div.chat-info').html()).toBe(__(view.newNicknameMessages["210"], "oldnick"));
presence = $pres().attrs({
from:'lounge@localhost/oldnick',
id:'DC352437-C019-40EC-B590-AF29E879AF98',
to:'dummy@localhost/pda',
@ -205,13 +284,13 @@
.c('status').attrs({code:'303'}).up()
.c('status').attrs({code:'110'}).nodeTree;
var view = this.chatboxviews.get('lounge@localhost');
view.onChatRoomPresence(presence, {nick: 'oldnick', name: 'lounge@localhost'});
var $chat_content = view.$el.find('.chat-content');
expect($chat_content.find('div.chat-info').length).toBe(1);
expect($chat_content.find('div.chat-info').html()).toBe('Your nickname has been changed to: <strong>newnick</strong>');
this.connection._dataRecv(test_utils.createRequest(presence));
expect(view.onChatRoomPresence).toHaveBeenCalled();
expect($chat_content.find('div.chat-info').length).toBe(2);
expect($chat_content.find('div.chat-info').last().html()).toBe(__(view.newNicknameMessages["303"], "newnick"));
$participants = view.$('.participant-list');
expect($participants.children().length).toBe(0);
// The second presence shouldn't do anything...
presence = $pres().attrs({
from:'lounge@localhost/newnick',
id:'5B4F27A4-25ED-43F7-A699-382C6B4AFC67',
@ -224,9 +303,14 @@
role: 'participant'
}).up()
.c('status').attrs({code:'110'}).nodeTree;
view.onChatRoomPresence(presence, {nick: 'newnick', name: 'lounge@localhost'});
expect($chat_content.find('div.chat-info').length).toBe(1);
expect($chat_content.find('div.chat-info').html()).toBe('Your nickname has been changed to: <strong>newnick</strong>');
this.connection._dataRecv(test_utils.createRequest(presence));
expect(view.onChatRoomPresence).toHaveBeenCalled();
expect($chat_content.find('div.chat-info').length).toBe(2);
expect($chat_content.find('div.chat-info').last().html()).toBe(__(view.newNicknameMessages["303"], "newnick"));
$participants = view.$('.participant-list');
expect($participants.children().length).toBe(1);
expect($participants.children().first(0).text()).toBe("newnick");
}, converse));
it("informs users if they have been kicked out of the chat room", $.proxy(function () {
@ -278,7 +362,7 @@
// The chatboxes will then be fetched from browserStorage inside the
// onConnected method
newchatboxes.onConnected();
expect(newchatboxes.length).toEqual(2); // XXX: Includes controlbox, is this a bug?
expect(newchatboxes.length).toEqual(2);
// Check that the chatrooms retrieved from browserStorage
// have the same attributes values as the original ones.
attrs = ['id', 'box_id', 'visible'];
@ -332,7 +416,7 @@
var view = this.chatboxviews.get('lounge@localhost'), chatroom = view.model, $el;
spyOn(view, 'close').andCallThrough();
spyOn(converse, 'emit');
spyOn(converse.connection.muc, 'leave');
spyOn(view, 'leave');
view.delegateEvents(); // We need to rebind all events otherwise our spy won't be called
runs(function () {
view.$el.find('.close-chatbox-button').click();
@ -340,7 +424,7 @@
waits(50);
runs(function () {
expect(view.close).toHaveBeenCalled();
expect(this.connection.muc.leave).toHaveBeenCalled();
expect(view.leave).toHaveBeenCalled();
expect(this.emit).toHaveBeenCalledWith('chatBoxClosed', jasmine.any(Object));
}.bind(converse));
}, converse));

View File

@ -8,6 +8,8 @@
}
);
} (this, function ($, mock, test_utils) {
var $pres = converse_api.env.$pres;
var $iq = converse_api.env.$iq;
var checkHeaderToggling = function ($header) {
var $toggle = $header.find('a.group-toggle');
@ -971,10 +973,15 @@
describe("All Contacts", $.proxy(function () {
beforeEach($.proxy(function () {
utils.clearBrowserStorage();
converse.rosterview.model.reset();
utils.createContacts('all').openControlBox();
utils.openContactsPanel();
runs(function () {
utils.clearBrowserStorage();
converse.rosterview.model.reset();
utils.createContacts('all').openControlBox();
});
waits(50);
runs(function () {
utils.openContactsPanel();
});
}, converse));
it("are saved to, and can be retrieved from, browserStorage", $.proxy(function () {
@ -998,6 +1005,21 @@
expect(_.isEqual(new_attrs.sort(), old_attrs.sort())).toEqual(true);
}
}, converse));
it("will show fullname and jid properties on tooltip", $.proxy(function () {
var jid, name, i, t;
for (i=0; i<mock.cur_names.length; i++) {
name = mock.cur_names[i];
jid = name.replace(/ /g,'.').toLowerCase() + '@localhost';
var $dd = this.rosterview.$el.find("dd:contains('"+name+"')").children().first();
var dd_text = $dd.text();
var dd_title = $dd.attr('title');
expect(dd_text).toBe(name);
expect(dd_title).toContain(name);
expect(dd_title).toContain(jid);
}
}, converse));
}, converse));
}, converse, mock, test_utils));
@ -1054,15 +1076,10 @@
var $chatrooms = $panels.children().last();
spyOn(cbview, 'switchTab').andCallThrough();
cbview.delegateEvents(); // We need to rebind all events otherwise our spy won't be called
runs(function () {
$tabs.find('li').last().find('a').click(); // Clicks the chatrooms tab
});
waits(250);
runs(function () {
expect($contacts.is(':visible')).toBe(false);
expect($chatrooms.is(':visible')).toBe(true);
expect(cbview.switchTab).toHaveBeenCalled();
});
$tabs.find('li').last().find('a').click(); // Clicks the chatrooms tab
expect($contacts.is(':visible')).toBe(false);
expect($chatrooms.is(':visible')).toBe(true);
expect(cbview.switchTab).toHaveBeenCalled();
}, converse));
it("contains a form through which a new chatroom can be created", $.proxy(function () {
@ -1090,6 +1107,30 @@
expect($('.chatroom:visible').length).toBe(1); // There should now be an open chatroom
}, converse));
}, converse));
it("can list rooms publically available on the server", $.proxy(function () {
var panel = this.chatboxviews.get('controlbox').roomspanel;
panel.$tabs.find('li').last().find('a').click(); // Click the chatrooms tab
panel.model.set({'muc_domain': 'muc.localhost'}); // Make sure the domain is set
// See: http://xmpp.org/extensions/xep-0045.html#disco-rooms
expect($('#available-chatrooms').children('dt').length).toBe(0);
expect($('#available-chatrooms').children('dd').length).toBe(0);
var iq = $iq({
from:'muc.localhost',
to:'dummy@localhost/pda',
type:'result'
}).c('query')
.c('item', { jid:'heath@chat.shakespeare.lit', name:'A Lonely Heath'}).up()
.c('item', { jid:'coven@chat.shakespeare.lit', name:'A Dark Cave'}).up()
.c('item', { jid:'forres@chat.shakespeare.lit', name:'The Palace'}).up()
.c('item', { jid:'inverness@chat.shakespeare.lit', name:'Macbeth&apos;s Castle'}).nodeTree;
panel.onRoomsFound(iq);
expect(panel.$('#available-chatrooms').children('dt').length).toBe(1);
expect(panel.$('#available-chatrooms').children('dt').first().text()).toBe("Rooms on muc.localhost");
expect(panel.$('#available-chatrooms').children('dd').length).toBe(4);
}, converse));
}, converse));
}, converse, mock, test_utils));
}));

View File

@ -8,8 +8,9 @@
}
);
} (this, function ($, mock, test_utils) {
return describe("Converse", $.proxy(function(mock, test_utils) {
var b64_sha1 = converse_api.env.b64_sha1;
return describe("Converse", $.proxy(function(mock, test_utils) {
describe("The \"tokens\" API", $.proxy(function () {
beforeEach($.proxy(function () {
test_utils.closeAllChatBoxes();
@ -53,15 +54,29 @@
test_utils.createContacts('current');
}, converse));
it("has a method 'get' which returns a wrapped contact", $.proxy(function () {
// TODO: test multiple JIDs passed in
var jid = mock.cur_names[0].replace(/ /g,'.').toLowerCase() + '@localhost';
it("has a method 'get' which returns wrapped contacts", $.proxy(function () {
// Check that it returns nothing if a non-existing JID is given
expect(converse_api.contacts.get('non-existing@jabber.org')).toBeFalsy();
// Check when a single jid is given
var jid = mock.cur_names[0].replace(/ /g,'.').toLowerCase() + '@localhost';
var attrs = converse_api.contacts.get(jid);
expect(typeof attrs).toBe('object');
expect(attrs.fullname).toBe(mock.cur_names[0]);
expect(attrs.jid).toBe(jid);
// You can retrieve multiple contacts by passing in an array
var jid2 = mock.cur_names[1].replace(/ /g,'.').toLowerCase() + '@localhost';
var list = converse_api.contacts.get([jid, jid2]);
expect(Array.isArray(list)).toBeTruthy();
expect(list[0].fullname).toBe(mock.cur_names[0]);
expect(list[1].fullname).toBe(mock.cur_names[1]);
// Check that all JIDs are returned if you call without any parameters
list = converse_api.contacts.get();
expect(list.length).toBe(mock.cur_names.length);
}, converse));
}, converse));
describe("The \"chats\" API", $.proxy(function() {
@ -72,21 +87,53 @@
test_utils.createContacts('current');
}, converse));
it("has a method 'get' which returns a wrapped chat box object", $.proxy(function () {
// TODO: test multiple JIDs passed in
// FIXME: when a non-existing chat box is "get(ted)", it's
// opened, which we don't want...
expect(converse_api.chats.get('non-existing@jabber.org')).toBeFalsy(); // test on user that doesn't exist.
it("has a method 'get' which returns a wrapped chat box if it's already open", $.proxy(function () {
// Test on chat that doesn't exist.
expect(converse_api.chats.get('non-existing@jabber.org')).toBeFalsy();
// Test on chat that's not open
var jid = mock.cur_names[0].replace(/ /g,'.').toLowerCase() + '@localhost';
var box = converse_api.chats.get(jid);
expect(box).toBe(null);
// Test for single JID
test_utils.openChatBoxFor(jid);
box = converse_api.chats.get(jid);
expect(box instanceof Object).toBeTruthy();
expect(box.get('box_id')).toBe(b64_sha1(jid));
var chatboxview = this.chatboxviews.get(jid);
expect(chatboxview.$el.is(':visible')).toBeTruthy();
// Test for multiple JIDs
var jid2 = mock.cur_names[1].replace(/ /g,'.').toLowerCase() + '@localhost';
test_utils.openChatBoxFor(jid2);
var list = converse_api.chats.get([jid, jid2]);
expect(Array.isArray(list)).toBeTruthy();
expect(list[0].get('box_id')).toBe(b64_sha1(jid));
expect(list[1].get('box_id')).toBe(b64_sha1(jid2));
}, converse));
it("has a method 'open' which opens and returns a wrapped chat box", $.proxy(function () {
// Test on chat that doesn't exist.
expect(converse_api.chats.get('non-existing@jabber.org')).toBeFalsy();
var jid = mock.cur_names[0].replace(/ /g,'.').toLowerCase() + '@localhost';
var box = converse_api.chats.open(jid);
expect(box instanceof Object).toBeTruthy();
expect(box.get('box_id')).toBe(b64_sha1(jid));
var chatboxview = this.chatboxviews.get(jid);
expect(chatboxview.$el.is(':visible')).toBeTruthy();
// Test for multiple JIDs
var jid2 = mock.cur_names[1].replace(/ /g,'.').toLowerCase() + '@localhost';
var list = converse_api.chats.open([jid, jid2]);
expect(Array.isArray(list)).toBeTruthy();
expect(list[0].get('box_id')).toBe(b64_sha1(jid));
expect(list[1].get('box_id')).toBe(b64_sha1(jid2));
}, converse));
}, converse));
describe("The DEPRECATED API", $.proxy(function() {
describe("The \"settings\" API", $.proxy(function() {
beforeEach($.proxy(function () {
test_utils.closeAllChatBoxes();
test_utils.clearBrowserStorage();
@ -94,46 +141,18 @@
test_utils.createContacts('current');
}, converse));
it("has a method for retrieving the next RID", $.proxy(function () {
var old_connection = converse.connection;
converse.connection._proto.rid = '1234';
converse.expose_rid_and_sid = false;
expect(converse_api.getRID()).toBe(null);
converse.expose_rid_and_sid = true;
expect(converse_api.getRID()).toBe('1234');
converse.connection = undefined;
expect(converse_api.getRID()).toBe(null);
// Restore the connection
converse.connection = old_connection;
}, converse));
it("has a method for retrieving the SID", $.proxy(function () {
var old_connection = converse.connection;
converse.connection._proto.sid = '1234';
converse.expose_rid_and_sid = false;
expect(converse_api.getSID()).toBe(null);
converse.expose_rid_and_sid = true;
expect(converse_api.getSID()).toBe('1234');
converse.connection = undefined;
expect(converse_api.getSID()).toBe(null);
// Restore the connection
converse.connection = old_connection;
}, converse));
it("has a method for retrieving a buddy's attributes", $.proxy(function () {
var jid = mock.cur_names[0].replace(/ /g,'.').toLowerCase() + '@localhost';
expect(converse_api.getBuddy('non-existing@jabber.org')).toBeFalsy();
var attrs = converse_api.getBuddy(jid);
expect(typeof attrs).toBe('object');
expect(attrs.fullname).toBe(mock.cur_names[0]);
expect(attrs.jid).toBe(jid);
it("has methods 'get' and 'set' to set configuration settings", $.proxy(function () {
expect(Object.keys(converse_api.settings)).toEqual(["get", "set"]);
expect(converse_api.settings.get("play_sounds")).toBe(false);
converse_api.settings.set("play_sounds", true);
expect(converse_api.settings.get("play_sounds")).toBe(true);
converse_api.settings.set({"play_sounds": false});
expect(converse_api.settings.get("play_sounds")).toBe(false);
// Only whitelisted settings allowed.
expect(typeof converse_api.settings.get("non_existing")).toBe("undefined");
converse_api.settings.set("non_existing", true);
expect(typeof converse_api.settings.get("non_existing")).toBe("undefined");
}, converse));
}, converse));
}, converse, mock, test_utils));
}));

View File

@ -8,6 +8,8 @@
}
);
} (this, function ($, mock, test_utils) {
var $msg = converse_api.env.$msg;
return describe("The Minimized Chats Widget", $.proxy(function(mock, test_utils) {
beforeEach(function () {
runs(function () {

View File

@ -8,6 +8,8 @@
}
);
} (this, function ($, mock, test_utils) {
var b64_sha1 = converse_api.env.b64_sha1;
return describe("The OTR module", $.proxy(function(mock, test_utils) {
beforeEach($.proxy(function () {

View File

@ -8,6 +8,8 @@
}
);
} (this, function ($, mock, test_utils) {
var Strophe = converse_api.env.Strophe;
describe("Profiling", function() {
beforeEach(function() {
converse.connection.roster.items = [];

View File

@ -8,6 +8,8 @@
}
);
} (this, function ($, mock, test_utils) {
var Strophe = converse_api.env.Strophe;
var $iq = converse_api.env.$iq;
describe("The Registration Panel", $.proxy(function (mock, test_utils) {
beforeEach(function () {

29
spec/xmppstatus.js Normal file
View File

@ -0,0 +1,29 @@
(function (root, factory) {
define([
"jquery",
"mock",
"test_utils"
], function ($, mock, test_utils) {
return factory($, mock, test_utils);
}
);
} (this, function ($, mock, test_utils) {
return describe("The XMPPStatus model", $.proxy(function(mock, test_utils) {
beforeEach($.proxy(function () {
window.localStorage.clear();
window.sessionStorage.clear();
}, converse));
it("won't send <show>online when setting a custom status message", $.proxy(function () {
this.xmppstatus.save({'status': 'online'});
spyOn(this.xmppstatus, 'setStatusMessage').andCallThrough();
spyOn(converse.connection, 'send');
this.xmppstatus.setStatusMessage("I'm also happy!");
runs (function () {
expect(converse.connection.send).toHaveBeenCalled();
var $stanza = $(converse.connection.send.argsForCall[0][0].tree());
expect($stanza.children().length).toBe(1);
expect($stanza.children('show').length).toBe(0);
});
}, converse));
}, converse, mock, test_utils));
}));

View File

@ -3,21 +3,20 @@ define("converse-dependencies", [
"utils",
"otr",
"moment",
"locales",
"strophe",
"strophe.roster",
"strophe.vcard",
"strophe.disco",
"backbone.browserStorage",
"backbone.overview",
"jquery.browser",
"typeahead",
"strophe",
"strophe.muc",
"strophe.roster",
"strophe.vcard",
"strophe.disco"
], function($, utils, otr, moment) {
return {
"typeahead"
], function($, utils, otr, moment, Strophe) {
return _.extend({
'underscore': _,
'jQuery': $,
'moment': moment,
'otr': otr,
'moment': moment,
'utils': utils
};
}, Strophe);
});

View File

@ -2,21 +2,20 @@ define("converse-dependencies", [
"jquery",
"utils",
"moment",
"locales",
"strophe",
"strophe.roster",
"strophe.vcard",
"strophe.disco",
"backbone.browserStorage",
"backbone.overview",
"jquery.browser",
"typeahead",
"strophe",
"strophe.muc",
"strophe.roster",
"strophe.vcard",
"strophe.disco"
], function($, utils, moment) {
return {
"typeahead"
], function($, utils, moment, Strophe) {
return _.extend({
'underscore': _,
'jQuery': $,
'otr': undefined,
'moment': moment,
'utils': utils
};
}, Strophe);
});

View File

@ -2,23 +2,22 @@ define("converse-dependencies", [
"jquery",
"utils",
"moment",
"locales",
"strophe",
"strophe.roster",
"strophe.vcard",
"strophe.disco",
"bootstrapJS", // XXX: Can be removed, only for https://conversejs.org
"backbone.browserStorage",
"backbone.overview",
"jquery.browser",
"jquery.easing", // XXX: Can be removed, only for https://conversejs.org
"typeahead",
"strophe",
"strophe.muc",
"strophe.roster",
"strophe.vcard",
"strophe.disco"
], function($, utils, moment) {
return {
"typeahead"
], function($, utils, moment, Strophe) {
return _.extend({
'underscore': _,
'jQuery': $,
'otr': undefined,
'otr': otr,
'moment': moment,
'utils': utils
};
}, Strophe);
});

View File

@ -1,25 +1,25 @@
define("converse-dependencies", [
"jquery",
"underscore",
"utils",
"otr",
"moment",
"locales",
"strophe",
"strophe.roster",
"strophe.vcard",
"strophe.disco",
"bootstrapJS", // XXX: Only for https://conversejs.org
"backbone.browserStorage",
"backbone.overview",
"jquery.browser",
"jquery.easing", // XXX: Only for https://conversejs.org
"typeahead",
"strophe",
"strophe.muc",
"strophe.roster",
"strophe.vcard",
"strophe.disco"
], function($, utils, otr, moment) {
return {
"typeahead"
], function($, _, utils, otr, moment, Strophe) {
return _.extend({
'underscore': _,
'jQuery': $,
'otr': otr,
'moment': moment,
'utils': utils
};
}, Strophe);
});

Some files were not shown because too many files have changed in this diff Show More