diff --git a/CHANGELOG b/CHANGELOG index afe7099..8235f63 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,7 +1,7 @@ **Changelog** 1.7 2016-? -- Update to movim 0.9 git2016-03-06 +- Update to movim 0.9 git2016-03-11 - Php composer stuff is now shipped in the package - conf/nginx.conf : disable the Yunohost logo - script/install : comment (disable) php composer stuff diff --git a/README.md b/README.md index 50f1ad3..204c994 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ Movim is a decentralized social network, written in PHP and HTML5 and based on t It is recommended to use a "valid" certificate to use Movim, auto-signed is sometimes problematic. You might want to take a look a StartSSL or Let's Encrypt. -Provided Movim version : 0.9 git2016-03-06 +Provided Movim version : 0.9 git2016-03-11 Please read CHANGELOG. diff --git a/sources/CHANGELOG.md b/sources/CHANGELOG.md index 96bb216..5070b11 100644 --- a/sources/CHANGELOG.md +++ b/sources/CHANGELOG.md @@ -6,6 +6,14 @@ v0.9.1 (trunk) * CSS fixes * Add Last Message Edition support * Improve Post discovery in the News page + * Add stickers support + * Improve loading time for Chat page + * Improve Chat bubbles display + * New compact date display + * Clean properly the tags in the database + * Allow tags with special characters + * Various UI and navigation fixed + * Update the dependencies v0.9 --------------------------- diff --git a/sources/app/assets/js/movim_tpl.js b/sources/app/assets/js/movim_tpl.js index 38c85e7..ef5f46f 100644 --- a/sources/app/assets/js/movim_tpl.js +++ b/sources/app/assets/js/movim_tpl.js @@ -112,15 +112,11 @@ var MovimTpl = { return (selector.scrollHeight - Math.floor(selector.scrollTop) === selector.clientHeight); } }, - scrollPanel : function(time) { + scrollPanel : function() { var selector = document.querySelector('main section > div:first-child:nth-last-child(2) ~ div div'); - if(typeof time == 'undefined') time = 0; - if(selector != null) { - setTimeout(function() { - selector.scrollTop = selector.scrollHeight; - }, time); + selector.scrollTop = selector.scrollHeight; } }, scrollPanelTop : function() { diff --git a/sources/app/assets/js/movim_utils.js b/sources/app/assets/js/movim_utils.js index c94e06f..3683dfe 100644 --- a/sources/app/assets/js/movim_utils.js +++ b/sources/app/assets/js/movim_utils.js @@ -219,6 +219,14 @@ function movim_toggle_display(element) { } +/** + * @brief Push a new state in the History + * @param strin The new state URL + */ +function movim_push_state(url) { + window.history.pushState(null, "", url); +} + /** * @brief Set object in localStorage * @param key string diff --git a/sources/app/helpers/DateHelper.php b/sources/app/helpers/DateHelper.php index c355ede..e59a0ba 100644 --- a/sources/app/helpers/DateHelper.php +++ b/sources/app/helpers/DateHelper.php @@ -38,27 +38,28 @@ function getTimezoneCorrection() { $timezones = getTimezoneList(); return $timezones[date_default_timezone_get()]; } + /** - * Return a human-readable date + * Return a human-readable date * * @param timestamp $string * @return string */ -function prepareDate($time, $hours = true) { +function prepareDate($time, $hours = true, $compact = false) { // We had the server timezone $time = $time + TIMEZONE_OFFSET; - + $t = $time ? $time : time(); $date = ''; - + $reldays = ((time() - $t)-(time()%86400))/86400; // if $time is within a week if($reldays < 7 && $reldays >= -2){ //if $time is today or yesterday - if($reldays < -1) { + if($reldays < -1) { $date = __('date.tomorrow'); - } else if ($reldays <= 0) { + } else if ($reldays <= 0) { //$date = __('date.today'); } else if ($reldays <= 1) { $date = __('date.yesterday'); @@ -66,14 +67,24 @@ function prepareDate($time, $hours = true) { //else print date "ago" else { $date = __('date.ago', ceil($reldays)); + + //if($compact) return $date; } - } + } //else print full date else { - $date = __('day.'.strtolower(date('l', $t))) .', '.date('j', $t).' '.__('month.'.strtolower(date('F', $t))) ; + $date = ''; + + if(!$compact) + $date .= __('day.'.strtolower(date('l', $t))) . ', '; + + $date .= date('j', $t).' '.__('month.'.strtolower(date('F', $t))); + //if over 6months print year if (abs($reldays) > 182) $date .= date(', Y', $t); + + if($compact) return $date; } //if $hours option print the time if($hours) { @@ -83,5 +94,5 @@ function prepareDate($time, $hours = true) { $date .= date('H:i', $time); } return $date; - } + diff --git a/sources/app/models/config/ConfigDAO.php b/sources/app/models/config/ConfigDAO.php index ca0b0dc..a681dc6 100644 --- a/sources/app/models/config/ConfigDAO.php +++ b/sources/app/models/config/ConfigDAO.php @@ -110,7 +110,7 @@ class ConfigDAO extends SQL { $this->_sql = ' select * from config'; - $this->prepare('Config', array()); + $this->prepare('Config'); $conf = $this->run('Config', 'item'); diff --git a/sources/app/models/message/MessageDAO.php b/sources/app/models/message/MessageDAO.php index f8cc3de..bbdd5d5 100644 --- a/sources/app/models/message/MessageDAO.php +++ b/sources/app/models/message/MessageDAO.php @@ -133,6 +133,26 @@ class MessageDAO extends SQL { return $this->run('Message', 'item'); } + function getAll($limitf = false, $limitr = false) + { + $this->_sql = ' + select * from message + where session = :session + order by published desc'; + + if($limitr) + $this->_sql = $this->_sql.' limit '.$limitr.' offset '.$limitf; + + $this->prepare( + 'Message', + array( + 'session' => $this->_user + ) + ); + + return $this->run('Message'); + } + function getContact($jid, $limitf = false, $limitr = false) { $this->_sql = ' diff --git a/sources/app/models/postn/Postn.php b/sources/app/models/postn/Postn.php index 681cc9a..7b25cc0 100644 --- a/sources/app/models/postn/Postn.php +++ b/sources/app/models/postn/Postn.php @@ -187,6 +187,7 @@ class Postn extends Model { // Tags parsing if($entry->entry->category) { $td = new \Modl\TagDAO; + $td->delete($this->__get('nodeid')); if($entry->entry->category->count() == 1 && isset($entry->entry->category->attributes()->term)) { diff --git a/sources/app/models/tag/TagDAO.php b/sources/app/models/tag/TagDAO.php index 06b4700..d168158 100644 --- a/sources/app/models/tag/TagDAO.php +++ b/sources/app/models/tag/TagDAO.php @@ -39,6 +39,21 @@ class TagDAO extends SQL { } } + function delete($nodeid) { + $this->_sql = ' + delete from tag + where nodeid = :nodeid'; + + $this->prepare( + 'Tag', + array( + 'nodeid' => $nodeid + ) + ); + + return $this->run('Tag'); + } + function getTags($nodeid) { $this->_sql = ' select * from tag diff --git a/sources/app/widgets/Avatar/Avatar.php b/sources/app/widgets/Avatar/Avatar.php index 44fb959..e8c02e5 100644 --- a/sources/app/widgets/Avatar/Avatar.php +++ b/sources/app/widgets/Avatar/Avatar.php @@ -98,10 +98,6 @@ class Avatar extends WidgetBase function ajaxSubmit($avatar) { - $p = new \Picture; - $p->fromBase((string)$avatar->photobin->value); - $p->set($this->user->getLogin()); - $r = new Set; $r->setData($avatar->photobin->value)->request(); } diff --git a/sources/app/widgets/Avatar/avatar.js b/sources/app/widgets/Avatar/avatar.js index 772d135..57f5094 100644 --- a/sources/app/widgets/Avatar/avatar.js +++ b/sources/app/widgets/Avatar/avatar.js @@ -53,7 +53,7 @@ var Avatar = { MovimWebsocket.attach(function() { Avatar_ajaxGetForm(); }); - +/* function showVideo(){ navigator.getUserMedia = navigator.getUserMedia || navigator.webkitGetUserMedia || navigator.mozGetUserMedia; navigator.getUserMedia({video:true, audio:false}, successCallback, errorCallback); @@ -90,4 +90,4 @@ function snapshot() { vCardImageResize(this); } } -} +}*/ diff --git a/sources/app/widgets/Chat/Chat.php b/sources/app/widgets/Chat/Chat.php index e60ce38..050d2b2 100644 --- a/sources/app/widgets/Chat/Chat.php +++ b/sources/app/widgets/Chat/Chat.php @@ -175,23 +175,6 @@ class Chat extends WidgetBase RPC::call('movim_fill', $jid.'_state', $html); } - /** - * @brief Show the smiley list - */ - function ajaxSmiley() - { - $view = $this->tpl(); - Dialog::fill($view->draw('_chat_smiley', true)); - } - - /** - * @brief Get the path of a emoji - */ - function ajaxSmileyGet($string) - { - return prepareString($string, true); - } - /** * @brief Get a discussion * @param string $jid @@ -206,6 +189,8 @@ class Chat extends WidgetBase $html = $this->prepareChat($jid); + RPC::call('movim_push_state', $this->route('chat', $jid)); + RPC::call('movim_fill', 'chat_widget', $html); RPC::call('MovimTpl.showPanel'); RPC::call('Chat.focus'); @@ -343,7 +328,8 @@ class Chat extends WidgetBase $md = new \Modl\MessageDAO; $m = $md->getLastItem($to); - RPC::call('Chat.setTextarea', $m->body); + if(!isset($m->sticker)) + RPC::call('Chat.setTextarea', $m->body); } /** @@ -571,7 +557,7 @@ class Chat extends WidgetBase RPC::call('Chat.setBubbles', $left, $right, $room); RPC::call('Chat.appendMessages', $messages); - RPC::call('MovimTpl.scrollPanel', 100); + RPC::call('MovimTpl.scrollPanel'); } function prepareMessage(&$message) @@ -588,6 +574,7 @@ class Chat extends WidgetBase if(isset($message->sticker)) { $p = new Picture; $sticker = $p->get($message->sticker, false, false, 'png'); + $stickerSize = $p->getSize(); if($sticker == false) { $r = new Request; @@ -596,7 +583,10 @@ class Chat extends WidgetBase ->setCid($message->sticker) ->request(); } else { - $message->sticker = $sticker; + $message->sticker = [ + 'url' => $sticker, + 'width' => $stickerSize['width'], + 'height' => $stickerSize['height']]; } } @@ -604,7 +594,7 @@ class Chat extends WidgetBase $message->color = stringToColor($message->session.$message->resource.$message->jidfrom.$message->type); } - $message->publishedPrepared = prepareDate(strtotime($message->published)); + $message->publishedPrepared = prepareDate(strtotime($message->published), true, true); return $message; } diff --git a/sources/app/widgets/Chat/_chat.tpl b/sources/app/widgets/Chat/_chat.tpl index 9dccced..0df40d5 100644 --- a/sources/app/widgets/Chat/_chat.tpl +++ b/sources/app/widgets/Chat/_chat.tpl @@ -91,7 +91,7 @@
- +

{$c->__('chats.empty_title')}

{$c->___('chats.empty', '', ' ', '')}

+ diff --git a/sources/app/widgets/Contact/Contact.php b/sources/app/widgets/Contact/Contact.php index f9d5f34..fe0380b 100644 --- a/sources/app/widgets/Contact/Contact.php +++ b/sources/app/widgets/Contact/Contact.php @@ -44,6 +44,8 @@ class Contact extends WidgetBase ->setNode('urn:xmpp:microblog:0') ->request(); + RPC::call('movim_push_state', $this->route('contact', $jid)); + RPC::call('movim_fill', 'contact_widget', $html); RPC::call('MovimTpl.showPanel'); RPC::call('MovimTpl.scrollHeaders'); diff --git a/sources/app/widgets/Contact/_contact.tpl b/sources/app/widgets/Contact/_contact.tpl index e5fdfba..fbce5c0 100644 --- a/sources/app/widgets/Contact/_contact.tpl +++ b/sources/app/widgets/Contact/_contact.tpl @@ -188,7 +188,7 @@ {loop="$blog"}
  • - {$url = $value->getContact()->getPhoto('l')} + {$url = $value->getContact()->getPhoto('s')} {if="$url"} diff --git a/sources/app/widgets/Group/_group_empty.tpl b/sources/app/widgets/Group/_group_empty.tpl index 2ecd009..083aa7a 100644 --- a/sources/app/widgets/Group/_group_empty.tpl +++ b/sources/app/widgets/Group/_group_empty.tpl @@ -27,7 +27,7 @@ {$value->server|firstLetterCapitalize} -

    {$value->server} - {$value->name}

    +

    {$value->server} - {$value->name}

    {$c->__('group.counter', $value->number)}

  • {/if} diff --git a/sources/app/widgets/Groups/_groups_subscriptions.tpl b/sources/app/widgets/Groups/_groups_subscriptions.tpl index 27b2621..ce26855 100644 --- a/sources/app/widgets/Groups/_groups_subscriptions.tpl +++ b/sources/app/widgets/Groups/_groups_subscriptions.tpl @@ -2,8 +2,7 @@ {else} diff --git a/sources/app/widgets/Groups/locales.ini b/sources/app/widgets/Groups/locales.ini index cef2dc5..13ae4d8 100644 --- a/sources/app/widgets/Groups/locales.ini +++ b/sources/app/widgets/Groups/locales.ini @@ -1,8 +1,8 @@ [groups] empty_title = Hello contact_post = Contact post -empty_text1 = "You don't have any group subscriptions yet." -empty_text2 = "Here you will be able to manage all your subscriptions." +empty_text1 = "Here you will be able to manage all your subscriptions." +empty_text2 = "You don't have any group subscriptions yet." subscriptions = My Subscriptions add = Create a new Group name = Group name diff --git a/sources/app/widgets/Login/Login.php b/sources/app/widgets/Login/Login.php index a319a10..4004c56 100644 --- a/sources/app/widgets/Login/Login.php +++ b/sources/app/widgets/Login/Login.php @@ -49,6 +49,10 @@ class Login extends WidgetBase $r = new GetList; $r->request(); + // We refresh the messages + //$c = new Chats; + //$c->ajaxGetHistory(); + // We get the configuration $s = new Get; $s->setXmlns('movim:prefs') @@ -65,16 +69,16 @@ class Login extends WidgetBase function display() { $submit = $this->call('ajaxLogin', "movim_form_to_json('login')"); - + $cd = new \Modl\ConfigDAO(); $config = $cd->get(); - + $this->view->assign('submit', $submit); $this->view->assign('info', $config->info); $this->view->assign('whitelist',$config->xmppwhitelist); - + $pop = 0; - + foreach(scandir(USERS_PATH) as $f) if(is_dir(USERS_PATH.'/'.$f)) $pop++; @@ -156,7 +160,7 @@ class Login extends WidgetBase function ajaxHTTPLogin($login, $password) { - $this->doLogin($login, $password); + $this->doLogin($login, $password); } private function doLogin($login, $password) @@ -185,7 +189,7 @@ class Login extends WidgetBase if( $config->xmppwhitelist != '' &&! in_array( - $host, + $host, explode(',',$config->xmppwhitelist) ) ) { diff --git a/sources/app/widgets/Login/login.js b/sources/app/widgets/Login/login.js index 07ae269..32969b8 100644 --- a/sources/app/widgets/Login/login.js +++ b/sources/app/widgets/Login/login.js @@ -1,4 +1,5 @@ var Login = { + submitted : false, fillExample : function(login, pass) { document.querySelector('#login').value = login; document.querySelector('#pass').value = pass; @@ -13,6 +14,8 @@ var Login = { form.onsubmit = function(e) { e.preventDefault(); + Login.submitted = true; + // We register the socket MovimWebsocket.connection.register(this.querySelector('input#login').value.replace(/.*@/, "")); @@ -26,12 +29,12 @@ var Login = { setTimeout("MovimWebsocket.unregister()", 20000); } }, - + refresh: function(){ /*Add onclick listeners*/ var sessions = document.querySelectorAll('#sessions section ul > li'); var i = 0; - + while(i < sessions.length) { sessions[i].onclick = function(e){Login.choose(e.target);}; @@ -64,16 +67,16 @@ var Login = { while(element.tagName != "LI") element = element.parentNode; var jid = element.id; - + if(tn == "I" || tn == "DIV"){ Login.removeSession(jid); } else{ Login.toForm(); - + document.querySelector('#login').value = jid; document.querySelector('#pass').value = ""; - + if(jid != '') { document.querySelector('#pass').focus(); } else { @@ -96,7 +99,7 @@ var Login = { } else { localStorage.setObject('previousSessions', s); } - + Login_ajaxGetRememberedSession(localStorage.getItem('previousSessions')); }, @@ -129,8 +132,8 @@ var Login = { * @brief Set the Movim cookie */ setCookie : function(value) { - document.cookie = 'MOVIM_SESSION_ID='+value; - } + document.cookie = 'MOVIM_SESSION_ID='+value; + } } MovimWebsocket.attach(function() @@ -161,7 +164,9 @@ MovimWebsocket.attach(function() MovimWebsocket.register(function() { form = document.querySelector('form[name="login"]'); - eval(form.dataset.action); + if(Login.submitted) { + eval(form.dataset.action); + } }); movim_add_onload(function() { diff --git a/sources/app/widgets/Navigation/navigation.tpl b/sources/app/widgets/Navigation/navigation.tpl index 2699da5..36c0ee2 100644 --- a/sources/app/widgets/Navigation/navigation.tpl +++ b/sources/app/widgets/Navigation/navigation.tpl @@ -6,7 +6,7 @@

    Movim

    - + supported('pubsub')"}disabled{/if}" href="{$c->route('news')}">
  • diff --git a/sources/app/widgets/Post/Post.php b/sources/app/widgets/Post/Post.php index 3545cf7..0ee5b90 100644 --- a/sources/app/widgets/Post/Post.php +++ b/sources/app/widgets/Post/Post.php @@ -107,6 +107,8 @@ class Post extends WidgetBase $html = $this->preparePost($p); + RPC::call('movim_push_state', $this->route('news', $id)); + RPC::call('movim_fill', 'post_widget', $html); RPC::call('MovimTpl.scrollHeaders'); } @@ -163,8 +165,13 @@ class Post extends WidgetBase { $view = $this->tpl(); - $nd = new \modl\PostnDAO(); + $nd = new \modl\PostnDAO; + $cd = new modl\ContactDAO; + $view = $this->tpl(); + + $view->assign('presencestxt', getPresencesTxt()); + $view->assign('top', $cd->getTop(6)); $view->assign('blogs', $nd->getLastBlogPublic(0, 6)); $view->assign('posts', $nd->getLastPublished(0, 4)); diff --git a/sources/app/widgets/Post/_post_empty.tpl b/sources/app/widgets/Post/_post_empty.tpl index f0c0c98..dc1a391 100644 --- a/sources/app/widgets/Post/_post_empty.tpl +++ b/sources/app/widgets/Post/_post_empty.tpl @@ -5,16 +5,97 @@ {$c->__('post.hot')}

  • -
  • - - - -

    -

    {$c->__('post.blog_last')}

    -

    -
  • + +{if="!isset($top)"} + + +{/if} + + + +{if="$c->supported('pubsub')"} +
    +{/if} + - +{if="$c->supported('pubsub')"} + + + +{/if} diff --git a/sources/app/widgets/Presence/_presence.tpl b/sources/app/widgets/Presence/_presence.tpl index 9a5e4d7..76cafbd 100644 --- a/sources/app/widgets/Presence/_presence.tpl +++ b/sources/app/widgets/Presence/_presence.tpl @@ -3,7 +3,7 @@ {if="$url"} value != null"}{$presencetxt[$presence->value]}{/if}" - style="background-image: url({$me->getPhoto('m')})"> + style="background-image: url({$me->getPhoto('s')})"> {else} value != null"}{$presencetxt[$presence->value]}{/if}"> diff --git a/sources/app/widgets/Publish/Publish.php b/sources/app/widgets/Publish/Publish.php index 7776ae0..0823545 100644 --- a/sources/app/widgets/Publish/Publish.php +++ b/sources/app/widgets/Publish/Publish.php @@ -189,12 +189,15 @@ class Publish extends WidgetBase } } - if(Validator::stringType()->notEmpty()->alnum(',')->validate($form->tags->value)) { + if(Validator::stringType()->notEmpty()->validate($form->tags->value)) { $p->setTags(array_unique( array_filter( array_map( function($value) { - return trim(strtolower($value)); + if(Validator::stringType()->notEmpty()->validate($value)) { + preg_match('/([^\s[:punct:]]|_|-){3,30}/', trim($value), $matches); + if(isset($matches[0])) return $matches[0]; + } }, explode(',', $form->tags->value) ) diff --git a/sources/app/widgets/Roster/roster.css b/sources/app/widgets/Roster/roster.css index bec81e1..61ce543 100644 --- a/sources/app/widgets/Roster/roster.css +++ b/sources/app/widgets/Roster/roster.css @@ -61,9 +61,3 @@ display: list-item; } -#roster ul#rosterlist > div#spinner{ - position: relative; - overflow: visible; - text-align: center; - margin: 50% 0; -} diff --git a/sources/app/widgets/Roster/roster.js b/sources/app/widgets/Roster/roster.js index 445f475..444cdce 100644 --- a/sources/app/widgets/Roster/roster.js +++ b/sources/app/widgets/Roster/roster.js @@ -193,12 +193,13 @@ window.onunload = window.onbeforeunload = function(e){ }; /* Functions to call angular inner functions */ -function initContacts(tab){ - if(tab.length == 0) +function initContacts(tab) { + tab = JSON.parse(tab); + if(tab.length == 0) { angular.element(roster).scope().contacts = null; - else - angular.element(roster).scope().initContacts(JSON.parse(tab)); - + document.getElementById("spinner").style.display = "none"; + } else + angular.element(roster).scope().initContacts(tab); Roster.refresh(); } diff --git a/sources/app/widgets/Roster/roster.tpl b/sources/app/widgets/Roster/roster.tpl index f9fe2d7..99ea586 100644 --- a/sources/app/widgets/Roster/roster.tpl +++ b/sources/app/widgets/Roster/roster.tpl @@ -59,21 +59,25 @@ - - - - + ng-if="myjid.ajiditems.rosterview.tune || myjid.ajiditems.rosterview.subscription != 'both'"> - -

    {{myjid.ajiditems.rosterview.name}}

    -

    +

    {{myjid.ajiditems.rosterview.name}} + + + + + + +

    +

    {{myjid.ajiditems.status}}

    diff --git a/sources/app/widgets/Stickers/Stickers.php b/sources/app/widgets/Stickers/Stickers.php index d2a7e1d..559591a 100644 --- a/sources/app/widgets/Stickers/Stickers.php +++ b/sources/app/widgets/Stickers/Stickers.php @@ -11,6 +11,8 @@ class Stickers extends WidgetBase { function load() { + $this->addcss('stickers.css'); + $this->addjs('stickers.js'); $this->registerEvent('bob', 'onRequest'); } @@ -60,7 +62,7 @@ class Stickers extends WidgetBase $m->jidto = echapJid($to); $m->jidfrom = $this->user->getLogin(); $m->sticker = $key; - $m->body = 'A Stickers has been sent using Movim'; + $m->body = $this->__('sticker.sent'); $m->published = gmdate('Y-m-d H:i:s'); @@ -102,11 +104,33 @@ class Stickers extends WidgetBase $view = $this->tpl(); $view->assign('jid', $to); $view->assign('stickers', $files); + $view->assign('icon', $this->respath('stickers').'/icon.png'); $view->assign('path', $this->respath('stickers').'/'); Dialog::fill($view->draw('_stickers', true), true); } + /** + * @brief Show the smiley list + */ + function ajaxSmiley($to) + { + if(!$this->validateJid($to)) return; + + $view = $this->tpl(); + $view->assign('jid', $to); + $view->assign('icon', $this->respath('stickers').'/icon.png'); + Dialog::fill($view->draw('_stickers_smiley', true)); + } + + /** + * @brief Get the path of a emoji + */ + function ajaxSmileyGet($string) + { + return prepareString($string, true); + } + /** * @brief Validate the jid * @@ -119,6 +143,11 @@ class Stickers extends WidgetBase else return true; } + function getSmileyPath($id) + { + return getSmileyPath($id); + } + function display() { diff --git a/sources/app/widgets/Stickers/_stickers.tpl b/sources/app/widgets/Stickers/_stickers.tpl index 96ba14c..54d09db 100644 --- a/sources/app/widgets/Stickers/_stickers.tpl +++ b/sources/app/widgets/Stickers/_stickers.tpl @@ -1,16 +1,28 @@
    -
      +
        +
      • + :sticker: +
      • +
      • + :smiley: +
      • +
      +
        {loop="$stickers"}
      • - +
      • {/loop} +
      • + + + +

        Corine Tea

        +

        Under CreativeCommon BY NC SA

        +
    - - Emojis - {$c->__('button.close')} diff --git a/sources/app/widgets/Stickers/_stickers_smiley.tpl b/sources/app/widgets/Stickers/_stickers_smiley.tpl new file mode 100644 index 0000000..fc89a56 --- /dev/null +++ b/sources/app/widgets/Stickers/_stickers_smiley.tpl @@ -0,0 +1,91 @@ +
    +
      +
    • + :sticker: +
    • +
    • + :smiley: +
    • +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    :joy::smiley::smile::laughing::heart_eyes::wink:
    :angry::stuck_out_tongue_winking_eye::stuck_out_tongue_closed_eyes::unamused::sweat::confounded:
    :cry::triumph::disappointed_relieved::sleepy::sob::scream:
    :banana::apple::blossom::cactus::rose::mushroom:
    :hamburger::pizza::poultry_leg::rice::ramen::sushi:
    :bath::headphones::video_game::ticket::briefcase::school_satchel:
    :bulb::telephone_receiver::fire::clock1::email::pencil2:
    :kiss::hearts::pill::hankey::coffee::alarm_clock:
    :pig::monkey_face::dog::frog::hamster::bear:
    +
    +
    + + {$c->__('button.close')} + +
    diff --git a/sources/app/widgets/Stickers/locales.ini b/sources/app/widgets/Stickers/locales.ini new file mode 100644 index 0000000..34155f0 --- /dev/null +++ b/sources/app/widgets/Stickers/locales.ini @@ -0,0 +1,2 @@ +[sticker] +sent = A sticker has been sent using Movim diff --git a/sources/app/widgets/Stickers/stickers.css b/sources/app/widgets/Stickers/stickers.css new file mode 100644 index 0000000..ab8e08f --- /dev/null +++ b/sources/app/widgets/Stickers/stickers.css @@ -0,0 +1,5 @@ +ul.list > li > img.sticker { + padding: 1rem; + width: 100%; + box-sizing: border-box; +} diff --git a/sources/app/widgets/Stickers/stickers.js b/sources/app/widgets/Stickers/stickers.js new file mode 100644 index 0000000..1dd71be --- /dev/null +++ b/sources/app/widgets/Stickers/stickers.js @@ -0,0 +1,8 @@ +var Stickers = { + addSmiley: function(element) { + var n = document.querySelector('#chat_textarea'); + n.value = n.value + element.dataset.emoji; + n.focus(); + Dialog.clear(); + } +} diff --git a/sources/app/widgets/Stickers/stickers/066b6f96ac3b9c847bac3a73ef2bb353e245b398.png b/sources/app/widgets/Stickers/stickers/066b6f96ac3b9c847bac3a73ef2bb353e245b398.png new file mode 100644 index 0000000..b24ca9f Binary files /dev/null and b/sources/app/widgets/Stickers/stickers/066b6f96ac3b9c847bac3a73ef2bb353e245b398.png differ diff --git a/sources/app/widgets/Stickers/stickers/131d0c376dc98b545d82a5f70b7df95ad079ffc7.png b/sources/app/widgets/Stickers/stickers/131d0c376dc98b545d82a5f70b7df95ad079ffc7.png new file mode 100644 index 0000000..ef4a8b8 Binary files /dev/null and b/sources/app/widgets/Stickers/stickers/131d0c376dc98b545d82a5f70b7df95ad079ffc7.png differ diff --git a/sources/app/widgets/Stickers/stickers/1f1b758ca110b016c962f260d2315fd3f7e81727.png b/sources/app/widgets/Stickers/stickers/1f1b758ca110b016c962f260d2315fd3f7e81727.png new file mode 100644 index 0000000..ef5e112 Binary files /dev/null and b/sources/app/widgets/Stickers/stickers/1f1b758ca110b016c962f260d2315fd3f7e81727.png differ diff --git a/sources/app/widgets/Stickers/stickers/25360adec7e13fe321fae5fecf307fafdccb1cc7.png b/sources/app/widgets/Stickers/stickers/25360adec7e13fe321fae5fecf307fafdccb1cc7.png new file mode 100644 index 0000000..ac12b12 Binary files /dev/null and b/sources/app/widgets/Stickers/stickers/25360adec7e13fe321fae5fecf307fafdccb1cc7.png differ diff --git a/sources/app/widgets/Stickers/stickers/350d3713bf286f13c1ff247cd0322b3760e4f707.png b/sources/app/widgets/Stickers/stickers/350d3713bf286f13c1ff247cd0322b3760e4f707.png new file mode 100644 index 0000000..d09b54f Binary files /dev/null and b/sources/app/widgets/Stickers/stickers/350d3713bf286f13c1ff247cd0322b3760e4f707.png differ diff --git a/sources/app/widgets/Stickers/stickers/3cd2c71f542ea65b7394c32211981c4f1b36d4d5.png b/sources/app/widgets/Stickers/stickers/3cd2c71f542ea65b7394c32211981c4f1b36d4d5.png new file mode 100644 index 0000000..9cd1593 Binary files /dev/null and b/sources/app/widgets/Stickers/stickers/3cd2c71f542ea65b7394c32211981c4f1b36d4d5.png differ diff --git a/sources/app/widgets/Stickers/stickers/3f287132e542e55492e5a909b2eedf83b3e6c475.png b/sources/app/widgets/Stickers/stickers/3f287132e542e55492e5a909b2eedf83b3e6c475.png new file mode 100644 index 0000000..5168d1f Binary files /dev/null and b/sources/app/widgets/Stickers/stickers/3f287132e542e55492e5a909b2eedf83b3e6c475.png differ diff --git a/sources/app/widgets/Stickers/stickers/40ac00d6d3b3ad3c8711d9ad3d4913cda90a1e17.png b/sources/app/widgets/Stickers/stickers/40ac00d6d3b3ad3c8711d9ad3d4913cda90a1e17.png new file mode 100644 index 0000000..aeb1c05 Binary files /dev/null and b/sources/app/widgets/Stickers/stickers/40ac00d6d3b3ad3c8711d9ad3d4913cda90a1e17.png differ diff --git a/sources/app/widgets/Stickers/stickers/42abeda5e5586d099c5e259887c0324c88cfe9f0.png b/sources/app/widgets/Stickers/stickers/42abeda5e5586d099c5e259887c0324c88cfe9f0.png new file mode 100644 index 0000000..72bd55c Binary files /dev/null and b/sources/app/widgets/Stickers/stickers/42abeda5e5586d099c5e259887c0324c88cfe9f0.png differ diff --git a/sources/app/widgets/Stickers/stickers/5cef0fdb9de8c7b4f4d4a61a836704b8ce8b91b8.png b/sources/app/widgets/Stickers/stickers/5cef0fdb9de8c7b4f4d4a61a836704b8ce8b91b8.png new file mode 100644 index 0000000..1a7e143 Binary files /dev/null and b/sources/app/widgets/Stickers/stickers/5cef0fdb9de8c7b4f4d4a61a836704b8ce8b91b8.png differ diff --git a/sources/app/widgets/Stickers/stickers/5d570350f5ff8f7e5f4c45b952895bdc65e490ed.png b/sources/app/widgets/Stickers/stickers/5d570350f5ff8f7e5f4c45b952895bdc65e490ed.png new file mode 100644 index 0000000..db5837b Binary files /dev/null and b/sources/app/widgets/Stickers/stickers/5d570350f5ff8f7e5f4c45b952895bdc65e490ed.png differ diff --git a/sources/app/widgets/Stickers/stickers/75bae75930e4d18004c3ae52dfbd126f8ffaf757.png b/sources/app/widgets/Stickers/stickers/75bae75930e4d18004c3ae52dfbd126f8ffaf757.png new file mode 100644 index 0000000..fd951e6 Binary files /dev/null and b/sources/app/widgets/Stickers/stickers/75bae75930e4d18004c3ae52dfbd126f8ffaf757.png differ diff --git a/sources/app/widgets/Stickers/stickers/898ece6768016790bdad3f5a81c96d24c5a4dad5.png b/sources/app/widgets/Stickers/stickers/898ece6768016790bdad3f5a81c96d24c5a4dad5.png new file mode 100644 index 0000000..5a7a273 Binary files /dev/null and b/sources/app/widgets/Stickers/stickers/898ece6768016790bdad3f5a81c96d24c5a4dad5.png differ diff --git a/sources/app/widgets/Stickers/stickers/c6f5b7e8e40cff8ede87a23d9d52c6cf05fc259d.png b/sources/app/widgets/Stickers/stickers/c6f5b7e8e40cff8ede87a23d9d52c6cf05fc259d.png new file mode 100644 index 0000000..9dbf5bf Binary files /dev/null and b/sources/app/widgets/Stickers/stickers/c6f5b7e8e40cff8ede87a23d9d52c6cf05fc259d.png differ diff --git a/sources/app/widgets/Stickers/stickers/de2fabc34217d03ad8efa50afeedb22d3d3e9c40.png b/sources/app/widgets/Stickers/stickers/de2fabc34217d03ad8efa50afeedb22d3d3e9c40.png new file mode 100644 index 0000000..92fb968 Binary files /dev/null and b/sources/app/widgets/Stickers/stickers/de2fabc34217d03ad8efa50afeedb22d3d3e9c40.png differ diff --git a/sources/app/widgets/Stickers/stickers/f7aa4efde0d916b2f18393cb60dc86f3c4e2e4bd.png b/sources/app/widgets/Stickers/stickers/f7aa4efde0d916b2f18393cb60dc86f3c4e2e4bd.png new file mode 100644 index 0000000..5dafdd8 Binary files /dev/null and b/sources/app/widgets/Stickers/stickers/f7aa4efde0d916b2f18393cb60dc86f3c4e2e4bd.png differ diff --git a/sources/app/widgets/Stickers/stickers/icon.png b/sources/app/widgets/Stickers/stickers/icon.png new file mode 100644 index 0000000..001ad74 Binary files /dev/null and b/sources/app/widgets/Stickers/stickers/icon.png differ diff --git a/sources/bootstrap.php b/sources/bootstrap.php index 9f7a91e..483825d 100644 --- a/sources/bootstrap.php +++ b/sources/bootstrap.php @@ -29,12 +29,8 @@ function fatalErrorShutdownHandler() if (ob_get_contents()) ob_clean(); - ?> -
    -

    Oops... something went wrong.

    -

    But don't panic. The NSA is on the case.

    -
    - outHiddeninput($element); break; case "list-multi": - $this->outList($element, "multiple"); + //$this->outList($element); break; case "list-single": - $this->outList($element, ""); + $this->outList($element); break; case "jid-multi": $this->outInput($element, "email", "multiple"); @@ -255,7 +255,7 @@ class XMPPtoForm{ $this->html->appendChild($input); } - private function outList($s, $multiple){ + private function outList($s){ $container = $this->html->createElement('div'); $this->html->appendChild($container); diff --git a/sources/linker.php b/sources/linker.php index 039c45a..d4943de 100644 --- a/sources/linker.php +++ b/sources/linker.php @@ -13,10 +13,7 @@ $booted = $bootstrap->boot(); $loop = React\EventLoop\Factory::create(); -$dnsResolverFactory = new React\Dns\Resolver\Factory(); -$dns = $dnsResolverFactory->createCached('8.8.8.8', $loop); - -$connector = new React\SocketClient\Connector($loop, $dns); +$connector = new React\SocketClient\TcpConnector($loop); $stdin = new React\Stream\Stream(STDIN, $loop); fwrite(STDERR, colorize(getenv('sid'), 'yellow')." widgets before : ".\sizeToCleanSize(memory_get_usage())."\n"); @@ -75,7 +72,7 @@ $stdin_behaviour = function ($data) use (&$conn, $loop, &$buffer, &$connector, & if(isset($dns->target) && $dns->target != null) $msg->host = $dns->target; if(isset($dns->port) && $dns->port != null) $port = $dns->port; #fwrite(STDERR, colorize('open a socket to '.$domain, 'yellow')." : ".colorize('sent to XMPP', 'green')."\n"); - $connector->create($msg->host, $port)->then($xmpp_behaviour); + $connector->create(gethostbyname($msg->host), $port)->then($xmpp_behaviour); } } else { return; diff --git a/sources/locales/ar.po b/sources/locales/ar.po index 072a5d4..6c7b9a2 100644 --- a/sources/locales/ar.po +++ b/sources/locales/ar.po @@ -27,8 +27,6 @@ #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Chats/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/ConfigData/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Config/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Contact/locales.ini @@ -37,26 +35,18 @@ #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Groups/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Header/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Hello/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Help/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Init/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Location/locales.ini +#. extracted from ../app/widgets/Login/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/LoginAnonymous/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Login/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Menu/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/NodeAffiliations/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/NodeSubscriptions/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Notifs/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Post/locales.ini @@ -65,8 +55,6 @@ #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Publish/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/PubsubSubscriptionConfig/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Rooms/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Roster/locales.ini @@ -75,6 +63,8 @@ #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Statistics/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Stickers/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Subscribe/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Syndication/locales.ini @@ -83,16 +73,12 @@ #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Vcard4/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/VisioExt/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Visio/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../locales/locales.ini msgid "" msgstr "" "Project-Id-Version: movim\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-12-29 13:42+0200\n" +"POT-Creation-Date: 2016-03-08 08:30+0200\n" "PO-Revision-Date: 2015-10-06 21:34+0000\n" "Last-Translator: Jaussoin Timothée \n" "Language-Team: Arabic (http://www.transifex.com/movim/movim/language/ar/)\n" @@ -525,6 +511,7 @@ msgid "Name" msgstr "" #: [chatroom]nickname [general]nickname [chatrooms]nickname +#: [accounts]accounts_nickname msgid "Nickname" msgstr "الكنية" @@ -657,24 +644,8 @@ msgstr "" msgid "Load more contacts" msgstr "" -#: [title]data -msgid "Data" -msgstr "" - -#: [title]cache -msgid "Cache" -msgstr "" - -#: [title]contacts [menu]contacts [page]contacts -msgid "Contacts" -msgstr "" - -#: [title]posts [page]posts -msgid "Posts" -msgstr "" - -#: [title]messages -msgid "Messages" +#: [button]new +msgid "New conversation" msgstr "" #: [config]general @@ -723,11 +694,11 @@ msgstr "" msgid "Custom CSS URL for your blog" msgstr "" -#: [general]legend [general]general_title +#: [general]legend msgid "General Informations" msgstr "معلومات عامة" -#: [general]name [public_groups]name [chatrooms]name +#: [general]name [chatrooms]name msgid "Name" msgstr "الاسم" @@ -763,7 +734,7 @@ msgstr "" msgid "Is Listening" msgstr "" -#: [position]legend [position]position_title +#: [position]legend msgid "Geographic Position" msgstr "" @@ -1023,10 +994,6 @@ msgstr "" msgid "This server doesn't exists" msgstr "" -#: [roster]search -msgid "Search in your contacts" -msgstr "" - #: [hello]chat msgid "Go on the Chat page" msgstr "" @@ -1155,26 +1122,6 @@ msgstr "" msgid "Microblog node created" msgstr "" -#: [location]title -msgid "Location" -msgstr "" - -#: [location]wrong_postition -msgid "Wrong position" -msgstr "" - -#: [location]updated -msgid "Location updated" -msgstr "" - -#: [location]update -msgid "Update my position" -msgstr "" - -#: [login_anonymous]bad_username -msgid "Bad nickname (between 4 and 40 characters)" -msgstr "" - #: [error]username msgid "Wrong username" msgstr "اسم مستخدم غير صحيح" @@ -1232,7 +1179,7 @@ msgstr "" msgid "Oops!" msgstr "" -#: [error]default [visio]unknown_error +#: [error]default msgid "Unknown error" msgstr "خطأ غير معروف" @@ -1293,6 +1240,10 @@ msgstr "" msgid "Population" msgstr "" +#: [login_anonymous]bad_username +msgid "Bad nickname (between 4 and 40 characters)" +msgstr "" + #: [menu]empty_title msgid "No news yet..." msgstr "" @@ -1313,33 +1264,18 @@ msgstr "" msgid "All" msgstr "الكل" -#: [affiliations]title -msgid "Manage your members" +#: [menu]mine +msgid "My publications" msgstr "" -#: [affiliations]get -msgid "Get the members" +#: [menu]contacts [page]contacts +msgid "Contacts" msgstr "" -#: [affiliations]saved -msgid "Affiliations saved" -msgstr "" - -#: [subscriptions]title -msgid "Manage your subscriptions" -msgstr "" - -#: [subscriptions]info -msgid "Manage the subscriptions" -msgstr "" - -#: [subscriptions]get -msgid "Get the subscriptions" -msgstr "" - -#: [subscriptions]saved -msgid "Subscriptions saved" -msgstr "" +#: [menu]add_post +#, fuzzy +msgid "Add a post" +msgstr "أضف تعليق" #: [notifs]title msgid "Pending Invitations" @@ -1389,6 +1325,11 @@ msgstr "" msgid "See %s profile" msgstr "" +#: [post]blog_last +#, fuzzy +msgid "Public posts from users" +msgstr "مجموعات عامة" + #: [post]public msgid "Publish this post publicly?" msgstr "" @@ -1401,6 +1342,10 @@ msgstr "" msgid "This post is now private" msgstr "" +#: [post]public_url +msgid "Public URL of this post" +msgstr "" + #: [post]delete_title [post]delete msgid "Delete this post" msgstr "حذف هذه التدوينة" @@ -1517,14 +1462,6 @@ msgstr "" msgid "Add some text" msgstr "" -#: [public_groups]shared -msgid "Shared" -msgstr "" - -#: [public_groups]added -msgid "%s has been added to your public groups" -msgstr "" - #: [rooms]add msgid "Add a chatroom" msgstr "" @@ -1642,9 +1579,14 @@ msgid "Contact deleted" msgstr "" #: [roster]search -msgid "Search" +msgid "Search in your contacts" msgstr "" +#: [roster]search_pod +#, fuzzy +msgid "Search a contact" +msgstr "اتصالاتكم" + #: [share]error msgid "This is not a valid url" msgstr "" @@ -1673,6 +1615,10 @@ msgstr "" msgid "Monthly Subscriptions Cumulated" msgstr "" +#: [sticker]sent +msgid "A sticker has been sent using Movim" +msgstr "" + #: [subscribe]info msgid "Movim is a decentralized social network, before creating a new account you need to choose a server to register." msgstr "" @@ -1721,11 +1667,6 @@ msgstr "" msgid "Your profile is now restricted" msgstr "" -#: [general]nickname -msgctxt "[general]nickname" -msgid "Nickname" -msgstr "" - #: [accounts]accounts_title msgid "Accounts" msgstr "" @@ -1742,11 +1683,6 @@ msgstr "" msgid "Yahoo Account" msgstr "" -#: [accounts]accounts_nickname -msgctxt "[accounts]accounts_nickname" -msgid "Nickname" -msgstr "" - #: [privacy]privacy_title msgid "Privacy Level" msgstr "" @@ -1756,7 +1692,7 @@ msgid "Is this profile public ?" msgstr "" #: [privacy]privacy_info -msgid "Please pay attention ! By making your profile public, all the information listed above will be available for all the Movim users and on the whole Internet." +msgid "Please pay attention ! By making your profile public, all the information listed bellow will be available for all the Movim users and on the whole Internet." msgstr "" #: [save]submit [button]submit @@ -1767,34 +1703,6 @@ msgstr "أودِع" msgid "Reset" msgstr "تصفير" -#: [visio]hung_up -msgid "Hung up" -msgstr "" - -#: [visio]busy -msgid "Your contact is busy" -msgstr "" - -#: [visio]declined -msgid "Declined" -msgstr "" - -#: [visio]calling -msgid "Is calling you" -msgstr "" - -#: [visio]call -msgid "Call" -msgstr "" - -#: [visio]hang_up -msgid "Hang up" -msgstr "" - -#: [visio]connection -msgid "Connection" -msgstr "" - #: [global]no_js msgid "You don't have javascript enabled. Good luck with that." msgstr "" @@ -1863,6 +1771,10 @@ msgstr "" msgid "Feed" msgstr "تلقيمة" +#: [page]posts +msgid "Posts" +msgstr "" + #: [page]gallery msgid "Gallery" msgstr "" diff --git a/sources/locales/be.po b/sources/locales/be.po index 051c26d..8f9b095 100644 --- a/sources/locales/be.po +++ b/sources/locales/be.po @@ -28,8 +28,6 @@ #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Chats/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/ConfigData/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Config/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Contact/locales.ini @@ -38,26 +36,18 @@ #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Groups/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Header/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Hello/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Help/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Init/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Location/locales.ini +#. extracted from ../app/widgets/Login/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/LoginAnonymous/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Login/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Menu/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/NodeAffiliations/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/NodeSubscriptions/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Notifs/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Post/locales.ini @@ -66,8 +56,6 @@ #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Publish/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/PubsubSubscriptionConfig/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Rooms/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Roster/locales.ini @@ -76,6 +64,8 @@ #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Statistics/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Stickers/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Subscribe/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Syndication/locales.ini @@ -84,16 +74,12 @@ #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Vcard4/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/VisioExt/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Visio/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../locales/locales.ini msgid "" msgstr "" "Project-Id-Version: Movim\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-12-29 13:42+0200\n" +"POT-Creation-Date: 2016-03-08 08:30+0200\n" "PO-Revision-Date: 2011-10-26 21:31+0000\n" "Last-Translator: edhelas \n" "Language-Team: LANGUAGE \n" @@ -527,6 +513,7 @@ msgid "Name" msgstr "" #: [chatroom]nickname [general]nickname [chatrooms]nickname +#: [accounts]accounts_nickname msgid "Nickname" msgstr "" @@ -659,24 +646,8 @@ msgstr "" msgid "Load more contacts" msgstr "" -#: [title]data -msgid "Data" -msgstr "" - -#: [title]cache -msgid "Cache" -msgstr "" - -#: [title]contacts [menu]contacts [page]contacts -msgid "Contacts" -msgstr "" - -#: [title]posts [page]posts -msgid "Posts" -msgstr "" - -#: [title]messages -msgid "Messages" +#: [button]new +msgid "New conversation" msgstr "" #: [config]general @@ -725,11 +696,11 @@ msgstr "" msgid "Custom CSS URL for your blog" msgstr "" -#: [general]legend [general]general_title +#: [general]legend msgid "General Informations" msgstr "" -#: [general]name [public_groups]name [chatrooms]name +#: [general]name [chatrooms]name msgid "Name" msgstr "" @@ -765,7 +736,7 @@ msgstr "" msgid "Is Listening" msgstr "" -#: [position]legend [position]position_title +#: [position]legend msgid "Geographic Position" msgstr "" @@ -1025,10 +996,6 @@ msgstr "" msgid "This server doesn't exists" msgstr "" -#: [roster]search -msgid "Search in your contacts" -msgstr "" - #: [hello]chat msgid "Go on the Chat page" msgstr "" @@ -1157,26 +1124,6 @@ msgstr "" msgid "Microblog node created" msgstr "" -#: [location]title -msgid "Location" -msgstr "" - -#: [location]wrong_postition -msgid "Wrong position" -msgstr "" - -#: [location]updated -msgid "Location updated" -msgstr "" - -#: [location]update -msgid "Update my position" -msgstr "" - -#: [login_anonymous]bad_username -msgid "Bad nickname (between 4 and 40 characters)" -msgstr "" - #: [error]username msgid "Wrong username" msgstr "" @@ -1234,7 +1181,7 @@ msgstr "" msgid "Oops!" msgstr "" -#: [error]default [visio]unknown_error +#: [error]default msgid "Unknown error" msgstr "" @@ -1295,6 +1242,10 @@ msgstr "" msgid "Population" msgstr "" +#: [login_anonymous]bad_username +msgid "Bad nickname (between 4 and 40 characters)" +msgstr "" + #: [menu]empty_title msgid "No news yet..." msgstr "" @@ -1315,32 +1266,16 @@ msgstr "" msgid "All" msgstr "" -#: [affiliations]title -msgid "Manage your members" +#: [menu]mine +msgid "My publications" msgstr "" -#: [affiliations]get -msgid "Get the members" +#: [menu]contacts [page]contacts +msgid "Contacts" msgstr "" -#: [affiliations]saved -msgid "Affiliations saved" -msgstr "" - -#: [subscriptions]title -msgid "Manage your subscriptions" -msgstr "" - -#: [subscriptions]info -msgid "Manage the subscriptions" -msgstr "" - -#: [subscriptions]get -msgid "Get the subscriptions" -msgstr "" - -#: [subscriptions]saved -msgid "Subscriptions saved" +#: [menu]add_post +msgid "Add a post" msgstr "" #: [notifs]title @@ -1391,6 +1326,10 @@ msgstr "" msgid "See %s profile" msgstr "" +#: [post]blog_last +msgid "Public posts from users" +msgstr "" + #: [post]public msgid "Publish this post publicly?" msgstr "" @@ -1403,6 +1342,10 @@ msgstr "" msgid "This post is now private" msgstr "" +#: [post]public_url +msgid "Public URL of this post" +msgstr "" + #: [post]delete_title [post]delete msgid "Delete this post" msgstr "" @@ -1519,14 +1462,6 @@ msgstr "" msgid "Add some text" msgstr "" -#: [public_groups]shared -msgid "Shared" -msgstr "" - -#: [public_groups]added -msgid "%s has been added to your public groups" -msgstr "" - #: [rooms]add msgid "Add a chatroom" msgstr "" @@ -1644,7 +1579,11 @@ msgid "Contact deleted" msgstr "" #: [roster]search -msgid "Search" +msgid "Search in your contacts" +msgstr "" + +#: [roster]search_pod +msgid "Search a contact" msgstr "" #: [share]error @@ -1675,6 +1614,10 @@ msgstr "" msgid "Monthly Subscriptions Cumulated" msgstr "" +#: [sticker]sent +msgid "A sticker has been sent using Movim" +msgstr "" + #: [subscribe]info msgid "Movim is a decentralized social network, before creating a new account you need to choose a server to register." msgstr "" @@ -1723,11 +1666,6 @@ msgstr "" msgid "Your profile is now restricted" msgstr "" -#: [general]nickname -msgctxt "[general]nickname" -msgid "Nickname" -msgstr "" - #: [accounts]accounts_title msgid "Accounts" msgstr "" @@ -1744,11 +1682,6 @@ msgstr "" msgid "Yahoo Account" msgstr "" -#: [accounts]accounts_nickname -msgctxt "[accounts]accounts_nickname" -msgid "Nickname" -msgstr "" - #: [privacy]privacy_title msgid "Privacy Level" msgstr "" @@ -1758,7 +1691,7 @@ msgid "Is this profile public ?" msgstr "" #: [privacy]privacy_info -msgid "Please pay attention ! By making your profile public, all the information listed above will be available for all the Movim users and on the whole Internet." +msgid "Please pay attention ! By making your profile public, all the information listed bellow will be available for all the Movim users and on the whole Internet." msgstr "" #: [save]submit [button]submit @@ -1769,34 +1702,6 @@ msgstr "Даслаць" msgid "Reset" msgstr "Скід" -#: [visio]hung_up -msgid "Hung up" -msgstr "" - -#: [visio]busy -msgid "Your contact is busy" -msgstr "" - -#: [visio]declined -msgid "Declined" -msgstr "" - -#: [visio]calling -msgid "Is calling you" -msgstr "" - -#: [visio]call -msgid "Call" -msgstr "" - -#: [visio]hang_up -msgid "Hang up" -msgstr "" - -#: [visio]connection -msgid "Connection" -msgstr "" - #: [global]no_js msgid "You don't have javascript enabled. Good luck with that." msgstr "" @@ -1865,6 +1770,10 @@ msgstr "" msgid "Feed" msgstr "" +#: [page]posts +msgid "Posts" +msgstr "" + #: [page]gallery msgid "Gallery" msgstr "" diff --git a/sources/locales/bn.po b/sources/locales/bn.po index 9211bf3..d544798 100644 --- a/sources/locales/bn.po +++ b/sources/locales/bn.po @@ -30,8 +30,6 @@ #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Chats/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/ConfigData/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Config/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Contact/locales.ini @@ -40,26 +38,18 @@ #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Groups/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Header/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Hello/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Help/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Init/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Location/locales.ini +#. extracted from ../app/widgets/Login/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/LoginAnonymous/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Login/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Menu/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/NodeAffiliations/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/NodeSubscriptions/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Notifs/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Post/locales.ini @@ -68,8 +58,6 @@ #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Publish/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/PubsubSubscriptionConfig/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Rooms/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Roster/locales.ini @@ -78,6 +66,8 @@ #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Statistics/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Stickers/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Subscribe/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Syndication/locales.ini @@ -86,16 +76,12 @@ #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Vcard4/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/VisioExt/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Visio/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../locales/locales.ini msgid "" msgstr "" "Project-Id-Version: movim\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-12-29 13:42+0200\n" +"POT-Creation-Date: 2016-03-08 08:30+0200\n" "PO-Revision-Date: 2014-05-23 12:58+0000\n" "Last-Translator: Guruvai Oronno Bangalee \n" "Language-Team: Bengali \n" @@ -527,6 +513,7 @@ msgid "Name" msgstr "" #: [chatroom]nickname [general]nickname [chatrooms]nickname +#: [accounts]accounts_nickname msgid "Nickname" msgstr "" @@ -659,24 +646,8 @@ msgstr "" msgid "Load more contacts" msgstr "" -#: [title]data -msgid "Data" -msgstr "" - -#: [title]cache -msgid "Cache" -msgstr "" - -#: [title]contacts [menu]contacts [page]contacts -msgid "Contacts" -msgstr "" - -#: [title]posts [page]posts -msgid "Posts" -msgstr "" - -#: [title]messages -msgid "Messages" +#: [button]new +msgid "New conversation" msgstr "" #: [config]general @@ -723,11 +694,11 @@ msgstr "" msgid "Custom CSS URL for your blog" msgstr "" -#: [general]legend [general]general_title +#: [general]legend msgid "General Informations" msgstr "" -#: [general]name [public_groups]name [chatrooms]name +#: [general]name [chatrooms]name msgid "Name" msgstr "" @@ -763,7 +734,7 @@ msgstr "" msgid "Is Listening" msgstr "" -#: [position]legend [position]position_title +#: [position]legend msgid "Geographic Position" msgstr "" @@ -1023,10 +994,6 @@ msgstr "" msgid "This server doesn't exists" msgstr "" -#: [roster]search -msgid "Search in your contacts" -msgstr "" - #: [hello]chat msgid "Go on the Chat page" msgstr "" @@ -1155,26 +1122,6 @@ msgstr "" msgid "Microblog node created" msgstr "" -#: [location]title -msgid "Location" -msgstr "" - -#: [location]wrong_postition -msgid "Wrong position" -msgstr "" - -#: [location]updated -msgid "Location updated" -msgstr "" - -#: [location]update -msgid "Update my position" -msgstr "" - -#: [login_anonymous]bad_username -msgid "Bad nickname (between 4 and 40 characters)" -msgstr "" - #: [error]username msgid "Wrong username" msgstr "" @@ -1232,7 +1179,7 @@ msgstr "" msgid "Oops!" msgstr "" -#: [error]default [visio]unknown_error +#: [error]default msgid "Unknown error" msgstr "" @@ -1293,6 +1240,10 @@ msgstr "" msgid "Population" msgstr "" +#: [login_anonymous]bad_username +msgid "Bad nickname (between 4 and 40 characters)" +msgstr "" + #: [menu]empty_title msgid "No news yet..." msgstr "" @@ -1313,32 +1264,16 @@ msgstr "" msgid "All" msgstr "" -#: [affiliations]title -msgid "Manage your members" +#: [menu]mine +msgid "My publications" msgstr "" -#: [affiliations]get -msgid "Get the members" +#: [menu]contacts [page]contacts +msgid "Contacts" msgstr "" -#: [affiliations]saved -msgid "Affiliations saved" -msgstr "" - -#: [subscriptions]title -msgid "Manage your subscriptions" -msgstr "" - -#: [subscriptions]info -msgid "Manage the subscriptions" -msgstr "" - -#: [subscriptions]get -msgid "Get the subscriptions" -msgstr "" - -#: [subscriptions]saved -msgid "Subscriptions saved" +#: [menu]add_post +msgid "Add a post" msgstr "" #: [notifs]title @@ -1389,6 +1324,10 @@ msgstr "" msgid "See %s profile" msgstr "" +#: [post]blog_last +msgid "Public posts from users" +msgstr "" + #: [post]public msgid "Publish this post publicly?" msgstr "" @@ -1401,6 +1340,10 @@ msgstr "" msgid "This post is now private" msgstr "" +#: [post]public_url +msgid "Public URL of this post" +msgstr "" + #: [post]delete_title [post]delete msgid "Delete this post" msgstr "" @@ -1517,14 +1460,6 @@ msgstr "" msgid "Add some text" msgstr "" -#: [public_groups]shared -msgid "Shared" -msgstr "" - -#: [public_groups]added -msgid "%s has been added to your public groups" -msgstr "" - #: [rooms]add msgid "Add a chatroom" msgstr "" @@ -1642,7 +1577,11 @@ msgid "Contact deleted" msgstr "" #: [roster]search -msgid "Search" +msgid "Search in your contacts" +msgstr "" + +#: [roster]search_pod +msgid "Search a contact" msgstr "" #: [share]error @@ -1673,6 +1612,10 @@ msgstr "" msgid "Monthly Subscriptions Cumulated" msgstr "" +#: [sticker]sent +msgid "A sticker has been sent using Movim" +msgstr "" + #: [subscribe]info msgid "Movim is a decentralized social network, before creating a new account you need to choose a server to register." msgstr "" @@ -1721,11 +1664,6 @@ msgstr "" msgid "Your profile is now restricted" msgstr "" -#: [general]nickname -msgctxt "[general]nickname" -msgid "Nickname" -msgstr "" - #: [accounts]accounts_title msgid "Accounts" msgstr "" @@ -1742,11 +1680,6 @@ msgstr "" msgid "Yahoo Account" msgstr "" -#: [accounts]accounts_nickname -msgctxt "[accounts]accounts_nickname" -msgid "Nickname" -msgstr "" - #: [privacy]privacy_title msgid "Privacy Level" msgstr "" @@ -1756,7 +1689,7 @@ msgid "Is this profile public ?" msgstr "" #: [privacy]privacy_info -msgid "Please pay attention ! By making your profile public, all the information listed above will be available for all the Movim users and on the whole Internet." +msgid "Please pay attention ! By making your profile public, all the information listed bellow will be available for all the Movim users and on the whole Internet." msgstr "" #: [save]submit [button]submit @@ -1767,34 +1700,6 @@ msgstr "" msgid "Reset" msgstr "" -#: [visio]hung_up -msgid "Hung up" -msgstr "" - -#: [visio]busy -msgid "Your contact is busy" -msgstr "" - -#: [visio]declined -msgid "Declined" -msgstr "" - -#: [visio]calling -msgid "Is calling you" -msgstr "" - -#: [visio]call -msgid "Call" -msgstr "" - -#: [visio]hang_up -msgid "Hang up" -msgstr "" - -#: [visio]connection -msgid "Connection" -msgstr "" - #: [global]no_js msgid "You don't have javascript enabled. Good luck with that." msgstr "" @@ -1863,6 +1768,10 @@ msgstr "" msgid "Feed" msgstr "" +#: [page]posts +msgid "Posts" +msgstr "" + #: [page]gallery msgid "Gallery" msgstr "" diff --git a/sources/locales/br.po b/sources/locales/br.po index 6fc7052..0efebc2 100644 --- a/sources/locales/br.po +++ b/sources/locales/br.po @@ -28,8 +28,6 @@ #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Chats/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/ConfigData/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Config/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Contact/locales.ini @@ -38,26 +36,18 @@ #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Groups/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Header/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Hello/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Help/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Init/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Location/locales.ini +#. extracted from ../app/widgets/Login/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/LoginAnonymous/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Login/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Menu/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/NodeAffiliations/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/NodeSubscriptions/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Notifs/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Post/locales.ini @@ -66,8 +56,6 @@ #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Publish/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/PubsubSubscriptionConfig/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Rooms/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Roster/locales.ini @@ -76,6 +64,8 @@ #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Statistics/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Stickers/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Subscribe/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Syndication/locales.ini @@ -84,16 +74,12 @@ #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Vcard4/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/VisioExt/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Visio/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../locales/locales.ini msgid "" msgstr "" "Project-Id-Version: Movim\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-12-29 13:42+0200\n" +"POT-Creation-Date: 2016-03-08 08:30+0200\n" "PO-Revision-Date: 2013-07-27 17:06+0000\n" "Last-Translator: Gwenn M \n" "Language-Team: LANGUAGE \n" @@ -531,6 +517,7 @@ msgid "Name" msgstr "Anv" #: [chatroom]nickname [general]nickname [chatrooms]nickname +#: [accounts]accounts_nickname msgid "Nickname" msgstr "Lezanv" @@ -664,24 +651,8 @@ msgstr "" msgid "Load more contacts" msgstr "" -#: [title]data -msgid "Data" -msgstr "" - -#: [title]cache -msgid "Cache" -msgstr "" - -#: [title]contacts [menu]contacts [page]contacts -msgid "Contacts" -msgstr "" - -#: [title]posts [page]posts -msgid "Posts" -msgstr "" - -#: [title]messages -msgid "Messages" +#: [button]new +msgid "New conversation" msgstr "" #: [config]general @@ -730,11 +701,11 @@ msgstr "" msgid "Custom CSS URL for your blog" msgstr "" -#: [general]legend [general]general_title +#: [general]legend msgid "General Informations" msgstr "Titouroù hollek" -#: [general]name [public_groups]name [chatrooms]name +#: [general]name [chatrooms]name msgid "Name" msgstr "Anv" @@ -770,7 +741,7 @@ msgstr "" msgid "Is Listening" msgstr "" -#: [position]legend [position]position_title +#: [position]legend msgid "Geographic Position" msgstr "" @@ -1031,10 +1002,6 @@ msgstr "" msgid "This server doesn't exists" msgstr "" -#: [roster]search -msgid "Search in your contacts" -msgstr "" - #: [hello]chat msgid "Go on the Chat page" msgstr "" @@ -1163,26 +1130,6 @@ msgstr "" msgid "Microblog node created" msgstr "" -#: [location]title -msgid "Location" -msgstr "" - -#: [location]wrong_postition -msgid "Wrong position" -msgstr "" - -#: [location]updated -msgid "Location updated" -msgstr "" - -#: [location]update -msgid "Update my position" -msgstr "" - -#: [login_anonymous]bad_username -msgid "Bad nickname (between 4 and 40 characters)" -msgstr "" - #: [error]username msgid "Wrong username" msgstr "Anv implijer direizh" @@ -1240,7 +1187,7 @@ msgstr "" msgid "Oops!" msgstr "" -#: [error]default [visio]unknown_error +#: [error]default msgid "Unknown error" msgstr "Kudenn dianavezet" @@ -1301,6 +1248,10 @@ msgstr "" msgid "Population" msgstr "" +#: [login_anonymous]bad_username +msgid "Bad nickname (between 4 and 40 characters)" +msgstr "" + #: [menu]empty_title msgid "No news yet..." msgstr "" @@ -1321,32 +1272,16 @@ msgstr "" msgid "All" msgstr "" -#: [affiliations]title -msgid "Manage your members" +#: [menu]mine +msgid "My publications" msgstr "" -#: [affiliations]get -msgid "Get the members" +#: [menu]contacts [page]contacts +msgid "Contacts" msgstr "" -#: [affiliations]saved -msgid "Affiliations saved" -msgstr "" - -#: [subscriptions]title -msgid "Manage your subscriptions" -msgstr "" - -#: [subscriptions]info -msgid "Manage the subscriptions" -msgstr "" - -#: [subscriptions]get -msgid "Get the subscriptions" -msgstr "" - -#: [subscriptions]saved -msgid "Subscriptions saved" +#: [menu]add_post +msgid "Add a post" msgstr "" #: [notifs]title @@ -1397,6 +1332,10 @@ msgstr "" msgid "See %s profile" msgstr "" +#: [post]blog_last +msgid "Public posts from users" +msgstr "" + #: [post]public msgid "Publish this post publicly?" msgstr "" @@ -1409,6 +1348,10 @@ msgstr "" msgid "This post is now private" msgstr "" +#: [post]public_url +msgid "Public URL of this post" +msgstr "" + #: [post]delete_title [post]delete msgid "Delete this post" msgstr "" @@ -1525,14 +1468,6 @@ msgstr "" msgid "Add some text" msgstr "" -#: [public_groups]shared -msgid "Shared" -msgstr "" - -#: [public_groups]added -msgid "%s has been added to your public groups" -msgstr "" - #: [rooms]add msgid "Add a chatroom" msgstr "" @@ -1650,7 +1585,11 @@ msgid "Contact deleted" msgstr "" #: [roster]search -msgid "Search" +msgid "Search in your contacts" +msgstr "" + +#: [roster]search_pod +msgid "Search a contact" msgstr "" #: [share]error @@ -1681,6 +1620,10 @@ msgstr "" msgid "Monthly Subscriptions Cumulated" msgstr "" +#: [sticker]sent +msgid "A sticker has been sent using Movim" +msgstr "" + #: [subscribe]info msgid "Movim is a decentralized social network, before creating a new account you need to choose a server to register." msgstr "" @@ -1729,12 +1672,6 @@ msgstr "" msgid "Your profile is now restricted" msgstr "" -#: [general]nickname -#, fuzzy -msgctxt "[general]nickname" -msgid "Nickname" -msgstr "Lezanv" - #: [accounts]accounts_title msgid "Accounts" msgstr "" @@ -1751,12 +1688,6 @@ msgstr "" msgid "Yahoo Account" msgstr "" -#: [accounts]accounts_nickname -#, fuzzy -msgctxt "[accounts]accounts_nickname" -msgid "Nickname" -msgstr "Lezanv" - #: [privacy]privacy_title msgid "Privacy Level" msgstr "" @@ -1766,7 +1697,7 @@ msgid "Is this profile public ?" msgstr "" #: [privacy]privacy_info -msgid "Please pay attention ! By making your profile public, all the information listed above will be available for all the Movim users and on the whole Internet." +msgid "Please pay attention ! By making your profile public, all the information listed bellow will be available for all the Movim users and on the whole Internet." msgstr "" #: [save]submit [button]submit @@ -1777,34 +1708,6 @@ msgstr "Kinnig" msgid "Reset" msgstr "Adkregiñ" -#: [visio]hung_up -msgid "Hung up" -msgstr "" - -#: [visio]busy -msgid "Your contact is busy" -msgstr "" - -#: [visio]declined -msgid "Declined" -msgstr "" - -#: [visio]calling -msgid "Is calling you" -msgstr "" - -#: [visio]call -msgid "Call" -msgstr "" - -#: [visio]hang_up -msgid "Hang up" -msgstr "" - -#: [visio]connection -msgid "Connection" -msgstr "" - #: [global]no_js msgid "You don't have javascript enabled. Good luck with that." msgstr "" @@ -1873,6 +1776,10 @@ msgstr "" msgid "Feed" msgstr "Gwazh" +#: [page]posts +msgid "Posts" +msgstr "" + #: [page]gallery msgid "Gallery" msgstr "" @@ -2754,6 +2661,16 @@ msgstr "" msgid "Type here" msgstr "" +#, fuzzy +#~ msgctxt "[general]nickname" +#~ msgid "Nickname" +#~ msgstr "Lezanv" + +#, fuzzy +#~ msgctxt "[accounts]accounts_nickname" +#~ msgid "Nickname" +#~ msgstr "Lezanv" + #~ msgid "Your web browser is too old to use with Movim." #~ msgstr "Ho merdeer a zo re gozh evit implij Movim" diff --git a/sources/locales/da.po b/sources/locales/da.po index e657bb0..0530627 100644 --- a/sources/locales/da.po +++ b/sources/locales/da.po @@ -27,8 +27,6 @@ #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Chats/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/ConfigData/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Config/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Contact/locales.ini @@ -37,26 +35,18 @@ #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Groups/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Header/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Hello/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Help/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Init/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Location/locales.ini +#. extracted from ../app/widgets/Login/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/LoginAnonymous/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Login/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Menu/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/NodeAffiliations/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/NodeSubscriptions/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Notifs/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Post/locales.ini @@ -65,8 +55,6 @@ #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Publish/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/PubsubSubscriptionConfig/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Rooms/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Roster/locales.ini @@ -75,6 +63,8 @@ #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Statistics/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Stickers/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Subscribe/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Syndication/locales.ini @@ -83,16 +73,12 @@ #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Vcard4/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/VisioExt/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Visio/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../locales/locales.ini msgid "" msgstr "" "Project-Id-Version: movim\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-12-29 13:42+0200\n" +"POT-Creation-Date: 2016-03-08 08:30+0200\n" "PO-Revision-Date: 2015-10-06 21:34+0000\n" "Last-Translator: Jaussoin Timothée \n" "Language-Team: Danish (http://www.transifex.com/movim/movim/language/da/)\n" @@ -525,6 +511,7 @@ msgid "Name" msgstr "" #: [chatroom]nickname [general]nickname [chatrooms]nickname +#: [accounts]accounts_nickname msgid "Nickname" msgstr "Kaldenavn" @@ -657,24 +644,8 @@ msgstr "Snak med en kontakt" msgid "Load more contacts" msgstr "Indlæs flere kontakter" -#: [title]data -msgid "Data" -msgstr "Data" - -#: [title]cache -msgid "Cache" -msgstr "" - -#: [title]contacts [menu]contacts [page]contacts -msgid "Contacts" -msgstr "" - -#: [title]posts [page]posts -msgid "Posts" -msgstr "" - -#: [title]messages -msgid "Messages" +#: [button]new +msgid "New conversation" msgstr "" #: [config]general @@ -723,11 +694,11 @@ msgstr "Brug skrivebordsmeddelelser" msgid "Custom CSS URL for your blog" msgstr "" -#: [general]legend [general]general_title +#: [general]legend msgid "General Informations" msgstr "Generelle informationer" -#: [general]name [public_groups]name [chatrooms]name +#: [general]name [chatrooms]name msgid "Name" msgstr "Navn" @@ -763,7 +734,7 @@ msgstr "Andre konti" msgid "Is Listening" msgstr "Lytter" -#: [position]legend [position]position_title +#: [position]legend msgid "Geographic Position" msgstr "Geografisk placering" @@ -1023,10 +994,6 @@ msgstr "%s indlæg" msgid "This server doesn't exists" msgstr "" -#: [roster]search -msgid "Search in your contacts" -msgstr "" - #: [hello]chat msgid "Go on the Chat page" msgstr "Gå til Chat siden" @@ -1156,26 +1123,6 @@ msgstr "Tilmeldings node oprettet" msgid "Microblog node created" msgstr "Mikroblog node oprettet" -#: [location]title -msgid "Location" -msgstr "Placering" - -#: [location]wrong_postition -msgid "Wrong position" -msgstr "Forkert placering" - -#: [location]updated -msgid "Location updated" -msgstr "Placering opdateret" - -#: [location]update -msgid "Update my position" -msgstr "Opdater min placering" - -#: [login_anonymous]bad_username -msgid "Bad nickname (between 4 and 40 characters)" -msgstr "" - #: [error]username msgid "Wrong username" msgstr "Forkert brugernavn" @@ -1233,7 +1180,7 @@ msgstr "Login ikke muligt" msgid "Oops!" msgstr "Uups!" -#: [error]default [visio]unknown_error +#: [error]default msgid "Unknown error" msgstr "Ukendt fejl" @@ -1294,6 +1241,10 @@ msgstr "Forbundet" msgid "Population" msgstr "Befolkning" +#: [login_anonymous]bad_username +msgid "Bad nickname (between 4 and 40 characters)" +msgstr "" + #: [menu]empty_title msgid "No news yet..." msgstr "" @@ -1314,33 +1265,19 @@ msgstr "Dette indlæg er offentligt" msgid "All" msgstr "Alle" -#: [affiliations]title -msgid "Manage your members" -msgstr "Administrér dine medlemmer" +#: [menu]mine +#, fuzzy +msgid "My publications" +msgstr "Mine tilmeldinger" -#: [affiliations]get -msgid "Get the members" -msgstr "Hent medlemmerne" +#: [menu]contacts [page]contacts +msgid "Contacts" +msgstr "" -#: [affiliations]saved -msgid "Affiliations saved" -msgstr "Tilknytninger gemt" - -#: [subscriptions]title -msgid "Manage your subscriptions" -msgstr "Administrér dine tilmeldinger" - -#: [subscriptions]info -msgid "Manage the subscriptions" -msgstr "Administrér tilmeldingerne" - -#: [subscriptions]get -msgid "Get the subscriptions" -msgstr "Hent tilmeldingerne" - -#: [subscriptions]saved -msgid "Subscriptions saved" -msgstr "Tilmeding gemt" +#: [menu]add_post +#, fuzzy +msgid "Add a post" +msgstr "Tilføj en kommentar" #: [notifs]title msgid "Pending Invitations" @@ -1390,6 +1327,11 @@ msgstr "" msgid "See %s profile" msgstr "" +#: [post]blog_last +#, fuzzy +msgid "Public posts from users" +msgstr "Offentlige grupper" + #: [post]public msgid "Publish this post publicly?" msgstr "" @@ -1404,6 +1346,10 @@ msgstr "Dette indlæg er offentligt" msgid "This post is now private" msgstr "Dette indlæg er offentligt" +#: [post]public_url +msgid "Public URL of this post" +msgstr "" + #: [post]delete_title [post]delete msgid "Delete this post" msgstr "Slet dette indlæg" @@ -1522,14 +1468,6 @@ msgstr "" msgid "Add some text" msgstr "" -#: [public_groups]shared -msgid "Shared" -msgstr "Delt" - -#: [public_groups]added -msgid "%s has been added to your public groups" -msgstr "%s er blevet tilføjet til dine offentlige grupper" - #: [rooms]add msgid "Add a chatroom" msgstr "Tilføj et chatrum" @@ -1647,8 +1585,13 @@ msgid "Contact deleted" msgstr "Kontakt slettet" #: [roster]search -msgid "Search" -msgstr "Søg" +msgid "Search in your contacts" +msgstr "" + +#: [roster]search_pod +#, fuzzy +msgid "Search a contact" +msgstr "Delt med alle kontakter" #: [share]error msgid "This is not a valid url" @@ -1678,6 +1621,10 @@ msgstr "Månedlige tilmeldinger" msgid "Monthly Subscriptions Cumulated" msgstr "Måndelige tilmeldinger akkumuleret" +#: [sticker]sent +msgid "A sticker has been sent using Movim" +msgstr "" + #: [subscribe]info msgid "Movim is a decentralized social network, before creating a new account you need to choose a server to register." msgstr "Movim er et decentraliseret socialt netværk, før du opretter en ny konto skal du vælge en server" @@ -1726,11 +1673,6 @@ msgstr "Din profil er nu offentlig" msgid "Your profile is now restricted" msgstr "Din profil er nu begrænset" -#: [general]nickname -msgctxt "[general]nickname" -msgid "Nickname" -msgstr "" - #: [accounts]accounts_title msgid "Accounts" msgstr "Konti" @@ -1747,11 +1689,6 @@ msgstr "Skype" msgid "Yahoo Account" msgstr "" -#: [accounts]accounts_nickname -msgctxt "[accounts]accounts_nickname" -msgid "Nickname" -msgstr "" - #: [privacy]privacy_title msgid "Privacy Level" msgstr "Privatlivs niveau" @@ -1761,7 +1698,8 @@ msgid "Is this profile public ?" msgstr "Er denne profil offentlig ?" #: [privacy]privacy_info -msgid "Please pay attention ! By making your profile public, all the information listed above will be available for all the Movim users and on the whole Internet." +#, fuzzy +msgid "Please pay attention ! By making your profile public, all the information listed bellow will be available for all the Movim users and on the whole Internet." msgstr "Overvej venligst ! Ved at gøre din profil offentlig, bliver al information herunder tilgængelig for alle Movim brugere og på hele internettet." #: [save]submit [button]submit @@ -1772,34 +1710,6 @@ msgstr "Indsend" msgid "Reset" msgstr "Nulstil" -#: [visio]hung_up -msgid "Hung up" -msgstr "Lagde på" - -#: [visio]busy -msgid "Your contact is busy" -msgstr "Din kontakt er optaget" - -#: [visio]declined -msgid "Declined" -msgstr "Afslået" - -#: [visio]calling -msgid "Is calling you" -msgstr "ringer til dig" - -#: [visio]call -msgid "Call" -msgstr "Ring op" - -#: [visio]hang_up -msgid "Hang up" -msgstr "Læg på" - -#: [visio]connection -msgid "Connection" -msgstr "Forbindelse" - #: [global]no_js msgid "You don't have javascript enabled. Good luck with that." msgstr "Du har ikke Javascript slået til. Held og lykke med det." @@ -1868,6 +1778,10 @@ msgstr "Log ind" msgid "Feed" msgstr "Kilde" +#: [page]posts +msgid "Posts" +msgstr "" + #: [page]gallery msgid "Gallery" msgstr "Galleri" @@ -2747,6 +2661,72 @@ msgstr "API'en kan ikke nåes, prøv igen senere" msgid "Type here" msgstr "Skriv her" +#~ msgid "Data" +#~ msgstr "Data" + +#~ msgid "Location" +#~ msgstr "Placering" + +#~ msgid "Wrong position" +#~ msgstr "Forkert placering" + +#~ msgid "Location updated" +#~ msgstr "Placering opdateret" + +#~ msgid "Update my position" +#~ msgstr "Opdater min placering" + +#~ msgid "Manage your members" +#~ msgstr "Administrér dine medlemmer" + +#~ msgid "Get the members" +#~ msgstr "Hent medlemmerne" + +#~ msgid "Affiliations saved" +#~ msgstr "Tilknytninger gemt" + +#~ msgid "Manage your subscriptions" +#~ msgstr "Administrér dine tilmeldinger" + +#~ msgid "Manage the subscriptions" +#~ msgstr "Administrér tilmeldingerne" + +#~ msgid "Get the subscriptions" +#~ msgstr "Hent tilmeldingerne" + +#~ msgid "Subscriptions saved" +#~ msgstr "Tilmeding gemt" + +#~ msgid "Shared" +#~ msgstr "Delt" + +#~ msgid "%s has been added to your public groups" +#~ msgstr "%s er blevet tilføjet til dine offentlige grupper" + +#~ msgid "Search" +#~ msgstr "Søg" + +#~ msgid "Hung up" +#~ msgstr "Lagde på" + +#~ msgid "Your contact is busy" +#~ msgstr "Din kontakt er optaget" + +#~ msgid "Declined" +#~ msgstr "Afslået" + +#~ msgid "Is calling you" +#~ msgstr "ringer til dig" + +#~ msgid "Call" +#~ msgstr "Ring op" + +#~ msgid "Hang up" +#~ msgstr "Læg på" + +#~ msgid "Connection" +#~ msgstr "Forbindelse" + #~ msgid "URL Rewriting" #~ msgstr "URL omskrivning" diff --git a/sources/locales/de.po b/sources/locales/de.po index 25d9594..6b242db 100644 --- a/sources/locales/de.po +++ b/sources/locales/de.po @@ -33,8 +33,6 @@ #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Chats/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/ConfigData/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Config/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Contact/locales.ini @@ -43,26 +41,18 @@ #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Groups/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Header/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Hello/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Help/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Init/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Location/locales.ini +#. extracted from ../app/widgets/Login/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/LoginAnonymous/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Login/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Menu/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/NodeAffiliations/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/NodeSubscriptions/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Notifs/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Post/locales.ini @@ -71,8 +61,6 @@ #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Publish/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/PubsubSubscriptionConfig/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Rooms/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Roster/locales.ini @@ -81,6 +69,8 @@ #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Statistics/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Stickers/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Subscribe/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Syndication/locales.ini @@ -89,16 +79,12 @@ #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Vcard4/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/VisioExt/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Visio/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../locales/locales.ini msgid "" msgstr "" "Project-Id-Version: movim\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-12-29 13:42+0200\n" +"POT-Creation-Date: 2016-03-08 08:30+0200\n" "PO-Revision-Date: 2015-12-29 12:43+0000\n" "Last-Translator: Jaussoin Timothée \n" "Language-Team: German (http://www.transifex.com/movim/movim/language/de/)\n" @@ -530,6 +516,7 @@ msgid "Name" msgstr "Name" #: [chatroom]nickname [general]nickname [chatrooms]nickname +#: [accounts]accounts_nickname msgid "Nickname" msgstr "Spitzname" @@ -662,25 +649,9 @@ msgstr "Mit einem Kontakt sprechen" msgid "Load more contacts" msgstr "Weitere Kontakte laden" -#: [title]data -msgid "Data" -msgstr "Daten" - -#: [title]cache -msgid "Cache" -msgstr "Puffer" - -#: [title]contacts [menu]contacts [page]contacts -msgid "Contacts" -msgstr "Kontakte" - -#: [title]posts [page]posts -msgid "Posts" -msgstr "Beiträge" - -#: [title]messages -msgid "Messages" -msgstr "Nachrichten" +#: [button]new +msgid "New conversation" +msgstr "" #: [config]general msgid "General" @@ -726,11 +697,11 @@ msgstr "Schreibtischbenachrichtigung nutzen" msgid "Custom CSS URL for your blog" msgstr "" -#: [general]legend [general]general_title +#: [general]legend msgid "General Informations" msgstr "Allgemeine Angaben" -#: [general]name [public_groups]name [chatrooms]name +#: [general]name [chatrooms]name msgid "Name" msgstr "Name" @@ -766,7 +737,7 @@ msgstr "Weitere Konten" msgid "Is Listening" msgstr "hört zu" -#: [position]legend [position]position_title +#: [position]legend msgid "Geographic Position" msgstr "Standort" @@ -1026,10 +997,6 @@ msgstr "%s Beiträge" msgid "This server doesn't exists" msgstr "Dieser Server existiert nicht" -#: [roster]search -msgid "Search in your contacts" -msgstr "Kontakte durchsuchen" - #: [hello]chat msgid "Go on the Chat page" msgstr "Den Chat öffnen" @@ -1158,26 +1125,6 @@ msgstr "Abonnementknoten erstellt" msgid "Microblog node created" msgstr "Microblogknoten ersellt" -#: [location]title -msgid "Location" -msgstr "Standort" - -#: [location]wrong_postition -msgid "Wrong position" -msgstr "Falsche Position" - -#: [location]updated -msgid "Location updated" -msgstr "Standort aktualisiert" - -#: [location]update -msgid "Update my position" -msgstr "Meine Position aktualisieren" - -#: [login_anonymous]bad_username -msgid "Bad nickname (between 4 and 40 characters)" -msgstr "Ungültiger Spitzname (zwischen 4 und 40 Zeichen)" - #: [error]username msgid "Wrong username" msgstr "Falscher Benutzername" @@ -1235,7 +1182,7 @@ msgstr "Anmeldung nicht möglich" msgid "Oops!" msgstr "Huch!" -#: [error]default [visio]unknown_error +#: [error]default msgid "Unknown error" msgstr "Unbekannter Fehler" @@ -1296,6 +1243,10 @@ msgstr "Verbunden" msgid "Population" msgstr "Einwohner" +#: [login_anonymous]bad_username +msgid "Bad nickname (between 4 and 40 characters)" +msgstr "Ungültiger Spitzname (zwischen 4 und 40 Zeichen)" + #: [menu]empty_title msgid "No news yet..." msgstr "Noch keine Nachrichten …" @@ -1316,33 +1267,19 @@ msgstr "Dieser Beitrag ist öffentlich" msgid "All" msgstr "Alle" -#: [affiliations]title -msgid "Manage your members" -msgstr "Mitglieder verwalten" +#: [menu]mine +#, fuzzy +msgid "My publications" +msgstr "Meine Abonnements" -#: [affiliations]get -msgid "Get the members" -msgstr "Mitglieder abfragen" +#: [menu]contacts [page]contacts +msgid "Contacts" +msgstr "Kontakte" -#: [affiliations]saved -msgid "Affiliations saved" -msgstr "Zugehörigkeiten gespeichert" - -#: [subscriptions]title -msgid "Manage your subscriptions" -msgstr "Ihre Abonnements verwalten" - -#: [subscriptions]info -msgid "Manage the subscriptions" -msgstr "Die Abonnements verwalten" - -#: [subscriptions]get -msgid "Get the subscriptions" -msgstr "Abonnements" - -#: [subscriptions]saved -msgid "Subscriptions saved" -msgstr "Abonnement gespeichert" +#: [menu]add_post +#, fuzzy +msgid "Add a post" +msgstr "Einen Kommentar hinzufügen" #: [notifs]title msgid "Pending Invitations" @@ -1392,6 +1329,11 @@ msgstr "Dies ist ein weitergeleiteter Beitrag von %s" msgid "See %s profile" msgstr "Profil %s ansehen" +#: [post]blog_last +#, fuzzy +msgid "Public posts from users" +msgstr "Öffentliche Gruppen" + #: [post]public msgid "Publish this post publicly?" msgstr "Diesen Beitrag öffentlich zeigen?" @@ -1404,6 +1346,11 @@ msgstr "" msgid "This post is now private" msgstr "" +#: [post]public_url +#, fuzzy +msgid "Public URL of this post" +msgstr "Diesen Beitrag öffentlich zeigen?" + #: [post]delete_title [post]delete msgid "Delete this post" msgstr "Diesen Beitrag löschen" @@ -1520,14 +1467,6 @@ msgstr "Klicken Sie hier um ihrer Veröffentlichung einen Text hinzuzufügen" msgid "Add some text" msgstr "Text hinzufügen" -#: [public_groups]shared -msgid "Shared" -msgstr "Geteilt" - -#: [public_groups]added -msgid "%s has been added to your public groups" -msgstr "%s wurde zu Ihren öffentlichen Gruppen hinzugefügt" - #: [rooms]add msgid "Add a chatroom" msgstr "Chatraum hinzufügen" @@ -1645,8 +1584,13 @@ msgid "Contact deleted" msgstr "Kontakt gelöscht" #: [roster]search -msgid "Search" -msgstr "Suchen" +msgid "Search in your contacts" +msgstr "Kontakte durchsuchen" + +#: [roster]search_pod +#, fuzzy +msgid "Search a contact" +msgstr "Kontakte durchsuchen" #: [share]error msgid "This is not a valid url" @@ -1676,6 +1620,10 @@ msgstr "Monatliches Abonnement" msgid "Monthly Subscriptions Cumulated" msgstr "Monatliche Abonnements" +#: [sticker]sent +msgid "A sticker has been sent using Movim" +msgstr "" + #: [subscribe]info msgid "Movim is a decentralized social network, before creating a new account you need to choose a server to register." msgstr "Movim ist ein dezentrales soziales Netzwerk, bevor ein neues Konto erstellt werden kann, muss ein Server zum Registrieren gewählt werden." @@ -1724,11 +1672,6 @@ msgstr "Ihr Profil ist jetzt öffentlich" msgid "Your profile is now restricted" msgstr "Ihr Profil ist jetzt eingeschränkt" -#: [general]nickname -msgctxt "[general]nickname" -msgid "Nickname" -msgstr "Spitzname" - #: [accounts]accounts_title msgid "Accounts" msgstr "Konten" @@ -1745,11 +1688,6 @@ msgstr "Skype" msgid "Yahoo Account" msgstr "Yahoo-Konto" -#: [accounts]accounts_nickname -msgctxt "[accounts]accounts_nickname" -msgid "Nickname" -msgstr "Spitzname" - #: [privacy]privacy_title msgid "Privacy Level" msgstr "Privatsphärenstufe" @@ -1759,7 +1697,8 @@ msgid "Is this profile public ?" msgstr "Ist dieses Profil öffentlich?" #: [privacy]privacy_info -msgid "Please pay attention ! By making your profile public, all the information listed above will be available for all the Movim users and on the whole Internet." +#, fuzzy +msgid "Please pay attention ! By making your profile public, all the information listed bellow will be available for all the Movim users and on the whole Internet." msgstr "Achtung! Durch das Öffentlichmachen des Profils werden alle obenstehenden Information verfügbar für alle Movimnutzer und das gesamte Internet." #: [save]submit [button]submit @@ -1770,34 +1709,6 @@ msgstr "Absenden" msgid "Reset" msgstr "Zurücksetzen" -#: [visio]hung_up -msgid "Hung up" -msgstr "Aufgelegt" - -#: [visio]busy -msgid "Your contact is busy" -msgstr "Der Kontakt ist beschäftigt" - -#: [visio]declined -msgid "Declined" -msgstr "Abgelehnt" - -#: [visio]calling -msgid "Is calling you" -msgstr "Ruft Sie gerade an" - -#: [visio]call -msgid "Call" -msgstr "Anrufen" - -#: [visio]hang_up -msgid "Hang up" -msgstr "Auflegen" - -#: [visio]connection -msgid "Connection" -msgstr "Verbindung" - #: [global]no_js msgid "You don't have javascript enabled. Good luck with that." msgstr "Javaskript ist deaktiviert. Viel Erfolg damit!" @@ -1866,6 +1777,10 @@ msgstr "Anmelden" msgid "Feed" msgstr "Datenstrom" +#: [page]posts +msgid "Posts" +msgstr "Beiträge" + #: [page]gallery msgid "Gallery" msgstr "Galerie" @@ -2743,3 +2658,83 @@ msgstr "Die API ist nicht erreichbar, bitte später erneut versuchen" #: [field]type_here msgid "Type here" msgstr "Hier tippen" + +#~ msgid "Data" +#~ msgstr "Daten" + +#~ msgid "Cache" +#~ msgstr "Puffer" + +#~ msgid "Messages" +#~ msgstr "Nachrichten" + +#~ msgid "Location" +#~ msgstr "Standort" + +#~ msgid "Wrong position" +#~ msgstr "Falsche Position" + +#~ msgid "Location updated" +#~ msgstr "Standort aktualisiert" + +#~ msgid "Update my position" +#~ msgstr "Meine Position aktualisieren" + +#~ msgid "Manage your members" +#~ msgstr "Mitglieder verwalten" + +#~ msgid "Get the members" +#~ msgstr "Mitglieder abfragen" + +#~ msgid "Affiliations saved" +#~ msgstr "Zugehörigkeiten gespeichert" + +#~ msgid "Manage your subscriptions" +#~ msgstr "Ihre Abonnements verwalten" + +#~ msgid "Manage the subscriptions" +#~ msgstr "Die Abonnements verwalten" + +#~ msgid "Get the subscriptions" +#~ msgstr "Abonnements" + +#~ msgid "Subscriptions saved" +#~ msgstr "Abonnement gespeichert" + +#~ msgid "Shared" +#~ msgstr "Geteilt" + +#~ msgid "%s has been added to your public groups" +#~ msgstr "%s wurde zu Ihren öffentlichen Gruppen hinzugefügt" + +#~ msgid "Search" +#~ msgstr "Suchen" + +#~ msgctxt "[general]nickname" +#~ msgid "Nickname" +#~ msgstr "Spitzname" + +#~ msgctxt "[accounts]accounts_nickname" +#~ msgid "Nickname" +#~ msgstr "Spitzname" + +#~ msgid "Hung up" +#~ msgstr "Aufgelegt" + +#~ msgid "Your contact is busy" +#~ msgstr "Der Kontakt ist beschäftigt" + +#~ msgid "Declined" +#~ msgstr "Abgelehnt" + +#~ msgid "Is calling you" +#~ msgstr "Ruft Sie gerade an" + +#~ msgid "Call" +#~ msgstr "Anrufen" + +#~ msgid "Hang up" +#~ msgstr "Auflegen" + +#~ msgid "Connection" +#~ msgstr "Verbindung" diff --git a/sources/locales/el.po b/sources/locales/el.po index 56a6196..0615665 100644 --- a/sources/locales/el.po +++ b/sources/locales/el.po @@ -28,8 +28,6 @@ #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Chats/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/ConfigData/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Config/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Contact/locales.ini @@ -38,26 +36,18 @@ #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Groups/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Header/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Hello/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Help/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Init/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Location/locales.ini +#. extracted from ../app/widgets/Login/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/LoginAnonymous/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Login/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Menu/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/NodeAffiliations/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/NodeSubscriptions/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Notifs/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Post/locales.ini @@ -66,8 +56,6 @@ #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Publish/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/PubsubSubscriptionConfig/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Rooms/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Roster/locales.ini @@ -76,6 +64,8 @@ #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Statistics/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Stickers/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Subscribe/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Syndication/locales.ini @@ -84,16 +74,12 @@ #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Vcard4/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/VisioExt/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Visio/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../locales/locales.ini msgid "" msgstr "" "Project-Id-Version: Movim\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-12-29 13:42+0200\n" +"POT-Creation-Date: 2016-03-08 08:30+0200\n" "PO-Revision-Date: 2013-12-07 17:27+0000\n" "Last-Translator: aitolos \n" "Language-Team: LANGUAGE \n" @@ -532,6 +518,7 @@ msgid "Name" msgstr "Όνομα" #: [chatroom]nickname [general]nickname [chatrooms]nickname +#: [accounts]accounts_nickname msgid "Nickname" msgstr "Ψευδώνυμο" @@ -665,24 +652,8 @@ msgstr "" msgid "Load more contacts" msgstr "" -#: [title]data -msgid "Data" -msgstr "" - -#: [title]cache -msgid "Cache" -msgstr "" - -#: [title]contacts [menu]contacts [page]contacts -msgid "Contacts" -msgstr "" - -#: [title]posts [page]posts -msgid "Posts" -msgstr "" - -#: [title]messages -msgid "Messages" +#: [button]new +msgid "New conversation" msgstr "" #: [config]general @@ -731,11 +702,11 @@ msgstr "" msgid "Custom CSS URL for your blog" msgstr "" -#: [general]legend [general]general_title +#: [general]legend msgid "General Informations" msgstr "Γενικές πληροφορίες" -#: [general]name [public_groups]name [chatrooms]name +#: [general]name [chatrooms]name msgid "Name" msgstr "Όνομα" @@ -771,7 +742,7 @@ msgstr "" msgid "Is Listening" msgstr "" -#: [position]legend [position]position_title +#: [position]legend msgid "Geographic Position" msgstr "" @@ -1032,10 +1003,6 @@ msgstr "" msgid "This server doesn't exists" msgstr "" -#: [roster]search -msgid "Search in your contacts" -msgstr "" - #: [hello]chat msgid "Go on the Chat page" msgstr "" @@ -1164,26 +1131,6 @@ msgstr "" msgid "Microblog node created" msgstr "" -#: [location]title -msgid "Location" -msgstr "" - -#: [location]wrong_postition -msgid "Wrong position" -msgstr "" - -#: [location]updated -msgid "Location updated" -msgstr "" - -#: [location]update -msgid "Update my position" -msgstr "" - -#: [login_anonymous]bad_username -msgid "Bad nickname (between 4 and 40 characters)" -msgstr "" - #: [error]username msgid "Wrong username" msgstr "Λάθος όνομα χρήστη" @@ -1241,7 +1188,7 @@ msgstr "" msgid "Oops!" msgstr "" -#: [error]default [visio]unknown_error +#: [error]default msgid "Unknown error" msgstr "" @@ -1302,6 +1249,10 @@ msgstr "" msgid "Population" msgstr "" +#: [login_anonymous]bad_username +msgid "Bad nickname (between 4 and 40 characters)" +msgstr "" + #: [menu]empty_title msgid "No news yet..." msgstr "" @@ -1322,32 +1273,16 @@ msgstr "" msgid "All" msgstr "" -#: [affiliations]title -msgid "Manage your members" +#: [menu]mine +msgid "My publications" msgstr "" -#: [affiliations]get -msgid "Get the members" +#: [menu]contacts [page]contacts +msgid "Contacts" msgstr "" -#: [affiliations]saved -msgid "Affiliations saved" -msgstr "" - -#: [subscriptions]title -msgid "Manage your subscriptions" -msgstr "" - -#: [subscriptions]info -msgid "Manage the subscriptions" -msgstr "" - -#: [subscriptions]get -msgid "Get the subscriptions" -msgstr "" - -#: [subscriptions]saved -msgid "Subscriptions saved" +#: [menu]add_post +msgid "Add a post" msgstr "" #: [notifs]title @@ -1398,6 +1333,10 @@ msgstr "" msgid "See %s profile" msgstr "" +#: [post]blog_last +msgid "Public posts from users" +msgstr "" + #: [post]public msgid "Publish this post publicly?" msgstr "" @@ -1410,6 +1349,10 @@ msgstr "" msgid "This post is now private" msgstr "" +#: [post]public_url +msgid "Public URL of this post" +msgstr "" + #: [post]delete_title [post]delete msgid "Delete this post" msgstr "" @@ -1526,14 +1469,6 @@ msgstr "" msgid "Add some text" msgstr "" -#: [public_groups]shared -msgid "Shared" -msgstr "" - -#: [public_groups]added -msgid "%s has been added to your public groups" -msgstr "" - #: [rooms]add msgid "Add a chatroom" msgstr "" @@ -1651,7 +1586,11 @@ msgid "Contact deleted" msgstr "" #: [roster]search -msgid "Search" +msgid "Search in your contacts" +msgstr "" + +#: [roster]search_pod +msgid "Search a contact" msgstr "" #: [share]error @@ -1682,6 +1621,10 @@ msgstr "" msgid "Monthly Subscriptions Cumulated" msgstr "" +#: [sticker]sent +msgid "A sticker has been sent using Movim" +msgstr "" + #: [subscribe]info msgid "Movim is a decentralized social network, before creating a new account you need to choose a server to register." msgstr "" @@ -1730,12 +1673,6 @@ msgstr "" msgid "Your profile is now restricted" msgstr "" -#: [general]nickname -#, fuzzy -msgctxt "[general]nickname" -msgid "Nickname" -msgstr "Ψευδώνυμο" - #: [accounts]accounts_title msgid "Accounts" msgstr "" @@ -1752,12 +1689,6 @@ msgstr "" msgid "Yahoo Account" msgstr "" -#: [accounts]accounts_nickname -#, fuzzy -msgctxt "[accounts]accounts_nickname" -msgid "Nickname" -msgstr "Ψευδώνυμο" - #: [privacy]privacy_title msgid "Privacy Level" msgstr "" @@ -1767,7 +1698,7 @@ msgid "Is this profile public ?" msgstr "" #: [privacy]privacy_info -msgid "Please pay attention ! By making your profile public, all the information listed above will be available for all the Movim users and on the whole Internet." +msgid "Please pay attention ! By making your profile public, all the information listed bellow will be available for all the Movim users and on the whole Internet." msgstr "" #: [save]submit [button]submit @@ -1778,34 +1709,6 @@ msgstr "Υποβολή" msgid "Reset" msgstr "Επαναφορά" -#: [visio]hung_up -msgid "Hung up" -msgstr "" - -#: [visio]busy -msgid "Your contact is busy" -msgstr "" - -#: [visio]declined -msgid "Declined" -msgstr "" - -#: [visio]calling -msgid "Is calling you" -msgstr "" - -#: [visio]call -msgid "Call" -msgstr "" - -#: [visio]hang_up -msgid "Hang up" -msgstr "" - -#: [visio]connection -msgid "Connection" -msgstr "" - #: [global]no_js msgid "You don't have javascript enabled. Good luck with that." msgstr "" @@ -1874,6 +1777,10 @@ msgstr "" msgid "Feed" msgstr "Feed" +#: [page]posts +msgid "Posts" +msgstr "" + #: [page]gallery msgid "Gallery" msgstr "" @@ -2756,6 +2663,16 @@ msgstr "" msgid "Type here" msgstr "" +#, fuzzy +#~ msgctxt "[general]nickname" +#~ msgid "Nickname" +#~ msgstr "Ψευδώνυμο" + +#, fuzzy +#~ msgctxt "[accounts]accounts_nickname" +#~ msgid "Nickname" +#~ msgstr "Ψευδώνυμο" + #~ msgid "Your web browser is too old to use with Movim." #~ msgstr "Ο περιηγητης σας είναι αρκετά παλιός για να χρησιμοποιηθεί με Movim" diff --git a/sources/locales/eo.po b/sources/locales/eo.po index 99bc72a..b13e8b2 100644 --- a/sources/locales/eo.po +++ b/sources/locales/eo.po @@ -28,8 +28,6 @@ #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Chats/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/ConfigData/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Config/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Contact/locales.ini @@ -38,26 +36,18 @@ #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Groups/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Header/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Hello/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Help/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Init/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Location/locales.ini +#. extracted from ../app/widgets/Login/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/LoginAnonymous/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Login/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Menu/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/NodeAffiliations/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/NodeSubscriptions/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Notifs/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Post/locales.ini @@ -66,8 +56,6 @@ #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Publish/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/PubsubSubscriptionConfig/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Rooms/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Roster/locales.ini @@ -76,6 +64,8 @@ #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Statistics/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Stickers/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Subscribe/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Syndication/locales.ini @@ -84,16 +74,12 @@ #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Vcard4/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/VisioExt/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Visio/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../locales/locales.ini msgid "" msgstr "" "Project-Id-Version: Movim\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-12-29 13:42+0200\n" +"POT-Creation-Date: 2016-03-08 08:30+0200\n" "PO-Revision-Date: 2013-05-11 17:33+0000\n" "Last-Translator: Baptiste Darthenay \n" "Language-Team: LANGUAGE \n" @@ -532,6 +518,7 @@ msgid "Name" msgstr "Nomo" #: [chatroom]nickname [general]nickname [chatrooms]nickname +#: [accounts]accounts_nickname msgid "Nickname" msgstr "Kromnomo" @@ -665,24 +652,8 @@ msgstr "" msgid "Load more contacts" msgstr "" -#: [title]data -msgid "Data" -msgstr "" - -#: [title]cache -msgid "Cache" -msgstr "" - -#: [title]contacts [menu]contacts [page]contacts -msgid "Contacts" -msgstr "" - -#: [title]posts [page]posts -msgid "Posts" -msgstr "" - -#: [title]messages -msgid "Messages" +#: [button]new +msgid "New conversation" msgstr "" #: [config]general @@ -731,11 +702,11 @@ msgstr "" msgid "Custom CSS URL for your blog" msgstr "" -#: [general]legend [general]general_title +#: [general]legend msgid "General Informations" msgstr "Generalaj informoj" -#: [general]name [public_groups]name [chatrooms]name +#: [general]name [chatrooms]name msgid "Name" msgstr "Nomo" @@ -771,7 +742,7 @@ msgstr "" msgid "Is Listening" msgstr "" -#: [position]legend [position]position_title +#: [position]legend msgid "Geographic Position" msgstr "" @@ -1032,10 +1003,6 @@ msgstr "" msgid "This server doesn't exists" msgstr "" -#: [roster]search -msgid "Search in your contacts" -msgstr "" - #: [hello]chat msgid "Go on the Chat page" msgstr "" @@ -1164,26 +1131,6 @@ msgstr "" msgid "Microblog node created" msgstr "" -#: [location]title -msgid "Location" -msgstr "" - -#: [location]wrong_postition -msgid "Wrong position" -msgstr "" - -#: [location]updated -msgid "Location updated" -msgstr "" - -#: [location]update -msgid "Update my position" -msgstr "" - -#: [login_anonymous]bad_username -msgid "Bad nickname (between 4 and 40 characters)" -msgstr "" - #: [error]username msgid "Wrong username" msgstr "" @@ -1241,7 +1188,7 @@ msgstr "" msgid "Oops!" msgstr "" -#: [error]default [visio]unknown_error +#: [error]default msgid "Unknown error" msgstr "" @@ -1302,6 +1249,10 @@ msgstr "" msgid "Population" msgstr "" +#: [login_anonymous]bad_username +msgid "Bad nickname (between 4 and 40 characters)" +msgstr "" + #: [menu]empty_title msgid "No news yet..." msgstr "" @@ -1322,32 +1273,16 @@ msgstr "" msgid "All" msgstr "" -#: [affiliations]title -msgid "Manage your members" +#: [menu]mine +msgid "My publications" msgstr "" -#: [affiliations]get -msgid "Get the members" +#: [menu]contacts [page]contacts +msgid "Contacts" msgstr "" -#: [affiliations]saved -msgid "Affiliations saved" -msgstr "" - -#: [subscriptions]title -msgid "Manage your subscriptions" -msgstr "" - -#: [subscriptions]info -msgid "Manage the subscriptions" -msgstr "" - -#: [subscriptions]get -msgid "Get the subscriptions" -msgstr "" - -#: [subscriptions]saved -msgid "Subscriptions saved" +#: [menu]add_post +msgid "Add a post" msgstr "" #: [notifs]title @@ -1398,6 +1333,10 @@ msgstr "" msgid "See %s profile" msgstr "" +#: [post]blog_last +msgid "Public posts from users" +msgstr "" + #: [post]public msgid "Publish this post publicly?" msgstr "" @@ -1410,6 +1349,10 @@ msgstr "" msgid "This post is now private" msgstr "" +#: [post]public_url +msgid "Public URL of this post" +msgstr "" + #: [post]delete_title [post]delete msgid "Delete this post" msgstr "" @@ -1526,14 +1469,6 @@ msgstr "" msgid "Add some text" msgstr "" -#: [public_groups]shared -msgid "Shared" -msgstr "" - -#: [public_groups]added -msgid "%s has been added to your public groups" -msgstr "" - #: [rooms]add msgid "Add a chatroom" msgstr "" @@ -1651,7 +1586,11 @@ msgid "Contact deleted" msgstr "" #: [roster]search -msgid "Search" +msgid "Search in your contacts" +msgstr "" + +#: [roster]search_pod +msgid "Search a contact" msgstr "" #: [share]error @@ -1682,6 +1621,10 @@ msgstr "" msgid "Monthly Subscriptions Cumulated" msgstr "" +#: [sticker]sent +msgid "A sticker has been sent using Movim" +msgstr "" + #: [subscribe]info msgid "Movim is a decentralized social network, before creating a new account you need to choose a server to register." msgstr "" @@ -1730,12 +1673,6 @@ msgstr "" msgid "Your profile is now restricted" msgstr "" -#: [general]nickname -#, fuzzy -msgctxt "[general]nickname" -msgid "Nickname" -msgstr "Kromnomo" - #: [accounts]accounts_title msgid "Accounts" msgstr "" @@ -1752,12 +1689,6 @@ msgstr "" msgid "Yahoo Account" msgstr "" -#: [accounts]accounts_nickname -#, fuzzy -msgctxt "[accounts]accounts_nickname" -msgid "Nickname" -msgstr "Kromnomo" - #: [privacy]privacy_title msgid "Privacy Level" msgstr "" @@ -1767,7 +1698,7 @@ msgid "Is this profile public ?" msgstr "" #: [privacy]privacy_info -msgid "Please pay attention ! By making your profile public, all the information listed above will be available for all the Movim users and on the whole Internet." +msgid "Please pay attention ! By making your profile public, all the information listed bellow will be available for all the Movim users and on the whole Internet." msgstr "" #: [save]submit [button]submit @@ -1778,34 +1709,6 @@ msgstr "Sendi" msgid "Reset" msgstr "Nuligi" -#: [visio]hung_up -msgid "Hung up" -msgstr "" - -#: [visio]busy -msgid "Your contact is busy" -msgstr "" - -#: [visio]declined -msgid "Declined" -msgstr "" - -#: [visio]calling -msgid "Is calling you" -msgstr "" - -#: [visio]call -msgid "Call" -msgstr "" - -#: [visio]hang_up -msgid "Hang up" -msgstr "" - -#: [visio]connection -msgid "Connection" -msgstr "" - #: [global]no_js msgid "You don't have javascript enabled. Good luck with that." msgstr "" @@ -1874,6 +1777,10 @@ msgstr "" msgid "Feed" msgstr "Fluo" +#: [page]posts +msgid "Posts" +msgstr "" + #: [page]gallery msgid "Gallery" msgstr "" @@ -2756,6 +2663,16 @@ msgstr "" msgid "Type here" msgstr "" +#, fuzzy +#~ msgctxt "[general]nickname" +#~ msgid "Nickname" +#~ msgstr "Kromnomo" + +#, fuzzy +#~ msgctxt "[accounts]accounts_nickname" +#~ msgid "Nickname" +#~ msgstr "Kromnomo" + #~ msgid "Movim's folder must be writable." #~ msgstr "La Movima dosierujo devus esti skribebla." diff --git a/sources/locales/es.po b/sources/locales/es.po index d3271a2..7499046 100644 --- a/sources/locales/es.po +++ b/sources/locales/es.po @@ -29,8 +29,6 @@ #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Chats/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/ConfigData/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Config/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Contact/locales.ini @@ -39,26 +37,18 @@ #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Groups/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Header/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Hello/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Help/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Init/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Location/locales.ini +#. extracted from ../app/widgets/Login/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/LoginAnonymous/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Login/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Menu/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/NodeAffiliations/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/NodeSubscriptions/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Notifs/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Post/locales.ini @@ -67,8 +57,6 @@ #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Publish/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/PubsubSubscriptionConfig/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Rooms/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Roster/locales.ini @@ -77,6 +65,8 @@ #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Statistics/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Stickers/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Subscribe/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Syndication/locales.ini @@ -85,16 +75,12 @@ #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Vcard4/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/VisioExt/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Visio/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../locales/locales.ini msgid "" msgstr "" "Project-Id-Version: movim\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-12-29 13:42+0200\n" +"POT-Creation-Date: 2016-03-08 08:30+0200\n" "PO-Revision-Date: 2015-12-29 12:43+0000\n" "Last-Translator: Jaussoin Timothée \n" "Language-Team: Spanish (http://www.transifex.com/movim/movim/language/es/)\n" @@ -526,6 +512,7 @@ msgid "Name" msgstr "Nombre" #: [chatroom]nickname [general]nickname [chatrooms]nickname +#: [accounts]accounts_nickname msgid "Nickname" msgstr "Apodo" @@ -658,25 +645,9 @@ msgstr "Hablar con un contacto" msgid "Load more contacts" msgstr "Cargar más contactos" -#: [title]data -msgid "Data" -msgstr "Datos" - -#: [title]cache -msgid "Cache" -msgstr "Cache" - -#: [title]contacts [menu]contacts [page]contacts -msgid "Contacts" -msgstr "Contactos" - -#: [title]posts [page]posts -msgid "Posts" -msgstr "Publicaciones" - -#: [title]messages -msgid "Messages" -msgstr "Mensajes" +#: [button]new +msgid "New conversation" +msgstr "" #: [config]general msgid "General" @@ -722,11 +693,11 @@ msgstr "Utilice notificaciones en el escritorio" msgid "Custom CSS URL for your blog" msgstr "" -#: [general]legend [general]general_title +#: [general]legend msgid "General Informations" msgstr "Informaciones generales" -#: [general]name [public_groups]name [chatrooms]name +#: [general]name [chatrooms]name msgid "Name" msgstr "Nombre" @@ -762,7 +733,7 @@ msgstr "Otras cuentas" msgid "Is Listening" msgstr "Está escuchando" -#: [position]legend [position]position_title +#: [position]legend msgid "Geographic Position" msgstr "Posición geográfica" @@ -1022,10 +993,6 @@ msgstr "%s publicaciones" msgid "This server doesn't exists" msgstr "Este servidor no existe" -#: [roster]search -msgid "Search in your contacts" -msgstr "Buscar en tus contactos" - #: [hello]chat msgid "Go on the Chat page" msgstr "Entrar a la página de conversación" @@ -1154,26 +1121,6 @@ msgstr "Nodo de suscripciones creado" msgid "Microblog node created" msgstr "Nodo de microblog creado" -#: [location]title -msgid "Location" -msgstr "Ubicación" - -#: [location]wrong_postition -msgid "Wrong position" -msgstr "Posición errónea" - -#: [location]updated -msgid "Location updated" -msgstr "Ubicación actualizada" - -#: [location]update -msgid "Update my position" -msgstr "Actualizar mi posición" - -#: [login_anonymous]bad_username -msgid "Bad nickname (between 4 and 40 characters)" -msgstr "Mal apodo (entre 4 y 40 carácteres)" - #: [error]username msgid "Wrong username" msgstr "Nombre de usuario incorrecto" @@ -1231,7 +1178,7 @@ msgstr "Sesión imposible" msgid "Oops!" msgstr "¡Ups!" -#: [error]default [visio]unknown_error +#: [error]default msgid "Unknown error" msgstr "Error desconocido" @@ -1292,6 +1239,10 @@ msgstr "Conectado" msgid "Population" msgstr "Población" +#: [login_anonymous]bad_username +msgid "Bad nickname (between 4 and 40 characters)" +msgstr "Mal apodo (entre 4 y 40 carácteres)" + #: [menu]empty_title msgid "No news yet..." msgstr "Sin noticias aún..." @@ -1312,33 +1263,19 @@ msgstr "Esta publicación es pública" msgid "All" msgstr "Todos" -#: [affiliations]title -msgid "Manage your members" -msgstr "Gestionar miembros" +#: [menu]mine +#, fuzzy +msgid "My publications" +msgstr "Mis suscripciones" -#: [affiliations]get -msgid "Get the members" -msgstr "Obtener miembros" +#: [menu]contacts [page]contacts +msgid "Contacts" +msgstr "Contactos" -#: [affiliations]saved -msgid "Affiliations saved" -msgstr "Afiliaciones guardadas" - -#: [subscriptions]title -msgid "Manage your subscriptions" -msgstr "Administrar tus subscripciones" - -#: [subscriptions]info -msgid "Manage the subscriptions" -msgstr "Administar las subscripciones" - -#: [subscriptions]get -msgid "Get the subscriptions" -msgstr "Recibe suscripciones" - -#: [subscriptions]saved -msgid "Subscriptions saved" -msgstr "Suscripciones guardadas" +#: [menu]add_post +#, fuzzy +msgid "Add a post" +msgstr "Añadir un comentario" #: [notifs]title msgid "Pending Invitations" @@ -1388,6 +1325,11 @@ msgstr "Esta es una re-publicación de %s" msgid "See %s profile" msgstr "Ver el perfil de %s" +#: [post]blog_last +#, fuzzy +msgid "Public posts from users" +msgstr "Grupos públicos" + #: [post]public msgid "Publish this post publicly?" msgstr "" @@ -1400,6 +1342,10 @@ msgstr "" msgid "This post is now private" msgstr "" +#: [post]public_url +msgid "Public URL of this post" +msgstr "" + #: [post]delete_title [post]delete msgid "Delete this post" msgstr "Eliminar esta publicación" @@ -1516,14 +1462,6 @@ msgstr "" msgid "Add some text" msgstr "" -#: [public_groups]shared -msgid "Shared" -msgstr "Compartido" - -#: [public_groups]added -msgid "%s has been added to your public groups" -msgstr "%s ha sido añadido a tus grupos públicos" - #: [rooms]add msgid "Add a chatroom" msgstr "Añadir una sala de conversación" @@ -1641,8 +1579,13 @@ msgid "Contact deleted" msgstr "Contacto eliminado" #: [roster]search -msgid "Search" -msgstr "Buscar" +msgid "Search in your contacts" +msgstr "Buscar en tus contactos" + +#: [roster]search_pod +#, fuzzy +msgid "Search a contact" +msgstr "Buscar en tus contactos" #: [share]error msgid "This is not a valid url" @@ -1672,6 +1615,10 @@ msgstr "Suscripción mensual" msgid "Monthly Subscriptions Cumulated" msgstr "Suscripciones mensuales acumuladas" +#: [sticker]sent +msgid "A sticker has been sent using Movim" +msgstr "" + #: [subscribe]info msgid "Movim is a decentralized social network, before creating a new account you need to choose a server to register." msgstr "Movim es una red social descentralizada, antes de crear una cuenta nueva necesita elegir un servidor para registrarse." @@ -1720,11 +1667,6 @@ msgstr "Tu perfil es ahora público" msgid "Your profile is now restricted" msgstr "Tu perfil está ahora restringido" -#: [general]nickname -msgctxt "[general]nickname" -msgid "Nickname" -msgstr "Apodo" - #: [accounts]accounts_title msgid "Accounts" msgstr "Cuentas" @@ -1741,11 +1683,6 @@ msgstr "Skype" msgid "Yahoo Account" msgstr "Cuenta de Yahoo" -#: [accounts]accounts_nickname -msgctxt "[accounts]accounts_nickname" -msgid "Nickname" -msgstr "Apodo" - #: [privacy]privacy_title msgid "Privacy Level" msgstr "Nivel de privacidad" @@ -1755,7 +1692,8 @@ msgid "Is this profile public ?" msgstr "¿ Es público este perfil ?" #: [privacy]privacy_info -msgid "Please pay attention ! By making your profile public, all the information listed above will be available for all the Movim users and on the whole Internet." +#, fuzzy +msgid "Please pay attention ! By making your profile public, all the information listed bellow will be available for all the Movim users and on the whole Internet." msgstr "¡ Por favor preste atención ! Haciendo público su perfil, toda la información listada encima estará disponible para todos los usuarios de Movim y para todo internet." #: [save]submit [button]submit @@ -1766,34 +1704,6 @@ msgstr "Enviar" msgid "Reset" msgstr "Reiniciar" -#: [visio]hung_up -msgid "Hung up" -msgstr "Colgado" - -#: [visio]busy -msgid "Your contact is busy" -msgstr "Tu contacto está ocupado" - -#: [visio]declined -msgid "Declined" -msgstr "Rechazado" - -#: [visio]calling -msgid "Is calling you" -msgstr "Te está llamando" - -#: [visio]call -msgid "Call" -msgstr "Llamar" - -#: [visio]hang_up -msgid "Hang up" -msgstr "Colgar" - -#: [visio]connection -msgid "Connection" -msgstr "Conexión" - #: [global]no_js msgid "You don't have javascript enabled. Good luck with that." msgstr "No tienes el javascript activado. Buena suerte." @@ -1862,6 +1772,10 @@ msgstr "Inicio de sesión" msgid "Feed" msgstr "Canal" +#: [page]posts +msgid "Posts" +msgstr "Publicaciones" + #: [page]gallery msgid "Gallery" msgstr "Galería" @@ -2739,3 +2653,83 @@ msgstr "La API no se puede alcanzar, inténtalo de nuevo más tarde" #: [field]type_here msgid "Type here" msgstr "Escribe aquí" + +#~ msgid "Data" +#~ msgstr "Datos" + +#~ msgid "Cache" +#~ msgstr "Cache" + +#~ msgid "Messages" +#~ msgstr "Mensajes" + +#~ msgid "Location" +#~ msgstr "Ubicación" + +#~ msgid "Wrong position" +#~ msgstr "Posición errónea" + +#~ msgid "Location updated" +#~ msgstr "Ubicación actualizada" + +#~ msgid "Update my position" +#~ msgstr "Actualizar mi posición" + +#~ msgid "Manage your members" +#~ msgstr "Gestionar miembros" + +#~ msgid "Get the members" +#~ msgstr "Obtener miembros" + +#~ msgid "Affiliations saved" +#~ msgstr "Afiliaciones guardadas" + +#~ msgid "Manage your subscriptions" +#~ msgstr "Administrar tus subscripciones" + +#~ msgid "Manage the subscriptions" +#~ msgstr "Administar las subscripciones" + +#~ msgid "Get the subscriptions" +#~ msgstr "Recibe suscripciones" + +#~ msgid "Subscriptions saved" +#~ msgstr "Suscripciones guardadas" + +#~ msgid "Shared" +#~ msgstr "Compartido" + +#~ msgid "%s has been added to your public groups" +#~ msgstr "%s ha sido añadido a tus grupos públicos" + +#~ msgid "Search" +#~ msgstr "Buscar" + +#~ msgctxt "[general]nickname" +#~ msgid "Nickname" +#~ msgstr "Apodo" + +#~ msgctxt "[accounts]accounts_nickname" +#~ msgid "Nickname" +#~ msgstr "Apodo" + +#~ msgid "Hung up" +#~ msgstr "Colgado" + +#~ msgid "Your contact is busy" +#~ msgstr "Tu contacto está ocupado" + +#~ msgid "Declined" +#~ msgstr "Rechazado" + +#~ msgid "Is calling you" +#~ msgstr "Te está llamando" + +#~ msgid "Call" +#~ msgstr "Llamar" + +#~ msgid "Hang up" +#~ msgstr "Colgar" + +#~ msgid "Connection" +#~ msgstr "Conexión" diff --git a/sources/locales/fa.po b/sources/locales/fa.po index 0efe2d8..4b9884b 100644 --- a/sources/locales/fa.po +++ b/sources/locales/fa.po @@ -30,8 +30,6 @@ #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Chats/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/ConfigData/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Config/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Contact/locales.ini @@ -40,26 +38,18 @@ #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Groups/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Header/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Hello/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Help/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Init/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Location/locales.ini +#. extracted from ../app/widgets/Login/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/LoginAnonymous/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Login/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Menu/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/NodeAffiliations/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/NodeSubscriptions/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Notifs/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Post/locales.ini @@ -68,8 +58,6 @@ #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Publish/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/PubsubSubscriptionConfig/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Rooms/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Roster/locales.ini @@ -78,6 +66,8 @@ #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Statistics/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Stickers/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Subscribe/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Syndication/locales.ini @@ -86,16 +76,12 @@ #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Vcard4/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/VisioExt/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Visio/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../locales/locales.ini msgid "" msgstr "" "Project-Id-Version: movim\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-12-29 13:42+0200\n" +"POT-Creation-Date: 2016-03-08 08:30+0200\n" "PO-Revision-Date: 2014-06-01 23:08+0000\n" "Last-Translator: reza \n" "Language-Team: Persian \n" @@ -527,6 +513,7 @@ msgid "Name" msgstr "" #: [chatroom]nickname [general]nickname [chatrooms]nickname +#: [accounts]accounts_nickname msgid "Nickname" msgstr "" @@ -659,24 +646,8 @@ msgstr "" msgid "Load more contacts" msgstr "" -#: [title]data -msgid "Data" -msgstr "" - -#: [title]cache -msgid "Cache" -msgstr "" - -#: [title]contacts [menu]contacts [page]contacts -msgid "Contacts" -msgstr "" - -#: [title]posts [page]posts -msgid "Posts" -msgstr "" - -#: [title]messages -msgid "Messages" +#: [button]new +msgid "New conversation" msgstr "" #: [config]general @@ -723,11 +694,11 @@ msgstr "" msgid "Custom CSS URL for your blog" msgstr "" -#: [general]legend [general]general_title +#: [general]legend msgid "General Informations" msgstr "" -#: [general]name [public_groups]name [chatrooms]name +#: [general]name [chatrooms]name msgid "Name" msgstr "" @@ -763,7 +734,7 @@ msgstr "" msgid "Is Listening" msgstr "" -#: [position]legend [position]position_title +#: [position]legend msgid "Geographic Position" msgstr "" @@ -1023,10 +994,6 @@ msgstr "" msgid "This server doesn't exists" msgstr "" -#: [roster]search -msgid "Search in your contacts" -msgstr "" - #: [hello]chat msgid "Go on the Chat page" msgstr "" @@ -1155,26 +1122,6 @@ msgstr "" msgid "Microblog node created" msgstr "" -#: [location]title -msgid "Location" -msgstr "" - -#: [location]wrong_postition -msgid "Wrong position" -msgstr "" - -#: [location]updated -msgid "Location updated" -msgstr "" - -#: [location]update -msgid "Update my position" -msgstr "" - -#: [login_anonymous]bad_username -msgid "Bad nickname (between 4 and 40 characters)" -msgstr "" - #: [error]username msgid "Wrong username" msgstr "" @@ -1232,7 +1179,7 @@ msgstr "" msgid "Oops!" msgstr "" -#: [error]default [visio]unknown_error +#: [error]default msgid "Unknown error" msgstr "" @@ -1293,6 +1240,10 @@ msgstr "" msgid "Population" msgstr "" +#: [login_anonymous]bad_username +msgid "Bad nickname (between 4 and 40 characters)" +msgstr "" + #: [menu]empty_title msgid "No news yet..." msgstr "" @@ -1313,32 +1264,16 @@ msgstr "" msgid "All" msgstr "" -#: [affiliations]title -msgid "Manage your members" +#: [menu]mine +msgid "My publications" msgstr "" -#: [affiliations]get -msgid "Get the members" +#: [menu]contacts [page]contacts +msgid "Contacts" msgstr "" -#: [affiliations]saved -msgid "Affiliations saved" -msgstr "" - -#: [subscriptions]title -msgid "Manage your subscriptions" -msgstr "" - -#: [subscriptions]info -msgid "Manage the subscriptions" -msgstr "" - -#: [subscriptions]get -msgid "Get the subscriptions" -msgstr "" - -#: [subscriptions]saved -msgid "Subscriptions saved" +#: [menu]add_post +msgid "Add a post" msgstr "" #: [notifs]title @@ -1389,6 +1324,10 @@ msgstr "" msgid "See %s profile" msgstr "" +#: [post]blog_last +msgid "Public posts from users" +msgstr "" + #: [post]public msgid "Publish this post publicly?" msgstr "" @@ -1401,6 +1340,10 @@ msgstr "" msgid "This post is now private" msgstr "" +#: [post]public_url +msgid "Public URL of this post" +msgstr "" + #: [post]delete_title [post]delete msgid "Delete this post" msgstr "" @@ -1517,14 +1460,6 @@ msgstr "" msgid "Add some text" msgstr "" -#: [public_groups]shared -msgid "Shared" -msgstr "" - -#: [public_groups]added -msgid "%s has been added to your public groups" -msgstr "" - #: [rooms]add msgid "Add a chatroom" msgstr "" @@ -1642,7 +1577,11 @@ msgid "Contact deleted" msgstr "" #: [roster]search -msgid "Search" +msgid "Search in your contacts" +msgstr "" + +#: [roster]search_pod +msgid "Search a contact" msgstr "" #: [share]error @@ -1673,6 +1612,10 @@ msgstr "" msgid "Monthly Subscriptions Cumulated" msgstr "" +#: [sticker]sent +msgid "A sticker has been sent using Movim" +msgstr "" + #: [subscribe]info msgid "Movim is a decentralized social network, before creating a new account you need to choose a server to register." msgstr "" @@ -1721,11 +1664,6 @@ msgstr "" msgid "Your profile is now restricted" msgstr "" -#: [general]nickname -msgctxt "[general]nickname" -msgid "Nickname" -msgstr "" - #: [accounts]accounts_title msgid "Accounts" msgstr "" @@ -1742,11 +1680,6 @@ msgstr "" msgid "Yahoo Account" msgstr "" -#: [accounts]accounts_nickname -msgctxt "[accounts]accounts_nickname" -msgid "Nickname" -msgstr "" - #: [privacy]privacy_title msgid "Privacy Level" msgstr "" @@ -1756,7 +1689,7 @@ msgid "Is this profile public ?" msgstr "" #: [privacy]privacy_info -msgid "Please pay attention ! By making your profile public, all the information listed above will be available for all the Movim users and on the whole Internet." +msgid "Please pay attention ! By making your profile public, all the information listed bellow will be available for all the Movim users and on the whole Internet." msgstr "" #: [save]submit [button]submit @@ -1767,34 +1700,6 @@ msgstr "" msgid "Reset" msgstr "" -#: [visio]hung_up -msgid "Hung up" -msgstr "" - -#: [visio]busy -msgid "Your contact is busy" -msgstr "" - -#: [visio]declined -msgid "Declined" -msgstr "" - -#: [visio]calling -msgid "Is calling you" -msgstr "" - -#: [visio]call -msgid "Call" -msgstr "" - -#: [visio]hang_up -msgid "Hang up" -msgstr "" - -#: [visio]connection -msgid "Connection" -msgstr "" - #: [global]no_js msgid "You don't have javascript enabled. Good luck with that." msgstr "" @@ -1863,6 +1768,10 @@ msgstr "" msgid "Feed" msgstr "" +#: [page]posts +msgid "Posts" +msgstr "" + #: [page]gallery msgid "Gallery" msgstr "" diff --git a/sources/locales/fi.po b/sources/locales/fi.po index 750d30c..ec6c077 100644 --- a/sources/locales/fi.po +++ b/sources/locales/fi.po @@ -28,8 +28,6 @@ #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Chats/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/ConfigData/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Config/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Contact/locales.ini @@ -38,26 +36,18 @@ #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Groups/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Header/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Hello/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Help/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Init/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Location/locales.ini +#. extracted from ../app/widgets/Login/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/LoginAnonymous/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Login/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Menu/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/NodeAffiliations/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/NodeSubscriptions/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Notifs/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Post/locales.ini @@ -66,8 +56,6 @@ #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Publish/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/PubsubSubscriptionConfig/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Rooms/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Roster/locales.ini @@ -76,6 +64,8 @@ #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Statistics/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Stickers/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Subscribe/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Syndication/locales.ini @@ -84,16 +74,12 @@ #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Vcard4/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/VisioExt/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Visio/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../locales/locales.ini msgid "" msgstr "" "Project-Id-Version: Movim\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-12-29 13:42+0200\n" +"POT-Creation-Date: 2016-03-08 08:30+0200\n" "PO-Revision-Date: 2012-07-19 13:34+0000\n" "Last-Translator: Sampo Harjula \n" "Language-Team: LANGUAGE \n" @@ -533,6 +519,7 @@ msgid "Name" msgstr "Nimi" #: [chatroom]nickname [general]nickname [chatrooms]nickname +#: [accounts]accounts_nickname msgid "Nickname" msgstr "Lempinimi" @@ -666,24 +653,8 @@ msgstr "" msgid "Load more contacts" msgstr "" -#: [title]data -msgid "Data" -msgstr "" - -#: [title]cache -msgid "Cache" -msgstr "" - -#: [title]contacts [menu]contacts [page]contacts -msgid "Contacts" -msgstr "" - -#: [title]posts [page]posts -msgid "Posts" -msgstr "" - -#: [title]messages -msgid "Messages" +#: [button]new +msgid "New conversation" msgstr "" #: [config]general @@ -732,11 +703,11 @@ msgstr "" msgid "Custom CSS URL for your blog" msgstr "" -#: [general]legend [general]general_title +#: [general]legend msgid "General Informations" msgstr "Perustiedot" -#: [general]name [public_groups]name [chatrooms]name +#: [general]name [chatrooms]name msgid "Name" msgstr "Nimi" @@ -772,7 +743,7 @@ msgstr "" msgid "Is Listening" msgstr "" -#: [position]legend [position]position_title +#: [position]legend msgid "Geographic Position" msgstr "" @@ -1034,10 +1005,6 @@ msgstr "" msgid "This server doesn't exists" msgstr "Tämä palvelin ylläpitää %s käyttäjätiliä" -#: [roster]search -msgid "Search in your contacts" -msgstr "" - #: [hello]chat msgid "Go on the Chat page" msgstr "" @@ -1166,26 +1133,6 @@ msgstr "" msgid "Microblog node created" msgstr "" -#: [location]title -msgid "Location" -msgstr "" - -#: [location]wrong_postition -msgid "Wrong position" -msgstr "" - -#: [location]updated -msgid "Location updated" -msgstr "" - -#: [location]update -msgid "Update my position" -msgstr "" - -#: [login_anonymous]bad_username -msgid "Bad nickname (between 4 and 40 characters)" -msgstr "" - #: [error]username msgid "Wrong username" msgstr "Väärä käyttäjänimi" @@ -1243,7 +1190,7 @@ msgstr "" msgid "Oops!" msgstr "" -#: [error]default [visio]unknown_error +#: [error]default msgid "Unknown error" msgstr "Tuntematon virhe" @@ -1304,6 +1251,10 @@ msgstr "" msgid "Population" msgstr "" +#: [login_anonymous]bad_username +msgid "Bad nickname (between 4 and 40 characters)" +msgstr "" + #: [menu]empty_title msgid "No news yet..." msgstr "" @@ -1324,32 +1275,16 @@ msgstr "" msgid "All" msgstr "Kaikki" -#: [affiliations]title -msgid "Manage your members" +#: [menu]mine +msgid "My publications" msgstr "" -#: [affiliations]get -msgid "Get the members" +#: [menu]contacts [page]contacts +msgid "Contacts" msgstr "" -#: [affiliations]saved -msgid "Affiliations saved" -msgstr "" - -#: [subscriptions]title -msgid "Manage your subscriptions" -msgstr "" - -#: [subscriptions]info -msgid "Manage the subscriptions" -msgstr "" - -#: [subscriptions]get -msgid "Get the subscriptions" -msgstr "" - -#: [subscriptions]saved -msgid "Subscriptions saved" +#: [menu]add_post +msgid "Add a post" msgstr "" #: [notifs]title @@ -1400,6 +1335,10 @@ msgstr "" msgid "See %s profile" msgstr "" +#: [post]blog_last +msgid "Public posts from users" +msgstr "" + #: [post]public msgid "Publish this post publicly?" msgstr "" @@ -1412,6 +1351,10 @@ msgstr "" msgid "This post is now private" msgstr "" +#: [post]public_url +msgid "Public URL of this post" +msgstr "" + #: [post]delete_title [post]delete msgid "Delete this post" msgstr "" @@ -1528,14 +1471,6 @@ msgstr "" msgid "Add some text" msgstr "" -#: [public_groups]shared -msgid "Shared" -msgstr "" - -#: [public_groups]added -msgid "%s has been added to your public groups" -msgstr "" - #: [rooms]add msgid "Add a chatroom" msgstr "" @@ -1654,7 +1589,11 @@ msgid "Contact deleted" msgstr "" #: [roster]search -msgid "Search" +msgid "Search in your contacts" +msgstr "" + +#: [roster]search_pod +msgid "Search a contact" msgstr "" #: [share]error @@ -1685,6 +1624,10 @@ msgstr "" msgid "Monthly Subscriptions Cumulated" msgstr "" +#: [sticker]sent +msgid "A sticker has been sent using Movim" +msgstr "" + #: [subscribe]info msgid "Movim is a decentralized social network, before creating a new account you need to choose a server to register." msgstr "" @@ -1733,12 +1676,6 @@ msgstr "" msgid "Your profile is now restricted" msgstr "" -#: [general]nickname -#, fuzzy -msgctxt "[general]nickname" -msgid "Nickname" -msgstr "Lempinimi" - #: [accounts]accounts_title msgid "Accounts" msgstr "" @@ -1755,12 +1692,6 @@ msgstr "" msgid "Yahoo Account" msgstr "" -#: [accounts]accounts_nickname -#, fuzzy -msgctxt "[accounts]accounts_nickname" -msgid "Nickname" -msgstr "Lempinimi" - #: [privacy]privacy_title msgid "Privacy Level" msgstr "" @@ -1770,7 +1701,7 @@ msgid "Is this profile public ?" msgstr "" #: [privacy]privacy_info -msgid "Please pay attention ! By making your profile public, all the information listed above will be available for all the Movim users and on the whole Internet." +msgid "Please pay attention ! By making your profile public, all the information listed bellow will be available for all the Movim users and on the whole Internet." msgstr "" #: [save]submit [button]submit @@ -1781,34 +1712,6 @@ msgstr "Lähetä" msgid "Reset" msgstr "Nollaa" -#: [visio]hung_up -msgid "Hung up" -msgstr "" - -#: [visio]busy -msgid "Your contact is busy" -msgstr "" - -#: [visio]declined -msgid "Declined" -msgstr "" - -#: [visio]calling -msgid "Is calling you" -msgstr "" - -#: [visio]call -msgid "Call" -msgstr "" - -#: [visio]hang_up -msgid "Hang up" -msgstr "" - -#: [visio]connection -msgid "Connection" -msgstr "" - #: [global]no_js msgid "You don't have javascript enabled. Good luck with that." msgstr "" @@ -1877,6 +1780,10 @@ msgstr "" msgid "Feed" msgstr "Syöte" +#: [page]posts +msgid "Posts" +msgstr "" + #: [page]gallery msgid "Gallery" msgstr "" @@ -2759,6 +2666,16 @@ msgstr "" msgid "Type here" msgstr "" +#, fuzzy +#~ msgctxt "[general]nickname" +#~ msgid "Nickname" +#~ msgstr "Lempinimi" + +#, fuzzy +#~ msgctxt "[accounts]accounts_nickname" +#~ msgid "Nickname" +#~ msgstr "Lempinimi" + #~ msgid "Your web browser is too old to use with Movim." #~ msgstr "Selaimesi on liian vanha Movimille, lataa uudempi" diff --git a/sources/locales/fr.po b/sources/locales/fr.po index f4444be..c3f8b57 100644 --- a/sources/locales/fr.po +++ b/sources/locales/fr.po @@ -33,8 +33,6 @@ #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Chats/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/ConfigData/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Config/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Contact/locales.ini @@ -43,26 +41,18 @@ #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Groups/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Header/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Hello/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Help/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Init/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Location/locales.ini +#. extracted from ../app/widgets/Login/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/LoginAnonymous/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Login/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Menu/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/NodeAffiliations/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/NodeSubscriptions/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Notifs/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Post/locales.ini @@ -71,8 +61,6 @@ #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Publish/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/PubsubSubscriptionConfig/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Rooms/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Roster/locales.ini @@ -81,6 +69,8 @@ #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Statistics/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Stickers/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Subscribe/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Syndication/locales.ini @@ -89,16 +79,12 @@ #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Vcard4/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/VisioExt/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Visio/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../locales/locales.ini msgid "" msgstr "" "Project-Id-Version: movim\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-12-29 13:42+0200\n" +"POT-Creation-Date: 2016-03-08 08:30+0200\n" "PO-Revision-Date: 2015-12-29 12:51+0000\n" "Last-Translator: Jaussoin Timothée \n" "Language-Team: French (France) (http://www.transifex.com/movim/movim/language/fr_FR/)\n" @@ -530,6 +516,7 @@ msgid "Name" msgstr "Nom" #: [chatroom]nickname [general]nickname [chatrooms]nickname +#: [accounts]accounts_nickname msgid "Nickname" msgstr "Pseudonyme" @@ -662,25 +649,9 @@ msgstr "Discuter avec un contact" msgid "Load more contacts" msgstr "Afficher plus de contacts" -#: [title]data -msgid "Data" -msgstr "Données" - -#: [title]cache -msgid "Cache" -msgstr "Cache" - -#: [title]contacts [menu]contacts [page]contacts -msgid "Contacts" -msgstr "Contacts" - -#: [title]posts [page]posts -msgid "Posts" -msgstr "Billets" - -#: [title]messages -msgid "Messages" -msgstr "Messages" +#: [button]new +msgid "New conversation" +msgstr "" #: [config]general msgid "General" @@ -726,11 +697,11 @@ msgstr "Utiliser les notifications bureau" msgid "Custom CSS URL for your blog" msgstr "URL CSS personnalisée pour votre blog" -#: [general]legend [general]general_title +#: [general]legend msgid "General Informations" msgstr "Informations générales" -#: [general]name [public_groups]name [chatrooms]name +#: [general]name [chatrooms]name msgid "Name" msgstr "Nom" @@ -766,7 +737,7 @@ msgstr "Autres comptes" msgid "Is Listening" msgstr "En écoute" -#: [position]legend [position]position_title +#: [position]legend msgid "Geographic Position" msgstr "Position géographique" @@ -1026,10 +997,6 @@ msgstr "%s billets" msgid "This server doesn't exists" msgstr "Ce serveur n'existe pas" -#: [roster]search -msgid "Search in your contacts" -msgstr "Chercher dans vos contacts " - #: [hello]chat msgid "Go on the Chat page" msgstr "Aller sur la page Discussions" @@ -1158,26 +1125,6 @@ msgstr "Nœud des abonnements créé" msgid "Microblog node created" msgstr "Nœud du microblog créé" -#: [location]title -msgid "Location" -msgstr "Position" - -#: [location]wrong_postition -msgid "Wrong position" -msgstr "Mauvaise position" - -#: [location]updated -msgid "Location updated" -msgstr "Position géographique mise à jour" - -#: [location]update -msgid "Update my position" -msgstr "Mettre à jour ma position" - -#: [login_anonymous]bad_username -msgid "Bad nickname (between 4 and 40 characters)" -msgstr "Mauvais surnom (entre 4 et 40 caractères)" - #: [error]username msgid "Wrong username" msgstr "Nom d’utilisateur incorrect" @@ -1235,7 +1182,7 @@ msgstr "Authentification impossible" msgid "Oops!" msgstr "Oups !" -#: [error]default [visio]unknown_error +#: [error]default msgid "Unknown error" msgstr "Erreur inconnue" @@ -1296,6 +1243,10 @@ msgstr "Connecté" msgid "Population" msgstr "Population" +#: [login_anonymous]bad_username +msgid "Bad nickname (between 4 and 40 characters)" +msgstr "Mauvais surnom (entre 4 et 40 caractères)" + #: [menu]empty_title msgid "No news yet..." msgstr "Aucune actualité… pour le moment" @@ -1316,33 +1267,19 @@ msgstr "Ce billet est public" msgid "All" msgstr "Tous" -#: [affiliations]title -msgid "Manage your members" -msgstr "Gérer vos membres" +#: [menu]mine +#, fuzzy +msgid "My publications" +msgstr "Mes Souscriptions" -#: [affiliations]get -msgid "Get the members" -msgstr "Récupérer les membres" +#: [menu]contacts [page]contacts +msgid "Contacts" +msgstr "Contacts" -#: [affiliations]saved -msgid "Affiliations saved" -msgstr "Affiliations sauvegardées" - -#: [subscriptions]title -msgid "Manage your subscriptions" -msgstr "Gérer vos abonnements" - -#: [subscriptions]info -msgid "Manage the subscriptions" -msgstr "Gérer les abonnements" - -#: [subscriptions]get -msgid "Get the subscriptions" -msgstr "Récupérer les abonnements" - -#: [subscriptions]saved -msgid "Subscriptions saved" -msgstr "Abonnements sauvegardés" +#: [menu]add_post +#, fuzzy +msgid "Add a post" +msgstr "Commenter" #: [notifs]title msgid "Pending Invitations" @@ -1392,6 +1329,11 @@ msgstr "Ceci est une republication de %s" msgid "See %s profile" msgstr "Voir le profil de %s" +#: [post]blog_last +#, fuzzy +msgid "Public posts from users" +msgstr "Groupes publics" + #: [post]public msgid "Publish this post publicly?" msgstr "Publier ce billet publiquement?" @@ -1404,6 +1346,11 @@ msgstr "Ce billet est désormais publique" msgid "This post is now private" msgstr "Ce billet est désormais privé" +#: [post]public_url +#, fuzzy +msgid "Public URL of this post" +msgstr "Publier ce billet publiquement?" + #: [post]delete_title [post]delete msgid "Delete this post" msgstr "Supprimer ce billet" @@ -1520,14 +1467,6 @@ msgstr "Cliquez ici pour ajouter un contenu textuel à votre publication" msgid "Add some text" msgstr "Ajouter du texte" -#: [public_groups]shared -msgid "Shared" -msgstr "Partagé" - -#: [public_groups]added -msgid "%s has been added to your public groups" -msgstr "%s a été ajouté à vos groupes publics" - #: [rooms]add msgid "Add a chatroom" msgstr "Ajouter un salon de discussion" @@ -1645,8 +1584,13 @@ msgid "Contact deleted" msgstr "Contact supprimé" #: [roster]search -msgid "Search" -msgstr "Rechercher" +msgid "Search in your contacts" +msgstr "Chercher dans vos contacts " + +#: [roster]search_pod +#, fuzzy +msgid "Search a contact" +msgstr "Chercher dans vos contacts " #: [share]error msgid "This is not a valid url" @@ -1676,6 +1620,10 @@ msgstr "Souscriptions par mois" msgid "Monthly Subscriptions Cumulated" msgstr "Souscriptions par mois cumulés" +#: [sticker]sent +msgid "A sticker has been sent using Movim" +msgstr "" + #: [subscribe]info msgid "Movim is a decentralized social network, before creating a new account you need to choose a server to register." msgstr "Movim est un réseau social décentralisé, avant de créer un compte vous devez choisir un serveur sur lequel vous inscrire." @@ -1724,11 +1672,6 @@ msgstr "Votre profil est maintenant public" msgid "Your profile is now restricted" msgstr "Votre profil est maintenant restreint" -#: [general]nickname -msgctxt "[general]nickname" -msgid "Nickname" -msgstr "Surnom" - #: [accounts]accounts_title msgid "Accounts" msgstr "Comptes" @@ -1745,11 +1688,6 @@ msgstr "Skype" msgid "Yahoo Account" msgstr "Compte Yahoo" -#: [accounts]accounts_nickname -msgctxt "[accounts]accounts_nickname" -msgid "Nickname" -msgstr "Surnom" - #: [privacy]privacy_title msgid "Privacy Level" msgstr "Niveau de confidentialité" @@ -1759,7 +1697,8 @@ msgid "Is this profile public ?" msgstr "Ce profil est-il public ?" #: [privacy]privacy_info -msgid "Please pay attention ! By making your profile public, all the information listed above will be available for all the Movim users and on the whole Internet." +#, fuzzy +msgid "Please pay attention ! By making your profile public, all the information listed bellow will be available for all the Movim users and on the whole Internet." msgstr "Faites attention ! En rendant votre profil public, toutes les informations listées ci-dessus seront visibles par les utilisateurs de Movim mais également par tous les internautes." #: [save]submit [button]submit @@ -1770,34 +1709,6 @@ msgstr "Envoyer" msgid "Reset" msgstr "Réinitialiser" -#: [visio]hung_up -msgid "Hung up" -msgstr "Fin d'appel" - -#: [visio]busy -msgid "Your contact is busy" -msgstr "Votre contact est occupé" - -#: [visio]declined -msgid "Declined" -msgstr "Rejeté" - -#: [visio]calling -msgid "Is calling you" -msgstr "Vous appelle" - -#: [visio]call -msgid "Call" -msgstr "Appeler" - -#: [visio]hang_up -msgid "Hang up" -msgstr "Raccrocher" - -#: [visio]connection -msgid "Connection" -msgstr "Connexion" - #: [global]no_js msgid "You don't have javascript enabled. Good luck with that." msgstr "JavaScript est désactivé sur votre navigateur." @@ -1866,6 +1777,10 @@ msgstr "Connexion" msgid "Feed" msgstr "Flux" +#: [page]posts +msgid "Posts" +msgstr "Billets" + #: [page]gallery msgid "Gallery" msgstr "Galerie" @@ -2743,3 +2658,83 @@ msgstr "L’API est indisponible pour le moment, réessayez plus tard." #: [field]type_here msgid "Type here" msgstr "Rédigez votre message ici" + +#~ msgid "Data" +#~ msgstr "Données" + +#~ msgid "Cache" +#~ msgstr "Cache" + +#~ msgid "Messages" +#~ msgstr "Messages" + +#~ msgid "Location" +#~ msgstr "Position" + +#~ msgid "Wrong position" +#~ msgstr "Mauvaise position" + +#~ msgid "Location updated" +#~ msgstr "Position géographique mise à jour" + +#~ msgid "Update my position" +#~ msgstr "Mettre à jour ma position" + +#~ msgid "Manage your members" +#~ msgstr "Gérer vos membres" + +#~ msgid "Get the members" +#~ msgstr "Récupérer les membres" + +#~ msgid "Affiliations saved" +#~ msgstr "Affiliations sauvegardées" + +#~ msgid "Manage your subscriptions" +#~ msgstr "Gérer vos abonnements" + +#~ msgid "Manage the subscriptions" +#~ msgstr "Gérer les abonnements" + +#~ msgid "Get the subscriptions" +#~ msgstr "Récupérer les abonnements" + +#~ msgid "Subscriptions saved" +#~ msgstr "Abonnements sauvegardés" + +#~ msgid "Shared" +#~ msgstr "Partagé" + +#~ msgid "%s has been added to your public groups" +#~ msgstr "%s a été ajouté à vos groupes publics" + +#~ msgid "Search" +#~ msgstr "Rechercher" + +#~ msgctxt "[general]nickname" +#~ msgid "Nickname" +#~ msgstr "Surnom" + +#~ msgctxt "[accounts]accounts_nickname" +#~ msgid "Nickname" +#~ msgstr "Surnom" + +#~ msgid "Hung up" +#~ msgstr "Fin d'appel" + +#~ msgid "Your contact is busy" +#~ msgstr "Votre contact est occupé" + +#~ msgid "Declined" +#~ msgstr "Rejeté" + +#~ msgid "Is calling you" +#~ msgstr "Vous appelle" + +#~ msgid "Call" +#~ msgstr "Appeler" + +#~ msgid "Hang up" +#~ msgstr "Raccrocher" + +#~ msgid "Connection" +#~ msgstr "Connexion" diff --git a/sources/locales/gl.po b/sources/locales/gl.po index 2c3eb11..eac9caf 100644 --- a/sources/locales/gl.po +++ b/sources/locales/gl.po @@ -28,8 +28,6 @@ #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Chats/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/ConfigData/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Config/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Contact/locales.ini @@ -38,26 +36,18 @@ #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Groups/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Header/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Hello/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Help/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Init/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Location/locales.ini +#. extracted from ../app/widgets/Login/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/LoginAnonymous/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Login/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Menu/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/NodeAffiliations/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/NodeSubscriptions/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Notifs/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Post/locales.ini @@ -66,8 +56,6 @@ #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Publish/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/PubsubSubscriptionConfig/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Rooms/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Roster/locales.ini @@ -76,6 +64,8 @@ #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Statistics/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Stickers/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Subscribe/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Syndication/locales.ini @@ -84,16 +74,12 @@ #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Vcard4/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/VisioExt/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Visio/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../locales/locales.ini msgid "" msgstr "" "Project-Id-Version: Movim\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-12-29 13:42+0200\n" +"POT-Creation-Date: 2016-03-08 08:30+0200\n" "PO-Revision-Date: 2014-06-01 23:06+0000\n" "Last-Translator: Daniel-san \n" "Language-Team: LANGUAGE \n" @@ -527,6 +513,7 @@ msgid "Name" msgstr "" #: [chatroom]nickname [general]nickname [chatrooms]nickname +#: [accounts]accounts_nickname msgid "Nickname" msgstr "" @@ -659,24 +646,8 @@ msgstr "" msgid "Load more contacts" msgstr "" -#: [title]data -msgid "Data" -msgstr "" - -#: [title]cache -msgid "Cache" -msgstr "" - -#: [title]contacts [menu]contacts [page]contacts -msgid "Contacts" -msgstr "" - -#: [title]posts [page]posts -msgid "Posts" -msgstr "" - -#: [title]messages -msgid "Messages" +#: [button]new +msgid "New conversation" msgstr "" #: [config]general @@ -725,11 +696,11 @@ msgstr "" msgid "Custom CSS URL for your blog" msgstr "" -#: [general]legend [general]general_title +#: [general]legend msgid "General Informations" msgstr "" -#: [general]name [public_groups]name [chatrooms]name +#: [general]name [chatrooms]name msgid "Name" msgstr "" @@ -765,7 +736,7 @@ msgstr "" msgid "Is Listening" msgstr "" -#: [position]legend [position]position_title +#: [position]legend msgid "Geographic Position" msgstr "" @@ -1025,10 +996,6 @@ msgstr "" msgid "This server doesn't exists" msgstr "" -#: [roster]search -msgid "Search in your contacts" -msgstr "" - #: [hello]chat msgid "Go on the Chat page" msgstr "" @@ -1157,26 +1124,6 @@ msgstr "" msgid "Microblog node created" msgstr "" -#: [location]title -msgid "Location" -msgstr "" - -#: [location]wrong_postition -msgid "Wrong position" -msgstr "" - -#: [location]updated -msgid "Location updated" -msgstr "" - -#: [location]update -msgid "Update my position" -msgstr "" - -#: [login_anonymous]bad_username -msgid "Bad nickname (between 4 and 40 characters)" -msgstr "" - #: [error]username msgid "Wrong username" msgstr "" @@ -1234,7 +1181,7 @@ msgstr "" msgid "Oops!" msgstr "" -#: [error]default [visio]unknown_error +#: [error]default msgid "Unknown error" msgstr "" @@ -1295,6 +1242,10 @@ msgstr "" msgid "Population" msgstr "" +#: [login_anonymous]bad_username +msgid "Bad nickname (between 4 and 40 characters)" +msgstr "" + #: [menu]empty_title msgid "No news yet..." msgstr "" @@ -1315,32 +1266,16 @@ msgstr "" msgid "All" msgstr "" -#: [affiliations]title -msgid "Manage your members" +#: [menu]mine +msgid "My publications" msgstr "" -#: [affiliations]get -msgid "Get the members" +#: [menu]contacts [page]contacts +msgid "Contacts" msgstr "" -#: [affiliations]saved -msgid "Affiliations saved" -msgstr "" - -#: [subscriptions]title -msgid "Manage your subscriptions" -msgstr "" - -#: [subscriptions]info -msgid "Manage the subscriptions" -msgstr "" - -#: [subscriptions]get -msgid "Get the subscriptions" -msgstr "" - -#: [subscriptions]saved -msgid "Subscriptions saved" +#: [menu]add_post +msgid "Add a post" msgstr "" #: [notifs]title @@ -1391,6 +1326,10 @@ msgstr "" msgid "See %s profile" msgstr "" +#: [post]blog_last +msgid "Public posts from users" +msgstr "" + #: [post]public msgid "Publish this post publicly?" msgstr "" @@ -1403,6 +1342,10 @@ msgstr "" msgid "This post is now private" msgstr "" +#: [post]public_url +msgid "Public URL of this post" +msgstr "" + #: [post]delete_title [post]delete msgid "Delete this post" msgstr "" @@ -1519,14 +1462,6 @@ msgstr "" msgid "Add some text" msgstr "" -#: [public_groups]shared -msgid "Shared" -msgstr "" - -#: [public_groups]added -msgid "%s has been added to your public groups" -msgstr "" - #: [rooms]add msgid "Add a chatroom" msgstr "" @@ -1644,7 +1579,11 @@ msgid "Contact deleted" msgstr "" #: [roster]search -msgid "Search" +msgid "Search in your contacts" +msgstr "" + +#: [roster]search_pod +msgid "Search a contact" msgstr "" #: [share]error @@ -1675,6 +1614,10 @@ msgstr "" msgid "Monthly Subscriptions Cumulated" msgstr "" +#: [sticker]sent +msgid "A sticker has been sent using Movim" +msgstr "" + #: [subscribe]info msgid "Movim is a decentralized social network, before creating a new account you need to choose a server to register." msgstr "" @@ -1723,11 +1666,6 @@ msgstr "" msgid "Your profile is now restricted" msgstr "" -#: [general]nickname -msgctxt "[general]nickname" -msgid "Nickname" -msgstr "" - #: [accounts]accounts_title msgid "Accounts" msgstr "" @@ -1744,11 +1682,6 @@ msgstr "" msgid "Yahoo Account" msgstr "" -#: [accounts]accounts_nickname -msgctxt "[accounts]accounts_nickname" -msgid "Nickname" -msgstr "" - #: [privacy]privacy_title msgid "Privacy Level" msgstr "" @@ -1758,7 +1691,7 @@ msgid "Is this profile public ?" msgstr "" #: [privacy]privacy_info -msgid "Please pay attention ! By making your profile public, all the information listed above will be available for all the Movim users and on the whole Internet." +msgid "Please pay attention ! By making your profile public, all the information listed bellow will be available for all the Movim users and on the whole Internet." msgstr "" #: [save]submit [button]submit @@ -1769,34 +1702,6 @@ msgstr "Enviar" msgid "Reset" msgstr "Restablecer" -#: [visio]hung_up -msgid "Hung up" -msgstr "" - -#: [visio]busy -msgid "Your contact is busy" -msgstr "" - -#: [visio]declined -msgid "Declined" -msgstr "" - -#: [visio]calling -msgid "Is calling you" -msgstr "" - -#: [visio]call -msgid "Call" -msgstr "" - -#: [visio]hang_up -msgid "Hang up" -msgstr "" - -#: [visio]connection -msgid "Connection" -msgstr "" - #: [global]no_js msgid "You don't have javascript enabled. Good luck with that." msgstr "" @@ -1865,6 +1770,10 @@ msgstr "" msgid "Feed" msgstr "" +#: [page]posts +msgid "Posts" +msgstr "" + #: [page]gallery msgid "Gallery" msgstr "" diff --git a/sources/locales/he.po b/sources/locales/he.po index a864f24..9e700b9 100644 --- a/sources/locales/he.po +++ b/sources/locales/he.po @@ -28,8 +28,6 @@ #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Chats/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/ConfigData/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Config/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Contact/locales.ini @@ -38,26 +36,18 @@ #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Groups/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Header/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Hello/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Help/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Init/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Location/locales.ini +#. extracted from ../app/widgets/Login/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/LoginAnonymous/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Login/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Menu/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/NodeAffiliations/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/NodeSubscriptions/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Notifs/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Post/locales.ini @@ -66,8 +56,6 @@ #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Publish/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/PubsubSubscriptionConfig/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Rooms/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Roster/locales.ini @@ -76,6 +64,8 @@ #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Statistics/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Stickers/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Subscribe/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Syndication/locales.ini @@ -84,16 +74,12 @@ #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Vcard4/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/VisioExt/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Visio/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../locales/locales.ini msgid "" msgstr "" "Project-Id-Version: movim\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-12-29 13:42+0200\n" +"POT-Creation-Date: 2016-03-08 08:30+0200\n" "PO-Revision-Date: 2015-12-29 12:43+0000\n" "Last-Translator: Jaussoin Timothée \n" "Language-Team: Hebrew (http://www.transifex.com/movim/movim/language/he/)\n" @@ -525,6 +511,7 @@ msgid "Name" msgstr "" #: [chatroom]nickname [general]nickname [chatrooms]nickname +#: [accounts]accounts_nickname msgid "Nickname" msgstr "שם כינוי" @@ -657,25 +644,9 @@ msgstr "שיח עם איש קשר" msgid "Load more contacts" msgstr "" -#: [title]data -msgid "Data" -msgstr "נתונים" - -#: [title]cache -msgid "Cache" -msgstr "מטמון" - -#: [title]contacts [menu]contacts [page]contacts -msgid "Contacts" -msgstr "אנשי קשר" - -#: [title]posts [page]posts -msgid "Posts" -msgstr "פרסומים" - -#: [title]messages -msgid "Messages" -msgstr "הודעות" +#: [button]new +msgid "New conversation" +msgstr "" #: [config]general msgid "General" @@ -721,11 +692,11 @@ msgstr "השתמש בהתראות שולחן עבודה" msgid "Custom CSS URL for your blog" msgstr "" -#: [general]legend [general]general_title +#: [general]legend msgid "General Informations" msgstr "מידע כללי" -#: [general]name [public_groups]name [chatrooms]name +#: [general]name [chatrooms]name msgid "Name" msgstr "שם" @@ -761,7 +732,7 @@ msgstr "חשבונות אחרים" msgid "Is Listening" msgstr "" -#: [position]legend [position]position_title +#: [position]legend msgid "Geographic Position" msgstr "מיקום גאוגרפי" @@ -1021,10 +992,6 @@ msgstr "" msgid "This server doesn't exists" msgstr "" -#: [roster]search -msgid "Search in your contacts" -msgstr "" - #: [hello]chat msgid "Go on the Chat page" msgstr "" @@ -1153,26 +1120,6 @@ msgstr "צומת הרשמות נוצר" msgid "Microblog node created" msgstr "צומת מיקרו-בלוג נוצר" -#: [location]title -msgid "Location" -msgstr "מיקום" - -#: [location]wrong_postition -msgid "Wrong position" -msgstr "מיקום שגוי" - -#: [location]updated -msgid "Location updated" -msgstr "מיקום עודכן" - -#: [location]update -msgid "Update my position" -msgstr "עדכן את המיקום שלי" - -#: [login_anonymous]bad_username -msgid "Bad nickname (between 4 and 40 characters)" -msgstr "" - #: [error]username msgid "Wrong username" msgstr "שם משתמש שגוי" @@ -1230,7 +1177,7 @@ msgstr "" msgid "Oops!" msgstr "אופס!" -#: [error]default [visio]unknown_error +#: [error]default msgid "Unknown error" msgstr "שגיאה לא ידועה" @@ -1291,6 +1238,10 @@ msgstr "מחובר" msgid "Population" msgstr "אוכלוסיה" +#: [login_anonymous]bad_username +msgid "Bad nickname (between 4 and 40 characters)" +msgstr "" + #: [menu]empty_title msgid "No news yet..." msgstr "" @@ -1311,33 +1262,19 @@ msgstr "" msgid "All" msgstr "הכל" -#: [affiliations]title -msgid "Manage your members" -msgstr "נהל את חבריך" +#: [menu]mine +#, fuzzy +msgid "My publications" +msgstr "פרסום איש קשר" -#: [affiliations]get -msgid "Get the members" -msgstr "השג את החברים" +#: [menu]contacts [page]contacts +msgid "Contacts" +msgstr "אנשי קשר" -#: [affiliations]saved -msgid "Affiliations saved" -msgstr "סינופים נשמרו" - -#: [subscriptions]title -msgid "Manage your subscriptions" -msgstr "נהל את ההרשמות שלך" - -#: [subscriptions]info -msgid "Manage the subscriptions" -msgstr "נהל את ההרשמות" - -#: [subscriptions]get -msgid "Get the subscriptions" -msgstr "השג את ההרשמות" - -#: [subscriptions]saved -msgid "Subscriptions saved" -msgstr "הרשמות נשמרו" +#: [menu]add_post +#, fuzzy +msgid "Add a post" +msgstr "הוסף תגובה" #: [notifs]title msgid "Pending Invitations" @@ -1387,6 +1324,11 @@ msgstr "" msgid "See %s profile" msgstr "" +#: [post]blog_last +#, fuzzy +msgid "Public posts from users" +msgstr "קבוצות פומביות" + #: [post]public msgid "Publish this post publicly?" msgstr "" @@ -1399,6 +1341,10 @@ msgstr "" msgid "This post is now private" msgstr "" +#: [post]public_url +msgid "Public URL of this post" +msgstr "" + #: [post]delete_title [post]delete msgid "Delete this post" msgstr "מחק את פרסום זה" @@ -1515,14 +1461,6 @@ msgstr "" msgid "Add some text" msgstr "" -#: [public_groups]shared -msgid "Shared" -msgstr "משותף" - -#: [public_groups]added -msgid "%s has been added to your public groups" -msgstr "%s התווסף אל הקבוצה הפומבית שלך" - #: [rooms]add msgid "Add a chatroom" msgstr "הוסף חדר שיחה" @@ -1640,8 +1578,13 @@ msgid "Contact deleted" msgstr "איש קשר נמחק" #: [roster]search -msgid "Search" -msgstr "חיפוש" +msgid "Search in your contacts" +msgstr "" + +#: [roster]search_pod +#, fuzzy +msgid "Search a contact" +msgstr "שותף עם כל אנשי הקשר" #: [share]error msgid "This is not a valid url" @@ -1671,6 +1614,10 @@ msgstr "הרשמות חודשיות" msgid "Monthly Subscriptions Cumulated" msgstr "הרשמות חודשיות שהצטברו" +#: [sticker]sent +msgid "A sticker has been sent using Movim" +msgstr "" + #: [subscribe]info msgid "Movim is a decentralized social network, before creating a new account you need to choose a server to register." msgstr "Movim הינה רשת חברתית מבוזרת (א-ריכוזית), טרם יצירת חשבון חדש עליך לבחור שרת להירשם אליו." @@ -1719,11 +1666,6 @@ msgstr "הדיוקן שלך הינו פומבי כעת" msgid "Your profile is now restricted" msgstr "הדיוקן שלך הינו מוגבל כעת" -#: [general]nickname -msgctxt "[general]nickname" -msgid "Nickname" -msgstr "" - #: [accounts]accounts_title msgid "Accounts" msgstr "חשבונות" @@ -1740,11 +1682,6 @@ msgstr "Skype" msgid "Yahoo Account" msgstr "" -#: [accounts]accounts_nickname -msgctxt "[accounts]accounts_nickname" -msgid "Nickname" -msgstr "" - #: [privacy]privacy_title msgid "Privacy Level" msgstr "רמת פרטיות" @@ -1754,7 +1691,8 @@ msgid "Is this profile public ?" msgstr "האם דיוקן זה הינו פומבי ?" #: [privacy]privacy_info -msgid "Please pay attention ! By making your profile public, all the information listed above will be available for all the Movim users and on the whole Internet." +#, fuzzy +msgid "Please pay attention ! By making your profile public, all the information listed bellow will be available for all the Movim users and on the whole Internet." msgstr "לצומת לבך ! בהופכך את דיוקנך לפומבי, כל המידע שמנוי מעלה יהיה זמין לכל המשתמשים של Movim וגם בכל המרשתת." #: [save]submit [button]submit @@ -1765,34 +1703,6 @@ msgstr "שלח" msgid "Reset" msgstr "אפס" -#: [visio]hung_up -msgid "Hung up" -msgstr "נותקה" - -#: [visio]busy -msgid "Your contact is busy" -msgstr "איש הקשר שלך הינו עסוק" - -#: [visio]declined -msgid "Declined" -msgstr "נדחתה" - -#: [visio]calling -msgid "Is calling you" -msgstr "מתקשר אליך" - -#: [visio]call -msgid "Call" -msgstr "צור קשר" - -#: [visio]hang_up -msgid "Hang up" -msgstr "נתק" - -#: [visio]connection -msgid "Connection" -msgstr "חיבור" - #: [global]no_js msgid "You don't have javascript enabled. Good luck with that." msgstr "אין לך Javascript מאופשר. עליך לאפשר Javascript בכדי להשתמש באתר זה." @@ -1861,6 +1771,10 @@ msgstr "כניסה" msgid "Feed" msgstr "ערוץ" +#: [page]posts +msgid "Posts" +msgstr "פרסומים" + #: [page]gallery msgid "Gallery" msgstr "גלריה" @@ -2738,3 +2652,75 @@ msgstr "API אינו נגיש, נסה שוב מאוחר יותר" #: [field]type_here msgid "Type here" msgstr "" + +#~ msgid "Data" +#~ msgstr "נתונים" + +#~ msgid "Cache" +#~ msgstr "מטמון" + +#~ msgid "Messages" +#~ msgstr "הודעות" + +#~ msgid "Location" +#~ msgstr "מיקום" + +#~ msgid "Wrong position" +#~ msgstr "מיקום שגוי" + +#~ msgid "Location updated" +#~ msgstr "מיקום עודכן" + +#~ msgid "Update my position" +#~ msgstr "עדכן את המיקום שלי" + +#~ msgid "Manage your members" +#~ msgstr "נהל את חבריך" + +#~ msgid "Get the members" +#~ msgstr "השג את החברים" + +#~ msgid "Affiliations saved" +#~ msgstr "סינופים נשמרו" + +#~ msgid "Manage your subscriptions" +#~ msgstr "נהל את ההרשמות שלך" + +#~ msgid "Manage the subscriptions" +#~ msgstr "נהל את ההרשמות" + +#~ msgid "Get the subscriptions" +#~ msgstr "השג את ההרשמות" + +#~ msgid "Subscriptions saved" +#~ msgstr "הרשמות נשמרו" + +#~ msgid "Shared" +#~ msgstr "משותף" + +#~ msgid "%s has been added to your public groups" +#~ msgstr "%s התווסף אל הקבוצה הפומבית שלך" + +#~ msgid "Search" +#~ msgstr "חיפוש" + +#~ msgid "Hung up" +#~ msgstr "נותקה" + +#~ msgid "Your contact is busy" +#~ msgstr "איש הקשר שלך הינו עסוק" + +#~ msgid "Declined" +#~ msgstr "נדחתה" + +#~ msgid "Is calling you" +#~ msgstr "מתקשר אליך" + +#~ msgid "Call" +#~ msgstr "צור קשר" + +#~ msgid "Hang up" +#~ msgstr "נתק" + +#~ msgid "Connection" +#~ msgstr "חיבור" diff --git a/sources/locales/hr.po b/sources/locales/hr.po index bea459a..74d2c91 100644 --- a/sources/locales/hr.po +++ b/sources/locales/hr.po @@ -30,8 +30,6 @@ #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Chats/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/ConfigData/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Config/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Contact/locales.ini @@ -40,26 +38,18 @@ #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Groups/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Header/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Hello/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Help/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Init/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Location/locales.ini +#. extracted from ../app/widgets/Login/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/LoginAnonymous/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Login/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Menu/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/NodeAffiliations/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/NodeSubscriptions/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Notifs/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Post/locales.ini @@ -68,8 +58,6 @@ #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Publish/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/PubsubSubscriptionConfig/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Rooms/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Roster/locales.ini @@ -78,6 +66,8 @@ #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Statistics/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Stickers/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Subscribe/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Syndication/locales.ini @@ -86,16 +76,12 @@ #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Vcard4/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/VisioExt/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Visio/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../locales/locales.ini msgid "" msgstr "" "Project-Id-Version: movim\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-12-29 13:42+0200\n" +"POT-Creation-Date: 2016-03-08 08:30+0200\n" "PO-Revision-Date: 2014-06-22 14:34+0000\n" "Last-Translator: Martina \n" "Language-Team: Croatian \n" @@ -527,6 +513,7 @@ msgid "Name" msgstr "" #: [chatroom]nickname [general]nickname [chatrooms]nickname +#: [accounts]accounts_nickname msgid "Nickname" msgstr "" @@ -659,24 +646,8 @@ msgstr "" msgid "Load more contacts" msgstr "" -#: [title]data -msgid "Data" -msgstr "" - -#: [title]cache -msgid "Cache" -msgstr "" - -#: [title]contacts [menu]contacts [page]contacts -msgid "Contacts" -msgstr "" - -#: [title]posts [page]posts -msgid "Posts" -msgstr "" - -#: [title]messages -msgid "Messages" +#: [button]new +msgid "New conversation" msgstr "" #: [config]general @@ -723,11 +694,11 @@ msgstr "" msgid "Custom CSS URL for your blog" msgstr "" -#: [general]legend [general]general_title +#: [general]legend msgid "General Informations" msgstr "" -#: [general]name [public_groups]name [chatrooms]name +#: [general]name [chatrooms]name msgid "Name" msgstr "" @@ -763,7 +734,7 @@ msgstr "" msgid "Is Listening" msgstr "" -#: [position]legend [position]position_title +#: [position]legend msgid "Geographic Position" msgstr "" @@ -1023,10 +994,6 @@ msgstr "" msgid "This server doesn't exists" msgstr "" -#: [roster]search -msgid "Search in your contacts" -msgstr "" - #: [hello]chat msgid "Go on the Chat page" msgstr "" @@ -1155,26 +1122,6 @@ msgstr "" msgid "Microblog node created" msgstr "" -#: [location]title -msgid "Location" -msgstr "" - -#: [location]wrong_postition -msgid "Wrong position" -msgstr "" - -#: [location]updated -msgid "Location updated" -msgstr "" - -#: [location]update -msgid "Update my position" -msgstr "" - -#: [login_anonymous]bad_username -msgid "Bad nickname (between 4 and 40 characters)" -msgstr "" - #: [error]username msgid "Wrong username" msgstr "" @@ -1232,7 +1179,7 @@ msgstr "" msgid "Oops!" msgstr "" -#: [error]default [visio]unknown_error +#: [error]default msgid "Unknown error" msgstr "" @@ -1293,6 +1240,10 @@ msgstr "" msgid "Population" msgstr "" +#: [login_anonymous]bad_username +msgid "Bad nickname (between 4 and 40 characters)" +msgstr "" + #: [menu]empty_title msgid "No news yet..." msgstr "" @@ -1313,32 +1264,16 @@ msgstr "" msgid "All" msgstr "" -#: [affiliations]title -msgid "Manage your members" +#: [menu]mine +msgid "My publications" msgstr "" -#: [affiliations]get -msgid "Get the members" +#: [menu]contacts [page]contacts +msgid "Contacts" msgstr "" -#: [affiliations]saved -msgid "Affiliations saved" -msgstr "" - -#: [subscriptions]title -msgid "Manage your subscriptions" -msgstr "" - -#: [subscriptions]info -msgid "Manage the subscriptions" -msgstr "" - -#: [subscriptions]get -msgid "Get the subscriptions" -msgstr "" - -#: [subscriptions]saved -msgid "Subscriptions saved" +#: [menu]add_post +msgid "Add a post" msgstr "" #: [notifs]title @@ -1389,6 +1324,10 @@ msgstr "" msgid "See %s profile" msgstr "" +#: [post]blog_last +msgid "Public posts from users" +msgstr "" + #: [post]public msgid "Publish this post publicly?" msgstr "" @@ -1401,6 +1340,10 @@ msgstr "" msgid "This post is now private" msgstr "" +#: [post]public_url +msgid "Public URL of this post" +msgstr "" + #: [post]delete_title [post]delete msgid "Delete this post" msgstr "" @@ -1517,14 +1460,6 @@ msgstr "" msgid "Add some text" msgstr "" -#: [public_groups]shared -msgid "Shared" -msgstr "" - -#: [public_groups]added -msgid "%s has been added to your public groups" -msgstr "" - #: [rooms]add msgid "Add a chatroom" msgstr "" @@ -1642,7 +1577,11 @@ msgid "Contact deleted" msgstr "" #: [roster]search -msgid "Search" +msgid "Search in your contacts" +msgstr "" + +#: [roster]search_pod +msgid "Search a contact" msgstr "" #: [share]error @@ -1673,6 +1612,10 @@ msgstr "" msgid "Monthly Subscriptions Cumulated" msgstr "" +#: [sticker]sent +msgid "A sticker has been sent using Movim" +msgstr "" + #: [subscribe]info msgid "Movim is a decentralized social network, before creating a new account you need to choose a server to register." msgstr "" @@ -1721,11 +1664,6 @@ msgstr "" msgid "Your profile is now restricted" msgstr "" -#: [general]nickname -msgctxt "[general]nickname" -msgid "Nickname" -msgstr "" - #: [accounts]accounts_title msgid "Accounts" msgstr "" @@ -1742,11 +1680,6 @@ msgstr "" msgid "Yahoo Account" msgstr "" -#: [accounts]accounts_nickname -msgctxt "[accounts]accounts_nickname" -msgid "Nickname" -msgstr "" - #: [privacy]privacy_title msgid "Privacy Level" msgstr "" @@ -1756,7 +1689,7 @@ msgid "Is this profile public ?" msgstr "" #: [privacy]privacy_info -msgid "Please pay attention ! By making your profile public, all the information listed above will be available for all the Movim users and on the whole Internet." +msgid "Please pay attention ! By making your profile public, all the information listed bellow will be available for all the Movim users and on the whole Internet." msgstr "" #: [save]submit [button]submit @@ -1767,34 +1700,6 @@ msgstr "" msgid "Reset" msgstr "" -#: [visio]hung_up -msgid "Hung up" -msgstr "" - -#: [visio]busy -msgid "Your contact is busy" -msgstr "" - -#: [visio]declined -msgid "Declined" -msgstr "" - -#: [visio]calling -msgid "Is calling you" -msgstr "" - -#: [visio]call -msgid "Call" -msgstr "" - -#: [visio]hang_up -msgid "Hang up" -msgstr "" - -#: [visio]connection -msgid "Connection" -msgstr "" - #: [global]no_js msgid "You don't have javascript enabled. Good luck with that." msgstr "" @@ -1863,6 +1768,10 @@ msgstr "" msgid "Feed" msgstr "" +#: [page]posts +msgid "Posts" +msgstr "" + #: [page]gallery msgid "Gallery" msgstr "" diff --git a/sources/locales/hu.po b/sources/locales/hu.po index f7c004b..8fc6bd8 100644 --- a/sources/locales/hu.po +++ b/sources/locales/hu.po @@ -30,8 +30,6 @@ #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Chats/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/ConfigData/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Config/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Contact/locales.ini @@ -40,26 +38,18 @@ #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Groups/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Header/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Hello/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Help/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Init/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Location/locales.ini +#. extracted from ../app/widgets/Login/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/LoginAnonymous/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Login/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Menu/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/NodeAffiliations/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/NodeSubscriptions/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Notifs/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Post/locales.ini @@ -68,8 +58,6 @@ #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Publish/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/PubsubSubscriptionConfig/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Rooms/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Roster/locales.ini @@ -78,6 +66,8 @@ #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Statistics/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Stickers/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Subscribe/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Syndication/locales.ini @@ -86,16 +76,12 @@ #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Vcard4/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/VisioExt/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Visio/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../locales/locales.ini msgid "" msgstr "" "Project-Id-Version: movim\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-12-29 13:42+0200\n" +"POT-Creation-Date: 2016-03-08 08:30+0200\n" "PO-Revision-Date: 2015-12-29 12:43+0000\n" "Last-Translator: Jaussoin Timothée \n" "Language-Team: Hungarian (http://www.transifex.com/movim/movim/language/hu/)\n" @@ -527,6 +513,7 @@ msgid "Name" msgstr "Név" #: [chatroom]nickname [general]nickname [chatrooms]nickname +#: [accounts]accounts_nickname msgid "Nickname" msgstr "Becenév" @@ -659,25 +646,9 @@ msgstr "" msgid "Load more contacts" msgstr "További kapcsolatok betöltése" -#: [title]data -msgid "Data" -msgstr "Adat" - -#: [title]cache -msgid "Cache" -msgstr "Cache" - -#: [title]contacts [menu]contacts [page]contacts -msgid "Contacts" -msgstr "Kapcsolatok" - -#: [title]posts [page]posts -msgid "Posts" -msgstr "Megosztások" - -#: [title]messages -msgid "Messages" -msgstr "Üzenetek" +#: [button]new +msgid "New conversation" +msgstr "" #: [config]general msgid "General" @@ -723,11 +694,11 @@ msgstr "" msgid "Custom CSS URL for your blog" msgstr "" -#: [general]legend [general]general_title +#: [general]legend msgid "General Informations" msgstr "Általános információk" -#: [general]name [public_groups]name [chatrooms]name +#: [general]name [chatrooms]name msgid "Name" msgstr "Név" @@ -763,7 +734,7 @@ msgstr "Egyéb felhasználói fiókok" msgid "Is Listening" msgstr "Éppen hallgatja" -#: [position]legend [position]position_title +#: [position]legend msgid "Geographic Position" msgstr "Földrajzi helyzet" @@ -1023,10 +994,6 @@ msgstr "%s poszt" msgid "This server doesn't exists" msgstr "Ez a szerver nem létezik" -#: [roster]search -msgid "Search in your contacts" -msgstr "Keresés ismerősök között" - #: [hello]chat msgid "Go on the Chat page" msgstr "Irány a chat oldal" @@ -1155,26 +1122,6 @@ msgstr "" msgid "Microblog node created" msgstr "" -#: [location]title -msgid "Location" -msgstr "" - -#: [location]wrong_postition -msgid "Wrong position" -msgstr "" - -#: [location]updated -msgid "Location updated" -msgstr "Helyzet frissítve" - -#: [location]update -msgid "Update my position" -msgstr "Helyzetem frissítése" - -#: [login_anonymous]bad_username -msgid "Bad nickname (between 4 and 40 characters)" -msgstr "" - #: [error]username msgid "Wrong username" msgstr "Téves felhasználónév" @@ -1232,7 +1179,7 @@ msgstr "" msgid "Oops!" msgstr "Hupsz!" -#: [error]default [visio]unknown_error +#: [error]default msgid "Unknown error" msgstr "Ismeretlen hiba" @@ -1293,6 +1240,10 @@ msgstr "Csatlakozva" msgid "Population" msgstr "Lakosság" +#: [login_anonymous]bad_username +msgid "Bad nickname (between 4 and 40 characters)" +msgstr "" + #: [menu]empty_title msgid "No news yet..." msgstr "Nincsenek még hírek" @@ -1313,33 +1264,19 @@ msgstr "Ez a megosztás nyílvános" msgid "All" msgstr "Mind" -#: [affiliations]title -msgid "Manage your members" -msgstr "" +#: [menu]mine +#, fuzzy +msgid "My publications" +msgstr "Feliratkozásaim" -#: [affiliations]get -msgid "Get the members" -msgstr "Tagok lekérdezése" +#: [menu]contacts [page]contacts +msgid "Contacts" +msgstr "Kapcsolatok" -#: [affiliations]saved -msgid "Affiliations saved" -msgstr "" - -#: [subscriptions]title -msgid "Manage your subscriptions" -msgstr "" - -#: [subscriptions]info -msgid "Manage the subscriptions" -msgstr "" - -#: [subscriptions]get -msgid "Get the subscriptions" -msgstr "" - -#: [subscriptions]saved -msgid "Subscriptions saved" -msgstr "" +#: [menu]add_post +#, fuzzy +msgid "Add a post" +msgstr "Hozzászólok" #: [notifs]title msgid "Pending Invitations" @@ -1389,6 +1326,11 @@ msgstr "" msgid "See %s profile" msgstr "" +#: [post]blog_last +#, fuzzy +msgid "Public posts from users" +msgstr "Nyilvános csoportok" + #: [post]public msgid "Publish this post publicly?" msgstr "" @@ -1401,6 +1343,10 @@ msgstr "" msgid "This post is now private" msgstr "" +#: [post]public_url +msgid "Public URL of this post" +msgstr "" + #: [post]delete_title [post]delete msgid "Delete this post" msgstr "Poszt törlése" @@ -1517,14 +1463,6 @@ msgstr "" msgid "Add some text" msgstr "" -#: [public_groups]shared -msgid "Shared" -msgstr "Megosztva" - -#: [public_groups]added -msgid "%s has been added to your public groups" -msgstr "" - #: [rooms]add msgid "Add a chatroom" msgstr "" @@ -1642,8 +1580,13 @@ msgid "Contact deleted" msgstr "Ismerős törölve" #: [roster]search -msgid "Search" -msgstr "Keresés" +msgid "Search in your contacts" +msgstr "Keresés ismerősök között" + +#: [roster]search_pod +#, fuzzy +msgid "Search a contact" +msgstr "Keresés ismerősök között" #: [share]error msgid "This is not a valid url" @@ -1673,6 +1616,10 @@ msgstr "" msgid "Monthly Subscriptions Cumulated" msgstr "" +#: [sticker]sent +msgid "A sticker has been sent using Movim" +msgstr "" + #: [subscribe]info msgid "Movim is a decentralized social network, before creating a new account you need to choose a server to register." msgstr "A Movim egy decentralizált közösségi hálózat. Mielőtt létrehozod a fiókod válassz egy szervert a regisztrációhoz." @@ -1721,11 +1668,6 @@ msgstr "A profilod mostantól nyilvános" msgid "Your profile is now restricted" msgstr "" -#: [general]nickname -msgctxt "[general]nickname" -msgid "Nickname" -msgstr "" - #: [accounts]accounts_title msgid "Accounts" msgstr "Felhasználók" @@ -1742,11 +1684,6 @@ msgstr "Skype" msgid "Yahoo Account" msgstr "Yahoo Account" -#: [accounts]accounts_nickname -msgctxt "[accounts]accounts_nickname" -msgid "Nickname" -msgstr "" - #: [privacy]privacy_title msgid "Privacy Level" msgstr "Magánszféra szintje" @@ -1756,7 +1693,7 @@ msgid "Is this profile public ?" msgstr "Nyilvános ez a profil?" #: [privacy]privacy_info -msgid "Please pay attention ! By making your profile public, all the information listed above will be available for all the Movim users and on the whole Internet." +msgid "Please pay attention ! By making your profile public, all the information listed bellow will be available for all the Movim users and on the whole Internet." msgstr "" #: [save]submit [button]submit @@ -1767,34 +1704,6 @@ msgstr "Küldés" msgid "Reset" msgstr "Alapértékek" -#: [visio]hung_up -msgid "Hung up" -msgstr "" - -#: [visio]busy -msgid "Your contact is busy" -msgstr "" - -#: [visio]declined -msgid "Declined" -msgstr "" - -#: [visio]calling -msgid "Is calling you" -msgstr "Hív téged" - -#: [visio]call -msgid "Call" -msgstr "Hívás" - -#: [visio]hang_up -msgid "Hang up" -msgstr "" - -#: [visio]connection -msgid "Connection" -msgstr "Kapcsolat" - #: [global]no_js msgid "You don't have javascript enabled. Good luck with that." msgstr "" @@ -1863,6 +1772,10 @@ msgstr "Bejelentkezés" msgid "Feed" msgstr "Hírforrás" +#: [page]posts +msgid "Posts" +msgstr "Megosztások" + #: [page]gallery msgid "Gallery" msgstr "Galéria" @@ -2740,3 +2653,36 @@ msgstr "" #: [field]type_here msgid "Type here" msgstr "Ide írj" + +#~ msgid "Data" +#~ msgstr "Adat" + +#~ msgid "Cache" +#~ msgstr "Cache" + +#~ msgid "Messages" +#~ msgstr "Üzenetek" + +#~ msgid "Location updated" +#~ msgstr "Helyzet frissítve" + +#~ msgid "Update my position" +#~ msgstr "Helyzetem frissítése" + +#~ msgid "Get the members" +#~ msgstr "Tagok lekérdezése" + +#~ msgid "Shared" +#~ msgstr "Megosztva" + +#~ msgid "Search" +#~ msgstr "Keresés" + +#~ msgid "Is calling you" +#~ msgstr "Hív téged" + +#~ msgid "Call" +#~ msgstr "Hívás" + +#~ msgid "Connection" +#~ msgstr "Kapcsolat" diff --git a/sources/locales/id.po b/sources/locales/id.po index 2fe5fd4..ad23c97 100644 --- a/sources/locales/id.po +++ b/sources/locales/id.po @@ -30,8 +30,6 @@ #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Chats/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/ConfigData/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Config/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Contact/locales.ini @@ -40,26 +38,18 @@ #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Groups/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Header/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Hello/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Help/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Init/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Location/locales.ini +#. extracted from ../app/widgets/Login/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/LoginAnonymous/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Login/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Menu/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/NodeAffiliations/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/NodeSubscriptions/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Notifs/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Post/locales.ini @@ -68,8 +58,6 @@ #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Publish/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/PubsubSubscriptionConfig/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Rooms/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Roster/locales.ini @@ -78,6 +66,8 @@ #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Statistics/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Stickers/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Subscribe/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Syndication/locales.ini @@ -86,16 +76,12 @@ #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Vcard4/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/VisioExt/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Visio/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../locales/locales.ini msgid "" msgstr "" "Project-Id-Version: movim\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-12-29 13:42+0200\n" +"POT-Creation-Date: 2016-03-08 08:30+0200\n" "PO-Revision-Date: 2015-06-09 12:21+0000\n" "Last-Translator: edhelas \n" "Language-Team: Indonesian \n" @@ -531,6 +517,7 @@ msgid "Name" msgstr "Nama" #: [chatroom]nickname [general]nickname [chatrooms]nickname +#: [accounts]accounts_nickname msgid "Nickname" msgstr "Panggilan" @@ -665,24 +652,8 @@ msgstr "" msgid "Load more contacts" msgstr "" -#: [title]data -msgid "Data" -msgstr "" - -#: [title]cache -msgid "Cache" -msgstr "" - -#: [title]contacts [menu]contacts [page]contacts -msgid "Contacts" -msgstr "" - -#: [title]posts [page]posts -msgid "Posts" -msgstr "" - -#: [title]messages -msgid "Messages" +#: [button]new +msgid "New conversation" msgstr "" #: [config]general @@ -731,11 +702,11 @@ msgstr "" msgid "Custom CSS URL for your blog" msgstr "" -#: [general]legend [general]general_title +#: [general]legend msgid "General Informations" msgstr "Informasi Umum" -#: [general]name [public_groups]name [chatrooms]name +#: [general]name [chatrooms]name msgid "Name" msgstr "Nama" @@ -771,7 +742,7 @@ msgstr "" msgid "Is Listening" msgstr "" -#: [position]legend [position]position_title +#: [position]legend msgid "Geographic Position" msgstr "Posisi Geografis" @@ -1036,11 +1007,6 @@ msgstr "" msgid "This server doesn't exists" msgstr "" -#: [roster]search -#, fuzzy -msgid "Search in your contacts" -msgstr "Dibagikan ke satu kontak" - #: [hello]chat msgid "Go on the Chat page" msgstr "" @@ -1169,26 +1135,6 @@ msgstr "" msgid "Microblog node created" msgstr "" -#: [location]title -msgid "Location" -msgstr "Lokasi" - -#: [location]wrong_postition -msgid "Wrong position" -msgstr "" - -#: [location]updated -msgid "Location updated" -msgstr "" - -#: [location]update -msgid "Update my position" -msgstr "" - -#: [login_anonymous]bad_username -msgid "Bad nickname (between 4 and 40 characters)" -msgstr "" - #: [error]username msgid "Wrong username" msgstr "" @@ -1246,7 +1192,7 @@ msgstr "" msgid "Oops!" msgstr "" -#: [error]default [visio]unknown_error +#: [error]default msgid "Unknown error" msgstr "" @@ -1307,6 +1253,10 @@ msgstr "" msgid "Population" msgstr "" +#: [login_anonymous]bad_username +msgid "Bad nickname (between 4 and 40 characters)" +msgstr "" + #: [menu]empty_title msgid "No news yet..." msgstr "" @@ -1327,32 +1277,17 @@ msgstr "" msgid "All" msgstr "" -#: [affiliations]title -msgid "Manage your members" +#: [menu]mine +#, fuzzy +msgid "My publications" +msgstr "Kesalahan publikasikan komentar" + +#: [menu]contacts [page]contacts +msgid "Contacts" msgstr "" -#: [affiliations]get -msgid "Get the members" -msgstr "" - -#: [affiliations]saved -msgid "Affiliations saved" -msgstr "" - -#: [subscriptions]title -msgid "Manage your subscriptions" -msgstr "Atur langganan mu" - -#: [subscriptions]info -msgid "Manage the subscriptions" -msgstr "Atur langganan" - -#: [subscriptions]get -msgid "Get the subscriptions" -msgstr "Dapatkan langganan" - -#: [subscriptions]saved -msgid "Subscriptions saved" +#: [menu]add_post +msgid "Add a post" msgstr "" #: [notifs]title @@ -1403,6 +1338,10 @@ msgstr "" msgid "See %s profile" msgstr "" +#: [post]blog_last +msgid "Public posts from users" +msgstr "" + #: [post]public #, fuzzy msgid "Publish this post publicly?" @@ -1417,6 +1356,11 @@ msgstr "Apakah ini profil publik ?" msgid "This post is now private" msgstr "" +#: [post]public_url +#, fuzzy +msgid "Public URL of this post" +msgstr "Apakah ini profil publik ?" + #: [post]delete_title [post]delete msgid "Delete this post" msgstr "" @@ -1533,14 +1477,6 @@ msgstr "" msgid "Add some text" msgstr "" -#: [public_groups]shared -msgid "Shared" -msgstr "" - -#: [public_groups]added -msgid "%s has been added to your public groups" -msgstr "" - #: [rooms]add msgid "Add a chatroom" msgstr "" @@ -1658,8 +1594,14 @@ msgid "Contact deleted" msgstr "" #: [roster]search -msgid "Search" -msgstr "Cari" +#, fuzzy +msgid "Search in your contacts" +msgstr "Dibagikan ke satu kontak" + +#: [roster]search_pod +#, fuzzy +msgid "Search a contact" +msgstr "Dibagikan ke satu kontak" #: [share]error msgid "This is not a valid url" @@ -1689,6 +1631,10 @@ msgstr "" msgid "Monthly Subscriptions Cumulated" msgstr "" +#: [sticker]sent +msgid "A sticker has been sent using Movim" +msgstr "" + #: [subscribe]info msgid "Movim is a decentralized social network, before creating a new account you need to choose a server to register." msgstr "" @@ -1738,12 +1684,6 @@ msgstr "" msgid "Your profile is now restricted" msgstr "" -#: [general]nickname -#, fuzzy -msgctxt "[general]nickname" -msgid "Nickname" -msgstr "Panggilan" - #: [accounts]accounts_title msgid "Accounts" msgstr "" @@ -1760,12 +1700,6 @@ msgstr "" msgid "Yahoo Account" msgstr "" -#: [accounts]accounts_nickname -#, fuzzy -msgctxt "[accounts]accounts_nickname" -msgid "Nickname" -msgstr "Panggilan" - #: [privacy]privacy_title msgid "Privacy Level" msgstr "Tingkat Privasi" @@ -1775,7 +1709,8 @@ msgid "Is this profile public ?" msgstr "Apakah ini profil publik ?" #: [privacy]privacy_info -msgid "Please pay attention ! By making your profile public, all the information listed above will be available for all the Movim users and on the whole Internet." +#, fuzzy +msgid "Please pay attention ! By making your profile public, all the information listed bellow will be available for all the Movim users and on the whole Internet." msgstr "Harap diperhatikan! Dengan membuat profil anda publik, semua informasi yang tercantum di atas akan tersedia untuk semua pengguna Movim dan seluruh Internet." #: [save]submit [button]submit @@ -1786,34 +1721,6 @@ msgstr "Kirim" msgid "Reset" msgstr "Atur ulang" -#: [visio]hung_up -msgid "Hung up" -msgstr "" - -#: [visio]busy -msgid "Your contact is busy" -msgstr "" - -#: [visio]declined -msgid "Declined" -msgstr "" - -#: [visio]calling -msgid "Is calling you" -msgstr "" - -#: [visio]call -msgid "Call" -msgstr "" - -#: [visio]hang_up -msgid "Hang up" -msgstr "" - -#: [visio]connection -msgid "Connection" -msgstr "" - #: [global]no_js msgid "You don't have javascript enabled. Good luck with that." msgstr "" @@ -1882,6 +1789,10 @@ msgstr "" msgid "Feed" msgstr "Tautan" +#: [page]posts +msgid "Posts" +msgstr "" + #: [page]gallery msgid "Gallery" msgstr "" @@ -2763,9 +2674,30 @@ msgstr "" msgid "Type here" msgstr "" +#~ msgid "Location" +#~ msgstr "Lokasi" + +#~ msgid "Manage your subscriptions" +#~ msgstr "Atur langganan mu" + +#~ msgid "Manage the subscriptions" +#~ msgstr "Atur langganan" + +#~ msgid "Get the subscriptions" +#~ msgstr "Dapatkan langganan" + +#~ msgid "Search" +#~ msgstr "Cari" + #, fuzzy -#~ msgid "My publications" -#~ msgstr "Kesalahan publikasikan komentar" +#~ msgctxt "[general]nickname" +#~ msgid "Nickname" +#~ msgstr "Panggilan" + +#, fuzzy +#~ msgctxt "[accounts]accounts_nickname" +#~ msgid "Nickname" +#~ msgstr "Panggilan" #~ msgid "Your web browser is too old to use with Movim." #~ msgstr "Browser anda terlalu lawas untuk di gunakan dengan Movim." diff --git a/sources/locales/io.po b/sources/locales/io.po index 401b8d9..ca639a6 100644 --- a/sources/locales/io.po +++ b/sources/locales/io.po @@ -30,8 +30,6 @@ #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Chats/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/ConfigData/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Config/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Contact/locales.ini @@ -40,26 +38,18 @@ #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Groups/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Header/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Hello/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Help/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Init/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Location/locales.ini +#. extracted from ../app/widgets/Login/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/LoginAnonymous/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Login/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Menu/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/NodeAffiliations/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/NodeSubscriptions/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Notifs/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Post/locales.ini @@ -68,8 +58,6 @@ #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Publish/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/PubsubSubscriptionConfig/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Rooms/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Roster/locales.ini @@ -78,6 +66,8 @@ #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Statistics/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Stickers/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Subscribe/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Syndication/locales.ini @@ -86,16 +76,12 @@ #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Vcard4/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/VisioExt/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Visio/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../locales/locales.ini msgid "" msgstr "" "Project-Id-Version: movim\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-12-29 13:42+0200\n" +"POT-Creation-Date: 2016-03-08 08:30+0200\n" "PO-Revision-Date: 2014-06-01 23:07+0000\n" "Last-Translator: edhelas \n" "Language-Team: Ido \n" @@ -527,6 +513,7 @@ msgid "Name" msgstr "" #: [chatroom]nickname [general]nickname [chatrooms]nickname +#: [accounts]accounts_nickname msgid "Nickname" msgstr "" @@ -659,24 +646,8 @@ msgstr "" msgid "Load more contacts" msgstr "" -#: [title]data -msgid "Data" -msgstr "" - -#: [title]cache -msgid "Cache" -msgstr "" - -#: [title]contacts [menu]contacts [page]contacts -msgid "Contacts" -msgstr "" - -#: [title]posts [page]posts -msgid "Posts" -msgstr "" - -#: [title]messages -msgid "Messages" +#: [button]new +msgid "New conversation" msgstr "" #: [config]general @@ -723,11 +694,11 @@ msgstr "" msgid "Custom CSS URL for your blog" msgstr "" -#: [general]legend [general]general_title +#: [general]legend msgid "General Informations" msgstr "" -#: [general]name [public_groups]name [chatrooms]name +#: [general]name [chatrooms]name msgid "Name" msgstr "" @@ -763,7 +734,7 @@ msgstr "" msgid "Is Listening" msgstr "" -#: [position]legend [position]position_title +#: [position]legend msgid "Geographic Position" msgstr "" @@ -1023,10 +994,6 @@ msgstr "" msgid "This server doesn't exists" msgstr "" -#: [roster]search -msgid "Search in your contacts" -msgstr "" - #: [hello]chat msgid "Go on the Chat page" msgstr "" @@ -1155,26 +1122,6 @@ msgstr "" msgid "Microblog node created" msgstr "" -#: [location]title -msgid "Location" -msgstr "" - -#: [location]wrong_postition -msgid "Wrong position" -msgstr "" - -#: [location]updated -msgid "Location updated" -msgstr "" - -#: [location]update -msgid "Update my position" -msgstr "" - -#: [login_anonymous]bad_username -msgid "Bad nickname (between 4 and 40 characters)" -msgstr "" - #: [error]username msgid "Wrong username" msgstr "" @@ -1232,7 +1179,7 @@ msgstr "" msgid "Oops!" msgstr "" -#: [error]default [visio]unknown_error +#: [error]default msgid "Unknown error" msgstr "" @@ -1293,6 +1240,10 @@ msgstr "" msgid "Population" msgstr "" +#: [login_anonymous]bad_username +msgid "Bad nickname (between 4 and 40 characters)" +msgstr "" + #: [menu]empty_title msgid "No news yet..." msgstr "" @@ -1313,32 +1264,16 @@ msgstr "" msgid "All" msgstr "" -#: [affiliations]title -msgid "Manage your members" +#: [menu]mine +msgid "My publications" msgstr "" -#: [affiliations]get -msgid "Get the members" +#: [menu]contacts [page]contacts +msgid "Contacts" msgstr "" -#: [affiliations]saved -msgid "Affiliations saved" -msgstr "" - -#: [subscriptions]title -msgid "Manage your subscriptions" -msgstr "" - -#: [subscriptions]info -msgid "Manage the subscriptions" -msgstr "" - -#: [subscriptions]get -msgid "Get the subscriptions" -msgstr "" - -#: [subscriptions]saved -msgid "Subscriptions saved" +#: [menu]add_post +msgid "Add a post" msgstr "" #: [notifs]title @@ -1389,6 +1324,10 @@ msgstr "" msgid "See %s profile" msgstr "" +#: [post]blog_last +msgid "Public posts from users" +msgstr "" + #: [post]public msgid "Publish this post publicly?" msgstr "" @@ -1401,6 +1340,10 @@ msgstr "" msgid "This post is now private" msgstr "" +#: [post]public_url +msgid "Public URL of this post" +msgstr "" + #: [post]delete_title [post]delete msgid "Delete this post" msgstr "" @@ -1517,14 +1460,6 @@ msgstr "" msgid "Add some text" msgstr "" -#: [public_groups]shared -msgid "Shared" -msgstr "" - -#: [public_groups]added -msgid "%s has been added to your public groups" -msgstr "" - #: [rooms]add msgid "Add a chatroom" msgstr "" @@ -1642,7 +1577,11 @@ msgid "Contact deleted" msgstr "" #: [roster]search -msgid "Search" +msgid "Search in your contacts" +msgstr "" + +#: [roster]search_pod +msgid "Search a contact" msgstr "" #: [share]error @@ -1673,6 +1612,10 @@ msgstr "" msgid "Monthly Subscriptions Cumulated" msgstr "" +#: [sticker]sent +msgid "A sticker has been sent using Movim" +msgstr "" + #: [subscribe]info msgid "Movim is a decentralized social network, before creating a new account you need to choose a server to register." msgstr "" @@ -1721,11 +1664,6 @@ msgstr "" msgid "Your profile is now restricted" msgstr "" -#: [general]nickname -msgctxt "[general]nickname" -msgid "Nickname" -msgstr "" - #: [accounts]accounts_title msgid "Accounts" msgstr "" @@ -1742,11 +1680,6 @@ msgstr "" msgid "Yahoo Account" msgstr "" -#: [accounts]accounts_nickname -msgctxt "[accounts]accounts_nickname" -msgid "Nickname" -msgstr "" - #: [privacy]privacy_title msgid "Privacy Level" msgstr "" @@ -1756,7 +1689,7 @@ msgid "Is this profile public ?" msgstr "" #: [privacy]privacy_info -msgid "Please pay attention ! By making your profile public, all the information listed above will be available for all the Movim users and on the whole Internet." +msgid "Please pay attention ! By making your profile public, all the information listed bellow will be available for all the Movim users and on the whole Internet." msgstr "" #: [save]submit [button]submit @@ -1767,34 +1700,6 @@ msgstr "" msgid "Reset" msgstr "" -#: [visio]hung_up -msgid "Hung up" -msgstr "" - -#: [visio]busy -msgid "Your contact is busy" -msgstr "" - -#: [visio]declined -msgid "Declined" -msgstr "" - -#: [visio]calling -msgid "Is calling you" -msgstr "" - -#: [visio]call -msgid "Call" -msgstr "" - -#: [visio]hang_up -msgid "Hang up" -msgstr "" - -#: [visio]connection -msgid "Connection" -msgstr "" - #: [global]no_js msgid "You don't have javascript enabled. Good luck with that." msgstr "" @@ -1863,6 +1768,10 @@ msgstr "" msgid "Feed" msgstr "" +#: [page]posts +msgid "Posts" +msgstr "" + #: [page]gallery msgid "Gallery" msgstr "" diff --git a/sources/locales/is.po b/sources/locales/is.po index fb037e2..872a3f1 100644 --- a/sources/locales/is.po +++ b/sources/locales/is.po @@ -28,8 +28,6 @@ #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Chats/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/ConfigData/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Config/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Contact/locales.ini @@ -38,26 +36,18 @@ #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Groups/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Header/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Hello/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Help/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Init/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Location/locales.ini +#. extracted from ../app/widgets/Login/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/LoginAnonymous/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Login/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Menu/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/NodeAffiliations/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/NodeSubscriptions/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Notifs/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Post/locales.ini @@ -66,8 +56,6 @@ #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Publish/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/PubsubSubscriptionConfig/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Rooms/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Roster/locales.ini @@ -76,6 +64,8 @@ #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Statistics/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Stickers/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Subscribe/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Syndication/locales.ini @@ -84,16 +74,12 @@ #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Vcard4/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/VisioExt/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Visio/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../locales/locales.ini msgid "" msgstr "" "Project-Id-Version: movim\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-12-29 13:42+0200\n" +"POT-Creation-Date: 2016-03-08 08:30+0200\n" "PO-Revision-Date: 2015-10-06 21:34+0000\n" "Last-Translator: Jaussoin Timothée \n" "Language-Team: Icelandic (http://www.transifex.com/movim/movim/language/is/)\n" @@ -526,6 +512,7 @@ msgid "Name" msgstr "Nafn" #: [chatroom]nickname [general]nickname [chatrooms]nickname +#: [accounts]accounts_nickname msgid "Nickname" msgstr "Gælunafn" @@ -658,26 +645,10 @@ msgstr "" msgid "Load more contacts" msgstr "" -#: [title]data -msgid "Data" -msgstr "Gögn" - -#: [title]cache -msgid "Cache" +#: [button]new +msgid "New conversation" msgstr "" -#: [title]contacts [menu]contacts [page]contacts -msgid "Contacts" -msgstr "Tengiliðir" - -#: [title]posts [page]posts -msgid "Posts" -msgstr "Færslur" - -#: [title]messages -msgid "Messages" -msgstr "Skilaboð" - #: [config]general msgid "General" msgstr "Almennt" @@ -724,11 +695,11 @@ msgstr "" msgid "Custom CSS URL for your blog" msgstr "" -#: [general]legend [general]general_title +#: [general]legend msgid "General Informations" msgstr "" -#: [general]name [public_groups]name [chatrooms]name +#: [general]name [chatrooms]name msgid "Name" msgstr "Nafn" @@ -764,7 +735,7 @@ msgstr "Aðrir Aðgangar" msgid "Is Listening" msgstr "Er Að Hlusta" -#: [position]legend [position]position_title +#: [position]legend msgid "Geographic Position" msgstr "" @@ -1024,10 +995,6 @@ msgstr "" msgid "This server doesn't exists" msgstr "" -#: [roster]search -msgid "Search in your contacts" -msgstr "" - #: [hello]chat msgid "Go on the Chat page" msgstr "" @@ -1157,26 +1124,6 @@ msgstr "" msgid "Microblog node created" msgstr "" -#: [location]title -msgid "Location" -msgstr "" - -#: [location]wrong_postition -msgid "Wrong position" -msgstr "" - -#: [location]updated -msgid "Location updated" -msgstr "" - -#: [location]update -msgid "Update my position" -msgstr "" - -#: [login_anonymous]bad_username -msgid "Bad nickname (between 4 and 40 characters)" -msgstr "" - #: [error]username msgid "Wrong username" msgstr "" @@ -1234,7 +1181,7 @@ msgstr "" msgid "Oops!" msgstr "" -#: [error]default [visio]unknown_error +#: [error]default msgid "Unknown error" msgstr "" @@ -1295,6 +1242,10 @@ msgstr "" msgid "Population" msgstr "" +#: [login_anonymous]bad_username +msgid "Bad nickname (between 4 and 40 characters)" +msgstr "" + #: [menu]empty_title msgid "No news yet..." msgstr "" @@ -1315,32 +1266,16 @@ msgstr "" msgid "All" msgstr "" -#: [affiliations]title -msgid "Manage your members" +#: [menu]mine +msgid "My publications" msgstr "" -#: [affiliations]get -msgid "Get the members" -msgstr "" +#: [menu]contacts [page]contacts +msgid "Contacts" +msgstr "Tengiliðir" -#: [affiliations]saved -msgid "Affiliations saved" -msgstr "" - -#: [subscriptions]title -msgid "Manage your subscriptions" -msgstr "" - -#: [subscriptions]info -msgid "Manage the subscriptions" -msgstr "" - -#: [subscriptions]get -msgid "Get the subscriptions" -msgstr "" - -#: [subscriptions]saved -msgid "Subscriptions saved" +#: [menu]add_post +msgid "Add a post" msgstr "" #: [notifs]title @@ -1391,6 +1326,10 @@ msgstr "" msgid "See %s profile" msgstr "" +#: [post]blog_last +msgid "Public posts from users" +msgstr "" + #: [post]public msgid "Publish this post publicly?" msgstr "" @@ -1403,6 +1342,10 @@ msgstr "" msgid "This post is now private" msgstr "" +#: [post]public_url +msgid "Public URL of this post" +msgstr "" + #: [post]delete_title [post]delete msgid "Delete this post" msgstr "" @@ -1519,14 +1462,6 @@ msgstr "" msgid "Add some text" msgstr "" -#: [public_groups]shared -msgid "Shared" -msgstr "Deilt" - -#: [public_groups]added -msgid "%s has been added to your public groups" -msgstr "" - #: [rooms]add msgid "Add a chatroom" msgstr "Bæta við spjallrás" @@ -1644,7 +1579,11 @@ msgid "Contact deleted" msgstr "" #: [roster]search -msgid "Search" +msgid "Search in your contacts" +msgstr "" + +#: [roster]search_pod +msgid "Search a contact" msgstr "" #: [share]error @@ -1675,6 +1614,10 @@ msgstr "" msgid "Monthly Subscriptions Cumulated" msgstr "" +#: [sticker]sent +msgid "A sticker has been sent using Movim" +msgstr "" + #: [subscribe]info msgid "Movim is a decentralized social network, before creating a new account you need to choose a server to register." msgstr "" @@ -1723,11 +1666,6 @@ msgstr "" msgid "Your profile is now restricted" msgstr "" -#: [general]nickname -msgctxt "[general]nickname" -msgid "Nickname" -msgstr "" - #: [accounts]accounts_title msgid "Accounts" msgstr "" @@ -1744,11 +1682,6 @@ msgstr "" msgid "Yahoo Account" msgstr "" -#: [accounts]accounts_nickname -msgctxt "[accounts]accounts_nickname" -msgid "Nickname" -msgstr "" - #: [privacy]privacy_title msgid "Privacy Level" msgstr "" @@ -1758,7 +1691,7 @@ msgid "Is this profile public ?" msgstr "" #: [privacy]privacy_info -msgid "Please pay attention ! By making your profile public, all the information listed above will be available for all the Movim users and on the whole Internet." +msgid "Please pay attention ! By making your profile public, all the information listed bellow will be available for all the Movim users and on the whole Internet." msgstr "" #: [save]submit [button]submit @@ -1769,34 +1702,6 @@ msgstr "" msgid "Reset" msgstr "" -#: [visio]hung_up -msgid "Hung up" -msgstr "" - -#: [visio]busy -msgid "Your contact is busy" -msgstr "" - -#: [visio]declined -msgid "Declined" -msgstr "" - -#: [visio]calling -msgid "Is calling you" -msgstr "" - -#: [visio]call -msgid "Call" -msgstr "" - -#: [visio]hang_up -msgid "Hang up" -msgstr "" - -#: [visio]connection -msgid "Connection" -msgstr "" - #: [global]no_js msgid "You don't have javascript enabled. Good luck with that." msgstr "" @@ -1865,6 +1770,10 @@ msgstr "" msgid "Feed" msgstr "" +#: [page]posts +msgid "Posts" +msgstr "Færslur" + #: [page]gallery msgid "Gallery" msgstr "" @@ -2743,3 +2652,12 @@ msgstr "" #: [field]type_here msgid "Type here" msgstr "" + +#~ msgid "Data" +#~ msgstr "Gögn" + +#~ msgid "Messages" +#~ msgstr "Skilaboð" + +#~ msgid "Shared" +#~ msgstr "Deilt" diff --git a/sources/locales/it.po b/sources/locales/it.po index b4636a6..c4215fb 100644 --- a/sources/locales/it.po +++ b/sources/locales/it.po @@ -29,8 +29,6 @@ #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Chats/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/ConfigData/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Config/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Contact/locales.ini @@ -39,26 +37,18 @@ #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Groups/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Header/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Hello/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Help/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Init/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Location/locales.ini +#. extracted from ../app/widgets/Login/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/LoginAnonymous/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Login/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Menu/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/NodeAffiliations/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/NodeSubscriptions/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Notifs/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Post/locales.ini @@ -67,8 +57,6 @@ #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Publish/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/PubsubSubscriptionConfig/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Rooms/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Roster/locales.ini @@ -77,6 +65,8 @@ #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Statistics/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Stickers/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Subscribe/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Syndication/locales.ini @@ -85,16 +75,12 @@ #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Vcard4/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/VisioExt/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Visio/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../locales/locales.ini msgid "" msgstr "" "Project-Id-Version: movim\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-12-29 13:42+0200\n" +"POT-Creation-Date: 2016-03-08 08:30+0200\n" "PO-Revision-Date: 2015-12-29 12:43+0000\n" "Last-Translator: Jaussoin Timothée \n" "Language-Team: Italian (http://www.transifex.com/movim/movim/language/it/)\n" @@ -526,6 +512,7 @@ msgid "Name" msgstr "Nome" #: [chatroom]nickname [general]nickname [chatrooms]nickname +#: [accounts]accounts_nickname msgid "Nickname" msgstr "Nickname" @@ -658,26 +645,10 @@ msgstr "Chatta con un contatto" msgid "Load more contacts" msgstr "Importa più contatti" -#: [title]data -msgid "Data" +#: [button]new +msgid "New conversation" msgstr "" -#: [title]cache -msgid "Cache" -msgstr "Cache" - -#: [title]contacts [menu]contacts [page]contacts -msgid "Contacts" -msgstr "Contatti" - -#: [title]posts [page]posts -msgid "Posts" -msgstr "Articoli" - -#: [title]messages -msgid "Messages" -msgstr "Messaggi" - #: [config]general msgid "General" msgstr "Generale" @@ -722,11 +693,11 @@ msgstr "Usa notifiche desktop" msgid "Custom CSS URL for your blog" msgstr "" -#: [general]legend [general]general_title +#: [general]legend msgid "General Informations" msgstr "Informazioni Generali" -#: [general]name [public_groups]name [chatrooms]name +#: [general]name [chatrooms]name msgid "Name" msgstr "Nome" @@ -762,7 +733,7 @@ msgstr "Altri account" msgid "Is Listening" msgstr "Sta ascoltando" -#: [position]legend [position]position_title +#: [position]legend msgid "Geographic Position" msgstr "Posizione geografica" @@ -1022,10 +993,6 @@ msgstr "%s articoli" msgid "This server doesn't exists" msgstr "Questo server non esiste" -#: [roster]search -msgid "Search in your contacts" -msgstr "Cerca nei tuoi contatti" - #: [hello]chat msgid "Go on the Chat page" msgstr "Accedi alla pagina della chat" @@ -1154,26 +1121,6 @@ msgstr "Nodo sottoscrizione creato" msgid "Microblog node created" msgstr "Nodo Microblog creato" -#: [location]title -msgid "Location" -msgstr "Posizione" - -#: [location]wrong_postition -msgid "Wrong position" -msgstr "Posizione errata" - -#: [location]updated -msgid "Location updated" -msgstr "Posizione aggiornata" - -#: [location]update -msgid "Update my position" -msgstr "Aggiorna la mia posizione" - -#: [login_anonymous]bad_username -msgid "Bad nickname (between 4 and 40 characters)" -msgstr "Nickname non valido (tra 4 e 40 caratteri)" - #: [error]username msgid "Wrong username" msgstr "Nome utente errato" @@ -1231,7 +1178,7 @@ msgstr "Impossibile accedere" msgid "Oops!" msgstr "Oops!" -#: [error]default [visio]unknown_error +#: [error]default msgid "Unknown error" msgstr "Errore sconosciuto" @@ -1292,6 +1239,10 @@ msgstr "Connesso" msgid "Population" msgstr "" +#: [login_anonymous]bad_username +msgid "Bad nickname (between 4 and 40 characters)" +msgstr "Nickname non valido (tra 4 e 40 caratteri)" + #: [menu]empty_title msgid "No news yet..." msgstr "Ancora alcuna notizia..." @@ -1312,33 +1263,18 @@ msgstr "Questo articolo è pubblico" msgid "All" msgstr "Tutti" -#: [affiliations]title -msgid "Manage your members" +#: [menu]mine +msgid "My publications" msgstr "" -#: [affiliations]get -msgid "Get the members" -msgstr "" +#: [menu]contacts [page]contacts +msgid "Contacts" +msgstr "Contatti" -#: [affiliations]saved -msgid "Affiliations saved" -msgstr "Affiliazioni salvati" - -#: [subscriptions]title -msgid "Manage your subscriptions" -msgstr "" - -#: [subscriptions]info -msgid "Manage the subscriptions" -msgstr "" - -#: [subscriptions]get -msgid "Get the subscriptions" -msgstr "" - -#: [subscriptions]saved -msgid "Subscriptions saved" -msgstr "" +#: [menu]add_post +#, fuzzy +msgid "Add a post" +msgstr "Aggiungi un commento" #: [notifs]title msgid "Pending Invitations" @@ -1388,6 +1324,11 @@ msgstr "" msgid "See %s profile" msgstr "Guarda il profilo %s" +#: [post]blog_last +#, fuzzy +msgid "Public posts from users" +msgstr "Gruppi pubblici" + #: [post]public msgid "Publish this post publicly?" msgstr "" @@ -1400,6 +1341,10 @@ msgstr "" msgid "This post is now private" msgstr "" +#: [post]public_url +msgid "Public URL of this post" +msgstr "" + #: [post]delete_title [post]delete msgid "Delete this post" msgstr "Elimina questo articolo" @@ -1516,14 +1461,6 @@ msgstr "" msgid "Add some text" msgstr "" -#: [public_groups]shared -msgid "Shared" -msgstr "" - -#: [public_groups]added -msgid "%s has been added to your public groups" -msgstr "" - #: [rooms]add msgid "Add a chatroom" msgstr "Aggiungi una chatroom" @@ -1641,8 +1578,13 @@ msgid "Contact deleted" msgstr "Contatto cancellato" #: [roster]search -msgid "Search" -msgstr "" +msgid "Search in your contacts" +msgstr "Cerca nei tuoi contatti" + +#: [roster]search_pod +#, fuzzy +msgid "Search a contact" +msgstr "Cerca nei tuoi contatti" #: [share]error msgid "This is not a valid url" @@ -1672,6 +1614,10 @@ msgstr "" msgid "Monthly Subscriptions Cumulated" msgstr "" +#: [sticker]sent +msgid "A sticker has been sent using Movim" +msgstr "" + #: [subscribe]info msgid "Movim is a decentralized social network, before creating a new account you need to choose a server to register." msgstr "" @@ -1720,11 +1666,6 @@ msgstr "Il tuo profilo è ora pubblico" msgid "Your profile is now restricted" msgstr "Il tuo profilo ha ora restrizioni" -#: [general]nickname -msgctxt "[general]nickname" -msgid "Nickname" -msgstr "Nickname" - #: [accounts]accounts_title msgid "Accounts" msgstr "Account" @@ -1741,11 +1682,6 @@ msgstr "Skype" msgid "Yahoo Account" msgstr "Account Yahoo" -#: [accounts]accounts_nickname -msgctxt "[accounts]accounts_nickname" -msgid "Nickname" -msgstr "Nickname" - #: [privacy]privacy_title msgid "Privacy Level" msgstr "Livello di privacy" @@ -1755,7 +1691,7 @@ msgid "Is this profile public ?" msgstr "Questo profilo è pubblico?" #: [privacy]privacy_info -msgid "Please pay attention ! By making your profile public, all the information listed above will be available for all the Movim users and on the whole Internet." +msgid "Please pay attention ! By making your profile public, all the information listed bellow will be available for all the Movim users and on the whole Internet." msgstr "" #: [save]submit [button]submit @@ -1766,34 +1702,6 @@ msgstr "Invia" msgid "Reset" msgstr "Resettare" -#: [visio]hung_up -msgid "Hung up" -msgstr "" - -#: [visio]busy -msgid "Your contact is busy" -msgstr "Il tuo contatto è impegnato" - -#: [visio]declined -msgid "Declined" -msgstr "" - -#: [visio]calling -msgid "Is calling you" -msgstr "" - -#: [visio]call -msgid "Call" -msgstr "Chiama" - -#: [visio]hang_up -msgid "Hang up" -msgstr "" - -#: [visio]connection -msgid "Connection" -msgstr "Connessione" - #: [global]no_js msgid "You don't have javascript enabled. Good luck with that." msgstr "" @@ -1862,6 +1770,10 @@ msgstr "Accedi" msgid "Feed" msgstr "Feed" +#: [page]posts +msgid "Posts" +msgstr "Articoli" + #: [page]gallery msgid "Gallery" msgstr "Galleria" @@ -2739,3 +2651,41 @@ msgstr "L'API non è raggiungibile, riprovare più tardi" #: [field]type_here msgid "Type here" msgstr "Digita qui" + +#~ msgid "Cache" +#~ msgstr "Cache" + +#~ msgid "Messages" +#~ msgstr "Messaggi" + +#~ msgid "Location" +#~ msgstr "Posizione" + +#~ msgid "Wrong position" +#~ msgstr "Posizione errata" + +#~ msgid "Location updated" +#~ msgstr "Posizione aggiornata" + +#~ msgid "Update my position" +#~ msgstr "Aggiorna la mia posizione" + +#~ msgid "Affiliations saved" +#~ msgstr "Affiliazioni salvati" + +#~ msgctxt "[general]nickname" +#~ msgid "Nickname" +#~ msgstr "Nickname" + +#~ msgctxt "[accounts]accounts_nickname" +#~ msgid "Nickname" +#~ msgstr "Nickname" + +#~ msgid "Your contact is busy" +#~ msgstr "Il tuo contatto è impegnato" + +#~ msgid "Call" +#~ msgstr "Chiama" + +#~ msgid "Connection" +#~ msgstr "Connessione" diff --git a/sources/locales/ja.po b/sources/locales/ja.po index 015d05c..7e4fd3b 100644 --- a/sources/locales/ja.po +++ b/sources/locales/ja.po @@ -28,8 +28,6 @@ #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Chats/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/ConfigData/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Config/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Contact/locales.ini @@ -38,26 +36,18 @@ #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Groups/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Header/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Hello/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Help/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Init/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Location/locales.ini +#. extracted from ../app/widgets/Login/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/LoginAnonymous/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Login/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Menu/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/NodeAffiliations/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/NodeSubscriptions/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Notifs/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Post/locales.ini @@ -66,8 +56,6 @@ #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Publish/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/PubsubSubscriptionConfig/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Rooms/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Roster/locales.ini @@ -76,6 +64,8 @@ #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Statistics/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Stickers/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Subscribe/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Syndication/locales.ini @@ -84,16 +74,12 @@ #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Vcard4/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/VisioExt/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Visio/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../locales/locales.ini msgid "" msgstr "" "Project-Id-Version: movim\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-12-29 13:42+0200\n" +"POT-Creation-Date: 2016-03-08 08:30+0200\n" "PO-Revision-Date: 2015-12-29 12:43+0000\n" "Last-Translator: Jaussoin Timothée \n" "Language-Team: Japanese (http://www.transifex.com/movim/movim/language/ja/)\n" @@ -525,6 +511,7 @@ msgid "Name" msgstr "名前" #: [chatroom]nickname [general]nickname [chatrooms]nickname +#: [accounts]accounts_nickname msgid "Nickname" msgstr "ニックネーム" @@ -657,25 +644,9 @@ msgstr "誰かとチャットする" msgid "Load more contacts" msgstr "" -#: [title]data -msgid "Data" -msgstr "データ" - -#: [title]cache -msgid "Cache" -msgstr "キャッシュ" - -#: [title]contacts [menu]contacts [page]contacts -msgid "Contacts" -msgstr "コンタクト" - -#: [title]posts [page]posts -msgid "Posts" -msgstr "投稿" - -#: [title]messages -msgid "Messages" -msgstr "メッセージ" +#: [button]new +msgid "New conversation" +msgstr "" #: [config]general msgid "General" @@ -721,11 +692,11 @@ msgstr "" msgid "Custom CSS URL for your blog" msgstr "" -#: [general]legend [general]general_title +#: [general]legend msgid "General Informations" msgstr "一般情報" -#: [general]name [public_groups]name [chatrooms]name +#: [general]name [chatrooms]name msgid "Name" msgstr "名前" @@ -761,7 +732,7 @@ msgstr "他のアカウント" msgid "Is Listening" msgstr "" -#: [position]legend [position]position_title +#: [position]legend msgid "Geographic Position" msgstr "" @@ -1021,10 +992,6 @@ msgstr "%s 投稿" msgid "This server doesn't exists" msgstr "" -#: [roster]search -msgid "Search in your contacts" -msgstr "" - #: [hello]chat msgid "Go on the Chat page" msgstr "チャットへ" @@ -1153,26 +1120,6 @@ msgstr "" msgid "Microblog node created" msgstr "" -#: [location]title -msgid "Location" -msgstr "現在地" - -#: [location]wrong_postition -msgid "Wrong position" -msgstr "" - -#: [location]updated -msgid "Location updated" -msgstr "現在地が更新されました" - -#: [location]update -msgid "Update my position" -msgstr "現在地を更新する" - -#: [login_anonymous]bad_username -msgid "Bad nickname (between 4 and 40 characters)" -msgstr "" - #: [error]username msgid "Wrong username" msgstr "ユーザ名が正しくありません" @@ -1230,7 +1177,7 @@ msgstr "" msgid "Oops!" msgstr "おっとぉ!" -#: [error]default [visio]unknown_error +#: [error]default msgid "Unknown error" msgstr "原因不明のエラー" @@ -1291,6 +1238,10 @@ msgstr "" msgid "Population" msgstr "人口" +#: [login_anonymous]bad_username +msgid "Bad nickname (between 4 and 40 characters)" +msgstr "" + #: [menu]empty_title msgid "No news yet..." msgstr "" @@ -1311,33 +1262,19 @@ msgstr "" msgid "All" msgstr "全て" -#: [affiliations]title -msgid "Manage your members" -msgstr "" +#: [menu]mine +#, fuzzy +msgid "My publications" +msgstr "人口" -#: [affiliations]get -msgid "Get the members" -msgstr "" +#: [menu]contacts [page]contacts +msgid "Contacts" +msgstr "コンタクト" -#: [affiliations]saved -msgid "Affiliations saved" -msgstr "" - -#: [subscriptions]title -msgid "Manage your subscriptions" -msgstr "サブスクリプションの管理" - -#: [subscriptions]info -msgid "Manage the subscriptions" -msgstr "サブスクリプションの管理" - -#: [subscriptions]get -msgid "Get the subscriptions" -msgstr "サブスクリプションを習得する" - -#: [subscriptions]saved -msgid "Subscriptions saved" -msgstr "" +#: [menu]add_post +#, fuzzy +msgid "Add a post" +msgstr "コメントを投稿する" #: [notifs]title msgid "Pending Invitations" @@ -1387,6 +1324,10 @@ msgstr "" msgid "See %s profile" msgstr "" +#: [post]blog_last +msgid "Public posts from users" +msgstr "" + #: [post]public msgid "Publish this post publicly?" msgstr "" @@ -1399,6 +1340,10 @@ msgstr "" msgid "This post is now private" msgstr "" +#: [post]public_url +msgid "Public URL of this post" +msgstr "" + #: [post]delete_title [post]delete msgid "Delete this post" msgstr "この投稿を削除する" @@ -1515,14 +1460,6 @@ msgstr "" msgid "Add some text" msgstr "" -#: [public_groups]shared -msgid "Shared" -msgstr "" - -#: [public_groups]added -msgid "%s has been added to your public groups" -msgstr "" - #: [rooms]add msgid "Add a chatroom" msgstr "チャットルームを追加する" @@ -1640,8 +1577,13 @@ msgid "Contact deleted" msgstr "コンタクトが削除されました" #: [roster]search -msgid "Search" -msgstr "検索" +msgid "Search in your contacts" +msgstr "" + +#: [roster]search_pod +#, fuzzy +msgid "Search a contact" +msgstr "全てのコンタクトと共有" #: [share]error msgid "This is not a valid url" @@ -1671,6 +1613,10 @@ msgstr "" msgid "Monthly Subscriptions Cumulated" msgstr "" +#: [sticker]sent +msgid "A sticker has been sent using Movim" +msgstr "" + #: [subscribe]info msgid "Movim is a decentralized social network, before creating a new account you need to choose a server to register." msgstr "" @@ -1719,11 +1665,6 @@ msgstr "あなたのプロファイルは公開されました" msgid "Your profile is now restricted" msgstr "あなたのプロファイルは非公開されました" -#: [general]nickname -msgctxt "[general]nickname" -msgid "Nickname" -msgstr "" - #: [accounts]accounts_title msgid "Accounts" msgstr "アカウント" @@ -1740,11 +1681,6 @@ msgstr "Skype" msgid "Yahoo Account" msgstr "" -#: [accounts]accounts_nickname -msgctxt "[accounts]accounts_nickname" -msgid "Nickname" -msgstr "" - #: [privacy]privacy_title msgid "Privacy Level" msgstr "" @@ -1754,7 +1690,7 @@ msgid "Is this profile public ?" msgstr "" #: [privacy]privacy_info -msgid "Please pay attention ! By making your profile public, all the information listed above will be available for all the Movim users and on the whole Internet." +msgid "Please pay attention ! By making your profile public, all the information listed bellow will be available for all the Movim users and on the whole Internet." msgstr "" #: [save]submit [button]submit @@ -1765,34 +1701,6 @@ msgstr "送信" msgid "Reset" msgstr "リセット" -#: [visio]hung_up -msgid "Hung up" -msgstr "" - -#: [visio]busy -msgid "Your contact is busy" -msgstr "" - -#: [visio]declined -msgid "Declined" -msgstr "" - -#: [visio]calling -msgid "Is calling you" -msgstr "" - -#: [visio]call -msgid "Call" -msgstr "呼び出し" - -#: [visio]hang_up -msgid "Hang up" -msgstr "" - -#: [visio]connection -msgid "Connection" -msgstr "" - #: [global]no_js msgid "You don't have javascript enabled. Good luck with that." msgstr "" @@ -1861,6 +1769,10 @@ msgstr "ログイン" msgid "Feed" msgstr "フィード" +#: [page]posts +msgid "Posts" +msgstr "投稿" + #: [page]gallery msgid "Gallery" msgstr "" @@ -2738,3 +2650,36 @@ msgstr "" #: [field]type_here msgid "Type here" msgstr "ここに入力を" + +#~ msgid "Data" +#~ msgstr "データ" + +#~ msgid "Cache" +#~ msgstr "キャッシュ" + +#~ msgid "Messages" +#~ msgstr "メッセージ" + +#~ msgid "Location" +#~ msgstr "現在地" + +#~ msgid "Location updated" +#~ msgstr "現在地が更新されました" + +#~ msgid "Update my position" +#~ msgstr "現在地を更新する" + +#~ msgid "Manage your subscriptions" +#~ msgstr "サブスクリプションの管理" + +#~ msgid "Manage the subscriptions" +#~ msgstr "サブスクリプションの管理" + +#~ msgid "Get the subscriptions" +#~ msgstr "サブスクリプションを習得する" + +#~ msgid "Search" +#~ msgstr "検索" + +#~ msgid "Call" +#~ msgstr "呼び出し" diff --git a/sources/locales/kk.po b/sources/locales/kk.po index 76afb90..5b990fa 100644 --- a/sources/locales/kk.po +++ b/sources/locales/kk.po @@ -30,8 +30,6 @@ #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Chats/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/ConfigData/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Config/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Contact/locales.ini @@ -40,26 +38,18 @@ #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Groups/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Header/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Hello/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Help/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Init/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Location/locales.ini +#. extracted from ../app/widgets/Login/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/LoginAnonymous/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Login/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Menu/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/NodeAffiliations/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/NodeSubscriptions/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Notifs/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Post/locales.ini @@ -68,8 +58,6 @@ #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Publish/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/PubsubSubscriptionConfig/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Rooms/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Roster/locales.ini @@ -78,6 +66,8 @@ #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Statistics/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Stickers/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Subscribe/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Syndication/locales.ini @@ -86,16 +76,12 @@ #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Vcard4/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/VisioExt/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Visio/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../locales/locales.ini msgid "" msgstr "" "Project-Id-Version: movim\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-12-29 13:42+0200\n" +"POT-Creation-Date: 2016-03-08 08:30+0200\n" "PO-Revision-Date: 2014-04-04 12:56+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Kazakh \n" @@ -527,6 +513,7 @@ msgid "Name" msgstr "" #: [chatroom]nickname [general]nickname [chatrooms]nickname +#: [accounts]accounts_nickname msgid "Nickname" msgstr "" @@ -659,24 +646,8 @@ msgstr "" msgid "Load more contacts" msgstr "" -#: [title]data -msgid "Data" -msgstr "" - -#: [title]cache -msgid "Cache" -msgstr "" - -#: [title]contacts [menu]contacts [page]contacts -msgid "Contacts" -msgstr "" - -#: [title]posts [page]posts -msgid "Posts" -msgstr "" - -#: [title]messages -msgid "Messages" +#: [button]new +msgid "New conversation" msgstr "" #: [config]general @@ -723,11 +694,11 @@ msgstr "" msgid "Custom CSS URL for your blog" msgstr "" -#: [general]legend [general]general_title +#: [general]legend msgid "General Informations" msgstr "" -#: [general]name [public_groups]name [chatrooms]name +#: [general]name [chatrooms]name msgid "Name" msgstr "" @@ -763,7 +734,7 @@ msgstr "" msgid "Is Listening" msgstr "" -#: [position]legend [position]position_title +#: [position]legend msgid "Geographic Position" msgstr "" @@ -1023,10 +994,6 @@ msgstr "" msgid "This server doesn't exists" msgstr "" -#: [roster]search -msgid "Search in your contacts" -msgstr "" - #: [hello]chat msgid "Go on the Chat page" msgstr "" @@ -1155,26 +1122,6 @@ msgstr "" msgid "Microblog node created" msgstr "" -#: [location]title -msgid "Location" -msgstr "" - -#: [location]wrong_postition -msgid "Wrong position" -msgstr "" - -#: [location]updated -msgid "Location updated" -msgstr "" - -#: [location]update -msgid "Update my position" -msgstr "" - -#: [login_anonymous]bad_username -msgid "Bad nickname (between 4 and 40 characters)" -msgstr "" - #: [error]username msgid "Wrong username" msgstr "" @@ -1232,7 +1179,7 @@ msgstr "" msgid "Oops!" msgstr "" -#: [error]default [visio]unknown_error +#: [error]default msgid "Unknown error" msgstr "" @@ -1293,6 +1240,10 @@ msgstr "" msgid "Population" msgstr "" +#: [login_anonymous]bad_username +msgid "Bad nickname (between 4 and 40 characters)" +msgstr "" + #: [menu]empty_title msgid "No news yet..." msgstr "" @@ -1313,32 +1264,16 @@ msgstr "" msgid "All" msgstr "" -#: [affiliations]title -msgid "Manage your members" +#: [menu]mine +msgid "My publications" msgstr "" -#: [affiliations]get -msgid "Get the members" +#: [menu]contacts [page]contacts +msgid "Contacts" msgstr "" -#: [affiliations]saved -msgid "Affiliations saved" -msgstr "" - -#: [subscriptions]title -msgid "Manage your subscriptions" -msgstr "" - -#: [subscriptions]info -msgid "Manage the subscriptions" -msgstr "" - -#: [subscriptions]get -msgid "Get the subscriptions" -msgstr "" - -#: [subscriptions]saved -msgid "Subscriptions saved" +#: [menu]add_post +msgid "Add a post" msgstr "" #: [notifs]title @@ -1389,6 +1324,10 @@ msgstr "" msgid "See %s profile" msgstr "" +#: [post]blog_last +msgid "Public posts from users" +msgstr "" + #: [post]public msgid "Publish this post publicly?" msgstr "" @@ -1401,6 +1340,10 @@ msgstr "" msgid "This post is now private" msgstr "" +#: [post]public_url +msgid "Public URL of this post" +msgstr "" + #: [post]delete_title [post]delete msgid "Delete this post" msgstr "" @@ -1517,14 +1460,6 @@ msgstr "" msgid "Add some text" msgstr "" -#: [public_groups]shared -msgid "Shared" -msgstr "" - -#: [public_groups]added -msgid "%s has been added to your public groups" -msgstr "" - #: [rooms]add msgid "Add a chatroom" msgstr "" @@ -1642,7 +1577,11 @@ msgid "Contact deleted" msgstr "" #: [roster]search -msgid "Search" +msgid "Search in your contacts" +msgstr "" + +#: [roster]search_pod +msgid "Search a contact" msgstr "" #: [share]error @@ -1673,6 +1612,10 @@ msgstr "" msgid "Monthly Subscriptions Cumulated" msgstr "" +#: [sticker]sent +msgid "A sticker has been sent using Movim" +msgstr "" + #: [subscribe]info msgid "Movim is a decentralized social network, before creating a new account you need to choose a server to register." msgstr "" @@ -1721,11 +1664,6 @@ msgstr "" msgid "Your profile is now restricted" msgstr "" -#: [general]nickname -msgctxt "[general]nickname" -msgid "Nickname" -msgstr "" - #: [accounts]accounts_title msgid "Accounts" msgstr "" @@ -1742,11 +1680,6 @@ msgstr "" msgid "Yahoo Account" msgstr "" -#: [accounts]accounts_nickname -msgctxt "[accounts]accounts_nickname" -msgid "Nickname" -msgstr "" - #: [privacy]privacy_title msgid "Privacy Level" msgstr "" @@ -1756,7 +1689,7 @@ msgid "Is this profile public ?" msgstr "" #: [privacy]privacy_info -msgid "Please pay attention ! By making your profile public, all the information listed above will be available for all the Movim users and on the whole Internet." +msgid "Please pay attention ! By making your profile public, all the information listed bellow will be available for all the Movim users and on the whole Internet." msgstr "" #: [save]submit [button]submit @@ -1767,34 +1700,6 @@ msgstr "" msgid "Reset" msgstr "" -#: [visio]hung_up -msgid "Hung up" -msgstr "" - -#: [visio]busy -msgid "Your contact is busy" -msgstr "" - -#: [visio]declined -msgid "Declined" -msgstr "" - -#: [visio]calling -msgid "Is calling you" -msgstr "" - -#: [visio]call -msgid "Call" -msgstr "" - -#: [visio]hang_up -msgid "Hang up" -msgstr "" - -#: [visio]connection -msgid "Connection" -msgstr "" - #: [global]no_js msgid "You don't have javascript enabled. Good luck with that." msgstr "" @@ -1863,6 +1768,10 @@ msgstr "" msgid "Feed" msgstr "" +#: [page]posts +msgid "Posts" +msgstr "" + #: [page]gallery msgid "Gallery" msgstr "" diff --git a/sources/locales/lv.po b/sources/locales/lv.po index 6945a84..0d41ea6 100644 --- a/sources/locales/lv.po +++ b/sources/locales/lv.po @@ -30,8 +30,6 @@ #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Chats/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/ConfigData/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Config/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Contact/locales.ini @@ -40,26 +38,18 @@ #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Groups/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Header/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Hello/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Help/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Init/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Location/locales.ini +#. extracted from ../app/widgets/Login/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/LoginAnonymous/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Login/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Menu/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/NodeAffiliations/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/NodeSubscriptions/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Notifs/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Post/locales.ini @@ -68,8 +58,6 @@ #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Publish/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/PubsubSubscriptionConfig/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Rooms/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Roster/locales.ini @@ -78,6 +66,8 @@ #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Statistics/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Stickers/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Subscribe/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Syndication/locales.ini @@ -86,16 +76,12 @@ #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Vcard4/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/VisioExt/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Visio/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../locales/locales.ini msgid "" msgstr "" "Project-Id-Version: movim\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-12-29 13:42+0200\n" +"POT-Creation-Date: 2016-03-08 08:30+0200\n" "PO-Revision-Date: 2015-06-09 12:19+0000\n" "Last-Translator: Jānis Marks Gailis \n" "Language-Team: Latvian \n" @@ -533,6 +519,7 @@ msgid "Name" msgstr "Nosaukums" #: [chatroom]nickname [general]nickname [chatrooms]nickname +#: [accounts]accounts_nickname msgid "Nickname" msgstr "Segvārds" @@ -667,25 +654,9 @@ msgstr "" msgid "Load more contacts" msgstr "" -#: [title]data -msgid "Data" -msgstr "Dati" - -#: [title]cache -msgid "Cache" -msgstr "Kešatmiņa" - -#: [title]contacts [menu]contacts [page]contacts -msgid "Contacts" -msgstr "Kontakti" - -#: [title]posts [page]posts -msgid "Posts" -msgstr "Ieraksti" - -#: [title]messages -msgid "Messages" -msgstr "Ziņojumi" +#: [button]new +msgid "New conversation" +msgstr "" #: [config]general msgid "General" @@ -733,11 +704,11 @@ msgstr "" msgid "Custom CSS URL for your blog" msgstr "" -#: [general]legend [general]general_title +#: [general]legend msgid "General Informations" msgstr "Vispārīgā Informācija" -#: [general]name [public_groups]name [chatrooms]name +#: [general]name [chatrooms]name msgid "Name" msgstr "Nosaukums" @@ -773,7 +744,7 @@ msgstr "" msgid "Is Listening" msgstr "" -#: [position]legend [position]position_title +#: [position]legend msgid "Geographic Position" msgstr "Ģeogrāfiskais novietojums" @@ -1036,11 +1007,6 @@ msgstr "" msgid "This server doesn't exists" msgstr "" -#: [roster]search -#, fuzzy -msgid "Search in your contacts" -msgstr "Jūsu kontakti" - #: [hello]chat msgid "Go on the Chat page" msgstr "" @@ -1169,26 +1135,6 @@ msgstr "" msgid "Microblog node created" msgstr "" -#: [location]title -msgid "Location" -msgstr "Atrašanās vieta" - -#: [location]wrong_postition -msgid "Wrong position" -msgstr "" - -#: [location]updated -msgid "Location updated" -msgstr "" - -#: [location]update -msgid "Update my position" -msgstr "" - -#: [login_anonymous]bad_username -msgid "Bad nickname (between 4 and 40 characters)" -msgstr "" - #: [error]username msgid "Wrong username" msgstr "Nepareizs lietotājvārds" @@ -1247,7 +1193,7 @@ msgstr "" msgid "Oops!" msgstr "" -#: [error]default [visio]unknown_error +#: [error]default msgid "Unknown error" msgstr "Nezināma kļūda" @@ -1309,6 +1255,10 @@ msgstr "Savienots" msgid "Population" msgstr "" +#: [login_anonymous]bad_username +msgid "Bad nickname (between 4 and 40 characters)" +msgstr "" + #: [menu]empty_title msgid "No news yet..." msgstr "" @@ -1329,33 +1279,18 @@ msgstr "" msgid "All" msgstr "" -#: [affiliations]title -msgid "Manage your members" +#: [menu]mine +msgid "My publications" msgstr "" -#: [affiliations]get -msgid "Get the members" -msgstr "" +#: [menu]contacts [page]contacts +msgid "Contacts" +msgstr "Kontakti" -#: [affiliations]saved -msgid "Affiliations saved" -msgstr "" - -#: [subscriptions]title -msgid "Manage your subscriptions" -msgstr "" - -#: [subscriptions]info -msgid "Manage the subscriptions" -msgstr "" - -#: [subscriptions]get -msgid "Get the subscriptions" -msgstr "" - -#: [subscriptions]saved -msgid "Subscriptions saved" -msgstr "" +#: [menu]add_post +#, fuzzy +msgid "Add a post" +msgstr "Pievienot komentāru" #: [notifs]title msgid "Pending Invitations" @@ -1405,6 +1340,10 @@ msgstr "" msgid "See %s profile" msgstr "" +#: [post]blog_last +msgid "Public posts from users" +msgstr "" + #: [post]public msgid "Publish this post publicly?" msgstr "" @@ -1417,6 +1356,10 @@ msgstr "" msgid "This post is now private" msgstr "" +#: [post]public_url +msgid "Public URL of this post" +msgstr "" + #: [post]delete_title [post]delete msgid "Delete this post" msgstr "" @@ -1534,14 +1477,6 @@ msgstr "" msgid "Add some text" msgstr "Pievienot komentāru" -#: [public_groups]shared -msgid "Shared" -msgstr "Koplietots" - -#: [public_groups]added -msgid "%s has been added to your public groups" -msgstr "" - #: [rooms]add msgid "Add a chatroom" msgstr "" @@ -1660,8 +1595,14 @@ msgid "Contact deleted" msgstr "" #: [roster]search -msgid "Search" -msgstr "Meklēt" +#, fuzzy +msgid "Search in your contacts" +msgstr "Jūsu kontakti" + +#: [roster]search_pod +#, fuzzy +msgid "Search a contact" +msgstr "Jūsu kontakti" #: [share]error msgid "This is not a valid url" @@ -1691,6 +1632,10 @@ msgstr "" msgid "Monthly Subscriptions Cumulated" msgstr "" +#: [sticker]sent +msgid "A sticker has been sent using Movim" +msgstr "" + #: [subscribe]info msgid "Movim is a decentralized social network, before creating a new account you need to choose a server to register." msgstr "" @@ -1739,12 +1684,6 @@ msgstr "" msgid "Your profile is now restricted" msgstr "" -#: [general]nickname -#, fuzzy -msgctxt "[general]nickname" -msgid "Nickname" -msgstr "Segvārds" - #: [accounts]accounts_title msgid "Accounts" msgstr "Konti" @@ -1762,12 +1701,6 @@ msgstr "Skype" msgid "Yahoo Account" msgstr "Konti" -#: [accounts]accounts_nickname -#, fuzzy -msgctxt "[accounts]accounts_nickname" -msgid "Nickname" -msgstr "Segvārds" - #: [privacy]privacy_title msgid "Privacy Level" msgstr "Privātuma līmenis" @@ -1777,7 +1710,7 @@ msgid "Is this profile public ?" msgstr "" #: [privacy]privacy_info -msgid "Please pay attention ! By making your profile public, all the information listed above will be available for all the Movim users and on the whole Internet." +msgid "Please pay attention ! By making your profile public, all the information listed bellow will be available for all the Movim users and on the whole Internet." msgstr "" #: [save]submit [button]submit @@ -1788,34 +1721,6 @@ msgstr "" msgid "Reset" msgstr "" -#: [visio]hung_up -msgid "Hung up" -msgstr "" - -#: [visio]busy -msgid "Your contact is busy" -msgstr "" - -#: [visio]declined -msgid "Declined" -msgstr "" - -#: [visio]calling -msgid "Is calling you" -msgstr "" - -#: [visio]call -msgid "Call" -msgstr "" - -#: [visio]hang_up -msgid "Hang up" -msgstr "" - -#: [visio]connection -msgid "Connection" -msgstr "" - #: [global]no_js msgid "You don't have javascript enabled. Good luck with that." msgstr "" @@ -1884,6 +1789,10 @@ msgstr "" msgid "Feed" msgstr "Plūsma" +#: [page]posts +msgid "Posts" +msgstr "Ieraksti" + #: [page]gallery msgid "Gallery" msgstr "" @@ -2762,6 +2671,34 @@ msgstr "" msgid "Type here" msgstr "" +#~ msgid "Data" +#~ msgstr "Dati" + +#~ msgid "Cache" +#~ msgstr "Kešatmiņa" + +#~ msgid "Messages" +#~ msgstr "Ziņojumi" + +#~ msgid "Location" +#~ msgstr "Atrašanās vieta" + +#~ msgid "Shared" +#~ msgstr "Koplietots" + +#~ msgid "Search" +#~ msgstr "Meklēt" + +#, fuzzy +#~ msgctxt "[general]nickname" +#~ msgid "Nickname" +#~ msgstr "Segvārds" + +#, fuzzy +#~ msgctxt "[accounts]accounts_nickname" +#~ msgid "Nickname" +#~ msgstr "Segvārds" + #~ msgid "Your web browser is too old to use with Movim." #~ msgstr "Jūsu interneta pārlūks ir pārāk vecs lai lietot to ar Movim" diff --git a/sources/locales/messages.pot b/sources/locales/messages.pot index 24aa3c9..89cbece 100644 --- a/sources/locales/messages.pot +++ b/sources/locales/messages.pot @@ -25,8 +25,6 @@ #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Chats/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/ConfigData/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Config/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Contact/locales.ini @@ -35,26 +33,18 @@ #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Groups/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Header/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Hello/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Help/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Init/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Location/locales.ini +#. extracted from ../app/widgets/Login/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/LoginAnonymous/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Login/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Menu/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/NodeAffiliations/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/NodeSubscriptions/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Notifs/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Post/locales.ini @@ -63,8 +53,6 @@ #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Publish/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/PubsubSubscriptionConfig/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Rooms/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Roster/locales.ini @@ -73,6 +61,8 @@ #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Statistics/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Stickers/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Subscribe/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Syndication/locales.ini @@ -81,491 +71,13 @@ #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Vcard4/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/VisioExt/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Visio/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../locales/locales.ini #, fuzzy msgid "" msgstr "" -"#-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#\n" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-12-29 13:42+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.13.0\n" -"#-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#\n" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-12-29 13:42+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.13.0\n" -"#-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#\n" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-12-29 13:42+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.13.0\n" -"#-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#\n" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-12-29 13:42+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.13.0\n" -"#-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#\n" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-12-29 13:42+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.13.0\n" -"#-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#\n" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-12-29 13:42+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.13.0\n" -"#-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#\n" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-12-29 13:42+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.13.0\n" -"#-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#\n" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-12-29 13:42+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.13.0\n" -"#-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#\n" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-12-29 13:42+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.13.0\n" -"#-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#\n" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-12-29 13:42+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.13.0\n" -"#-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#\n" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-12-29 13:42+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.13.0\n" -"#-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#\n" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-12-29 13:42+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.13.0\n" -"#-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#\n" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-12-29 13:42+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.13.0\n" -"#-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#\n" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-10-06 23:33+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.13.0\n" -"#-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#\n" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-12-29 13:42+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.13.0\n" -"#-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#\n" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-12-29 13:42+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.13.0\n" -"#-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#\n" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-12-29 13:42+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.13.0\n" -"#-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#\n" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-12-29 13:42+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.13.0\n" -"#-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#\n" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-12-29 13:42+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.13.0\n" -"#-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#\n" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-12-29 13:42+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.13.0\n" -"#-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#\n" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-12-29 13:42+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.13.0\n" -"#-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#\n" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-12-29 13:42+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.13.0\n" -"#-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#\n" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-12-29 13:42+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.13.0\n" -"#-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#\n" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-12-29 13:42+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.13.0\n" -"#-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#\n" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-12-29 13:42+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.13.0\n" -"#-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#\n" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-12-29 13:42+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.13.0\n" -"#-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#\n" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-12-29 13:42+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.13.0\n" -"#-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#\n" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-12-29 13:42+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.13.0\n" -"#-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#\n" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-12-29 13:42+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.13.0\n" -"#-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#\n" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-12-29 13:42+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.13.0\n" -"#-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#\n" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-12-29 13:42+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.13.0\n" -"#-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#\n" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-12-29 13:42+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.13.0\n" -"#-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#\n" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-12-29 13:42+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.13.0\n" -"#-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#\n" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-12-29 13:42+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.13.0\n" -"#-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#\n" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-12-29 13:42+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.13.0\n" -"#-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#\n" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-12-29 13:42+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.13.0\n" -"#-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#\n" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-12-29 13:42+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.13.0\n" -"#-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#\n" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-12-29 13:42+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.13.0\n" -"#-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#\n" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-12-29 13:42+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.13.0\n" -"#-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#\n" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-12-29 13:42+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.13.0\n" -"#-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#\n" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-12-29 13:42+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.13.0\n" -"#-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#\n" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-12-29 13:42+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.13.0\n" -"#-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#\n" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-12-29 13:42+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.13.0\n" -"#-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#\n" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-12-29 13:42+0200\n" +"POT-Creation-Date: 2016-03-08 08:30+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -1014,6 +526,7 @@ msgid "Name" msgstr "" #: [chatroom]nickname [general]nickname [chatrooms]nickname +#: [accounts]accounts_nickname msgid "Nickname" msgstr "" @@ -1148,24 +661,8 @@ msgstr "" msgid "Load more contacts" msgstr "" -#: [title]data -msgid "Data" -msgstr "" - -#: [title]cache -msgid "Cache" -msgstr "" - -#: [title]contacts [menu]contacts [page]contacts -msgid "Contacts" -msgstr "" - -#: [title]posts [page]posts -msgid "Posts" -msgstr "" - -#: [title]messages -msgid "Messages" +#: [button]new +msgid "New conversation" msgstr "" #: [config]general @@ -1212,11 +709,11 @@ msgstr "" msgid "Custom CSS URL for your blog" msgstr "" -#: [general]legend [general]general_title +#: [general]legend msgid "General Informations" msgstr "" -#: [general]name [public_groups]name [chatrooms]name +#: [general]name [chatrooms]name msgid "Name" msgstr "" @@ -1252,7 +749,7 @@ msgstr "" msgid "Is Listening" msgstr "" -#: [position]legend [position]position_title +#: [position]legend msgid "Geographic Position" msgstr "" @@ -1525,10 +1022,6 @@ msgstr "" msgid "This server doesn't exists" msgstr "" -#: [roster]search -msgid "Search in your contacts" -msgstr "" - #: [hello]chat msgid "Go on the Chat page" msgstr "" @@ -1663,26 +1156,6 @@ msgstr "" msgid "Microblog node created" msgstr "" -#: [location]title -msgid "Location" -msgstr "" - -#: [location]wrong_postition -msgid "Wrong position" -msgstr "" - -#: [location]updated -msgid "Location updated" -msgstr "" - -#: [location]update -msgid "Update my position" -msgstr "" - -#: [login_anonymous]bad_username -msgid "Bad nickname (between 4 and 40 characters)" -msgstr "" - #: [error]username msgid "Wrong username" msgstr "" @@ -1742,7 +1215,7 @@ msgstr "" msgid "Oops!" msgstr "" -#: [error]default [visio]unknown_error +#: [error]default msgid "Unknown error" msgstr "" @@ -1803,6 +1276,10 @@ msgstr "" msgid "Population" msgstr "" +#: [login_anonymous]bad_username +msgid "Bad nickname (between 4 and 40 characters)" +msgstr "" + #: [menu]empty_title msgid "No news yet..." msgstr "" @@ -1825,32 +1302,16 @@ msgstr "" msgid "All" msgstr "" -#: [affiliations]title -msgid "Manage your members" +#: [menu]mine +msgid "My publications" msgstr "" -#: [affiliations]get -msgid "Get the members" +#: [menu]contacts [page]contacts +msgid "Contacts" msgstr "" -#: [affiliations]saved -msgid "Affiliations saved" -msgstr "" - -#: [subscriptions]title -msgid "Manage your subscriptions" -msgstr "" - -#: [subscriptions]info -msgid "Manage the subscriptions" -msgstr "" - -#: [subscriptions]get -msgid "Get the subscriptions" -msgstr "" - -#: [subscriptions]saved -msgid "Subscriptions saved" +#: [menu]add_post +msgid "Add a post" msgstr "" #: [notifs]title @@ -1901,6 +1362,10 @@ msgstr "" msgid "See %s profile" msgstr "" +#: [post]blog_last +msgid "Public posts from users" +msgstr "" + #: [post]public msgid "Publish this post publicly?" msgstr "" @@ -1913,6 +1378,10 @@ msgstr "" msgid "This post is now private" msgstr "" +#: [post]public_url +msgid "Public URL of this post" +msgstr "" + #: [post]delete_title [post]delete msgid "Delete this post" msgstr "" @@ -2031,14 +1500,6 @@ msgstr "" msgid "Add some text" msgstr "" -#: [public_groups]shared -msgid "Shared" -msgstr "" - -#: [public_groups]added -msgid "%s has been added to your public groups" -msgstr "" - #: [rooms]add msgid "Add a chatroom" msgstr "" @@ -2158,7 +1619,11 @@ msgid "Contact deleted" msgstr "" #: [roster]search -msgid "Search" +msgid "Search in your contacts" +msgstr "" + +#: [roster]search_pod +msgid "Search a contact" msgstr "" #: [share]error @@ -2189,6 +1654,10 @@ msgstr "" msgid "Monthly Subscriptions Cumulated" msgstr "" +#: [sticker]sent +msgid "A sticker has been sent using Movim" +msgstr "" + #: [subscribe]info msgid "" "Movim is a decentralized social network, before creating a new account you " @@ -2239,11 +1708,6 @@ msgstr "" msgid "Your profile is now restricted" msgstr "" -#: [general]nickname -msgctxt "[general]nickname" -msgid "Nickname" -msgstr "" - #: [accounts]accounts_title msgid "Accounts" msgstr "" @@ -2260,11 +1724,6 @@ msgstr "" msgid "Yahoo Account" msgstr "" -#: [accounts]accounts_nickname -msgctxt "[accounts]accounts_nickname" -msgid "Nickname" -msgstr "" - #: [privacy]privacy_title msgid "Privacy Level" msgstr "" @@ -2276,7 +1735,7 @@ msgstr "" #: [privacy]privacy_info msgid "" "Please pay attention ! By making your profile public, all the information " -"listed above will be available for all the Movim users and on the whole " +"listed bellow will be available for all the Movim users and on the whole " "Internet." msgstr "" @@ -2288,34 +1747,6 @@ msgstr "" msgid "Reset" msgstr "" -#: [visio]hung_up -msgid "Hung up" -msgstr "" - -#: [visio]busy -msgid "Your contact is busy" -msgstr "" - -#: [visio]declined -msgid "Declined" -msgstr "" - -#: [visio]calling -msgid "Is calling you" -msgstr "" - -#: [visio]call -msgid "Call" -msgstr "" - -#: [visio]hang_up -msgid "Hang up" -msgstr "" - -#: [visio]connection -msgid "Connection" -msgstr "" - #: [global]no_js msgid "You don't have javascript enabled. Good luck with that." msgstr "" @@ -2386,6 +1817,10 @@ msgstr "" msgid "Feed" msgstr "" +#: [page]posts +msgid "Posts" +msgstr "" + #: [page]gallery msgid "Gallery" msgstr "" diff --git a/sources/locales/nl.po b/sources/locales/nl.po index 7731e1a..8d32a2e 100644 --- a/sources/locales/nl.po +++ b/sources/locales/nl.po @@ -30,8 +30,6 @@ #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Chats/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/ConfigData/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Config/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Contact/locales.ini @@ -40,26 +38,18 @@ #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Groups/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Header/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Hello/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Help/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Init/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Location/locales.ini +#. extracted from ../app/widgets/Login/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/LoginAnonymous/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Login/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Menu/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/NodeAffiliations/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/NodeSubscriptions/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Notifs/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Post/locales.ini @@ -68,8 +58,6 @@ #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Publish/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/PubsubSubscriptionConfig/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Rooms/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Roster/locales.ini @@ -78,6 +66,8 @@ #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Statistics/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Stickers/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Subscribe/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Syndication/locales.ini @@ -86,16 +76,12 @@ #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Vcard4/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/VisioExt/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Visio/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../locales/locales.ini msgid "" msgstr "" "Project-Id-Version: movim\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-12-29 13:42+0200\n" +"POT-Creation-Date: 2016-03-08 08:30+0200\n" "PO-Revision-Date: 2015-12-29 12:43+0000\n" "Last-Translator: Jaussoin Timothée \n" "Language-Team: Dutch (http://www.transifex.com/movim/movim/language/nl/)\n" @@ -527,6 +513,7 @@ msgid "Name" msgstr "Naam" #: [chatroom]nickname [general]nickname [chatrooms]nickname +#: [accounts]accounts_nickname msgid "Nickname" msgstr "bijnaam" @@ -659,25 +646,9 @@ msgstr "Chat met een contactpersoon" msgid "Load more contacts" msgstr "Laad meer contactpersonen" -#: [title]data -msgid "Data" -msgstr "Data" - -#: [title]cache -msgid "Cache" -msgstr "Buffer" - -#: [title]contacts [menu]contacts [page]contacts -msgid "Contacts" -msgstr "Contactpersonen" - -#: [title]posts [page]posts -msgid "Posts" -msgstr "Berichten" - -#: [title]messages -msgid "Messages" -msgstr "Berichten" +#: [button]new +msgid "New conversation" +msgstr "" #: [config]general msgid "General" @@ -723,11 +694,11 @@ msgstr "Gebruik desktop notificaties" msgid "Custom CSS URL for your blog" msgstr "" -#: [general]legend [general]general_title +#: [general]legend msgid "General Informations" msgstr "Algemene informatie" -#: [general]name [public_groups]name [chatrooms]name +#: [general]name [chatrooms]name msgid "Name" msgstr "Naam" @@ -763,7 +734,7 @@ msgstr "Andere Accounts" msgid "Is Listening" msgstr "luistert" -#: [position]legend [position]position_title +#: [position]legend msgid "Geographic Position" msgstr "Geografische Positie" @@ -1023,10 +994,6 @@ msgstr "%s berichten" msgid "This server doesn't exists" msgstr "Deze server bestaat niet" -#: [roster]search -msgid "Search in your contacts" -msgstr "Zoek in je contacten" - #: [hello]chat msgid "Go on the Chat page" msgstr "Ga naar de Chat pagina" @@ -1155,26 +1122,6 @@ msgstr "" msgid "Microblog node created" msgstr "" -#: [location]title -msgid "Location" -msgstr "Locatie" - -#: [location]wrong_postition -msgid "Wrong position" -msgstr "Verkeerde positie" - -#: [location]updated -msgid "Location updated" -msgstr "Locatie bijgewerkt" - -#: [location]update -msgid "Update my position" -msgstr "Update mijn positie" - -#: [login_anonymous]bad_username -msgid "Bad nickname (between 4 and 40 characters)" -msgstr "" - #: [error]username msgid "Wrong username" msgstr "Foute gebruikersnaam" @@ -1232,7 +1179,7 @@ msgstr "Onmogelijke login" msgid "Oops!" msgstr "Oeps!" -#: [error]default [visio]unknown_error +#: [error]default msgid "Unknown error" msgstr "Onbekende fout" @@ -1293,6 +1240,10 @@ msgstr "Verbonden" msgid "Population" msgstr "Populatie" +#: [login_anonymous]bad_username +msgid "Bad nickname (between 4 and 40 characters)" +msgstr "" + #: [menu]empty_title msgid "No news yet..." msgstr "Nog geen nieuws..." @@ -1313,33 +1264,19 @@ msgstr "Dit bericht is openbaar" msgid "All" msgstr "Alles" -#: [affiliations]title -msgid "Manage your members" -msgstr "Beheer je leden" +#: [menu]mine +#, fuzzy +msgid "My publications" +msgstr "Mijn abonnementen" -#: [affiliations]get -msgid "Get the members" -msgstr "Haal leden op" +#: [menu]contacts [page]contacts +msgid "Contacts" +msgstr "Contactpersonen" -#: [affiliations]saved -msgid "Affiliations saved" -msgstr "" - -#: [subscriptions]title -msgid "Manage your subscriptions" -msgstr "Beheer je aanmeldingen" - -#: [subscriptions]info -msgid "Manage the subscriptions" -msgstr "Beheer de aanmeldingen" - -#: [subscriptions]get -msgid "Get the subscriptions" -msgstr "Haal de aanmeldingen op" - -#: [subscriptions]saved -msgid "Subscriptions saved" -msgstr "Abonnementen opgeslagen" +#: [menu]add_post +#, fuzzy +msgid "Add a post" +msgstr "Reactie toevoegen" #: [notifs]title msgid "Pending Invitations" @@ -1389,6 +1326,11 @@ msgstr "dit is een repost van %s" msgid "See %s profile" msgstr "zie %s profiel" +#: [post]blog_last +#, fuzzy +msgid "Public posts from users" +msgstr "Openbare groepen" + #: [post]public msgid "Publish this post publicly?" msgstr "Post dit bericht openbaar?" @@ -1401,6 +1343,11 @@ msgstr "" msgid "This post is now private" msgstr "" +#: [post]public_url +#, fuzzy +msgid "Public URL of this post" +msgstr "Post dit bericht openbaar?" + #: [post]delete_title [post]delete msgid "Delete this post" msgstr "Verwijder dit bericht" @@ -1517,14 +1464,6 @@ msgstr "" msgid "Add some text" msgstr "Voeg wat tekst toe" -#: [public_groups]shared -msgid "Shared" -msgstr "Gedeeld" - -#: [public_groups]added -msgid "%s has been added to your public groups" -msgstr "" - #: [rooms]add msgid "Add a chatroom" msgstr "" @@ -1642,8 +1581,13 @@ msgid "Contact deleted" msgstr "Contactpersoon verwijderd" #: [roster]search -msgid "Search" -msgstr "Zoeken" +msgid "Search in your contacts" +msgstr "Zoek in je contacten" + +#: [roster]search_pod +#, fuzzy +msgid "Search a contact" +msgstr "Zoek in je contacten" #: [share]error msgid "This is not a valid url" @@ -1673,6 +1617,10 @@ msgstr "" msgid "Monthly Subscriptions Cumulated" msgstr "" +#: [sticker]sent +msgid "A sticker has been sent using Movim" +msgstr "" + #: [subscribe]info msgid "Movim is a decentralized social network, before creating a new account you need to choose a server to register." msgstr "" @@ -1721,11 +1669,6 @@ msgstr "Je profiel is nu openbaar" msgid "Your profile is now restricted" msgstr "Je profiel is nu afgeschermd" -#: [general]nickname -msgctxt "[general]nickname" -msgid "Nickname" -msgstr "Bijnaam" - #: [accounts]accounts_title msgid "Accounts" msgstr "Accounts" @@ -1742,11 +1685,6 @@ msgstr "Skype" msgid "Yahoo Account" msgstr "Yahoo Account" -#: [accounts]accounts_nickname -msgctxt "[accounts]accounts_nickname" -msgid "Nickname" -msgstr "Bijnaam" - #: [privacy]privacy_title msgid "Privacy Level" msgstr "Privacy-Niveau" @@ -1756,7 +1694,8 @@ msgid "Is this profile public ?" msgstr "Is dit profiel openbaar?" #: [privacy]privacy_info -msgid "Please pay attention ! By making your profile public, all the information listed above will be available for all the Movim users and on the whole Internet." +#, fuzzy +msgid "Please pay attention ! By making your profile public, all the information listed bellow will be available for all the Movim users and on the whole Internet." msgstr "Let op! Door je profiel openbaar te maken zal alle bovenstaande informatie beschikbaar zijn voor alle Movim-gebruikers en het hele internet." #: [save]submit [button]submit @@ -1767,34 +1706,6 @@ msgstr "Zenden" msgid "Reset" msgstr "Reset" -#: [visio]hung_up -msgid "Hung up" -msgstr "Heeft opgehangen" - -#: [visio]busy -msgid "Your contact is busy" -msgstr "Je contactpersoon is bezig" - -#: [visio]declined -msgid "Declined" -msgstr "Afgewezen" - -#: [visio]calling -msgid "Is calling you" -msgstr "Belt je" - -#: [visio]call -msgid "Call" -msgstr "Bellen" - -#: [visio]hang_up -msgid "Hang up" -msgstr "Ophangen" - -#: [visio]connection -msgid "Connection" -msgstr "Verbinding" - #: [global]no_js msgid "You don't have javascript enabled. Good luck with that." msgstr "Je hebt javascript uit staan. Veel succes daarmee." @@ -1863,6 +1774,10 @@ msgstr "Inloggen" msgid "Feed" msgstr "Feed" +#: [page]posts +msgid "Posts" +msgstr "Berichten" + #: [page]gallery msgid "Gallery" msgstr "Gallerij" @@ -2740,3 +2655,77 @@ msgstr "De API is niet bereikbaar, probeer later nog eens" #: [field]type_here msgid "Type here" msgstr "Typ hier" + +#~ msgid "Data" +#~ msgstr "Data" + +#~ msgid "Cache" +#~ msgstr "Buffer" + +#~ msgid "Messages" +#~ msgstr "Berichten" + +#~ msgid "Location" +#~ msgstr "Locatie" + +#~ msgid "Wrong position" +#~ msgstr "Verkeerde positie" + +#~ msgid "Location updated" +#~ msgstr "Locatie bijgewerkt" + +#~ msgid "Update my position" +#~ msgstr "Update mijn positie" + +#~ msgid "Manage your members" +#~ msgstr "Beheer je leden" + +#~ msgid "Get the members" +#~ msgstr "Haal leden op" + +#~ msgid "Manage your subscriptions" +#~ msgstr "Beheer je aanmeldingen" + +#~ msgid "Manage the subscriptions" +#~ msgstr "Beheer de aanmeldingen" + +#~ msgid "Get the subscriptions" +#~ msgstr "Haal de aanmeldingen op" + +#~ msgid "Subscriptions saved" +#~ msgstr "Abonnementen opgeslagen" + +#~ msgid "Shared" +#~ msgstr "Gedeeld" + +#~ msgid "Search" +#~ msgstr "Zoeken" + +#~ msgctxt "[general]nickname" +#~ msgid "Nickname" +#~ msgstr "Bijnaam" + +#~ msgctxt "[accounts]accounts_nickname" +#~ msgid "Nickname" +#~ msgstr "Bijnaam" + +#~ msgid "Hung up" +#~ msgstr "Heeft opgehangen" + +#~ msgid "Your contact is busy" +#~ msgstr "Je contactpersoon is bezig" + +#~ msgid "Declined" +#~ msgstr "Afgewezen" + +#~ msgid "Is calling you" +#~ msgstr "Belt je" + +#~ msgid "Call" +#~ msgstr "Bellen" + +#~ msgid "Hang up" +#~ msgstr "Ophangen" + +#~ msgid "Connection" +#~ msgstr "Verbinding" diff --git a/sources/locales/no.po b/sources/locales/no.po index 418a82a..1d85a65 100644 --- a/sources/locales/no.po +++ b/sources/locales/no.po @@ -28,8 +28,6 @@ #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Chats/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/ConfigData/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Config/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Contact/locales.ini @@ -38,26 +36,18 @@ #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Groups/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Header/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Hello/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Help/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Init/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Location/locales.ini +#. extracted from ../app/widgets/Login/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/LoginAnonymous/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Login/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Menu/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/NodeAffiliations/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/NodeSubscriptions/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Notifs/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Post/locales.ini @@ -66,8 +56,6 @@ #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Publish/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/PubsubSubscriptionConfig/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Rooms/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Roster/locales.ini @@ -76,6 +64,8 @@ #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Statistics/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Stickers/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Subscribe/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Syndication/locales.ini @@ -84,16 +74,12 @@ #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Vcard4/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/VisioExt/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Visio/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../locales/locales.ini msgid "" msgstr "" "Project-Id-Version: Movim\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-12-29 13:42+0200\n" +"POT-Creation-Date: 2016-03-08 08:30+0200\n" "PO-Revision-Date: 2012-07-19 11:30+0000\n" "Last-Translator: Vincent \n" "Language-Team: LANGUAGE \n" @@ -529,6 +515,7 @@ msgid "Name" msgstr "Navn" #: [chatroom]nickname [general]nickname [chatrooms]nickname +#: [accounts]accounts_nickname msgid "Nickname" msgstr "" @@ -662,24 +649,8 @@ msgstr "" msgid "Load more contacts" msgstr "" -#: [title]data -msgid "Data" -msgstr "" - -#: [title]cache -msgid "Cache" -msgstr "" - -#: [title]contacts [menu]contacts [page]contacts -msgid "Contacts" -msgstr "" - -#: [title]posts [page]posts -msgid "Posts" -msgstr "" - -#: [title]messages -msgid "Messages" +#: [button]new +msgid "New conversation" msgstr "" #: [config]general @@ -726,11 +697,11 @@ msgstr "" msgid "Custom CSS URL for your blog" msgstr "" -#: [general]legend [general]general_title +#: [general]legend msgid "General Informations" msgstr "Generell informasjon" -#: [general]name [public_groups]name [chatrooms]name +#: [general]name [chatrooms]name msgid "Name" msgstr "Navn" @@ -766,7 +737,7 @@ msgstr "" msgid "Is Listening" msgstr "" -#: [position]legend [position]position_title +#: [position]legend msgid "Geographic Position" msgstr "" @@ -1027,10 +998,6 @@ msgstr "" msgid "This server doesn't exists" msgstr "" -#: [roster]search -msgid "Search in your contacts" -msgstr "" - #: [hello]chat msgid "Go on the Chat page" msgstr "" @@ -1159,26 +1126,6 @@ msgstr "" msgid "Microblog node created" msgstr "" -#: [location]title -msgid "Location" -msgstr "" - -#: [location]wrong_postition -msgid "Wrong position" -msgstr "" - -#: [location]updated -msgid "Location updated" -msgstr "" - -#: [location]update -msgid "Update my position" -msgstr "" - -#: [login_anonymous]bad_username -msgid "Bad nickname (between 4 and 40 characters)" -msgstr "" - #: [error]username msgid "Wrong username" msgstr "" @@ -1236,7 +1183,7 @@ msgstr "" msgid "Oops!" msgstr "" -#: [error]default [visio]unknown_error +#: [error]default msgid "Unknown error" msgstr "" @@ -1297,6 +1244,10 @@ msgstr "" msgid "Population" msgstr "" +#: [login_anonymous]bad_username +msgid "Bad nickname (between 4 and 40 characters)" +msgstr "" + #: [menu]empty_title msgid "No news yet..." msgstr "" @@ -1317,32 +1268,16 @@ msgstr "" msgid "All" msgstr "" -#: [affiliations]title -msgid "Manage your members" +#: [menu]mine +msgid "My publications" msgstr "" -#: [affiliations]get -msgid "Get the members" +#: [menu]contacts [page]contacts +msgid "Contacts" msgstr "" -#: [affiliations]saved -msgid "Affiliations saved" -msgstr "" - -#: [subscriptions]title -msgid "Manage your subscriptions" -msgstr "" - -#: [subscriptions]info -msgid "Manage the subscriptions" -msgstr "" - -#: [subscriptions]get -msgid "Get the subscriptions" -msgstr "" - -#: [subscriptions]saved -msgid "Subscriptions saved" +#: [menu]add_post +msgid "Add a post" msgstr "" #: [notifs]title @@ -1393,6 +1328,10 @@ msgstr "" msgid "See %s profile" msgstr "" +#: [post]blog_last +msgid "Public posts from users" +msgstr "" + #: [post]public msgid "Publish this post publicly?" msgstr "" @@ -1405,6 +1344,10 @@ msgstr "" msgid "This post is now private" msgstr "" +#: [post]public_url +msgid "Public URL of this post" +msgstr "" + #: [post]delete_title [post]delete msgid "Delete this post" msgstr "" @@ -1521,14 +1464,6 @@ msgstr "" msgid "Add some text" msgstr "" -#: [public_groups]shared -msgid "Shared" -msgstr "" - -#: [public_groups]added -msgid "%s has been added to your public groups" -msgstr "" - #: [rooms]add msgid "Add a chatroom" msgstr "" @@ -1646,7 +1581,11 @@ msgid "Contact deleted" msgstr "" #: [roster]search -msgid "Search" +msgid "Search in your contacts" +msgstr "" + +#: [roster]search_pod +msgid "Search a contact" msgstr "" #: [share]error @@ -1677,6 +1616,10 @@ msgstr "" msgid "Monthly Subscriptions Cumulated" msgstr "" +#: [sticker]sent +msgid "A sticker has been sent using Movim" +msgstr "" + #: [subscribe]info msgid "Movim is a decentralized social network, before creating a new account you need to choose a server to register." msgstr "" @@ -1725,11 +1668,6 @@ msgstr "" msgid "Your profile is now restricted" msgstr "" -#: [general]nickname -msgctxt "[general]nickname" -msgid "Nickname" -msgstr "" - #: [accounts]accounts_title msgid "Accounts" msgstr "" @@ -1746,11 +1684,6 @@ msgstr "" msgid "Yahoo Account" msgstr "" -#: [accounts]accounts_nickname -msgctxt "[accounts]accounts_nickname" -msgid "Nickname" -msgstr "" - #: [privacy]privacy_title msgid "Privacy Level" msgstr "" @@ -1760,7 +1693,7 @@ msgid "Is this profile public ?" msgstr "" #: [privacy]privacy_info -msgid "Please pay attention ! By making your profile public, all the information listed above will be available for all the Movim users and on the whole Internet." +msgid "Please pay attention ! By making your profile public, all the information listed bellow will be available for all the Movim users and on the whole Internet." msgstr "" #: [save]submit [button]submit @@ -1771,34 +1704,6 @@ msgstr "" msgid "Reset" msgstr "" -#: [visio]hung_up -msgid "Hung up" -msgstr "" - -#: [visio]busy -msgid "Your contact is busy" -msgstr "" - -#: [visio]declined -msgid "Declined" -msgstr "" - -#: [visio]calling -msgid "Is calling you" -msgstr "" - -#: [visio]call -msgid "Call" -msgstr "" - -#: [visio]hang_up -msgid "Hang up" -msgstr "" - -#: [visio]connection -msgid "Connection" -msgstr "" - #: [global]no_js msgid "You don't have javascript enabled. Good luck with that." msgstr "" @@ -1867,6 +1772,10 @@ msgstr "" msgid "Feed" msgstr "" +#: [page]posts +msgid "Posts" +msgstr "" + #: [page]gallery msgid "Gallery" msgstr "" diff --git a/sources/locales/oc.po b/sources/locales/oc.po index 1a215fb..bfde93f 100644 --- a/sources/locales/oc.po +++ b/sources/locales/oc.po @@ -28,8 +28,6 @@ #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Chats/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/ConfigData/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Config/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Contact/locales.ini @@ -38,26 +36,18 @@ #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Groups/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Header/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Hello/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Help/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Init/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Location/locales.ini +#. extracted from ../app/widgets/Login/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/LoginAnonymous/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Login/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Menu/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/NodeAffiliations/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/NodeSubscriptions/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Notifs/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Post/locales.ini @@ -66,8 +56,6 @@ #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Publish/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/PubsubSubscriptionConfig/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Rooms/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Roster/locales.ini @@ -76,6 +64,8 @@ #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Statistics/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Stickers/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Subscribe/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Syndication/locales.ini @@ -84,16 +74,12 @@ #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Vcard4/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/VisioExt/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Visio/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../locales/locales.ini msgid "" msgstr "" "Project-Id-Version: Movim\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-12-29 13:42+0200\n" +"POT-Creation-Date: 2016-03-08 08:30+0200\n" "PO-Revision-Date: 2015-06-09 12:18+0000\n" "Last-Translator: edhelas \n" "Language-Team: LANGUAGE \n" @@ -534,6 +520,7 @@ msgid "Name" msgstr "Nom" #: [chatroom]nickname [general]nickname [chatrooms]nickname +#: [accounts]accounts_nickname msgid "Nickname" msgstr "Escais" @@ -668,24 +655,8 @@ msgstr "" msgid "Load more contacts" msgstr "" -#: [title]data -msgid "Data" -msgstr "" - -#: [title]cache -msgid "Cache" -msgstr "" - -#: [title]contacts [menu]contacts [page]contacts -msgid "Contacts" -msgstr "" - -#: [title]posts [page]posts -msgid "Posts" -msgstr "" - -#: [title]messages -msgid "Messages" +#: [button]new +msgid "New conversation" msgstr "" #: [config]general @@ -734,11 +705,11 @@ msgstr "" msgid "Custom CSS URL for your blog" msgstr "" -#: [general]legend [general]general_title +#: [general]legend msgid "General Informations" msgstr "Informacions Generalas" -#: [general]name [public_groups]name [chatrooms]name +#: [general]name [chatrooms]name msgid "Name" msgstr "Nom" @@ -774,7 +745,7 @@ msgstr "" msgid "Is Listening" msgstr "" -#: [position]legend [position]position_title +#: [position]legend msgid "Geographic Position" msgstr "Posicion geografica" @@ -1040,11 +1011,6 @@ msgstr "" msgid "This server doesn't exists" msgstr "" -#: [roster]search -#, fuzzy -msgid "Search in your contacts" -msgstr "Partejat amb un contacte" - #: [hello]chat msgid "Go on the Chat page" msgstr "" @@ -1173,26 +1139,6 @@ msgstr "" msgid "Microblog node created" msgstr "" -#: [location]title -msgid "Location" -msgstr "Emplaçament" - -#: [location]wrong_postition -msgid "Wrong position" -msgstr "Marrida posicion" - -#: [location]updated -msgid "Location updated" -msgstr "Posicion geografica mesa a jorn" - -#: [location]update -msgid "Update my position" -msgstr "" - -#: [login_anonymous]bad_username -msgid "Bad nickname (between 4 and 40 characters)" -msgstr "" - #: [error]username msgid "Wrong username" msgstr "Nom d'utilizaire incorrècte" @@ -1250,7 +1196,7 @@ msgstr "" msgid "Oops!" msgstr "" -#: [error]default [visio]unknown_error +#: [error]default msgid "Unknown error" msgstr "Error desconeguda" @@ -1311,6 +1257,10 @@ msgstr "" msgid "Population" msgstr "" +#: [login_anonymous]bad_username +msgid "Bad nickname (between 4 and 40 characters)" +msgstr "" + #: [menu]empty_title msgid "No news yet..." msgstr "" @@ -1331,32 +1281,16 @@ msgstr "" msgid "All" msgstr "Tot" -#: [affiliations]title -msgid "Manage your members" -msgstr "Gerir vòstres membres" +#: [menu]mine +msgid "My publications" +msgstr "" -#: [affiliations]get -msgid "Get the members" -msgstr "Recuperar los membres" +#: [menu]contacts [page]contacts +msgid "Contacts" +msgstr "" -#: [affiliations]saved -msgid "Affiliations saved" -msgstr "Afiliacions salvadas" - -#: [subscriptions]title -msgid "Manage your subscriptions" -msgstr "Gerir vòstres abonaments" - -#: [subscriptions]info -msgid "Manage the subscriptions" -msgstr "Gerir los abonaments" - -#: [subscriptions]get -msgid "Get the subscriptions" -msgstr "Recuperar los abonaments" - -#: [subscriptions]saved -msgid "Subscriptions saved" +#: [menu]add_post +msgid "Add a post" msgstr "" #: [notifs]title @@ -1407,6 +1341,11 @@ msgstr "" msgid "See %s profile" msgstr "" +#: [post]blog_last +#, fuzzy +msgid "Public posts from users" +msgstr "Gropes publics" + #: [post]public #, fuzzy msgid "Publish this post publicly?" @@ -1421,6 +1360,11 @@ msgstr "Es lo perfil public ?" msgid "This post is now private" msgstr "" +#: [post]public_url +#, fuzzy +msgid "Public URL of this post" +msgstr "Es lo perfil public ?" + #: [post]delete_title [post]delete msgid "Delete this post" msgstr "" @@ -1537,14 +1481,6 @@ msgstr "" msgid "Add some text" msgstr "" -#: [public_groups]shared -msgid "Shared" -msgstr "" - -#: [public_groups]added -msgid "%s has been added to your public groups" -msgstr "" - #: [rooms]add msgid "Add a chatroom" msgstr "" @@ -1663,8 +1599,14 @@ msgid "Contact deleted" msgstr "" #: [roster]search -msgid "Search" -msgstr "Recercar" +#, fuzzy +msgid "Search in your contacts" +msgstr "Partejat amb un contacte" + +#: [roster]search_pod +#, fuzzy +msgid "Search a contact" +msgstr "Partejat amb un contacte" #: [share]error msgid "This is not a valid url" @@ -1694,6 +1636,10 @@ msgstr "" msgid "Monthly Subscriptions Cumulated" msgstr "" +#: [sticker]sent +msgid "A sticker has been sent using Movim" +msgstr "" + #: [subscribe]info msgid "Movim is a decentralized social network, before creating a new account you need to choose a server to register." msgstr "" @@ -1743,12 +1689,6 @@ msgstr "" msgid "Your profile is now restricted" msgstr "" -#: [general]nickname -#, fuzzy -msgctxt "[general]nickname" -msgid "Nickname" -msgstr "Escais" - #: [accounts]accounts_title msgid "Accounts" msgstr "" @@ -1766,12 +1706,6 @@ msgstr "" msgid "Yahoo Account" msgstr "%s - Compte" -#: [accounts]accounts_nickname -#, fuzzy -msgctxt "[accounts]accounts_nickname" -msgid "Nickname" -msgstr "Escais" - #: [privacy]privacy_title msgid "Privacy Level" msgstr "Nivèl de confidencialitat" @@ -1781,7 +1715,7 @@ msgid "Is this profile public ?" msgstr "Es lo perfil public ?" #: [privacy]privacy_info -msgid "Please pay attention ! By making your profile public, all the information listed above will be available for all the Movim users and on the whole Internet." +msgid "Please pay attention ! By making your profile public, all the information listed bellow will be available for all the Movim users and on the whole Internet." msgstr "" #: [save]submit [button]submit @@ -1792,34 +1726,6 @@ msgstr "Validar" msgid "Reset" msgstr "Reïnicializar" -#: [visio]hung_up -msgid "Hung up" -msgstr "" - -#: [visio]busy -msgid "Your contact is busy" -msgstr "" - -#: [visio]declined -msgid "Declined" -msgstr "" - -#: [visio]calling -msgid "Is calling you" -msgstr "" - -#: [visio]call -msgid "Call" -msgstr "" - -#: [visio]hang_up -msgid "Hang up" -msgstr "" - -#: [visio]connection -msgid "Connection" -msgstr "" - #: [global]no_js msgid "You don't have javascript enabled. Good luck with that." msgstr "" @@ -1888,6 +1794,10 @@ msgstr "" msgid "Feed" msgstr "Flux" +#: [page]posts +msgid "Posts" +msgstr "" + #: [page]gallery msgid "Gallery" msgstr "" @@ -2770,6 +2680,46 @@ msgstr "" msgid "Type here" msgstr "" +#~ msgid "Location" +#~ msgstr "Emplaçament" + +#~ msgid "Wrong position" +#~ msgstr "Marrida posicion" + +#~ msgid "Location updated" +#~ msgstr "Posicion geografica mesa a jorn" + +#~ msgid "Manage your members" +#~ msgstr "Gerir vòstres membres" + +#~ msgid "Get the members" +#~ msgstr "Recuperar los membres" + +#~ msgid "Affiliations saved" +#~ msgstr "Afiliacions salvadas" + +#~ msgid "Manage your subscriptions" +#~ msgstr "Gerir vòstres abonaments" + +#~ msgid "Manage the subscriptions" +#~ msgstr "Gerir los abonaments" + +#~ msgid "Get the subscriptions" +#~ msgstr "Recuperar los abonaments" + +#~ msgid "Search" +#~ msgstr "Recercar" + +#, fuzzy +#~ msgctxt "[general]nickname" +#~ msgid "Nickname" +#~ msgstr "Escais" + +#, fuzzy +#~ msgctxt "[accounts]accounts_nickname" +#~ msgid "Nickname" +#~ msgstr "Escais" + #~ msgid "Your web browser is too old to use with Movim." #~ msgstr "Vòstre navigador es tròp vielh per utilizar Movim" diff --git a/sources/locales/pl.po b/sources/locales/pl.po index 9de5751..2cf5ce8 100644 --- a/sources/locales/pl.po +++ b/sources/locales/pl.po @@ -28,8 +28,6 @@ #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Chats/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/ConfigData/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Config/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Contact/locales.ini @@ -38,26 +36,18 @@ #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Groups/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Header/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Hello/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Help/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Init/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Location/locales.ini +#. extracted from ../app/widgets/Login/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/LoginAnonymous/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Login/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Menu/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/NodeAffiliations/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/NodeSubscriptions/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Notifs/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Post/locales.ini @@ -66,8 +56,6 @@ #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Publish/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/PubsubSubscriptionConfig/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Rooms/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Roster/locales.ini @@ -76,6 +64,8 @@ #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Statistics/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Stickers/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Subscribe/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Syndication/locales.ini @@ -84,16 +74,12 @@ #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Vcard4/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/VisioExt/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Visio/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../locales/locales.ini msgid "" msgstr "" "Project-Id-Version: movim\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-12-29 13:42+0200\n" +"POT-Creation-Date: 2016-03-08 08:30+0200\n" "PO-Revision-Date: 2015-12-29 12:43+0000\n" "Last-Translator: Jaussoin Timothée \n" "Language-Team: Polish (http://www.transifex.com/movim/movim/language/pl/)\n" @@ -525,6 +511,7 @@ msgid "Name" msgstr "Nazwa" #: [chatroom]nickname [general]nickname [chatrooms]nickname +#: [accounts]accounts_nickname msgid "Nickname" msgstr "Nick" @@ -657,25 +644,9 @@ msgstr "Czatuj z kontaktem" msgid "Load more contacts" msgstr "Załaduj więcej kontaktów" -#: [title]data -msgid "Data" -msgstr "Dane" - -#: [title]cache -msgid "Cache" -msgstr "Ciasteczka" - -#: [title]contacts [menu]contacts [page]contacts -msgid "Contacts" -msgstr "Kontakty" - -#: [title]posts [page]posts -msgid "Posts" -msgstr "Posty" - -#: [title]messages -msgid "Messages" -msgstr "Wiadomości" +#: [button]new +msgid "New conversation" +msgstr "" #: [config]general msgid "General" @@ -721,11 +692,11 @@ msgstr "Użyj powiadomień na pulpicie" msgid "Custom CSS URL for your blog" msgstr "" -#: [general]legend [general]general_title +#: [general]legend msgid "General Informations" msgstr "Ogólne Informacje" -#: [general]name [public_groups]name [chatrooms]name +#: [general]name [chatrooms]name msgid "Name" msgstr "Nazwa" @@ -761,7 +732,7 @@ msgstr "Inne Konta" msgid "Is Listening" msgstr "Słucha" -#: [position]legend [position]position_title +#: [position]legend msgid "Geographic Position" msgstr "Pozycja Geograficzna" @@ -1021,10 +992,6 @@ msgstr "%s wpisów" msgid "This server doesn't exists" msgstr "Serwer nie istnieje" -#: [roster]search -msgid "Search in your contacts" -msgstr "Szukaj w swoich kontaktach" - #: [hello]chat msgid "Go on the Chat page" msgstr "Przejdź do zakładki Czatu" @@ -1153,26 +1120,6 @@ msgstr "Węzeł subskrypcji utworzony" msgid "Microblog node created" msgstr "Węzeł mikrobloga utworzony" -#: [location]title -msgid "Location" -msgstr "Lokalizacja" - -#: [location]wrong_postition -msgid "Wrong position" -msgstr "Zła pozycja" - -#: [location]updated -msgid "Location updated" -msgstr "Lokalizacja zaktualizowana" - -#: [location]update -msgid "Update my position" -msgstr "Zaktualizuj moją pozycję" - -#: [login_anonymous]bad_username -msgid "Bad nickname (between 4 and 40 characters)" -msgstr "Zły nick (między 4 a 40 znakami)" - #: [error]username msgid "Wrong username" msgstr "Zła nazwa użytkownika" @@ -1230,7 +1177,7 @@ msgstr "Niemożliwy login" msgid "Oops!" msgstr "Ups!" -#: [error]default [visio]unknown_error +#: [error]default msgid "Unknown error" msgstr "Nieznany błąd" @@ -1291,6 +1238,10 @@ msgstr "Połączono" msgid "Population" msgstr "Populacja" +#: [login_anonymous]bad_username +msgid "Bad nickname (between 4 and 40 characters)" +msgstr "Zły nick (między 4 a 40 znakami)" + #: [menu]empty_title msgid "No news yet..." msgstr "Chwilowo brak wiadomości..." @@ -1311,33 +1262,19 @@ msgstr "Wpis jest publiczny" msgid "All" msgstr "Wszystko" -#: [affiliations]title -msgid "Manage your members" -msgstr "Zarządzaj członkami" +#: [menu]mine +#, fuzzy +msgid "My publications" +msgstr "Moje Subskrypcje" -#: [affiliations]get -msgid "Get the members" -msgstr "Pozyskaj członków" +#: [menu]contacts [page]contacts +msgid "Contacts" +msgstr "Kontakty" -#: [affiliations]saved -msgid "Affiliations saved" -msgstr "Przynależność zapisana" - -#: [subscriptions]title -msgid "Manage your subscriptions" -msgstr "Zarządzaj swoimi subskrypcjami" - -#: [subscriptions]info -msgid "Manage the subscriptions" -msgstr "Zarządzaj subskrypcjami" - -#: [subscriptions]get -msgid "Get the subscriptions" -msgstr "Pozyskaj subskrypcje" - -#: [subscriptions]saved -msgid "Subscriptions saved" -msgstr "Subskrypcje zapisane" +#: [menu]add_post +#, fuzzy +msgid "Add a post" +msgstr "Dodaj komentarz" #: [notifs]title msgid "Pending Invitations" @@ -1387,6 +1324,11 @@ msgstr "To jest ponownie opublikowany wpis z %s" msgid "See %s profile" msgstr "Zobacz profil %s" +#: [post]blog_last +#, fuzzy +msgid "Public posts from users" +msgstr "Publiczne Grupy" + #: [post]public msgid "Publish this post publicly?" msgstr "Opublikować wpis publicznie?" @@ -1399,6 +1341,11 @@ msgstr "" msgid "This post is now private" msgstr "" +#: [post]public_url +#, fuzzy +msgid "Public URL of this post" +msgstr "Opublikować wpis publicznie?" + #: [post]delete_title [post]delete msgid "Delete this post" msgstr "Usuń ten wpis" @@ -1515,14 +1462,6 @@ msgstr "Kliknij tutaj by dodać trochę tekstu do swojej publikacji" msgid "Add some text" msgstr "Dodaj trochę tekstu" -#: [public_groups]shared -msgid "Shared" -msgstr "Udostępnione" - -#: [public_groups]added -msgid "%s has been added to your public groups" -msgstr "%s został dodany do twojej publicznej grupy" - #: [rooms]add msgid "Add a chatroom" msgstr "Dodaj pokój czatowy" @@ -1640,8 +1579,13 @@ msgid "Contact deleted" msgstr "Kontakt usunięty" #: [roster]search -msgid "Search" -msgstr "Szukaj" +msgid "Search in your contacts" +msgstr "Szukaj w swoich kontaktach" + +#: [roster]search_pod +#, fuzzy +msgid "Search a contact" +msgstr "Szukaj w swoich kontaktach" #: [share]error msgid "This is not a valid url" @@ -1671,6 +1615,10 @@ msgstr "Miesięczne Subskrypcje" msgid "Monthly Subscriptions Cumulated" msgstr "Miesięczne Subskrypcje w sumie" +#: [sticker]sent +msgid "A sticker has been sent using Movim" +msgstr "" + #: [subscribe]info msgid "Movim is a decentralized social network, before creating a new account you need to choose a server to register." msgstr "Movim jest zdecentralizowaną siecią społecznościową. Przed utworzeniem nowego konta wybierz serwer do zarejestrowania się." @@ -1719,11 +1667,6 @@ msgstr "Twój profil jest teraz publiczny" msgid "Your profile is now restricted" msgstr "Twój profil jest teraz zablokowany" -#: [general]nickname -msgctxt "[general]nickname" -msgid "Nickname" -msgstr "Nick" - #: [accounts]accounts_title msgid "Accounts" msgstr "Konta" @@ -1740,11 +1683,6 @@ msgstr "Skype" msgid "Yahoo Account" msgstr "Konto Yahoo" -#: [accounts]accounts_nickname -msgctxt "[accounts]accounts_nickname" -msgid "Nickname" -msgstr "Nick" - #: [privacy]privacy_title msgid "Privacy Level" msgstr "Poziom Prywatności" @@ -1754,7 +1692,8 @@ msgid "Is this profile public ?" msgstr "Czy ten profil jest publiczny ?" #: [privacy]privacy_info -msgid "Please pay attention ! By making your profile public, all the information listed above will be available for all the Movim users and on the whole Internet." +#, fuzzy +msgid "Please pay attention ! By making your profile public, all the information listed bellow will be available for all the Movim users and on the whole Internet." msgstr "Proszę o uwagę ! Poprzez zmiany profilu na publiczny wszystkie powyższe informacje będą dostępne dla każdego użytkownika Movim oraz dla każdego w Internecie." #: [save]submit [button]submit @@ -1765,34 +1704,6 @@ msgstr "Wyślij" msgid "Reset" msgstr "Resetuj" -#: [visio]hung_up -msgid "Hung up" -msgstr "Rozłącz się" - -#: [visio]busy -msgid "Your contact is busy" -msgstr "Kontakt jest zajęty" - -#: [visio]declined -msgid "Declined" -msgstr "Odrzucono" - -#: [visio]calling -msgid "Is calling you" -msgstr "Dzwoni do ciebie" - -#: [visio]call -msgid "Call" -msgstr "Dzwoń" - -#: [visio]hang_up -msgid "Hang up" -msgstr "Rozłącz" - -#: [visio]connection -msgid "Connection" -msgstr "Łączenie" - #: [global]no_js msgid "You don't have javascript enabled. Good luck with that." msgstr "Nie masz włączonego javascript. Zatem powodzenia." @@ -1861,6 +1772,10 @@ msgstr "Zaloguj" msgid "Feed" msgstr "Treści" +#: [page]posts +msgid "Posts" +msgstr "Posty" + #: [page]gallery msgid "Gallery" msgstr "Galeria" @@ -2738,3 +2653,83 @@ msgstr "Interfejs nieosiągalny, spróbuj ponownie później" #: [field]type_here msgid "Type here" msgstr "Pisz tutaj" + +#~ msgid "Data" +#~ msgstr "Dane" + +#~ msgid "Cache" +#~ msgstr "Ciasteczka" + +#~ msgid "Messages" +#~ msgstr "Wiadomości" + +#~ msgid "Location" +#~ msgstr "Lokalizacja" + +#~ msgid "Wrong position" +#~ msgstr "Zła pozycja" + +#~ msgid "Location updated" +#~ msgstr "Lokalizacja zaktualizowana" + +#~ msgid "Update my position" +#~ msgstr "Zaktualizuj moją pozycję" + +#~ msgid "Manage your members" +#~ msgstr "Zarządzaj członkami" + +#~ msgid "Get the members" +#~ msgstr "Pozyskaj członków" + +#~ msgid "Affiliations saved" +#~ msgstr "Przynależność zapisana" + +#~ msgid "Manage your subscriptions" +#~ msgstr "Zarządzaj swoimi subskrypcjami" + +#~ msgid "Manage the subscriptions" +#~ msgstr "Zarządzaj subskrypcjami" + +#~ msgid "Get the subscriptions" +#~ msgstr "Pozyskaj subskrypcje" + +#~ msgid "Subscriptions saved" +#~ msgstr "Subskrypcje zapisane" + +#~ msgid "Shared" +#~ msgstr "Udostępnione" + +#~ msgid "%s has been added to your public groups" +#~ msgstr "%s został dodany do twojej publicznej grupy" + +#~ msgid "Search" +#~ msgstr "Szukaj" + +#~ msgctxt "[general]nickname" +#~ msgid "Nickname" +#~ msgstr "Nick" + +#~ msgctxt "[accounts]accounts_nickname" +#~ msgid "Nickname" +#~ msgstr "Nick" + +#~ msgid "Hung up" +#~ msgstr "Rozłącz się" + +#~ msgid "Your contact is busy" +#~ msgstr "Kontakt jest zajęty" + +#~ msgid "Declined" +#~ msgstr "Odrzucono" + +#~ msgid "Is calling you" +#~ msgstr "Dzwoni do ciebie" + +#~ msgid "Call" +#~ msgstr "Dzwoń" + +#~ msgid "Hang up" +#~ msgstr "Rozłącz" + +#~ msgid "Connection" +#~ msgstr "Łączenie" diff --git a/sources/locales/pt.po b/sources/locales/pt.po index d7f4bf1..566dab1 100644 --- a/sources/locales/pt.po +++ b/sources/locales/pt.po @@ -30,8 +30,6 @@ #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Chats/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/ConfigData/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Config/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Contact/locales.ini @@ -40,26 +38,18 @@ #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Groups/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Header/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Hello/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Help/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Init/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Location/locales.ini +#. extracted from ../app/widgets/Login/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/LoginAnonymous/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Login/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Menu/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/NodeAffiliations/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/NodeSubscriptions/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Notifs/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Post/locales.ini @@ -68,8 +58,6 @@ #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Publish/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/PubsubSubscriptionConfig/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Rooms/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Roster/locales.ini @@ -78,6 +66,8 @@ #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Statistics/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Stickers/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Subscribe/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Syndication/locales.ini @@ -86,16 +76,12 @@ #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Vcard4/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/VisioExt/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Visio/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../locales/locales.ini msgid "" msgstr "" "Project-Id-Version: movim\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-12-29 13:42+0200\n" +"POT-Creation-Date: 2016-03-08 08:30+0200\n" "PO-Revision-Date: 2015-12-29 12:43+0000\n" "Last-Translator: Jaussoin Timothée \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/movim/movim/language/pt_BR/)\n" @@ -527,6 +513,7 @@ msgid "Name" msgstr "Nome" #: [chatroom]nickname [general]nickname [chatrooms]nickname +#: [accounts]accounts_nickname msgid "Nickname" msgstr "Apelido" @@ -659,25 +646,9 @@ msgstr "Conversar com um contato" msgid "Load more contacts" msgstr "Carregar mais contatos" -#: [title]data -msgid "Data" -msgstr "Dado" - -#: [title]cache -msgid "Cache" -msgstr "Cache" - -#: [title]contacts [menu]contacts [page]contacts -msgid "Contacts" -msgstr "Contatos" - -#: [title]posts [page]posts -msgid "Posts" -msgstr "Posts" - -#: [title]messages -msgid "Messages" -msgstr "Mensagens" +#: [button]new +msgid "New conversation" +msgstr "" #: [config]general msgid "General" @@ -723,11 +694,11 @@ msgstr "Usar notificações desktop" msgid "Custom CSS URL for your blog" msgstr "" -#: [general]legend [general]general_title +#: [general]legend msgid "General Informations" msgstr "Informações Gerais" -#: [general]name [public_groups]name [chatrooms]name +#: [general]name [chatrooms]name msgid "Name" msgstr "Nome" @@ -763,7 +734,7 @@ msgstr "Outras contas" msgid "Is Listening" msgstr "Escutando" -#: [position]legend [position]position_title +#: [position]legend msgid "Geographic Position" msgstr "Posição geográfica" @@ -1023,10 +994,6 @@ msgstr "%s posts" msgid "This server doesn't exists" msgstr "Este servidor não existe." -#: [roster]search -msgid "Search in your contacts" -msgstr "Procurar em seus contatos" - #: [hello]chat msgid "Go on the Chat page" msgstr "Ir para a página de Conversa" @@ -1155,26 +1122,6 @@ msgstr "" msgid "Microblog node created" msgstr "" -#: [location]title -msgid "Location" -msgstr "Localização" - -#: [location]wrong_postition -msgid "Wrong position" -msgstr "Posição errada" - -#: [location]updated -msgid "Location updated" -msgstr "Localização atualizada" - -#: [location]update -msgid "Update my position" -msgstr "Atualizar minha posição" - -#: [login_anonymous]bad_username -msgid "Bad nickname (between 4 and 40 characters)" -msgstr "Apelido ruim (entre 4 e 40 caracteres)" - #: [error]username msgid "Wrong username" msgstr "Nome de usuário incorreto" @@ -1232,7 +1179,7 @@ msgstr "Login impossível" msgid "Oops!" msgstr "Oops!" -#: [error]default [visio]unknown_error +#: [error]default msgid "Unknown error" msgstr "Erro desconhecido" @@ -1293,6 +1240,10 @@ msgstr "Conectado" msgid "Population" msgstr "População" +#: [login_anonymous]bad_username +msgid "Bad nickname (between 4 and 40 characters)" +msgstr "Apelido ruim (entre 4 e 40 caracteres)" + #: [menu]empty_title msgid "No news yet..." msgstr "Ainda sem novidades..." @@ -1313,33 +1264,19 @@ msgstr "Este post é público" msgid "All" msgstr "Tudo" -#: [affiliations]title -msgid "Manage your members" -msgstr "Gerenciar seus membros" +#: [menu]mine +#, fuzzy +msgid "My publications" +msgstr "Minhas Inscrições" -#: [affiliations]get -msgid "Get the members" -msgstr "Obter os membros" +#: [menu]contacts [page]contacts +msgid "Contacts" +msgstr "Contatos" -#: [affiliations]saved -msgid "Affiliations saved" -msgstr "Filiações salvas" - -#: [subscriptions]title -msgid "Manage your subscriptions" -msgstr "Gerencie suas inscrições" - -#: [subscriptions]info -msgid "Manage the subscriptions" -msgstr "Gerencie as inscrições" - -#: [subscriptions]get -msgid "Get the subscriptions" -msgstr "Verificar as inscrições" - -#: [subscriptions]saved -msgid "Subscriptions saved" -msgstr "Inscrições salvas" +#: [menu]add_post +#, fuzzy +msgid "Add a post" +msgstr "Adicionar um comentário" #: [notifs]title msgid "Pending Invitations" @@ -1389,6 +1326,11 @@ msgstr "Isto é um re-post de %s" msgid "See %s profile" msgstr "Ver o perfil de %s" +#: [post]blog_last +#, fuzzy +msgid "Public posts from users" +msgstr "Grupos Públicos" + #: [post]public msgid "Publish this post publicly?" msgstr "Publicar este post publicamente?" @@ -1401,6 +1343,11 @@ msgstr "" msgid "This post is now private" msgstr "" +#: [post]public_url +#, fuzzy +msgid "Public URL of this post" +msgstr "Publicar este post publicamente?" + #: [post]delete_title [post]delete msgid "Delete this post" msgstr "Deletar este post" @@ -1517,14 +1464,6 @@ msgstr "Clique aqui para adicionar algum texto para a sua publicação" msgid "Add some text" msgstr "Adicionar algum texto" -#: [public_groups]shared -msgid "Shared" -msgstr "Compartilhado" - -#: [public_groups]added -msgid "%s has been added to your public groups" -msgstr "%s foi adicionado aos seus grupos públicos" - #: [rooms]add msgid "Add a chatroom" msgstr "Adicionar uma Sala de Conversa" @@ -1642,8 +1581,13 @@ msgid "Contact deleted" msgstr "Contato deletado" #: [roster]search -msgid "Search" -msgstr "Procurar" +msgid "Search in your contacts" +msgstr "Procurar em seus contatos" + +#: [roster]search_pod +#, fuzzy +msgid "Search a contact" +msgstr "Procurar em seus contatos" #: [share]error msgid "This is not a valid url" @@ -1673,6 +1617,10 @@ msgstr "Inscrições Mensais" msgid "Monthly Subscriptions Cumulated" msgstr "Inscrições Mensais Acumuladas" +#: [sticker]sent +msgid "A sticker has been sent using Movim" +msgstr "" + #: [subscribe]info msgid "Movim is a decentralized social network, before creating a new account you need to choose a server to register." msgstr "Movim é uma rede social descentralizada, antes de criar uma conta nova você precisa escolher um servidor para registrar." @@ -1721,11 +1669,6 @@ msgstr "Seu perfil agora é público" msgid "Your profile is now restricted" msgstr "Seu perfil está restrito agora" -#: [general]nickname -msgctxt "[general]nickname" -msgid "Nickname" -msgstr "Apelido" - #: [accounts]accounts_title msgid "Accounts" msgstr "Contas" @@ -1742,11 +1685,6 @@ msgstr "Skype" msgid "Yahoo Account" msgstr "Conta Yahoo" -#: [accounts]accounts_nickname -msgctxt "[accounts]accounts_nickname" -msgid "Nickname" -msgstr "Apelido" - #: [privacy]privacy_title msgid "Privacy Level" msgstr "Nível de privacidade" @@ -1756,7 +1694,8 @@ msgid "Is this profile public ?" msgstr "Este perfil é público?" #: [privacy]privacy_info -msgid "Please pay attention ! By making your profile public, all the information listed above will be available for all the Movim users and on the whole Internet." +#, fuzzy +msgid "Please pay attention ! By making your profile public, all the information listed bellow will be available for all the Movim users and on the whole Internet." msgstr "Por favor, atenção! Ao definir o seu perfil como 'Público', todas as informações listadas abaixo estarão disponíveis para todos os usuários do Movim e em toda a Internet." #: [save]submit [button]submit @@ -1767,34 +1706,6 @@ msgstr "Enviar" msgid "Reset" msgstr "Restaurar" -#: [visio]hung_up -msgid "Hung up" -msgstr "" - -#: [visio]busy -msgid "Your contact is busy" -msgstr "Seu contato está ocupado" - -#: [visio]declined -msgid "Declined" -msgstr "Recusado" - -#: [visio]calling -msgid "Is calling you" -msgstr "Está chamando você" - -#: [visio]call -msgid "Call" -msgstr "Chamar" - -#: [visio]hang_up -msgid "Hang up" -msgstr "" - -#: [visio]connection -msgid "Connection" -msgstr "Conexão" - #: [global]no_js msgid "You don't have javascript enabled. Good luck with that." msgstr "Você não possui javascript habilitado. Boa sorte." @@ -1863,6 +1774,10 @@ msgstr "Login" msgid "Feed" msgstr "Fonte de notícias" +#: [page]posts +msgid "Posts" +msgstr "Posts" + #: [page]gallery msgid "Gallery" msgstr "Galeria" @@ -2740,3 +2655,77 @@ msgstr "A API está inalcançável, tente mais tarde" #: [field]type_here msgid "Type here" msgstr "Digite aqui" + +#~ msgid "Data" +#~ msgstr "Dado" + +#~ msgid "Cache" +#~ msgstr "Cache" + +#~ msgid "Messages" +#~ msgstr "Mensagens" + +#~ msgid "Location" +#~ msgstr "Localização" + +#~ msgid "Wrong position" +#~ msgstr "Posição errada" + +#~ msgid "Location updated" +#~ msgstr "Localização atualizada" + +#~ msgid "Update my position" +#~ msgstr "Atualizar minha posição" + +#~ msgid "Manage your members" +#~ msgstr "Gerenciar seus membros" + +#~ msgid "Get the members" +#~ msgstr "Obter os membros" + +#~ msgid "Affiliations saved" +#~ msgstr "Filiações salvas" + +#~ msgid "Manage your subscriptions" +#~ msgstr "Gerencie suas inscrições" + +#~ msgid "Manage the subscriptions" +#~ msgstr "Gerencie as inscrições" + +#~ msgid "Get the subscriptions" +#~ msgstr "Verificar as inscrições" + +#~ msgid "Subscriptions saved" +#~ msgstr "Inscrições salvas" + +#~ msgid "Shared" +#~ msgstr "Compartilhado" + +#~ msgid "%s has been added to your public groups" +#~ msgstr "%s foi adicionado aos seus grupos públicos" + +#~ msgid "Search" +#~ msgstr "Procurar" + +#~ msgctxt "[general]nickname" +#~ msgid "Nickname" +#~ msgstr "Apelido" + +#~ msgctxt "[accounts]accounts_nickname" +#~ msgid "Nickname" +#~ msgstr "Apelido" + +#~ msgid "Your contact is busy" +#~ msgstr "Seu contato está ocupado" + +#~ msgid "Declined" +#~ msgstr "Recusado" + +#~ msgid "Is calling you" +#~ msgstr "Está chamando você" + +#~ msgid "Call" +#~ msgstr "Chamar" + +#~ msgid "Connection" +#~ msgstr "Conexão" diff --git a/sources/locales/ro.po b/sources/locales/ro.po index e2b49fb..ea1304f 100644 --- a/sources/locales/ro.po +++ b/sources/locales/ro.po @@ -28,8 +28,6 @@ #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Chats/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/ConfigData/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Config/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Contact/locales.ini @@ -38,26 +36,18 @@ #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Groups/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Header/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Hello/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Help/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Init/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Location/locales.ini +#. extracted from ../app/widgets/Login/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/LoginAnonymous/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Login/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Menu/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/NodeAffiliations/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/NodeSubscriptions/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Notifs/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Post/locales.ini @@ -66,8 +56,6 @@ #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Publish/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/PubsubSubscriptionConfig/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Rooms/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Roster/locales.ini @@ -76,6 +64,8 @@ #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Statistics/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Stickers/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Subscribe/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Syndication/locales.ini @@ -84,16 +74,12 @@ #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Vcard4/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/VisioExt/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Visio/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../locales/locales.ini msgid "" msgstr "" "Project-Id-Version: Movim\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-12-29 13:42+0200\n" +"POT-Creation-Date: 2016-03-08 08:30+0200\n" "PO-Revision-Date: 2011-10-26 21:35+0000\n" "Last-Translator: edhelas \n" "Language-Team: LANGUAGE \n" @@ -530,6 +516,7 @@ msgid "Name" msgstr "Nume" #: [chatroom]nickname [general]nickname [chatrooms]nickname +#: [accounts]accounts_nickname msgid "Nickname" msgstr "Porecla" @@ -663,24 +650,8 @@ msgstr "" msgid "Load more contacts" msgstr "" -#: [title]data -msgid "Data" -msgstr "" - -#: [title]cache -msgid "Cache" -msgstr "" - -#: [title]contacts [menu]contacts [page]contacts -msgid "Contacts" -msgstr "" - -#: [title]posts [page]posts -msgid "Posts" -msgstr "" - -#: [title]messages -msgid "Messages" +#: [button]new +msgid "New conversation" msgstr "" #: [config]general @@ -729,11 +700,11 @@ msgstr "" msgid "Custom CSS URL for your blog" msgstr "" -#: [general]legend [general]general_title +#: [general]legend msgid "General Informations" msgstr "Informatii generale" -#: [general]name [public_groups]name [chatrooms]name +#: [general]name [chatrooms]name msgid "Name" msgstr "Nume" @@ -769,7 +740,7 @@ msgstr "" msgid "Is Listening" msgstr "" -#: [position]legend [position]position_title +#: [position]legend msgid "Geographic Position" msgstr "" @@ -1030,10 +1001,6 @@ msgstr "" msgid "This server doesn't exists" msgstr "" -#: [roster]search -msgid "Search in your contacts" -msgstr "" - #: [hello]chat msgid "Go on the Chat page" msgstr "" @@ -1162,26 +1129,6 @@ msgstr "" msgid "Microblog node created" msgstr "" -#: [location]title -msgid "Location" -msgstr "" - -#: [location]wrong_postition -msgid "Wrong position" -msgstr "" - -#: [location]updated -msgid "Location updated" -msgstr "" - -#: [location]update -msgid "Update my position" -msgstr "" - -#: [login_anonymous]bad_username -msgid "Bad nickname (between 4 and 40 characters)" -msgstr "" - #: [error]username msgid "Wrong username" msgstr "" @@ -1239,7 +1186,7 @@ msgstr "" msgid "Oops!" msgstr "" -#: [error]default [visio]unknown_error +#: [error]default msgid "Unknown error" msgstr "" @@ -1300,6 +1247,10 @@ msgstr "" msgid "Population" msgstr "" +#: [login_anonymous]bad_username +msgid "Bad nickname (between 4 and 40 characters)" +msgstr "" + #: [menu]empty_title msgid "No news yet..." msgstr "" @@ -1320,32 +1271,16 @@ msgstr "" msgid "All" msgstr "" -#: [affiliations]title -msgid "Manage your members" +#: [menu]mine +msgid "My publications" msgstr "" -#: [affiliations]get -msgid "Get the members" +#: [menu]contacts [page]contacts +msgid "Contacts" msgstr "" -#: [affiliations]saved -msgid "Affiliations saved" -msgstr "" - -#: [subscriptions]title -msgid "Manage your subscriptions" -msgstr "" - -#: [subscriptions]info -msgid "Manage the subscriptions" -msgstr "" - -#: [subscriptions]get -msgid "Get the subscriptions" -msgstr "" - -#: [subscriptions]saved -msgid "Subscriptions saved" +#: [menu]add_post +msgid "Add a post" msgstr "" #: [notifs]title @@ -1396,6 +1331,10 @@ msgstr "" msgid "See %s profile" msgstr "" +#: [post]blog_last +msgid "Public posts from users" +msgstr "" + #: [post]public msgid "Publish this post publicly?" msgstr "" @@ -1408,6 +1347,10 @@ msgstr "" msgid "This post is now private" msgstr "" +#: [post]public_url +msgid "Public URL of this post" +msgstr "" + #: [post]delete_title [post]delete msgid "Delete this post" msgstr "" @@ -1524,14 +1467,6 @@ msgstr "" msgid "Add some text" msgstr "" -#: [public_groups]shared -msgid "Shared" -msgstr "" - -#: [public_groups]added -msgid "%s has been added to your public groups" -msgstr "" - #: [rooms]add msgid "Add a chatroom" msgstr "" @@ -1649,7 +1584,11 @@ msgid "Contact deleted" msgstr "" #: [roster]search -msgid "Search" +msgid "Search in your contacts" +msgstr "" + +#: [roster]search_pod +msgid "Search a contact" msgstr "" #: [share]error @@ -1680,6 +1619,10 @@ msgstr "" msgid "Monthly Subscriptions Cumulated" msgstr "" +#: [sticker]sent +msgid "A sticker has been sent using Movim" +msgstr "" + #: [subscribe]info msgid "Movim is a decentralized social network, before creating a new account you need to choose a server to register." msgstr "" @@ -1728,12 +1671,6 @@ msgstr "" msgid "Your profile is now restricted" msgstr "" -#: [general]nickname -#, fuzzy -msgctxt "[general]nickname" -msgid "Nickname" -msgstr "Porecla" - #: [accounts]accounts_title msgid "Accounts" msgstr "" @@ -1750,12 +1687,6 @@ msgstr "" msgid "Yahoo Account" msgstr "" -#: [accounts]accounts_nickname -#, fuzzy -msgctxt "[accounts]accounts_nickname" -msgid "Nickname" -msgstr "Porecla" - #: [privacy]privacy_title msgid "Privacy Level" msgstr "" @@ -1765,7 +1696,7 @@ msgid "Is this profile public ?" msgstr "" #: [privacy]privacy_info -msgid "Please pay attention ! By making your profile public, all the information listed above will be available for all the Movim users and on the whole Internet." +msgid "Please pay attention ! By making your profile public, all the information listed bellow will be available for all the Movim users and on the whole Internet." msgstr "" #: [save]submit [button]submit @@ -1776,34 +1707,6 @@ msgstr "Inregistrare" msgid "Reset" msgstr "Reinitializeaza" -#: [visio]hung_up -msgid "Hung up" -msgstr "" - -#: [visio]busy -msgid "Your contact is busy" -msgstr "" - -#: [visio]declined -msgid "Declined" -msgstr "" - -#: [visio]calling -msgid "Is calling you" -msgstr "" - -#: [visio]call -msgid "Call" -msgstr "" - -#: [visio]hang_up -msgid "Hang up" -msgstr "" - -#: [visio]connection -msgid "Connection" -msgstr "" - #: [global]no_js msgid "You don't have javascript enabled. Good luck with that." msgstr "" @@ -1872,6 +1775,10 @@ msgstr "" msgid "Feed" msgstr "" +#: [page]posts +msgid "Posts" +msgstr "" + #: [page]gallery msgid "Gallery" msgstr "" @@ -2750,6 +2657,16 @@ msgstr "" msgid "Type here" msgstr "" +#, fuzzy +#~ msgctxt "[general]nickname" +#~ msgid "Nickname" +#~ msgstr "Porecla" + +#, fuzzy +#~ msgctxt "[accounts]accounts_nickname" +#~ msgid "Nickname" +#~ msgstr "Porecla" + #~ msgid "Logout" #~ msgstr "Delogare" diff --git a/sources/locales/ru.po b/sources/locales/ru.po index 7e88d85..f15406b 100644 --- a/sources/locales/ru.po +++ b/sources/locales/ru.po @@ -27,8 +27,6 @@ #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Chats/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/ConfigData/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Config/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Contact/locales.ini @@ -37,26 +35,18 @@ #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Groups/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Header/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Hello/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Help/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Init/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Location/locales.ini +#. extracted from ../app/widgets/Login/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/LoginAnonymous/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Login/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Menu/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/NodeAffiliations/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/NodeSubscriptions/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Notifs/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Post/locales.ini @@ -65,8 +55,6 @@ #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Publish/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/PubsubSubscriptionConfig/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Rooms/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Roster/locales.ini @@ -75,6 +63,8 @@ #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Statistics/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Stickers/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Subscribe/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Syndication/locales.ini @@ -83,16 +73,12 @@ #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Vcard4/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/VisioExt/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Visio/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../locales/locales.ini msgid "" msgstr "" "Project-Id-Version: movim\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-12-29 13:42+0200\n" +"POT-Creation-Date: 2016-03-08 08:30+0200\n" "PO-Revision-Date: 2015-10-06 21:34+0000\n" "Last-Translator: Jaussoin Timothée \n" "Language-Team: Russian (http://www.transifex.com/movim/movim/language/ru/)\n" @@ -525,6 +511,7 @@ msgid "Name" msgstr "" #: [chatroom]nickname [general]nickname [chatrooms]nickname +#: [accounts]accounts_nickname msgid "Nickname" msgstr "Псевдоним" @@ -657,25 +644,9 @@ msgstr "Пообщаться с контактом" msgid "Load more contacts" msgstr "" -#: [title]data -msgid "Data" -msgstr "Данные" - -#: [title]cache -msgid "Cache" -msgstr "Кэш" - -#: [title]contacts [menu]contacts [page]contacts -msgid "Contacts" -msgstr "Контакты" - -#: [title]posts [page]posts -msgid "Posts" -msgstr "Записи" - -#: [title]messages -msgid "Messages" -msgstr "Сообщения" +#: [button]new +msgid "New conversation" +msgstr "" #: [config]general msgid "General" @@ -723,11 +694,11 @@ msgstr "Использовать оповещения ОС" msgid "Custom CSS URL for your blog" msgstr "" -#: [general]legend [general]general_title +#: [general]legend msgid "General Informations" msgstr "Общая информация" -#: [general]name [public_groups]name [chatrooms]name +#: [general]name [chatrooms]name msgid "Name" msgstr "Имя" @@ -763,7 +734,7 @@ msgstr "Другие учётные записи" msgid "Is Listening" msgstr "" -#: [position]legend [position]position_title +#: [position]legend msgid "Geographic Position" msgstr "Географическое расположение" @@ -1023,10 +994,6 @@ msgstr "" msgid "This server doesn't exists" msgstr "" -#: [roster]search -msgid "Search in your contacts" -msgstr "" - #: [hello]chat msgid "Go on the Chat page" msgstr "" @@ -1156,26 +1123,6 @@ msgstr "Создан узел подписок" msgid "Microblog node created" msgstr "Создан узел микроблога" -#: [location]title -msgid "Location" -msgstr "Местоположение" - -#: [location]wrong_postition -msgid "Wrong position" -msgstr "Неправильная позиция" - -#: [location]updated -msgid "Location updated" -msgstr "Местонахождение обновлено" - -#: [location]update -msgid "Update my position" -msgstr "Обновить моё местоположение" - -#: [login_anonymous]bad_username -msgid "Bad nickname (between 4 and 40 characters)" -msgstr "" - #: [error]username msgid "Wrong username" msgstr "Неверное имя пользователя" @@ -1233,7 +1180,7 @@ msgstr "" msgid "Oops!" msgstr "Упс!" -#: [error]default [visio]unknown_error +#: [error]default msgid "Unknown error" msgstr "Неизвестная ошибка" @@ -1294,6 +1241,10 @@ msgstr "Соединение установлено" msgid "Population" msgstr "Население" +#: [login_anonymous]bad_username +msgid "Bad nickname (between 4 and 40 characters)" +msgstr "" + #: [menu]empty_title msgid "No news yet..." msgstr "" @@ -1314,33 +1265,19 @@ msgstr "" msgid "All" msgstr "Все" -#: [affiliations]title -msgid "Manage your members" -msgstr "Управление позицией пользователей" +#: [menu]mine +#, fuzzy +msgid "My publications" +msgstr "Публикация контакта" -#: [affiliations]get -msgid "Get the members" -msgstr "Получить членство" +#: [menu]contacts [page]contacts +msgid "Contacts" +msgstr "Контакты" -#: [affiliations]saved -msgid "Affiliations saved" -msgstr "Принадлежность сохраняется" - -#: [subscriptions]title -msgid "Manage your subscriptions" -msgstr "Управлять моими подписками" - -#: [subscriptions]info -msgid "Manage the subscriptions" -msgstr "Управлять подписками" - -#: [subscriptions]get -msgid "Get the subscriptions" -msgstr "Получить подписки" - -#: [subscriptions]saved -msgid "Subscriptions saved" -msgstr "Подписки сохранены" +#: [menu]add_post +#, fuzzy +msgid "Add a post" +msgstr "Добавить комментарий" #: [notifs]title msgid "Pending Invitations" @@ -1390,6 +1327,11 @@ msgstr "" msgid "See %s profile" msgstr "" +#: [post]blog_last +#, fuzzy +msgid "Public posts from users" +msgstr "Открытые Группы" + #: [post]public msgid "Publish this post publicly?" msgstr "" @@ -1403,6 +1345,10 @@ msgstr "Ваш профиль теперь общедоступен" msgid "This post is now private" msgstr "" +#: [post]public_url +msgid "Public URL of this post" +msgstr "" + #: [post]delete_title [post]delete msgid "Delete this post" msgstr "Удалить этот пост" @@ -1520,14 +1466,6 @@ msgstr "" msgid "Add some text" msgstr "" -#: [public_groups]shared -msgid "Shared" -msgstr "Общее" - -#: [public_groups]added -msgid "%s has been added to your public groups" -msgstr "Группа %s была добавлена в список ваших публичных групп" - #: [rooms]add msgid "Add a chatroom" msgstr "Добавить комнату" @@ -1645,8 +1583,13 @@ msgid "Contact deleted" msgstr "Контакт удалён" #: [roster]search -msgid "Search" -msgstr "Поиск" +msgid "Search in your contacts" +msgstr "" + +#: [roster]search_pod +#, fuzzy +msgid "Search a contact" +msgstr "Общий со всеми контактами" #: [share]error msgid "This is not a valid url" @@ -1676,6 +1619,10 @@ msgstr "Ежемесячные подписки" msgid "Monthly Subscriptions Cumulated" msgstr "Аккумулирующие ежемесячные подписки" +#: [sticker]sent +msgid "A sticker has been sent using Movim" +msgstr "" + #: [subscribe]info msgid "Movim is a decentralized social network, before creating a new account you need to choose a server to register." msgstr "Movim — это децентрализованная социальная сеть. Перед созданием учетной записи нужно выбрать сервер." @@ -1724,11 +1671,6 @@ msgstr "Ваш профиль теперь общедоступен" msgid "Your profile is now restricted" msgstr "Ваш профиль теперь скрыт" -#: [general]nickname -msgctxt "[general]nickname" -msgid "Nickname" -msgstr "" - #: [accounts]accounts_title msgid "Accounts" msgstr "Учётные записи" @@ -1745,11 +1687,6 @@ msgstr "Skype" msgid "Yahoo Account" msgstr "" -#: [accounts]accounts_nickname -msgctxt "[accounts]accounts_nickname" -msgid "Nickname" -msgstr "" - #: [privacy]privacy_title msgid "Privacy Level" msgstr "Уровень приватности" @@ -1759,7 +1696,8 @@ msgid "Is this profile public ?" msgstr "Этот профиль общедоступен?" #: [privacy]privacy_info -msgid "Please pay attention ! By making your profile public, all the information listed above will be available for all the Movim users and on the whole Internet." +#, fuzzy +msgid "Please pay attention ! By making your profile public, all the information listed bellow will be available for all the Movim users and on the whole Internet." msgstr "Внимание! Делая свой профиль общедоступным, вы соглашаетесь с тем, что вся нижеперечисленная информация станет доступна всем пользователям Movim и всему Интернету." #: [save]submit [button]submit @@ -1770,34 +1708,6 @@ msgstr "Отправить" msgid "Reset" msgstr "Сброс" -#: [visio]hung_up -msgid "Hung up" -msgstr "Вызов завершен" - -#: [visio]busy -msgid "Your contact is busy" -msgstr "Ваш контакт занят" - -#: [visio]declined -msgid "Declined" -msgstr "Отклонено" - -#: [visio]calling -msgid "Is calling you" -msgstr "Звонит вам" - -#: [visio]call -msgid "Call" -msgstr "Вызов" - -#: [visio]hang_up -msgid "Hang up" -msgstr "Повесить трубку" - -#: [visio]connection -msgid "Connection" -msgstr "Соединение" - #: [global]no_js msgid "You don't have javascript enabled. Good luck with that." msgstr "У вас не активирован javascript. Удачи вам в этом." @@ -1866,6 +1776,10 @@ msgstr "Имя пользователя" msgid "Feed" msgstr "Лента" +#: [page]posts +msgid "Posts" +msgstr "Записи" + #: [page]gallery msgid "Gallery" msgstr "Галерея" @@ -2744,6 +2658,78 @@ msgstr "API недоступен, попробуйте позже" msgid "Type here" msgstr "" +#~ msgid "Data" +#~ msgstr "Данные" + +#~ msgid "Cache" +#~ msgstr "Кэш" + +#~ msgid "Messages" +#~ msgstr "Сообщения" + +#~ msgid "Location" +#~ msgstr "Местоположение" + +#~ msgid "Wrong position" +#~ msgstr "Неправильная позиция" + +#~ msgid "Location updated" +#~ msgstr "Местонахождение обновлено" + +#~ msgid "Update my position" +#~ msgstr "Обновить моё местоположение" + +#~ msgid "Manage your members" +#~ msgstr "Управление позицией пользователей" + +#~ msgid "Get the members" +#~ msgstr "Получить членство" + +#~ msgid "Affiliations saved" +#~ msgstr "Принадлежность сохраняется" + +#~ msgid "Manage your subscriptions" +#~ msgstr "Управлять моими подписками" + +#~ msgid "Manage the subscriptions" +#~ msgstr "Управлять подписками" + +#~ msgid "Get the subscriptions" +#~ msgstr "Получить подписки" + +#~ msgid "Subscriptions saved" +#~ msgstr "Подписки сохранены" + +#~ msgid "Shared" +#~ msgstr "Общее" + +#~ msgid "%s has been added to your public groups" +#~ msgstr "Группа %s была добавлена в список ваших публичных групп" + +#~ msgid "Search" +#~ msgstr "Поиск" + +#~ msgid "Hung up" +#~ msgstr "Вызов завершен" + +#~ msgid "Your contact is busy" +#~ msgstr "Ваш контакт занят" + +#~ msgid "Declined" +#~ msgstr "Отклонено" + +#~ msgid "Is calling you" +#~ msgstr "Звонит вам" + +#~ msgid "Call" +#~ msgstr "Вызов" + +#~ msgid "Hang up" +#~ msgstr "Повесить трубку" + +#~ msgid "Connection" +#~ msgstr "Соединение" + #~ msgid "The URL Rewriting support is currently disabled" #~ msgstr "Поддержка URL Rewrite, на текущий момент, отключена" diff --git a/sources/locales/uk.po b/sources/locales/uk.po index 6088446..5d5b8ae 100644 --- a/sources/locales/uk.po +++ b/sources/locales/uk.po @@ -28,8 +28,6 @@ #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Chats/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/ConfigData/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Config/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Contact/locales.ini @@ -38,26 +36,18 @@ #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Groups/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Header/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Hello/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Help/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Init/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Location/locales.ini +#. extracted from ../app/widgets/Login/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/LoginAnonymous/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Login/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Menu/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/NodeAffiliations/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/NodeSubscriptions/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Notifs/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Post/locales.ini @@ -66,8 +56,6 @@ #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Publish/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/PubsubSubscriptionConfig/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Rooms/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Roster/locales.ini @@ -76,6 +64,8 @@ #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Statistics/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Stickers/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Subscribe/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Syndication/locales.ini @@ -84,16 +74,12 @@ #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Vcard4/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/VisioExt/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Visio/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../locales/locales.ini msgid "" msgstr "" "Project-Id-Version: Movim\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-12-29 13:42+0200\n" +"POT-Creation-Date: 2016-03-08 08:30+0200\n" "PO-Revision-Date: 2012-08-02 15:08+0000\n" "Last-Translator: Nazar Banakh \n" "Language-Team: LANGUAGE \n" @@ -527,6 +513,7 @@ msgid "Name" msgstr "" #: [chatroom]nickname [general]nickname [chatrooms]nickname +#: [accounts]accounts_nickname msgid "Nickname" msgstr "" @@ -659,24 +646,8 @@ msgstr "" msgid "Load more contacts" msgstr "" -#: [title]data -msgid "Data" -msgstr "" - -#: [title]cache -msgid "Cache" -msgstr "" - -#: [title]contacts [menu]contacts [page]contacts -msgid "Contacts" -msgstr "" - -#: [title]posts [page]posts -msgid "Posts" -msgstr "" - -#: [title]messages -msgid "Messages" +#: [button]new +msgid "New conversation" msgstr "" #: [config]general @@ -725,11 +696,11 @@ msgstr "" msgid "Custom CSS URL for your blog" msgstr "" -#: [general]legend [general]general_title +#: [general]legend msgid "General Informations" msgstr "" -#: [general]name [public_groups]name [chatrooms]name +#: [general]name [chatrooms]name msgid "Name" msgstr "" @@ -765,7 +736,7 @@ msgstr "" msgid "Is Listening" msgstr "" -#: [position]legend [position]position_title +#: [position]legend msgid "Geographic Position" msgstr "" @@ -1025,10 +996,6 @@ msgstr "" msgid "This server doesn't exists" msgstr "" -#: [roster]search -msgid "Search in your contacts" -msgstr "" - #: [hello]chat msgid "Go on the Chat page" msgstr "" @@ -1157,26 +1124,6 @@ msgstr "" msgid "Microblog node created" msgstr "" -#: [location]title -msgid "Location" -msgstr "" - -#: [location]wrong_postition -msgid "Wrong position" -msgstr "" - -#: [location]updated -msgid "Location updated" -msgstr "" - -#: [location]update -msgid "Update my position" -msgstr "" - -#: [login_anonymous]bad_username -msgid "Bad nickname (between 4 and 40 characters)" -msgstr "" - #: [error]username msgid "Wrong username" msgstr "" @@ -1234,7 +1181,7 @@ msgstr "" msgid "Oops!" msgstr "" -#: [error]default [visio]unknown_error +#: [error]default msgid "Unknown error" msgstr "" @@ -1295,6 +1242,10 @@ msgstr "" msgid "Population" msgstr "" +#: [login_anonymous]bad_username +msgid "Bad nickname (between 4 and 40 characters)" +msgstr "" + #: [menu]empty_title msgid "No news yet..." msgstr "" @@ -1315,32 +1266,16 @@ msgstr "" msgid "All" msgstr "" -#: [affiliations]title -msgid "Manage your members" +#: [menu]mine +msgid "My publications" msgstr "" -#: [affiliations]get -msgid "Get the members" +#: [menu]contacts [page]contacts +msgid "Contacts" msgstr "" -#: [affiliations]saved -msgid "Affiliations saved" -msgstr "" - -#: [subscriptions]title -msgid "Manage your subscriptions" -msgstr "" - -#: [subscriptions]info -msgid "Manage the subscriptions" -msgstr "" - -#: [subscriptions]get -msgid "Get the subscriptions" -msgstr "" - -#: [subscriptions]saved -msgid "Subscriptions saved" +#: [menu]add_post +msgid "Add a post" msgstr "" #: [notifs]title @@ -1391,6 +1326,10 @@ msgstr "" msgid "See %s profile" msgstr "" +#: [post]blog_last +msgid "Public posts from users" +msgstr "" + #: [post]public msgid "Publish this post publicly?" msgstr "" @@ -1403,6 +1342,10 @@ msgstr "" msgid "This post is now private" msgstr "" +#: [post]public_url +msgid "Public URL of this post" +msgstr "" + #: [post]delete_title [post]delete msgid "Delete this post" msgstr "" @@ -1519,14 +1462,6 @@ msgstr "" msgid "Add some text" msgstr "" -#: [public_groups]shared -msgid "Shared" -msgstr "" - -#: [public_groups]added -msgid "%s has been added to your public groups" -msgstr "" - #: [rooms]add msgid "Add a chatroom" msgstr "" @@ -1644,7 +1579,11 @@ msgid "Contact deleted" msgstr "" #: [roster]search -msgid "Search" +msgid "Search in your contacts" +msgstr "" + +#: [roster]search_pod +msgid "Search a contact" msgstr "" #: [share]error @@ -1675,6 +1614,10 @@ msgstr "" msgid "Monthly Subscriptions Cumulated" msgstr "" +#: [sticker]sent +msgid "A sticker has been sent using Movim" +msgstr "" + #: [subscribe]info msgid "Movim is a decentralized social network, before creating a new account you need to choose a server to register." msgstr "" @@ -1723,11 +1666,6 @@ msgstr "" msgid "Your profile is now restricted" msgstr "" -#: [general]nickname -msgctxt "[general]nickname" -msgid "Nickname" -msgstr "" - #: [accounts]accounts_title msgid "Accounts" msgstr "" @@ -1744,11 +1682,6 @@ msgstr "" msgid "Yahoo Account" msgstr "" -#: [accounts]accounts_nickname -msgctxt "[accounts]accounts_nickname" -msgid "Nickname" -msgstr "" - #: [privacy]privacy_title msgid "Privacy Level" msgstr "" @@ -1758,7 +1691,7 @@ msgid "Is this profile public ?" msgstr "" #: [privacy]privacy_info -msgid "Please pay attention ! By making your profile public, all the information listed above will be available for all the Movim users and on the whole Internet." +msgid "Please pay attention ! By making your profile public, all the information listed bellow will be available for all the Movim users and on the whole Internet." msgstr "" #: [save]submit [button]submit @@ -1769,34 +1702,6 @@ msgstr "" msgid "Reset" msgstr "" -#: [visio]hung_up -msgid "Hung up" -msgstr "" - -#: [visio]busy -msgid "Your contact is busy" -msgstr "" - -#: [visio]declined -msgid "Declined" -msgstr "" - -#: [visio]calling -msgid "Is calling you" -msgstr "" - -#: [visio]call -msgid "Call" -msgstr "" - -#: [visio]hang_up -msgid "Hang up" -msgstr "" - -#: [visio]connection -msgid "Connection" -msgstr "" - #: [global]no_js msgid "You don't have javascript enabled. Good luck with that." msgstr "" @@ -1865,6 +1770,10 @@ msgstr "" msgid "Feed" msgstr "" +#: [page]posts +msgid "Posts" +msgstr "" + #: [page]gallery msgid "Gallery" msgstr "" diff --git a/sources/locales/zh.po b/sources/locales/zh.po index eec30fa..34370ab 100644 --- a/sources/locales/zh.po +++ b/sources/locales/zh.po @@ -30,8 +30,6 @@ #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Chats/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/ConfigData/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Config/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Contact/locales.ini @@ -40,26 +38,18 @@ #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Groups/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Header/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Hello/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Help/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Init/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Location/locales.ini +#. extracted from ../app/widgets/Login/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/LoginAnonymous/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Login/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Menu/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/NodeAffiliations/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/NodeSubscriptions/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Notifs/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Post/locales.ini @@ -68,8 +58,6 @@ #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Publish/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/PubsubSubscriptionConfig/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Rooms/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Roster/locales.ini @@ -78,6 +66,8 @@ #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Statistics/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Stickers/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Subscribe/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Syndication/locales.ini @@ -86,16 +76,12 @@ #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Vcard4/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/VisioExt/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Visio/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../locales/locales.ini msgid "" msgstr "" "Project-Id-Version: movim\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-12-29 13:42+0200\n" +"POT-Creation-Date: 2016-03-08 08:30+0200\n" "PO-Revision-Date: 2015-12-29 12:43+0000\n" "Last-Translator: Jaussoin Timothée \n" "Language-Team: Chinese (China) (http://www.transifex.com/movim/movim/language/zh_CN/)\n" @@ -527,6 +513,7 @@ msgid "Name" msgstr "姓名" #: [chatroom]nickname [general]nickname [chatrooms]nickname +#: [accounts]accounts_nickname msgid "Nickname" msgstr "昵称" @@ -659,25 +646,9 @@ msgstr "同联系人聊天" msgid "Load more contacts" msgstr "加载更多联系人" -#: [title]data -msgid "Data" -msgstr "数据" - -#: [title]cache -msgid "Cache" -msgstr "缓存" - -#: [title]contacts [menu]contacts [page]contacts -msgid "Contacts" -msgstr "联系人" - -#: [title]posts [page]posts -msgid "Posts" -msgstr "帖子" - -#: [title]messages -msgid "Messages" -msgstr "消息" +#: [button]new +msgid "New conversation" +msgstr "" #: [config]general msgid "General" @@ -723,11 +694,11 @@ msgstr "使用桌面通知" msgid "Custom CSS URL for your blog" msgstr "" -#: [general]legend [general]general_title +#: [general]legend msgid "General Informations" msgstr "一般信息" -#: [general]name [public_groups]name [chatrooms]name +#: [general]name [chatrooms]name msgid "Name" msgstr "姓名" @@ -763,7 +734,7 @@ msgstr "其它帐号" msgid "Is Listening" msgstr "是在听" -#: [position]legend [position]position_title +#: [position]legend msgid "Geographic Position" msgstr "地理位置" @@ -1023,10 +994,6 @@ msgstr "%s 帖子" msgid "This server doesn't exists" msgstr "此服务器不存在" -#: [roster]search -msgid "Search in your contacts" -msgstr "在您的联系人中搜索" - #: [hello]chat msgid "Go on the Chat page" msgstr "转到“聊天”页面" @@ -1155,26 +1122,6 @@ msgstr "订阅节点已创建" msgid "Microblog node created" msgstr "微博节点已创建" -#: [location]title -msgid "Location" -msgstr "位置" - -#: [location]wrong_postition -msgid "Wrong position" -msgstr "错误位置" - -#: [location]updated -msgid "Location updated" -msgstr "位置已更新" - -#: [location]update -msgid "Update my position" -msgstr "更新我的位置" - -#: [login_anonymous]bad_username -msgid "Bad nickname (between 4 and 40 characters)" -msgstr "不良昵称 (需在4到40字符之间)" - #: [error]username msgid "Wrong username" msgstr "错误的用户名" @@ -1232,7 +1179,7 @@ msgstr "" msgid "Oops!" msgstr "糟糕!Oops!" -#: [error]default [visio]unknown_error +#: [error]default msgid "Unknown error" msgstr "未知错误" @@ -1293,6 +1240,10 @@ msgstr "已连接" msgid "Population" msgstr "" +#: [login_anonymous]bad_username +msgid "Bad nickname (between 4 and 40 characters)" +msgstr "不良昵称 (需在4到40字符之间)" + #: [menu]empty_title msgid "No news yet..." msgstr "尚无新闻" @@ -1313,33 +1264,19 @@ msgstr "" msgid "All" msgstr "所有" -#: [affiliations]title -msgid "Manage your members" -msgstr "管理你的成员" +#: [menu]mine +#, fuzzy +msgid "My publications" +msgstr "我的订阅" -#: [affiliations]get -msgid "Get the members" -msgstr "添加成员" +#: [menu]contacts [page]contacts +msgid "Contacts" +msgstr "联系人" -#: [affiliations]saved -msgid "Affiliations saved" -msgstr "保存设置" - -#: [subscriptions]title -msgid "Manage your subscriptions" -msgstr "管理您的订阅" - -#: [subscriptions]info -msgid "Manage the subscriptions" -msgstr "管理此订阅" - -#: [subscriptions]get -msgid "Get the subscriptions" -msgstr "增加此订阅" - -#: [subscriptions]saved -msgid "Subscriptions saved" -msgstr "订阅已保存" +#: [menu]add_post +#, fuzzy +msgid "Add a post" +msgstr "添加评论" #: [notifs]title msgid "Pending Invitations" @@ -1389,6 +1326,11 @@ msgstr "" msgid "See %s profile" msgstr "查看 %s 档案" +#: [post]blog_last +#, fuzzy +msgid "Public posts from users" +msgstr "公共分组" + #: [post]public msgid "Publish this post publicly?" msgstr "" @@ -1401,6 +1343,10 @@ msgstr "" msgid "This post is now private" msgstr "" +#: [post]public_url +msgid "Public URL of this post" +msgstr "" + #: [post]delete_title [post]delete msgid "Delete this post" msgstr "删除我的帖子" @@ -1517,14 +1463,6 @@ msgstr "" msgid "Add some text" msgstr "添加一些文字" -#: [public_groups]shared -msgid "Shared" -msgstr "共享" - -#: [public_groups]added -msgid "%s has been added to your public groups" -msgstr "%s已经添加到了您的公共分组" - #: [rooms]add msgid "Add a chatroom" msgstr "添加一个聊天室" @@ -1642,8 +1580,13 @@ msgid "Contact deleted" msgstr "联系人已删除" #: [roster]search -msgid "Search" -msgstr "搜索" +msgid "Search in your contacts" +msgstr "在您的联系人中搜索" + +#: [roster]search_pod +#, fuzzy +msgid "Search a contact" +msgstr "在您的联系人中搜索" #: [share]error msgid "This is not a valid url" @@ -1673,6 +1616,10 @@ msgstr "" msgid "Monthly Subscriptions Cumulated" msgstr "" +#: [sticker]sent +msgid "A sticker has been sent using Movim" +msgstr "" + #: [subscribe]info msgid "Movim is a decentralized social network, before creating a new account you need to choose a server to register." msgstr "Movim 是一个分散式管理的社交网络,在建立一个新账户之前,你需要选择一个服务器注册。" @@ -1721,11 +1668,6 @@ msgstr "您的档案现在是公开的" msgid "Your profile is now restricted" msgstr "现在您的档案是保密的" -#: [general]nickname -msgctxt "[general]nickname" -msgid "Nickname" -msgstr "昵称" - #: [accounts]accounts_title msgid "Accounts" msgstr "帐户" @@ -1742,11 +1684,6 @@ msgstr "Skype" msgid "Yahoo Account" msgstr "雅虎帐户" -#: [accounts]accounts_nickname -msgctxt "[accounts]accounts_nickname" -msgid "Nickname" -msgstr "昵称" - #: [privacy]privacy_title msgid "Privacy Level" msgstr "隐私等级" @@ -1756,7 +1693,8 @@ msgid "Is this profile public ?" msgstr "公开您的档案么?" #: [privacy]privacy_info -msgid "Please pay attention ! By making your profile public, all the information listed above will be available for all the Movim users and on the whole Internet." +#, fuzzy +msgid "Please pay attention ! By making your profile public, all the information listed bellow will be available for all the Movim users and on the whole Internet." msgstr "请注意!公开您的档案,上面列出的所有信息将对Movim的所有用户和整个互联网公开" #: [save]submit [button]submit @@ -1767,34 +1705,6 @@ msgstr "提交" msgid "Reset" msgstr "重置" -#: [visio]hung_up -msgid "Hung up" -msgstr "" - -#: [visio]busy -msgid "Your contact is busy" -msgstr "您的联系人正忙" - -#: [visio]declined -msgid "Declined" -msgstr "" - -#: [visio]calling -msgid "Is calling you" -msgstr "在呼叫你" - -#: [visio]call -msgid "Call" -msgstr "呼叫" - -#: [visio]hang_up -msgid "Hang up" -msgstr "挂断" - -#: [visio]connection -msgid "Connection" -msgstr "连接" - #: [global]no_js msgid "You don't have javascript enabled. Good luck with that." msgstr "您的浏览器没有开启javascript,请排查一下" @@ -1863,6 +1773,10 @@ msgstr "登录" msgid "Feed" msgstr "Feed" +#: [page]posts +msgid "Posts" +msgstr "帖子" + #: [page]gallery msgid "Gallery" msgstr "相册" @@ -2740,3 +2654,77 @@ msgstr "API无法连接, 请稍后重试" #: [field]type_here msgid "Type here" msgstr "在此输入" + +#~ msgid "Data" +#~ msgstr "数据" + +#~ msgid "Cache" +#~ msgstr "缓存" + +#~ msgid "Messages" +#~ msgstr "消息" + +#~ msgid "Location" +#~ msgstr "位置" + +#~ msgid "Wrong position" +#~ msgstr "错误位置" + +#~ msgid "Location updated" +#~ msgstr "位置已更新" + +#~ msgid "Update my position" +#~ msgstr "更新我的位置" + +#~ msgid "Manage your members" +#~ msgstr "管理你的成员" + +#~ msgid "Get the members" +#~ msgstr "添加成员" + +#~ msgid "Affiliations saved" +#~ msgstr "保存设置" + +#~ msgid "Manage your subscriptions" +#~ msgstr "管理您的订阅" + +#~ msgid "Manage the subscriptions" +#~ msgstr "管理此订阅" + +#~ msgid "Get the subscriptions" +#~ msgstr "增加此订阅" + +#~ msgid "Subscriptions saved" +#~ msgstr "订阅已保存" + +#~ msgid "Shared" +#~ msgstr "共享" + +#~ msgid "%s has been added to your public groups" +#~ msgstr "%s已经添加到了您的公共分组" + +#~ msgid "Search" +#~ msgstr "搜索" + +#~ msgctxt "[general]nickname" +#~ msgid "Nickname" +#~ msgstr "昵称" + +#~ msgctxt "[accounts]accounts_nickname" +#~ msgid "Nickname" +#~ msgstr "昵称" + +#~ msgid "Your contact is busy" +#~ msgstr "您的联系人正忙" + +#~ msgid "Is calling you" +#~ msgstr "在呼叫你" + +#~ msgid "Call" +#~ msgstr "呼叫" + +#~ msgid "Hang up" +#~ msgstr "挂断" + +#~ msgid "Connection" +#~ msgstr "连接" diff --git a/sources/system/Picture.php b/sources/system/Picture.php index 08a1990..7f4a446 100644 --- a/sources/system/Picture.php +++ b/sources/system/Picture.php @@ -10,7 +10,8 @@ class Picture { /** * @desc Load a bin picture from a path */ - public function fromPath($path) { + public function fromPath($path) + { $handle = fopen($path, "r"); $this->_bin = fread($handle, filesize($path)); fclose($handle); @@ -19,7 +20,8 @@ class Picture { /** * @desc Load a bin picture from a base64 */ - public function fromBase($base = false) { + public function fromBase($base = false) + { if($base) { $this->_bin = (string)base64_decode((string)$base); } @@ -28,7 +30,8 @@ class Picture { /** * @desc Convert to a base64 */ - public function toBase() { + public function toBase() + { if($this->_bin) return base64_encode($this->_bin); else @@ -42,7 +45,8 @@ class Picture { * @param $height The height requested * @return The url of the picture */ - public function get($key, $width = false, $height = false, $format = 'jpeg') { + public function get($key, $width = false, $height = false, $format = 'jpeg') + { if(!in_array($format, array_keys($this->_formats))) $format = 'jpeg'; $this->_key = $key; @@ -74,11 +78,31 @@ class Picture { } } + /** + * @desc Get the current picture size + * @param $key The picture key + */ + public function getSize() + { + if($this->_bin) { + $im = new Imagick(); + try { + $im->readImageBlob($this->_bin); + if($im != false) { + return $im->getImageGeometry(); + } + } catch (ImagickException $e) { + error_log($e->getMessage()); + } + } + } + /** * @desc Save a picture (original size) * @param $key The key of the picture */ - public function set($key, $format = 'jpeg') { + public function set($key, $format = 'jpeg') + { if(!in_array($format, array_keys($this->_formats))) $format = 'jpeg'; $this->_key = $key; @@ -121,10 +145,11 @@ class Picture { * @desc Create a thumbnail of the picture and save it * @param $size The size requested */ - private function createThumbnail($width, $height = false, $format = 'jpeg') { + private function createThumbnail($width, $height = false, $format = 'jpeg') + { if(!in_array($format, array_keys($this->_formats))) $format = 'jpeg'; if(!$height) $height = $width; - + $path = $this->_path.md5($this->_key).'_'.$width.$this->_formats[$format]; $im = new Imagick; @@ -141,7 +166,7 @@ class Picture { $im->setImageCompressionQuality(85); $im->setInterlaceScheme(Imagick::INTERLACE_PLANE); - + $im->writeImage($path); $im->clear(); } diff --git a/sources/system/Route.php b/sources/system/Route.php index cee95bf..a7c0ca3 100644 --- a/sources/system/Route.php +++ b/sources/system/Route.php @@ -56,7 +56,7 @@ class Route extends \BaseController { } if(empty($this->_page)) - $this->_page = 'main'; + $this->_page = 'news'; if(!isset($this->_routes[$this->_page])) $this->_page = 'notfound'; @@ -87,7 +87,7 @@ class Route extends \BaseController { } elseif($params != false) { $uri .= '/' . $params; } - + return $uri.$tab; } else { throw new Exception(__('Route not set for the page %s', $page)); diff --git a/sources/themes/material/css/block.css b/sources/themes/material/css/block.css index 0e637bd..30bff06 100644 --- a/sources/themes/material/css/block.css +++ b/sources/themes/material/css/block.css @@ -29,6 +29,15 @@ margin-bottom: 0; } +.flex.third { + flex-flow: row wrap; +} + +.flex.third .block:not(.large) { + flex: 1 33.33%; + max-width: 33.33%; +} + @media screen and (max-width: 1024px) { .flex.card .block, .flex .block { diff --git a/sources/themes/material/css/fonts.css b/sources/themes/material/css/fonts.css index a23e81e..3a19196 100644 --- a/sources/themes/material/css/fonts.css +++ b/sources/themes/material/css/fonts.css @@ -36,6 +36,13 @@ margin-bottom: -0.3rem; } +.emoji.medium { + width: auto; + height: 3.5rem; + margin: 0; + margin-bottom: -1.2rem; +} + .emoji.large { width: 5rem; height: 5rem; diff --git a/sources/themes/material/css/listn.css b/sources/themes/material/css/listn.css index 9ca72a0..bbeab6a 100644 --- a/sources/themes/material/css/listn.css +++ b/sources/themes/material/css/listn.css @@ -60,7 +60,7 @@ ul.list li > .primary.small { margin-top: -1.5rem; } -ul.list > li > *:not(.counter):not(span):not(.bubble):not(.button), +ul.list > li > *:not(img):not(.counter):not(span):not(.bubble):not(.button), ul.list li.subheader p { width: 100%; box-sizing: border-box; @@ -93,6 +93,7 @@ ul.list li > span.active:hover { ul.list li > p > span.second { color: gray; + margin-left: 0.5rem; } ul.list li > p > span.info { diff --git a/sources/themes/material/css/style.css b/sources/themes/material/css/style.css index 5d6d5c5..5282aca 100644 --- a/sources/themes/material/css/style.css +++ b/sources/themes/material/css/style.css @@ -512,7 +512,7 @@ main ul li .control > i { position: relative; } -.dialog > section > *:first-child { +.dialog > section > *:first-child:not(ul) { margin-top: 2rem; } @@ -865,3 +865,11 @@ dl dd { opacity: 0.5; pointer-events: none; } + +/* Spinner */ +div#spinner{ + position: relative; + overflow: visible; + text-align: center; + margin: 50% 0; +}