1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/movim_ynh.git synced 2024-09-03 19:46:19 +02:00

update to movim upstream

This commit is contained in:
src386 2016-05-30 10:41:49 +02:00
parent 5e3ba4dbbf
commit 8199555816
80 changed files with 2235 additions and 480 deletions

View file

@ -1,7 +1,7 @@
**Changelog**
1.9 2016-*
- Update to movim 0.9 git2016-05-19
- Update to movim 0.9 git2016-05-30
1.8 2016-04-15
- Update to movim 0.9 git2016-04-15

View file

@ -5,7 +5,7 @@ Movim is a decentralized social network, written in PHP and HTML5 and based on t
It is recommended to use a "valid" certificate to use Movim, auto-signed is sometimes problematic. You might want to take a look a StartSSL or Let's Encrypt.
Provided Movim version : 0.9 git2016-05-19
Provided Movim version : 0.9 git2016-05-30
Please read CHANGELOG.

View file

@ -3,8 +3,12 @@ Movim Changelog
v0.9.1 (trunk)
---------------------------
* Fix behaviour for Android and Electron packages
* Fix Pubsub metadata handling for some XMPP servers
* Add global search
* Add silent notifications for chatrooms
* Add alternate nickname support (adding "_") when joining a chatroom
* Allow room configuration edition
* Put your own XMPP server as default in the configuration (movim.eu in fallback)
* Close the Dialog box when pressing ESC
* Moving values from Sessionx to Session

View file

