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** **Changelog**
1.9 2016-* 1.9 2016-*
- Update to movim 0.9 git2016-05-19 - Update to movim 0.9 git2016-05-30
1.8 2016-04-15 1.8 2016-04-15
- Update to movim 0.9 git2016-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. 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. Please read CHANGELOG.

View file

@ -3,8 +3,12 @@ Movim Changelog
v0.9.1 (trunk) v0.9.1 (trunk)
--------------------------- ---------------------------
* Fix behaviour for Android and Electron packages
* Fix Pubsub metadata handling for some XMPP servers * Fix Pubsub metadata handling for some XMPP servers
* Add global search
* Add silent notifications for chatrooms * 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) * Put your own XMPP server as default in the configuration (movim.eu in fallback)
* Close the Dialog box when pressing ESC * Close the Dialog box when pressing ESC
* Moving values from Sessionx to Session * Moving values from Sessionx to Session

View file

@ -493,9 +493,22 @@ class ContactDAO extends SQL {
rosterlink.rostername, rosterlink.rostername,
rosterlink.rostersubscription, rosterlink.rostersubscription,
rosterlink.groupname, rosterlink.groupname,
rosterlink.chaton rosterlink.chaton,
presence.value,
presence.delay,
presence.last
from rosterlink from rosterlink
left outer join contact 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 on rosterlink.jid = contact.jid
where rosterlink.session = :session where rosterlink.session = :session
and (rosterlink.jid like :jid and (rosterlink.jid like :jid

View file

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

View file

@ -1,5 +1,5 @@
<section class="scroll"> <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}
</form> </form>
</section> </section>

View file

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

View file

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

View file

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

View file

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

View file

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

View file

@ -1,29 +1,24 @@
<section> <section>
<h3>{$c->__('group.subscribe')}</h3> <form name="subscribe" onsubmit="return false;">
{if="$item"} <h3>{$c->__('group.subscribe')}</h3>
<br /> {if="$item"}
<h4 class="gray"> <h4 class="gray">
{$item->name} {$item->name}
</h4> </h4>
{/if} {/if}
<ul class="simple"> <div>
<li> <input
<form name="subscribe"> name="label"
<div> type="text"
<input title="{$c->__('group.label_label')}"
name="label" placeholder="My Group Name"
type="text" {if="$item"}
title="{$c->__('group.label_label')}" value="{$item->name}"
placeholder="My Group Name" {/if}
{if="$item"} />
value="{$item->name}" <label for="label">{$c->__('group.label_label')}</label>
{/if} </div>
/> </form>
<label for="label">{$c->__('group.label_label')}</label>
</div>
</form>
</li>
</ul>
</section> </section>
<div> <div>
<a onclick="Dialog.clear()" class="button flat"> <a onclick="Dialog.clear()" class="button flat">

View file

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

View file

@ -7,15 +7,11 @@
<p class="center line">{$c->__('page.news')}</p> <p class="center line">{$c->__('page.news')}</p>
</li> </li>
</ul> </ul>
<ul> <ul class="tabs wide">
<li> <li {if="$type == 'all'"}class="active"{/if}><a href="#" onclick="Menu_ajaxGetAll()">{$c->__('menu.all')}</a></li>
<ul class="tabs wide"> <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 == 'all'"}class="active"{/if}><a href="#" onclick="Menu_ajaxGetAll()">{$c->__('menu.all')}</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 == 'news'"}class="active"{/if} ><a href="#" onclick="Menu_ajaxGetNews()" title="{$c->__('page.news')}"><i class="zmdi zmdi-pages"></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>
<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> </ul>
</header> </header>
{/if} {/if}

View file

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

View file

@ -89,6 +89,20 @@ class Rooms extends \Movim\Widget\Base
Dialog::fill($view->draw('_rooms_add', true)); 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 * @brief Display the remove room confirmation
*/ */
@ -181,6 +195,9 @@ class Rooms extends \Movim\Widget\Base
} elseif(trim($form['name']) == '') { } elseif(trim($form['name']) == '') {
Notification::append(null, $this->__('chatrooms.empty_name')); Notification::append(null, $this->__('chatrooms.empty_name'));
} else { } else {
$cd = new \Modl\ConferenceDAO;
$cd->deleteNode($form['jid']);
$item = array( $item = array(
'type' => 'conference', 'type' => 'conference',
'name' => $form['name'], 'name' => $form['name'],

View file

@ -1,17 +1,37 @@
<section> <section>
<form name="bookmarkmucadd"> <form name="bookmarkmucadd">
<h3>{$c->__('rooms.add')}</h3> {if="isset($room)"}
<h3>{$c->__('rooms.edit')}</h3>
{else}
<h3>{$c->__('rooms.add')}</h3>
{/if}
<div> <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> <label>{$c->__('chatrooms.id')}</label>
</div> </div>
<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> <label>{$c->__('chatrooms.name')}</label>
</div> </div>
<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> <label>{$c->__('chatrooms.nickname')}</label>
</div> </div>
<!-- <!--
@ -28,11 +48,19 @@
<a class="button flat" onclick="Dialog.clear()"> <a class="button flat" onclick="Dialog.clear()">
{$c->__('button.close')} {$c->__('button.close')}
</a> </a>
<a {if="isset($room)"}
class="button flat" <a
onclick="Rooms_ajaxChatroomAdd(movim_parse_form('bookmarkmucadd'));"> class="button flat"
{$c->__('button.add')} onclick="Rooms_ajaxChatroomAdd(movim_parse_form('bookmarkmucadd'));">
</a> {$c->__('button.edit')}
</a>
{else}
<a
class="button flat"
onclick="Rooms_ajaxChatroomAdd(movim_parse_form('bookmarkmucadd'));">
{$c->__('button.add')}
</a>
{/if}
</div> </div>
</div> </div>

View file

@ -1,5 +1,6 @@
[rooms] [rooms]
add = Add a chatroom add = Add a chatroom
edit = Edit a chatroom
empty_text1 = "You don't have any chatroom yet." empty_text1 = "You don't have any chatroom yet."
empty_text2 = Add one by clicking on the add button. 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); $view->assign('empty', true);
} else { } else {
$view->assign('empty', false); $view->assign('empty', false);
$view->assign('presencestxt', getPresencesTxt());
$pd = new PostnDAO; $pd = new PostnDAO;
$posts = $pd->search($key); $posts = $pd->search($key);

View file

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

View file

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

28
sources/composer.lock generated
View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

@ -57,6 +57,8 @@
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
#. extracted from ../app/widgets/Roster/locales.ini #. extracted from ../app/widgets/Roster/locales.ini
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
#. extracted from ../app/widgets/Search/locales.ini
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
#. extracted from ../app/widgets/Share/locales.ini #. extracted from ../app/widgets/Share/locales.ini
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
#. extracted from ../app/widgets/Statistics/locales.ini #. extracted from ../app/widgets/Statistics/locales.ini
@ -76,7 +78,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: movim\n" "Project-Id-Version: movim\n"
"Report-Msgid-Bugs-To: \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" "PO-Revision-Date: 2016-03-23 22:27+0000\n"
"Last-Translator: Jaussoin Timothée <edhelas@movim.eu>\n" "Last-Translator: Jaussoin Timothée <edhelas@movim.eu>\n"
"Language-Team: English (http://www.transifex.com/movim/movim/language/en/)\n" "Language-Team: English (http://www.transifex.com/movim/movim/language/en/)\n"
@ -305,7 +307,8 @@ msgid "Retype password"
msgstr "Retype password" msgstr "Retype password"
#: [whitelist]title #: [whitelist]title
msgid "Whitelist - XMPP Server" #, fuzzy
msgid "Whitelisted XMPP Servers"
msgstr "Whitelist - XMPP Server" msgstr "Whitelist - XMPP Server"
#: [whitelist]info1 #: [whitelist]info1
@ -342,6 +345,24 @@ msgctxt "[information]label"
msgid "Information Message" msgid "Information Message"
msgstr "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 #: [log]empty
msgid "Empty" msgid "Empty"
msgstr "Empty" msgstr "Empty"
@ -951,7 +972,8 @@ msgid "My Subscriptions"
msgstr "My Subscriptions" msgstr "My Subscriptions"
#: [groups]add #: [groups]add
msgid "Create a new Group" #, fuzzy
msgid "Create a new Group on %s"
msgstr "Create a new Group" msgstr "Create a new Group"
#: [groups]name #: [groups]name
@ -1445,6 +1467,11 @@ msgstr "Add some text"
msgid "Add a chatroom" msgid "Add a chatroom"
msgstr "Add a chatroom" msgstr "Add a chatroom"
#: [rooms]edit
#, fuzzy
msgid "Edit a chatroom"
msgstr "Add a chatroom"
#: [rooms]empty_text1 #: [rooms]empty_text1
msgid "You don't have any chatroom yet." msgid "You don't have any chatroom yet."
msgstr "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" msgid "Search a contact"
msgstr "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 #: [share]error
msgid "This is not a valid url" msgid "This is not a valid url"
msgstr "This is not a valid url" msgstr "This is not a valid url"
@ -1877,6 +1912,11 @@ msgstr "Next"
msgid "Previous" msgid "Previous"
msgstr "Previous" msgstr "Previous"
#: [button]search
#, fuzzy
msgid "Search"
msgstr "March"
#: [day]title #: [day]title
msgid "Day" msgid "Day"
msgstr "Day" msgstr "Day"

View file

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

View file

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

View file

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

View file

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

View file

@ -63,6 +63,8 @@
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
#. extracted from ../app/widgets/Roster/locales.ini #. extracted from ../app/widgets/Roster/locales.ini
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
#. extracted from ../app/widgets/Search/locales.ini
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
#. extracted from ../app/widgets/Share/locales.ini #. extracted from ../app/widgets/Share/locales.ini
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
#. extracted from ../app/widgets/Statistics/locales.ini #. extracted from ../app/widgets/Statistics/locales.ini
@ -82,8 +84,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: movim\n" "Project-Id-Version: movim\n"
"Report-Msgid-Bugs-To: \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-04-08 06:34+0000\n" "PO-Revision-Date: 2016-05-24 21:01+0000\n"
"Last-Translator: Jaussoin Timothée <edhelas@movim.eu>\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-Team: French (France) (http://www.transifex.com/movim/movim/language/fr_FR/)\n"
"Language: fr_FR\n" "Language: fr_FR\n"
@ -311,8 +313,8 @@ msgid "Retype password"
msgstr "Ressaisissez le mot de passe" msgstr "Ressaisissez le mot de passe"
#: [whitelist]title #: [whitelist]title
msgid "Whitelist - XMPP Server" msgid "Whitelisted XMPP Servers"
msgstr "Serveurs XMPP : Liste blanche" msgstr "Serveurs XMPP sur la liste blanche"
#: [whitelist]info1 #: [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)" 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" msgid "Information Message"
msgstr "Message dinformation" 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 #: [log]empty
msgid "Empty" msgid "Empty"
msgstr "Vide" msgstr "Vide"
@ -956,8 +974,8 @@ msgid "My Subscriptions"
msgstr "Mes Souscriptions" msgstr "Mes Souscriptions"
#: [groups]add #: [groups]add
msgid "Create a new Group" msgid "Create a new Group on %s"
msgstr "Créer un nouveau Groupe" msgstr "Créer un nouveau Groupe sur %s"
#: [groups]name #: [groups]name
msgid "Group name" msgid "Group name"
@ -1227,7 +1245,7 @@ msgstr "Contacts"
#: [menu]add_post #: [menu]add_post
msgid "Add a post" msgid "Add a post"
msgstr "" msgstr "Ajouter un billet"
#: [notifs]title #: [notifs]title
msgid "Pending Invitations" msgid "Pending Invitations"
@ -1449,6 +1467,10 @@ msgstr "Ajouter du texte"
msgid "Add a chatroom" msgid "Add a chatroom"
msgstr "Ajouter un salon de discussion" msgstr "Ajouter un salon de discussion"
#: [rooms]edit
msgid "Edit a chatroom"
msgstr "Éditer un salon de discussion"
#: [rooms]empty_text1 #: [rooms]empty_text1
msgid "You don't have any chatroom yet." msgid "You don't have any chatroom yet."
msgstr "Vous n'avez pas encore de salon de discussions." msgstr "Vous n'avez pas encore de salon de discussions."
@ -1569,6 +1591,14 @@ msgstr "Chercher dans vos contacts "
msgid "Search a contact" msgid "Search a contact"
msgstr "Chercher un 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 #: [share]error
msgid "This is not a valid url" msgid "This is not a valid url"
msgstr "Cette URL n'est pas valide" msgstr "Cette URL n'est pas valide"
@ -1881,6 +1911,10 @@ msgstr "Suivant"
msgid "Previous" msgid "Previous"
msgstr "Précédent" msgstr "Précédent"
#: [button]search
msgid "Search"
msgstr "Rechercher"
#: [day]title #: [day]title
msgid "Day" msgid "Day"
msgstr "Jour" msgstr "Jour"

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

@ -24,68 +24,8 @@ article video {
height: auto; 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 */ /* Some CSS to style the quote XHTML generated by Movim */
article section content blockquote,
article section content q,
article section content div.quote { article section content div.quote {
display: block; display: block;
border-radius: 2px; border-radius: 2px;

View file

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

View file

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

View file

@ -267,8 +267,6 @@ input[type=button] {
margin: 0.75rem 0.5rem; margin: 0.75rem 0.5rem;
border-radius: 0.25rem; border-radius: 0.25rem;
background-color: white;
color: black;
padding: 0 1rem; padding: 0 1rem;
border: 0; border: 0;
@ -280,6 +278,11 @@ input[type=button] {
background-image: none; background-image: none;
} }
.button:not(.color),
input[type=button]:not(.color) {
background-color: white;
}
.button:active { .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); 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; overflow: hidden;
display: inline-block; display: inline-block;
max-width: 100%; max-width: 100%;
font-size: 1.75rem;
} }
ul li.oppose div.bubble { ul li.oppose div.bubble {
@ -395,6 +396,7 @@ ul.context_menu.shown {
/* Divided */ /* Divided */
ul.list li.divided,
*.divided:not(.spaced) > *:not(:last-child), *.divided:not(.spaced) > *:not(:last-child),
*.divided.spaced > *:not(:last-child).subheader, *.divided.spaced > *:not(:last-child).subheader,
*.divided.spaced > *:not(:last-child):not(.subheader):after { *.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; margin: 0;
padding: 0; padding: 0;
border: 0; border: 0;
@ -65,61 +52,6 @@ a, a:link, a:visited {
text-decoration: none; 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 */ /* Navigation bar */
body > nav { 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.clipboard { background-image: url(../img/icons/person.svg); }
.icon.search { background-image: url(../img/icons/search.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 */ /* Padded */
@media screen and (max-width: 800px) { @media screen and (max-width: 800px) {

View file

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

View file

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