@ -493,9 +493,22 @@ class ContactDAO extends SQL {
rosterlink.rostername,
rosterlink.rostersubscription,
rosterlink.groupname,
rosterlink.chaton
rosterlink.chaton,
presence.value,
presence.delay,
presence.last
from rosterlink
left outer join contact
left outer join (
select a.*
from presence a
join (
select jid, min( id ) as id
from presence
where session = :session
group by jid
) as b on ( a.id = b.id )
) presence on contact.jid = presence.jid
on rosterlink.jid = contact.jid
where rosterlink.session = :session
and (rosterlink.jid like :jid

View file

@ -32,6 +32,8 @@
$this->addCss('block.css');
$this->addCss('menu.css');
$this->addCss('fonts.css');
$this->addCss('title.css');
$this->addCss('typo.css');
$this->addCss('material-design-iconic-font.min.css');
$this->widget('System');

View file

@ -1,5 +1,5 @@
<section class="scroll">
<form name="command" data-sessionid="{$attributes->sessionid}" data-node="{$attributes->node}">
<form name="command" data-sessionid="{$attributes->sessionid}" data-node="{$attributes->node}" onsubmit="return false;">
{$form}
</form>
</section>

View file

@ -177,13 +177,12 @@ class Chat extends \Movim\Widget\Base
if($jid == null) {
RPC::call('movim_fill', 'chat_widget', $this->prepareEmpty());
} else {
$n = new Notification;
$n->ajaxCurrent('chat|'.$jid);
$n->ajaxClear('chat|'.$jid);
$chats = new Chats;
$chats->ajaxGetHistory($jid);
$notif = new Notification;
$notif->ajaxClear('chat|'.$jid);
$html = $this->prepareChat($jid);
RPC::call('movim_push_state', $this->route('chat', $jid));

View file

@ -36,6 +36,14 @@
</ul>
<ul class="list context_menu active">
{if="$presence != null && $presence->mucrole == 'moderator' && !$anon"}
<li onclick="Chat_ajaxGetRoomConfig('{$room}')">
<p class="normal">{$c->__('chatroom.administration')}</p>
</li>
<li class="divided" onclick="Chat_ajaxGetSubject('{$room}')">
<p class="normal">{$c->__('chatroom.subject')}</p>
</li>
{/if}
<li onclick="Rooms_ajaxList('{$room}')">
<p class="normal">{$c->__('chatroom.members')}</p>
</li>
@ -44,14 +52,9 @@
<p class="normal">{$c->__('button.delete')}</p>
</li>
{/if}
{if="$presence != null && $presence->mucrole == 'moderator' && !$anon"}
<li onclick="Chat_ajaxGetRoomConfig('{$room}')">
<li onclick="Rooms_ajaxEdit('{$room}');">
<p class="normal">{$c->__('chatroom.config')}</p>
</li>
<li onclick="Chat_ajaxGetSubject('{$room}')">
<p class="normal">{$c->__('chatroom.subject')}</p>
</li>
{/if}
</ul>
{else}
<ul class="list middle">

View file

@ -95,9 +95,8 @@ var Chat = {
id = message.jidfrom + '_conversation';
if(message.body.match(/^\/me/)
&& bubble.querySelector('div') != null) {
bubble.querySelector('div').className = 'quote';
if(message.body.match(/^\/me/)) {
bubble.querySelector('.message').className = 'message quote';
message.body = message.body.substr(4);
}
@ -132,7 +131,7 @@ var Chat = {
}
if(message.body.match(/^\/me\s/)) {
bubble.querySelector('div.bubble').className = 'bubble quote';
bubble.querySelector('div.bubble > p').className = 'quote';
message.body = message.body.substr(4);
}

View file

@ -22,3 +22,4 @@ config = Configuration
config_saved = Configuration saved
subject = Subject
subject_changed = Subject changed
administration = Administration

View file

@ -14,6 +14,7 @@ var Chats = {
Chat_ajaxGet(this.dataset.jid);
Chats.reset(items);
Notification_ajaxClear('chat|' + this.dataset.jid);
Notification.current('chat|' + this.dataset.jid);
document.querySelector('#chat_widget').dataset.jid = this.dataset.jid;
movim_add_class(this, 'active');

View file

@ -1,14 +1,11 @@
<section>
<form name="subscribe" onsubmit="return false;">
<h3>{$c->__('group.subscribe')}</h3>
{if="$item"}
<br />
<h4 class="gray">
{$item->name}
</h4>
{/if}
<ul class="simple">
<li>
<form name="subscribe">
<div>
<input
name="label"
@ -22,8 +19,6 @@
<label for="label">{$c->__('group.label_label')}</label>
</div>
</form>
</li>
</ul>
</section>
<div>
<a onclick="Dialog.clear()" class="button flat">

View file

@ -44,7 +44,7 @@ body main {
min-height: 0;
}
#login_widget form ul input {
#login_widget form ul input:not([type=submit]) {
margin: 0;
height: 5rem;
}

View file

@ -7,16 +7,12 @@
<p class="center line">{$c->__('page.news')}</p>
</li>
</ul>
<ul>
<li>
<ul class="tabs wide">
<li {if="$type == 'all'"}class="active"{/if}><a href="#" onclick="Menu_ajaxGetAll()">{$c->__('menu.all')}</a></li>
<li {if="$type == 'news'"}class="active"{/if} ><a href="#" onclick="Menu_ajaxGetNews()" title="{$c->__('page.news')}"><i class="zmdi zmdi-pages"></i></a></li>
<li {if="$type == 'feed'"}class="active"{/if}><a href="#" onclick="Menu_ajaxGetFeed()" title="{$c->__('page.feed')}"><i class="zmdi zmdi-accounts"></i></a></li>
<li {if="$type == 'me'"}class="active"{/if}><a href="#" onclick="Menu_ajaxGetMe()" title="{$c->__('menu.mine')}"><i class="zmdi zmdi-edit"></i></a></li>
</ul>
</li>
</ul>
</header>
{/if}

View file

@ -23,7 +23,7 @@ var Notification = {
},
sec*1000);
},
refresh : function(keys) {
refresh : function(keys) {console.log(keys);
var counters = document.querySelectorAll('.counter');
for(i = 0; i < counters.length; i++) {
var n = counters[i];
@ -155,7 +155,7 @@ if(typeof MovimWebsocket != 'undefined') {
}
if(typeof require !== 'undefined') {
var remote = require('remote');
var remote = require('electron').remote;
Notification.electron = remote.getCurrentWindow();
}

View file

@ -89,6 +89,20 @@ class Rooms extends \Movim\Widget\Base
Dialog::fill($view->draw('_rooms_add', true));
}
/**
* @brief Edit a room configuration
*/
function ajaxEdit($room)
{
$view = $this->tpl();
$cd = new \Modl\ConferenceDAO;
$view->assign('room', $cd->get($room));
$view->assign('username', $this->user->getUser());
Dialog::fill($view->draw('_rooms_add', true));
}
/**
* @brief Display the remove room confirmation
*/
@ -181,6 +195,9 @@ class Rooms extends \Movim\Widget\Base
} elseif(trim($form['name']) == '') {
Notification::append(null, $this->__('chatrooms.empty_name'));
} else {
$cd = new \Modl\ConferenceDAO;
$cd->deleteNode($form['jid']);
$item = array(
'type' => 'conference',
'name' => $form['name'],

View file

@ -1,17 +1,37 @@
<section>
<form name="bookmarkmucadd">
{if="isset($room)"}
<h3>{$c->__('rooms.edit')}</h3>
{else}
<h3>{$c->__('rooms.add')}</h3>
{/if}
<div>
<input name="jid" placeholder="chatroom@server.com" type="email" required />
<input
{if="isset($room)"}value="{$room->conference}" disabled{/if}
name="jid"
placeholder="chatroom@server.com"
type="email"
required />
<label>{$c->__('chatrooms.id')}</label>
</div>
<div>
<input name="name" placeholder="{$c->__('chatrooms.name_placeholder')}" required />
<input
{if="isset($room)"}value="{$room->name}"{/if}
name="name"
placeholder="{$c->__('chatrooms.name_placeholder')}"
required />
<label>{$c->__('chatrooms.name')}</label>
</div>
<div>
<input name="nick" placeholder="{$username}" value="{$username}"/>
<input
{if="isset($room) && !empty($room->username)"}
value="{$room->conference}"
{else}
value="{$username}"
{/if}
name="nick"
placeholder="{$username}"/>
<label>{$c->__('chatrooms.nickname')}</label>
</div>
<!--
@ -28,11 +48,19 @@
<a class="button flat" onclick="Dialog.clear()">
{$c->__('button.close')}
</a>
{if="isset($room)"}
<a
class="button flat"
onclick="Rooms_ajaxChatroomAdd(movim_parse_form('bookmarkmucadd'));">
{$c->__('button.edit')}
</a>
{else}
<a
class="button flat"
onclick="Rooms_ajaxChatroomAdd(movim_parse_form('bookmarkmucadd'));">
{$c->__('button.add')}
</a>
{/if}
</div>
</div>

View file

@ -1,5 +1,6 @@
[rooms]
add = Add a chatroom
edit = Edit a chatroom
empty_text1 = "You don't have any chatroom yet."
empty_text2 = Add one by clicking on the add button.

View file

@ -29,6 +29,7 @@ class Search extends \Movim\Widget\Base
$view->assign('empty', true);
} else {
$view->assign('empty', false);
$view->assign('presencestxt', getPresencesTxt());
$pd = new PostnDAO;
$posts = $pd->search($key);

View file

@ -38,11 +38,17 @@
<li>
{$url = $value->getPhoto('s')}
{if="$url"}
<span class="primary icon bubble">
<span class="primary icon bubble
{if="$value->value"}
status {$presencestxt[$value->value]}
{/if}">
<img src="{$url}">
</span>
{else}
<span class="primary icon bubble color {$valu->jid|stringToColor}">
<span class="primary icon bubble color {$value->jid|stringToColor}
{if="$value->value"}
status {$presencestxt[$value->value]}
{/if}">
<i class="zmdi zmdi-account"></i>
</span>
{/if}

View file

@ -12,9 +12,11 @@
</ul>
<ul class="list flex third active">
{loop="$stickers"}
{if="strlen($value) == 44"}
<li class="block" onclick="Stickers_ajaxSend('{$jid}', '{$value}'); Dialog.clear();">
<img class="sticker" src="{$path}{$value}"/>
</li>
{/if}
{/loop}
<li class="block large">
<span class="primary icon gray">

28
sources/composer.lock generated
View file

@ -9,16 +9,16 @@
"packages": [
{
"name": "cboden/ratchet",
"version": "v0.3.4",
"version": "v0.3.5",
"source": {
"type": "git",
"url": "https://github.com/ratchetphp/Ratchet.git",
"reference": "a177819dd0e6eb1d7e4192aeafadfa43a84867f1"
"reference": "b5ccecad9390db85d2c8df7cbeb047292fbbf4b8"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/ratchetphp/Ratchet/zipball/a177819dd0e6eb1d7e4192aeafadfa43a84867f1",
"reference": "a177819dd0e6eb1d7e4192aeafadfa43a84867f1",
"url": "https://api.github.com/repos/ratchetphp/Ratchet/zipball/b5ccecad9390db85d2c8df7cbeb047292fbbf4b8",
"reference": "b5ccecad9390db85d2c8df7cbeb047292fbbf4b8",
"shasum": ""
},
"require": {
@ -53,7 +53,7 @@
"server",
"sockets"
],
"time": "2015-12-23 15:06:48"
"time": "2016-05-25 12:55:03"
},
{
"name": "cocur/slugify",
@ -124,12 +124,12 @@
"source": {
"type": "git",
"url": "https://github.com/oscarotero/Embed.git",
"reference": "a76bf06a3941315f1dda96e3bcca85e760792875"
"reference": "7dc18c9dc0e713dafc25ea4d0d3c8dc0126471ec"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/oscarotero/Embed/zipball/a76bf06a3941315f1dda96e3bcca85e760792875",
"reference": "a76bf06a3941315f1dda96e3bcca85e760792875",
"url": "https://api.github.com/repos/oscarotero/Embed/zipball/7dc18c9dc0e713dafc25ea4d0d3c8dc0126471ec",
"reference": "7dc18c9dc0e713dafc25ea4d0d3c8dc0126471ec",
"shasum": ""
},
"require": {
@ -170,7 +170,7 @@
"opengraph",
"twitter cards"
],
"time": "2016-05-09 14:46:41"
"time": "2016-05-27 14:39:28"
},
{
"name": "evenement/evenement",
@ -573,7 +573,7 @@
"shasum": ""
},
"require": {
"php": ">=5.3.0"
"php": ">=5.4.0"
},
"require-dev": {
"phpunit/phpunit": "~4.4"
@ -768,12 +768,12 @@
"source": {
"type": "git",
"url": "https://github.com/movim/moxl.git",
"reference": "25cc10feda6eedcdf9b42546f5101f5c9f6a0655"
"reference": "73b822c94adaf4eec55f08c6abb80470e8e423f1"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/movim/moxl/zipball/25cc10feda6eedcdf9b42546f5101f5c9f6a0655",
"reference": "25cc10feda6eedcdf9b42546f5101f5c9f6a0655",
"url": "https://api.github.com/repos/movim/moxl/zipball/73b822c94adaf4eec55f08c6abb80470e8e423f1",
"reference": "73b822c94adaf4eec55f08c6abb80470e8e423f1",
"shasum": ""
},
"require": {
@ -808,7 +808,7 @@
"php",
"xmpp"
],
"time": "2016-05-10 22:04:45"
"time": "2016-05-24 05:49:57"
},
{
"name": "movim/sasl2",

View file

@ -49,7 +49,7 @@ $core = new Core($loop, $argv[1], $argv[2]);
$app = new HttpServer(new WsServer($core));
$socket = new Reactor($loop);
$socket->listen($argv[2], '0.0.0.0');
$socket->listen($argv[2], '127.0.0.1');
$socketApi = new Reactor($loop);
new Api($socketApi, $core);

View file

@ -110,29 +110,13 @@ class XMPPtoForm{
$div->appendChild($label);
}
private function outTitle($s){
$ul = $this->html->createElement('ul');
$ul->setAttribute('class', 'list thin');
$this->html->appendChild($ul);
$li = $this->html->createElement('li');
$title = $this->html->createElement('p', $s);
$title->setAttribute('class', 'normal line');
$li->appendChild($title);
$ul->appendChild($li);
$title = $this->html->createElement('h3', $s);
$this->html->appendChild($title);
}
private function outP($s){
$ul = $this->html->createElement('ul');
$ul->setAttribute('class', 'list thin');
$this->html->appendChild($ul);
$li = $this->html->createElement('li');
$ul->appendChild($li);
$title = $this->html->createElement('p', $s);
$title->setAttribute('class', 'normal line');
$li->appendChild($title);
$this->html->appendChild($title);
}
private function outUrl($s) {
@ -215,7 +199,7 @@ class XMPPtoForm{
$container->appendChild($label);
}
private function outInput($s, $type, $multiple){
private function outInput($s, $type = false, $multiple){
$container = $this->html->createElement('div');
$this->html->appendChild($container);
@ -224,7 +208,12 @@ class XMPPtoForm{
$input->setAttribute('name', $s['var']);
$input->setAttribute('type', $type);
$input->setAttribute('title', $s->desc);
if($type) {
$input->setAttribute('type', $type);
} else {
$input->setAttribute('type', $s['type']);
}
$input->setAttribute('label', $s['label']);
if($s->required)

View file

@ -57,6 +57,8 @@
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
#. extracted from ../app/widgets/Roster/locales.ini
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
#. extracted from ../app/widgets/Search/locales.ini
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
#. extracted from ../app/widgets/Share/locales.ini
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
#. extracted from ../app/widgets/Statistics/locales.ini
@ -76,7 +78,7 @@ msgid ""
msgstr ""
"Project-Id-Version: movim\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-04-08 08:29+0200\n"
"POT-Creation-Date: 2016-05-24 08:36+0200\n"
"PO-Revision-Date: 2016-03-23 22:27+0000\n"
"Last-Translator: Jaussoin Timothée <edhelas@movim.eu>\n"
"Language-Team: Acoli (http://www.transifex.com/movim/movim/language/ach/)\n"
@ -305,7 +307,7 @@ msgid "Retype password"
msgstr ""
#: [whitelist]title
msgid "Whitelist - XMPP Server"
msgid "Whitelisted XMPP Servers"
msgstr ""
#: [whitelist]info1
@ -342,6 +344,22 @@ msgctxt "[information]label"
msgid "Information Message"
msgstr ""
#: [xmpp]title
msgid "Default XMPP server"
msgstr ""
#: [xmpp]domain
msgid "Main XMPP server domain"
msgstr ""
#: [xmpp]description
msgid "Main XMPP server description"
msgstr ""
#: [xmpp]country
msgid "Main XMPP server country"
msgstr ""
#: [log]empty
msgid "Empty"
msgstr ""
@ -950,7 +968,7 @@ msgid "My Subscriptions"
msgstr ""
#: [groups]add
msgid "Create a new Group"
msgid "Create a new Group on %s"
msgstr ""
#: [groups]name
@ -1443,6 +1461,10 @@ msgstr ""
msgid "Add a chatroom"
msgstr ""
#: [rooms]edit
msgid "Edit a chatroom"
msgstr ""
#: [rooms]empty_text1
msgid "You don't have any chatroom yet."
msgstr ""
@ -1563,6 +1585,14 @@ msgstr ""
msgid "Search a contact"
msgstr ""
#: [search]keyword
msgid "What are you looking for?"
msgstr ""
#: [search]subtitle
msgid "Open me using Ctrl + M"
msgstr ""
#: [share]error
msgid "This is not a valid url"
msgstr ""
@ -1875,6 +1905,10 @@ msgstr ""
msgid "Previous"
msgstr ""
#: [button]search
msgid "Search"
msgstr ""
#: [day]title
msgid "Day"
msgstr ""

View file

@ -57,6 +57,8 @@
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
#. extracted from ../app/widgets/Roster/locales.ini
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
#. extracted from ../app/widgets/Search/locales.ini
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
#. extracted from ../app/widgets/Share/locales.ini
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
#. extracted from ../app/widgets/Statistics/locales.ini
@ -76,7 +78,7 @@ msgid ""
msgstr ""
"Project-Id-Version: movim\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-04-08 08:29+0200\n"
"POT-Creation-Date: 2016-05-24 08:36+0200\n"
"PO-Revision-Date: 2016-03-23 22:27+0000\n"
"Last-Translator: Jaussoin Timothée <edhelas@movim.eu>\n"
"Language-Team: Adyghe (http://www.transifex.com/movim/movim/language/ady/)\n"
@ -305,7 +307,7 @@ msgid "Retype password"
msgstr ""
#: [whitelist]title
msgid "Whitelist - XMPP Server"
msgid "Whitelisted XMPP Servers"
msgstr ""
#: [whitelist]info1
@ -342,6 +344,22 @@ msgctxt "[information]label"
msgid "Information Message"
msgstr ""
#: [xmpp]title
msgid "Default XMPP server"
msgstr ""
#: [xmpp]domain
msgid "Main XMPP server domain"
msgstr ""
#: [xmpp]description
msgid "Main XMPP server description"
msgstr ""
#: [xmpp]country
msgid "Main XMPP server country"
msgstr ""
#: [log]empty
msgid "Empty"
msgstr ""
@ -950,7 +968,7 @@ msgid "My Subscriptions"
msgstr ""
#: [groups]add
msgid "Create a new Group"
msgid "Create a new Group on %s"
msgstr ""
#: [groups]name
@ -1443,6 +1461,10 @@ msgstr ""
msgid "Add a chatroom"
msgstr ""
#: [rooms]edit
msgid "Edit a chatroom"
msgstr ""
#: [rooms]empty_text1
msgid "You don't have any chatroom yet."
msgstr ""
@ -1563,6 +1585,14 @@ msgstr ""
msgid "Search a contact"
msgstr ""
#: [search]keyword
msgid "What are you looking for?"
msgstr ""
#: [search]subtitle
msgid "Open me using Ctrl + M"
msgstr ""
#: [share]error
msgid "This is not a valid url"
msgstr ""
@ -1875,6 +1905,10 @@ msgstr ""
msgid "Previous"
msgstr ""
#: [button]search
msgid "Search"
msgstr ""
#: [day]title
msgid "Day"
msgstr ""

View file

@ -57,6 +57,8 @@
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
#. extracted from ../app/widgets/Roster/locales.ini
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
#. extracted from ../app/widgets/Search/locales.ini
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
#. extracted from ../app/widgets/Share/locales.ini
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
#. extracted from ../app/widgets/Statistics/locales.ini
@ -76,7 +78,7 @@ msgid ""
msgstr ""
"Project-Id-Version: movim\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-04-08 08:29+0200\n"
"POT-Creation-Date: 2016-05-24 08:36+0200\n"
"PO-Revision-Date: 2016-03-23 22:27+0000\n"
"Last-Translator: Jaussoin Timothée <edhelas@movim.eu>\n"
"Language-Team: Afrikaans (http://www.transifex.com/movim/movim/language/af/)\n"
@ -305,7 +307,7 @@ msgid "Retype password"
msgstr ""
#: [whitelist]title
msgid "Whitelist - XMPP Server"
msgid "Whitelisted XMPP Servers"
msgstr ""
#: [whitelist]info1
@ -342,6 +344,22 @@ msgctxt "[information]label"
msgid "Information Message"
msgstr ""
#: [xmpp]title
msgid "Default XMPP server"
msgstr ""
#: [xmpp]domain
msgid "Main XMPP server domain"
msgstr ""
#: [xmpp]description
msgid "Main XMPP server description"
msgstr ""
#: [xmpp]country
msgid "Main XMPP server country"
msgstr ""
#: [log]empty
msgid "Empty"
msgstr ""
@ -950,7 +968,7 @@ msgid "My Subscriptions"
msgstr ""
#: [groups]add
msgid "Create a new Group"
msgid "Create a new Group on %s"
msgstr ""
#: [groups]name
@ -1443,6 +1461,10 @@ msgstr ""
msgid "Add a chatroom"
msgstr ""
#: [rooms]edit
msgid "Edit a chatroom"
msgstr ""
#: [rooms]empty_text1
msgid "You don't have any chatroom yet."
msgstr ""
@ -1563,6 +1585,14 @@ msgstr ""
msgid "Search a contact"
msgstr ""
#: [search]keyword
msgid "What are you looking for?"
msgstr ""
#: [search]subtitle
msgid "Open me using Ctrl + M"
msgstr ""
#: [share]error
msgid "This is not a valid url"
msgstr ""
@ -1875,6 +1905,10 @@ msgstr ""
msgid "Previous"
msgstr ""
#: [button]search
msgid "Search"
msgstr ""
#: [day]title
msgid "Day"
msgstr ""

View file

@ -58,6 +58,8 @@
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
#. extracted from ../app/widgets/Roster/locales.ini
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
#. extracted from ../app/widgets/Search/locales.ini
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
#. extracted from ../app/widgets/Share/locales.ini
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
#. extracted from ../app/widgets/Statistics/locales.ini
@ -77,7 +79,7 @@ msgid ""
msgstr ""
"Project-Id-Version: movim\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-04-08 08:29+0200\n"
"POT-Creation-Date: 2016-05-24 08:36+0200\n"
"PO-Revision-Date: 2016-03-23 22:27+0000\n"
"Last-Translator: Jaussoin Timothée <edhelas@movim.eu>\n"
"Language-Team: Arabic (http://www.transifex.com/movim/movim/language/ar/)\n"
@ -306,7 +308,7 @@ msgid "Retype password"
msgstr "أعِد كتابة كلمة السر"
#: [whitelist]title
msgid "Whitelist - XMPP Server"
msgid "Whitelisted XMPP Servers"
msgstr ""
#: [whitelist]info1
@ -343,6 +345,22 @@ msgctxt "[information]label"
msgid "Information Message"
msgstr ""
#: [xmpp]title
msgid "Default XMPP server"
msgstr ""
#: [xmpp]domain
msgid "Main XMPP server domain"
msgstr ""
#: [xmpp]description
msgid "Main XMPP server description"
msgstr ""
#: [xmpp]country
msgid "Main XMPP server country"
msgstr ""
#: [log]empty
msgid "Empty"
msgstr ""
@ -951,8 +969,9 @@ msgid "My Subscriptions"
msgstr ""
#: [groups]add
msgid "Create a new Group"
msgstr ""
#, fuzzy
msgid "Create a new Group on %s"
msgstr "أنشئ حسابًا جديدًا"
#: [groups]name
msgid "Group name"
@ -1444,6 +1463,10 @@ msgstr ""
msgid "Add a chatroom"
msgstr ""
#: [rooms]edit
msgid "Edit a chatroom"
msgstr ""
#: [rooms]empty_text1
msgid "You don't have any chatroom yet."
msgstr ""
@ -1564,6 +1587,14 @@ msgstr ""
msgid "Search a contact"
msgstr ""
#: [search]keyword
msgid "What are you looking for?"
msgstr ""
#: [search]subtitle
msgid "Open me using Ctrl + M"
msgstr ""
#: [share]error
msgid "This is not a valid url"
msgstr ""
@ -1876,6 +1907,11 @@ msgstr ""
msgid "Previous"
msgstr ""
#: [button]search
#, fuzzy
msgid "Search"
msgstr "مارس"
#: [day]title
msgid "Day"
msgstr "يوم"

View file

@ -57,6 +57,8 @@
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
#. extracted from ../app/widgets/Roster/locales.ini
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
#. extracted from ../app/widgets/Search/locales.ini
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
#. extracted from ../app/widgets/Share/locales.ini
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
#. extracted from ../app/widgets/Statistics/locales.ini
@ -76,7 +78,7 @@ msgid ""
msgstr ""
"Project-Id-Version: movim\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-04-08 08:29+0200\n"
"POT-Creation-Date: 2016-05-24 08:36+0200\n"
"PO-Revision-Date: 2016-03-23 22:27+0000\n"
"Last-Translator: Jaussoin Timothée <edhelas@movim.eu>\n"
"Language-Team: Belarusian (http://www.transifex.com/movim/movim/language/be/)\n"
@ -305,7 +307,7 @@ msgid "Retype password"
msgstr ""
#: [whitelist]title
msgid "Whitelist - XMPP Server"
msgid "Whitelisted XMPP Servers"
msgstr ""
#: [whitelist]info1
@ -342,6 +344,22 @@ msgctxt "[information]label"
msgid "Information Message"
msgstr ""
#: [xmpp]title
msgid "Default XMPP server"
msgstr ""
#: [xmpp]domain
msgid "Main XMPP server domain"
msgstr ""
#: [xmpp]description
msgid "Main XMPP server description"
msgstr ""
#: [xmpp]country
msgid "Main XMPP server country"
msgstr ""
#: [log]empty
msgid "Empty"
msgstr ""
@ -950,7 +968,7 @@ msgid "My Subscriptions"
msgstr ""
#: [groups]add
msgid "Create a new Group"
msgid "Create a new Group on %s"
msgstr ""
#: [groups]name
@ -1443,6 +1461,10 @@ msgstr ""
msgid "Add a chatroom"
msgstr ""
#: [rooms]edit
msgid "Edit a chatroom"
msgstr ""
#: [rooms]empty_text1
msgid "You don't have any chatroom yet."
msgstr ""
@ -1563,6 +1585,14 @@ msgstr ""
msgid "Search a contact"
msgstr ""
#: [search]keyword
msgid "What are you looking for?"
msgstr ""
#: [search]subtitle
msgid "Open me using Ctrl + M"
msgstr ""
#: [share]error
msgid "This is not a valid url"
msgstr ""
@ -1875,6 +1905,10 @@ msgstr ""
msgid "Previous"
msgstr ""
#: [button]search
msgid "Search"
msgstr ""
#: [day]title
msgid "Day"
msgstr ""

View file

@ -58,6 +58,8 @@
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
#. extracted from ../app/widgets/Roster/locales.ini
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
#. extracted from ../app/widgets/Search/locales.ini
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
#. extracted from ../app/widgets/Share/locales.ini
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
#. extracted from ../app/widgets/Statistics/locales.ini
@ -77,7 +79,7 @@ msgid ""
msgstr ""
"Project-Id-Version: movim\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-04-08 08:29+0200\n"
"POT-Creation-Date: 2016-05-24 08:36+0200\n"
"PO-Revision-Date: 2016-03-23 22:27+0000\n"
"Last-Translator: Jaussoin Timothée <edhelas@movim.eu>\n"
"Language-Team: Bulgarian (http://www.transifex.com/movim/movim/language/bg/)\n"
@ -306,7 +308,7 @@ msgid "Retype password"
msgstr ""
#: [whitelist]title
msgid "Whitelist - XMPP Server"
msgid "Whitelisted XMPP Servers"
msgstr ""
#: [whitelist]info1
@ -343,6 +345,22 @@ msgctxt "[information]label"
msgid "Information Message"
msgstr ""
#: [xmpp]title
msgid "Default XMPP server"
msgstr ""
#: [xmpp]domain
msgid "Main XMPP server domain"
msgstr ""
#: [xmpp]description
msgid "Main XMPP server description"
msgstr ""
#: [xmpp]country
msgid "Main XMPP server country"
msgstr ""
#: [log]empty
msgid "Empty"
msgstr ""
@ -951,7 +969,7 @@ msgid "My Subscriptions"
msgstr ""
#: [groups]add
msgid "Create a new Group"
msgid "Create a new Group on %s"
msgstr ""
#: [groups]name
@ -1444,6 +1462,10 @@ msgstr ""
msgid "Add a chatroom"
msgstr ""
#: [rooms]edit
msgid "Edit a chatroom"
msgstr ""
#: [rooms]empty_text1
msgid "You don't have any chatroom yet."
msgstr ""
@ -1564,6 +1586,14 @@ msgstr ""
msgid "Search a contact"
msgstr ""
#: [search]keyword
msgid "What are you looking for?"
msgstr ""
#: [search]subtitle
msgid "Open me using Ctrl + M"
msgstr ""
#: [share]error
msgid "This is not a valid url"
msgstr ""
@ -1876,6 +1906,10 @@ msgstr ""
msgid "Previous"
msgstr ""
#: [button]search
msgid "Search"
msgstr ""
#: [day]title
msgid "Day"
msgstr ""

View file

@ -58,6 +58,8 @@
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
#. extracted from ../app/widgets/Roster/locales.ini
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
#. extracted from ../app/widgets/Search/locales.ini
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
#. extracted from ../app/widgets/Share/locales.ini
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
#. extracted from ../app/widgets/Statistics/locales.ini
@ -77,7 +79,7 @@ msgid ""
msgstr ""
"Project-Id-Version: movim\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-04-08 08:29+0200\n"
"POT-Creation-Date: 2016-05-24 08:36+0200\n"
"PO-Revision-Date: 2016-03-23 22:27+0000\n"
"Last-Translator: Jaussoin Timothée <edhelas@movim.eu>\n"
"Language-Team: Bengali (http://www.transifex.com/movim/movim/language/bn/)\n"
@ -306,7 +308,7 @@ msgid "Retype password"
msgstr ""
#: [whitelist]title
msgid "Whitelist - XMPP Server"
msgid "Whitelisted XMPP Servers"
msgstr ""
#: [whitelist]info1
@ -343,6 +345,22 @@ msgctxt "[information]label"
msgid "Information Message"
msgstr ""
#: [xmpp]title
msgid "Default XMPP server"
msgstr ""
#: [xmpp]domain
msgid "Main XMPP server domain"
msgstr ""
#: [xmpp]description
msgid "Main XMPP server description"
msgstr ""
#: [xmpp]country
msgid "Main XMPP server country"
msgstr ""
#: [log]empty
msgid "Empty"
msgstr ""
@ -951,7 +969,7 @@ msgid "My Subscriptions"
msgstr ""
#: [groups]add
msgid "Create a new Group"
msgid "Create a new Group on %s"
msgstr ""
#: [groups]name
@ -1444,6 +1462,10 @@ msgstr ""
msgid "Add a chatroom"
msgstr ""
#: [rooms]edit
msgid "Edit a chatroom"
msgstr ""
#: [rooms]empty_text1
msgid "You don't have any chatroom yet."
msgstr ""
@ -1564,6 +1586,14 @@ msgstr ""
msgid "Search a contact"
msgstr ""
#: [search]keyword
msgid "What are you looking for?"
msgstr ""
#: [search]subtitle
msgid "Open me using Ctrl + M"
msgstr ""
#: [share]error
msgid "This is not a valid url"
msgstr ""
@ -1876,6 +1906,11 @@ msgstr ""
msgid "Previous"
msgstr ""
#: [button]search
#, fuzzy
msgid "Search"
msgstr "মার্চ"
#: [day]title
msgid "Day"
msgstr ""

View file

@ -57,6 +57,8 @@
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
#. extracted from ../app/widgets/Roster/locales.ini
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
#. extracted from ../app/widgets/Search/locales.ini
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
#. extracted from ../app/widgets/Share/locales.ini
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
#. extracted from ../app/widgets/Statistics/locales.ini
@ -76,7 +78,7 @@ msgid ""
msgstr ""
"Project-Id-Version: movim\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-04-08 08:29+0200\n"
"POT-Creation-Date: 2016-05-24 08:36+0200\n"
"PO-Revision-Date: 2016-03-23 22:27+0000\n"
"Last-Translator: Jaussoin Timothée <edhelas@movim.eu>\n"
"Language-Team: Breton (http://www.transifex.com/movim/movim/language/br/)\n"
@ -305,7 +307,7 @@ msgid "Retype password"
msgstr ""
#: [whitelist]title
msgid "Whitelist - XMPP Server"
msgid "Whitelisted XMPP Servers"
msgstr ""
#: [whitelist]info1
@ -342,6 +344,22 @@ msgctxt "[information]label"
msgid "Information Message"
msgstr ""
#: [xmpp]title
msgid "Default XMPP server"
msgstr ""
#: [xmpp]domain
msgid "Main XMPP server domain"
msgstr ""
#: [xmpp]description
msgid "Main XMPP server description"
msgstr ""
#: [xmpp]country
msgid "Main XMPP server country"
msgstr ""
#: [log]empty
msgid "Empty"
msgstr ""
@ -950,8 +968,9 @@ msgid "My Subscriptions"
msgstr ""
#: [groups]add
msgid "Create a new Group"
msgstr ""
#, fuzzy
msgid "Create a new Group on %s"
msgstr "Kouiñ ur gont nevez"
#: [groups]name
msgid "Group name"
@ -1443,6 +1462,10 @@ msgstr ""
msgid "Add a chatroom"
msgstr ""
#: [rooms]edit
msgid "Edit a chatroom"
msgstr ""
#: [rooms]empty_text1
msgid "You don't have any chatroom yet."
msgstr ""
@ -1563,6 +1586,14 @@ msgstr ""
msgid "Search a contact"
msgstr ""
#: [search]keyword
msgid "What are you looking for?"
msgstr ""
#: [search]subtitle
msgid "Open me using Ctrl + M"
msgstr ""
#: [share]error
msgid "This is not a valid url"
msgstr ""
@ -1875,6 +1906,11 @@ msgstr ""
msgid "Previous"
msgstr ""
#: [button]search
#, fuzzy
msgid "Search"
msgstr "Meurzh"
#: [day]title
msgid "Day"
msgstr "Devezh"

View file

@ -58,6 +58,8 @@
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
#. extracted from ../app/widgets/Roster/locales.ini
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
#. extracted from ../app/widgets/Search/locales.ini
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
#. extracted from ../app/widgets/Share/locales.ini
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
#. extracted from ../app/widgets/Statistics/locales.ini
@ -77,7 +79,7 @@ msgid ""
msgstr ""
"Project-Id-Version: movim\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-04-08 08:29+0200\n"
"POT-Creation-Date: 2016-05-24 08:36+0200\n"
"PO-Revision-Date: 2016-03-23 22:27+0000\n"
"Last-Translator: Jaussoin Timothée <edhelas@movim.eu>\n"
"Language-Team: Catalan (http://www.transifex.com/movim/movim/language/ca/)\n"
@ -306,7 +308,7 @@ msgid "Retype password"
msgstr "Repeteix la contrasenya"
#: [whitelist]title
msgid "Whitelist - XMPP Server"
msgid "Whitelisted XMPP Servers"
msgstr ""
#: [whitelist]info1
@ -343,6 +345,22 @@ msgctxt "[information]label"
msgid "Information Message"
msgstr "Missatge d'infofmació "
#: [xmpp]title
msgid "Default XMPP server"
msgstr ""
#: [xmpp]domain
msgid "Main XMPP server domain"
msgstr ""
#: [xmpp]description
msgid "Main XMPP server description"
msgstr ""
#: [xmpp]country
msgid "Main XMPP server country"
msgstr ""
#: [log]empty
msgid "Empty"
msgstr "Buit"
@ -951,7 +969,8 @@ msgid "My Subscriptions"
msgstr "Les Meves Subscripcions"
#: [groups]add
msgid "Create a new Group"
#, fuzzy
msgid "Create a new Group on %s"
msgstr "Crea un Grup nou"
#: [groups]name
@ -1444,6 +1463,11 @@ msgstr ""
msgid "Add a chatroom"
msgstr ""
#: [rooms]edit
#, fuzzy
msgid "Edit a chatroom"
msgstr "Afegeix la sala de xat"
#: [rooms]empty_text1
msgid "You don't have any chatroom yet."
msgstr ""
@ -1564,6 +1588,14 @@ msgstr "Busca en els teus contactes"
msgid "Search a contact"
msgstr ""
#: [search]keyword
msgid "What are you looking for?"
msgstr ""
#: [search]subtitle
msgid "Open me using Ctrl + M"
msgstr ""
#: [share]error
msgid "This is not a valid url"
msgstr ""
@ -1876,6 +1908,10 @@ msgstr ""
msgid "Previous"
msgstr ""
#: [button]search
msgid "Search"
msgstr ""
#: [day]title
msgid "Day"
msgstr ""

View file

@ -58,6 +58,8 @@
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
#. extracted from ../app/widgets/Roster/locales.ini
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
#. extracted from ../app/widgets/Search/locales.ini
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
#. extracted from ../app/widgets/Share/locales.ini
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
#. extracted from ../app/widgets/Statistics/locales.ini
@ -77,7 +79,7 @@ msgid ""
msgstr ""
"Project-Id-Version: movim\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-04-08 08:29+0200\n"
"POT-Creation-Date: 2016-05-24 08:36+0200\n"
"PO-Revision-Date: 2016-03-23 22:27+0000\n"
"Last-Translator: Jaussoin Timothée <edhelas@movim.eu>\n"
"Language-Team: Danish (http://www.transifex.com/movim/movim/language/da/)\n"
@ -306,7 +308,8 @@ msgid "Retype password"
msgstr "Gentag adgangskode"
#: [whitelist]title
msgid "Whitelist - XMPP Server"
#, fuzzy
msgid "Whitelisted XMPP Servers"
msgstr "Hvidliste - XMPP-server"
#: [whitelist]info1
@ -343,6 +346,24 @@ msgctxt "[information]label"
msgid "Information Message"
msgstr "Informationsbesked"
#: [xmpp]title
#, fuzzy
msgid "Default XMPP server"
msgstr "Hvidliste - XMPP-server"
#: [xmpp]domain
msgid "Main XMPP server domain"
msgstr ""
#: [xmpp]description
msgid "Main XMPP server description"
msgstr ""
#: [xmpp]country
#, fuzzy
msgid "Main XMPP server country"
msgstr "Din XMPP-server er uautoriseret"
#: [log]empty
msgid "Empty"
msgstr "Tomt"
@ -952,7 +973,8 @@ msgid "My Subscriptions"
msgstr "Mine Abonnementer"
#: [groups]add
msgid "Create a new Group"
#, fuzzy
msgid "Create a new Group on %s"
msgstr "Opret en ny gruppe"
#: [groups]name
@ -1446,6 +1468,11 @@ msgstr "Tilføj tekst"
msgid "Add a chatroom"
msgstr "Tilføj et chatrum"
#: [rooms]edit
#, fuzzy
msgid "Edit a chatroom"
msgstr "Tilføj et chatrum"
#: [rooms]empty_text1
msgid "You don't have any chatroom yet."
msgstr "Du har ikke nogen chatrum endnu."
@ -1566,6 +1593,14 @@ msgstr "Søg i dine kontakter"
msgid "Search a contact"
msgstr ""
#: [search]keyword
msgid "What are you looking for?"
msgstr ""
#: [search]subtitle
msgid "Open me using Ctrl + M"
msgstr ""
#: [share]error
msgid "This is not a valid url"
msgstr "Dette er ikke en gyldig url"
@ -1878,6 +1913,11 @@ msgstr "Næste"
msgid "Previous"
msgstr "Forrige"
#: [button]search
#, fuzzy
msgid "Search"
msgstr "Marts"
#: [day]title
msgid "Day"
msgstr "Dag"

View file

@ -64,6 +64,8 @@
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
#. extracted from ../app/widgets/Roster/locales.ini
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
#. extracted from ../app/widgets/Search/locales.ini
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
#. extracted from ../app/widgets/Share/locales.ini
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
#. extracted from ../app/widgets/Statistics/locales.ini
@ -83,7 +85,7 @@ msgid ""
msgstr ""
"Project-Id-Version: movim\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-04-08 08:29+0200\n"
"POT-Creation-Date: 2016-05-24 08:36+0200\n"
"PO-Revision-Date: 2016-03-23 22:27+0000\n"
"Last-Translator: Jaussoin Timothée <edhelas@movim.eu>\n"
"Language-Team: German (http://www.transifex.com/movim/movim/language/de/)\n"
@ -312,7 +314,8 @@ msgid "Retype password"
msgstr "Passwort erneut eingeben"
#: [whitelist]title
msgid "Whitelist - XMPP Server"
#, fuzzy
msgid "Whitelisted XMPP Servers"
msgstr "Liste der erlaubten XMPP-Server"
#: [whitelist]info1
@ -349,6 +352,24 @@ msgctxt "[information]label"
msgid "Information Message"
msgstr "Informationsnachricht"
#: [xmpp]title
#, fuzzy
msgid "Default XMPP server"
msgstr "Liste der erlaubten XMPP-Server"
#: [xmpp]domain
msgid "Main XMPP server domain"
msgstr ""
#: [xmpp]description
msgid "Main XMPP server description"
msgstr ""
#: [xmpp]country
#, fuzzy
msgid "Main XMPP server country"
msgstr "Ihr XMPP Server ist nicht legitimiert"
#: [log]empty
msgid "Empty"
msgstr "Leer"
@ -958,7 +979,8 @@ msgid "My Subscriptions"
msgstr "Meine Abonnements"
#: [groups]add
msgid "Create a new Group"
#, fuzzy
msgid "Create a new Group on %s"
msgstr "Eine neue Gruppe erstellen"
#: [groups]name
@ -1452,6 +1474,11 @@ msgstr "Text hinzufügen"
msgid "Add a chatroom"
msgstr "Chatraum hinzufügen"
#: [rooms]edit
#, fuzzy
msgid "Edit a chatroom"
msgstr "Chatraum hinzufügen"
#: [rooms]empty_text1
msgid "You don't have any chatroom yet."
msgstr "Sie sind noch keinem Chatraum beigetreten."
@ -1572,6 +1599,14 @@ msgstr "Kontakte durchsuchen"
msgid "Search a contact"
msgstr ""
#: [search]keyword
msgid "What are you looking for?"
msgstr ""
#: [search]subtitle
msgid "Open me using Ctrl + M"
msgstr ""
#: [share]error
msgid "This is not a valid url"
msgstr "Das ist keine gültige Adresse"
@ -1884,6 +1919,11 @@ msgstr "Weiter"
msgid "Previous"
msgstr "Zurück"
#: [button]search
#, fuzzy
msgid "Search"
msgstr "März"
#: [day]title
msgid "Day"
msgstr "Tag"

View file

@ -58,6 +58,8 @@
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
#. extracted from ../app/widgets/Roster/locales.ini
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
#. extracted from ../app/widgets/Search/locales.ini
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
#. extracted from ../app/widgets/Share/locales.ini
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
#. extracted from ../app/widgets/Statistics/locales.ini
@ -77,7 +79,7 @@ msgid ""
msgstr ""
"Project-Id-Version: movim\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-04-08 08:29+0200\n"
"POT-Creation-Date: 2016-05-24 08:36+0200\n"
"PO-Revision-Date: 2016-03-23 22:27+0000\n"
"Last-Translator: Jaussoin Timothée <edhelas@movim.eu>\n"
"Language-Team: Greek (http://www.transifex.com/movim/movim/language/el/)\n"
@ -306,7 +308,7 @@ msgid "Retype password"
msgstr ""
#: [whitelist]title
msgid "Whitelist - XMPP Server"
msgid "Whitelisted XMPP Servers"
msgstr ""
#: [whitelist]info1
@ -343,6 +345,22 @@ msgctxt "[information]label"
msgid "Information Message"
msgstr ""
#: [xmpp]title
msgid "Default XMPP server"
msgstr ""
#: [xmpp]domain
msgid "Main XMPP server domain"
msgstr ""
#: [xmpp]description
msgid "Main XMPP server description"
msgstr ""
#: [xmpp]country
msgid "Main XMPP server country"
msgstr ""
#: [log]empty
msgid "Empty"
msgstr "Άδειο"
@ -951,8 +969,9 @@ msgid "My Subscriptions"
msgstr ""
#: [groups]add
msgid "Create a new Group"
msgstr ""
#, fuzzy
msgid "Create a new Group on %s"
msgstr "Δημιουργία νέου λογαριασμού"
#: [groups]name
msgid "Group name"
@ -1444,6 +1463,11 @@ msgstr "Προσθήκη κειμένου"
msgid "Add a chatroom"
msgstr "Προσθήκη δωμάτιου συνομιλίας"
#: [rooms]edit
#, fuzzy
msgid "Edit a chatroom"
msgstr "Προσθήκη δωμάτιου συνομιλίας"
#: [rooms]empty_text1
msgid "You don't have any chatroom yet."
msgstr "Δεν έχεις κάποιο δωμάτιο συνομιλίας ακόμα"
@ -1564,6 +1588,14 @@ msgstr "Αναζήτηση στις επαφές σου"
msgid "Search a contact"
msgstr "Αναζήτηση επαφής"
#: [search]keyword
msgid "What are you looking for?"
msgstr ""
#: [search]subtitle
msgid "Open me using Ctrl + M"
msgstr ""
#: [share]error
msgid "This is not a valid url"
msgstr ""
@ -1876,6 +1908,11 @@ msgstr "Επόμενο"
msgid "Previous"
msgstr "Προηγούμενο"
#: [button]search
#, fuzzy
msgid "Search"
msgstr "Μάρτιος"
#: [day]title
msgid "Day"
msgstr "Μέρα"

View file

@ -57,6 +57,8 @@
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
#. extracted from ../app/widgets/Roster/locales.ini
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
#. extracted from ../app/widgets/Search/locales.ini
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
#. extracted from ../app/widgets/Share/locales.ini
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
#. extracted from ../app/widgets/Statistics/locales.ini
@ -76,7 +78,7 @@ msgid ""
msgstr ""
"Project-Id-Version: movim\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-04-08 08:29+0200\n"
"POT-Creation-Date: 2016-05-24 08:36+0200\n"
"PO-Revision-Date: 2016-03-23 22:27+0000\n"
"Last-Translator: Jaussoin Timothée <edhelas@movim.eu>\n"
"Language-Team: English (http://www.transifex.com/movim/movim/language/en/)\n"
@ -305,7 +307,8 @@ msgid "Retype password"
msgstr "Retype password"
#: [whitelist]title
msgid "Whitelist - XMPP Server"
#, fuzzy
msgid "Whitelisted XMPP Servers"
msgstr "Whitelist - XMPP Server"
#: [whitelist]info1
@ -342,6 +345,24 @@ msgctxt "[information]label"
msgid "Information Message"
msgstr "Information Message"
#: [xmpp]title
#, fuzzy
msgid "Default XMPP server"
msgstr "Whitelist - XMPP Server"
#: [xmpp]domain
msgid "Main XMPP server domain"
msgstr ""
#: [xmpp]description
msgid "Main XMPP server description"
msgstr ""
#: [xmpp]country
#, fuzzy
msgid "Main XMPP server country"
msgstr "Your XMPP server is unauthorized"
#: [log]empty
msgid "Empty"
msgstr "Empty"
@ -951,7 +972,8 @@ msgid "My Subscriptions"
msgstr "My Subscriptions"
#: [groups]add
msgid "Create a new Group"
#, fuzzy
msgid "Create a new Group on %s"
msgstr "Create a new Group"
#: [groups]name
@ -1445,6 +1467,11 @@ msgstr "Add some text"
msgid "Add a chatroom"
msgstr "Add a chatroom"
#: [rooms]edit
#, fuzzy
msgid "Edit a chatroom"
msgstr "Add a chatroom"
#: [rooms]empty_text1
msgid "You don't have any chatroom yet."
msgstr "You don't have any chatroom yet."
@ -1565,6 +1592,14 @@ msgstr "Search in your contacts"
msgid "Search a contact"
msgstr "Search a contact"
#: [search]keyword
msgid "What are you looking for?"
msgstr ""
#: [search]subtitle
msgid "Open me using Ctrl + M"
msgstr ""
#: [share]error
msgid "This is not a valid url"
msgstr "This is not a valid url"
@ -1877,6 +1912,11 @@ msgstr "Next"
msgid "Previous"
msgstr "Previous"
#: [button]search
#, fuzzy
msgid "Search"
msgstr "March"
#: [day]title
msgid "Day"
msgstr "Day"

View file

@ -57,6 +57,8 @@
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
#. extracted from ../app/widgets/Roster/locales.ini
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
#. extracted from ../app/widgets/Search/locales.ini
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
#. extracted from ../app/widgets/Share/locales.ini
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
#. extracted from ../app/widgets/Statistics/locales.ini
@ -76,7 +78,7 @@ msgid ""
msgstr ""
"Project-Id-Version: movim\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-04-08 08:29+0200\n"
"POT-Creation-Date: 2016-05-24 08:36+0200\n"
"PO-Revision-Date: 2016-03-23 22:27+0000\n"
"Last-Translator: Jaussoin Timothée <edhelas@movim.eu>\n"
"Language-Team: Esperanto (http://www.transifex.com/movim/movim/language/eo/)\n"
@ -305,7 +307,7 @@ msgid "Retype password"
msgstr ""
#: [whitelist]title
msgid "Whitelist - XMPP Server"
msgid "Whitelisted XMPP Servers"
msgstr ""
#: [whitelist]info1
@ -342,6 +344,22 @@ msgctxt "[information]label"
msgid "Information Message"
msgstr ""
#: [xmpp]title
msgid "Default XMPP server"
msgstr ""
#: [xmpp]domain
msgid "Main XMPP server domain"
msgstr ""
#: [xmpp]description
msgid "Main XMPP server description"
msgstr ""
#: [xmpp]country
msgid "Main XMPP server country"
msgstr ""
#: [log]empty
msgid "Empty"
msgstr ""
@ -950,7 +968,7 @@ msgid "My Subscriptions"
msgstr ""
#: [groups]add
msgid "Create a new Group"
msgid "Create a new Group on %s"
msgstr ""
#: [groups]name
@ -1443,6 +1461,10 @@ msgstr ""
msgid "Add a chatroom"
msgstr ""
#: [rooms]edit
msgid "Edit a chatroom"
msgstr ""
#: [rooms]empty_text1
msgid "You don't have any chatroom yet."
msgstr ""
@ -1563,6 +1585,14 @@ msgstr ""
msgid "Search a contact"
msgstr ""
#: [search]keyword
msgid "What are you looking for?"
msgstr ""
#: [search]subtitle
msgid "Open me using Ctrl + M"
msgstr ""
#: [share]error
msgid "This is not a valid url"
msgstr ""
@ -1875,6 +1905,11 @@ msgstr ""
msgid "Previous"
msgstr ""
#: [button]search
#, fuzzy
msgid "Search"
msgstr "Marto"
#: [day]title
msgid "Day"
msgstr ""

View file

@ -60,6 +60,8 @@
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
#. extracted from ../app/widgets/Roster/locales.ini
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
#. extracted from ../app/widgets/Search/locales.ini
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
#. extracted from ../app/widgets/Share/locales.ini
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
#. extracted from ../app/widgets/Statistics/locales.ini
@ -79,7 +81,7 @@ msgid ""
msgstr ""
"Project-Id-Version: movim\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-04-08 08:29+0200\n"
"POT-Creation-Date: 2016-05-24 08:36+0200\n"
"PO-Revision-Date: 2016-03-23 22:27+0000\n"
"Last-Translator: Jaussoin Timothée <edhelas@movim.eu>\n"
"Language-Team: Spanish (http://www.transifex.com/movim/movim/language/es/)\n"
@ -308,7 +310,8 @@ msgid "Retype password"
msgstr "Escriba la contraseña de nuevo"
#: [whitelist]title
msgid "Whitelist - XMPP Server"
#, fuzzy
msgid "Whitelisted XMPP Servers"
msgstr "Lista blanca - Servidor XMPP"
#: [whitelist]info1
@ -345,6 +348,24 @@ msgctxt "[information]label"
msgid "Information Message"
msgstr "Mensaje de información"
#: [xmpp]title
#, fuzzy
msgid "Default XMPP server"
msgstr "Lista blanca - Servidor XMPP"
#: [xmpp]domain
msgid "Main XMPP server domain"
msgstr ""
#: [xmpp]description
msgid "Main XMPP server description"
msgstr ""
#: [xmpp]country
#, fuzzy
msgid "Main XMPP server country"
msgstr "Tu server XMPP no está autorizado"
#: [log]empty
msgid "Empty"
msgstr "Vacío"
@ -954,7 +975,8 @@ msgid "My Subscriptions"
msgstr "Mis suscripciones"
#: [groups]add
msgid "Create a new Group"
#, fuzzy
msgid "Create a new Group on %s"
msgstr "Crear un nuevo grupo"
#: [groups]name
@ -1448,6 +1470,11 @@ msgstr ""
msgid "Add a chatroom"
msgstr "Añadir una sala de conversación"
#: [rooms]edit
#, fuzzy
msgid "Edit a chatroom"
msgstr "Añadir una sala de conversación"
#: [rooms]empty_text1
msgid "You don't have any chatroom yet."
msgstr "No tienes ninguna sala de chat aún"
@ -1568,6 +1595,14 @@ msgstr "Buscar en tus contactos"
msgid "Search a contact"
msgstr ""
#: [search]keyword
msgid "What are you looking for?"
msgstr ""
#: [search]subtitle
msgid "Open me using Ctrl + M"
msgstr ""
#: [share]error
msgid "This is not a valid url"
msgstr "Esta no es una dirección válida"
@ -1880,6 +1915,11 @@ msgstr "Siguiente"
msgid "Previous"
msgstr "Anterior"
#: [button]search
#, fuzzy
msgid "Search"
msgstr "Marzo"
#: [day]title
msgid "Day"
msgstr "Día"

View file

@ -58,6 +58,8 @@
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
#. extracted from ../app/widgets/Roster/locales.ini
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
#. extracted from ../app/widgets/Search/locales.ini
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
#. extracted from ../app/widgets/Share/locales.ini
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
#. extracted from ../app/widgets/Statistics/locales.ini
@ -77,7 +79,7 @@ msgid ""
msgstr ""
"Project-Id-Version: movim\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-04-08 08:29+0200\n"
"POT-Creation-Date: 2016-05-24 08:36+0200\n"
"PO-Revision-Date: 2016-03-23 22:27+0000\n"
"Last-Translator: Jaussoin Timothée <edhelas@movim.eu>\n"
"Language-Team: Persian (http://www.transifex.com/movim/movim/language/fa/)\n"
@ -306,7 +308,7 @@ msgid "Retype password"
msgstr ""
#: [whitelist]title
msgid "Whitelist - XMPP Server"
msgid "Whitelisted XMPP Servers"
msgstr ""
#: [whitelist]info1
@ -343,6 +345,22 @@ msgctxt "[information]label"
msgid "Information Message"
msgstr ""
#: [xmpp]title
msgid "Default XMPP server"
msgstr ""
#: [xmpp]domain
msgid "Main XMPP server domain"
msgstr ""
#: [xmpp]description
msgid "Main XMPP server description"
msgstr ""
#: [xmpp]country
msgid "Main XMPP server country"
msgstr ""
#: [log]empty
msgid "Empty"
msgstr ""
@ -951,7 +969,7 @@ msgid "My Subscriptions"
msgstr ""
#: [groups]add
msgid "Create a new Group"
msgid "Create a new Group on %s"
msgstr ""
#: [groups]name
@ -1444,6 +1462,10 @@ msgstr ""
msgid "Add a chatroom"
msgstr ""
#: [rooms]edit
msgid "Edit a chatroom"
msgstr ""
#: [rooms]empty_text1
msgid "You don't have any chatroom yet."
msgstr ""
@ -1564,6 +1586,14 @@ msgstr ""
msgid "Search a contact"
msgstr ""
#: [search]keyword
msgid "What are you looking for?"
msgstr ""
#: [search]subtitle
msgid "Open me using Ctrl + M"
msgstr ""
#: [share]error
msgid "This is not a valid url"
msgstr ""
@ -1876,6 +1906,11 @@ msgstr ""
msgid "Previous"
msgstr ""
#: [button]search
#, fuzzy
msgid "Search"
msgstr "مارس"
#: [day]title
msgid "Day"
msgstr ""

View file

@ -57,6 +57,8 @@
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
#. extracted from ../app/widgets/Roster/locales.ini
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
#. extracted from ../app/widgets/Search/locales.ini
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
#. extracted from ../app/widgets/Share/locales.ini
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
#. extracted from ../app/widgets/Statistics/locales.ini
@ -76,7 +78,7 @@ msgid ""
msgstr ""
"Project-Id-Version: movim\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-04-08 08:29+0200\n"
"POT-Creation-Date: 2016-05-24 08:36+0200\n"
"PO-Revision-Date: 2016-03-23 22:27+0000\n"
"Last-Translator: Jaussoin Timothée <edhelas@movim.eu>\n"
"Language-Team: Finnish (http://www.transifex.com/movim/movim/language/fi/)\n"
@ -305,7 +307,7 @@ msgid "Retype password"
msgstr ""
#: [whitelist]title
msgid "Whitelist - XMPP Server"
msgid "Whitelisted XMPP Servers"
msgstr ""
#: [whitelist]info1
@ -342,6 +344,22 @@ msgctxt "[information]label"
msgid "Information Message"
msgstr ""
#: [xmpp]title
msgid "Default XMPP server"
msgstr ""
#: [xmpp]domain
msgid "Main XMPP server domain"
msgstr ""
#: [xmpp]description
msgid "Main XMPP server description"
msgstr ""
#: [xmpp]country
msgid "Main XMPP server country"
msgstr ""
#: [log]empty
msgid "Empty"
msgstr ""
@ -950,8 +968,9 @@ msgid "My Subscriptions"
msgstr ""
#: [groups]add
msgid "Create a new Group"
msgstr ""
#, fuzzy
msgid "Create a new Group on %s"
msgstr "Luo uusi tili"
#: [groups]name
msgid "Group name"
@ -1443,6 +1462,10 @@ msgstr ""
msgid "Add a chatroom"
msgstr ""
#: [rooms]edit
msgid "Edit a chatroom"
msgstr ""
#: [rooms]empty_text1
msgid "You don't have any chatroom yet."
msgstr ""
@ -1563,6 +1586,14 @@ msgstr ""
msgid "Search a contact"
msgstr ""
#: [search]keyword
msgid "What are you looking for?"
msgstr ""
#: [search]subtitle
msgid "Open me using Ctrl + M"
msgstr ""
#: [share]error
msgid "This is not a valid url"
msgstr ""
@ -1875,6 +1906,11 @@ msgstr ""
msgid "Previous"
msgstr ""
#: [button]search
#, fuzzy
msgid "Search"
msgstr "Maaliskuu"
#: [day]title
msgid "Day"
msgstr "Päivä"

View file

@ -63,6 +63,8 @@
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
#. extracted from ../app/widgets/Roster/locales.ini
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
#. extracted from ../app/widgets/Search/locales.ini
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
#. extracted from ../app/widgets/Share/locales.ini
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
#. extracted from ../app/widgets/Statistics/locales.ini
@ -82,8 +84,8 @@ msgid ""
msgstr ""
"Project-Id-Version: movim\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-04-08 08:29+0200\n"
"PO-Revision-Date: 2016-04-08 06:34+0000\n"
"POT-Creation-Date: 2016-05-24 08:36+0200\n"
"PO-Revision-Date: 2016-05-24 21:01+0000\n"
"Last-Translator: Jaussoin Timothée <edhelas@movim.eu>\n"
"Language-Team: French (France) (http://www.transifex.com/movim/movim/language/fr_FR/)\n"
"Language: fr_FR\n"
@ -311,8 +313,8 @@ msgid "Retype password"
msgstr "Ressaisissez le mot de passe"
#: [whitelist]title
msgid "Whitelist - XMPP Server"
msgstr "Serveurs XMPP : Liste blanche"
msgid "Whitelisted XMPP Servers"
msgstr "Serveurs XMPP sur la liste blanche"
#: [whitelist]info1
msgid "If you want to specify a list of authorized XMPP servers on your Movim pod and forbid the connection on all the others please put their domain name here, with comma (ex: movim.eu,jabber.fr)"
@ -348,6 +350,22 @@ msgctxt "[information]label"
msgid "Information Message"
msgstr "Message dinformation"
#: [xmpp]title
msgid "Default XMPP server"
msgstr "Serveur XMPP par défaut"
#: [xmpp]domain
msgid "Main XMPP server domain"
msgstr "Domaine du serveur XMPP par défaut"
#: [xmpp]description
msgid "Main XMPP server description"
msgstr "Description du serveur XMPP par défaut"
#: [xmpp]country
msgid "Main XMPP server country"
msgstr "Pays du serveur XMPP par défaut"
#: [log]empty
msgid "Empty"
msgstr "Vide"
@ -956,8 +974,8 @@ msgid "My Subscriptions"
msgstr "Mes Souscriptions"
#: [groups]add
msgid "Create a new Group"
msgstr "Créer un nouveau Groupe"
msgid "Create a new Group on %s"
msgstr "Créer un nouveau Groupe sur %s"
#: [groups]name
msgid "Group name"
@ -1227,7 +1245,7 @@ msgstr "Contacts"
#: [menu]add_post
msgid "Add a post"
msgstr ""
msgstr "Ajouter un billet"
#: [notifs]title
msgid "Pending Invitations"
@ -1449,6 +1467,10 @@ msgstr "Ajouter du texte"
msgid "Add a chatroom"
msgstr "Ajouter un salon de discussion"
#: [rooms]edit
msgid "Edit a chatroom"
msgstr "Éditer un salon de discussion"
#: [rooms]empty_text1
msgid "You don't have any chatroom yet."
msgstr "Vous n'avez pas encore de salon de discussions."
@ -1569,6 +1591,14 @@ msgstr "Chercher dans vos contacts "
msgid "Search a contact"
msgstr "Chercher un contact"
#: [search]keyword
msgid "What are you looking for?"
msgstr "Que cherchez vous ?"
#: [search]subtitle
msgid "Open me using Ctrl + M"
msgstr "Ouvrez moi en faisant Ctrl + M"
#: [share]error
msgid "This is not a valid url"
msgstr "Cette URL n'est pas valide"
@ -1881,6 +1911,10 @@ msgstr "Suivant"
msgid "Previous"
msgstr "Précédent"
#: [button]search
msgid "Search"
msgstr "Rechercher"
#: [day]title
msgid "Day"
msgstr "Jour"

View file

@ -58,6 +58,8 @@
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
#. extracted from ../app/widgets/Roster/locales.ini
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
#. extracted from ../app/widgets/Search/locales.ini
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
#. extracted from ../app/widgets/Share/locales.ini
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
#. extracted from ../app/widgets/Statistics/locales.ini
@ -77,7 +79,7 @@ msgid ""
msgstr ""
"Project-Id-Version: movim\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-04-08 08:29+0200\n"
"POT-Creation-Date: 2016-05-24 08:36+0200\n"
"PO-Revision-Date: 2016-03-23 22:27+0000\n"
"Last-Translator: Jaussoin Timothée <edhelas@movim.eu>\n"
"Language-Team: Irish (http://www.transifex.com/movim/movim/language/ga/)\n"
@ -306,7 +308,7 @@ msgid "Retype password"
msgstr ""
#: [whitelist]title
msgid "Whitelist - XMPP Server"
msgid "Whitelisted XMPP Servers"
msgstr ""
#: [whitelist]info1
@ -343,6 +345,22 @@ msgctxt "[information]label"
msgid "Information Message"
msgstr ""
#: [xmpp]title
msgid "Default XMPP server"
msgstr ""
#: [xmpp]domain
msgid "Main XMPP server domain"
msgstr ""
#: [xmpp]description
msgid "Main XMPP server description"
msgstr ""
#: [xmpp]country
msgid "Main XMPP server country"
msgstr ""
#: [log]empty
msgid "Empty"
msgstr ""
@ -951,7 +969,7 @@ msgid "My Subscriptions"
msgstr ""
#: [groups]add
msgid "Create a new Group"
msgid "Create a new Group on %s"
msgstr ""
#: [groups]name
@ -1444,6 +1462,10 @@ msgstr ""
msgid "Add a chatroom"
msgstr ""
#: [rooms]edit
msgid "Edit a chatroom"
msgstr ""
#: [rooms]empty_text1
msgid "You don't have any chatroom yet."
msgstr ""
@ -1564,6 +1586,14 @@ msgstr ""
msgid "Search a contact"
msgstr ""
#: [search]keyword
msgid "What are you looking for?"
msgstr ""
#: [search]subtitle
msgid "Open me using Ctrl + M"
msgstr ""
#: [share]error
msgid "This is not a valid url"
msgstr ""
@ -1876,6 +1906,10 @@ msgstr ""
msgid "Previous"
msgstr ""
#: [button]search
msgid "Search"
msgstr ""
#: [day]title
msgid "Day"
msgstr ""

View file

@ -57,6 +57,8 @@
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
#. extracted from ../app/widgets/Roster/locales.ini
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
#. extracted from ../app/widgets/Search/locales.ini
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
#. extracted from ../app/widgets/Share/locales.ini
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
#. extracted from ../app/widgets/Statistics/locales.ini
@ -76,7 +78,7 @@ msgid ""
msgstr ""
"Project-Id-Version: movim\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-04-08 08:29+0200\n"
"POT-Creation-Date: 2016-05-24 08:36+0200\n"
"PO-Revision-Date: 2016-03-23 22:27+0000\n"
"Last-Translator: Jaussoin Timothée <edhelas@movim.eu>\n"
"Language-Team: Galician (http://www.transifex.com/movim/movim/language/gl/)\n"
@ -305,7 +307,7 @@ msgid "Retype password"
msgstr ""
#: [whitelist]title
msgid "Whitelist - XMPP Server"
msgid "Whitelisted XMPP Servers"
msgstr ""
#: [whitelist]info1
@ -342,6 +344,22 @@ msgctxt "[information]label"
msgid "Information Message"
msgstr ""
#: [xmpp]title
msgid "Default XMPP server"
msgstr ""
#: [xmpp]domain
msgid "Main XMPP server domain"
msgstr ""
#: [xmpp]description
msgid "Main XMPP server description"
msgstr ""
#: [xmpp]country
msgid "Main XMPP server country"
msgstr ""
#: [log]empty
msgid "Empty"
msgstr ""
@ -950,7 +968,7 @@ msgid "My Subscriptions"
msgstr ""
#: [groups]add
msgid "Create a new Group"
msgid "Create a new Group on %s"
msgstr ""
#: [groups]name
@ -1443,6 +1461,10 @@ msgstr ""
msgid "Add a chatroom"
msgstr ""
#: [rooms]edit
msgid "Edit a chatroom"
msgstr ""
#: [rooms]empty_text1
msgid "You don't have any chatroom yet."
msgstr ""
@ -1563,6 +1585,14 @@ msgstr ""
msgid "Search a contact"
msgstr ""
#: [search]keyword
msgid "What are you looking for?"
msgstr ""
#: [search]subtitle
msgid "Open me using Ctrl + M"
msgstr ""
#: [share]error
msgid "This is not a valid url"
msgstr ""
@ -1875,6 +1905,11 @@ msgstr ""
msgid "Previous"
msgstr ""
#: [button]search
#, fuzzy
msgid "Search"
msgstr "Marzo"
#: [day]title
msgid "Day"
msgstr ""

View file

@ -58,6 +58,8 @@
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
#. extracted from ../app/widgets/Roster/locales.ini
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
#. extracted from ../app/widgets/Search/locales.ini
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
#. extracted from ../app/widgets/Share/locales.ini
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
#. extracted from ../app/widgets/Statistics/locales.ini
@ -77,7 +79,7 @@ msgid ""
msgstr ""
"Project-Id-Version: movim\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-04-08 08:29+0200\n"
"POT-Creation-Date: 2016-05-24 08:36+0200\n"
"PO-Revision-Date: 2016-03-23 22:27+0000\n"
"Last-Translator: Jaussoin Timothée <edhelas@movim.eu>\n"
"Language-Team: Hebrew (http://www.transifex.com/movim/movim/language/he/)\n"
@ -306,7 +308,8 @@ msgid "Retype password"
msgstr "הקלד סיסמה מחדש"
#: [whitelist]title
msgid "Whitelist - XMPP Server"
#, fuzzy
msgid "Whitelisted XMPP Servers"
msgstr "רשימה לבנה - שרת XMPP"
#: [whitelist]info1
@ -343,6 +346,23 @@ msgctxt "[information]label"
msgid "Information Message"
msgstr ""
#: [xmpp]title
#, fuzzy
msgid "Default XMPP server"
msgstr "רשימה לבנה - שרת XMPP"
#: [xmpp]domain
msgid "Main XMPP server domain"
msgstr ""
#: [xmpp]description
msgid "Main XMPP server description"
msgstr ""
#: [xmpp]country
msgid "Main XMPP server country"
msgstr ""
#: [log]empty
msgid "Empty"
msgstr "ריק"
@ -952,8 +972,9 @@ msgid "My Subscriptions"
msgstr ""
#: [groups]add
msgid "Create a new Group"
msgstr ""
#, fuzzy
msgid "Create a new Group on %s"
msgstr "יצירת חשבון חדש"
#: [groups]name
msgid "Group name"
@ -1445,6 +1466,11 @@ msgstr ""
msgid "Add a chatroom"
msgstr "הוסף חדר שיחה"
#: [rooms]edit
#, fuzzy
msgid "Edit a chatroom"
msgstr "הוסף חדר שיחה"
#: [rooms]empty_text1
msgid "You don't have any chatroom yet."
msgstr ""
@ -1565,6 +1591,14 @@ msgstr ""
msgid "Search a contact"
msgstr ""
#: [search]keyword
msgid "What are you looking for?"
msgstr ""
#: [search]subtitle
msgid "Open me using Ctrl + M"
msgstr ""
#: [share]error
msgid "This is not a valid url"
msgstr ""
@ -1877,6 +1911,11 @@ msgstr ""
msgid "Previous"
msgstr ""
#: [button]search
#, fuzzy
msgid "Search"
msgstr "מרץ"
#: [day]title
msgid "Day"
msgstr "יום"

View file

@ -58,6 +58,8 @@
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
#. extracted from ../app/widgets/Roster/locales.ini
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
#. extracted from ../app/widgets/Search/locales.ini
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
#. extracted from ../app/widgets/Share/locales.ini
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
#. extracted from ../app/widgets/Statistics/locales.ini
@ -77,7 +79,7 @@ msgid ""
msgstr ""
"Project-Id-Version: movim\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-04-08 08:29+0200\n"
"POT-Creation-Date: 2016-05-24 08:36+0200\n"
"PO-Revision-Date: 2016-03-23 22:27+0000\n"
"Last-Translator: Jaussoin Timothée <edhelas@movim.eu>\n"
"Language-Team: Croatian (http://www.transifex.com/movim/movim/language/hr/)\n"
@ -306,7 +308,7 @@ msgid "Retype password"
msgstr ""
#: [whitelist]title
msgid "Whitelist - XMPP Server"
msgid "Whitelisted XMPP Servers"
msgstr ""
#: [whitelist]info1
@ -343,6 +345,22 @@ msgctxt "[information]label"
msgid "Information Message"
msgstr ""
#: [xmpp]title
msgid "Default XMPP server"
msgstr ""
#: [xmpp]domain
msgid "Main XMPP server domain"
msgstr ""
#: [xmpp]description
msgid "Main XMPP server description"
msgstr ""
#: [xmpp]country
msgid "Main XMPP server country"
msgstr ""
#: [log]empty
msgid "Empty"
msgstr ""
@ -951,7 +969,7 @@ msgid "My Subscriptions"
msgstr ""
#: [groups]add
msgid "Create a new Group"
msgid "Create a new Group on %s"
msgstr ""
#: [groups]name
@ -1444,6 +1462,10 @@ msgstr ""
msgid "Add a chatroom"
msgstr ""
#: [rooms]edit
msgid "Edit a chatroom"
msgstr ""
#: [rooms]empty_text1
msgid "You don't have any chatroom yet."
msgstr ""
@ -1564,6 +1586,14 @@ msgstr ""
msgid "Search a contact"
msgstr ""
#: [search]keyword
msgid "What are you looking for?"
msgstr ""
#: [search]subtitle
msgid "Open me using Ctrl + M"
msgstr ""
#: [share]error
msgid "This is not a valid url"
msgstr ""
@ -1876,6 +1906,10 @@ msgstr ""
msgid "Previous"
msgstr ""
#: [button]search
msgid "Search"
msgstr ""
#: [day]title
msgid "Day"
msgstr ""

View file

@ -60,6 +60,8 @@
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
#. extracted from ../app/widgets/Roster/locales.ini
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
#. extracted from ../app/widgets/Search/locales.ini
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
#. extracted from ../app/widgets/Share/locales.ini
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
#. extracted from ../app/widgets/Statistics/locales.ini
@ -79,7 +81,7 @@ msgid ""
msgstr ""
"Project-Id-Version: movim\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-04-08 08:29+0200\n"
"POT-Creation-Date: 2016-05-24 08:36+0200\n"
"PO-Revision-Date: 2016-03-23 22:27+0000\n"
"Last-Translator: Jaussoin Timothée <edhelas@movim.eu>\n"
"Language-Team: Hungarian (http://www.transifex.com/movim/movim/language/hu/)\n"
@ -308,7 +310,8 @@ msgid "Retype password"
msgstr "Gépeld újra a jelszót"
#: [whitelist]title
msgid "Whitelist - XMPP Server"
#, fuzzy
msgid "Whitelisted XMPP Servers"
msgstr "Fehérlista - XMPP szerver"
#: [whitelist]info1
@ -345,6 +348,23 @@ msgctxt "[information]label"
msgid "Information Message"
msgstr "Információs üzenet"
#: [xmpp]title
#, fuzzy
msgid "Default XMPP server"
msgstr "Fehérlista - XMPP szerver"
#: [xmpp]domain
msgid "Main XMPP server domain"
msgstr ""
#: [xmpp]description
msgid "Main XMPP server description"
msgstr ""
#: [xmpp]country
msgid "Main XMPP server country"
msgstr ""
#: [log]empty
msgid "Empty"
msgstr "Üres"
@ -954,7 +974,8 @@ msgid "My Subscriptions"
msgstr "Feliratkozásaim"
#: [groups]add
msgid "Create a new Group"
#, fuzzy
msgid "Create a new Group on %s"
msgstr "Új csoport létrehozása"
#: [groups]name
@ -1448,6 +1469,11 @@ msgstr ""
msgid "Add a chatroom"
msgstr ""
#: [rooms]edit
#, fuzzy
msgid "Edit a chatroom"
msgstr "Csatlakozva a chat szobához"
#: [rooms]empty_text1
msgid "You don't have any chatroom yet."
msgstr ""
@ -1568,6 +1594,14 @@ msgstr "Keresés ismerősök között"
msgid "Search a contact"
msgstr ""
#: [search]keyword
msgid "What are you looking for?"
msgstr ""
#: [search]subtitle
msgid "Open me using Ctrl + M"
msgstr ""
#: [share]error
msgid "This is not a valid url"
msgstr ""
@ -1880,6 +1914,11 @@ msgstr "Következő"
msgid "Previous"
msgstr "Előző"
#: [button]search
#, fuzzy
msgid "Search"
msgstr "Március"
#: [day]title
msgid "Day"
msgstr "Nap"

View file

@ -59,6 +59,8 @@
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
#. extracted from ../app/widgets/Roster/locales.ini
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
#. extracted from ../app/widgets/Search/locales.ini
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
#. extracted from ../app/widgets/Share/locales.ini
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
#. extracted from ../app/widgets/Statistics/locales.ini
@ -78,7 +80,7 @@ msgid ""
msgstr ""
"Project-Id-Version: movim\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-04-08 08:29+0200\n"
"POT-Creation-Date: 2016-05-24 08:36+0200\n"
"PO-Revision-Date: 2016-03-23 22:27+0000\n"
"Last-Translator: Jaussoin Timothée <edhelas@movim.eu>\n"
"Language-Team: Indonesian (http://www.transifex.com/movim/movim/language/id/)\n"
@ -307,7 +309,7 @@ msgid "Retype password"
msgstr ""
#: [whitelist]title
msgid "Whitelist - XMPP Server"
msgid "Whitelisted XMPP Servers"
msgstr ""
#: [whitelist]info1
@ -344,6 +346,22 @@ msgctxt "[information]label"
msgid "Information Message"
msgstr ""
#: [xmpp]title
msgid "Default XMPP server"
msgstr ""
#: [xmpp]domain
msgid "Main XMPP server domain"
msgstr ""
#: [xmpp]description
msgid "Main XMPP server description"
msgstr ""
#: [xmpp]country
msgid "Main XMPP server country"
msgstr ""
#: [log]empty
msgid "Empty"
msgstr ""
@ -952,8 +970,9 @@ msgid "My Subscriptions"
msgstr ""
#: [groups]add
msgid "Create a new Group"
msgstr ""
#, fuzzy
msgid "Create a new Group on %s"
msgstr "Buat akun baru"
#: [groups]name
msgid "Group name"
@ -1445,6 +1464,11 @@ msgstr ""
msgid "Add a chatroom"
msgstr ""
#: [rooms]edit
#, fuzzy
msgid "Edit a chatroom"
msgstr "ID Chatroom Salah"
#: [rooms]empty_text1
msgid "You don't have any chatroom yet."
msgstr ""
@ -1565,6 +1589,14 @@ msgstr ""
msgid "Search a contact"
msgstr ""
#: [search]keyword
msgid "What are you looking for?"
msgstr ""
#: [search]subtitle
msgid "Open me using Ctrl + M"
msgstr ""
#: [share]error
msgid "This is not a valid url"
msgstr ""
@ -1877,6 +1909,11 @@ msgstr ""
msgid "Previous"
msgstr ""
#: [button]search
#, fuzzy
msgid "Search"
msgstr "Maret"
#: [day]title
msgid "Day"
msgstr "Hari"

View file

@ -59,6 +59,8 @@
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
#. extracted from ../app/widgets/Roster/locales.ini
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
#. extracted from ../app/widgets/Search/locales.ini
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
#. extracted from ../app/widgets/Share/locales.ini
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
#. extracted from ../app/widgets/Statistics/locales.ini
@ -78,7 +80,7 @@ msgid ""
msgstr ""
"Project-Id-Version: movim\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-04-08 08:29+0200\n"
"POT-Creation-Date: 2016-05-24 08:36+0200\n"
"PO-Revision-Date: 2016-03-23 22:27+0000\n"
"Last-Translator: Jaussoin Timothée <edhelas@movim.eu>\n"
"Language-Team: Ido (http://www.transifex.com/movim/movim/language/io/)\n"
@ -307,7 +309,7 @@ msgid "Retype password"
msgstr "Riskribar pasvorto"
#: [whitelist]title
msgid "Whitelist - XMPP Server"
msgid "Whitelisted XMPP Servers"
msgstr ""
#: [whitelist]info1
@ -344,6 +346,22 @@ msgctxt "[information]label"
msgid "Information Message"
msgstr "Informo-mesajo"
#: [xmpp]title
msgid "Default XMPP server"
msgstr ""
#: [xmpp]domain
msgid "Main XMPP server domain"
msgstr ""
#: [xmpp]description
msgid "Main XMPP server description"
msgstr ""
#: [xmpp]country
msgid "Main XMPP server country"
msgstr ""
#: [log]empty
msgid "Empty"
msgstr "Vakua"
@ -952,7 +970,8 @@ msgid "My Subscriptions"
msgstr "Mea aboni"
#: [groups]add
msgid "Create a new Group"
#, fuzzy
msgid "Create a new Group on %s"
msgstr "Krear nova grupo"
#: [groups]name
@ -1445,6 +1464,10 @@ msgstr ""
msgid "Add a chatroom"
msgstr ""
#: [rooms]edit
msgid "Edit a chatroom"
msgstr ""
#: [rooms]empty_text1
msgid "You don't have any chatroom yet."
msgstr ""
@ -1565,6 +1588,14 @@ msgstr ""
msgid "Search a contact"
msgstr ""
#: [search]keyword
msgid "What are you looking for?"
msgstr ""
#: [search]subtitle
msgid "Open me using Ctrl + M"
msgstr ""
#: [share]error
msgid "This is not a valid url"
msgstr ""
@ -1877,6 +1908,11 @@ msgstr ""
msgid "Previous"
msgstr ""
#: [button]search
#, fuzzy
msgid "Search"
msgstr "Marto"
#: [day]title
msgid "Day"
msgstr ""

View file

@ -58,6 +58,8 @@
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
#. extracted from ../app/widgets/Roster/locales.ini
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
#. extracted from ../app/widgets/Search/locales.ini
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
#. extracted from ../app/widgets/Share/locales.ini
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
#. extracted from ../app/widgets/Statistics/locales.ini
@ -77,7 +79,7 @@ msgid ""
msgstr ""
"Project-Id-Version: movim\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-04-08 08:29+0200\n"
"POT-Creation-Date: 2016-05-24 08:36+0200\n"
"PO-Revision-Date: 2016-03-23 22:27+0000\n"
"Last-Translator: Jaussoin Timothée <edhelas@movim.eu>\n"
"Language-Team: Icelandic (http://www.transifex.com/movim/movim/language/is/)\n"
@ -306,7 +308,7 @@ msgid "Retype password"
msgstr ""
#: [whitelist]title
msgid "Whitelist - XMPP Server"
msgid "Whitelisted XMPP Servers"
msgstr ""
#: [whitelist]info1
@ -343,6 +345,22 @@ msgctxt "[information]label"
msgid "Information Message"
msgstr ""
#: [xmpp]title
msgid "Default XMPP server"
msgstr ""
#: [xmpp]domain
msgid "Main XMPP server domain"
msgstr ""
#: [xmpp]description
msgid "Main XMPP server description"
msgstr ""
#: [xmpp]country
msgid "Main XMPP server country"
msgstr ""
#: [log]empty
msgid "Empty"
msgstr ""
@ -951,8 +969,9 @@ msgid "My Subscriptions"
msgstr ""
#: [groups]add
msgid "Create a new Group"
msgstr ""
#, fuzzy
msgid "Create a new Group on %s"
msgstr "Skapa nýjan aðgang"
#: [groups]name
msgid "Group name"
@ -1444,6 +1463,11 @@ msgstr ""
msgid "Add a chatroom"
msgstr "Bæta við spjallrás"
#: [rooms]edit
#, fuzzy
msgid "Edit a chatroom"
msgstr "Bæta við spjallrás"
#: [rooms]empty_text1
msgid "You don't have any chatroom yet."
msgstr ""
@ -1564,6 +1588,14 @@ msgstr ""
msgid "Search a contact"
msgstr ""
#: [search]keyword
msgid "What are you looking for?"
msgstr ""
#: [search]subtitle
msgid "Open me using Ctrl + M"
msgstr ""
#: [share]error
msgid "This is not a valid url"
msgstr ""
@ -1876,6 +1908,10 @@ msgstr "Áfram"
msgid "Previous"
msgstr "Afturábak"
#: [button]search
msgid "Search"
msgstr ""
#: [day]title
msgid "Day"
msgstr "Dagur"

View file

@ -59,6 +59,8 @@
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
#. extracted from ../app/widgets/Roster/locales.ini
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
#. extracted from ../app/widgets/Search/locales.ini
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
#. extracted from ../app/widgets/Share/locales.ini
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
#. extracted from ../app/widgets/Statistics/locales.ini
@ -78,7 +80,7 @@ msgid ""
msgstr ""
"Project-Id-Version: movim\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-04-08 08:29+0200\n"
"POT-Creation-Date: 2016-05-24 08:36+0200\n"
"PO-Revision-Date: 2016-03-23 22:27+0000\n"
"Last-Translator: Jaussoin Timothée <edhelas@movim.eu>\n"
"Language-Team: Italian (http://www.transifex.com/movim/movim/language/it/)\n"
@ -307,7 +309,8 @@ msgid "Retype password"
msgstr "Ridigita la password"
#: [whitelist]title
msgid "Whitelist - XMPP Server"
#, fuzzy
msgid "Whitelisted XMPP Servers"
msgstr "la Whitelist del server XMPP"
#: [whitelist]info1
@ -344,6 +347,23 @@ msgctxt "[information]label"
msgid "Information Message"
msgstr "Informazione"
#: [xmpp]title
#, fuzzy
msgid "Default XMPP server"
msgstr "la Whitelist del server XMPP"
#: [xmpp]domain
msgid "Main XMPP server domain"
msgstr ""
#: [xmpp]description
msgid "Main XMPP server description"
msgstr ""
#: [xmpp]country
msgid "Main XMPP server country"
msgstr ""
#: [log]empty
msgid "Empty"
msgstr "Vuoto"
@ -953,7 +973,8 @@ msgid "My Subscriptions"
msgstr ""
#: [groups]add
msgid "Create a new Group"
#, fuzzy
msgid "Create a new Group on %s"
msgstr "Creare un nuovo gruppo"
#: [groups]name
@ -1447,6 +1468,11 @@ msgstr ""
msgid "Add a chatroom"
msgstr "Aggiungi una chatroom"
#: [rooms]edit
#, fuzzy
msgid "Edit a chatroom"
msgstr "Aggiungi una chatroom"
#: [rooms]empty_text1
msgid "You don't have any chatroom yet."
msgstr "Non hai alcuna chatroom al momento."
@ -1567,6 +1593,14 @@ msgstr "Cerca nei tuoi contatti"
msgid "Search a contact"
msgstr ""
#: [search]keyword
msgid "What are you looking for?"
msgstr ""
#: [search]subtitle
msgid "Open me using Ctrl + M"
msgstr ""
#: [share]error
msgid "This is not a valid url"
msgstr ""
@ -1879,6 +1913,11 @@ msgstr "Prossimo"
msgid "Previous"
msgstr "Precedente"
#: [button]search
#, fuzzy
msgid "Search"
msgstr "marzo"
#: [day]title
msgid "Day"
msgstr "Giorno"

View file

@ -58,6 +58,8 @@
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
#. extracted from ../app/widgets/Roster/locales.ini
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
#. extracted from ../app/widgets/Search/locales.ini
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
#. extracted from ../app/widgets/Share/locales.ini
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
#. extracted from ../app/widgets/Statistics/locales.ini
@ -77,7 +79,7 @@ msgid ""
msgstr ""
"Project-Id-Version: movim\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-04-08 08:29+0200\n"
"POT-Creation-Date: 2016-05-24 08:36+0200\n"
"PO-Revision-Date: 2016-03-23 22:27+0000\n"
"Last-Translator: Jaussoin Timothée <edhelas@movim.eu>\n"
"Language-Team: Japanese (http://www.transifex.com/movim/movim/language/ja/)\n"
@ -306,7 +308,8 @@ msgid "Retype password"
msgstr "パスワードを再入力してください"
#: [whitelist]title
msgid "Whitelist - XMPP Server"
#, fuzzy
msgid "Whitelisted XMPP Servers"
msgstr "信頼するXMPPサーバー"
#: [whitelist]info1
@ -343,6 +346,23 @@ msgctxt "[information]label"
msgid "Information Message"
msgstr ""
#: [xmpp]title
#, fuzzy
msgid "Default XMPP server"
msgstr "信頼するXMPPサーバー"
#: [xmpp]domain
msgid "Main XMPP server domain"
msgstr ""
#: [xmpp]description
msgid "Main XMPP server description"
msgstr ""
#: [xmpp]country
msgid "Main XMPP server country"
msgstr ""
#: [log]empty
msgid "Empty"
msgstr "空"
@ -951,7 +971,8 @@ msgid "My Subscriptions"
msgstr ""
#: [groups]add
msgid "Create a new Group"
#, fuzzy
msgid "Create a new Group on %s"
msgstr "グループを作成する"
#: [groups]name
@ -1444,6 +1465,11 @@ msgstr ""
msgid "Add a chatroom"
msgstr "チャットルームを追加する"
#: [rooms]edit
#, fuzzy
msgid "Edit a chatroom"
msgstr "チャットルームを追加する"
#: [rooms]empty_text1
msgid "You don't have any chatroom yet."
msgstr "チャットルームはまだありません"
@ -1564,6 +1590,14 @@ msgstr ""
msgid "Search a contact"
msgstr ""
#: [search]keyword
msgid "What are you looking for?"
msgstr ""
#: [search]subtitle
msgid "Open me using Ctrl + M"
msgstr ""
#: [share]error
msgid "This is not a valid url"
msgstr ""
@ -1876,6 +1910,11 @@ msgstr "次へ"
msgid "Previous"
msgstr "前へ"
#: [button]search
#, fuzzy
msgid "Search"
msgstr "3月"
#: [day]title
msgid "Day"
msgstr "日"

View file

@ -58,6 +58,8 @@
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
#. extracted from ../app/widgets/Roster/locales.ini
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
#. extracted from ../app/widgets/Search/locales.ini
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
#. extracted from ../app/widgets/Share/locales.ini
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
#. extracted from ../app/widgets/Statistics/locales.ini
@ -77,7 +79,7 @@ msgid ""
msgstr ""
"Project-Id-Version: movim\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-04-08 08:29+0200\n"
"POT-Creation-Date: 2016-05-24 08:36+0200\n"
"PO-Revision-Date: 2016-03-23 22:27+0000\n"
"Last-Translator: Jaussoin Timothée <edhelas@movim.eu>\n"
"Language-Team: Lojban (http://www.transifex.com/movim/movim/language/jbo/)\n"
@ -306,7 +308,7 @@ msgid "Retype password"
msgstr ""
#: [whitelist]title
msgid "Whitelist - XMPP Server"
msgid "Whitelisted XMPP Servers"
msgstr ""
#: [whitelist]info1
@ -343,6 +345,22 @@ msgctxt "[information]label"
msgid "Information Message"
msgstr ""
#: [xmpp]title
msgid "Default XMPP server"
msgstr ""
#: [xmpp]domain
msgid "Main XMPP server domain"
msgstr ""
#: [xmpp]description
msgid "Main XMPP server description"
msgstr ""
#: [xmpp]country
msgid "Main XMPP server country"
msgstr ""
#: [log]empty
msgid "Empty"
msgstr ""
@ -951,7 +969,7 @@ msgid "My Subscriptions"
msgstr ""
#: [groups]add
msgid "Create a new Group"
msgid "Create a new Group on %s"
msgstr ""
#: [groups]name
@ -1444,6 +1462,10 @@ msgstr ""
msgid "Add a chatroom"
msgstr ""
#: [rooms]edit
msgid "Edit a chatroom"
msgstr ""
#: [rooms]empty_text1
msgid "You don't have any chatroom yet."
msgstr ""
@ -1564,6 +1586,14 @@ msgstr ""
msgid "Search a contact"
msgstr ""
#: [search]keyword
msgid "What are you looking for?"
msgstr ""
#: [search]subtitle
msgid "Open me using Ctrl + M"
msgstr ""
#: [share]error
msgid "This is not a valid url"
msgstr ""
@ -1876,6 +1906,10 @@ msgstr ""
msgid "Previous"
msgstr ""
#: [button]search
msgid "Search"
msgstr ""
#: [day]title
msgid "Day"
msgstr ""

View file

@ -57,6 +57,8 @@
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
#. extracted from ../app/widgets/Roster/locales.ini
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
#. extracted from ../app/widgets/Search/locales.ini
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
#. extracted from ../app/widgets/Share/locales.ini
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
#. extracted from ../app/widgets/Statistics/locales.ini
@ -76,7 +78,7 @@ msgid ""
msgstr ""
"Project-Id-Version: movim\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-04-08 08:29+0200\n"
"POT-Creation-Date: 2016-05-24 08:36+0200\n"
"PO-Revision-Date: 2016-03-23 22:27+0000\n"
"Last-Translator: Jaussoin Timothée <edhelas@movim.eu>\n"
"Language-Team: Kazakh (http://www.transifex.com/movim/movim/language/kk/)\n"
@ -305,7 +307,7 @@ msgid "Retype password"
msgstr ""
#: [whitelist]title
msgid "Whitelist - XMPP Server"
msgid "Whitelisted XMPP Servers"
msgstr ""
#: [whitelist]info1
@ -342,6 +344,22 @@ msgctxt "[information]label"
msgid "Information Message"
msgstr ""
#: [xmpp]title
msgid "Default XMPP server"
msgstr ""
#: [xmpp]domain
msgid "Main XMPP server domain"
msgstr ""
#: [xmpp]description
msgid "Main XMPP server description"
msgstr ""
#: [xmpp]country
msgid "Main XMPP server country"
msgstr ""
#: [log]empty
msgid "Empty"
msgstr ""
@ -950,7 +968,7 @@ msgid "My Subscriptions"
msgstr ""
#: [groups]add
msgid "Create a new Group"
msgid "Create a new Group on %s"
msgstr ""
#: [groups]name
@ -1443,6 +1461,10 @@ msgstr ""
msgid "Add a chatroom"
msgstr ""
#: [rooms]edit
msgid "Edit a chatroom"
msgstr ""
#: [rooms]empty_text1
msgid "You don't have any chatroom yet."
msgstr ""
@ -1563,6 +1585,14 @@ msgstr ""
msgid "Search a contact"
msgstr ""
#: [search]keyword
msgid "What are you looking for?"
msgstr ""
#: [search]subtitle
msgid "Open me using Ctrl + M"
msgstr ""
#: [share]error
msgid "This is not a valid url"
msgstr ""
@ -1875,6 +1905,10 @@ msgstr ""
msgid "Previous"
msgstr ""
#: [button]search
msgid "Search"
msgstr ""
#: [day]title
msgid "Day"
msgstr ""

View file

@ -57,6 +57,8 @@
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
#. extracted from ../app/widgets/Roster/locales.ini
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
#. extracted from ../app/widgets/Search/locales.ini
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
#. extracted from ../app/widgets/Share/locales.ini
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
#. extracted from ../app/widgets/Statistics/locales.ini
@ -76,7 +78,7 @@ msgid ""
msgstr ""
"Project-Id-Version: movim\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-04-08 08:29+0200\n"
"POT-Creation-Date: 2016-05-24 08:36+0200\n"
"PO-Revision-Date: 2016-03-23 22:27+0000\n"
"Last-Translator: Jaussoin Timothée <edhelas@movim.eu>\n"
"Language-Team: Latin (http://www.transifex.com/movim/movim/language/la/)\n"
@ -305,7 +307,7 @@ msgid "Retype password"
msgstr ""
#: [whitelist]title
msgid "Whitelist - XMPP Server"
msgid "Whitelisted XMPP Servers"
msgstr ""
#: [whitelist]info1
@ -342,6 +344,22 @@ msgctxt "[information]label"
msgid "Information Message"
msgstr ""
#: [xmpp]title
msgid "Default XMPP server"
msgstr ""
#: [xmpp]domain
msgid "Main XMPP server domain"
msgstr ""
#: [xmpp]description
msgid "Main XMPP server description"
msgstr ""
#: [xmpp]country
msgid "Main XMPP server country"
msgstr ""
#: [log]empty
msgid "Empty"
msgstr ""
@ -950,7 +968,7 @@ msgid "My Subscriptions"
msgstr ""
#: [groups]add
msgid "Create a new Group"
msgid "Create a new Group on %s"
msgstr ""
#: [groups]name
@ -1443,6 +1461,10 @@ msgstr ""
msgid "Add a chatroom"
msgstr ""
#: [rooms]edit
msgid "Edit a chatroom"
msgstr ""
#: [rooms]empty_text1
msgid "You don't have any chatroom yet."
msgstr ""
@ -1563,6 +1585,14 @@ msgstr ""
msgid "Search a contact"
msgstr ""
#: [search]keyword
msgid "What are you looking for?"
msgstr ""
#: [search]subtitle
msgid "Open me using Ctrl + M"
msgstr ""
#: [share]error
msgid "This is not a valid url"
msgstr ""
@ -1875,6 +1905,10 @@ msgstr ""
msgid "Previous"
msgstr ""
#: [button]search
msgid "Search"
msgstr ""
#: [day]title
msgid "Day"
msgstr ""

View file

@ -57,6 +57,8 @@
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
#. extracted from ../app/widgets/Roster/locales.ini
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
#. extracted from ../app/widgets/Search/locales.ini
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
#. extracted from ../app/widgets/Share/locales.ini
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
#. extracted from ../app/widgets/Statistics/locales.ini
@ -76,7 +78,7 @@ msgid ""
msgstr ""
"Project-Id-Version: movim\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-04-08 08:29+0200\n"
"POT-Creation-Date: 2016-05-24 08:36+0200\n"
"PO-Revision-Date: 2016-03-23 22:27+0000\n"
"Last-Translator: Jaussoin Timothée <edhelas@movim.eu>\n"
"Language-Team: Luxembourgish (http://www.transifex.com/movim/movim/language/lb/)\n"
@ -305,7 +307,7 @@ msgid "Retype password"
msgstr ""
#: [whitelist]title
msgid "Whitelist - XMPP Server"
msgid "Whitelisted XMPP Servers"
msgstr ""
#: [whitelist]info1
@ -342,6 +344,22 @@ msgctxt "[information]label"
msgid "Information Message"
msgstr ""
#: [xmpp]title
msgid "Default XMPP server"
msgstr ""
#: [xmpp]domain
msgid "Main XMPP server domain"
msgstr ""
#: [xmpp]description
msgid "Main XMPP server description"
msgstr ""
#: [xmpp]country
msgid "Main XMPP server country"
msgstr ""
#: [log]empty
msgid "Empty"
msgstr ""
@ -950,7 +968,7 @@ msgid "My Subscriptions"
msgstr ""
#: [groups]add
msgid "Create a new Group"
msgid "Create a new Group on %s"
msgstr ""
#: [groups]name
@ -1443,6 +1461,10 @@ msgstr ""
msgid "Add a chatroom"
msgstr ""
#: [rooms]edit
msgid "Edit a chatroom"
msgstr ""
#: [rooms]empty_text1
msgid "You don't have any chatroom yet."
msgstr ""
@ -1563,6 +1585,14 @@ msgstr ""
msgid "Search a contact"
msgstr ""
#: [search]keyword
msgid "What are you looking for?"
msgstr ""
#: [search]subtitle
msgid "Open me using Ctrl + M"
msgstr ""
#: [share]error
msgid "This is not a valid url"
msgstr ""
@ -1875,6 +1905,10 @@ msgstr ""
msgid "Previous"
msgstr ""
#: [button]search
msgid "Search"
msgstr ""
#: [day]title
msgid "Day"
msgstr ""

View file

@ -58,6 +58,8 @@
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
#. extracted from ../app/widgets/Roster/locales.ini
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
#. extracted from ../app/widgets/Search/locales.ini
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
#. extracted from ../app/widgets/Share/locales.ini
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
#. extracted from ../app/widgets/Statistics/locales.ini
@ -77,7 +79,7 @@ msgid ""
msgstr ""
"Project-Id-Version: movim\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-04-08 08:29+0200\n"
"POT-Creation-Date: 2016-05-24 08:36+0200\n"
"PO-Revision-Date: 2016-03-23 22:27+0000\n"
"Last-Translator: Jaussoin Timothée <edhelas@movim.eu>\n"
"Language-Team: Latvian (http://www.transifex.com/movim/movim/language/lv/)\n"
@ -306,7 +308,7 @@ msgid "Retype password"
msgstr "Pārievadiet paroli"
#: [whitelist]title
msgid "Whitelist - XMPP Server"
msgid "Whitelisted XMPP Servers"
msgstr ""
#: [whitelist]info1
@ -343,6 +345,22 @@ msgctxt "[information]label"
msgid "Information Message"
msgstr ""
#: [xmpp]title
msgid "Default XMPP server"
msgstr ""
#: [xmpp]domain
msgid "Main XMPP server domain"
msgstr ""
#: [xmpp]description
msgid "Main XMPP server description"
msgstr ""
#: [xmpp]country
msgid "Main XMPP server country"
msgstr ""
#: [log]empty
msgid "Empty"
msgstr ""
@ -951,8 +969,9 @@ msgid "My Subscriptions"
msgstr ""
#: [groups]add
msgid "Create a new Group"
msgstr ""
#, fuzzy
msgid "Create a new Group on %s"
msgstr "Izveidot jaunu kontu"
#: [groups]name
msgid "Group name"
@ -1444,6 +1463,10 @@ msgstr ""
msgid "Add a chatroom"
msgstr ""
#: [rooms]edit
msgid "Edit a chatroom"
msgstr ""
#: [rooms]empty_text1
msgid "You don't have any chatroom yet."
msgstr ""
@ -1564,6 +1587,14 @@ msgstr ""
msgid "Search a contact"
msgstr ""
#: [search]keyword
msgid "What are you looking for?"
msgstr ""
#: [search]subtitle
msgid "Open me using Ctrl + M"
msgstr ""
#: [share]error
msgid "This is not a valid url"
msgstr ""
@ -1876,6 +1907,10 @@ msgstr ""
msgid "Previous"
msgstr ""
#: [button]search
msgid "Search"
msgstr ""
#: [day]title
msgid "Day"
msgstr ""

View file

@ -57,6 +57,8 @@
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
#. extracted from ../app/widgets/Roster/locales.ini
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
#. extracted from ../app/widgets/Search/locales.ini
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
#. extracted from ../app/widgets/Share/locales.ini
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
#. extracted from ../app/widgets/Statistics/locales.ini
@ -76,7 +78,7 @@ msgid ""
msgstr ""
"Project-Id-Version: movim\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-04-08 08:29+0200\n"
"POT-Creation-Date: 2016-05-24 08:36+0200\n"
"PO-Revision-Date: 2016-03-23 22:27+0000\n"
"Last-Translator: Jaussoin Timothée <edhelas@movim.eu>\n"
"Language-Team: Chinese (Literary) (http://www.transifex.com/movim/movim/language/lzh/)\n"
@ -305,7 +307,7 @@ msgid "Retype password"
msgstr ""
#: [whitelist]title
msgid "Whitelist - XMPP Server"
msgid "Whitelisted XMPP Servers"
msgstr ""
#: [whitelist]info1
@ -342,6 +344,22 @@ msgctxt "[information]label"
msgid "Information Message"
msgstr ""
#: [xmpp]title
msgid "Default XMPP server"
msgstr ""
#: [xmpp]domain
msgid "Main XMPP server domain"
msgstr ""
#: [xmpp]description
msgid "Main XMPP server description"
msgstr ""
#: [xmpp]country
msgid "Main XMPP server country"
msgstr ""
#: [log]empty
msgid "Empty"
msgstr ""
@ -950,7 +968,7 @@ msgid "My Subscriptions"
msgstr ""
#: [groups]add
msgid "Create a new Group"
msgid "Create a new Group on %s"
msgstr ""
#: [groups]name
@ -1443,6 +1461,10 @@ msgstr ""
msgid "Add a chatroom"
msgstr ""
#: [rooms]edit
msgid "Edit a chatroom"
msgstr ""
#: [rooms]empty_text1
msgid "You don't have any chatroom yet."
msgstr ""
@ -1563,6 +1585,14 @@ msgstr ""
msgid "Search a contact"
msgstr ""
#: [search]keyword
msgid "What are you looking for?"
msgstr ""
#: [search]subtitle
msgid "Open me using Ctrl + M"
msgstr ""
#: [share]error
msgid "This is not a valid url"
msgstr ""
@ -1875,6 +1905,10 @@ msgstr ""
msgid "Previous"
msgstr ""
#: [button]search
msgid "Search"
msgstr ""
#: [day]title
msgid "Day"
msgstr ""

View file

@ -55,6 +55,8 @@
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
#. extracted from ../app/widgets/Roster/locales.ini
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
#. extracted from ../app/widgets/Search/locales.ini
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
#. extracted from ../app/widgets/Share/locales.ini
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
#. extracted from ../app/widgets/Statistics/locales.ini
@ -75,7 +77,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-04-08 08:29+0200\n"
"POT-Creation-Date: 2016-05-24 08:36+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@ -309,7 +311,7 @@ msgid "Retype password"
msgstr ""
#: [whitelist]title
msgid "Whitelist - XMPP Server"
msgid "Whitelisted XMPP Servers"
msgstr ""
#: [whitelist]info1
@ -350,6 +352,22 @@ msgctxt "[information]label"
msgid "Information Message"
msgstr ""
#: [xmpp]title
msgid "Default XMPP server"
msgstr ""
#: [xmpp]domain
msgid "Main XMPP server domain"
msgstr ""
#: [xmpp]description
msgid "Main XMPP server description"
msgstr ""
#: [xmpp]country
msgid "Main XMPP server country"
msgstr ""
#: [log]empty
msgid "Empty"
msgstr ""
@ -979,7 +997,7 @@ msgid "My Subscriptions"
msgstr ""
#: [groups]add
msgid "Create a new Group"
msgid "Create a new Group on %s"
msgstr ""
#: [groups]name
@ -1484,6 +1502,10 @@ msgstr ""
msgid "Add a chatroom"
msgstr ""
#: [rooms]edit
msgid "Edit a chatroom"
msgstr ""
#: [rooms]empty_text1
msgid "You don't have any chatroom yet."
msgstr ""
@ -1606,6 +1628,14 @@ msgstr ""
msgid "Search a contact"
msgstr ""
#: [search]keyword
msgid "What are you looking for?"
msgstr ""
#: [search]subtitle
msgid "Open me using Ctrl + M"
msgstr ""
#: [share]error
msgid "This is not a valid url"
msgstr ""
@ -1925,6 +1955,10 @@ msgstr ""
msgid "Previous"
msgstr ""
#: [button]search
msgid "Search"
msgstr ""
#: [day]title
msgid "Day"
msgstr ""

View file

@ -58,6 +58,8 @@
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
#. extracted from ../app/widgets/Roster/locales.ini
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
#. extracted from ../app/widgets/Search/locales.ini
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
#. extracted from ../app/widgets/Share/locales.ini
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
#. extracted from ../app/widgets/Statistics/locales.ini
@ -77,7 +79,7 @@ msgid ""
msgstr ""
"Project-Id-Version: movim\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-04-08 08:29+0200\n"
"POT-Creation-Date: 2016-05-24 08:36+0200\n"
"PO-Revision-Date: 2016-03-23 22:27+0000\n"
"Last-Translator: Jaussoin Timothée <edhelas@movim.eu>\n"
"Language-Team: Nepali (http://www.transifex.com/movim/movim/language/ne/)\n"
@ -306,7 +308,7 @@ msgid "Retype password"
msgstr ""
#: [whitelist]title
msgid "Whitelist - XMPP Server"
msgid "Whitelisted XMPP Servers"
msgstr ""
#: [whitelist]info1
@ -343,6 +345,22 @@ msgctxt "[information]label"
msgid "Information Message"
msgstr ""
#: [xmpp]title
msgid "Default XMPP server"
msgstr ""
#: [xmpp]domain
msgid "Main XMPP server domain"
msgstr ""
#: [xmpp]description
msgid "Main XMPP server description"
msgstr ""
#: [xmpp]country
msgid "Main XMPP server country"
msgstr ""
#: [log]empty
msgid "Empty"
msgstr ""
@ -951,7 +969,7 @@ msgid "My Subscriptions"
msgstr ""
#: [groups]add
msgid "Create a new Group"
msgid "Create a new Group on %s"
msgstr ""
#: [groups]name
@ -1444,6 +1462,10 @@ msgstr ""
msgid "Add a chatroom"
msgstr ""
#: [rooms]edit
msgid "Edit a chatroom"
msgstr ""
#: [rooms]empty_text1
msgid "You don't have any chatroom yet."
msgstr ""
@ -1564,6 +1586,14 @@ msgstr ""
msgid "Search a contact"
msgstr ""
#: [search]keyword
msgid "What are you looking for?"
msgstr ""
#: [search]subtitle
msgid "Open me using Ctrl + M"
msgstr ""
#: [share]error
msgid "This is not a valid url"
msgstr ""
@ -1876,6 +1906,10 @@ msgstr ""
msgid "Previous"
msgstr ""
#: [button]search
msgid "Search"
msgstr ""
#: [day]title
msgid "Day"
msgstr "दिन"

View file

@ -60,6 +60,8 @@
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
#. extracted from ../app/widgets/Roster/locales.ini
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
#. extracted from ../app/widgets/Search/locales.ini
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
#. extracted from ../app/widgets/Share/locales.ini
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
#. extracted from ../app/widgets/Statistics/locales.ini
@ -79,7 +81,7 @@ msgid ""
msgstr ""
"Project-Id-Version: movim\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-04-08 08:29+0200\n"
"POT-Creation-Date: 2016-05-24 08:36+0200\n"
"PO-Revision-Date: 2016-03-23 22:27+0000\n"
"Last-Translator: Jaussoin Timothée <edhelas@movim.eu>\n"
"Language-Team: Dutch (http://www.transifex.com/movim/movim/language/nl/)\n"
@ -308,7 +310,8 @@ msgid "Retype password"
msgstr "Herhaal wachtwoord"
#: [whitelist]title
msgid "Whitelist - XMPP Server"
#, fuzzy
msgid "Whitelisted XMPP Servers"
msgstr "Whitelist - XMPP Server"
#: [whitelist]info1
@ -345,6 +348,24 @@ msgctxt "[information]label"
msgid "Information Message"
msgstr "Informatieve Mededeling"
#: [xmpp]title
#, fuzzy
msgid "Default XMPP server"
msgstr "Whitelist - XMPP Server"
#: [xmpp]domain
msgid "Main XMPP server domain"
msgstr ""
#: [xmpp]description
msgid "Main XMPP server description"
msgstr ""
#: [xmpp]country
#, fuzzy
msgid "Main XMPP server country"
msgstr "je XMPP server is niet geautoriseerd"
#: [log]empty
msgid "Empty"
msgstr "Leeg"
@ -954,7 +975,8 @@ msgid "My Subscriptions"
msgstr "Mijn abonnementen"
#: [groups]add
msgid "Create a new Group"
#, fuzzy
msgid "Create a new Group on %s"
msgstr "Maak een nieuwe Groep"
#: [groups]name
@ -1448,6 +1470,11 @@ msgstr "Voeg wat tekst toe"
msgid "Add a chatroom"
msgstr ""
#: [rooms]edit
#, fuzzy
msgid "Edit a chatroom"
msgstr "Openbare chatroom"
#: [rooms]empty_text1
msgid "You don't have any chatroom yet."
msgstr "Je hebt nog geen chatrooms."
@ -1568,6 +1595,14 @@ msgstr "Zoek in je contacten"
msgid "Search a contact"
msgstr ""
#: [search]keyword
msgid "What are you looking for?"
msgstr ""
#: [search]subtitle
msgid "Open me using Ctrl + M"
msgstr ""
#: [share]error
msgid "This is not a valid url"
msgstr "Dit is geen geldige URL"
@ -1880,6 +1915,11 @@ msgstr "Volgende"
msgid "Previous"
msgstr "Vorige"
#: [button]search
#, fuzzy
msgid "Search"
msgstr "maart"
#: [day]title
msgid "Day"
msgstr "Dag"

View file

@ -57,6 +57,8 @@
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
#. extracted from ../app/widgets/Roster/locales.ini
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
#. extracted from ../app/widgets/Search/locales.ini
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
#. extracted from ../app/widgets/Share/locales.ini
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
#. extracted from ../app/widgets/Statistics/locales.ini
@ -76,7 +78,7 @@ msgid ""
msgstr ""
"Project-Id-Version: movim\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-04-08 08:29+0200\n"
"POT-Creation-Date: 2016-05-24 08:36+0200\n"
"PO-Revision-Date: 2016-03-23 22:27+0000\n"
"Last-Translator: Jaussoin Timothée <edhelas@movim.eu>\n"
"Language-Team: Norwegian (http://www.transifex.com/movim/movim/language/no/)\n"
@ -305,7 +307,7 @@ msgid "Retype password"
msgstr ""
#: [whitelist]title
msgid "Whitelist - XMPP Server"
msgid "Whitelisted XMPP Servers"
msgstr ""
#: [whitelist]info1
@ -342,6 +344,22 @@ msgctxt "[information]label"
msgid "Information Message"
msgstr ""
#: [xmpp]title
msgid "Default XMPP server"
msgstr ""
#: [xmpp]domain
msgid "Main XMPP server domain"
msgstr ""
#: [xmpp]description
msgid "Main XMPP server description"
msgstr ""
#: [xmpp]country
msgid "Main XMPP server country"
msgstr ""
#: [log]empty
msgid "Empty"
msgstr ""
@ -950,7 +968,7 @@ msgid "My Subscriptions"
msgstr ""
#: [groups]add
msgid "Create a new Group"
msgid "Create a new Group on %s"
msgstr ""
#: [groups]name
@ -1443,6 +1461,10 @@ msgstr ""
msgid "Add a chatroom"
msgstr ""
#: [rooms]edit
msgid "Edit a chatroom"
msgstr ""
#: [rooms]empty_text1
msgid "You don't have any chatroom yet."
msgstr ""
@ -1563,6 +1585,14 @@ msgstr ""
msgid "Search a contact"
msgstr ""
#: [search]keyword
msgid "What are you looking for?"
msgstr ""
#: [search]subtitle
msgid "Open me using Ctrl + M"
msgstr ""
#: [share]error
msgid "This is not a valid url"
msgstr ""
@ -1875,6 +1905,10 @@ msgstr ""
msgid "Previous"
msgstr ""
#: [button]search
msgid "Search"
msgstr ""
#: [day]title
msgid "Day"
msgstr ""

View file

@ -57,6 +57,8 @@
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
#. extracted from ../app/widgets/Roster/locales.ini
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
#. extracted from ../app/widgets/Search/locales.ini
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
#. extracted from ../app/widgets/Share/locales.ini
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
#. extracted from ../app/widgets/Statistics/locales.ini
@ -76,7 +78,7 @@ msgid ""
msgstr ""
"Project-Id-Version: movim\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-04-08 08:29+0200\n"
"POT-Creation-Date: 2016-05-24 08:36+0200\n"
"PO-Revision-Date: 2016-03-23 22:27+0000\n"
"Last-Translator: Jaussoin Timothée <edhelas@movim.eu>\n"
"Language-Team: Occitan (post 1500) (http://www.transifex.com/movim/movim/language/oc/)\n"
@ -305,7 +307,8 @@ msgid "Retype password"
msgstr "Tornar picar lo senhal"
#: [whitelist]title
msgid "Whitelist - XMPP Server"
#, fuzzy
msgid "Whitelisted XMPP Servers"
msgstr "Servidors XMPP - Lista blancha"
#: [whitelist]info1
@ -342,6 +345,23 @@ msgctxt "[information]label"
msgid "Information Message"
msgstr ""
#: [xmpp]title
#, fuzzy
msgid "Default XMPP server"
msgstr "Servidors XMPP - Lista blancha"
#: [xmpp]domain
msgid "Main XMPP server domain"
msgstr ""
#: [xmpp]description
msgid "Main XMPP server description"
msgstr ""
#: [xmpp]country
msgid "Main XMPP server country"
msgstr ""
#: [log]empty
msgid "Empty"
msgstr ""
@ -950,8 +970,9 @@ msgid "My Subscriptions"
msgstr ""
#: [groups]add
msgid "Create a new Group"
msgstr ""
#, fuzzy
msgid "Create a new Group on %s"
msgstr "Crear un compte novèl"
#: [groups]name
msgid "Group name"
@ -1443,6 +1464,10 @@ msgstr ""
msgid "Add a chatroom"
msgstr ""
#: [rooms]edit
msgid "Edit a chatroom"
msgstr ""
#: [rooms]empty_text1
msgid "You don't have any chatroom yet."
msgstr ""
@ -1563,6 +1588,14 @@ msgstr ""
msgid "Search a contact"
msgstr ""
#: [search]keyword
msgid "What are you looking for?"
msgstr ""
#: [search]subtitle
msgid "Open me using Ctrl + M"
msgstr ""
#: [share]error
msgid "This is not a valid url"
msgstr ""
@ -1875,6 +1908,11 @@ msgstr ""
msgid "Previous"
msgstr ""
#: [button]search
#, fuzzy
msgid "Search"
msgstr "Març"
#: [day]title
msgid "Day"
msgstr "Jorn"

View file

@ -58,6 +58,8 @@
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
#. extracted from ../app/widgets/Roster/locales.ini
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
#. extracted from ../app/widgets/Search/locales.ini
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
#. extracted from ../app/widgets/Share/locales.ini
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
#. extracted from ../app/widgets/Statistics/locales.ini
@ -77,7 +79,7 @@ msgid ""
msgstr ""
"Project-Id-Version: movim\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-04-08 08:29+0200\n"
"POT-Creation-Date: 2016-05-24 08:36+0200\n"
"PO-Revision-Date: 2016-03-23 22:27+0000\n"
"Last-Translator: Jaussoin Timothée <edhelas@movim.eu>\n"
"Language-Team: Polish (http://www.transifex.com/movim/movim/language/pl/)\n"
@ -306,7 +308,8 @@ msgid "Retype password"
msgstr "Przepisz hasło"
#: [whitelist]title
msgid "Whitelist - XMPP Server"
#, fuzzy
msgid "Whitelisted XMPP Servers"
msgstr "Biała lista - Serwer XMPP"
#: [whitelist]info1
@ -343,6 +346,24 @@ msgctxt "[information]label"
msgid "Information Message"
msgstr "Wiadomość Informacyjna"
#: [xmpp]title
#, fuzzy
msgid "Default XMPP server"
msgstr "Biała lista - Serwer XMPP"
#: [xmpp]domain
msgid "Main XMPP server domain"
msgstr ""
#: [xmpp]description
msgid "Main XMPP server description"
msgstr ""
#: [xmpp]country
#, fuzzy
msgid "Main XMPP server country"
msgstr "Twój serwer XMPP nie jest autoryzowany"
#: [log]empty
msgid "Empty"
msgstr "Puste"
@ -952,7 +973,8 @@ msgid "My Subscriptions"
msgstr "Moje Subskrypcje"
#: [groups]add
msgid "Create a new Group"
#, fuzzy
msgid "Create a new Group on %s"
msgstr "Stwórz nową Grupę"
#: [groups]name
@ -1446,6 +1468,11 @@ msgstr "Dodaj trochę tekstu"
msgid "Add a chatroom"
msgstr "Dodaj pokój czatowy"
#: [rooms]edit
#, fuzzy
msgid "Edit a chatroom"
msgstr "Dodaj pokój czatowy"
#: [rooms]empty_text1
msgid "You don't have any chatroom yet."
msgstr "Nie masz żadnych pokoi czatowych"
@ -1566,6 +1593,14 @@ msgstr "Szukaj w swoich kontaktach"
msgid "Search a contact"
msgstr ""
#: [search]keyword
msgid "What are you looking for?"
msgstr ""
#: [search]subtitle
msgid "Open me using Ctrl + M"
msgstr ""
#: [share]error
msgid "This is not a valid url"
msgstr "To nie jest poprawny URL"
@ -1878,6 +1913,11 @@ msgstr "Następna"
msgid "Previous"
msgstr "Poprzednia"
#: [button]search
#, fuzzy
msgid "Search"
msgstr "Marzec"
#: [day]title
msgid "Day"
msgstr "Dzień"

View file

@ -58,6 +58,8 @@
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
#. extracted from ../app/widgets/Roster/locales.ini
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
#. extracted from ../app/widgets/Search/locales.ini
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
#. extracted from ../app/widgets/Share/locales.ini
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
#. extracted from ../app/widgets/Statistics/locales.ini
@ -77,7 +79,7 @@ msgid ""
msgstr ""
"Project-Id-Version: movim\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-04-08 08:29+0200\n"
"POT-Creation-Date: 2016-05-24 08:36+0200\n"
"PO-Revision-Date: 2016-03-23 22:27+0000\n"
"Last-Translator: Jaussoin Timothée <edhelas@movim.eu>\n"
"Language-Team: Portuguese (http://www.transifex.com/movim/movim/language/pt/)\n"
@ -306,7 +308,7 @@ msgid "Retype password"
msgstr ""
#: [whitelist]title
msgid "Whitelist - XMPP Server"
msgid "Whitelisted XMPP Servers"
msgstr ""
#: [whitelist]info1
@ -343,6 +345,22 @@ msgctxt "[information]label"
msgid "Information Message"
msgstr ""
#: [xmpp]title
msgid "Default XMPP server"
msgstr ""
#: [xmpp]domain
msgid "Main XMPP server domain"
msgstr ""
#: [xmpp]description
msgid "Main XMPP server description"
msgstr ""
#: [xmpp]country
msgid "Main XMPP server country"
msgstr ""
#: [log]empty
msgid "Empty"
msgstr ""
@ -951,8 +969,9 @@ msgid "My Subscriptions"
msgstr ""
#: [groups]add
msgid "Create a new Group"
msgstr ""
#, fuzzy
msgid "Create a new Group on %s"
msgstr "Criar uma nova conta"
#: [groups]name
msgid "Group name"
@ -1444,6 +1463,10 @@ msgstr ""
msgid "Add a chatroom"
msgstr ""
#: [rooms]edit
msgid "Edit a chatroom"
msgstr ""
#: [rooms]empty_text1
msgid "You don't have any chatroom yet."
msgstr ""
@ -1564,6 +1587,14 @@ msgstr ""
msgid "Search a contact"
msgstr ""
#: [search]keyword
msgid "What are you looking for?"
msgstr ""
#: [search]subtitle
msgid "Open me using Ctrl + M"
msgstr ""
#: [share]error
msgid "This is not a valid url"
msgstr ""
@ -1876,6 +1907,11 @@ msgstr ""
msgid "Previous"
msgstr ""
#: [button]search
#, fuzzy
msgid "Search"
msgstr "Março"
#: [day]title
msgid "Day"
msgstr "Dia"

View file

@ -57,6 +57,8 @@
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
#. extracted from ../app/widgets/Roster/locales.ini
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
#. extracted from ../app/widgets/Search/locales.ini
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
#. extracted from ../app/widgets/Share/locales.ini
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
#. extracted from ../app/widgets/Statistics/locales.ini
@ -76,7 +78,7 @@ msgid ""
msgstr ""
"Project-Id-Version: movim\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-04-08 08:29+0200\n"
"POT-Creation-Date: 2016-05-24 08:36+0200\n"
"PO-Revision-Date: 2016-03-23 22:27+0000\n"
"Last-Translator: Jaussoin Timothée <edhelas@movim.eu>\n"
"Language-Team: Romanian (http://www.transifex.com/movim/movim/language/ro/)\n"
@ -305,7 +307,7 @@ msgid "Retype password"
msgstr ""
#: [whitelist]title
msgid "Whitelist - XMPP Server"
msgid "Whitelisted XMPP Servers"
msgstr ""
#: [whitelist]info1
@ -342,6 +344,22 @@ msgctxt "[information]label"
msgid "Information Message"
msgstr ""
#: [xmpp]title
msgid "Default XMPP server"
msgstr ""
#: [xmpp]domain
msgid "Main XMPP server domain"
msgstr ""
#: [xmpp]description
msgid "Main XMPP server description"
msgstr ""
#: [xmpp]country
msgid "Main XMPP server country"
msgstr ""
#: [log]empty
msgid "Empty"
msgstr ""
@ -950,7 +968,7 @@ msgid "My Subscriptions"
msgstr ""
#: [groups]add
msgid "Create a new Group"
msgid "Create a new Group on %s"
msgstr ""
#: [groups]name
@ -1443,6 +1461,10 @@ msgstr ""
msgid "Add a chatroom"
msgstr ""
#: [rooms]edit
msgid "Edit a chatroom"
msgstr ""
#: [rooms]empty_text1
msgid "You don't have any chatroom yet."
msgstr ""
@ -1563,6 +1585,14 @@ msgstr ""
msgid "Search a contact"
msgstr ""
#: [search]keyword
msgid "What are you looking for?"
msgstr ""
#: [search]subtitle
msgid "Open me using Ctrl + M"
msgstr ""
#: [share]error
msgid "This is not a valid url"
msgstr ""
@ -1875,6 +1905,10 @@ msgstr ""
msgid "Previous"
msgstr ""
#: [button]search
msgid "Search"
msgstr ""
#: [day]title
msgid "Day"
msgstr ""

View file

@ -59,6 +59,8 @@
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
#. extracted from ../app/widgets/Roster/locales.ini
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
#. extracted from ../app/widgets/Search/locales.ini
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
#. extracted from ../app/widgets/Share/locales.ini
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
#. extracted from ../app/widgets/Statistics/locales.ini
@ -78,7 +80,7 @@ msgid ""
msgstr ""
"Project-Id-Version: movim\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-04-08 08:29+0200\n"
"POT-Creation-Date: 2016-05-24 08:36+0200\n"
"PO-Revision-Date: 2016-03-23 22:27+0000\n"
"Last-Translator: Jaussoin Timothée <edhelas@movim.eu>\n"
"Language-Team: Russian (http://www.transifex.com/movim/movim/language/ru/)\n"
@ -307,7 +309,8 @@ msgid "Retype password"
msgstr "Введите пароль ещё раз"
#: [whitelist]title
msgid "Whitelist - XMPP Server"
#, fuzzy
msgid "Whitelisted XMPP Servers"
msgstr "Белый список XMPP серверов"
#: [whitelist]info1
@ -344,6 +347,23 @@ msgctxt "[information]label"
msgid "Information Message"
msgstr "Информационное сообщение"
#: [xmpp]title
#, fuzzy
msgid "Default XMPP server"
msgstr "Белый список XMPP серверов"
#: [xmpp]domain
msgid "Main XMPP server domain"
msgstr ""
#: [xmpp]description
msgid "Main XMPP server description"
msgstr ""
#: [xmpp]country
msgid "Main XMPP server country"
msgstr ""
#: [log]empty
msgid "Empty"
msgstr "Пусто"
@ -953,8 +973,9 @@ msgid "My Subscriptions"
msgstr ""
#: [groups]add
msgid "Create a new Group"
msgstr ""
#, fuzzy
msgid "Create a new Group on %s"
msgstr "Создать новую учётную запись"
#: [groups]name
msgid "Group name"
@ -1446,6 +1467,11 @@ msgstr ""
msgid "Add a chatroom"
msgstr "Добавить комнату"
#: [rooms]edit
#, fuzzy
msgid "Edit a chatroom"
msgstr "Добавить комнату"
#: [rooms]empty_text1
msgid "You don't have any chatroom yet."
msgstr ""
@ -1566,6 +1592,14 @@ msgstr ""
msgid "Search a contact"
msgstr ""
#: [search]keyword
msgid "What are you looking for?"
msgstr ""
#: [search]subtitle
msgid "Open me using Ctrl + M"
msgstr ""
#: [share]error
msgid "This is not a valid url"
msgstr ""
@ -1878,6 +1912,11 @@ msgstr ""
msgid "Previous"
msgstr ""
#: [button]search
#, fuzzy
msgid "Search"
msgstr "Март"
#: [day]title
msgid "Day"
msgstr "День"

View file

@ -58,6 +58,8 @@
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
#. extracted from ../app/widgets/Roster/locales.ini
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
#. extracted from ../app/widgets/Search/locales.ini
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
#. extracted from ../app/widgets/Share/locales.ini
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
#. extracted from ../app/widgets/Statistics/locales.ini
@ -77,7 +79,7 @@ msgid ""
msgstr ""
"Project-Id-Version: movim\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-04-08 08:29+0200\n"
"POT-Creation-Date: 2016-05-24 08:36+0200\n"
"PO-Revision-Date: 2016-03-23 22:27+0000\n"
"Last-Translator: Jaussoin Timothée <edhelas@movim.eu>\n"
"Language-Team: Swedish (http://www.transifex.com/movim/movim/language/sv/)\n"
@ -306,7 +308,7 @@ msgid "Retype password"
msgstr ""
#: [whitelist]title
msgid "Whitelist - XMPP Server"
msgid "Whitelisted XMPP Servers"
msgstr ""
#: [whitelist]info1
@ -343,6 +345,22 @@ msgctxt "[information]label"
msgid "Information Message"
msgstr ""
#: [xmpp]title
msgid "Default XMPP server"
msgstr ""
#: [xmpp]domain
msgid "Main XMPP server domain"
msgstr ""
#: [xmpp]description
msgid "Main XMPP server description"
msgstr ""
#: [xmpp]country
msgid "Main XMPP server country"
msgstr ""
#: [log]empty
msgid "Empty"
msgstr ""
@ -951,8 +969,9 @@ msgid "My Subscriptions"
msgstr ""
#: [groups]add
msgid "Create a new Group"
msgstr ""
#, fuzzy
msgid "Create a new Group on %s"
msgstr "Skapa ett nytt konto"
#: [groups]name
msgid "Group name"
@ -1444,6 +1463,10 @@ msgstr ""
msgid "Add a chatroom"
msgstr ""
#: [rooms]edit
msgid "Edit a chatroom"
msgstr ""
#: [rooms]empty_text1
msgid "You don't have any chatroom yet."
msgstr ""
@ -1564,6 +1587,14 @@ msgstr ""
msgid "Search a contact"
msgstr ""
#: [search]keyword
msgid "What are you looking for?"
msgstr ""
#: [search]subtitle
msgid "Open me using Ctrl + M"
msgstr ""
#: [share]error
msgid "This is not a valid url"
msgstr ""
@ -1876,6 +1907,10 @@ msgstr ""
msgid "Previous"
msgstr ""
#: [button]search
msgid "Search"
msgstr ""
#: [day]title
msgid "Day"
msgstr ""

View file

@ -59,6 +59,8 @@
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
#. extracted from ../app/widgets/Roster/locales.ini
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
#. extracted from ../app/widgets/Search/locales.ini
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
#. extracted from ../app/widgets/Share/locales.ini
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
#. extracted from ../app/widgets/Statistics/locales.ini
@ -78,7 +80,7 @@ msgid ""
msgstr ""
"Project-Id-Version: movim\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-04-08 08:29+0200\n"
"POT-Creation-Date: 2016-05-24 08:36+0200\n"
"PO-Revision-Date: 2016-03-23 22:27+0000\n"
"Last-Translator: Jaussoin Timothée <edhelas@movim.eu>\n"
"Language-Team: Turkish (http://www.transifex.com/movim/movim/language/tr/)\n"
@ -307,7 +309,7 @@ msgid "Retype password"
msgstr ""
#: [whitelist]title
msgid "Whitelist - XMPP Server"
msgid "Whitelisted XMPP Servers"
msgstr ""
#: [whitelist]info1
@ -344,6 +346,22 @@ msgctxt "[information]label"
msgid "Information Message"
msgstr ""
#: [xmpp]title
msgid "Default XMPP server"
msgstr ""
#: [xmpp]domain
msgid "Main XMPP server domain"
msgstr ""
#: [xmpp]description
msgid "Main XMPP server description"
msgstr ""
#: [xmpp]country
msgid "Main XMPP server country"
msgstr ""
#: [log]empty
msgid "Empty"
msgstr ""
@ -952,8 +970,9 @@ msgid "My Subscriptions"
msgstr ""
#: [groups]add
msgid "Create a new Group"
msgstr ""
#, fuzzy
msgid "Create a new Group on %s"
msgstr "Yeni hesap oluştur"
#: [groups]name
msgid "Group name"
@ -1445,6 +1464,10 @@ msgstr ""
msgid "Add a chatroom"
msgstr ""
#: [rooms]edit
msgid "Edit a chatroom"
msgstr ""
#: [rooms]empty_text1
msgid "You don't have any chatroom yet."
msgstr ""
@ -1565,6 +1588,14 @@ msgstr ""
msgid "Search a contact"
msgstr ""
#: [search]keyword
msgid "What are you looking for?"
msgstr ""
#: [search]subtitle
msgid "Open me using Ctrl + M"
msgstr ""
#: [share]error
msgid "This is not a valid url"
msgstr ""
@ -1877,6 +1908,11 @@ msgstr ""
msgid "Previous"
msgstr ""
#: [button]search
#, fuzzy
msgid "Search"
msgstr "Mart"
#: [day]title
msgid "Day"
msgstr "Gün"

View file

@ -58,6 +58,8 @@
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
#. extracted from ../app/widgets/Roster/locales.ini
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
#. extracted from ../app/widgets/Search/locales.ini
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
#. extracted from ../app/widgets/Share/locales.ini
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
#. extracted from ../app/widgets/Statistics/locales.ini
@ -77,7 +79,7 @@ msgid ""
msgstr ""
"Project-Id-Version: movim\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-04-08 08:29+0200\n"
"POT-Creation-Date: 2016-05-24 08:36+0200\n"
"PO-Revision-Date: 2016-03-23 22:27+0000\n"
"Last-Translator: Jaussoin Timothée <edhelas@movim.eu>\n"
"Language-Team: Ukrainian (http://www.transifex.com/movim/movim/language/uk/)\n"
@ -306,7 +308,7 @@ msgid "Retype password"
msgstr ""
#: [whitelist]title
msgid "Whitelist - XMPP Server"
msgid "Whitelisted XMPP Servers"
msgstr ""
#: [whitelist]info1
@ -343,6 +345,22 @@ msgctxt "[information]label"
msgid "Information Message"
msgstr ""
#: [xmpp]title
msgid "Default XMPP server"
msgstr ""
#: [xmpp]domain
msgid "Main XMPP server domain"
msgstr ""
#: [xmpp]description
msgid "Main XMPP server description"
msgstr ""
#: [xmpp]country
msgid "Main XMPP server country"
msgstr ""
#: [log]empty
msgid "Empty"
msgstr ""
@ -951,8 +969,9 @@ msgid "My Subscriptions"
msgstr ""
#: [groups]add
msgid "Create a new Group"
msgstr ""
#, fuzzy
msgid "Create a new Group on %s"
msgstr "Створити нового користувача"
#: [groups]name
msgid "Group name"
@ -1444,6 +1463,10 @@ msgstr ""
msgid "Add a chatroom"
msgstr ""
#: [rooms]edit
msgid "Edit a chatroom"
msgstr ""
#: [rooms]empty_text1
msgid "You don't have any chatroom yet."
msgstr ""
@ -1564,6 +1587,14 @@ msgstr ""
msgid "Search a contact"
msgstr ""
#: [search]keyword
msgid "What are you looking for?"
msgstr ""
#: [search]subtitle
msgid "Open me using Ctrl + M"
msgstr ""
#: [share]error
msgid "This is not a valid url"
msgstr ""
@ -1876,6 +1907,10 @@ msgstr ""
msgid "Previous"
msgstr ""
#: [button]search
msgid "Search"
msgstr ""
#: [day]title
msgid "Day"
msgstr ""

View file

@ -60,6 +60,8 @@
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
#. extracted from ../app/widgets/Roster/locales.ini
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
#. extracted from ../app/widgets/Search/locales.ini
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
#. extracted from ../app/widgets/Share/locales.ini
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
#. extracted from ../app/widgets/Statistics/locales.ini
@ -79,7 +81,7 @@ msgid ""
msgstr ""
"Project-Id-Version: movim\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-04-08 08:29+0200\n"
"POT-Creation-Date: 2016-05-24 08:36+0200\n"
"PO-Revision-Date: 2015-12-29 12:43+0000\n"
"Last-Translator: Jaussoin Timothée <edhelas@movim.eu>\n"
"Language-Team: Chinese (China) (http://www.transifex.com/movim/movim/language/zh_CN/)\n"
@ -308,7 +310,8 @@ msgid "Retype password"
msgstr "重新输入密码"
#: [whitelist]title
msgid "Whitelist - XMPP Server"
#, fuzzy
msgid "Whitelisted XMPP Servers"
msgstr "白名单——XMPP服务器"
#: [whitelist]info1
@ -345,6 +348,24 @@ msgctxt "[information]label"
msgid "Information Message"
msgstr "通知消息"
#: [xmpp]title
#, fuzzy
msgid "Default XMPP server"
msgstr "白名单——XMPP服务器"
#: [xmpp]domain
msgid "Main XMPP server domain"
msgstr ""
#: [xmpp]description
msgid "Main XMPP server description"
msgstr ""
#: [xmpp]country
#, fuzzy
msgid "Main XMPP server country"
msgstr "你的XMPP服务没有被授权"
#: [log]empty
msgid "Empty"
msgstr "空的"
@ -954,7 +975,8 @@ msgid "My Subscriptions"
msgstr "我的订阅"
#: [groups]add
msgid "Create a new Group"
#, fuzzy
msgid "Create a new Group on %s"
msgstr "创建新群组"
#: [groups]name
@ -1450,6 +1472,11 @@ msgstr "添加一些文字"
msgid "Add a chatroom"
msgstr "添加一个聊天室"
#: [rooms]edit
#, fuzzy
msgid "Edit a chatroom"
msgstr "添加一个聊天室"
#: [rooms]empty_text1
msgid "You don't have any chatroom yet."
msgstr "你尚未拥有任何聊天室。"
@ -1571,6 +1598,14 @@ msgstr "在您的联系人中搜索"
msgid "Search a contact"
msgstr "在您的联系人中搜索"
#: [search]keyword
msgid "What are you looking for?"
msgstr ""
#: [search]subtitle
msgid "Open me using Ctrl + M"
msgstr ""
#: [share]error
msgid "This is not a valid url"
msgstr "这不是一个有效的 URL"
@ -1884,6 +1919,10 @@ msgstr "下一个"
msgid "Previous"
msgstr "前一个"
#: [button]search
msgid "Search"
msgstr "搜索"
#: [day]title
msgid "Day"
msgstr "天"
@ -2665,9 +2704,6 @@ msgstr "在此输入"
#~ msgid "%s has been added to your public groups"
#~ msgstr "%s已经添加到了您的公共分组"
#~ msgid "Search"
#~ msgstr "搜索"
#~ msgctxt "[general]nickname"
#~ msgid "Nickname"
#~ msgstr "昵称"

View file

@ -24,68 +24,8 @@ article video {
height: auto;
}
article section p {
margin-bottom: 1rem;
max-height: initial;
color: inherit;
line-height: inherit;
}
article section content ul li,
article section content ol li {
font-size: 2rem;
line-height: 3rem;
padding-left: 2rem;
list-style-position: inside;
min-height: 3rem;
font-weight: 300;
margin: 1rem auto;
}
article section content li > * {
display: inline;
}
article section content ul li {
list-style-type: disc;
}
article section content ol li {
list-style-type: decimal;
}
article section content strong,
article section content b {
font-weight: 700;
}
article section content code,
article section content pre {
font-family: monospace;
}
article section content pre {
color: white;
padding: 1rem;
font-size: 1.5rem;
margin: 1rem 0;
background-color: #333;
}
article section content cite,
article section content blockquote {
padding-left: 4rem;
font-style: italic;
}
article section content em {
font-style: italic;
}
/* Some CSS to style the quote XHTML generated by Movim */
article section content blockquote,
article section content q,
article section content div.quote {
display: block;
border-radius: 2px;

View file

@ -1,10 +1,15 @@
/* Color */
ul.list li.divided,
*.divided > *:not(:last-child),
*.divided.spaced > *:not(:last-child):after {
border-color: rgba(0, 0, 0, 0.12);
}
table tr th {
color: rgba(0, 0, 0, 0.54);
}
.color {
background-color: #607D8B;
color: white;
@ -24,37 +29,47 @@ main > header a,
color: white;
}
.button.color,
.button.action.color,
ul li span.counter,
form > div .radio > input[type="radio"]:checked + label {
border-color: #FF5722;
background-color: #FF5722;
color: white;
}
/* Elements */
.bubble.color , .icon.color { color: white; background-color: #607D8B; border-color: #607D8B }
span.icon.status.dnd:after,
.bubble.color.red , .icon.color.red { color: white; background-color: #F44336; border-color: #F44336 }
span.icon.status.xa:after,
.bubble.color.purple, .icon.color.purple { color: white; background-color: #9C27B0; border-color: #9C27B0 }
.bubble.color.indigo, .icon.color.indigo { color: white; background-color: #3F51B5; border-color: #3F51B5 }
.bubble.color.blue , .icon.color.blue { color: white; background-color: #2196F3; border-color: #2196F3 }
span.icon.status.chat:after,
span.icon.status.online:after,
.bubble.color.green , .icon.color.green { color: white; background-color: #689F38; border-color: #689F38 }
.bubble.color.orange, .icon.color.orange { color: white; background-color: #FF9800; border-color: #FF9800 }
span.icon.status.away:after,
.bubble.color.yellow, .icon.color.yellow { color: white; background-color: #FDD835; border-color: #FDD835 }
.bubble.color.brown , .icon.color.brown { color: white; background-color: #795548; border-color: #795548 }
.bubble.color.gray , .icon.color.gray { color: white; background-color: #9E9E9E; border-color: #9E9E9E }
.bubble.color.black , .icon.color.black { color: white; background-color: #000; border-color: #000 }
.icon.red , p.user.red { color: #F44336; }
.icon.purple, p.user.purple { color: #9C27B0; }
.icon.indigo, p.user.indigo { color: #3F51B5; }
.icon.blue , p.user.blue { color: #2196F3; }
.icon.green , p.user.green { color: #689F38; }
.icon.orange, p.user.orange { color: #FF9800; }
.icon.yellow, p.user.yellow { color: #FBC02D; }
.icon.brown , p.user.brown { color: #795548; }
.button.red, .icon.red , p.user.red { color: #F44336; }
.button.purple, .icon.purple, p.user.purple { color: #9C27B0; }
.button.indigo, .icon.indigo, p.user.indigo { color: #3F51B5; }
.button.blue, .icon.blue , p.user.blue { color: #2196F3; }
.button.green, .icon.green , p.user.green { color: #689F38; }
.button.orange, .icon.orange, p.user.orange { color: #FF9800; }
.button.yellow, .icon.yellow, p.user.yellow { color: #FBC02D; }
.button.brown, .icon.brown , p.user.brown { color: #795548; }
ul li.action > div.action,
ul li.action > form > div.action,
.icon.gray , p.user.gray { color: #9E9E9E; }
.icon.black , p.user.black { color: #000; }
.button.gray, .icon.gray , p.user.gray { color: #9E9E9E; }
.button.black, .icon.black , p.user.black { color: #000; }
.color { color: white; background-color: #607D8B; border-color: #607D8B }
span.icon.status.dnd:after,
.color.red { color: white; background-color: #F44336; border-color: #F44336 }
span.icon.status.xa:after,
.color.purple { color: white; background-color: #9C27B0; border-color: #9C27B0 }
.color.indigo { color: white; background-color: #3F51B5; border-color: #3F51B5 }
.color.blue { color: white; background-color: #2196F3; border-color: #2196F3 }
span.icon.status.chat:after,
span.icon.status.online:after,
.color.green { color: white; background-color: #689F38; border-color: #689F38 }
.color.orange { color: white; background-color: #FF9800; border-color: #FF9800 }
span.icon.status.away:after,
.color.yellow { color: white; background-color: #FDD835; border-color: #FDD835 }
.color.brown { color: white; background-color: #795548; border-color: #795548 }
.color.gray { color: white; background-color: #9E9E9E; border-color: #9E9E9E }
.color.black { color: white; background-color: #000; border-color: #000 }
form > div > input:focus:invalid,
form > div > input:focus:required {
@ -74,11 +89,8 @@ ul.list li > p:nth-last-of-type(2) + p {
/* Default color : violet */
.button.color,
input[type=button].color,
ul li span.counter,
main > section > div > header.fixed,
/*main > section > div > header,*/
main > header { background-color: #3F51B5; color: white; border-color: #3F51B5; }
.tabs a {
@ -105,23 +117,13 @@ header.big ul.list li > p:nth-last-of-type(2) + p {
/* Gray accent : orange */
.button:not(.color),
input[type=button],
.button,
header:not(.big) .icon a,
a/*,
a:not(.classic):not(.activity):not(.action):not(.button)*/ { color: #FF5722; border-color: #FF5722; }
a { color: #FF5722; border-color: #FF5722; }
form > div .checkbox:before { background-color: #FFE0B2; }
form > div .checkbox > input[type="checkbox"]:checked + label { background-color: #FF5722; }
.button.color,
ul li span.counter,
form > div .radio > input[type="radio"]:checked + label {
border-color: #FF5722;
background-color: #FF5722;
color: white;
}
form input:focus:not(:invalid) + label,
form textarea:focus:not(:invalid) + label {
color: #FF5722;

View file

@ -50,6 +50,11 @@
padding: 0;
}
.dialog > section h3 {
padding-top: 0;
}
@media screen and (max-width: 600px) {
.dialog {
width: 90%;

View file

@ -267,8 +267,6 @@ input[type=button] {
margin: 0.75rem 0.5rem;
border-radius: 0.25rem;
background-color: white;
color: black;
padding: 0 1rem;
border: 0;
@ -280,6 +278,11 @@ input[type=button] {
background-image: none;
}
.button:not(.color),
input[type=button]:not(.color) {
background-color: white;
}
.button:active {
box-shadow: 0 0.5rem 1.25rem rgba(0, 0, 0, 0.23), 0 0.5rem 1.25rem rgba(0, 0, 0, 0.16);
}

View file

@ -315,6 +315,7 @@ ul li div.bubble > p {
overflow: hidden;
display: inline-block;
max-width: 100%;
font-size: 1.75rem;
}
ul li.oppose div.bubble {
@ -395,6 +396,7 @@ ul.context_menu.shown {
/* Divided */
ul.list li.divided,
*.divided:not(.spaced) > *:not(:last-child),
*.divided.spaced > *:not(:last-child).subheader,
*.divided.spaced > *:not(:last-child):not(.subheader):after {

View file

@ -1,17 +1,4 @@
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
input, select, option,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
* {
margin: 0;
padding: 0;
border: 0;
@ -65,61 +52,6 @@ a, a:link, a:visited {
text-decoration: none;
}
/* Titles */
h1 { /* Display 1 */
font-size: 4.25rem;
line-height: 7rem;
}
h2 { /* Headline */
font-size: 3rem;
line-height: 4rem;
padding: 2rem 0;
}
h2.thin {
line-height: 5rem;
}
h3 { /* Title */
font-size: 2.5rem;
font-weight: 700;
}
h4, input, textarea, select { /* Headline */
font-size: 2rem;
line-height: 3rem;
}
h4 {
font-weight: 400;
}
h4.gray {
color: rgba(0, 0, 0, 0.54);
}
article section content ul li, /* Body 1 */
article section content p {
font-size: 2rem;
font-weight: 300;
}
.snackbar, /* Body 2 */
.toast {
font-size: 1.75rem;
font-weight: 500;
}
label, span.info { /* Caption */
font-size: 1.5rem;
color: rgba(0, 0, 0, 0.54);
}
label, span.info b { /* Caption */
font-weight: 600;
}
/* Navigation bar */
body > nav {
@ -550,39 +482,6 @@ main section > div:first-child:nth-last-child(2) ~ div .actions.fixed > div:last
.icon.clipboard { background-image: url(../img/icons/person.svg); }
.icon.search { background-image: url(../img/icons/search.svg); }
/* Definition list */
dl dt,
dl dd {
box-sizing: border-box;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
padding: 0 1rem;
display: inline-block;
line-height: 2rem;
vertical-align: middle;
}
dl di {
border-bottom: 1px solid #DDD;
display: block;
padding: 1em 0;
}
dl dt {
text-align: right;
font-weight: bold;
width: 25%;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
dl dd {
text-align: left;
width: 74%;
}
/* Padded */
@media screen and (max-width: 800px) {

View file

@ -26,8 +26,7 @@ table.table tr:not(:last-child) td {
table.table th,
table.table td {
line-height: 6rem;
padding-left: 2rem;
padding-right: 5rem;
padding: 0 2rem;
}
table.table th {

View file

@ -8,7 +8,7 @@ h1 { /* Display 1 */
h2 { /* Headline */
font-size: 3rem;
line-height: 4rem;
padding: 2rem 0;
padding: 1.5rem 0;
}
h2.thin {
@ -18,11 +18,13 @@ h2.thin {
h3 { /* Title */
font-size: 2.5rem;
font-weight: 700;
line-height: 3rem;
padding: 1rem 0;
}
h4, input, textarea, select { /* Headline */
font-size: 2rem;
line-height: 2.5rem;
line-height: 3rem;
}
h4 {
@ -33,10 +35,14 @@ h4.gray {
color: rgba(0, 0, 0, 0.54);
}
article section content ul li, /* Body 1 */
article section content p {
font-size: 2rem;
font-weight: 300;
small {
color: rgba(0, 0, 0, 0.7);
font-size: 0.75em;
font-weight: normal;
}
h3 + small {
font-size: 1.75rem;
}
.snackbar, /* Body 2 */

View file

@ -0,0 +1,148 @@
/* Typo */
article section content ul li, /* Body 1 */
ol li,
p,
table tbody tr td,
dl dt,
dl dd {
font-size: 2rem;
font-weight: 500;
}
article section p {
margin-bottom: 1rem;
max-height: initial;
color: inherit;
line-height: inherit;
}
ul:not(.list):not(.tabs):not(.grid) > li,
ol:not(.list):not(.tabs):not(.grid) > li {
font-size: 2rem;
line-height: 3rem;
padding-left: 2rem;
list-style-position: inside;
min-height: 3rem;
margin: 1rem auto;
}
ul:not(.list):not(.tabs):not(.grid) > li > * {
display: inline;
}
ul:not(.list):not(.tabs):not(.grid) > li {
list-style-type: disc;
}
ul:not(.list):not(.tabs):not(.grid) > li > ul:not(.list):not(.tabs):not(.grid) > li {
list-style-type: circle;
}
ul:not(.list):not(.tabs):not(.grid) > li > ul:not(.list):not(.tabs):not(.grid) > li > ul:not(.list):not(.tabs):not(.grid) > li {
list-style-type: square;
}
ol:not(.list):not(.tabs):not(.grid) > li {
list-style-type: decimal;
}
strong,
b {
font-weight: 700;
}
em {
font-style: italic;
}
code,
pre,
xmp {
font-family: monospace;
}
code {
background-color: rgba(0, 0, 0, 0.1);
color: rgba(0, 0, 0, 0.6);
padding: 0.3rem 0.75rem;
border-radius: 0.3rem;
}
pre,
xmp {
color: white;
padding: 1rem;
font-size: 1.6rem;
margin: 1rem 0;
border-left: 1rem solid gray;
background-color: #333;
white-space:pre-wrap; word-wrap:break-word;
}
pre code {
background-color: transparent;
padding: 0;
color: white;
}
pre::before,
xmp::before {
content: attr(class);
display: block;
float: right;
background-color: rgba(255, 255, 255, 0.3);
padding: 0 1rem;
}
q {
quotes: "“" "”" "" "";
}
q:before {
content: open-quote;
}
q:after {
content: close-quote;
}
cite,
blockquote {
padding-left: 1.5rem;
border-left: 1rem solid rgba(0, 0, 0, 0.2);
font-style: italic;
margin: 1rem 0;
}
/* Definition list */
dl dt,
dl dd {
box-sizing: border-box;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
padding: 0.5rem 1rem;
display: inline-block;
vertical-align: middle;
line-height: 2.5rem;
}
dl di {
border-bottom: 1px solid #DDD;
display: block;
padding: 1em 0;
}
dl dt {
text-align: right;
font-weight: bold;
width: 25%;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
dl dd {
text-align: left;
width: 74%;
}