From 15e4881cc821aa71fc315c98e930b80dd53d98ea Mon Sep 17 00:00:00 2001 From: src386 Date: Mon, 24 Aug 2015 17:33:34 +0200 Subject: [PATCH] revert to movim 20150818 --- README.md | 2 + TODO | 5 + sources/app/helpers/StringHelper.php | 7 +- sources/app/models/contact/Contact.php | 4 +- sources/app/widgets/Chat/chat.css | 4 +- sources/app/widgets/Chat/chat.js | 7 - sources/app/widgets/Chat/chat.tpl | 9 +- sources/app/widgets/Chats/Chats.php | 31 +- sources/app/widgets/Chats/_chats_item.tpl | 16 +- sources/app/widgets/Chats/locales.ini | 2 - sources/app/widgets/Group/locales.ini | 2 +- .../app/widgets/Notification/notification.js | 10 +- sources/app/widgets/Roster/roster.tpl | 2 +- sources/linker.php | 2 +- sources/locales/ar.po | 2735 ++++++++-------- sources/locales/be.po | 2591 +++++++-------- sources/locales/bn.po | 2592 +++++++-------- sources/locales/br.po | 2668 ++++++++------- sources/locales/da.po | 2747 ++++++++-------- sources/locales/de.po | 2894 ++++++++-------- sources/locales/el.po | 2660 ++++++++------- sources/locales/eo.po | 2645 ++++++++------- sources/locales/es.po | 2806 ++++++++-------- sources/locales/fa.po | 2589 +++++++-------- sources/locales/fi.po | 2751 ++++++++-------- sources/locales/fr.po | 2907 ++++++++--------- sources/locales/gl.po | 2596 +++++++-------- sources/locales/he.po | 1984 ++++++----- sources/locales/hr.po | 2589 +++++++-------- sources/locales/id.po | 2638 +++++++-------- sources/locales/io.po | 2592 +++++++-------- sources/locales/it.po | 2792 ++++++++-------- sources/locales/ja.po | 2677 ++++++++------- sources/locales/kk.po | 2589 +++++++-------- sources/locales/lv.po | 2614 +++++++-------- sources/locales/messages.pot | 92 +- sources/locales/nl.po | 2735 ++++++++-------- sources/locales/no.po | 2600 +++++++-------- sources/locales/oc.po | 2703 ++++++++------- sources/locales/pt.po | 2755 ++++++++-------- sources/locales/ro.po | 2615 +++++++-------- sources/locales/ru.po | 2848 ++++++++-------- sources/locales/uk.po | 2637 ++++++++------- sources/locales/zh.po | 2693 ++++++++------- sources/system/Utils.php | 2 +- sources/themes/material/css/form.css | 2 +- sources/themes/material/css/style.css | 22 +- 47 files changed, 37366 insertions(+), 40097 deletions(-) create mode 100644 TODO diff --git a/README.md b/README.md index bb8afef..9a174f5 100644 --- a/README.md +++ b/README.md @@ -9,6 +9,8 @@ Current Movim version : 20150821. **Changelog** +0.9b 2015? + 0.8b 2015-08-23 - Added language selection : ar, de, es, it, ja, nl, ru - Fix URL in manifest.json (was https://https://...) diff --git a/TODO b/TODO new file mode 100644 index 0000000..5019af4 --- /dev/null +++ b/TODO @@ -0,0 +1,5 @@ +- proxy_read_timeout +- proxy_send_timeout +- check if path is not empty +- revoir whitelist +- movim.service pid / syslog ? diff --git a/sources/app/helpers/StringHelper.php b/sources/app/helpers/StringHelper.php index 3a6edce..3bd3ff3 100644 --- a/sources/app/helpers/StringHelper.php +++ b/sources/app/helpers/StringHelper.php @@ -224,12 +224,7 @@ function cleanJid($jid) */ function explodeJid($jid) { - $arr = explode('/', $jid); - $jid = $arr[0]; - - if(isset($arr[1])) $resource = $arr[1]; - else $resource = null; - + list($jid, $resource) = explode('/', $jid); list($username, $server) = explode('@', $jid); return array( diff --git a/sources/app/models/contact/Contact.php b/sources/app/models/contact/Contact.php index d657101..3da798b 100644 --- a/sources/app/models/contact/Contact.php +++ b/sources/app/models/contact/Contact.php @@ -259,9 +259,9 @@ class Contact extends Model { } public function setVcard4($vcard) { - if(isset($vcard->bday->date)) + if(isset($vcard->bday->date) && !empty((string)$vcard->bday->date)) $this->date = (string)$vcard->bday->date; - if(empty($this->date)) + else $this->date = null; $this->name = (string)$vcard->nickname->text; diff --git a/sources/app/widgets/Chat/chat.css b/sources/app/widgets/Chat/chat.css index b4c0dfd..3477028 100644 --- a/sources/app/widgets/Chat/chat.css +++ b/sources/app/widgets/Chat/chat.css @@ -1,7 +1,7 @@ #chat_header.encrypted:after{ content: ""; display: inline-block; - font-family: "Material Design Iconic Font"; + font-family: "Material Design Iconic Font"; content: "\f041"; font-size: 2.5rem; margin-left: 1rem; @@ -19,7 +19,7 @@ #chat_widget .chat_box ul { margin: 0 auto; max-width: 100rem; - margin-left: calc(45% - 49rem); + margin-left: calc(50% - 51rem); } #chat_widget .chat_box form { diff --git a/sources/app/widgets/Chat/chat.js b/sources/app/widgets/Chat/chat.js index afa727d..9531754 100644 --- a/sources/app/widgets/Chat/chat.js +++ b/sources/app/widgets/Chat/chat.js @@ -121,13 +121,6 @@ var Chat = { } } -MovimWebsocket.attach(function() { - var jid = document.querySelector('#chat_widget').dataset.jid; - if(jid) { - Chat_ajaxGet(jid); - } -}); - Upload.attach(function() { var textarea = document.querySelector('#chat_textarea'); textarea.value = Upload.get + ' ' + textarea.value; diff --git a/sources/app/widgets/Chat/chat.tpl b/sources/app/widgets/Chat/chat.tpl index 2d520c6..a21c0aa 100644 --- a/sources/app/widgets/Chat/chat.tpl +++ b/sources/app/widgets/Chat/chat.tpl @@ -1,3 +1,10 @@ -
+
{$c->prepareEmpty()} + {if="$jid"} + + {/if}
diff --git a/sources/app/widgets/Chats/Chats.php b/sources/app/widgets/Chats/Chats.php index 6c3f920..1c8c823 100644 --- a/sources/app/widgets/Chats/Chats.php +++ b/sources/app/widgets/Chats/Chats.php @@ -15,8 +15,6 @@ class Chats extends WidgetBase $this->registerEvent('carbons', 'onMessage'); $this->registerEvent('message', 'onMessage'); $this->registerEvent('presence', 'onPresence', 'chat'); - $this->registerEvent('composing', 'onComposing'); - $this->registerEvent('paused', 'onPaused'); } function onMessage($packet) @@ -58,29 +56,6 @@ class Chats extends WidgetBase } } - function onComposing($array) - { - $this->setState($array, $this->__('chats.composing')); - } - - function onPaused($array) - { - $this->setState($array, $this->__('chats.paused')); - } - - private function setState($array, $message) - { - list($from, $to) = $array; - if($from == $this->user->getLogin()) { - $jid = $to; - } else { - $jid = $from; - } - - RPC::call('movim_replace', $jid.'_chat_item', $this->prepareChat($jid, $message)); - RPC::call('Chats.refresh'); - } - /** * @brief Get history */ @@ -92,7 +67,7 @@ class Chats extends WidgetBase $messages = $md->getContact(echapJid($jid), 0, 1); $g = new \Moxl\Xec\Action\MAM\Get; - $g->setJid(echapJid($jid)); + $g->setJid($jid); if(!empty($messages)) { $g->setStart(strtotime($messages[0]->published)); @@ -181,7 +156,7 @@ class Chats extends WidgetBase return $view->draw('_chats', true); } - function prepareChat($jid, $status = null) + function prepareChat($jid) { if(!$this->validateJid($jid)) return; @@ -205,8 +180,6 @@ class Chats extends WidgetBase $view->assign('caps', null); } - $view->assign('status', $status); - $m = $md->getContact($jid, 0, 1); if(isset($m)) { $view->assign('message', $m[0]); diff --git a/sources/app/widgets/Chats/_chats_item.tpl b/sources/app/widgets/Chats/_chats_item.tpl index cb566fd..798f6b9 100644 --- a/sources/app/widgets/Chats/_chats_item.tpl +++ b/sources/app/widgets/Chats/_chats_item.tpl @@ -26,16 +26,12 @@ {/if} {$contact->getTrueName()} - {if="isset($status)"} -

{$status}

- {else} - {if="isset($message)"} - {$message->published|strtotime|prepareDate} - {if="preg_match('#^\?OTR#', $message->body)"} -

{$c->__('message.encrypted')}

- {else} -

{$message->body|prepareString|strip_tags}

- {/if} + {if="isset($message)"} + {$message->published|strtotime|prepareDate} + {if="preg_match('#^\?OTR#', $message->body)"} +

{$c->__('message.encrypted')}

+ {else} +

{$message->body|prepareString|strip_tags}

{/if} {/if} diff --git a/sources/app/widgets/Chats/locales.ini b/sources/app/widgets/Chats/locales.ini index 18770ee..46e51c3 100644 --- a/sources/app/widgets/Chats/locales.ini +++ b/sources/app/widgets/Chats/locales.ini @@ -4,8 +4,6 @@ empty = Open a new conversation by clicking on the plus button bello add = Chat with a contact frequent = Frequent contacts more = Load more contacts -composing = Composing... -paused = Paused... [message] encrypted = Encrypted message diff --git a/sources/app/widgets/Group/locales.ini b/sources/app/widgets/Group/locales.ini index 40a499b..9dec033 100644 --- a/sources/app/widgets/Group/locales.ini +++ b/sources/app/widgets/Group/locales.ini @@ -20,6 +20,6 @@ subscriptions = Subscriptions servers = Groups servers search_server = Search for a new server help_info1 = "Groups are the perfect way to share posts about topics that you like with all the other Movim's users." -help_info2 = Choose a server and a Group and subscribe to it using the %s button in the header. You can also create a new one using the %s button. +help_info2 = Choose a server and a Group and subscribe to it using the %s button in the header. You can alse create a new one using the %s button. help_info3 = Done? You can now publish a new post in the Group by using the %s button. help_info4 = You will find a list of all your subscribed Groups in My Subscriptions and receive instantly all the new incoming posts in the %sNews%s page. diff --git a/sources/app/widgets/Notification/notification.js b/sources/app/widgets/Notification/notification.js index 6a8cf24..9d409c8 100644 --- a/sources/app/widgets/Notification/notification.js +++ b/sources/app/widgets/Notification/notification.js @@ -76,11 +76,11 @@ var Notification = { }, toast : function(html) { target = document.getElementById('toast'); - + if(target) { target.innerHTML = html; } - + setTimeout(function() { target = document.getElementById('toast'); target.innerHTML = ''; @@ -91,11 +91,11 @@ var Notification = { if(Notification.inhibed == true) return; target = document.getElementById('snackbar'); - + if(target) { target.innerHTML = html; } - + setTimeout(function() { target = document.getElementById('snackbar'); target.innerHTML = ''; @@ -105,7 +105,7 @@ var Notification = { desktop : function(title, body, picture) { if(Notification.inhibed == true || Notification.focused) return; -console.log(DesktopNotification); + var notification = new DesktopNotification(title, { icon: picture, body: body }); } } diff --git a/sources/app/widgets/Roster/roster.tpl b/sources/app/widgets/Roster/roster.tpl index 58cf12d..6e7b6de 100644 --- a/sources/app/widgets/Roster/roster.tpl +++ b/sources/app/widgets/Roster/roster.tpl @@ -1,5 +1,5 @@
-
    +

      {$c->__('roster.no_contacts_title')}

      {$c->__('roster.no_contacts_text')}

      diff --git a/sources/linker.php b/sources/linker.php index 821d982..6bf25ab 100644 --- a/sources/linker.php +++ b/sources/linker.php @@ -51,6 +51,7 @@ $stdin_behaviour = function ($data) use (&$conn, $loop, &$buffer, &$connector, & $config = $cd->get(); $port = 5222; + $dns = \Moxl\Utils::resolveHost($msg->host); if(isset($dns[0]['target']) && $dns[0]['target'] != null) $msg->host = $dns[0]['target']; if(isset($dns[0]['port']) && $dns[0]['port'] != null) $port = $dns[0]['port']; @@ -110,7 +111,6 @@ $xmpp_behaviour = function (React\Stream\Stream $stream) use (&$conn, $loop, &$s } elseif($message == "" || $message == '') { stream_set_blocking($conn->stream, 1); - stream_context_set_option($conn->stream, 'ssl', 'allow_self_signed', true); $out = stream_socket_enable_crypto($conn->stream, 1, STREAM_CRYPTO_METHOD_TLS_CLIENT); $restart = true; diff --git a/sources/locales/ar.po b/sources/locales/ar.po index 2158732..0c8883b 100644 --- a/sources/locales/ar.po +++ b/sources/locales/ar.po @@ -1,2785 +1,2670 @@ # Arabic translations for Movim package. # This file is distributed under the same license as the Movim package. # This file was translated from CodingTeam at . -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/About/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Account/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/AccountNext/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/AdHoc/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/AdminDB/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/AdminMain/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/AdminTest/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Api/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Avatar/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Blog/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Bookmark/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Chat/locales.ini -#. #-#-#-#-# 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 -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Group/locales.ini -#. #-#-#-#-# 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 -#. #-#-#-#-# 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 -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Presence/locales.ini -#. #-#-#-#-# 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 -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Share/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Statistics/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Subscribe/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Syndication/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Upload/locales.ini -#. #-#-#-#-# 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-08-20 15:17+0200\n" +"POT-Creation-Date: 2015-06-08 22:06+0200\n" "PO-Revision-Date: 2015-06-09 12:20+0000\n" "Last-Translator: Mohamed-Touhami MAHDI \n" "Language-Team: LANGUAGE \n" -"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2015-06-18 21:08+0000\n" "X-Generator: Launchpad (build 17570)\n" +"Language: \n" -#: [about]thanks +#: ../cache/locales.php:2 msgid "Thanks" msgstr "شكرًا" -#: [about]developers +#: ../cache/locales.php:3 msgid "Developers" msgstr "المطوّرون" -#: [about]translators +#: ../cache/locales.php:4 msgid "Translators" msgstr "المترجمون" -#: [about]software +#: ../cache/locales.php:5 msgid "Software" msgstr "البرنامج" -#: [about]resources +#: ../cache/locales.php:6 msgid "Resources" msgstr "الموارد" -#: [about]api [schema]api [api]title +#: ../cache/locales.php:7 ../cache/locales.php:83 ../cache/locales.php:85 msgid "API" msgstr "API" -#: [about]info -msgid "Movim is an XMPP-based communication platform. All the project, except the following software and resources, is under" -msgstr "موفيم عبارة عن مصفحة تواصل مرتكزة على XMPP. المشروع بأكمله بإستناء البرامج والموارد التالية هي تحت" +#: ../cache/locales.php:8 +msgid "" +"Movim is an XMPP-based communication platform. All the project, except the " +"following software and resources, is under" +msgstr "" +"موفيم عبارة عن مصفحة تواصل مرتكزة على XMPP. المشروع بأكمله بإستناء البرامج " +"والموارد التالية هي تحت" -#: [account]title +#: ../cache/locales.php:9 msgid "Account" msgstr "" -#: [account]password_change_title -#, fuzzy -msgid "Change my password" -msgstr "كلمة السر غير صحيحة" - -#: [account]password [db]password [credentials]password [form]password -#: [input]password -msgid "Password" -msgstr "كلمة السّر" - -#: [account]password_confirmation -#, fuzzy -msgid "Password confirmation" -msgstr "%s - تكوين" - -#: [account]password_changed +#: ../cache/locales.php:10 msgid "The password has been updated" msgstr "" -#: [account]password_not_valid +#: ../cache/locales.php:11 msgid "Please provide a valid password (6 characters minimum)" msgstr "" -#: [account]password_not_same +#: ../cache/locales.php:12 msgid "The provided passwords are not the same" msgstr "" -#: [account]delete_title +#: ../cache/locales.php:13 msgid "Delete my account" msgstr "" -#: [account]delete -#, fuzzy -msgid "Delete your account" -msgstr "أنشئ حسابًا جديدًا" - -#: [account]delete_text -msgid "You will delete your XMPP account and all the relative information linked to it (profile, contacts and publications)." +#: ../cache/locales.php:14 +msgid "" +"You will delete your XMPP account and all the relative information linked to " +"it (profile, contacts and publications)." msgstr "" -#: [account]delete_text_confirm +#: ../cache/locales.php:15 msgid "Are you sure that you want to delete it ?" msgstr "" -#: [account]gateway_title -msgid "Gateway" -msgstr "" - -#: [create]title [subscribe]title +#: ../cache/locales.php:16 ../cache/locales.php:411 msgid "Create a new account" msgstr "أنشئ حسابًا جديدًا" -#: [create]notfound +#: ../cache/locales.php:17 msgid "No account creation form found on the server" msgstr "لم يم العثور على أي إستمارة لﻹنشاء حساب على الخادم." -#: [create]server_on +#: ../cache/locales.php:18 ../cache/locales.php:172 msgid "on" msgstr "في" -#: [create]successfull +#: ../cache/locales.php:19 msgid "Your acccount has been successfully registered" msgstr "" -#: [create]loading +#: ../cache/locales.php:20 msgid "Loading" msgstr "جارٍ التحميل" -#: [error]not_acceptable +#: ../cache/locales.php:21 msgid "Not Acceptable" msgstr "" -#: [error]service_unavailable +#: ../cache/locales.php:22 msgid "The registration system of this server is currently unavailable" msgstr "" -#: [oob]about -msgid "This server use an external system for the registration, please click on the following URL." +#: ../cache/locales.php:23 +msgid "" +"This server use an external system for the registration, please click on the " +"following URL." msgstr "" -#: [adhoc]title +#: ../cache/locales.php:24 msgid "Actions" msgstr "إجراءات" -#: [db]legend [schema]database +#: ../cache/locales.php:25 ../cache/locales.php:82 msgid "Database" msgstr "" -#: [db]connect_error +#: ../cache/locales.php:26 msgid "Modl wasn't able to connect to the database" msgstr "لم يستطع Modl أن يتصل بقاعدة البيانات" -#: [db]connect_success +#: ../cache/locales.php:27 msgid "Movim is connected to the database" msgstr "إن موفيم متصل بقاعدة البيانات" -#: [db]update +#: ../cache/locales.php:28 msgid "The database need to be updated" msgstr "إن قاعدة البيانات في حاجة إلى تحديث" -#: [db]up_to_date +#: ../cache/locales.php:29 msgid "Movim database is up to date" msgstr "إن قاعدة بيانات موفيم محدثة" -#: [db]type +#: ../cache/locales.php:30 msgid "Database Type" msgstr "نوع قاعدة البيانات" -#: [db]username [credentials]username [input]username +#: ../cache/locales.php:31 ../cache/locales.php:50 ../cache/locales.php:540 msgid "Username" msgstr "اسم المستخدم" -#: [db]host +#: ../cache/locales.php:32 ../cache/locales.php:51 ../cache/locales.php:282 +#: ../cache/locales.php:541 +msgid "Password" +msgstr "كلمة السّر" + +#: ../cache/locales.php:33 msgid "Host" msgstr "المستضيف" -#: [db]port +#: ../cache/locales.php:34 msgid "Port" msgstr "المَنفذ" -#: [db]name -#, fuzzy -msgid "Database sName" -msgstr "نوع قاعدة البيانات" +#: ../cache/locales.php:35 +msgid "Database Name" +msgstr "" -#: [admin]general +#: ../cache/locales.php:36 msgid "General Settings" msgstr "الإعدادات العامة" -#: [general]theme +#: ../cache/locales.php:37 msgid "Theme" msgstr "المظهر" -#: [general]language +#: ../cache/locales.php:38 msgid "Default language" msgstr "اللغة الإفتراضيّة" -#: [general]log_verbosity +#: ../cache/locales.php:39 +msgid "Environment" +msgstr "البيئة" + +#: ../cache/locales.php:40 msgid "Log verbosity" msgstr "" -#: [general]timezone +#: ../cache/locales.php:41 msgid "Server Timezone" msgstr "" -#: [general]limit +#: ../cache/locales.php:42 msgid "User folder size limit (in bytes)" msgstr "" -#: [websocket]title +#: ../cache/locales.php:43 msgid "WebSocket Configuration" msgstr "" -#: [websocket]info +#: ../cache/locales.php:44 msgid "Enter here a valid WebSocket URI in the form" msgstr "" -#: [websocket]label +#: ../cache/locales.php:45 msgid "WebSocket URI" msgstr "" -#: [websocket]save_info -msgid "If you change the URI, please restart the daemon to reload the configuration" +#: ../cache/locales.php:46 +msgid "" +"If you change the URI, please restart the daemon to reload the configuration" msgstr "" -#: [websocket]publics +#: ../cache/locales.php:47 msgid "Public WebSockets" msgstr "" -#: [credentials]title +#: ../cache/locales.php:48 msgid "Administration Credential" msgstr "" -#: [credentials]info +#: ../cache/locales.php:49 msgid "Change the default credentials admin/password" msgstr "" -#: [credentials]re_password +#: ../cache/locales.php:52 msgid "Retype password" msgstr "أعِد كتابة كلمة السر" -#: [whitelist]title +#: ../cache/locales.php:53 msgid "Whitelist - XMPP Server" msgstr "" -#: [whitelist]info1 -msgid "If you want to specify a list of authorized XMPP servers on your Movim pod and forbid the connection on all the others please put their domain name here, with comma (ex: movim.eu,jabber.fr)" +#: ../cache/locales.php:54 +msgid "" +"If you want to specify a list of authorized XMPP servers on your Movim pod " +"and forbid the connection on all the others please put their domain name " +"here, with comma (ex: movim.eu,jabber.fr)" msgstr "" -#: [whitelist]info2 -msgid "Leave this field blank if you allow the access to all the XMPP accounts." +#: ../cache/locales.php:55 +msgid "" +"Leave this field blank if you allow the access to all the XMPP accounts." msgstr "إترك هذا الحقل فارغا للسماح النفود لجميع حسابات XMPP." -#: [whitelist]label +#: ../cache/locales.php:56 msgid "List of whitelisted XMPP servers" msgstr "" -#: [information]title -#, fuzzy -msgctxt "[information]title" +#: ../cache/locales.php:57 ../cache/locales.php:61 msgid "Information Message" msgstr "رسالة معلومات" -#: [information]description +#: ../cache/locales.php:58 msgid "Description" msgstr "الوصف" -#: [information]info1 +#: ../cache/locales.php:59 msgid "This message will be displayed on the login page" msgstr "" -#: [information]info2 -#, fuzzy -msgid "Leave this field blank if you dont want to show any message." -msgstr "إترك هذا الحقل فارغا للسماح النفود لجميع حسابات XMPP." +#: ../cache/locales.php:60 +msgid "Leave this field blank if you don't want to show any message." +msgstr "" -#: [information]label -#, fuzzy -msgctxt "[information]label" -msgid "Information Message" -msgstr "رسالة معلومات" - -#: [log]empty +#: ../cache/locales.php:62 msgid "Empty" msgstr "" -#: [log]syslog +#: ../cache/locales.php:63 msgid "Syslog" msgstr "" -#: [log]syslog_files +#: ../cache/locales.php:64 msgid "Syslog and files" msgstr "" -#: [rewrite]title +#: ../cache/locales.php:65 msgid "URL Rewriting" msgstr "" -#: [rewrite]info +#: ../cache/locales.php:66 msgid "The URL Rewriting can be enabled" msgstr "" -#: [admin]compatibility +#: ../cache/locales.php:67 msgid "General Overview" msgstr "" -#: [compatibility]info -msgid "Movim has found some issues or things that need to be fixed or improved" +#: ../cache/locales.php:68 +msgid "" +"Movim has found some issues or things that need to be fixed or improved" msgstr "" -#: [compatibility]php1 +#: ../cache/locales.php:69 +#, php-format msgid "Update your PHP-Version: %s" msgstr "" -#: [compatibility]php2 +#: ../cache/locales.php:70 msgid "Required: 5.3.0" msgstr "" -#: [compatibility]curl +#: ../cache/locales.php:71 msgid "Install the php5-curl library" msgstr "" -#: [compatibility]imagick +#: ../cache/locales.php:72 msgid "Install the php5-imagick library" msgstr "" -#: [compatibility]gd +#: ../cache/locales.php:73 msgid "Install the php5-gd library" msgstr "" -#: [compatibility]rights -#, fuzzy -msgid "Read and write rights for the webserver in Movims root directory" -msgstr "فعّل صلاحيات القراءة و الكتابة على دليل Movim الجذر" +#: ../cache/locales.php:74 +msgid "Read and write rights for the webserver in Movim's root directory" +msgstr "" -#: [compatibility]rewrite +#: ../cache/locales.php:75 msgid "The URL Rewriting support is currently disabled" msgstr "" -#: [compatibility]db +#: ../cache/locales.php:76 msgid "The database need to be updated, go to the database panel to fix this" msgstr "" -#: [compatibility]websocket -msgid "WebSocket connection error, check if the Movim Daemon is running and is reachable" +#: ../cache/locales.php:77 +msgid "" +"WebSocket connection error, check if the Movim Daemon is running and is " +"reacheable" msgstr "" -#: [compatibility]xmpp_websocket -msgid "XMPP Websocket connection error, please check the validity of the URL given in the General Configuration" +#: ../cache/locales.php:78 +msgid "" +"XMPP Websocket connection error, please check the validity of the URL given " +"in the General Configuration" msgstr "" -#: [schema]browser +#: ../cache/locales.php:79 msgid "Browser" msgstr "" -#: [schema]movim +#: ../cache/locales.php:80 msgid "Movim Core" msgstr "" -#: [schema]daemon +#: ../cache/locales.php:81 msgid "Movim Daemon" msgstr "" -#: [schema]xmpp +#: ../cache/locales.php:84 msgid "XMPP" msgstr "" -#: [api]info -msgid "Here you can register your pod on the official %sMovim API%s and be listed on %sthe pods page%s." +#: ../cache/locales.php:86 +#, php-format +msgid "" +"Here you can register your pod on the official %sMovim API%s and be listed " +"on %sthe pods page%s." msgstr "" -#: [api]register +#: ../cache/locales.php:87 msgid "Your pod is not registered on the API" msgstr "" -#: [api]registered +#: ../cache/locales.php:88 msgid "Your pod is registered on the API" msgstr "" -#: [api]wait +#: ../cache/locales.php:89 msgid "Your pod is not yet validated" msgstr "" -#: [api]validated +#: ../cache/locales.php:90 msgid "Your pod is validated" msgstr "" -#: [api]unregister -msgid "You asked to be removed from the API, this request will be processed in a couple of hours" +#: ../cache/locales.php:91 +msgid "" +"You asked to be removed from the API, this request will be processed in a " +"couple of hours" msgstr "" -#: [api]conf_updated [config]updated +#: ../cache/locales.php:92 ../cache/locales.php:147 msgid "Configuration updated" msgstr "" -#: [avatar]file +#: ../cache/locales.php:93 msgid "File" msgstr "" -#: [avatar]use_it +#: ../cache/locales.php:94 msgid "Use it" msgstr "" -#: [avatar]webcam +#: ../cache/locales.php:95 msgid "Webcam" msgstr "كاميرا الويب" -#: [avatar]cheese +#: ../cache/locales.php:96 msgid "Cheese !" msgstr "" -#: [avatar]snapshot +#: ../cache/locales.php:97 msgid "Take a webcam snapshot" msgstr "" -#: [avatar]updated +#: ../cache/locales.php:98 msgid "Avatar Updated" msgstr "" -#: [avatar]not_updated +#: ../cache/locales.php:99 msgid "Avatar Not Updated" msgstr "" -#: [blog]title [feed]title +#: ../cache/locales.php:100 ../cache/locales.php:415 +#, php-format msgid "%s's feed" msgstr "" -#: [blog]empty +#: ../cache/locales.php:101 msgid "This user has not posted anything right now" msgstr "" -#: [title]conferences +#: ../cache/locales.php:102 msgid "Conferences" msgstr "" -#: [title]groups [group]empty_title [menu]groups [page]groups +#: ../cache/locales.php:103 ../cache/locales.php:193 ../cache/locales.php:217 +#: ../cache/locales.php:468 msgid "Groups" msgstr "المجموعات" -#: [chatroom]add +#: ../cache/locales.php:104 msgid "Add a new Chat Room" msgstr "" -#: [chatroom]id [chatrooms]id +#: ../cache/locales.php:105 ../cache/locales.php:368 msgid "Chat Room ID" msgstr "" -#: [chatroom]name -#, fuzzy -msgctxt "[chatroom]name" +#: ../cache/locales.php:106 ../cache/locales.php:116 ../cache/locales.php:156 +#: ../cache/locales.php:361 ../cache/locales.php:369 ../cache/locales.php:424 msgid "Name" msgstr "الاسم" -#: [chatroom]nickname [general]nickname [chatrooms]nickname +#: ../cache/locales.php:107 ../cache/locales.php:157 ../cache/locales.php:371 +#: ../cache/locales.php:425 msgid "Nickname" msgstr "الكنية" -#: [chatroom]autojoin_label +#: ../cache/locales.php:108 msgid "Do you want do join automaticaly this Chat Room ?" msgstr "" -#: [chatroom]bad_id [chatrooms]bad_id +#: ../cache/locales.php:109 ../cache/locales.php:372 msgid "Bad Chatroom ID" msgstr "" -#: [chatroom]empty_name [chatrooms]empty_name +#: ../cache/locales.php:110 ../cache/locales.php:373 msgid "Empty name" msgstr "" -#: [bookmarks]updated +#: ../cache/locales.php:111 ../cache/locales.php:380 msgid "Bookmarks updated" msgstr "" -#: [bookmarks]error -msgid "An error occured :" +#: ../cache/locales.php:112 +msgid "An error occured : " msgstr "" -#: [bookmarks]configure +#: ../cache/locales.php:113 msgid "Configure" msgstr "" -#: [url]add +#: ../cache/locales.php:114 msgid "Add a new URL" msgstr "" -#: [url]url +#: ../cache/locales.php:115 msgid "URL" msgstr "" -#: [url]name -#, fuzzy -msgctxt "[url]name" -msgid "Name" -msgstr "الاسم" - -#: [message]published +#: ../cache/locales.php:117 msgid "Message Published" msgstr "" -#: [message]encrypted +#: ../cache/locales.php:118 ../cache/locales.php:138 msgid "Encrypted message" msgstr "" -#: [message]composing [chats]composing +#: ../cache/locales.php:119 msgid "Composing..." msgstr "يكتب..." -#: [message]paused [chats]paused +#: ../cache/locales.php:120 msgid "Paused..." msgstr "" -#: [message]gone +#: ../cache/locales.php:121 msgid "Contact gone" msgstr "" -#: [chat]attention +#: ../cache/locales.php:122 +#, php-format msgid "%s needs your attention" msgstr "" -#: [chat]placeholder +#: ../cache/locales.php:123 msgid "Your message here..." msgstr "" -#: [chat]smileys +#: ../cache/locales.php:124 msgid "Smileys" msgstr "" -#: [chat]empty_title [button]chat +#: ../cache/locales.php:125 ../cache/locales.php:139 msgid "Chat" msgstr "المحادثة" -#: [chat]empty_text +#: ../cache/locales.php:126 msgid "Discuss with your contacts" msgstr "" -#: [chat]frequent [chats]frequent -msgid "Frequent contacts" -msgstr "" - -#: [chatroom]members +#: ../cache/locales.php:127 msgid "Members" msgstr "" -#: [chatroom]connected [chatrooms]connected +#: ../cache/locales.php:128 ../cache/locales.php:376 msgid "Connected to the chatroom" msgstr "" -#: [chatroom]disconnected [chatrooms]disconnected +#: ../cache/locales.php:129 ../cache/locales.php:377 msgid "Disconnected from the chatroom" msgstr "" -#: [chatroom]config [group]configuration [page]configuration +#: ../cache/locales.php:130 ../cache/locales.php:200 ../cache/locales.php:469 msgid "Configuration" msgstr "ضبط" -#: [chatroom]config_saved +#: ../cache/locales.php:131 msgid "Configuration saved" msgstr "" -#: [chatroom]subject +#: ../cache/locales.php:132 msgid "Subject" msgstr "" -#: [chatroom]subject_changed +#: ../cache/locales.php:133 msgid "Subject changed" msgstr "" -#: [chats]empty_title -msgid "No chats yet..." +#: ../cache/locales.php:134 +msgid "Open a new conversation by clicking on the plus button bellow" msgstr "" -#: [chats]empty -msgid "Open a new conversation by clicking on the plus button bellow or visit the Contacts page." -msgstr "" - -#: [chats]add +#: ../cache/locales.php:135 msgid "Chat with a contact" msgstr "" -#: [chats]more +#: ../cache/locales.php:136 +msgid "Frequent contacts" +msgstr "" + +#: ../cache/locales.php:137 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 "" - -#: [config]general +#: ../cache/locales.php:140 msgid "General" msgstr "" -#: [config]language +#: ../cache/locales.php:141 msgid "Language" msgstr "اللغة" -#: [config]roster +#: ../cache/locales.php:142 msgid "Roster display" msgstr "" -#: [config]roster_show +#: ../cache/locales.php:143 msgid "Show the offline contacts" msgstr "" -#: [config]roster_hide +#: ../cache/locales.php:144 msgid "Hide the offline contacts" msgstr "" -#: [config]appearence +#: ../cache/locales.php:145 msgid "Appearence" msgstr "" -#: [config]info -msgid "This configuration is shared wherever you are connected" +#: ../cache/locales.php:146 +msgid "This configuration is shared wherever you are connected !" msgstr "" -#: [notifications]message +#: ../cache/locales.php:148 msgid "Notify on incoming message" msgstr "" -#: [notifications]desktop +#: ../cache/locales.php:149 msgid "Use desktop notifications" msgstr "" -#: [general]legend [general]general_title +#: ../cache/locales.php:150 +msgid "Data" +msgstr "" + +#: ../cache/locales.php:151 +msgid "Cache" +msgstr "" + +#: ../cache/locales.php:152 ../cache/locales.php:218 ../cache/locales.php:466 +msgid "Contacts" +msgstr "" + +#: ../cache/locales.php:153 ../cache/locales.php:480 +msgid "Posts" +msgstr "" + +#: ../cache/locales.php:154 +msgid "Messages" +msgstr "" + +#: ../cache/locales.php:155 ../cache/locales.php:423 msgid "General Informations" msgstr "معلومات عامة" -#: [general]name [public_groups]name [chatrooms]name -msgid "Name" -msgstr "الاسم" - -#: [general]date_of_birth +#: ../cache/locales.php:158 ../cache/locales.php:427 msgid "Date of Birth" msgstr "تاريخ الميلاد" -#: [general]gender +#: ../cache/locales.php:159 ../cache/locales.php:428 msgid "Gender" msgstr "النوع" -#: [general]marital +#: ../cache/locales.php:160 ../cache/locales.php:429 msgid "Marital Status" msgstr "الحالة الاجتماعية" -#: [general]email +#: ../cache/locales.php:161 ../cache/locales.php:426 msgid "Email" msgstr "" -#: [general]website +#: ../cache/locales.php:162 ../cache/locales.php:430 msgid "Website" msgstr "موقع الوِب" -#: [general]about +#: ../cache/locales.php:163 ../cache/locales.php:431 msgid "About Me" msgstr "عنّي" -#: [general]accounts +#: ../cache/locales.php:164 msgid "Other Accounts" msgstr "" -#: [general]tune +#: ../cache/locales.php:165 msgid "Is Listening" msgstr "" -#: [position]legend [position]position_title +#: ../cache/locales.php:166 ../cache/locales.php:432 msgid "Geographic Position" msgstr "" -#: [position]locality +#: ../cache/locales.php:167 ../cache/locales.php:433 msgid "Locality" msgstr "" -#: [position]country +#: ../cache/locales.php:168 ../cache/locales.php:434 msgid "Country" msgstr "" -#: [mood]title +#: ../cache/locales.php:169 msgid "Mood" msgstr "" -#: [mood]im +#: ../cache/locales.php:170 msgid "I'm " msgstr "" -#: [listen]title +#: ../cache/locales.php:171 msgid "Listening" msgstr "" -#: [last]title +#: ../cache/locales.php:173 msgid "Last seen" msgstr "" -#: [client]title +#: ../cache/locales.php:174 msgid "Client Informations" msgstr "بيانات العميل" -#: [explore]last_registered +#: ../cache/locales.php:175 msgid "Last registered" msgstr "" -#: [explore]explore +#: ../cache/locales.php:176 msgid "Find some new friends" msgstr "" -#: [edit]title [button]edit +#: ../cache/locales.php:177 ../cache/locales.php:533 msgid "Edit" msgstr "" -#: [edit]alias +#: ../cache/locales.php:178 msgid "Alias" msgstr "الكنية" -#: [edit]group +#: ../cache/locales.php:179 msgid "Group" msgstr "" -#: [edit]updated [roster]updated +#: ../cache/locales.php:180 ../cache/locales.php:400 msgid "Contact updated" msgstr "" -#: [delete]title +#: ../cache/locales.php:181 msgid "Are you sure?" msgstr "" -#: [delete]text -msgid "You are going to delete one of your contacts, please confirm your action" +#: ../cache/locales.php:182 +msgid "" +"You are going to delete one of your contacts, please confirm your action" msgstr "" -#: [age]years +#: ../cache/locales.php:183 +#, php-format msgid "%s years" msgstr "" -#: [blog]last +#: ../cache/locales.php:184 msgid "Last public post" msgstr "" -#: [subscription]to -#, fuzzy -msgid "You can see this contact status" -msgstr "أزّل هذه المعرفة" - -#: [subscription]to_button -msgid "Share my status" -msgstr "" - -#: [subscription]to_text -msgid "But this contact cannot see yours" -msgstr "" - -#: [subscription]from -msgid "You are not subscribed to this contact" -msgstr "" - -#: [subscription]from_button -msgid "Ask to subscribe" -msgstr "" - -#: [subscription]from_text -msgid "But this contact can still see if you are online" -msgstr "" - -#: [subscription]nil -#, fuzzy -msgid "No subscriptions" -msgstr "الوصف" - -#: [subscription]nil_button -msgid "Invite" -msgstr "" - -#: [subscription]nil_text -msgid "This contact is in your contact list but there is no subscriptions between the two accounts" -msgstr "" - -#: [group]subscribe +#: ../cache/locales.php:185 msgid "Subscribe" msgstr "" -#: [group]subscribed +#: ../cache/locales.php:186 msgid "Subscribed" msgstr "" -#: [group]unsubscribe +#: ../cache/locales.php:187 msgid "Unsubscribe" msgstr "" -#: [group]unsubscribe_text +#: ../cache/locales.php:188 msgid "You are going to unsubscribe from this Group" msgstr "" -#: [group]unsubscribed +#: ../cache/locales.php:189 msgid "Unsubscribed" msgstr "" -#: [group]share_label +#: ../cache/locales.php:190 msgid "Make your membership to this group public to your friends" msgstr "" -#: [group]label_label +#: ../cache/locales.php:191 msgid "Give a label for this group" msgstr "" -#: [group]sure +#: ../cache/locales.php:192 msgid "Are you sure ?" msgstr "" -#: [group]empty_text +#: ../cache/locales.php:194 msgid "Discover, follow and share" msgstr "" -#: [group]empty +#: ../cache/locales.php:195 msgid "Something bad happened to this group" msgstr "" -#: [group]config_saved +#: ../cache/locales.php:196 msgid "Group configuration saved" msgstr "" -#: [group]delete_title +#: ../cache/locales.php:197 msgid "Delete the group" msgstr "" -#: [group]delete_text -msgid "You are going to delete the following group. Please confirm your action." +#: ../cache/locales.php:198 +msgid "" +"You are going to delete the following group. Please confirm your action." msgstr "" -#: [group]delete_clean_text -msgid "It seems that this group doesn't exists anymore. Do you want to remove it from your subscriptions?" +#: ../cache/locales.php:199 +msgid "" +"It seems that this group doesn't exists anymore. Do you want to remove it " +"from your subscriptions?" msgstr "" -#: [group]counter -msgid "%s groups on this server" -msgstr "" - -#: [group]subscriptions [statistics]subscriptions +#: ../cache/locales.php:201 ../cache/locales.php:408 msgid "Subscriptions" msgstr "" -#: [group]servers -#, fuzzy -msgid "Groups servers" -msgstr "المجموعات" - -#: [group]search_server -msgid "Search for a new server" -msgstr "" - -#: [group]help_info1 -msgid "Groups are the perfect way to share posts about topics that you like with all the other Movim's users." -msgstr "" - -#: [group]help_info2 -msgid "Choose a server and a Group and subscribe to it using the %s button in the header. You can also create a new one using the %s button." -msgstr "" - -#: [group]help_info3 -msgid "Done? You can now publish a new post in the Group by using the %s button." -msgstr "" - -#: [group]help_info4 -msgid "You will find a list of all your subscribed Groups in My Subscriptions and receive instantly all the new incoming posts in the %sNews%s page." -msgstr "" - -#: [groups]empty_title +#: ../cache/locales.php:202 ../cache/locales.php:290 msgid "Hello" msgstr "" -#: [groups]contact_post [hello]contact_post [menu]contact_post +#: ../cache/locales.php:203 ../cache/locales.php:225 ../cache/locales.php:291 msgid "Contact post" msgstr "" -#: [groups]empty_text1 -msgid "You don't have any subscriptions yet, select a group server above to start exploring." +#: ../cache/locales.php:204 +msgid "" +"You don't have any subscriptions yet, select a group server above to start " +"exploring." msgstr "" -#: [groups]empty_text2 +#: ../cache/locales.php:205 msgid "Subscribe to your favorite feeds by bookmarking them." msgstr "" -#: [groups]subscriptions +#: ../cache/locales.php:206 msgid "My Subscriptions" msgstr "" -#: [groups]add +#: ../cache/locales.php:207 msgid "Create a new Group" msgstr "" -#: [groups]name +#: ../cache/locales.php:208 msgid "Group name" msgstr "" -#: [groups]name_example +#: ../cache/locales.php:209 msgid "My Little Pony - Fan Club" msgstr "" -#: [groups]created +#: ../cache/locales.php:210 msgid "Group created successfully" msgstr "" -#: [groups]deleted +#: ../cache/locales.php:211 msgid "Group deleted successfully" msgstr "" -#: [groups]name_error +#: ../cache/locales.php:212 msgid "Please provide a valid group name (4 characters minimum)" msgstr "" -#: [groups]no_creation +#: ../cache/locales.php:213 msgid "You cannot create a new Group on this server" msgstr "" -#: [groups]sub +#: ../cache/locales.php:214 +#, php-format msgid "%s subscribers" msgstr "" -#: [groups]num +#: ../cache/locales.php:215 +#, php-format msgid "%s posts" msgstr "" -#: [groups]disco_error -#, fuzzy -msgid "This server doesn't exists" -msgstr "يستضيف هذا الخادوم %s حسابات" - -#: [menu]all +#: ../cache/locales.php:216 msgid "All" msgstr "الكل" -#: [menu]refresh +#: ../cache/locales.php:219 msgid "Refresh all the streams" msgstr "" -#: [roster]search -#, fuzzy -msgid "Search in your contacts" -msgstr "اتصالاتكم" - -#: [hello]active_contacts -#, fuzzy -msgid "Active contacts" -msgstr "اتصالاتكم" - -#: [hello]chat -msgid "Go on the Chat page" -msgstr "" - -#: [hello]news [page]news -msgid "News" -msgstr "اﻷخبار" - -#: [hello]news_page -msgid "Read all theses articles on the News page" -msgstr "" - -#: [hello]blog_title -msgid "Visit your public blog" -msgstr "" - -#: [hello]blog_text -msgid "See your public posts and share them with all your contacts" -msgstr "" - -#: [hello]share_title -msgid "Universal share button" -msgstr "" - -#: [hello]share_text -msgid "Bookmark or drag and drop the following button in your toolbar and use it on all the pages you want to share on Movim" -msgstr "" - -#: [hello]share_button -msgid "Share on Movim" -msgstr "" - -#: [help]faq -msgid "Frequently Asked Questions" -msgstr "" - -#: [banner]title -msgid "What do the little banners refer to ?" -msgstr "ما الذي تحيل إليه اللافتات الصغيرة؟" - -#: [banner]info1 -msgid "Thanks to these five little banners, you can quickly identitfy the level of confdentiality applied to the information you provide." -msgstr "بفضل هذه اللافتات الخمس الصغيرة يمكنك بسرعة معرفة مستوى الخصوصية المطبقة على المداخلات التي تضعها." - -#: [banner]white -msgid "White, only you can see the information" -msgstr "الأبيض يعني أنك وحدك تمكنك مطالعة المعلومات" - -#: [banner]green -msgid "Green, you have chosen some contacts who can see your information" -msgstr "الأخضر يعني أنك مكّنت بعض معارفك المختارين من مطالعة المعلومات" - -#: [banner]orange -msgid "Orange, all your contact list can see your information" -msgstr "البرتقالي يعني أن كل معارفك تمكنهم مطالعة المعلومات" - -#: [banner]red -msgid "Red, everybody in the XMPP network can see your information" -msgstr "الأحمر يعني أن كل من في شبكة XMPP تمكنه مطالعة المعلومات" - -#: [banner]black -msgid "Black, the whole Internet can see your information" -msgstr "الأسود يعني أن الإنترنت بأسرها تمكنها مطالعة المعلومات" - -#: [wiki]question -msgid "Looking for some documentation ?" -msgstr "" - -#: [wiki]button -msgid "Read the Wiki" -msgstr "" - -#: [ml]question -msgid "Talk with us by email ?" -msgstr "" - -#: [ml]button -msgid "Join the Mailing List" -msgstr "" - -#: [chatroom]question -msgid "Chat with the team ?" -msgstr "" - -#: [chatroom]button -msgid "Join the Chatroom" -msgstr "" - -#: [init]location -msgid "Location node created" -msgstr "" - -#: [init]bookmark -msgid "Bookmark node created" -msgstr "" - -#: [init]vcard4 -msgid "Profile node created" -msgstr "" - -#: [init]avatar -msgid "Avatar node created" -msgstr "" - -#: [init]subscriptions -msgid "Subscriptions node created" -msgstr "" - -#: [init]microblog -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 "اسم مستخدم غير صحيح" - -#: [error]jid -msgid "Invalid JID" -msgstr "مُعرِّفُ JID غير صحيح" - -#: [error]empty_challenge -msgid "Empty Challenge from the server" -msgstr "" - -#: [error]dns -msgid "XMPP Domain error, your account is not a correct Jabber ID" -msgstr "عطل متعلّق بنطاق XMPP. حسابك ليس بمعرِّفِ Jabber صحيح" - -#: [error]data_missings -msgid "Some data are missing !" -msgstr "البيانات ناقصة!" - -#: [error]wrong_password -msgid "Wrong password" -msgstr "كلمة السر غير صحيحة" - -#: [error]internal -msgid "Internal server error" -msgstr "عطل داخلي في الخادوم" - -#: [error]session -msgid "Session error" -msgstr "عطل في الجلسة" - -#: [error]account_created -msgid "Account successfully created" -msgstr "تمَ بنجاح إنشاء الحساب" - -#: [error]xmpp_unauthorized -msgctxt "[error]xmpp_unauthorized" -msgid "Your XMPP server is unauthorized" -msgstr "" - -#: [error]mec_error -msgid "The server takes too much time to respond" -msgstr "" - -#: [error]too_old -msgid "Your web browser is too old to use with Movim." -msgstr "المتصفح الذي تستخدمه أقدم من أن يُشغّل Movim!" - -#: [error]websocket -msgid "Movim cannot talk with the server, please try again later (Websocket connection error)" -msgstr "" - -#: [error]impossible -msgid "Impossible login" -msgstr "" - -#: [error]title -msgid "Oops!" -msgstr "" - -#: [error]default [visio]unknown_error -msgid "Unknown error" -msgstr "خطأ غير معروف" - -#: [error]login_format -msgid "Invalid username format" -msgstr "" - -#: [error]password_format -msgid "Invalid password format" -msgstr "" - -#: [error]unauthorized -msgctxt "[error]unauthorized" -msgid "Your XMPP server is unauthorized" -msgstr "" - -#: [error]conflict -msgid "A Movim session is already open on an other device" -msgstr "" - -#: [error]wrong_account -msgid "Movim failed to authenticate. You entered wrong data" -msgstr "تعذّر استيثاق Movim. أدخلت بيانات غير صحيحة" - -#: [error]mechanism -msgid "Authentication mechanism not supported by Movim" -msgstr "" - -#: [error]fail_auth -msgid "The XMPP authentification failed" -msgstr "تعذّر استيثاق XMPP" - -#: [account]title [accounts]accounts_title -msgid "Accounts" -msgstr "" - -#: [form]username -msgid "My address" -msgstr "عنوان بريدي" - -#: [form]create_one -msgid "Create one !" -msgstr "" - -#: [form]another_account -msgid "Another account" -msgstr "" - -#: [form]no_account -msgid "No account yet ?" -msgstr "" - -#: [form]whitelist.info -msgid "You can login with accounts from theses servers" -msgstr "" - -#: [form]connected -msgid "Connected" -msgstr "" - -#: [form]population -msgid "Population" -msgstr "" - -#: [menu]empty_title -msgid "No news yet..." -msgstr "" - -#: [menu]empty -msgid "Welcome on your news feed, here you will see all the posts published by your contacts and in the groups you have subscribed." -msgstr "" - -#: [menu]refresh -msgid "Refreshing all the streams" -msgstr "" - -#: [menu]public -msgid "This post is public" -msgstr "" - -#: [affiliations]title -msgid "Manage your members" -msgstr "" - -#: [affiliations]get -msgid "Get the members" -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 "" - -#: [notifs]title -msgid "Pending Invitations" -msgstr "" - -#: [notifs]wants_to_talk -msgid "%s wants to talk with you" -msgstr "" - -#: [notifs]manage -msgid "Manage" -msgstr "" - -#: [post]news_feed -msgid "News Feed" -msgstr "" - -#: [post]placeholder -msgid "Discover and register to the groups you are interested in" -msgstr "" - -#: [post]preview [page]preview -msgid "Preview" -msgstr "" - -#: [post]help [page]help -msgid "Help" -msgstr "مساعدة" - -#: [post]help_more -msgid "More help" -msgstr "" - -#: [post]help_manual -msgid "Markdown syntax manual" -msgstr "" - -#: [post]title -msgid "Title" -msgstr "العنوان" - -#: [post]content -msgid "Content" -msgstr "" - -#: [post]link -msgid "Link" -msgstr "" - -#: [post]tags -msgid "Tags" -msgstr "" - -#: [post]valid_url [publish]valid_url -msgid "Please enter a valid url" -msgstr "" - -#: [post]no_content_preview [publish]no_content_preview -msgid "No content to preview" -msgstr "" - -#: [post]no_content [publish]no_content [post]empty -msgid "No content" -msgstr "" - -#: [post]published -msgid "Post published" -msgstr "" - -#: [post]deleted -msgid "Post deleted" -msgstr "" - -#: [post]gallery -msgid "This picture will be added to your gallery" -msgstr "" - -#: [post]hot -msgid "What's Hot" -msgstr "" - -#: [post]hot_text -msgid "Posts recently published in Groups that you are not subscribed (yet)" -msgstr "" - -#: [post]new [publish]new -msgid "New post" -msgstr "" - -#: [post]embed_tip -msgid "You can also use services like Imgur or Flickr to host your picture and paste the link here." -msgstr "" - -#: [post]repost -msgid "This is a re-post from %s" -msgstr "" - -#: [post]repost_profile -msgid "See %s profile" -msgstr "" - -#: [post]public -msgid "Publish this post publicly?" -msgstr "" - -#: [post]blog_add -msgid "Post published on your blog" -msgstr "" - -#: [post]blog_remove -msgid "Post removed from your blog" -msgstr "" - -#: [post]delete_title [post]delete -msgid "Delete this post" -msgstr "حذف هذه التدوينة" - -#: [post]delete_text -msgid "You are going to delete this post, please confirm your action" -msgstr "" - -#: [post]comments_disabled -msgid "Comments disabled" -msgstr "" - -#: [post]comment_published -msgid "Comment published" -msgstr "" - -#: [status]disconnect -msgid "Disconnect" -msgstr "" - -#: [status]here -msgid "Your status here !" -msgstr "" - -#: [status]updated -msgid "Status updated" -msgstr "" - -#: [status]status -msgid "Status" -msgstr "" - -#: [status]presence -msgid "Presence" -msgstr "" - -#: [status]online -msgid "Online with Movim" -msgstr "" - -#: [publish]title -msgid "Publish" -msgstr "" - -#: [publish]attach -msgid "Add a file or a picture to your post" -msgstr "" - -#: [publish]no_publication -msgid "You cannot publish a post on this Group" -msgstr "" - -#: [publish]form_filled -msgid "Some fields have been filled in. Do you still want to go back and loose their content?" -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 "" - -#: [rooms]empty_text1 -msgid "You don't have any chatroom yet." -msgstr "" - -#: [rooms]empty_text2 -msgid "Add one by clicking on the add button in the header." -msgstr "" - -#: [chatrooms]title -msgid "Chatrooms" -msgstr "" - -#: [chatrooms]name_placeholder -msgid "My Favorite Room" -msgstr "" - -#: [chatrooms]users -msgid "Users in the room" -msgstr "" - -#: [chatrooms]bad_nickname -msgid "Please enter a correct nickname (2 to 40 characters)" -msgstr "" - -#: [room]anonymous_title -msgid "Public chatroom" -msgstr "" - -#: [room]no_room -msgid "Please provide a room address" -msgstr "" - -#: [room]anonymous_text1 -msgid "You are currently logued as an anonymous user." -msgstr "" - -#: [room]anonymous_text2 -msgid "You can join using your own account or create one on the login page by loging out using the cross in the top-right corner." -msgstr "" - -#: [room]anonymous_login -msgid "Login on %s" -msgstr "" - -#: [room]nick -msgid "Your nickname" -msgstr "" - -#: [roster]ungrouped -msgid "Ungrouped" -msgstr "غير مجموع" - -#: [roster]show_disconnected -msgid "Show disconnected contacts" -msgstr "" - -#: [roster]hide_disconnected -msgid "Hide disconnected contacts" -msgstr "" - -#: [roster]show_group -msgid "Show group %s" -msgstr "" - -#: [roster]hide_group -msgid "Hide group %s" -msgstr "" - -#: [roster]jid_error -msgid "Please enter a valid Jabber ID" -msgstr "" - -#: [roster]no_contacts_title -#, fuzzy -msgid "No contacts ?" -msgstr "اتصالاتكم" - -#: [roster]no_contacts_text -#, fuzzy -msgid "You can add one using the + button bellow" -msgstr "أي اتصالات؟ يمكنك إضافة واحد باستخدام زر + أدناه أو الذهاب إلى صفحة الاستكشاف" - -#: [roster]show_hide -msgid "Show/Hide" -msgstr "" - -#: [roster]add_contact_info1 -msgid "Enter the Jabber ID of your contact." -msgstr "أدخل معرف Jabber الخاص بصديقك." - -#: [roster]add_contact_info2 -msgid "Press enter to validate." -msgstr "" - -#: [roster]jid -msgid "JID" -msgstr "" - -#: [roster]results -msgid "Results" -msgstr "" - -#: [roster]added -msgid "Contact added" -msgstr "" - -#: [roster]deleted -msgid "Contact deleted" -msgstr "" - -#: [roster]search +#: ../cache/locales.php:220 ../cache/locales.php:402 msgid "Search" msgstr "" -#: [share]error +#: ../cache/locales.php:221 +msgid "Go on the Chat page" +msgstr "" + +#: ../cache/locales.php:222 +msgid "Read all theses articles on the News page" +msgstr "" + +#: ../cache/locales.php:223 +msgid "Visit your public blog" +msgstr "" + +#: ../cache/locales.php:224 +msgid "See your public posts and share them with all your contacts" +msgstr "" + +#: ../cache/locales.php:226 +msgid "Universal share button" +msgstr "" + +#: ../cache/locales.php:227 +msgid "" +"Bookmark or drag and drop the following button in your toolbar and use it on " +"all the pages you want to share on Movim" +msgstr "" + +#: ../cache/locales.php:228 +msgid "Share on Movim" +msgstr "" + +#: ../cache/locales.php:229 +msgid "Frequently Asked Questions" +msgstr "" + +#: ../cache/locales.php:230 +msgid "What do the little banners refer to ?" +msgstr "ما الذي تحيل إليه اللافتات الصغيرة؟" + +#: ../cache/locales.php:231 +msgid "" +"Thanks to these five little banners, you can quickly identitfy the level of " +"confdentiality applied to the information you provide." +msgstr "" +"بفضل هذه اللافتات الخمس الصغيرة يمكنك بسرعة معرفة مستوى الخصوصية المطبقة على " +"المداخلات التي تضعها." + +#: ../cache/locales.php:232 +msgid "White, only you can see the information" +msgstr "الأبيض يعني أنك وحدك تمكنك مطالعة المعلومات" + +#: ../cache/locales.php:233 +msgid "Green, you have chosen some contacts who can see your information" +msgstr "الأخضر يعني أنك مكّنت بعض معارفك المختارين من مطالعة المعلومات" + +#: ../cache/locales.php:234 +msgid "Orange, all your contact list can see your information" +msgstr "البرتقالي يعني أن كل معارفك تمكنهم مطالعة المعلومات" + +#: ../cache/locales.php:235 +msgid "Red, everybody in the XMPP network can see your information" +msgstr "الأحمر يعني أن كل من في شبكة XMPP تمكنه مطالعة المعلومات" + +#: ../cache/locales.php:236 +msgid "Black, the whole Internet can see your information" +msgstr "الأسود يعني أن الإنترنت بأسرها تمكنها مطالعة المعلومات" + +#: ../cache/locales.php:237 +msgid "Looking for some documentation ?" +msgstr "" + +#: ../cache/locales.php:238 +msgid "Read the Wiki" +msgstr "" + +#: ../cache/locales.php:239 +msgid "Talk with us by email ?" +msgstr "" + +#: ../cache/locales.php:240 +msgid "Join the Mailing List" +msgstr "" + +#: ../cache/locales.php:241 +msgid "Chat with the team ?" +msgstr "" + +#: ../cache/locales.php:242 +msgid "Join the Chatroom" +msgstr "" + +#: ../cache/locales.php:243 +msgid "Location node created" +msgstr "" + +#: ../cache/locales.php:244 +msgid "Bookmark node created" +msgstr "" + +#: ../cache/locales.php:245 +msgid "Profile node created" +msgstr "" + +#: ../cache/locales.php:246 +msgid "Avatar node created" +msgstr "" + +#: ../cache/locales.php:247 +msgid "Subscriptions node created" +msgstr "" + +#: ../cache/locales.php:248 +msgid "Microblog node created" +msgstr "" + +#: ../cache/locales.php:249 +msgid "Location" +msgstr "" + +#: ../cache/locales.php:250 +msgid "Wrong position" +msgstr "" + +#: ../cache/locales.php:251 +msgid "Location updated" +msgstr "" + +#: ../cache/locales.php:252 +msgid "Update my position" +msgstr "" + +#: ../cache/locales.php:253 +msgid "Wrong username" +msgstr "اسم مستخدم غير صحيح" + +#: ../cache/locales.php:254 +msgid "Invalid JID" +msgstr "مُعرِّفُ JID غير صحيح" + +#: ../cache/locales.php:255 +msgid "Empty Challenge from the server" +msgstr "" + +#: ../cache/locales.php:256 +msgid "XMPP Domain error, your account is not a correct Jabber ID" +msgstr "عطل متعلّق بنطاق XMPP. حسابك ليس بمعرِّفِ Jabber صحيح" + +#: ../cache/locales.php:257 +msgid "Some data are missing !" +msgstr "البيانات ناقصة!" + +#: ../cache/locales.php:258 +msgid "Wrong password" +msgstr "كلمة السر غير صحيحة" + +#: ../cache/locales.php:259 +msgid "Internal server error" +msgstr "عطل داخلي في الخادوم" + +#: ../cache/locales.php:260 +msgid "Session error" +msgstr "عطل في الجلسة" + +#: ../cache/locales.php:261 +msgid "Account successfully created" +msgstr "تمَ بنجاح إنشاء الحساب" + +#: ../cache/locales.php:262 ../cache/locales.php:271 +msgid "Your XMPP server is unauthorized" +msgstr "" + +#: ../cache/locales.php:263 +msgid "The server takes too much time to respond" +msgstr "" + +#: ../cache/locales.php:264 +msgid "Your web browser is too old to use with Movim." +msgstr "المتصفح الذي تستخدمه أقدم من أن يُشغّل Movim!" + +#: ../cache/locales.php:265 +msgid "" +"Movim cannot talk with the server, please try again later (Websocket " +"connection error)" +msgstr "" + +#: ../cache/locales.php:266 +msgid "Impossible login" +msgstr "" + +#: ../cache/locales.php:267 +msgid "Oops!" +msgstr "" + +#: ../cache/locales.php:268 ../cache/locales.php:449 ../cache/locales.php:455 +msgid "Unknown error" +msgstr "خطأ غير معروف" + +#: ../cache/locales.php:269 +msgid "Invalid username format" +msgstr "" + +#: ../cache/locales.php:270 +msgid "Invalid password format" +msgstr "" + +#: ../cache/locales.php:272 +msgid "A Movim session is already open on an other device" +msgstr "" + +#: ../cache/locales.php:273 +msgid "Movim failed to authenticate. You entered wrong data" +msgstr "تعذّر استيثاق Movim. أدخلت بيانات غير صحيحة" + +#: ../cache/locales.php:274 +msgid "Authentication mechanism not supported by Movim" +msgstr "" + +#: ../cache/locales.php:275 +msgid "The XMPP authentification failed" +msgstr "تعذّر استيثاق XMPP" + +#: ../cache/locales.php:276 +#, php-format +msgid "" +"You can login with Facebook (chat only) using %syour.id@chat.facebook.com%s " +"and your password" +msgstr "" + +#: ../cache/locales.php:277 +#, php-format +msgid "%sGmail accounts are also compatible%s but are not fully supported" +msgstr "" + +#: ../cache/locales.php:278 +msgid "You can login using your favorite Jabber account" +msgstr "" + +#: ../cache/locales.php:279 +msgid "or with our demonstration account" +msgstr "" + +#: ../cache/locales.php:280 ../cache/locales.php:435 +msgid "Accounts" +msgstr "" + +#: ../cache/locales.php:281 +msgid "My address" +msgstr "عنوان بريدي" + +#: ../cache/locales.php:283 +msgid "Create one !" +msgstr "" + +#: ../cache/locales.php:284 +msgid "No account yet ?" +msgstr "" + +#: ../cache/locales.php:285 +msgid "Another account" +msgstr "" + +#: ../cache/locales.php:286 +msgid "You can login with accounts from theses servers" +msgstr "" + +#: ../cache/locales.php:287 +msgid "Connected" +msgstr "" + +#: ../cache/locales.php:288 +msgid "Population" +msgstr "" + +#: ../cache/locales.php:289 +msgid "Bad nickname (between 4 and 40 characters)" +msgstr "" + +#: ../cache/locales.php:292 +msgid "" +"Welcome on your news feed, here you will see all the posts published in the " +"groups you have subscribed." +msgstr "" + +#: ../cache/locales.php:293 +msgid "Refreshing all the streams" +msgstr "" + +#: ../cache/locales.php:294 +msgid "This post is public" +msgstr "" + +#: ../cache/locales.php:295 +msgid "Manage your members" +msgstr "" + +#: ../cache/locales.php:296 +msgid "Get the members" +msgstr "" + +#: ../cache/locales.php:297 +msgid "Affiliations saved" +msgstr "" + +#: ../cache/locales.php:298 +msgid "Manage your subscriptions" +msgstr "" + +#: ../cache/locales.php:299 +msgid "Manage the subscriptions" +msgstr "" + +#: ../cache/locales.php:300 +msgid "Get the subscriptions" +msgstr "" + +#: ../cache/locales.php:301 +msgid "Subscriptions saved" +msgstr "" + +#: ../cache/locales.php:302 +msgid "Pending Invitations" +msgstr "" + +#: ../cache/locales.php:303 +#, php-format +msgid "%s wants to talk with you" +msgstr "" + +#: ../cache/locales.php:304 +msgid "Manage" +msgstr "" + +#: ../cache/locales.php:305 ../cache/locales.php:338 +msgid "News Feed" +msgstr "" + +#: ../cache/locales.php:306 ../cache/locales.php:339 +msgid "Discover and register to the groups you are interested in" +msgstr "" + +#: ../cache/locales.php:307 ../cache/locales.php:340 ../cache/locales.php:482 +msgid "Preview" +msgstr "" + +#: ../cache/locales.php:308 ../cache/locales.php:341 ../cache/locales.php:478 +msgid "Help" +msgstr "مساعدة" + +#: ../cache/locales.php:309 ../cache/locales.php:342 +msgid "More help" +msgstr "" + +#: ../cache/locales.php:310 ../cache/locales.php:343 +msgid "Markdown syntax manual" +msgstr "" + +#: ../cache/locales.php:311 ../cache/locales.php:344 ../cache/locales.php:681 +msgid "Title" +msgstr "العنوان" + +#: ../cache/locales.php:312 ../cache/locales.php:345 +msgid "Content" +msgstr "" + +#: ../cache/locales.php:313 ../cache/locales.php:346 +msgid "Link" +msgstr "" + +#: ../cache/locales.php:314 ../cache/locales.php:347 +msgid "Tags" +msgstr "" + +#: ../cache/locales.php:315 ../cache/locales.php:348 +msgid "Please enter a valid url" +msgstr "" + +#: ../cache/locales.php:316 ../cache/locales.php:349 +msgid "No content to preview" +msgstr "" + +#: ../cache/locales.php:317 ../cache/locales.php:350 ../cache/locales.php:687 +msgid "No content" +msgstr "" + +#: ../cache/locales.php:318 ../cache/locales.php:351 +msgid "Post published" +msgstr "" + +#: ../cache/locales.php:319 ../cache/locales.php:352 +msgid "Post deleted" +msgstr "" + +#: ../cache/locales.php:320 ../cache/locales.php:353 +msgid "This picture will be added to your gallery" +msgstr "" + +#: ../cache/locales.php:321 ../cache/locales.php:354 +msgid "What's Hot" +msgstr "" + +#: ../cache/locales.php:322 ../cache/locales.php:355 +msgid "New post" +msgstr "" + +#: ../cache/locales.php:323 ../cache/locales.php:357 +msgid "" +"You can also use services like Imgur or Flickr to host your picture and " +"paste the link here." +msgstr "" + +#: ../cache/locales.php:324 +#, php-format +msgid "This is a re-post from %s" +msgstr "" + +#: ../cache/locales.php:325 +#, php-format +msgid "See %s profile" +msgstr "" + +#: ../cache/locales.php:326 +msgid "Publish this post on your public feed?" +msgstr "" + +#: ../cache/locales.php:327 +msgid "Post published on your blog" +msgstr "" + +#: ../cache/locales.php:328 +msgid "Post removed from your blog" +msgstr "" + +#: ../cache/locales.php:329 ../cache/locales.php:701 +msgid "Delete this post" +msgstr "حذف هذه التدوينة" + +#: ../cache/locales.php:330 +msgid "You are going to delete this post, please confirm your action" +msgstr "" + +#: ../cache/locales.php:331 +msgid "Comments disabled" +msgstr "" + +#: ../cache/locales.php:332 +msgid "Comment published" +msgstr "" + +#: ../cache/locales.php:333 +msgid "Disconnect" +msgstr "" + +#: ../cache/locales.php:334 +msgid "Your status here !" +msgstr "" + +#: ../cache/locales.php:335 +msgid "Status updated" +msgstr "" + +#: ../cache/locales.php:336 +msgid "Status" +msgstr "" + +#: ../cache/locales.php:337 +msgid "Presence" +msgstr "" + +#: ../cache/locales.php:356 +msgid "Publish" +msgstr "" + +#: ../cache/locales.php:358 +msgid "You cannot publish a post on this Group" +msgstr "" + +#: ../cache/locales.php:359 +msgid "" +"Some fields have been filled in. Do you still want to go back and loose " +"their content?" +msgstr "" + +#: ../cache/locales.php:360 +msgid "Shared" +msgstr "" + +#: ../cache/locales.php:362 +#, php-format +msgid "%s has been added to your public groups" +msgstr "" + +#: ../cache/locales.php:363 +#, php-format +msgid "%s has been removed from your public groups" +msgstr "" + +#: ../cache/locales.php:364 +msgid "Add a chatroom" +msgstr "" + +#: ../cache/locales.php:365 +msgid "You don't have any chatroom yet." +msgstr "" + +#: ../cache/locales.php:366 +msgid "Add one by clicking on the add button in the header." +msgstr "" + +#: ../cache/locales.php:367 +msgid "Chatrooms" +msgstr "" + +#: ../cache/locales.php:370 +msgid "My Favorite Room" +msgstr "" + +#: ../cache/locales.php:374 +msgid "Remove a chatroom" +msgstr "" + +#: ../cache/locales.php:375 +msgid "" +"You are going to remove the following chatroom. Please confirm your action." +msgstr "" + +#: ../cache/locales.php:378 +msgid "Users in the room" +msgstr "" + +#: ../cache/locales.php:379 +msgid "Please enter a correct nickname (6 to 40 characters)" +msgstr "" + +#: ../cache/locales.php:381 +msgid "Public chatroom" +msgstr "" + +#: ../cache/locales.php:382 +msgid "Please provide a room address" +msgstr "" + +#: ../cache/locales.php:383 +msgid "You are currently logued as an anonymous user." +msgstr "" + +#: ../cache/locales.php:384 +msgid "" +"You can join using your own account or create one on the login page by " +"loging out using the cross in the top-right corner." +msgstr "" + +#: ../cache/locales.php:385 +#, php-format +msgid "Login on %s" +msgstr "" + +#: ../cache/locales.php:386 +msgid "Your nickname" +msgstr "" + +#: ../cache/locales.php:387 +msgid "Ungrouped" +msgstr "غير مجموع" + +#: ../cache/locales.php:388 +msgid "Show disconnected contacts" +msgstr "" + +#: ../cache/locales.php:389 +msgid "Hide disconnected contacts" +msgstr "" + +#: ../cache/locales.php:390 +#, php-format +msgid "Show group %s" +msgstr "" + +#: ../cache/locales.php:391 +#, php-format +msgid "Hide group %s" +msgstr "" + +#: ../cache/locales.php:392 +msgid "Please enter a valid Jabber ID" +msgstr "" + +#: ../cache/locales.php:393 +msgid "" +"No contacts ? You can add one using the + button bellow or going to the " +"Explore page" +msgstr "" +"أي اتصالات؟ يمكنك إضافة واحد باستخدام زر + أدناه أو الذهاب إلى صفحة الاستكشاف" + +#: ../cache/locales.php:394 +msgid "Show/Hide" +msgstr "" + +#: ../cache/locales.php:395 +msgid "Enter the Jabber ID of your contact." +msgstr "أدخل معرف Jabber الخاص بصديقك." + +#: ../cache/locales.php:396 +msgid "Press enter to validate." +msgstr "" + +#: ../cache/locales.php:397 +msgid "JID" +msgstr "" + +#: ../cache/locales.php:398 +msgid "Results" +msgstr "" + +#: ../cache/locales.php:399 +msgid "Contact added" +msgstr "" + +#: ../cache/locales.php:401 +msgid "Contact deleted" +msgstr "" + +#: ../cache/locales.php:403 msgid "This is not a valid url" msgstr "" -#: [share]success +#: ../cache/locales.php:404 msgid "Sharing the URL" msgstr "" -#: [statistics]title +#: ../cache/locales.php:405 msgid "Statistics" msgstr "" -#: [statistics]since +#: ../cache/locales.php:406 msgid "Since" msgstr "" -#: [statistics]sessions +#: ../cache/locales.php:407 msgid "Sessions" msgstr "" -#: [statistics]monthly_sub +#: ../cache/locales.php:409 msgid "Monthly Subscriptions" msgstr "" -#: [statistics]monthly_sub_cum +#: ../cache/locales.php:410 msgid "Monthly Subscriptions Cumulated" msgstr "" -#: [subscribe]info -msgid "Movim is a decentralized social network, before creating a new account you need to choose a server to register." +#: ../cache/locales.php:412 +msgid "" +"Movim is a decentralized social network, before creating a new account you " +"need to choose a server to register." msgstr "" -#: [subscribe]server_question +#: ../cache/locales.php:413 msgid "Your server here ?" msgstr "" -#: [subscribe]server_contact +#: ../cache/locales.php:414 msgid "Contact us to add yours to the officially supported servers list" msgstr "" -#: [feed]nope +#: ../cache/locales.php:416 msgid "No public feed for this contact" msgstr "" -#: [feed]nope_contact +#: ../cache/locales.php:417 msgid "No contact specified" msgstr "" -#: [upload]title -msgid "Upload a file" -msgstr "" - -#: [upload]choose -msgid "Choose a file to upload" -msgstr "" - -#: [vcard]title [page]profile +#: ../cache/locales.php:418 ../cache/locales.php:473 msgid "Profile" msgstr "الملف الشخصي" -#: [vcard]updated +#: ../cache/locales.php:419 msgid "Profile Updated" msgstr "" -#: [vcard]not_updated +#: ../cache/locales.php:420 msgid "Profile Not Updated" msgstr "" -#: [vcard]public +#: ../cache/locales.php:421 msgid "Your profile is now public" msgstr "" -#: [vcard]restricted +#: ../cache/locales.php:422 msgid "Your profile is now restricted" msgstr "" -#: [general]nickname -#, fuzzy -msgctxt "[general]nickname" -msgid "Nickname" -msgstr "الكنية" - -#: [accounts]twitter +#: ../cache/locales.php:436 msgid "Twitter" msgstr "" -#: [accounts]skype +#: ../cache/locales.php:437 msgid "Skype" msgstr "" -#: [accounts]yahoo +#: ../cache/locales.php:438 msgid "Yahoo" msgstr "" -#: [accounts]accounts_nickname -#, fuzzy -msgctxt "[accounts]accounts_nickname" -msgid "Nickname" -msgstr "الكنية" - -#: [accounts]accounts_yahoo -msgid "Yahoo Account" -msgstr "" - -#: [privacy]privacy_title +#: ../cache/locales.php:439 msgid "Privacy Level" msgstr "" -#: [privacy]privacy_question +#: ../cache/locales.php:440 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." +#: ../cache/locales.php:441 +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." msgstr "" -#: [save]submit [button]submit -msgid "Submit" -msgstr "أودِع" - -#: [save]reset [button]reset -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 +#: ../cache/locales.php:442 msgid "Call" msgstr "" -#: [visio]hang_up +#: ../cache/locales.php:443 msgid "Hang up" msgstr "" -#: [visio]connection +#: ../cache/locales.php:444 msgid "Connection" msgstr "" -#: [global]no_js +#: ../cache/locales.php:445 ../cache/locales.php:451 +msgid "Hung up" +msgstr "" + +#: ../cache/locales.php:446 ../cache/locales.php:452 +msgid "Your contact is busy" +msgstr "" + +#: ../cache/locales.php:447 ../cache/locales.php:453 +msgid "Declined" +msgstr "" + +#: ../cache/locales.php:448 ../cache/locales.php:454 +msgid "Remote application incompatible" +msgstr "" + +#: ../cache/locales.php:450 ../cache/locales.php:456 +msgid "Is calling you" +msgstr "" + +#: ../cache/locales.php:457 msgid "You don't have javascript enabled. Good luck with that." msgstr "" -#: [global]description -msgid "Movim is a kickass distributed social networking platform that protect your privacy an comes with a set of awesome features." +#: ../cache/locales.php:458 +msgid "" +"Movim is a kickass distributed social networking platform that protect your " +"privacy an comes with a set of awesome features." msgstr "" -#: [page]administration +#: ../cache/locales.php:459 msgid "Administration" msgstr "" -#: [page]home +#: ../cache/locales.php:460 msgid "Home" msgstr "البداية" -#: [page]discover +#: ../cache/locales.php:461 msgid "Discover" msgstr "" -#: [page]explore +#: ../cache/locales.php:462 msgid "Explore" msgstr "استكشاف" -#: [page]account_creation +#: ../cache/locales.php:463 msgid "Account Creation" msgstr "إنشاء الحساب" -#: [page]avatar +#: ../cache/locales.php:464 +msgid "News" +msgstr "اﻷخبار" + +#: ../cache/locales.php:465 msgid "Avatar" msgstr "الصورة" -#: [page]chats +#: ../cache/locales.php:467 msgid "Chats" msgstr "" -#: [page]server +#: ../cache/locales.php:470 msgid "Server" msgstr "" -#: [page]public_groups +#: ../cache/locales.php:471 msgid "Public Groups" msgstr "مجموعات عامة" -#: [page]viewer +#: ../cache/locales.php:472 msgid "Viewer" msgstr "" -#: [page]media +#: ../cache/locales.php:474 msgid "Media" msgstr "وسائط" -#: [page]blog +#: ../cache/locales.php:475 msgid "Blog" msgstr "المدونة" -#: [page]about +#: ../cache/locales.php:476 msgid "About" msgstr "" -#: [page]login +#: ../cache/locales.php:477 msgid "Login" msgstr "" -#: [page]feed +#: ../cache/locales.php:479 msgid "Feed" msgstr "تلقيمة" -#: [page]gallery +#: ../cache/locales.php:481 msgid "Gallery" msgstr "" -#: [page]visio +#: ../cache/locales.php:483 msgid "Visio-conference" msgstr "" -#: [page]pods +#: ../cache/locales.php:484 msgid "Pods" msgstr "" -#: [page]share +#: ../cache/locales.php:485 msgid "Share" msgstr "" -#: [page]room +#: ../cache/locales.php:486 msgid "Room" msgstr "" -#: [error]error +#: ../cache/locales.php:487 +#, php-format msgid "Error: %s" msgstr "خطأ: %s" -#: [error]cannot_load_file +#: ../cache/locales.php:488 +#, php-format msgid "Cannot load file '%s'" msgstr "لا يمكن تحميل الملف '%s'" -#: [error]route +#: ../cache/locales.php:489 +#, php-format msgid "Route error, please set all the parameters for the page %s" msgstr "خطأ في الطريق، برجاء ضبط المعاملات لهذه الصفحة %s" -#: [error]widget_load_error +#: ../cache/locales.php:490 +#, php-format msgid "Requested widget '%s' doesn't exist." msgstr "" -#: [error]widget_call_error +#: ../cache/locales.php:491 +#, php-format msgid "Requested event '%s' not registered." msgstr "" -#: [error]whoops +#: ../cache/locales.php:492 msgid "Whoops!" msgstr "" -#: [error]media_not_found +#: ../cache/locales.php:493 msgid "It seem that you don't have any pictures here?" msgstr "" -#: [error]media_ask_upload +#: ../cache/locales.php:494 msgid "You can try to upload a couple by going to the Media page" msgstr "" -#: [title]about +#: ../cache/locales.php:495 +#, php-format msgid "%s - About" msgstr "" -#: [title]account +#: ../cache/locales.php:496 +#, php-format msgid "%s - Account" msgstr "" -#: [title]administration +#: ../cache/locales.php:497 +#, php-format msgid "%s - Administration Panel" msgstr "" -#: [title]blog +#: ../cache/locales.php:498 +#, php-format msgid "%s - Blog" msgstr "%s - المدونة" -#: [title]configuration +#: ../cache/locales.php:499 +#, php-format msgid "%s - Configuration" msgstr "%s - تكوين" -#: [title]discover +#: ../cache/locales.php:500 +#, php-format msgid "%s - Discover" msgstr "" -#: [title]explore +#: ../cache/locales.php:501 +#, php-format msgid "%s - Explore" msgstr "%s - استكشاف" -#: [title]help +#: ../cache/locales.php:502 +#, php-format msgid "%s - Help Page" msgstr "%s - صفحة المساعدة" -#: [title]login +#: ../cache/locales.php:503 +#, php-format msgid "%s - Login to Movim" msgstr "%s - الولوج إلى Movim" -#: [title]main +#: ../cache/locales.php:504 +#, php-format msgid "%s - Welcome to Movim" msgstr "%s - MOVIM مرحبا بكم في" -#: [title]media +#: ../cache/locales.php:505 +#, php-format msgid "%s - Media" msgstr "%s - وسائط" -#: [title]news +#: ../cache/locales.php:506 +#, php-format msgid "%s - News" msgstr "%s - اﻷخبار" -#: [title]node_configuration +#: ../cache/locales.php:507 +#, php-format msgid "%s - Group Configuration" msgstr "" -#: [title]node +#: ../cache/locales.php:508 +#, php-format msgid "%s - Group" msgstr "" -#: [title]not_found +#: ../cache/locales.php:509 +#, php-format msgid "%s - 404" msgstr "" -#: [title]profile +#: ../cache/locales.php:510 +#, php-format msgid "%s - Profile" msgstr "%s - الملف الشخصي" -#: [title]server +#: ../cache/locales.php:511 +#, php-format msgid "%s - Server" msgstr "" -#: [button]validate +#: ../cache/locales.php:512 msgid "Validate" msgstr "" -#: [button]refresh +#: ../cache/locales.php:513 msgid "Refresh" msgstr "" -#: [button]add +#: ../cache/locales.php:514 msgid "Add" msgstr "أضِف" -#: [button]delete +#: ../cache/locales.php:515 msgid "Delete" msgstr "" -#: [button]cancel +#: ../cache/locales.php:516 +msgid "Remove" +msgstr "" + +#: ../cache/locales.php:517 msgid "Cancel" msgstr "ألغِ" -#: [button]close +#: ../cache/locales.php:518 msgid "Close" msgstr "" -#: [button]update +#: ../cache/locales.php:519 msgid "Update" msgstr "" -#: [button]updating +#: ../cache/locales.php:520 msgid "Updating" msgstr "" -#: [button]submitting +#: ../cache/locales.php:521 +msgid "Submit" +msgstr "أودِع" + +#: ../cache/locales.php:522 msgid "Submitting" msgstr "يجري الإيداع" -#: [button]register +#: ../cache/locales.php:523 +msgid "Reset" +msgstr "تصفير" + +#: ../cache/locales.php:524 msgid "Register" msgstr "" -#: [button]unregister +#: ../cache/locales.php:525 msgid "Unregister" msgstr "" -#: [button]save +#: ../cache/locales.php:526 msgid "Save" msgstr "" -#: [button]clear +#: ../cache/locales.php:527 msgid "Clear" msgstr "" -#: [button]upload +#: ../cache/locales.php:528 msgid "Upload" msgstr "" -#: [button]come_in +#: ../cache/locales.php:529 msgid "Come in!" msgstr "تعال!" -#: [button]connecting +#: ../cache/locales.php:530 msgid "Connecting" msgstr "" -#: [button]bool_yes +#: ../cache/locales.php:531 msgid "Yes" msgstr "نعم" -#: [button]bool_no +#: ../cache/locales.php:532 msgid "No" msgstr "لا" -#: [button]return +#: ../cache/locales.php:534 msgid "Return" msgstr "" -#: [button]accept +#: ../cache/locales.php:535 msgid "Accept" msgstr "اقبل" -#: [button]refuse +#: ../cache/locales.php:536 msgid "Refuse" msgstr "" -#: [button]next +#: ../cache/locales.php:537 msgid "Next" msgstr "" -#: [button]previous +#: ../cache/locales.php:538 msgid "Previous" msgstr "" -#: [step]step +#: ../cache/locales.php:539 +#, php-format msgid "Step %s" msgstr "" -#: [day]title +#: ../cache/locales.php:542 msgid "Day" msgstr "يوم" -#: [day]monday +#: ../cache/locales.php:543 msgid "Monday" msgstr "الاثنين" -#: [day]tuesday +#: ../cache/locales.php:544 msgid "Tuesday" msgstr "الثّلاثاء" -#: [day]wednesday +#: ../cache/locales.php:545 msgid "Wednesday" msgstr "الأربعاء" -#: [day]thursday +#: ../cache/locales.php:546 msgid "Thursday" msgstr "الخميس" -#: [day]friday +#: ../cache/locales.php:547 msgid "Friday" msgstr "الجمعة" -#: [day]saturday +#: ../cache/locales.php:548 msgid "Saturday" msgstr "السّبت" -#: [day]sunday +#: ../cache/locales.php:549 msgid "Sunday" msgstr "" -#: [gender]nil -#, fuzzy -msgctxt "[gender]nil" +#: ../cache/locales.php:550 ../cache/locales.php:559 msgid "None" msgstr "لا شيء" -#: [gender]male +#: ../cache/locales.php:551 msgid "Male" msgstr "ذكر" -#: [gender]female +#: ../cache/locales.php:552 msgid "Female" msgstr "أنثى" -#: [gender]other +#: ../cache/locales.php:553 msgid "Other" msgstr "غير ذلك" -#: [client]bot +#: ../cache/locales.php:554 msgid "Bot" msgstr "روبوت" -#: [client]desktop +#: ../cache/locales.php:555 msgid "Desktop" msgstr "سطح المكتب" -#: [client]phone +#: ../cache/locales.php:556 msgid "Phone" msgstr "هاتف" -#: [client]web +#: ../cache/locales.php:557 msgid "Web" msgstr "" -#: [client]registered +#: ../cache/locales.php:558 msgid "Registered" msgstr "" -#: [marital]nil -#, fuzzy -msgctxt "[marital]nil" -msgid "None" -msgstr "لا شيء" - -#: [marital]single +#: ../cache/locales.php:560 msgid "Single" msgstr "عَزَب" -#: [marital]relationship +#: ../cache/locales.php:561 msgid "In a relationship" msgstr "مرتبط" -#: [marital]married +#: ../cache/locales.php:562 msgid "Married" msgstr "متزوّج" -#: [marital]divorced +#: ../cache/locales.php:563 msgid "Divorced" msgstr "مطلّق" -#: [marital]widowed +#: ../cache/locales.php:564 msgid "Widowed" msgstr "أرمل" -#: [marital]cohabiting +#: ../cache/locales.php:565 msgid "Cohabiting" msgstr "مُساكِن" -#: [marital]union +#: ../cache/locales.php:566 msgid "Civil Union" msgstr "علاقة مدنية" -#: [flag]white +#: ../cache/locales.php:567 msgid "Not shared" msgstr "" -#: [flag]green +#: ../cache/locales.php:568 msgid "Shared with one contact" msgstr "" -#: [flag]orange +#: ../cache/locales.php:569 msgid "Shared with all contacts" msgstr "" -#: [flag]red +#: ../cache/locales.php:570 msgid "Shared with the XMPP network" msgstr "" -#: [flag]black +#: ../cache/locales.php:571 msgid "Shared with the whole Internet" msgstr "" -#: [presence]online +#: ../cache/locales.php:572 msgid "Online" msgstr "حاضر" -#: [presence]away +#: ../cache/locales.php:573 msgid "Away" msgstr "غائب" -#: [presence]dnd +#: ../cache/locales.php:574 msgid "Do Not Disturb" msgstr "لا تزعجوني" -#: [presence]xa +#: ../cache/locales.php:575 msgid "Extended Away" msgstr "غائب طويلا" -#: [presence]offline +#: ../cache/locales.php:576 msgid "Offline" msgstr "غير متصل" -#: [presence]error +#: ../cache/locales.php:577 msgid "Error" msgstr "" -#: [mood]afraid +#: ../cache/locales.php:578 msgid "afraid" msgstr "" -#: [mood]amazed +#: ../cache/locales.php:579 msgid "amazed" msgstr "" -#: [mood]amorous +#: ../cache/locales.php:580 msgid "amorous" msgstr "" -#: [mood]angry +#: ../cache/locales.php:581 msgid "angry" msgstr "غاضب" -#: [mood]annoyed +#: ../cache/locales.php:582 msgid "annoyed" msgstr "" -#: [mood]anxious +#: ../cache/locales.php:583 msgid "anxious" msgstr "" -#: [mood]aroused +#: ../cache/locales.php:584 msgid "aroused" msgstr "" -#: [mood]ashamed +#: ../cache/locales.php:585 msgid "ashamed" msgstr "" -#: [mood]bored +#: ../cache/locales.php:586 msgid "bored" msgstr "" -#: [mood]brave +#: ../cache/locales.php:587 msgid "brave" msgstr "" -#: [mood]calm +#: ../cache/locales.php:588 msgid "calm" msgstr "" -#: [mood]cautious +#: ../cache/locales.php:589 msgid "cautious" msgstr "" -#: [mood]cold +#: ../cache/locales.php:590 msgid "cold" msgstr "بارد" -#: [mood]confident +#: ../cache/locales.php:591 msgid "confident" msgstr "" -#: [mood]confused +#: ../cache/locales.php:592 msgid "confused" msgstr "" -#: [mood]contemplative +#: ../cache/locales.php:593 msgid "contemplative" msgstr "" -#: [mood]contented +#: ../cache/locales.php:594 msgid "contented" msgstr "" -#: [mood]cranky +#: ../cache/locales.php:595 msgid "cranky" msgstr "" -#: [mood]crazy +#: ../cache/locales.php:596 msgid "crazy" msgstr "" -#: [mood]creative +#: ../cache/locales.php:597 msgid "creative" msgstr "مبدع" -#: [mood]curious +#: ../cache/locales.php:598 msgid "curious" msgstr "" -#: [mood]dejected +#: ../cache/locales.php:599 msgid "dejected" msgstr "" -#: [mood]depressed +#: ../cache/locales.php:600 msgid "depressed" msgstr "" -#: [mood]disappointed +#: ../cache/locales.php:601 msgid "disappointed" msgstr "" -#: [mood]disgusted +#: ../cache/locales.php:602 msgid "disgusted" msgstr "" -#: [mood]dismayed +#: ../cache/locales.php:603 msgid "dismayed" msgstr "" -#: [mood]distracted +#: ../cache/locales.php:604 msgid "distracted" msgstr "" -#: [mood]embarrassed +#: ../cache/locales.php:605 msgid "embarrassed" msgstr "" -#: [mood]envious +#: ../cache/locales.php:606 msgid "envious" msgstr "" -#: [mood]excited +#: ../cache/locales.php:607 msgid "excited" msgstr "" -#: [mood]flirtatious +#: ../cache/locales.php:608 msgid "flirtatious" msgstr "" -#: [mood]frustated +#: ../cache/locales.php:609 msgid "frustated" msgstr "" -#: [mood]grateful +#: ../cache/locales.php:610 msgid "grateful" msgstr "" -#: [mood]grieving +#: ../cache/locales.php:611 msgid "grieving" msgstr "" -#: [mood]grumpy +#: ../cache/locales.php:612 msgid "grumpy" msgstr "" -#: [mood]guilty +#: ../cache/locales.php:613 msgid "guilty" msgstr "" -#: [mood]happy +#: ../cache/locales.php:614 msgid "happy" msgstr "" -#: [mood]hopeful +#: ../cache/locales.php:615 msgid "hopeful" msgstr "" -#: [mood]hot +#: ../cache/locales.php:616 msgid "hot" msgstr "" -#: [mood]humbled +#: ../cache/locales.php:617 msgid "humbled" msgstr "" -#: [mood]humiliated +#: ../cache/locales.php:618 msgid "humiliated" msgstr "" -#: [mood]hungry +#: ../cache/locales.php:619 msgid "hungry" msgstr "" -#: [mood]hurt +#: ../cache/locales.php:620 msgid "hurt" msgstr "" -#: [mood]impressed +#: ../cache/locales.php:621 msgid "impressed" msgstr "" -#: [mood]in_awe +#: ../cache/locales.php:622 msgid "in awe" msgstr "" -#: [mood]in_love +#: ../cache/locales.php:623 msgid "in love" msgstr "" -#: [mood]indignant +#: ../cache/locales.php:624 msgid "indignant" msgstr "" -#: [mood]interested +#: ../cache/locales.php:625 msgid "interested" msgstr "" -#: [mood]intoxicated +#: ../cache/locales.php:626 msgid "intoxicated" msgstr "" -#: [mood]invincible +#: ../cache/locales.php:627 msgid "invincible" msgstr "" -#: [mood]jealous +#: ../cache/locales.php:628 msgid "jealous" msgstr "" -#: [mood]lonely +#: ../cache/locales.php:629 msgid "lonely" msgstr "" -#: [mood]lost +#: ../cache/locales.php:630 msgid "lost" msgstr "" -#: [mood]lucky +#: ../cache/locales.php:631 msgid "lucky" msgstr "" -#: [mood]mean +#: ../cache/locales.php:632 msgid "mean" msgstr "" -#: [mood]moody +#: ../cache/locales.php:633 msgid "moody" msgstr "" -#: [mood]nervous +#: ../cache/locales.php:634 msgid "nervous" msgstr "" -#: [mood]neutral +#: ../cache/locales.php:635 msgid "neutral" msgstr "" -#: [mood]offended +#: ../cache/locales.php:636 msgid "offended" msgstr "" -#: [mood]outraged +#: ../cache/locales.php:637 msgid "outraged" msgstr "" -#: [mood]playful +#: ../cache/locales.php:638 msgid "playful" msgstr "" -#: [mood]proud +#: ../cache/locales.php:639 msgid "proud" msgstr "" -#: [mood]relaxed +#: ../cache/locales.php:640 msgid "relaxed" msgstr "" -#: [mood]relieved +#: ../cache/locales.php:641 msgid "relieved" msgstr "" -#: [mood]restless +#: ../cache/locales.php:642 +msgid "remorseful" +msgstr "" + +#: ../cache/locales.php:643 msgid "restless" msgstr "" -#: [mood]sad +#: ../cache/locales.php:644 msgid "sad" msgstr "" -#: [mood]sarcastic +#: ../cache/locales.php:645 msgid "sarcastic" msgstr "" -#: [mood]satisfied +#: ../cache/locales.php:646 msgid "satisfied" msgstr "" -#: [mood]serious +#: ../cache/locales.php:647 msgid "serious" msgstr "" -#: [mood]shocked +#: ../cache/locales.php:648 msgid "shocked" msgstr "" -#: [mood]shy +#: ../cache/locales.php:649 msgid "shy" msgstr "" -#: [mood]sick +#: ../cache/locales.php:650 msgid "sick" msgstr "" -#: [mood]sleepy +#: ../cache/locales.php:651 msgid "sleepy" msgstr "" -#: [mood]spontaneous +#: ../cache/locales.php:652 msgid "spontaneous" msgstr "" -#: [mood]stressed +#: ../cache/locales.php:653 msgid "stressed" msgstr "" -#: [mood]strong +#: ../cache/locales.php:654 msgid "strong" msgstr "" -#: [mood]surprised +#: ../cache/locales.php:655 msgid "surprised" msgstr "" -#: [mood]thankful +#: ../cache/locales.php:656 msgid "thankful" msgstr "" -#: [mood]thirsty +#: ../cache/locales.php:657 msgid "thirsty" msgstr "" -#: [mood]tired +#: ../cache/locales.php:658 msgid "tired" msgstr "" -#: [mood]undefined +#: ../cache/locales.php:659 msgid "undefined" msgstr "" -#: [mood]weak +#: ../cache/locales.php:660 msgid "weak" msgstr "" -#: [mood]worried +#: ../cache/locales.php:661 msgid "worried" msgstr "" -#: [month]title +#: ../cache/locales.php:662 msgid "Month" msgstr "شهر" -#: [month]january +#: ../cache/locales.php:663 msgid "January" msgstr "يناير" -#: [month]february +#: ../cache/locales.php:664 msgid "February" msgstr "فبراير" -#: [month]march +#: ../cache/locales.php:665 msgid "March" msgstr "مارس" -#: [month]april +#: ../cache/locales.php:666 msgid "April" msgstr "أبريل" -#: [month]may +#: ../cache/locales.php:667 msgid "May" msgstr "مايو" -#: [month]june +#: ../cache/locales.php:668 msgid "June" msgstr "يونيو" -#: [month]july +#: ../cache/locales.php:669 msgid "July" msgstr "يوليو" -#: [month]august +#: ../cache/locales.php:670 msgid "August" msgstr "أغسطس" -#: [month]september +#: ../cache/locales.php:671 msgid "September" msgstr "سبتمبر" -#: [month]october +#: ../cache/locales.php:672 msgid "October" msgstr "أكتوبر" -#: [month]november +#: ../cache/locales.php:673 msgid "November" msgstr "نوفمبر" -#: [month]december +#: ../cache/locales.php:674 msgid "December" msgstr "ديسمبر" -#: [year]title +#: ../cache/locales.php:675 msgid "Year" msgstr "سنة" -#: [date]today +#: ../cache/locales.php:676 msgid "Today" msgstr "اليوم" -#: [date]tomorrow +#: ../cache/locales.php:677 msgid "Tomorrow" msgstr "غدًا" -#: [date]yesterday +#: ../cache/locales.php:678 msgid "Yesterday" msgstr "أمس" -#: [date]ago -#, fuzzy -msgid "%d days ago" +#: ../cache/locales.php:679 +#, php-format +msgid " %d days ago" msgstr " %d يوما مضت" -#: [date]day +#: ../cache/locales.php:680 msgid "day" msgstr "يوم" -#: [post]whats_new +#: ../cache/locales.php:682 msgid "What's new ?" msgstr "ما الجديد؟" -#: [post]place +#: ../cache/locales.php:683 msgid "Place" msgstr "" -#: [post]by +#: ../cache/locales.php:684 msgid "by" msgstr "" -#: [post]geolocalisation +#: ../cache/locales.php:685 msgid "Geolocalisation" msgstr "" -#: [post]email +#: ../cache/locales.php:686 msgid "email" msgstr "" -#: [post]no_comments +#: ../cache/locales.php:688 msgid "No comments yet" msgstr "" -#: [post]no_comments_stream +#: ../cache/locales.php:689 msgid "No comments stream" msgstr "" -#: [post]no_load +#: ../cache/locales.php:690 msgid "Your feed cannot be loaded." msgstr "تعذّر تنزيل تلقيمتك" -#: [post]older +#: ../cache/locales.php:691 msgid "Get older posts" msgstr "اجلب المداخلات الأسبق" -#: [post]new_items +#: ../cache/locales.php:692 +#, php-format msgid "%s new items" msgstr "" -#: [post]comment_error +#: ../cache/locales.php:693 msgid "Comment publication error" msgstr "" -#: [post]comments_older +#: ../cache/locales.php:694 msgid "Show the older comments" msgstr "" -#: [post]comments_loading -#, fuzzy -msgid "Loading comments..." -msgstr "يجري تنزيل تلقيمتك..." +#: ../cache/locales.php:695 +msgid "Loading comments ..." +msgstr "" -#: [post]comments_get +#: ../cache/locales.php:696 msgid "Get the comments" msgstr "الحصول على تعليقات" -#: [post]comment_add +#: ../cache/locales.php:697 msgid "Add a comment" msgstr "أضف تعليق" -#: [post]share +#: ../cache/locales.php:698 msgid "Share with" msgstr "المشاركة مع" -#: [post]share_everyone +#: ../cache/locales.php:699 msgid "Everyone" msgstr "الجميع" -#: [post]share_your_contacts +#: ../cache/locales.php:700 msgid "Your contacts" msgstr "اتصالاتكم" -#: [post]updated +#: ../cache/locales.php:702 msgid "Updated" msgstr "" -#: [post]content_not_found +#: ../cache/locales.php:703 msgid "Content not found" msgstr "" -#: [post]default_title +#: ../cache/locales.php:704 msgid "Contact publication" msgstr "" -#: [post]comments +#: ../cache/locales.php:705 msgid "Comments" msgstr "" -#: [api]error +#: ../cache/locales.php:706 msgid "The API is not reachable, try again later" msgstr "" -#: [field]type_here +#: ../cache/locales.php:707 msgid "Type here" msgstr "" -#~ msgid "Environment" -#~ msgstr "البيئة" - +#, php-format #~ msgid "%s - Account Creation" #~ msgstr "%s - إنشاء حساب" #~ msgid "or" #~ msgstr "أو" +#, php-format #~ msgid "Install the %s package" #~ msgstr "نضّب الحزمة %s" +#, php-format #~ msgid "Movim requires the %s extension." #~ msgstr "يتطلّب Movim الملحقة %s" #~ msgid "Actual version : " #~ msgstr "الإصدارة الفعلية: " +#, php-format #~ msgid "Install %s and %s packages" #~ msgstr "نصّب الحزمتين %s و %s" #~ msgid "Update your PHP version or contact your server administrator" #~ msgstr "رقِّ إصدارة PHP أو اتصل بمدير الخادوم" +#~ msgid "Enable read and write rights on Movim's root folder" +#~ msgstr "فعّل صلاحيات القراءة و الكتابة على دليل Movim الجذر" + #~ msgid "PHP version mismatch. Movim requires PHP 5.3 minimum." #~ msgstr "إصدارة PHP غير مطابقة. يتطلّب Movim الإصدارة 5.3 أو ما تزيد عليها." #~ msgid "Movim's folder must be writable." #~ msgstr "يجب أن يكون دليل Movim قابلا للكتابة فيه" +#, php-format #~ msgid "Bosh connection failed with error '%s'" #~ msgstr "تعذّر الاتصال BOSH. العطل هو '%s'" +#, php-format #~ msgid "Database connection failed with error '%s'" #~ msgstr "تعذّر الاتصال بقاعدة البيانات. العطل هو '%s'" +#, php-format #~ msgid "XMPP connection through Bosh failed with error '%s'" #~ msgstr "تعذّر الاتصال XMPP عبر BOSH. العطل هو '%s'" -#~ msgid "Keep in mind that Movim is still under development and will handle many personal details. Its use can potentially endanger your data. Always pay attention to information that you submit." -#~ msgstr "لاحظ أن Movim لاتزال قيد التطوير و أنها ستعالج قدرا كبيرا من البيانات الشخصية، مما قد يعرّض بياناتك للانكشاف، لذا دقّق في البيانات التي تضعها فيها." +#~ msgid "" +#~ "Keep in mind that Movim is still under development and will handle many " +#~ "personal details. Its use can potentially endanger your data. Always pay " +#~ "attention to information that you submit." +#~ msgstr "" +#~ "لاحظ أن Movim لاتزال قيد التطوير و أنها ستعالج قدرا كبيرا من البيانات " +#~ "الشخصية، مما قد يعرّض بياناتك للانكشاف، لذا دقّق في البيانات التي تضعها فيها." -#~ msgid "Before you enjoy your social network, a few adjustements are required." +#~ msgid "" +#~ "Before you enjoy your social network, a few adjustements are required." #~ msgstr "قبل أن تستخدم شبكتك الاجتماعية تجب بعض التضبيطات." #~ msgid "Thank you for downloading Movim!" #~ msgstr "شكرا لتنزيلك Movim." +#, php-format #~ msgid "Couldn't create configuration file '%s'." #~ msgstr "تعذّر إنشاء ملف التضبيطات '%s'." #~ msgid "Compatibility Test" #~ msgstr "اختبار التوافقية" +#, php-format #~ msgid "Couldn't create directory '%s'." #~ msgstr "تعذّر إنشاء الدليل '%s'." #~ msgid "Movim Installer" #~ msgstr "مُنصِّب Movim" -#~ msgid "The following requirements were not met. Please make sure they are all satisfied in order to install Movim." +#~ msgid "" +#~ "The following requirements were not met. Please make sure they are all " +#~ "satisfied in order to install Movim." #~ msgstr "المتطلبات التالية غير متوفرة. اعمل على توفيرها قبل تنصيب Movim." #~ msgid "Proxy Preferences" @@ -2800,7 +2685,9 @@ msgstr "" #~ msgid "empty" #~ msgstr "خالٍ" -#~ msgid "Some errors were detected. Please correct them for the installation to proceed." +#~ msgid "" +#~ "Some errors were detected. Please correct them for the installation to " +#~ "proceed." #~ msgstr "التُمست بعض الأعطال. تداركها لمواصلة التنصيب." #~ msgid "Success !" @@ -2818,9 +2705,11 @@ msgstr "" #~ msgid "User not logged in." #~ msgstr "المستخدم غير والجٍ" +#, php-format #~ msgid "Cannot load element value '%s'" #~ msgstr "تعذّر تحميل قيمة العنصر '%s'" +#, php-format #~ msgid "Please remove the %s folder in order to complete the installation" #~ msgstr "أزل الدليل %s لإتمام التنصيب" @@ -2833,9 +2722,11 @@ msgstr "" #~ msgid "Valid Bosh" #~ msgstr "Bosh صحيح" +#, php-format #~ msgid "jid '%s' is incorrect" #~ msgstr "معرِّف JID '%s' غير صحيح" +#, php-format #~ msgid "Cannot open log file '%s'" #~ msgstr "تعذّر فتح ملف السجل '%s'" @@ -2860,6 +2751,7 @@ msgstr "" #~ msgid "Wrong ID" #~ msgstr "معرّف غير صحيح" +#, php-format #~ msgid "%s - Add An Account" #~ msgstr "%s - إضافة حساب" @@ -2878,8 +2770,12 @@ msgstr "" #~ msgid "8 characters" #~ msgstr "ثمانية محارف" -#~ msgid "Firstly fill in this blank with a brand new account ID, this address will follow you on all the Movim network !" -#~ msgstr "بداية، أدخل في هذا الحقل معرّفًا جديدًا للحساب. هذا العنوان سيكون لصيقا بك في شبكة Movim كلّها." +#~ msgid "" +#~ "Firstly fill in this blank with a brand new account ID, this address will " +#~ "follow you on all the Movim network !" +#~ msgstr "" +#~ "بداية، أدخل في هذا الحقل معرّفًا جديدًا للحساب. هذا العنوان سيكون لصيقا بك " +#~ "في شبكة Movim كلّها." #~ msgid "Add your login informations" #~ msgstr "أدخل بيانات الولوج" @@ -2893,18 +2789,26 @@ msgstr "" #~ msgid "Same here !" #~ msgstr "و هنا كذلك" +#~ msgid "Remove this contact" +#~ msgstr "أزّل هذه المعرفة" + #~ msgid "Client Name" #~ msgstr "اسم العميل" #~ msgid "Address" #~ msgstr "العنوان" -#~ msgid "Your server doesn't support post publication, you can only read contact's feeds" +#~ msgid "" +#~ "Your server doesn't support post publication, you can only read contact's " +#~ "feeds" #~ msgstr "خادومك لا يدعم نشر المداخلات، يمكنك و حسبُ مطالعة تلقيمات معارفك" #~ msgid "Invite this user" #~ msgstr "ادعُ هذا الشخص" +#~ msgid "Loading your feed ..." +#~ msgstr "يجري تنزيل تلقيمتك..." + #~ msgid "Client Type" #~ msgstr "نوع العميل" @@ -2914,23 +2818,48 @@ msgstr "" #~ msgid "What is Movim?" #~ msgstr "ما Movim؟" -#~ msgid "Some features are missing/I can't do everything I used to do on other social networks" -#~ msgstr "بعض الوظائف غير موجودة\\لا يمكنني فعل كل ما اعتدت فعله في شبكات اجتماعية أخرى!" +#~ msgid "" +#~ "Some features are missing/I can't do everything I used to do on other social " +#~ "networks" +#~ msgstr "" +#~ "بعض الوظائف غير موجودة\\لا يمكنني فعل كل ما اعتدت فعله في شبكات اجتماعية " +#~ "أخرى!" -#~ msgid "Visit the page %s What is Movim ? %s to know more about the project, its aims and understand how it works." +#, php-format +#~ msgid "" +#~ "Visit the page %s What is Movim ? %s to know more about the project, its " +#~ "aims and understand how it works." #~ msgstr "زر صفحة %s ما Movim؟ %s لتعلم المزيد عن المشروع و أهدافه و كيف يعمل." #~ msgid "The current BOSH URL in invalid" #~ msgstr "مسار BOSH الحالي غير صحيح" -#~ msgid "Go to the %s to the Frequently Asked Questions %s or come ask your question on the official chatroom %s or via our mailing-list (%s see the dedicated page %s)." -#~ msgstr "طالع %s إجابات الأسئة الشائعة %s أو ضع سؤالك في غرفة المحادثة الرسمية للمشروع %s أو في قائمة المراسلات (%s طالع صفحتها %s)." +#, php-format +#~ msgid "" +#~ "Go to the %s to the Frequently Asked Questions %s or come ask your question " +#~ "on the official chatroom %s or via our mailing-list (%s see the dedicated " +#~ "page %s)." +#~ msgstr "" +#~ "طالع %s إجابات الأسئة الشائعة %s أو ضع سؤالك في غرفة المحادثة الرسمية " +#~ "للمشروع %s أو في قائمة المراسلات (%s طالع صفحتها %s)." -#~ msgid "Although Movim is evolving fast, many (many) features are missing. Be patient ;). You can have a look %s at next versions's roadmaps %s to know if the one you want is on its way." -#~ msgstr "برغم من أن Movim يتطوّر بسرعة فإن الكثير الكثير من الوظائف لا تزال ناقصة. صبرا ;) تمكنك مطالعة %s خريطة الإصدارات القادمة %s لمعرفة إن كان ما تريده في الطريق." +#, php-format +#~ msgid "" +#~ "Although Movim is evolving fast, many (many) features are missing. Be " +#~ "patient ;). You can have a look %s at next versions's roadmaps %s to know if " +#~ "the one you want is on its way." +#~ msgstr "" +#~ "برغم من أن Movim يتطوّر بسرعة فإن الكثير الكثير من الوظائف لا تزال ناقصة. " +#~ "صبرا ;) تمكنك مطالعة %s خريطة الإصدارات القادمة %s لمعرفة إن كان ما تريده في " +#~ "الطريق." -#~ msgid "Don't forget that Movim is an open source project, a helping hand is always welcome (see %s Can I participate %s)" -#~ msgstr "لا تنسَ أن Movim مشروع مفتوح المصدر، و أن المساعدة مرحّب بها دوما (طالع %s أتمكنني المساهمة؟ %s)" +#, php-format +#~ msgid "" +#~ "Don't forget that Movim is an open source project, a helping hand is always " +#~ "welcome (see %s Can I participate %s)" +#~ msgstr "" +#~ "لا تنسَ أن Movim مشروع مفتوح المصدر، و أن المساعدة مرحّب بها دوما (طالع %s " +#~ "أتمكنني المساهمة؟ %s)" #~ msgid "I can't find the answer to my question here" #~ msgstr "لا أجد إجابة سؤالي هنا!" @@ -2938,6 +2867,10 @@ msgstr "" #~ msgid "wants to talk with you" #~ msgstr "يريد التحدّث معك" +#, php-format +#~ msgid "This server hosts %s accounts" +#~ msgstr "يستضيف هذا الخادوم %s حسابات" + #~ msgid "Connecting..." #~ msgstr "يجري الاتصال..." @@ -2947,6 +2880,7 @@ msgstr "" #~ msgid "Decline" #~ msgstr "ارفض" +#, php-format #~ msgid "Contacts (%s)" #~ msgstr "المعارف (%s)" @@ -2974,6 +2908,7 @@ msgstr "" #~ msgid "Debug console" #~ msgstr "مرقاب التبقيق" +#, php-format #~ msgid "You can now access your shiny Movim instance %sJump In !%s" #~ msgstr "يمكنك الآن استخدام تنصيبة Movim الجديدة. %sهيّا%s" diff --git a/sources/locales/be.po b/sources/locales/be.po index 1584604..ee17f8e 100644 --- a/sources/locales/be.po +++ b/sources/locales/be.po @@ -1,2702 +1,2587 @@ # Byelorussian translations for Movim package. # This file is distributed under the same license as the Movim package. # This file was translated from CodingTeam at . -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/About/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Account/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/AccountNext/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/AdHoc/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/AdminDB/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/AdminMain/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/AdminTest/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Api/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Avatar/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Blog/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Bookmark/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Chat/locales.ini -#. #-#-#-#-# 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 -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Group/locales.ini -#. #-#-#-#-# 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 -#. #-#-#-#-# 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 -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Presence/locales.ini -#. #-#-#-#-# 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 -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Share/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Statistics/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Subscribe/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Syndication/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Upload/locales.ini -#. #-#-#-#-# 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-08-20 15:17+0200\n" +"POT-Creation-Date: 2015-06-08 22:06+0200\n" "PO-Revision-Date: 2011-10-26 21:31+0000\n" "Last-Translator: edhelas \n" "Language-Team: LANGUAGE \n" -"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2015-06-18 21:08+0000\n" "X-Generator: Launchpad (build 17570)\n" -#: [about]thanks +#: ../cache/locales.php:2 msgid "Thanks" msgstr "" -#: [about]developers +#: ../cache/locales.php:3 msgid "Developers" msgstr "" -#: [about]translators +#: ../cache/locales.php:4 msgid "Translators" msgstr "" -#: [about]software +#: ../cache/locales.php:5 msgid "Software" msgstr "" -#: [about]resources +#: ../cache/locales.php:6 msgid "Resources" msgstr "" -#: [about]api [schema]api [api]title +#: ../cache/locales.php:7 ../cache/locales.php:83 ../cache/locales.php:85 msgid "API" msgstr "" -#: [about]info -msgid "Movim is an XMPP-based communication platform. All the project, except the following software and resources, is under" +#: ../cache/locales.php:8 +msgid "" +"Movim is an XMPP-based communication platform. All the project, except the " +"following software and resources, is under" msgstr "" -#: [account]title +#: ../cache/locales.php:9 msgid "Account" msgstr "" -#: [account]password_change_title -#, fuzzy -msgid "Change my password" -msgstr "Няправільны пароль" - -#: [account]password [db]password [credentials]password [form]password -#: [input]password -msgid "Password" -msgstr "Пароль" - -#: [account]password_confirmation -#, fuzzy -msgid "Password confirmation" -msgstr "%s - Канфігурацыя" - -#: [account]password_changed +#: ../cache/locales.php:10 msgid "The password has been updated" msgstr "" -#: [account]password_not_valid +#: ../cache/locales.php:11 msgid "Please provide a valid password (6 characters minimum)" msgstr "" -#: [account]password_not_same +#: ../cache/locales.php:12 msgid "The provided passwords are not the same" msgstr "" -#: [account]delete_title +#: ../cache/locales.php:13 msgid "Delete my account" msgstr "" -#: [account]delete -msgid "Delete your account" +#: ../cache/locales.php:14 +msgid "" +"You will delete your XMPP account and all the relative information linked to " +"it (profile, contacts and publications)." msgstr "" -#: [account]delete_text -msgid "You will delete your XMPP account and all the relative information linked to it (profile, contacts and publications)." -msgstr "" - -#: [account]delete_text_confirm +#: ../cache/locales.php:15 msgid "Are you sure that you want to delete it ?" msgstr "" -#: [account]gateway_title -msgid "Gateway" -msgstr "" - -#: [create]title [subscribe]title +#: ../cache/locales.php:16 ../cache/locales.php:411 msgid "Create a new account" msgstr "" -#: [create]notfound +#: ../cache/locales.php:17 msgid "No account creation form found on the server" msgstr "" -#: [create]server_on +#: ../cache/locales.php:18 ../cache/locales.php:172 msgid "on" msgstr "" -#: [create]successfull +#: ../cache/locales.php:19 msgid "Your acccount has been successfully registered" msgstr "" -#: [create]loading +#: ../cache/locales.php:20 msgid "Loading" msgstr "" -#: [error]not_acceptable +#: ../cache/locales.php:21 msgid "Not Acceptable" msgstr "" -#: [error]service_unavailable +#: ../cache/locales.php:22 msgid "The registration system of this server is currently unavailable" msgstr "" -#: [oob]about -msgid "This server use an external system for the registration, please click on the following URL." +#: ../cache/locales.php:23 +msgid "" +"This server use an external system for the registration, please click on the " +"following URL." msgstr "" -#: [adhoc]title +#: ../cache/locales.php:24 msgid "Actions" msgstr "" -#: [db]legend [schema]database +#: ../cache/locales.php:25 ../cache/locales.php:82 msgid "Database" msgstr "" -#: [db]connect_error +#: ../cache/locales.php:26 msgid "Modl wasn't able to connect to the database" msgstr "" -#: [db]connect_success +#: ../cache/locales.php:27 msgid "Movim is connected to the database" msgstr "" -#: [db]update +#: ../cache/locales.php:28 msgid "The database need to be updated" msgstr "" -#: [db]up_to_date +#: ../cache/locales.php:29 msgid "Movim database is up to date" msgstr "" -#: [db]type +#: ../cache/locales.php:30 msgid "Database Type" msgstr "" -#: [db]username [credentials]username [input]username +#: ../cache/locales.php:31 ../cache/locales.php:50 ../cache/locales.php:540 msgid "Username" msgstr "" -#: [db]host +#: ../cache/locales.php:32 ../cache/locales.php:51 ../cache/locales.php:282 +#: ../cache/locales.php:541 +msgid "Password" +msgstr "Пароль" + +#: ../cache/locales.php:33 msgid "Host" msgstr "" -#: [db]port +#: ../cache/locales.php:34 msgid "Port" msgstr "" -#: [db]name -msgid "Database sName" +#: ../cache/locales.php:35 +msgid "Database Name" msgstr "" -#: [admin]general +#: ../cache/locales.php:36 msgid "General Settings" msgstr "" -#: [general]theme +#: ../cache/locales.php:37 msgid "Theme" msgstr "" -#: [general]language +#: ../cache/locales.php:38 msgid "Default language" msgstr "" -#: [general]log_verbosity +#: ../cache/locales.php:39 +msgid "Environment" +msgstr "" + +#: ../cache/locales.php:40 msgid "Log verbosity" msgstr "" -#: [general]timezone +#: ../cache/locales.php:41 msgid "Server Timezone" msgstr "" -#: [general]limit +#: ../cache/locales.php:42 msgid "User folder size limit (in bytes)" msgstr "" -#: [websocket]title +#: ../cache/locales.php:43 msgid "WebSocket Configuration" msgstr "" -#: [websocket]info +#: ../cache/locales.php:44 msgid "Enter here a valid WebSocket URI in the form" msgstr "" -#: [websocket]label +#: ../cache/locales.php:45 msgid "WebSocket URI" msgstr "" -#: [websocket]save_info -msgid "If you change the URI, please restart the daemon to reload the configuration" +#: ../cache/locales.php:46 +msgid "" +"If you change the URI, please restart the daemon to reload the configuration" msgstr "" -#: [websocket]publics +#: ../cache/locales.php:47 msgid "Public WebSockets" msgstr "" -#: [credentials]title +#: ../cache/locales.php:48 msgid "Administration Credential" msgstr "" -#: [credentials]info +#: ../cache/locales.php:49 msgid "Change the default credentials admin/password" msgstr "" -#: [credentials]re_password +#: ../cache/locales.php:52 msgid "Retype password" msgstr "" -#: [whitelist]title +#: ../cache/locales.php:53 msgid "Whitelist - XMPP Server" msgstr "" -#: [whitelist]info1 -msgid "If you want to specify a list of authorized XMPP servers on your Movim pod and forbid the connection on all the others please put their domain name here, with comma (ex: movim.eu,jabber.fr)" +#: ../cache/locales.php:54 +msgid "" +"If you want to specify a list of authorized XMPP servers on your Movim pod " +"and forbid the connection on all the others please put their domain name " +"here, with comma (ex: movim.eu,jabber.fr)" msgstr "" -#: [whitelist]info2 -msgid "Leave this field blank if you allow the access to all the XMPP accounts." +#: ../cache/locales.php:55 +msgid "" +"Leave this field blank if you allow the access to all the XMPP accounts." msgstr "" -#: [whitelist]label +#: ../cache/locales.php:56 msgid "List of whitelisted XMPP servers" msgstr "" -#: [information]title -msgctxt "[information]title" +#: ../cache/locales.php:57 ../cache/locales.php:61 msgid "Information Message" msgstr "" -#: [information]description +#: ../cache/locales.php:58 msgid "Description" msgstr "" -#: [information]info1 +#: ../cache/locales.php:59 msgid "This message will be displayed on the login page" msgstr "" -#: [information]info2 -msgid "Leave this field blank if you dont want to show any message." +#: ../cache/locales.php:60 +msgid "Leave this field blank if you don't want to show any message." msgstr "" -#: [information]label -msgctxt "[information]label" -msgid "Information Message" -msgstr "" - -#: [log]empty +#: ../cache/locales.php:62 msgid "Empty" msgstr "" -#: [log]syslog +#: ../cache/locales.php:63 msgid "Syslog" msgstr "" -#: [log]syslog_files +#: ../cache/locales.php:64 msgid "Syslog and files" msgstr "" -#: [rewrite]title +#: ../cache/locales.php:65 msgid "URL Rewriting" msgstr "" -#: [rewrite]info +#: ../cache/locales.php:66 msgid "The URL Rewriting can be enabled" msgstr "" -#: [admin]compatibility +#: ../cache/locales.php:67 msgid "General Overview" msgstr "" -#: [compatibility]info -msgid "Movim has found some issues or things that need to be fixed or improved" +#: ../cache/locales.php:68 +msgid "" +"Movim has found some issues or things that need to be fixed or improved" msgstr "" -#: [compatibility]php1 +#: ../cache/locales.php:69 +#, php-format msgid "Update your PHP-Version: %s" msgstr "" -#: [compatibility]php2 +#: ../cache/locales.php:70 msgid "Required: 5.3.0" msgstr "" -#: [compatibility]curl +#: ../cache/locales.php:71 msgid "Install the php5-curl library" msgstr "" -#: [compatibility]imagick +#: ../cache/locales.php:72 msgid "Install the php5-imagick library" msgstr "" -#: [compatibility]gd +#: ../cache/locales.php:73 msgid "Install the php5-gd library" msgstr "" -#: [compatibility]rights -msgid "Read and write rights for the webserver in Movims root directory" +#: ../cache/locales.php:74 +msgid "Read and write rights for the webserver in Movim's root directory" msgstr "" -#: [compatibility]rewrite +#: ../cache/locales.php:75 msgid "The URL Rewriting support is currently disabled" msgstr "" -#: [compatibility]db +#: ../cache/locales.php:76 msgid "The database need to be updated, go to the database panel to fix this" msgstr "" -#: [compatibility]websocket -msgid "WebSocket connection error, check if the Movim Daemon is running and is reachable" +#: ../cache/locales.php:77 +msgid "" +"WebSocket connection error, check if the Movim Daemon is running and is " +"reacheable" msgstr "" -#: [compatibility]xmpp_websocket -msgid "XMPP Websocket connection error, please check the validity of the URL given in the General Configuration" +#: ../cache/locales.php:78 +msgid "" +"XMPP Websocket connection error, please check the validity of the URL given " +"in the General Configuration" msgstr "" -#: [schema]browser +#: ../cache/locales.php:79 msgid "Browser" msgstr "" -#: [schema]movim +#: ../cache/locales.php:80 msgid "Movim Core" msgstr "" -#: [schema]daemon +#: ../cache/locales.php:81 msgid "Movim Daemon" msgstr "" -#: [schema]xmpp +#: ../cache/locales.php:84 msgid "XMPP" msgstr "" -#: [api]info -msgid "Here you can register your pod on the official %sMovim API%s and be listed on %sthe pods page%s." +#: ../cache/locales.php:86 +#, php-format +msgid "" +"Here you can register your pod on the official %sMovim API%s and be listed " +"on %sthe pods page%s." msgstr "" -#: [api]register +#: ../cache/locales.php:87 msgid "Your pod is not registered on the API" msgstr "" -#: [api]registered +#: ../cache/locales.php:88 msgid "Your pod is registered on the API" msgstr "" -#: [api]wait +#: ../cache/locales.php:89 msgid "Your pod is not yet validated" msgstr "" -#: [api]validated +#: ../cache/locales.php:90 msgid "Your pod is validated" msgstr "" -#: [api]unregister -msgid "You asked to be removed from the API, this request will be processed in a couple of hours" +#: ../cache/locales.php:91 +msgid "" +"You asked to be removed from the API, this request will be processed in a " +"couple of hours" msgstr "" -#: [api]conf_updated [config]updated +#: ../cache/locales.php:92 ../cache/locales.php:147 msgid "Configuration updated" msgstr "" -#: [avatar]file +#: ../cache/locales.php:93 msgid "File" msgstr "" -#: [avatar]use_it +#: ../cache/locales.php:94 msgid "Use it" msgstr "" -#: [avatar]webcam +#: ../cache/locales.php:95 msgid "Webcam" msgstr "" -#: [avatar]cheese +#: ../cache/locales.php:96 msgid "Cheese !" msgstr "" -#: [avatar]snapshot +#: ../cache/locales.php:97 msgid "Take a webcam snapshot" msgstr "" -#: [avatar]updated +#: ../cache/locales.php:98 msgid "Avatar Updated" msgstr "" -#: [avatar]not_updated +#: ../cache/locales.php:99 msgid "Avatar Not Updated" msgstr "" -#: [blog]title [feed]title +#: ../cache/locales.php:100 ../cache/locales.php:415 +#, php-format msgid "%s's feed" msgstr "" -#: [blog]empty +#: ../cache/locales.php:101 msgid "This user has not posted anything right now" msgstr "" -#: [title]conferences +#: ../cache/locales.php:102 msgid "Conferences" msgstr "" -#: [title]groups [group]empty_title [menu]groups [page]groups +#: ../cache/locales.php:103 ../cache/locales.php:193 ../cache/locales.php:217 +#: ../cache/locales.php:468 msgid "Groups" msgstr "" -#: [chatroom]add +#: ../cache/locales.php:104 msgid "Add a new Chat Room" msgstr "" -#: [chatroom]id [chatrooms]id +#: ../cache/locales.php:105 ../cache/locales.php:368 msgid "Chat Room ID" msgstr "" -#: [chatroom]name -msgctxt "[chatroom]name" +#: ../cache/locales.php:106 ../cache/locales.php:116 ../cache/locales.php:156 +#: ../cache/locales.php:361 ../cache/locales.php:369 ../cache/locales.php:424 msgid "Name" msgstr "" -#: [chatroom]nickname [general]nickname [chatrooms]nickname +#: ../cache/locales.php:107 ../cache/locales.php:157 ../cache/locales.php:371 +#: ../cache/locales.php:425 msgid "Nickname" msgstr "" -#: [chatroom]autojoin_label +#: ../cache/locales.php:108 msgid "Do you want do join automaticaly this Chat Room ?" msgstr "" -#: [chatroom]bad_id [chatrooms]bad_id +#: ../cache/locales.php:109 ../cache/locales.php:372 msgid "Bad Chatroom ID" msgstr "" -#: [chatroom]empty_name [chatrooms]empty_name +#: ../cache/locales.php:110 ../cache/locales.php:373 msgid "Empty name" msgstr "" -#: [bookmarks]updated +#: ../cache/locales.php:111 ../cache/locales.php:380 msgid "Bookmarks updated" msgstr "" -#: [bookmarks]error -msgid "An error occured :" +#: ../cache/locales.php:112 +msgid "An error occured : " msgstr "" -#: [bookmarks]configure +#: ../cache/locales.php:113 msgid "Configure" msgstr "" -#: [url]add +#: ../cache/locales.php:114 msgid "Add a new URL" msgstr "" -#: [url]url +#: ../cache/locales.php:115 msgid "URL" msgstr "" -#: [url]name -msgctxt "[url]name" -msgid "Name" -msgstr "" - -#: [message]published +#: ../cache/locales.php:117 msgid "Message Published" msgstr "" -#: [message]encrypted +#: ../cache/locales.php:118 ../cache/locales.php:138 msgid "Encrypted message" msgstr "" -#: [message]composing [chats]composing +#: ../cache/locales.php:119 msgid "Composing..." msgstr "" -#: [message]paused [chats]paused +#: ../cache/locales.php:120 msgid "Paused..." msgstr "" -#: [message]gone +#: ../cache/locales.php:121 msgid "Contact gone" msgstr "" -#: [chat]attention +#: ../cache/locales.php:122 +#, php-format msgid "%s needs your attention" msgstr "" -#: [chat]placeholder +#: ../cache/locales.php:123 msgid "Your message here..." msgstr "" -#: [chat]smileys +#: ../cache/locales.php:124 msgid "Smileys" msgstr "" -#: [chat]empty_title [button]chat +#: ../cache/locales.php:125 ../cache/locales.php:139 msgid "Chat" msgstr "Чат" -#: [chat]empty_text +#: ../cache/locales.php:126 msgid "Discuss with your contacts" msgstr "" -#: [chat]frequent [chats]frequent -msgid "Frequent contacts" -msgstr "" - -#: [chatroom]members +#: ../cache/locales.php:127 msgid "Members" msgstr "" -#: [chatroom]connected [chatrooms]connected +#: ../cache/locales.php:128 ../cache/locales.php:376 msgid "Connected to the chatroom" msgstr "" -#: [chatroom]disconnected [chatrooms]disconnected +#: ../cache/locales.php:129 ../cache/locales.php:377 msgid "Disconnected from the chatroom" msgstr "" -#: [chatroom]config [group]configuration [page]configuration +#: ../cache/locales.php:130 ../cache/locales.php:200 ../cache/locales.php:469 msgid "Configuration" msgstr "Канфігурацыя" -#: [chatroom]config_saved +#: ../cache/locales.php:131 msgid "Configuration saved" msgstr "" -#: [chatroom]subject +#: ../cache/locales.php:132 msgid "Subject" msgstr "" -#: [chatroom]subject_changed +#: ../cache/locales.php:133 msgid "Subject changed" msgstr "" -#: [chats]empty_title -msgid "No chats yet..." +#: ../cache/locales.php:134 +msgid "Open a new conversation by clicking on the plus button bellow" msgstr "" -#: [chats]empty -msgid "Open a new conversation by clicking on the plus button bellow or visit the Contacts page." -msgstr "" - -#: [chats]add +#: ../cache/locales.php:135 msgid "Chat with a contact" msgstr "" -#: [chats]more +#: ../cache/locales.php:136 +msgid "Frequent contacts" +msgstr "" + +#: ../cache/locales.php:137 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 "" - -#: [config]general +#: ../cache/locales.php:140 msgid "General" msgstr "" -#: [config]language +#: ../cache/locales.php:141 msgid "Language" msgstr "Мова" -#: [config]roster +#: ../cache/locales.php:142 msgid "Roster display" msgstr "" -#: [config]roster_show +#: ../cache/locales.php:143 msgid "Show the offline contacts" msgstr "" -#: [config]roster_hide +#: ../cache/locales.php:144 msgid "Hide the offline contacts" msgstr "" -#: [config]appearence +#: ../cache/locales.php:145 msgid "Appearence" msgstr "" -#: [config]info -msgid "This configuration is shared wherever you are connected" +#: ../cache/locales.php:146 +msgid "This configuration is shared wherever you are connected !" msgstr "" -#: [notifications]message +#: ../cache/locales.php:148 msgid "Notify on incoming message" msgstr "" -#: [notifications]desktop +#: ../cache/locales.php:149 msgid "Use desktop notifications" msgstr "" -#: [general]legend [general]general_title +#: ../cache/locales.php:150 +msgid "Data" +msgstr "" + +#: ../cache/locales.php:151 +msgid "Cache" +msgstr "" + +#: ../cache/locales.php:152 ../cache/locales.php:218 ../cache/locales.php:466 +msgid "Contacts" +msgstr "" + +#: ../cache/locales.php:153 ../cache/locales.php:480 +msgid "Posts" +msgstr "" + +#: ../cache/locales.php:154 +msgid "Messages" +msgstr "" + +#: ../cache/locales.php:155 ../cache/locales.php:423 msgid "General Informations" msgstr "" -#: [general]name [public_groups]name [chatrooms]name -msgid "Name" -msgstr "" - -#: [general]date_of_birth +#: ../cache/locales.php:158 ../cache/locales.php:427 msgid "Date of Birth" msgstr "" -#: [general]gender +#: ../cache/locales.php:159 ../cache/locales.php:428 msgid "Gender" msgstr "" -#: [general]marital +#: ../cache/locales.php:160 ../cache/locales.php:429 msgid "Marital Status" msgstr "" -#: [general]email +#: ../cache/locales.php:161 ../cache/locales.php:426 msgid "Email" msgstr "" -#: [general]website +#: ../cache/locales.php:162 ../cache/locales.php:430 msgid "Website" msgstr "" -#: [general]about +#: ../cache/locales.php:163 ../cache/locales.php:431 msgid "About Me" msgstr "" -#: [general]accounts +#: ../cache/locales.php:164 msgid "Other Accounts" msgstr "" -#: [general]tune +#: ../cache/locales.php:165 msgid "Is Listening" msgstr "" -#: [position]legend [position]position_title +#: ../cache/locales.php:166 ../cache/locales.php:432 msgid "Geographic Position" msgstr "" -#: [position]locality +#: ../cache/locales.php:167 ../cache/locales.php:433 msgid "Locality" msgstr "" -#: [position]country +#: ../cache/locales.php:168 ../cache/locales.php:434 msgid "Country" msgstr "" -#: [mood]title +#: ../cache/locales.php:169 msgid "Mood" msgstr "" -#: [mood]im +#: ../cache/locales.php:170 msgid "I'm " msgstr "" -#: [listen]title +#: ../cache/locales.php:171 msgid "Listening" msgstr "" -#: [last]title +#: ../cache/locales.php:173 msgid "Last seen" msgstr "" -#: [client]title +#: ../cache/locales.php:174 msgid "Client Informations" msgstr "" -#: [explore]last_registered +#: ../cache/locales.php:175 msgid "Last registered" msgstr "" -#: [explore]explore +#: ../cache/locales.php:176 msgid "Find some new friends" msgstr "" -#: [edit]title [button]edit +#: ../cache/locales.php:177 ../cache/locales.php:533 msgid "Edit" msgstr "" -#: [edit]alias +#: ../cache/locales.php:178 msgid "Alias" msgstr "" -#: [edit]group +#: ../cache/locales.php:179 msgid "Group" msgstr "" -#: [edit]updated [roster]updated +#: ../cache/locales.php:180 ../cache/locales.php:400 msgid "Contact updated" msgstr "" -#: [delete]title +#: ../cache/locales.php:181 msgid "Are you sure?" msgstr "" -#: [delete]text -msgid "You are going to delete one of your contacts, please confirm your action" +#: ../cache/locales.php:182 +msgid "" +"You are going to delete one of your contacts, please confirm your action" msgstr "" -#: [age]years +#: ../cache/locales.php:183 +#, php-format msgid "%s years" msgstr "" -#: [blog]last +#: ../cache/locales.php:184 msgid "Last public post" msgstr "" -#: [subscription]to -msgid "You can see this contact status" -msgstr "" - -#: [subscription]to_button -msgid "Share my status" -msgstr "" - -#: [subscription]to_text -msgid "But this contact cannot see yours" -msgstr "" - -#: [subscription]from -msgid "You are not subscribed to this contact" -msgstr "" - -#: [subscription]from_button -msgid "Ask to subscribe" -msgstr "" - -#: [subscription]from_text -msgid "But this contact can still see if you are online" -msgstr "" - -#: [subscription]nil -msgid "No subscriptions" -msgstr "" - -#: [subscription]nil_button -msgid "Invite" -msgstr "" - -#: [subscription]nil_text -msgid "This contact is in your contact list but there is no subscriptions between the two accounts" -msgstr "" - -#: [group]subscribe +#: ../cache/locales.php:185 msgid "Subscribe" msgstr "" -#: [group]subscribed +#: ../cache/locales.php:186 msgid "Subscribed" msgstr "" -#: [group]unsubscribe +#: ../cache/locales.php:187 msgid "Unsubscribe" msgstr "" -#: [group]unsubscribe_text +#: ../cache/locales.php:188 msgid "You are going to unsubscribe from this Group" msgstr "" -#: [group]unsubscribed +#: ../cache/locales.php:189 msgid "Unsubscribed" msgstr "" -#: [group]share_label +#: ../cache/locales.php:190 msgid "Make your membership to this group public to your friends" msgstr "" -#: [group]label_label +#: ../cache/locales.php:191 msgid "Give a label for this group" msgstr "" -#: [group]sure +#: ../cache/locales.php:192 msgid "Are you sure ?" msgstr "" -#: [group]empty_text +#: ../cache/locales.php:194 msgid "Discover, follow and share" msgstr "" -#: [group]empty +#: ../cache/locales.php:195 msgid "Something bad happened to this group" msgstr "" -#: [group]config_saved +#: ../cache/locales.php:196 msgid "Group configuration saved" msgstr "" -#: [group]delete_title +#: ../cache/locales.php:197 msgid "Delete the group" msgstr "" -#: [group]delete_text -msgid "You are going to delete the following group. Please confirm your action." +#: ../cache/locales.php:198 +msgid "" +"You are going to delete the following group. Please confirm your action." msgstr "" -#: [group]delete_clean_text -msgid "It seems that this group doesn't exists anymore. Do you want to remove it from your subscriptions?" +#: ../cache/locales.php:199 +msgid "" +"It seems that this group doesn't exists anymore. Do you want to remove it " +"from your subscriptions?" msgstr "" -#: [group]counter -msgid "%s groups on this server" -msgstr "" - -#: [group]subscriptions [statistics]subscriptions +#: ../cache/locales.php:201 ../cache/locales.php:408 msgid "Subscriptions" msgstr "" -#: [group]servers -msgid "Groups servers" -msgstr "" - -#: [group]search_server -msgid "Search for a new server" -msgstr "" - -#: [group]help_info1 -msgid "Groups are the perfect way to share posts about topics that you like with all the other Movim's users." -msgstr "" - -#: [group]help_info2 -msgid "Choose a server and a Group and subscribe to it using the %s button in the header. You can also create a new one using the %s button." -msgstr "" - -#: [group]help_info3 -msgid "Done? You can now publish a new post in the Group by using the %s button." -msgstr "" - -#: [group]help_info4 -msgid "You will find a list of all your subscribed Groups in My Subscriptions and receive instantly all the new incoming posts in the %sNews%s page." -msgstr "" - -#: [groups]empty_title +#: ../cache/locales.php:202 ../cache/locales.php:290 msgid "Hello" msgstr "" -#: [groups]contact_post [hello]contact_post [menu]contact_post +#: ../cache/locales.php:203 ../cache/locales.php:225 ../cache/locales.php:291 msgid "Contact post" msgstr "" -#: [groups]empty_text1 -msgid "You don't have any subscriptions yet, select a group server above to start exploring." +#: ../cache/locales.php:204 +msgid "" +"You don't have any subscriptions yet, select a group server above to start " +"exploring." msgstr "" -#: [groups]empty_text2 +#: ../cache/locales.php:205 msgid "Subscribe to your favorite feeds by bookmarking them." msgstr "" -#: [groups]subscriptions +#: ../cache/locales.php:206 msgid "My Subscriptions" msgstr "" -#: [groups]add +#: ../cache/locales.php:207 msgid "Create a new Group" msgstr "" -#: [groups]name +#: ../cache/locales.php:208 msgid "Group name" msgstr "" -#: [groups]name_example +#: ../cache/locales.php:209 msgid "My Little Pony - Fan Club" msgstr "" -#: [groups]created +#: ../cache/locales.php:210 msgid "Group created successfully" msgstr "" -#: [groups]deleted +#: ../cache/locales.php:211 msgid "Group deleted successfully" msgstr "" -#: [groups]name_error +#: ../cache/locales.php:212 msgid "Please provide a valid group name (4 characters minimum)" msgstr "" -#: [groups]no_creation +#: ../cache/locales.php:213 msgid "You cannot create a new Group on this server" msgstr "" -#: [groups]sub +#: ../cache/locales.php:214 +#, php-format msgid "%s subscribers" msgstr "" -#: [groups]num +#: ../cache/locales.php:215 +#, php-format msgid "%s posts" msgstr "" -#: [groups]disco_error -msgid "This server doesn't exists" -msgstr "" - -#: [menu]all +#: ../cache/locales.php:216 msgid "All" msgstr "" -#: [menu]refresh +#: ../cache/locales.php:219 msgid "Refresh all the streams" msgstr "" -#: [roster]search -msgid "Search in your contacts" -msgstr "" - -#: [hello]active_contacts -msgid "Active contacts" -msgstr "" - -#: [hello]chat -msgid "Go on the Chat page" -msgstr "" - -#: [hello]news [page]news -msgid "News" -msgstr "" - -#: [hello]news_page -msgid "Read all theses articles on the News page" -msgstr "" - -#: [hello]blog_title -msgid "Visit your public blog" -msgstr "" - -#: [hello]blog_text -msgid "See your public posts and share them with all your contacts" -msgstr "" - -#: [hello]share_title -msgid "Universal share button" -msgstr "" - -#: [hello]share_text -msgid "Bookmark or drag and drop the following button in your toolbar and use it on all the pages you want to share on Movim" -msgstr "" - -#: [hello]share_button -msgid "Share on Movim" -msgstr "" - -#: [help]faq -msgid "Frequently Asked Questions" -msgstr "" - -#: [banner]title -msgid "What do the little banners refer to ?" -msgstr "" - -#: [banner]info1 -msgid "Thanks to these five little banners, you can quickly identitfy the level of confdentiality applied to the information you provide." -msgstr "" - -#: [banner]white -msgid "White, only you can see the information" -msgstr "" - -#: [banner]green -msgid "Green, you have chosen some contacts who can see your information" -msgstr "" - -#: [banner]orange -msgid "Orange, all your contact list can see your information" -msgstr "" - -#: [banner]red -msgid "Red, everybody in the XMPP network can see your information" -msgstr "" - -#: [banner]black -msgid "Black, the whole Internet can see your information" -msgstr "" - -#: [wiki]question -msgid "Looking for some documentation ?" -msgstr "" - -#: [wiki]button -msgid "Read the Wiki" -msgstr "" - -#: [ml]question -msgid "Talk with us by email ?" -msgstr "" - -#: [ml]button -msgid "Join the Mailing List" -msgstr "" - -#: [chatroom]question -msgid "Chat with the team ?" -msgstr "" - -#: [chatroom]button -msgid "Join the Chatroom" -msgstr "" - -#: [init]location -msgid "Location node created" -msgstr "" - -#: [init]bookmark -msgid "Bookmark node created" -msgstr "" - -#: [init]vcard4 -msgid "Profile node created" -msgstr "" - -#: [init]avatar -msgid "Avatar node created" -msgstr "" - -#: [init]subscriptions -msgid "Subscriptions node created" -msgstr "" - -#: [init]microblog -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 "" - -#: [error]jid -msgid "Invalid JID" -msgstr "" - -#: [error]empty_challenge -msgid "Empty Challenge from the server" -msgstr "" - -#: [error]dns -msgid "XMPP Domain error, your account is not a correct Jabber ID" -msgstr "" - -#: [error]data_missings -msgid "Some data are missing !" -msgstr "" - -#: [error]wrong_password -msgid "Wrong password" -msgstr "Няправільны пароль" - -#: [error]internal -msgid "Internal server error" -msgstr "" - -#: [error]session -msgid "Session error" -msgstr "" - -#: [error]account_created -msgid "Account successfully created" -msgstr "" - -#: [error]xmpp_unauthorized -msgctxt "[error]xmpp_unauthorized" -msgid "Your XMPP server is unauthorized" -msgstr "" - -#: [error]mec_error -msgid "The server takes too much time to respond" -msgstr "" - -#: [error]too_old -msgid "Your web browser is too old to use with Movim." -msgstr "" - -#: [error]websocket -msgid "Movim cannot talk with the server, please try again later (Websocket connection error)" -msgstr "" - -#: [error]impossible -msgid "Impossible login" -msgstr "" - -#: [error]title -msgid "Oops!" -msgstr "" - -#: [error]default [visio]unknown_error -msgid "Unknown error" -msgstr "" - -#: [error]login_format -msgid "Invalid username format" -msgstr "" - -#: [error]password_format -msgid "Invalid password format" -msgstr "" - -#: [error]unauthorized -msgctxt "[error]unauthorized" -msgid "Your XMPP server is unauthorized" -msgstr "" - -#: [error]conflict -msgid "A Movim session is already open on an other device" -msgstr "" - -#: [error]wrong_account -msgid "Movim failed to authenticate. You entered wrong data" -msgstr "" - -#: [error]mechanism -msgid "Authentication mechanism not supported by Movim" -msgstr "" - -#: [error]fail_auth -msgid "The XMPP authentification failed" -msgstr "" - -#: [account]title [accounts]accounts_title -msgid "Accounts" -msgstr "" - -#: [form]username -msgid "My address" -msgstr "Мой адрас" - -#: [form]create_one -msgid "Create one !" -msgstr "" - -#: [form]another_account -msgid "Another account" -msgstr "" - -#: [form]no_account -msgid "No account yet ?" -msgstr "" - -#: [form]whitelist.info -msgid "You can login with accounts from theses servers" -msgstr "" - -#: [form]connected -msgid "Connected" -msgstr "" - -#: [form]population -msgid "Population" -msgstr "" - -#: [menu]empty_title -msgid "No news yet..." -msgstr "" - -#: [menu]empty -msgid "Welcome on your news feed, here you will see all the posts published by your contacts and in the groups you have subscribed." -msgstr "" - -#: [menu]refresh -msgid "Refreshing all the streams" -msgstr "" - -#: [menu]public -msgid "This post is public" -msgstr "" - -#: [affiliations]title -msgid "Manage your members" -msgstr "" - -#: [affiliations]get -msgid "Get the members" -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 "" - -#: [notifs]title -msgid "Pending Invitations" -msgstr "" - -#: [notifs]wants_to_talk -msgid "%s wants to talk with you" -msgstr "" - -#: [notifs]manage -msgid "Manage" -msgstr "" - -#: [post]news_feed -msgid "News Feed" -msgstr "" - -#: [post]placeholder -msgid "Discover and register to the groups you are interested in" -msgstr "" - -#: [post]preview [page]preview -msgid "Preview" -msgstr "" - -#: [post]help [page]help -msgid "Help" -msgstr "" - -#: [post]help_more -msgid "More help" -msgstr "" - -#: [post]help_manual -msgid "Markdown syntax manual" -msgstr "" - -#: [post]title -msgid "Title" -msgstr "" - -#: [post]content -msgid "Content" -msgstr "" - -#: [post]link -msgid "Link" -msgstr "" - -#: [post]tags -msgid "Tags" -msgstr "" - -#: [post]valid_url [publish]valid_url -msgid "Please enter a valid url" -msgstr "" - -#: [post]no_content_preview [publish]no_content_preview -msgid "No content to preview" -msgstr "" - -#: [post]no_content [publish]no_content [post]empty -msgid "No content" -msgstr "" - -#: [post]published -msgid "Post published" -msgstr "" - -#: [post]deleted -msgid "Post deleted" -msgstr "" - -#: [post]gallery -msgid "This picture will be added to your gallery" -msgstr "" - -#: [post]hot -msgid "What's Hot" -msgstr "" - -#: [post]hot_text -msgid "Posts recently published in Groups that you are not subscribed (yet)" -msgstr "" - -#: [post]new [publish]new -msgid "New post" -msgstr "" - -#: [post]embed_tip -msgid "You can also use services like Imgur or Flickr to host your picture and paste the link here." -msgstr "" - -#: [post]repost -msgid "This is a re-post from %s" -msgstr "" - -#: [post]repost_profile -msgid "See %s profile" -msgstr "" - -#: [post]public -msgid "Publish this post publicly?" -msgstr "" - -#: [post]blog_add -msgid "Post published on your blog" -msgstr "" - -#: [post]blog_remove -msgid "Post removed from your blog" -msgstr "" - -#: [post]delete_title [post]delete -msgid "Delete this post" -msgstr "" - -#: [post]delete_text -msgid "You are going to delete this post, please confirm your action" -msgstr "" - -#: [post]comments_disabled -msgid "Comments disabled" -msgstr "" - -#: [post]comment_published -msgid "Comment published" -msgstr "" - -#: [status]disconnect -msgid "Disconnect" -msgstr "" - -#: [status]here -msgid "Your status here !" -msgstr "" - -#: [status]updated -msgid "Status updated" -msgstr "" - -#: [status]status -msgid "Status" -msgstr "" - -#: [status]presence -msgid "Presence" -msgstr "" - -#: [status]online -msgid "Online with Movim" -msgstr "" - -#: [publish]title -msgid "Publish" -msgstr "" - -#: [publish]attach -msgid "Add a file or a picture to your post" -msgstr "" - -#: [publish]no_publication -msgid "You cannot publish a post on this Group" -msgstr "" - -#: [publish]form_filled -msgid "Some fields have been filled in. Do you still want to go back and loose their content?" -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 "" - -#: [rooms]empty_text1 -msgid "You don't have any chatroom yet." -msgstr "" - -#: [rooms]empty_text2 -msgid "Add one by clicking on the add button in the header." -msgstr "" - -#: [chatrooms]title -msgid "Chatrooms" -msgstr "" - -#: [chatrooms]name_placeholder -msgid "My Favorite Room" -msgstr "" - -#: [chatrooms]users -msgid "Users in the room" -msgstr "" - -#: [chatrooms]bad_nickname -msgid "Please enter a correct nickname (2 to 40 characters)" -msgstr "" - -#: [room]anonymous_title -msgid "Public chatroom" -msgstr "" - -#: [room]no_room -msgid "Please provide a room address" -msgstr "" - -#: [room]anonymous_text1 -msgid "You are currently logued as an anonymous user." -msgstr "" - -#: [room]anonymous_text2 -msgid "You can join using your own account or create one on the login page by loging out using the cross in the top-right corner." -msgstr "" - -#: [room]anonymous_login -msgid "Login on %s" -msgstr "" - -#: [room]nick -msgid "Your nickname" -msgstr "" - -#: [roster]ungrouped -msgid "Ungrouped" -msgstr "" - -#: [roster]show_disconnected -msgid "Show disconnected contacts" -msgstr "" - -#: [roster]hide_disconnected -msgid "Hide disconnected contacts" -msgstr "" - -#: [roster]show_group -msgid "Show group %s" -msgstr "" - -#: [roster]hide_group -msgid "Hide group %s" -msgstr "" - -#: [roster]jid_error -msgid "Please enter a valid Jabber ID" -msgstr "" - -#: [roster]no_contacts_title -msgid "No contacts ?" -msgstr "" - -#: [roster]no_contacts_text -msgid "You can add one using the + button bellow" -msgstr "" - -#: [roster]show_hide -msgid "Show/Hide" -msgstr "" - -#: [roster]add_contact_info1 -msgid "Enter the Jabber ID of your contact." -msgstr "" - -#: [roster]add_contact_info2 -msgid "Press enter to validate." -msgstr "" - -#: [roster]jid -msgid "JID" -msgstr "" - -#: [roster]results -msgid "Results" -msgstr "" - -#: [roster]added -msgid "Contact added" -msgstr "" - -#: [roster]deleted -msgid "Contact deleted" -msgstr "" - -#: [roster]search +#: ../cache/locales.php:220 ../cache/locales.php:402 msgid "Search" msgstr "" -#: [share]error +#: ../cache/locales.php:221 +msgid "Go on the Chat page" +msgstr "" + +#: ../cache/locales.php:222 +msgid "Read all theses articles on the News page" +msgstr "" + +#: ../cache/locales.php:223 +msgid "Visit your public blog" +msgstr "" + +#: ../cache/locales.php:224 +msgid "See your public posts and share them with all your contacts" +msgstr "" + +#: ../cache/locales.php:226 +msgid "Universal share button" +msgstr "" + +#: ../cache/locales.php:227 +msgid "" +"Bookmark or drag and drop the following button in your toolbar and use it on " +"all the pages you want to share on Movim" +msgstr "" + +#: ../cache/locales.php:228 +msgid "Share on Movim" +msgstr "" + +#: ../cache/locales.php:229 +msgid "Frequently Asked Questions" +msgstr "" + +#: ../cache/locales.php:230 +msgid "What do the little banners refer to ?" +msgstr "" + +#: ../cache/locales.php:231 +msgid "" +"Thanks to these five little banners, you can quickly identitfy the level of " +"confdentiality applied to the information you provide." +msgstr "" + +#: ../cache/locales.php:232 +msgid "White, only you can see the information" +msgstr "" + +#: ../cache/locales.php:233 +msgid "Green, you have chosen some contacts who can see your information" +msgstr "" + +#: ../cache/locales.php:234 +msgid "Orange, all your contact list can see your information" +msgstr "" + +#: ../cache/locales.php:235 +msgid "Red, everybody in the XMPP network can see your information" +msgstr "" + +#: ../cache/locales.php:236 +msgid "Black, the whole Internet can see your information" +msgstr "" + +#: ../cache/locales.php:237 +msgid "Looking for some documentation ?" +msgstr "" + +#: ../cache/locales.php:238 +msgid "Read the Wiki" +msgstr "" + +#: ../cache/locales.php:239 +msgid "Talk with us by email ?" +msgstr "" + +#: ../cache/locales.php:240 +msgid "Join the Mailing List" +msgstr "" + +#: ../cache/locales.php:241 +msgid "Chat with the team ?" +msgstr "" + +#: ../cache/locales.php:242 +msgid "Join the Chatroom" +msgstr "" + +#: ../cache/locales.php:243 +msgid "Location node created" +msgstr "" + +#: ../cache/locales.php:244 +msgid "Bookmark node created" +msgstr "" + +#: ../cache/locales.php:245 +msgid "Profile node created" +msgstr "" + +#: ../cache/locales.php:246 +msgid "Avatar node created" +msgstr "" + +#: ../cache/locales.php:247 +msgid "Subscriptions node created" +msgstr "" + +#: ../cache/locales.php:248 +msgid "Microblog node created" +msgstr "" + +#: ../cache/locales.php:249 +msgid "Location" +msgstr "" + +#: ../cache/locales.php:250 +msgid "Wrong position" +msgstr "" + +#: ../cache/locales.php:251 +msgid "Location updated" +msgstr "" + +#: ../cache/locales.php:252 +msgid "Update my position" +msgstr "" + +#: ../cache/locales.php:253 +msgid "Wrong username" +msgstr "" + +#: ../cache/locales.php:254 +msgid "Invalid JID" +msgstr "" + +#: ../cache/locales.php:255 +msgid "Empty Challenge from the server" +msgstr "" + +#: ../cache/locales.php:256 +msgid "XMPP Domain error, your account is not a correct Jabber ID" +msgstr "" + +#: ../cache/locales.php:257 +msgid "Some data are missing !" +msgstr "" + +#: ../cache/locales.php:258 +msgid "Wrong password" +msgstr "Няправільны пароль" + +#: ../cache/locales.php:259 +msgid "Internal server error" +msgstr "" + +#: ../cache/locales.php:260 +msgid "Session error" +msgstr "" + +#: ../cache/locales.php:261 +msgid "Account successfully created" +msgstr "" + +#: ../cache/locales.php:262 ../cache/locales.php:271 +msgid "Your XMPP server is unauthorized" +msgstr "" + +#: ../cache/locales.php:263 +msgid "The server takes too much time to respond" +msgstr "" + +#: ../cache/locales.php:264 +msgid "Your web browser is too old to use with Movim." +msgstr "" + +#: ../cache/locales.php:265 +msgid "" +"Movim cannot talk with the server, please try again later (Websocket " +"connection error)" +msgstr "" + +#: ../cache/locales.php:266 +msgid "Impossible login" +msgstr "" + +#: ../cache/locales.php:267 +msgid "Oops!" +msgstr "" + +#: ../cache/locales.php:268 ../cache/locales.php:449 ../cache/locales.php:455 +msgid "Unknown error" +msgstr "" + +#: ../cache/locales.php:269 +msgid "Invalid username format" +msgstr "" + +#: ../cache/locales.php:270 +msgid "Invalid password format" +msgstr "" + +#: ../cache/locales.php:272 +msgid "A Movim session is already open on an other device" +msgstr "" + +#: ../cache/locales.php:273 +msgid "Movim failed to authenticate. You entered wrong data" +msgstr "" + +#: ../cache/locales.php:274 +msgid "Authentication mechanism not supported by Movim" +msgstr "" + +#: ../cache/locales.php:275 +msgid "The XMPP authentification failed" +msgstr "" + +#: ../cache/locales.php:276 +#, php-format +msgid "" +"You can login with Facebook (chat only) using %syour.id@chat.facebook.com%s " +"and your password" +msgstr "" + +#: ../cache/locales.php:277 +#, php-format +msgid "%sGmail accounts are also compatible%s but are not fully supported" +msgstr "" + +#: ../cache/locales.php:278 +msgid "You can login using your favorite Jabber account" +msgstr "" + +#: ../cache/locales.php:279 +msgid "or with our demonstration account" +msgstr "" + +#: ../cache/locales.php:280 ../cache/locales.php:435 +msgid "Accounts" +msgstr "" + +#: ../cache/locales.php:281 +msgid "My address" +msgstr "Мой адрас" + +#: ../cache/locales.php:283 +msgid "Create one !" +msgstr "" + +#: ../cache/locales.php:284 +msgid "No account yet ?" +msgstr "" + +#: ../cache/locales.php:285 +msgid "Another account" +msgstr "" + +#: ../cache/locales.php:286 +msgid "You can login with accounts from theses servers" +msgstr "" + +#: ../cache/locales.php:287 +msgid "Connected" +msgstr "" + +#: ../cache/locales.php:288 +msgid "Population" +msgstr "" + +#: ../cache/locales.php:289 +msgid "Bad nickname (between 4 and 40 characters)" +msgstr "" + +#: ../cache/locales.php:292 +msgid "" +"Welcome on your news feed, here you will see all the posts published in the " +"groups you have subscribed." +msgstr "" + +#: ../cache/locales.php:293 +msgid "Refreshing all the streams" +msgstr "" + +#: ../cache/locales.php:294 +msgid "This post is public" +msgstr "" + +#: ../cache/locales.php:295 +msgid "Manage your members" +msgstr "" + +#: ../cache/locales.php:296 +msgid "Get the members" +msgstr "" + +#: ../cache/locales.php:297 +msgid "Affiliations saved" +msgstr "" + +#: ../cache/locales.php:298 +msgid "Manage your subscriptions" +msgstr "" + +#: ../cache/locales.php:299 +msgid "Manage the subscriptions" +msgstr "" + +#: ../cache/locales.php:300 +msgid "Get the subscriptions" +msgstr "" + +#: ../cache/locales.php:301 +msgid "Subscriptions saved" +msgstr "" + +#: ../cache/locales.php:302 +msgid "Pending Invitations" +msgstr "" + +#: ../cache/locales.php:303 +#, php-format +msgid "%s wants to talk with you" +msgstr "" + +#: ../cache/locales.php:304 +msgid "Manage" +msgstr "" + +#: ../cache/locales.php:305 ../cache/locales.php:338 +msgid "News Feed" +msgstr "" + +#: ../cache/locales.php:306 ../cache/locales.php:339 +msgid "Discover and register to the groups you are interested in" +msgstr "" + +#: ../cache/locales.php:307 ../cache/locales.php:340 ../cache/locales.php:482 +msgid "Preview" +msgstr "" + +#: ../cache/locales.php:308 ../cache/locales.php:341 ../cache/locales.php:478 +msgid "Help" +msgstr "" + +#: ../cache/locales.php:309 ../cache/locales.php:342 +msgid "More help" +msgstr "" + +#: ../cache/locales.php:310 ../cache/locales.php:343 +msgid "Markdown syntax manual" +msgstr "" + +#: ../cache/locales.php:311 ../cache/locales.php:344 ../cache/locales.php:681 +msgid "Title" +msgstr "" + +#: ../cache/locales.php:312 ../cache/locales.php:345 +msgid "Content" +msgstr "" + +#: ../cache/locales.php:313 ../cache/locales.php:346 +msgid "Link" +msgstr "" + +#: ../cache/locales.php:314 ../cache/locales.php:347 +msgid "Tags" +msgstr "" + +#: ../cache/locales.php:315 ../cache/locales.php:348 +msgid "Please enter a valid url" +msgstr "" + +#: ../cache/locales.php:316 ../cache/locales.php:349 +msgid "No content to preview" +msgstr "" + +#: ../cache/locales.php:317 ../cache/locales.php:350 ../cache/locales.php:687 +msgid "No content" +msgstr "" + +#: ../cache/locales.php:318 ../cache/locales.php:351 +msgid "Post published" +msgstr "" + +#: ../cache/locales.php:319 ../cache/locales.php:352 +msgid "Post deleted" +msgstr "" + +#: ../cache/locales.php:320 ../cache/locales.php:353 +msgid "This picture will be added to your gallery" +msgstr "" + +#: ../cache/locales.php:321 ../cache/locales.php:354 +msgid "What's Hot" +msgstr "" + +#: ../cache/locales.php:322 ../cache/locales.php:355 +msgid "New post" +msgstr "" + +#: ../cache/locales.php:323 ../cache/locales.php:357 +msgid "" +"You can also use services like Imgur or Flickr to host your picture and " +"paste the link here." +msgstr "" + +#: ../cache/locales.php:324 +#, php-format +msgid "This is a re-post from %s" +msgstr "" + +#: ../cache/locales.php:325 +#, php-format +msgid "See %s profile" +msgstr "" + +#: ../cache/locales.php:326 +msgid "Publish this post on your public feed?" +msgstr "" + +#: ../cache/locales.php:327 +msgid "Post published on your blog" +msgstr "" + +#: ../cache/locales.php:328 +msgid "Post removed from your blog" +msgstr "" + +#: ../cache/locales.php:329 ../cache/locales.php:701 +msgid "Delete this post" +msgstr "" + +#: ../cache/locales.php:330 +msgid "You are going to delete this post, please confirm your action" +msgstr "" + +#: ../cache/locales.php:331 +msgid "Comments disabled" +msgstr "" + +#: ../cache/locales.php:332 +msgid "Comment published" +msgstr "" + +#: ../cache/locales.php:333 +msgid "Disconnect" +msgstr "" + +#: ../cache/locales.php:334 +msgid "Your status here !" +msgstr "" + +#: ../cache/locales.php:335 +msgid "Status updated" +msgstr "" + +#: ../cache/locales.php:336 +msgid "Status" +msgstr "" + +#: ../cache/locales.php:337 +msgid "Presence" +msgstr "" + +#: ../cache/locales.php:356 +msgid "Publish" +msgstr "" + +#: ../cache/locales.php:358 +msgid "You cannot publish a post on this Group" +msgstr "" + +#: ../cache/locales.php:359 +msgid "" +"Some fields have been filled in. Do you still want to go back and loose " +"their content?" +msgstr "" + +#: ../cache/locales.php:360 +msgid "Shared" +msgstr "" + +#: ../cache/locales.php:362 +#, php-format +msgid "%s has been added to your public groups" +msgstr "" + +#: ../cache/locales.php:363 +#, php-format +msgid "%s has been removed from your public groups" +msgstr "" + +#: ../cache/locales.php:364 +msgid "Add a chatroom" +msgstr "" + +#: ../cache/locales.php:365 +msgid "You don't have any chatroom yet." +msgstr "" + +#: ../cache/locales.php:366 +msgid "Add one by clicking on the add button in the header." +msgstr "" + +#: ../cache/locales.php:367 +msgid "Chatrooms" +msgstr "" + +#: ../cache/locales.php:370 +msgid "My Favorite Room" +msgstr "" + +#: ../cache/locales.php:374 +msgid "Remove a chatroom" +msgstr "" + +#: ../cache/locales.php:375 +msgid "" +"You are going to remove the following chatroom. Please confirm your action." +msgstr "" + +#: ../cache/locales.php:378 +msgid "Users in the room" +msgstr "" + +#: ../cache/locales.php:379 +msgid "Please enter a correct nickname (6 to 40 characters)" +msgstr "" + +#: ../cache/locales.php:381 +msgid "Public chatroom" +msgstr "" + +#: ../cache/locales.php:382 +msgid "Please provide a room address" +msgstr "" + +#: ../cache/locales.php:383 +msgid "You are currently logued as an anonymous user." +msgstr "" + +#: ../cache/locales.php:384 +msgid "" +"You can join using your own account or create one on the login page by " +"loging out using the cross in the top-right corner." +msgstr "" + +#: ../cache/locales.php:385 +#, php-format +msgid "Login on %s" +msgstr "" + +#: ../cache/locales.php:386 +msgid "Your nickname" +msgstr "" + +#: ../cache/locales.php:387 +msgid "Ungrouped" +msgstr "" + +#: ../cache/locales.php:388 +msgid "Show disconnected contacts" +msgstr "" + +#: ../cache/locales.php:389 +msgid "Hide disconnected contacts" +msgstr "" + +#: ../cache/locales.php:390 +#, php-format +msgid "Show group %s" +msgstr "" + +#: ../cache/locales.php:391 +#, php-format +msgid "Hide group %s" +msgstr "" + +#: ../cache/locales.php:392 +msgid "Please enter a valid Jabber ID" +msgstr "" + +#: ../cache/locales.php:393 +msgid "" +"No contacts ? You can add one using the + button bellow or going to the " +"Explore page" +msgstr "" + +#: ../cache/locales.php:394 +msgid "Show/Hide" +msgstr "" + +#: ../cache/locales.php:395 +msgid "Enter the Jabber ID of your contact." +msgstr "" + +#: ../cache/locales.php:396 +msgid "Press enter to validate." +msgstr "" + +#: ../cache/locales.php:397 +msgid "JID" +msgstr "" + +#: ../cache/locales.php:398 +msgid "Results" +msgstr "" + +#: ../cache/locales.php:399 +msgid "Contact added" +msgstr "" + +#: ../cache/locales.php:401 +msgid "Contact deleted" +msgstr "" + +#: ../cache/locales.php:403 msgid "This is not a valid url" msgstr "" -#: [share]success +#: ../cache/locales.php:404 msgid "Sharing the URL" msgstr "" -#: [statistics]title +#: ../cache/locales.php:405 msgid "Statistics" msgstr "" -#: [statistics]since +#: ../cache/locales.php:406 msgid "Since" msgstr "" -#: [statistics]sessions +#: ../cache/locales.php:407 msgid "Sessions" msgstr "" -#: [statistics]monthly_sub +#: ../cache/locales.php:409 msgid "Monthly Subscriptions" msgstr "" -#: [statistics]monthly_sub_cum +#: ../cache/locales.php:410 msgid "Monthly Subscriptions Cumulated" msgstr "" -#: [subscribe]info -msgid "Movim is a decentralized social network, before creating a new account you need to choose a server to register." +#: ../cache/locales.php:412 +msgid "" +"Movim is a decentralized social network, before creating a new account you " +"need to choose a server to register." msgstr "" -#: [subscribe]server_question +#: ../cache/locales.php:413 msgid "Your server here ?" msgstr "" -#: [subscribe]server_contact +#: ../cache/locales.php:414 msgid "Contact us to add yours to the officially supported servers list" msgstr "" -#: [feed]nope +#: ../cache/locales.php:416 msgid "No public feed for this contact" msgstr "" -#: [feed]nope_contact +#: ../cache/locales.php:417 msgid "No contact specified" msgstr "" -#: [upload]title -msgid "Upload a file" -msgstr "" - -#: [upload]choose -msgid "Choose a file to upload" -msgstr "" - -#: [vcard]title [page]profile +#: ../cache/locales.php:418 ../cache/locales.php:473 msgid "Profile" msgstr "" -#: [vcard]updated +#: ../cache/locales.php:419 msgid "Profile Updated" msgstr "" -#: [vcard]not_updated +#: ../cache/locales.php:420 msgid "Profile Not Updated" msgstr "" -#: [vcard]public +#: ../cache/locales.php:421 msgid "Your profile is now public" msgstr "" -#: [vcard]restricted +#: ../cache/locales.php:422 msgid "Your profile is now restricted" msgstr "" -#: [general]nickname -msgctxt "[general]nickname" -msgid "Nickname" -msgstr "" - -#: [accounts]twitter +#: ../cache/locales.php:436 msgid "Twitter" msgstr "" -#: [accounts]skype +#: ../cache/locales.php:437 msgid "Skype" msgstr "" -#: [accounts]yahoo +#: ../cache/locales.php:438 msgid "Yahoo" msgstr "" -#: [accounts]accounts_nickname -msgctxt "[accounts]accounts_nickname" -msgid "Nickname" -msgstr "" - -#: [accounts]accounts_yahoo -msgid "Yahoo Account" -msgstr "" - -#: [privacy]privacy_title +#: ../cache/locales.php:439 msgid "Privacy Level" msgstr "" -#: [privacy]privacy_question +#: ../cache/locales.php:440 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." +#: ../cache/locales.php:441 +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." msgstr "" -#: [save]submit [button]submit -msgid "Submit" -msgstr "Даслаць" - -#: [save]reset [button]reset -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 +#: ../cache/locales.php:442 msgid "Call" msgstr "" -#: [visio]hang_up +#: ../cache/locales.php:443 msgid "Hang up" msgstr "" -#: [visio]connection +#: ../cache/locales.php:444 msgid "Connection" msgstr "" -#: [global]no_js +#: ../cache/locales.php:445 ../cache/locales.php:451 +msgid "Hung up" +msgstr "" + +#: ../cache/locales.php:446 ../cache/locales.php:452 +msgid "Your contact is busy" +msgstr "" + +#: ../cache/locales.php:447 ../cache/locales.php:453 +msgid "Declined" +msgstr "" + +#: ../cache/locales.php:448 ../cache/locales.php:454 +msgid "Remote application incompatible" +msgstr "" + +#: ../cache/locales.php:450 ../cache/locales.php:456 +msgid "Is calling you" +msgstr "" + +#: ../cache/locales.php:457 msgid "You don't have javascript enabled. Good luck with that." msgstr "" -#: [global]description -msgid "Movim is a kickass distributed social networking platform that protect your privacy an comes with a set of awesome features." +#: ../cache/locales.php:458 +msgid "" +"Movim is a kickass distributed social networking platform that protect your " +"privacy an comes with a set of awesome features." msgstr "" -#: [page]administration +#: ../cache/locales.php:459 msgid "Administration" msgstr "" -#: [page]home +#: ../cache/locales.php:460 msgid "Home" msgstr "Галоўная" -#: [page]discover +#: ../cache/locales.php:461 msgid "Discover" msgstr "" -#: [page]explore +#: ../cache/locales.php:462 msgid "Explore" msgstr "" -#: [page]account_creation +#: ../cache/locales.php:463 msgid "Account Creation" msgstr "Стварэнне логiна" -#: [page]avatar +#: ../cache/locales.php:464 +msgid "News" +msgstr "" + +#: ../cache/locales.php:465 msgid "Avatar" msgstr "" -#: [page]chats +#: ../cache/locales.php:467 msgid "Chats" msgstr "" -#: [page]server +#: ../cache/locales.php:470 msgid "Server" msgstr "" -#: [page]public_groups +#: ../cache/locales.php:471 msgid "Public Groups" msgstr "" -#: [page]viewer +#: ../cache/locales.php:472 msgid "Viewer" msgstr "" -#: [page]media +#: ../cache/locales.php:474 msgid "Media" msgstr "" -#: [page]blog +#: ../cache/locales.php:475 msgid "Blog" msgstr "" -#: [page]about +#: ../cache/locales.php:476 msgid "About" msgstr "" -#: [page]login +#: ../cache/locales.php:477 msgid "Login" msgstr "" -#: [page]feed +#: ../cache/locales.php:479 msgid "Feed" msgstr "" -#: [page]gallery +#: ../cache/locales.php:481 msgid "Gallery" msgstr "" -#: [page]visio +#: ../cache/locales.php:483 msgid "Visio-conference" msgstr "" -#: [page]pods +#: ../cache/locales.php:484 msgid "Pods" msgstr "" -#: [page]share +#: ../cache/locales.php:485 msgid "Share" msgstr "" -#: [page]room +#: ../cache/locales.php:486 msgid "Room" msgstr "" -#: [error]error +#: ../cache/locales.php:487 +#, php-format msgid "Error: %s" msgstr "" -#: [error]cannot_load_file +#: ../cache/locales.php:488 +#, php-format msgid "Cannot load file '%s'" msgstr "" -#: [error]route +#: ../cache/locales.php:489 +#, php-format msgid "Route error, please set all the parameters for the page %s" msgstr "" -#: [error]widget_load_error +#: ../cache/locales.php:490 +#, php-format msgid "Requested widget '%s' doesn't exist." msgstr "" -#: [error]widget_call_error +#: ../cache/locales.php:491 +#, php-format msgid "Requested event '%s' not registered." msgstr "" -#: [error]whoops +#: ../cache/locales.php:492 msgid "Whoops!" msgstr "" -#: [error]media_not_found +#: ../cache/locales.php:493 msgid "It seem that you don't have any pictures here?" msgstr "" -#: [error]media_ask_upload +#: ../cache/locales.php:494 msgid "You can try to upload a couple by going to the Media page" msgstr "" -#: [title]about +#: ../cache/locales.php:495 +#, php-format msgid "%s - About" msgstr "" -#: [title]account +#: ../cache/locales.php:496 +#, php-format msgid "%s - Account" msgstr "" -#: [title]administration +#: ../cache/locales.php:497 +#, php-format msgid "%s - Administration Panel" msgstr "" -#: [title]blog +#: ../cache/locales.php:498 +#, php-format msgid "%s - Blog" msgstr "" -#: [title]configuration +#: ../cache/locales.php:499 +#, php-format msgid "%s - Configuration" msgstr "%s - Канфігурацыя" -#: [title]discover +#: ../cache/locales.php:500 +#, php-format msgid "%s - Discover" msgstr "" -#: [title]explore +#: ../cache/locales.php:501 +#, php-format msgid "%s - Explore" msgstr "" -#: [title]help +#: ../cache/locales.php:502 +#, php-format msgid "%s - Help Page" msgstr "" -#: [title]login +#: ../cache/locales.php:503 +#, php-format msgid "%s - Login to Movim" msgstr "%s - Увайсці ў Movim" -#: [title]main +#: ../cache/locales.php:504 +#, php-format msgid "%s - Welcome to Movim" msgstr "%s - Сардэчна запрашаем у Movim" -#: [title]media +#: ../cache/locales.php:505 +#, php-format msgid "%s - Media" msgstr "" -#: [title]news +#: ../cache/locales.php:506 +#, php-format msgid "%s - News" msgstr "" -#: [title]node_configuration +#: ../cache/locales.php:507 +#, php-format msgid "%s - Group Configuration" msgstr "" -#: [title]node +#: ../cache/locales.php:508 +#, php-format msgid "%s - Group" msgstr "" -#: [title]not_found +#: ../cache/locales.php:509 +#, php-format msgid "%s - 404" msgstr "" -#: [title]profile +#: ../cache/locales.php:510 +#, php-format msgid "%s - Profile" msgstr "" -#: [title]server +#: ../cache/locales.php:511 +#, php-format msgid "%s - Server" msgstr "" -#: [button]validate +#: ../cache/locales.php:512 msgid "Validate" msgstr "" -#: [button]refresh +#: ../cache/locales.php:513 msgid "Refresh" msgstr "" -#: [button]add +#: ../cache/locales.php:514 msgid "Add" msgstr "" -#: [button]delete +#: ../cache/locales.php:515 msgid "Delete" msgstr "" -#: [button]cancel +#: ../cache/locales.php:516 +msgid "Remove" +msgstr "" + +#: ../cache/locales.php:517 msgid "Cancel" msgstr "" -#: [button]close +#: ../cache/locales.php:518 msgid "Close" msgstr "" -#: [button]update +#: ../cache/locales.php:519 msgid "Update" msgstr "" -#: [button]updating +#: ../cache/locales.php:520 msgid "Updating" msgstr "" -#: [button]submitting +#: ../cache/locales.php:521 +msgid "Submit" +msgstr "Даслаць" + +#: ../cache/locales.php:522 msgid "Submitting" msgstr "" -#: [button]register +#: ../cache/locales.php:523 +msgid "Reset" +msgstr "Скід" + +#: ../cache/locales.php:524 msgid "Register" msgstr "" -#: [button]unregister +#: ../cache/locales.php:525 msgid "Unregister" msgstr "" -#: [button]save +#: ../cache/locales.php:526 msgid "Save" msgstr "" -#: [button]clear +#: ../cache/locales.php:527 msgid "Clear" msgstr "" -#: [button]upload +#: ../cache/locales.php:528 msgid "Upload" msgstr "" -#: [button]come_in +#: ../cache/locales.php:529 msgid "Come in!" msgstr "Заходзьце!" -#: [button]connecting +#: ../cache/locales.php:530 msgid "Connecting" msgstr "" -#: [button]bool_yes +#: ../cache/locales.php:531 msgid "Yes" msgstr "" -#: [button]bool_no +#: ../cache/locales.php:532 msgid "No" msgstr "" -#: [button]return +#: ../cache/locales.php:534 msgid "Return" msgstr "" -#: [button]accept +#: ../cache/locales.php:535 msgid "Accept" msgstr "" -#: [button]refuse +#: ../cache/locales.php:536 msgid "Refuse" msgstr "" -#: [button]next +#: ../cache/locales.php:537 msgid "Next" msgstr "" -#: [button]previous +#: ../cache/locales.php:538 msgid "Previous" msgstr "" -#: [step]step +#: ../cache/locales.php:539 +#, php-format msgid "Step %s" msgstr "" -#: [day]title +#: ../cache/locales.php:542 msgid "Day" msgstr "" -#: [day]monday +#: ../cache/locales.php:543 msgid "Monday" msgstr "" -#: [day]tuesday +#: ../cache/locales.php:544 msgid "Tuesday" msgstr "" -#: [day]wednesday +#: ../cache/locales.php:545 msgid "Wednesday" msgstr "" -#: [day]thursday +#: ../cache/locales.php:546 msgid "Thursday" msgstr "" -#: [day]friday +#: ../cache/locales.php:547 msgid "Friday" msgstr "" -#: [day]saturday +#: ../cache/locales.php:548 msgid "Saturday" msgstr "" -#: [day]sunday +#: ../cache/locales.php:549 msgid "Sunday" msgstr "" -#: [gender]nil -msgctxt "[gender]nil" +#: ../cache/locales.php:550 ../cache/locales.php:559 msgid "None" msgstr "" -#: [gender]male +#: ../cache/locales.php:551 msgid "Male" msgstr "" -#: [gender]female +#: ../cache/locales.php:552 msgid "Female" msgstr "" -#: [gender]other +#: ../cache/locales.php:553 msgid "Other" msgstr "" -#: [client]bot +#: ../cache/locales.php:554 msgid "Bot" msgstr "" -#: [client]desktop +#: ../cache/locales.php:555 msgid "Desktop" msgstr "" -#: [client]phone +#: ../cache/locales.php:556 msgid "Phone" msgstr "" -#: [client]web +#: ../cache/locales.php:557 msgid "Web" msgstr "" -#: [client]registered +#: ../cache/locales.php:558 msgid "Registered" msgstr "" -#: [marital]nil -msgctxt "[marital]nil" -msgid "None" -msgstr "" - -#: [marital]single +#: ../cache/locales.php:560 msgid "Single" msgstr "" -#: [marital]relationship +#: ../cache/locales.php:561 msgid "In a relationship" msgstr "" -#: [marital]married +#: ../cache/locales.php:562 msgid "Married" msgstr "" -#: [marital]divorced +#: ../cache/locales.php:563 msgid "Divorced" msgstr "" -#: [marital]widowed +#: ../cache/locales.php:564 msgid "Widowed" msgstr "" -#: [marital]cohabiting +#: ../cache/locales.php:565 msgid "Cohabiting" msgstr "" -#: [marital]union +#: ../cache/locales.php:566 msgid "Civil Union" msgstr "" -#: [flag]white +#: ../cache/locales.php:567 msgid "Not shared" msgstr "" -#: [flag]green +#: ../cache/locales.php:568 msgid "Shared with one contact" msgstr "" -#: [flag]orange +#: ../cache/locales.php:569 msgid "Shared with all contacts" msgstr "" -#: [flag]red +#: ../cache/locales.php:570 msgid "Shared with the XMPP network" msgstr "" -#: [flag]black +#: ../cache/locales.php:571 msgid "Shared with the whole Internet" msgstr "" -#: [presence]online +#: ../cache/locales.php:572 msgid "Online" msgstr "" -#: [presence]away +#: ../cache/locales.php:573 msgid "Away" msgstr "Далёка" -#: [presence]dnd +#: ../cache/locales.php:574 msgid "Do Not Disturb" msgstr "" -#: [presence]xa +#: ../cache/locales.php:575 msgid "Extended Away" msgstr "" -#: [presence]offline +#: ../cache/locales.php:576 msgid "Offline" msgstr "" -#: [presence]error +#: ../cache/locales.php:577 msgid "Error" msgstr "" -#: [mood]afraid +#: ../cache/locales.php:578 msgid "afraid" msgstr "" -#: [mood]amazed +#: ../cache/locales.php:579 msgid "amazed" msgstr "" -#: [mood]amorous +#: ../cache/locales.php:580 msgid "amorous" msgstr "" -#: [mood]angry +#: ../cache/locales.php:581 msgid "angry" msgstr "" -#: [mood]annoyed +#: ../cache/locales.php:582 msgid "annoyed" msgstr "" -#: [mood]anxious +#: ../cache/locales.php:583 msgid "anxious" msgstr "" -#: [mood]aroused +#: ../cache/locales.php:584 msgid "aroused" msgstr "" -#: [mood]ashamed +#: ../cache/locales.php:585 msgid "ashamed" msgstr "" -#: [mood]bored +#: ../cache/locales.php:586 msgid "bored" msgstr "" -#: [mood]brave +#: ../cache/locales.php:587 msgid "brave" msgstr "" -#: [mood]calm +#: ../cache/locales.php:588 msgid "calm" msgstr "" -#: [mood]cautious +#: ../cache/locales.php:589 msgid "cautious" msgstr "" -#: [mood]cold +#: ../cache/locales.php:590 msgid "cold" msgstr "" -#: [mood]confident +#: ../cache/locales.php:591 msgid "confident" msgstr "" -#: [mood]confused +#: ../cache/locales.php:592 msgid "confused" msgstr "" -#: [mood]contemplative +#: ../cache/locales.php:593 msgid "contemplative" msgstr "" -#: [mood]contented +#: ../cache/locales.php:594 msgid "contented" msgstr "" -#: [mood]cranky +#: ../cache/locales.php:595 msgid "cranky" msgstr "" -#: [mood]crazy +#: ../cache/locales.php:596 msgid "crazy" msgstr "" -#: [mood]creative +#: ../cache/locales.php:597 msgid "creative" msgstr "" -#: [mood]curious +#: ../cache/locales.php:598 msgid "curious" msgstr "" -#: [mood]dejected +#: ../cache/locales.php:599 msgid "dejected" msgstr "" -#: [mood]depressed +#: ../cache/locales.php:600 msgid "depressed" msgstr "" -#: [mood]disappointed +#: ../cache/locales.php:601 msgid "disappointed" msgstr "" -#: [mood]disgusted +#: ../cache/locales.php:602 msgid "disgusted" msgstr "" -#: [mood]dismayed +#: ../cache/locales.php:603 msgid "dismayed" msgstr "" -#: [mood]distracted +#: ../cache/locales.php:604 msgid "distracted" msgstr "" -#: [mood]embarrassed +#: ../cache/locales.php:605 msgid "embarrassed" msgstr "" -#: [mood]envious +#: ../cache/locales.php:606 msgid "envious" msgstr "" -#: [mood]excited +#: ../cache/locales.php:607 msgid "excited" msgstr "" -#: [mood]flirtatious +#: ../cache/locales.php:608 msgid "flirtatious" msgstr "" -#: [mood]frustated +#: ../cache/locales.php:609 msgid "frustated" msgstr "" -#: [mood]grateful +#: ../cache/locales.php:610 msgid "grateful" msgstr "" -#: [mood]grieving +#: ../cache/locales.php:611 msgid "grieving" msgstr "" -#: [mood]grumpy +#: ../cache/locales.php:612 msgid "grumpy" msgstr "" -#: [mood]guilty +#: ../cache/locales.php:613 msgid "guilty" msgstr "" -#: [mood]happy +#: ../cache/locales.php:614 msgid "happy" msgstr "" -#: [mood]hopeful +#: ../cache/locales.php:615 msgid "hopeful" msgstr "" -#: [mood]hot +#: ../cache/locales.php:616 msgid "hot" msgstr "" -#: [mood]humbled +#: ../cache/locales.php:617 msgid "humbled" msgstr "" -#: [mood]humiliated +#: ../cache/locales.php:618 msgid "humiliated" msgstr "" -#: [mood]hungry +#: ../cache/locales.php:619 msgid "hungry" msgstr "" -#: [mood]hurt +#: ../cache/locales.php:620 msgid "hurt" msgstr "" -#: [mood]impressed +#: ../cache/locales.php:621 msgid "impressed" msgstr "" -#: [mood]in_awe +#: ../cache/locales.php:622 msgid "in awe" msgstr "" -#: [mood]in_love +#: ../cache/locales.php:623 msgid "in love" msgstr "" -#: [mood]indignant +#: ../cache/locales.php:624 msgid "indignant" msgstr "" -#: [mood]interested +#: ../cache/locales.php:625 msgid "interested" msgstr "" -#: [mood]intoxicated +#: ../cache/locales.php:626 msgid "intoxicated" msgstr "" -#: [mood]invincible +#: ../cache/locales.php:627 msgid "invincible" msgstr "" -#: [mood]jealous +#: ../cache/locales.php:628 msgid "jealous" msgstr "" -#: [mood]lonely +#: ../cache/locales.php:629 msgid "lonely" msgstr "" -#: [mood]lost +#: ../cache/locales.php:630 msgid "lost" msgstr "" -#: [mood]lucky +#: ../cache/locales.php:631 msgid "lucky" msgstr "" -#: [mood]mean +#: ../cache/locales.php:632 msgid "mean" msgstr "" -#: [mood]moody +#: ../cache/locales.php:633 msgid "moody" msgstr "" -#: [mood]nervous +#: ../cache/locales.php:634 msgid "nervous" msgstr "" -#: [mood]neutral +#: ../cache/locales.php:635 msgid "neutral" msgstr "" -#: [mood]offended +#: ../cache/locales.php:636 msgid "offended" msgstr "" -#: [mood]outraged +#: ../cache/locales.php:637 msgid "outraged" msgstr "" -#: [mood]playful +#: ../cache/locales.php:638 msgid "playful" msgstr "" -#: [mood]proud +#: ../cache/locales.php:639 msgid "proud" msgstr "" -#: [mood]relaxed +#: ../cache/locales.php:640 msgid "relaxed" msgstr "" -#: [mood]relieved +#: ../cache/locales.php:641 msgid "relieved" msgstr "" -#: [mood]restless +#: ../cache/locales.php:642 +msgid "remorseful" +msgstr "" + +#: ../cache/locales.php:643 msgid "restless" msgstr "" -#: [mood]sad +#: ../cache/locales.php:644 msgid "sad" msgstr "" -#: [mood]sarcastic +#: ../cache/locales.php:645 msgid "sarcastic" msgstr "" -#: [mood]satisfied +#: ../cache/locales.php:646 msgid "satisfied" msgstr "" -#: [mood]serious +#: ../cache/locales.php:647 msgid "serious" msgstr "" -#: [mood]shocked +#: ../cache/locales.php:648 msgid "shocked" msgstr "" -#: [mood]shy +#: ../cache/locales.php:649 msgid "shy" msgstr "" -#: [mood]sick +#: ../cache/locales.php:650 msgid "sick" msgstr "" -#: [mood]sleepy +#: ../cache/locales.php:651 msgid "sleepy" msgstr "" -#: [mood]spontaneous +#: ../cache/locales.php:652 msgid "spontaneous" msgstr "" -#: [mood]stressed +#: ../cache/locales.php:653 msgid "stressed" msgstr "" -#: [mood]strong +#: ../cache/locales.php:654 msgid "strong" msgstr "" -#: [mood]surprised +#: ../cache/locales.php:655 msgid "surprised" msgstr "" -#: [mood]thankful +#: ../cache/locales.php:656 msgid "thankful" msgstr "" -#: [mood]thirsty +#: ../cache/locales.php:657 msgid "thirsty" msgstr "" -#: [mood]tired +#: ../cache/locales.php:658 msgid "tired" msgstr "" -#: [mood]undefined +#: ../cache/locales.php:659 msgid "undefined" msgstr "" -#: [mood]weak +#: ../cache/locales.php:660 msgid "weak" msgstr "" -#: [mood]worried +#: ../cache/locales.php:661 msgid "worried" msgstr "" -#: [month]title +#: ../cache/locales.php:662 msgid "Month" msgstr "" -#: [month]january +#: ../cache/locales.php:663 msgid "January" msgstr "" -#: [month]february +#: ../cache/locales.php:664 msgid "February" msgstr "" -#: [month]march +#: ../cache/locales.php:665 msgid "March" msgstr "" -#: [month]april +#: ../cache/locales.php:666 msgid "April" msgstr "" -#: [month]may +#: ../cache/locales.php:667 msgid "May" msgstr "" -#: [month]june +#: ../cache/locales.php:668 msgid "June" msgstr "" -#: [month]july +#: ../cache/locales.php:669 msgid "July" msgstr "" -#: [month]august +#: ../cache/locales.php:670 msgid "August" msgstr "" -#: [month]september +#: ../cache/locales.php:671 msgid "September" msgstr "" -#: [month]october +#: ../cache/locales.php:672 msgid "October" msgstr "" -#: [month]november +#: ../cache/locales.php:673 msgid "November" msgstr "" -#: [month]december +#: ../cache/locales.php:674 msgid "December" msgstr "" -#: [year]title +#: ../cache/locales.php:675 msgid "Year" msgstr "" -#: [date]today +#: ../cache/locales.php:676 msgid "Today" msgstr "" -#: [date]tomorrow +#: ../cache/locales.php:677 msgid "Tomorrow" msgstr "" -#: [date]yesterday +#: ../cache/locales.php:678 msgid "Yesterday" msgstr "" -#: [date]ago -msgid "%d days ago" +#: ../cache/locales.php:679 +#, php-format +msgid " %d days ago" msgstr "" -#: [date]day +#: ../cache/locales.php:680 msgid "day" msgstr "" -#: [post]whats_new +#: ../cache/locales.php:682 msgid "What's new ?" msgstr "" -#: [post]place +#: ../cache/locales.php:683 msgid "Place" msgstr "" -#: [post]by +#: ../cache/locales.php:684 msgid "by" msgstr "" -#: [post]geolocalisation +#: ../cache/locales.php:685 msgid "Geolocalisation" msgstr "" -#: [post]email +#: ../cache/locales.php:686 msgid "email" msgstr "" -#: [post]no_comments +#: ../cache/locales.php:688 msgid "No comments yet" msgstr "" -#: [post]no_comments_stream +#: ../cache/locales.php:689 msgid "No comments stream" msgstr "" -#: [post]no_load +#: ../cache/locales.php:690 msgid "Your feed cannot be loaded." msgstr "" -#: [post]older +#: ../cache/locales.php:691 msgid "Get older posts" msgstr "" -#: [post]new_items +#: ../cache/locales.php:692 +#, php-format msgid "%s new items" msgstr "" -#: [post]comment_error +#: ../cache/locales.php:693 msgid "Comment publication error" msgstr "" -#: [post]comments_older +#: ../cache/locales.php:694 msgid "Show the older comments" msgstr "" -#: [post]comments_loading -msgid "Loading comments..." +#: ../cache/locales.php:695 +msgid "Loading comments ..." msgstr "" -#: [post]comments_get +#: ../cache/locales.php:696 msgid "Get the comments" msgstr "" -#: [post]comment_add +#: ../cache/locales.php:697 msgid "Add a comment" msgstr "" -#: [post]share +#: ../cache/locales.php:698 msgid "Share with" msgstr "" -#: [post]share_everyone +#: ../cache/locales.php:699 msgid "Everyone" msgstr "" -#: [post]share_your_contacts +#: ../cache/locales.php:700 msgid "Your contacts" msgstr "" -#: [post]updated +#: ../cache/locales.php:702 msgid "Updated" msgstr "" -#: [post]content_not_found +#: ../cache/locales.php:703 msgid "Content not found" msgstr "" -#: [post]default_title +#: ../cache/locales.php:704 msgid "Contact publication" msgstr "" -#: [post]comments +#: ../cache/locales.php:705 msgid "Comments" msgstr "" -#: [api]error +#: ../cache/locales.php:706 msgid "The API is not reachable, try again later" msgstr "" -#: [field]type_here +#: ../cache/locales.php:707 msgid "Type here" msgstr "" +#, php-format #~ msgid "%s - Account Creation" #~ msgstr "%s - Стварэнне логiна" diff --git a/sources/locales/bn.po b/sources/locales/bn.po index b34728b..beb719e 100644 --- a/sources/locales/bn.po +++ b/sources/locales/bn.po @@ -3,2700 +3,2584 @@ # This file is distributed under the same license as the movim package. # FIRST AUTHOR , 2013. # -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/About/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Account/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/AccountNext/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/AdHoc/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/AdminDB/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/AdminMain/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/AdminTest/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Api/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Avatar/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Blog/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Bookmark/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Chat/locales.ini -#. #-#-#-#-# 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 -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Group/locales.ini -#. #-#-#-#-# 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 -#. #-#-#-#-# 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 -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Presence/locales.ini -#. #-#-#-#-# 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 -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Share/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Statistics/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Subscribe/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Syndication/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Upload/locales.ini -#. #-#-#-#-# 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-08-20 15:17+0200\n" +"POT-Creation-Date: 2015-06-08 22:06+0200\n" "PO-Revision-Date: 2014-05-23 12:58+0000\n" "Last-Translator: Guruvai Oronno Bangalee \n" "Language-Team: Bengali \n" -"Language: bn\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2015-06-18 21:08+0000\n" "X-Generator: Launchpad (build 17570)\n" +"Language: bn\n" -#: [about]thanks +#: ../cache/locales.php:2 msgid "Thanks" msgstr "" -#: [about]developers +#: ../cache/locales.php:3 msgid "Developers" msgstr "" -#: [about]translators +#: ../cache/locales.php:4 msgid "Translators" msgstr "" -#: [about]software +#: ../cache/locales.php:5 msgid "Software" msgstr "" -#: [about]resources +#: ../cache/locales.php:6 msgid "Resources" msgstr "" -#: [about]api [schema]api [api]title +#: ../cache/locales.php:7 ../cache/locales.php:83 ../cache/locales.php:85 msgid "API" msgstr "" -#: [about]info -msgid "Movim is an XMPP-based communication platform. All the project, except the following software and resources, is under" +#: ../cache/locales.php:8 +msgid "" +"Movim is an XMPP-based communication platform. All the project, except the " +"following software and resources, is under" msgstr "" -#: [account]title +#: ../cache/locales.php:9 msgid "Account" msgstr "" -#: [account]password_change_title -msgid "Change my password" -msgstr "" - -#: [account]password [db]password [credentials]password [form]password -#: [input]password -msgid "Password" -msgstr "" - -#: [account]password_confirmation -msgid "Password confirmation" -msgstr "" - -#: [account]password_changed +#: ../cache/locales.php:10 msgid "The password has been updated" msgstr "" -#: [account]password_not_valid +#: ../cache/locales.php:11 msgid "Please provide a valid password (6 characters minimum)" msgstr "" -#: [account]password_not_same +#: ../cache/locales.php:12 msgid "The provided passwords are not the same" msgstr "" -#: [account]delete_title +#: ../cache/locales.php:13 msgid "Delete my account" msgstr "" -#: [account]delete -msgid "Delete your account" +#: ../cache/locales.php:14 +msgid "" +"You will delete your XMPP account and all the relative information linked to " +"it (profile, contacts and publications)." msgstr "" -#: [account]delete_text -msgid "You will delete your XMPP account and all the relative information linked to it (profile, contacts and publications)." -msgstr "" - -#: [account]delete_text_confirm +#: ../cache/locales.php:15 msgid "Are you sure that you want to delete it ?" msgstr "" -#: [account]gateway_title -msgid "Gateway" -msgstr "" - -#: [create]title [subscribe]title +#: ../cache/locales.php:16 ../cache/locales.php:411 msgid "Create a new account" msgstr "" -#: [create]notfound +#: ../cache/locales.php:17 msgid "No account creation form found on the server" msgstr "" -#: [create]server_on +#: ../cache/locales.php:18 ../cache/locales.php:172 msgid "on" msgstr "" -#: [create]successfull +#: ../cache/locales.php:19 msgid "Your acccount has been successfully registered" msgstr "" -#: [create]loading +#: ../cache/locales.php:20 msgid "Loading" msgstr "" -#: [error]not_acceptable +#: ../cache/locales.php:21 msgid "Not Acceptable" msgstr "" -#: [error]service_unavailable +#: ../cache/locales.php:22 msgid "The registration system of this server is currently unavailable" msgstr "" -#: [oob]about -msgid "This server use an external system for the registration, please click on the following URL." +#: ../cache/locales.php:23 +msgid "" +"This server use an external system for the registration, please click on the " +"following URL." msgstr "" -#: [adhoc]title +#: ../cache/locales.php:24 msgid "Actions" msgstr "" -#: [db]legend [schema]database +#: ../cache/locales.php:25 ../cache/locales.php:82 msgid "Database" msgstr "" -#: [db]connect_error +#: ../cache/locales.php:26 msgid "Modl wasn't able to connect to the database" msgstr "" -#: [db]connect_success +#: ../cache/locales.php:27 msgid "Movim is connected to the database" msgstr "" -#: [db]update +#: ../cache/locales.php:28 msgid "The database need to be updated" msgstr "" -#: [db]up_to_date +#: ../cache/locales.php:29 msgid "Movim database is up to date" msgstr "" -#: [db]type +#: ../cache/locales.php:30 msgid "Database Type" msgstr "" -#: [db]username [credentials]username [input]username +#: ../cache/locales.php:31 ../cache/locales.php:50 ../cache/locales.php:540 msgid "Username" msgstr "" -#: [db]host +#: ../cache/locales.php:32 ../cache/locales.php:51 ../cache/locales.php:282 +#: ../cache/locales.php:541 +msgid "Password" +msgstr "" + +#: ../cache/locales.php:33 msgid "Host" msgstr "" -#: [db]port +#: ../cache/locales.php:34 msgid "Port" msgstr "" -#: [db]name -msgid "Database sName" +#: ../cache/locales.php:35 +msgid "Database Name" msgstr "" -#: [admin]general +#: ../cache/locales.php:36 msgid "General Settings" msgstr "" -#: [general]theme +#: ../cache/locales.php:37 msgid "Theme" msgstr "" -#: [general]language +#: ../cache/locales.php:38 msgid "Default language" msgstr "" -#: [general]log_verbosity +#: ../cache/locales.php:39 +msgid "Environment" +msgstr "" + +#: ../cache/locales.php:40 msgid "Log verbosity" msgstr "" -#: [general]timezone +#: ../cache/locales.php:41 msgid "Server Timezone" msgstr "" -#: [general]limit +#: ../cache/locales.php:42 msgid "User folder size limit (in bytes)" msgstr "" -#: [websocket]title +#: ../cache/locales.php:43 msgid "WebSocket Configuration" msgstr "" -#: [websocket]info +#: ../cache/locales.php:44 msgid "Enter here a valid WebSocket URI in the form" msgstr "" -#: [websocket]label +#: ../cache/locales.php:45 msgid "WebSocket URI" msgstr "" -#: [websocket]save_info -msgid "If you change the URI, please restart the daemon to reload the configuration" +#: ../cache/locales.php:46 +msgid "" +"If you change the URI, please restart the daemon to reload the configuration" msgstr "" -#: [websocket]publics +#: ../cache/locales.php:47 msgid "Public WebSockets" msgstr "" -#: [credentials]title +#: ../cache/locales.php:48 msgid "Administration Credential" msgstr "" -#: [credentials]info +#: ../cache/locales.php:49 msgid "Change the default credentials admin/password" msgstr "" -#: [credentials]re_password +#: ../cache/locales.php:52 msgid "Retype password" msgstr "" -#: [whitelist]title +#: ../cache/locales.php:53 msgid "Whitelist - XMPP Server" msgstr "" -#: [whitelist]info1 -msgid "If you want to specify a list of authorized XMPP servers on your Movim pod and forbid the connection on all the others please put their domain name here, with comma (ex: movim.eu,jabber.fr)" +#: ../cache/locales.php:54 +msgid "" +"If you want to specify a list of authorized XMPP servers on your Movim pod " +"and forbid the connection on all the others please put their domain name " +"here, with comma (ex: movim.eu,jabber.fr)" msgstr "" -#: [whitelist]info2 -msgid "Leave this field blank if you allow the access to all the XMPP accounts." +#: ../cache/locales.php:55 +msgid "" +"Leave this field blank if you allow the access to all the XMPP accounts." msgstr "" -#: [whitelist]label +#: ../cache/locales.php:56 msgid "List of whitelisted XMPP servers" msgstr "" -#: [information]title -msgctxt "[information]title" +#: ../cache/locales.php:57 ../cache/locales.php:61 msgid "Information Message" msgstr "" -#: [information]description +#: ../cache/locales.php:58 msgid "Description" msgstr "" -#: [information]info1 +#: ../cache/locales.php:59 msgid "This message will be displayed on the login page" msgstr "" -#: [information]info2 -msgid "Leave this field blank if you dont want to show any message." +#: ../cache/locales.php:60 +msgid "Leave this field blank if you don't want to show any message." msgstr "" -#: [information]label -msgctxt "[information]label" -msgid "Information Message" -msgstr "" - -#: [log]empty +#: ../cache/locales.php:62 msgid "Empty" msgstr "" -#: [log]syslog +#: ../cache/locales.php:63 msgid "Syslog" msgstr "" -#: [log]syslog_files +#: ../cache/locales.php:64 msgid "Syslog and files" msgstr "" -#: [rewrite]title +#: ../cache/locales.php:65 msgid "URL Rewriting" msgstr "" -#: [rewrite]info +#: ../cache/locales.php:66 msgid "The URL Rewriting can be enabled" msgstr "" -#: [admin]compatibility +#: ../cache/locales.php:67 msgid "General Overview" msgstr "" -#: [compatibility]info -msgid "Movim has found some issues or things that need to be fixed or improved" +#: ../cache/locales.php:68 +msgid "" +"Movim has found some issues or things that need to be fixed or improved" msgstr "" -#: [compatibility]php1 +#: ../cache/locales.php:69 +#, php-format msgid "Update your PHP-Version: %s" msgstr "" -#: [compatibility]php2 +#: ../cache/locales.php:70 msgid "Required: 5.3.0" msgstr "" -#: [compatibility]curl +#: ../cache/locales.php:71 msgid "Install the php5-curl library" msgstr "" -#: [compatibility]imagick +#: ../cache/locales.php:72 msgid "Install the php5-imagick library" msgstr "" -#: [compatibility]gd +#: ../cache/locales.php:73 msgid "Install the php5-gd library" msgstr "" -#: [compatibility]rights -msgid "Read and write rights for the webserver in Movims root directory" +#: ../cache/locales.php:74 +msgid "Read and write rights for the webserver in Movim's root directory" msgstr "" -#: [compatibility]rewrite +#: ../cache/locales.php:75 msgid "The URL Rewriting support is currently disabled" msgstr "" -#: [compatibility]db +#: ../cache/locales.php:76 msgid "The database need to be updated, go to the database panel to fix this" msgstr "" -#: [compatibility]websocket -msgid "WebSocket connection error, check if the Movim Daemon is running and is reachable" +#: ../cache/locales.php:77 +msgid "" +"WebSocket connection error, check if the Movim Daemon is running and is " +"reacheable" msgstr "" -#: [compatibility]xmpp_websocket -msgid "XMPP Websocket connection error, please check the validity of the URL given in the General Configuration" +#: ../cache/locales.php:78 +msgid "" +"XMPP Websocket connection error, please check the validity of the URL given " +"in the General Configuration" msgstr "" -#: [schema]browser +#: ../cache/locales.php:79 msgid "Browser" msgstr "" -#: [schema]movim +#: ../cache/locales.php:80 msgid "Movim Core" msgstr "" -#: [schema]daemon +#: ../cache/locales.php:81 msgid "Movim Daemon" msgstr "" -#: [schema]xmpp +#: ../cache/locales.php:84 msgid "XMPP" msgstr "" -#: [api]info -msgid "Here you can register your pod on the official %sMovim API%s and be listed on %sthe pods page%s." +#: ../cache/locales.php:86 +#, php-format +msgid "" +"Here you can register your pod on the official %sMovim API%s and be listed " +"on %sthe pods page%s." msgstr "" -#: [api]register +#: ../cache/locales.php:87 msgid "Your pod is not registered on the API" msgstr "" -#: [api]registered +#: ../cache/locales.php:88 msgid "Your pod is registered on the API" msgstr "" -#: [api]wait +#: ../cache/locales.php:89 msgid "Your pod is not yet validated" msgstr "" -#: [api]validated +#: ../cache/locales.php:90 msgid "Your pod is validated" msgstr "" -#: [api]unregister -msgid "You asked to be removed from the API, this request will be processed in a couple of hours" +#: ../cache/locales.php:91 +msgid "" +"You asked to be removed from the API, this request will be processed in a " +"couple of hours" msgstr "" -#: [api]conf_updated [config]updated +#: ../cache/locales.php:92 ../cache/locales.php:147 msgid "Configuration updated" msgstr "" -#: [avatar]file +#: ../cache/locales.php:93 msgid "File" msgstr "" -#: [avatar]use_it +#: ../cache/locales.php:94 msgid "Use it" msgstr "" -#: [avatar]webcam +#: ../cache/locales.php:95 msgid "Webcam" msgstr "" -#: [avatar]cheese +#: ../cache/locales.php:96 msgid "Cheese !" msgstr "" -#: [avatar]snapshot +#: ../cache/locales.php:97 msgid "Take a webcam snapshot" msgstr "" -#: [avatar]updated +#: ../cache/locales.php:98 msgid "Avatar Updated" msgstr "" -#: [avatar]not_updated +#: ../cache/locales.php:99 msgid "Avatar Not Updated" msgstr "" -#: [blog]title [feed]title +#: ../cache/locales.php:100 ../cache/locales.php:415 +#, php-format msgid "%s's feed" msgstr "" -#: [blog]empty +#: ../cache/locales.php:101 msgid "This user has not posted anything right now" msgstr "" -#: [title]conferences +#: ../cache/locales.php:102 msgid "Conferences" msgstr "" -#: [title]groups [group]empty_title [menu]groups [page]groups +#: ../cache/locales.php:103 ../cache/locales.php:193 ../cache/locales.php:217 +#: ../cache/locales.php:468 msgid "Groups" msgstr "" -#: [chatroom]add +#: ../cache/locales.php:104 msgid "Add a new Chat Room" msgstr "" -#: [chatroom]id [chatrooms]id +#: ../cache/locales.php:105 ../cache/locales.php:368 msgid "Chat Room ID" msgstr "" -#: [chatroom]name -msgctxt "[chatroom]name" +#: ../cache/locales.php:106 ../cache/locales.php:116 ../cache/locales.php:156 +#: ../cache/locales.php:361 ../cache/locales.php:369 ../cache/locales.php:424 msgid "Name" msgstr "" -#: [chatroom]nickname [general]nickname [chatrooms]nickname +#: ../cache/locales.php:107 ../cache/locales.php:157 ../cache/locales.php:371 +#: ../cache/locales.php:425 msgid "Nickname" msgstr "" -#: [chatroom]autojoin_label +#: ../cache/locales.php:108 msgid "Do you want do join automaticaly this Chat Room ?" msgstr "" -#: [chatroom]bad_id [chatrooms]bad_id +#: ../cache/locales.php:109 ../cache/locales.php:372 msgid "Bad Chatroom ID" msgstr "" -#: [chatroom]empty_name [chatrooms]empty_name +#: ../cache/locales.php:110 ../cache/locales.php:373 msgid "Empty name" msgstr "" -#: [bookmarks]updated +#: ../cache/locales.php:111 ../cache/locales.php:380 msgid "Bookmarks updated" msgstr "" -#: [bookmarks]error -msgid "An error occured :" +#: ../cache/locales.php:112 +msgid "An error occured : " msgstr "" -#: [bookmarks]configure +#: ../cache/locales.php:113 msgid "Configure" msgstr "" -#: [url]add +#: ../cache/locales.php:114 msgid "Add a new URL" msgstr "" -#: [url]url +#: ../cache/locales.php:115 msgid "URL" msgstr "" -#: [url]name -msgctxt "[url]name" -msgid "Name" -msgstr "" - -#: [message]published +#: ../cache/locales.php:117 msgid "Message Published" msgstr "" -#: [message]encrypted +#: ../cache/locales.php:118 ../cache/locales.php:138 msgid "Encrypted message" msgstr "" -#: [message]composing [chats]composing +#: ../cache/locales.php:119 msgid "Composing..." msgstr "" -#: [message]paused [chats]paused +#: ../cache/locales.php:120 msgid "Paused..." msgstr "" -#: [message]gone +#: ../cache/locales.php:121 msgid "Contact gone" msgstr "" -#: [chat]attention +#: ../cache/locales.php:122 +#, php-format msgid "%s needs your attention" msgstr "" -#: [chat]placeholder +#: ../cache/locales.php:123 msgid "Your message here..." msgstr "" -#: [chat]smileys +#: ../cache/locales.php:124 msgid "Smileys" msgstr "" -#: [chat]empty_title [button]chat +#: ../cache/locales.php:125 ../cache/locales.php:139 msgid "Chat" msgstr "" -#: [chat]empty_text +#: ../cache/locales.php:126 msgid "Discuss with your contacts" msgstr "" -#: [chat]frequent [chats]frequent -msgid "Frequent contacts" -msgstr "" - -#: [chatroom]members +#: ../cache/locales.php:127 msgid "Members" msgstr "" -#: [chatroom]connected [chatrooms]connected +#: ../cache/locales.php:128 ../cache/locales.php:376 msgid "Connected to the chatroom" msgstr "" -#: [chatroom]disconnected [chatrooms]disconnected +#: ../cache/locales.php:129 ../cache/locales.php:377 msgid "Disconnected from the chatroom" msgstr "" -#: [chatroom]config [group]configuration [page]configuration +#: ../cache/locales.php:130 ../cache/locales.php:200 ../cache/locales.php:469 msgid "Configuration" msgstr "" -#: [chatroom]config_saved +#: ../cache/locales.php:131 msgid "Configuration saved" msgstr "" -#: [chatroom]subject +#: ../cache/locales.php:132 msgid "Subject" msgstr "" -#: [chatroom]subject_changed +#: ../cache/locales.php:133 msgid "Subject changed" msgstr "" -#: [chats]empty_title -msgid "No chats yet..." +#: ../cache/locales.php:134 +msgid "Open a new conversation by clicking on the plus button bellow" msgstr "" -#: [chats]empty -msgid "Open a new conversation by clicking on the plus button bellow or visit the Contacts page." -msgstr "" - -#: [chats]add +#: ../cache/locales.php:135 msgid "Chat with a contact" msgstr "" -#: [chats]more +#: ../cache/locales.php:136 +msgid "Frequent contacts" +msgstr "" + +#: ../cache/locales.php:137 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 "" - -#: [config]general +#: ../cache/locales.php:140 msgid "General" msgstr "" -#: [config]language +#: ../cache/locales.php:141 msgid "Language" msgstr "" -#: [config]roster +#: ../cache/locales.php:142 msgid "Roster display" msgstr "" -#: [config]roster_show +#: ../cache/locales.php:143 msgid "Show the offline contacts" msgstr "" -#: [config]roster_hide +#: ../cache/locales.php:144 msgid "Hide the offline contacts" msgstr "" -#: [config]appearence +#: ../cache/locales.php:145 msgid "Appearence" msgstr "" -#: [config]info -msgid "This configuration is shared wherever you are connected" +#: ../cache/locales.php:146 +msgid "This configuration is shared wherever you are connected !" msgstr "" -#: [notifications]message +#: ../cache/locales.php:148 msgid "Notify on incoming message" msgstr "" -#: [notifications]desktop +#: ../cache/locales.php:149 msgid "Use desktop notifications" msgstr "" -#: [general]legend [general]general_title +#: ../cache/locales.php:150 +msgid "Data" +msgstr "" + +#: ../cache/locales.php:151 +msgid "Cache" +msgstr "" + +#: ../cache/locales.php:152 ../cache/locales.php:218 ../cache/locales.php:466 +msgid "Contacts" +msgstr "" + +#: ../cache/locales.php:153 ../cache/locales.php:480 +msgid "Posts" +msgstr "" + +#: ../cache/locales.php:154 +msgid "Messages" +msgstr "" + +#: ../cache/locales.php:155 ../cache/locales.php:423 msgid "General Informations" msgstr "" -#: [general]name [public_groups]name [chatrooms]name -msgid "Name" -msgstr "" - -#: [general]date_of_birth +#: ../cache/locales.php:158 ../cache/locales.php:427 msgid "Date of Birth" msgstr "" -#: [general]gender +#: ../cache/locales.php:159 ../cache/locales.php:428 msgid "Gender" msgstr "" -#: [general]marital +#: ../cache/locales.php:160 ../cache/locales.php:429 msgid "Marital Status" msgstr "" -#: [general]email +#: ../cache/locales.php:161 ../cache/locales.php:426 msgid "Email" msgstr "" -#: [general]website +#: ../cache/locales.php:162 ../cache/locales.php:430 msgid "Website" msgstr "" -#: [general]about +#: ../cache/locales.php:163 ../cache/locales.php:431 msgid "About Me" msgstr "" -#: [general]accounts +#: ../cache/locales.php:164 msgid "Other Accounts" msgstr "" -#: [general]tune +#: ../cache/locales.php:165 msgid "Is Listening" msgstr "" -#: [position]legend [position]position_title +#: ../cache/locales.php:166 ../cache/locales.php:432 msgid "Geographic Position" msgstr "" -#: [position]locality +#: ../cache/locales.php:167 ../cache/locales.php:433 msgid "Locality" msgstr "" -#: [position]country +#: ../cache/locales.php:168 ../cache/locales.php:434 msgid "Country" msgstr "" -#: [mood]title +#: ../cache/locales.php:169 msgid "Mood" msgstr "" -#: [mood]im +#: ../cache/locales.php:170 msgid "I'm " msgstr "" -#: [listen]title +#: ../cache/locales.php:171 msgid "Listening" msgstr "" -#: [last]title +#: ../cache/locales.php:173 msgid "Last seen" msgstr "" -#: [client]title +#: ../cache/locales.php:174 msgid "Client Informations" msgstr "" -#: [explore]last_registered +#: ../cache/locales.php:175 msgid "Last registered" msgstr "" -#: [explore]explore +#: ../cache/locales.php:176 msgid "Find some new friends" msgstr "" -#: [edit]title [button]edit +#: ../cache/locales.php:177 ../cache/locales.php:533 msgid "Edit" msgstr "" -#: [edit]alias +#: ../cache/locales.php:178 msgid "Alias" msgstr "" -#: [edit]group +#: ../cache/locales.php:179 msgid "Group" msgstr "" -#: [edit]updated [roster]updated +#: ../cache/locales.php:180 ../cache/locales.php:400 msgid "Contact updated" msgstr "" -#: [delete]title +#: ../cache/locales.php:181 msgid "Are you sure?" msgstr "" -#: [delete]text -msgid "You are going to delete one of your contacts, please confirm your action" +#: ../cache/locales.php:182 +msgid "" +"You are going to delete one of your contacts, please confirm your action" msgstr "" -#: [age]years +#: ../cache/locales.php:183 +#, php-format msgid "%s years" msgstr "" -#: [blog]last +#: ../cache/locales.php:184 msgid "Last public post" msgstr "" -#: [subscription]to -msgid "You can see this contact status" -msgstr "" - -#: [subscription]to_button -msgid "Share my status" -msgstr "" - -#: [subscription]to_text -msgid "But this contact cannot see yours" -msgstr "" - -#: [subscription]from -msgid "You are not subscribed to this contact" -msgstr "" - -#: [subscription]from_button -msgid "Ask to subscribe" -msgstr "" - -#: [subscription]from_text -msgid "But this contact can still see if you are online" -msgstr "" - -#: [subscription]nil -msgid "No subscriptions" -msgstr "" - -#: [subscription]nil_button -msgid "Invite" -msgstr "" - -#: [subscription]nil_text -msgid "This contact is in your contact list but there is no subscriptions between the two accounts" -msgstr "" - -#: [group]subscribe +#: ../cache/locales.php:185 msgid "Subscribe" msgstr "" -#: [group]subscribed +#: ../cache/locales.php:186 msgid "Subscribed" msgstr "" -#: [group]unsubscribe +#: ../cache/locales.php:187 msgid "Unsubscribe" msgstr "" -#: [group]unsubscribe_text +#: ../cache/locales.php:188 msgid "You are going to unsubscribe from this Group" msgstr "" -#: [group]unsubscribed +#: ../cache/locales.php:189 msgid "Unsubscribed" msgstr "" -#: [group]share_label +#: ../cache/locales.php:190 msgid "Make your membership to this group public to your friends" msgstr "" -#: [group]label_label +#: ../cache/locales.php:191 msgid "Give a label for this group" msgstr "" -#: [group]sure +#: ../cache/locales.php:192 msgid "Are you sure ?" msgstr "" -#: [group]empty_text +#: ../cache/locales.php:194 msgid "Discover, follow and share" msgstr "" -#: [group]empty +#: ../cache/locales.php:195 msgid "Something bad happened to this group" msgstr "" -#: [group]config_saved +#: ../cache/locales.php:196 msgid "Group configuration saved" msgstr "" -#: [group]delete_title +#: ../cache/locales.php:197 msgid "Delete the group" msgstr "" -#: [group]delete_text -msgid "You are going to delete the following group. Please confirm your action." +#: ../cache/locales.php:198 +msgid "" +"You are going to delete the following group. Please confirm your action." msgstr "" -#: [group]delete_clean_text -msgid "It seems that this group doesn't exists anymore. Do you want to remove it from your subscriptions?" +#: ../cache/locales.php:199 +msgid "" +"It seems that this group doesn't exists anymore. Do you want to remove it " +"from your subscriptions?" msgstr "" -#: [group]counter -msgid "%s groups on this server" -msgstr "" - -#: [group]subscriptions [statistics]subscriptions +#: ../cache/locales.php:201 ../cache/locales.php:408 msgid "Subscriptions" msgstr "" -#: [group]servers -msgid "Groups servers" -msgstr "" - -#: [group]search_server -msgid "Search for a new server" -msgstr "" - -#: [group]help_info1 -msgid "Groups are the perfect way to share posts about topics that you like with all the other Movim's users." -msgstr "" - -#: [group]help_info2 -msgid "Choose a server and a Group and subscribe to it using the %s button in the header. You can also create a new one using the %s button." -msgstr "" - -#: [group]help_info3 -msgid "Done? You can now publish a new post in the Group by using the %s button." -msgstr "" - -#: [group]help_info4 -msgid "You will find a list of all your subscribed Groups in My Subscriptions and receive instantly all the new incoming posts in the %sNews%s page." -msgstr "" - -#: [groups]empty_title +#: ../cache/locales.php:202 ../cache/locales.php:290 msgid "Hello" msgstr "" -#: [groups]contact_post [hello]contact_post [menu]contact_post +#: ../cache/locales.php:203 ../cache/locales.php:225 ../cache/locales.php:291 msgid "Contact post" msgstr "" -#: [groups]empty_text1 -msgid "You don't have any subscriptions yet, select a group server above to start exploring." +#: ../cache/locales.php:204 +msgid "" +"You don't have any subscriptions yet, select a group server above to start " +"exploring." msgstr "" -#: [groups]empty_text2 +#: ../cache/locales.php:205 msgid "Subscribe to your favorite feeds by bookmarking them." msgstr "" -#: [groups]subscriptions +#: ../cache/locales.php:206 msgid "My Subscriptions" msgstr "" -#: [groups]add +#: ../cache/locales.php:207 msgid "Create a new Group" msgstr "" -#: [groups]name +#: ../cache/locales.php:208 msgid "Group name" msgstr "" -#: [groups]name_example +#: ../cache/locales.php:209 msgid "My Little Pony - Fan Club" msgstr "" -#: [groups]created +#: ../cache/locales.php:210 msgid "Group created successfully" msgstr "" -#: [groups]deleted +#: ../cache/locales.php:211 msgid "Group deleted successfully" msgstr "" -#: [groups]name_error +#: ../cache/locales.php:212 msgid "Please provide a valid group name (4 characters minimum)" msgstr "" -#: [groups]no_creation +#: ../cache/locales.php:213 msgid "You cannot create a new Group on this server" msgstr "" -#: [groups]sub +#: ../cache/locales.php:214 +#, php-format msgid "%s subscribers" msgstr "" -#: [groups]num +#: ../cache/locales.php:215 +#, php-format msgid "%s posts" msgstr "" -#: [groups]disco_error -msgid "This server doesn't exists" -msgstr "" - -#: [menu]all +#: ../cache/locales.php:216 msgid "All" msgstr "" -#: [menu]refresh +#: ../cache/locales.php:219 msgid "Refresh all the streams" msgstr "" -#: [roster]search -msgid "Search in your contacts" -msgstr "" - -#: [hello]active_contacts -msgid "Active contacts" -msgstr "" - -#: [hello]chat -msgid "Go on the Chat page" -msgstr "" - -#: [hello]news [page]news -msgid "News" -msgstr "" - -#: [hello]news_page -msgid "Read all theses articles on the News page" -msgstr "" - -#: [hello]blog_title -msgid "Visit your public blog" -msgstr "" - -#: [hello]blog_text -msgid "See your public posts and share them with all your contacts" -msgstr "" - -#: [hello]share_title -msgid "Universal share button" -msgstr "" - -#: [hello]share_text -msgid "Bookmark or drag and drop the following button in your toolbar and use it on all the pages you want to share on Movim" -msgstr "" - -#: [hello]share_button -msgid "Share on Movim" -msgstr "" - -#: [help]faq -msgid "Frequently Asked Questions" -msgstr "" - -#: [banner]title -msgid "What do the little banners refer to ?" -msgstr "" - -#: [banner]info1 -msgid "Thanks to these five little banners, you can quickly identitfy the level of confdentiality applied to the information you provide." -msgstr "" - -#: [banner]white -msgid "White, only you can see the information" -msgstr "" - -#: [banner]green -msgid "Green, you have chosen some contacts who can see your information" -msgstr "" - -#: [banner]orange -msgid "Orange, all your contact list can see your information" -msgstr "" - -#: [banner]red -msgid "Red, everybody in the XMPP network can see your information" -msgstr "" - -#: [banner]black -msgid "Black, the whole Internet can see your information" -msgstr "" - -#: [wiki]question -msgid "Looking for some documentation ?" -msgstr "" - -#: [wiki]button -msgid "Read the Wiki" -msgstr "" - -#: [ml]question -msgid "Talk with us by email ?" -msgstr "" - -#: [ml]button -msgid "Join the Mailing List" -msgstr "" - -#: [chatroom]question -msgid "Chat with the team ?" -msgstr "" - -#: [chatroom]button -msgid "Join the Chatroom" -msgstr "" - -#: [init]location -msgid "Location node created" -msgstr "" - -#: [init]bookmark -msgid "Bookmark node created" -msgstr "" - -#: [init]vcard4 -msgid "Profile node created" -msgstr "" - -#: [init]avatar -msgid "Avatar node created" -msgstr "" - -#: [init]subscriptions -msgid "Subscriptions node created" -msgstr "" - -#: [init]microblog -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 "" - -#: [error]jid -msgid "Invalid JID" -msgstr "" - -#: [error]empty_challenge -msgid "Empty Challenge from the server" -msgstr "" - -#: [error]dns -msgid "XMPP Domain error, your account is not a correct Jabber ID" -msgstr "" - -#: [error]data_missings -msgid "Some data are missing !" -msgstr "" - -#: [error]wrong_password -msgid "Wrong password" -msgstr "" - -#: [error]internal -msgid "Internal server error" -msgstr "" - -#: [error]session -msgid "Session error" -msgstr "" - -#: [error]account_created -msgid "Account successfully created" -msgstr "" - -#: [error]xmpp_unauthorized -msgctxt "[error]xmpp_unauthorized" -msgid "Your XMPP server is unauthorized" -msgstr "" - -#: [error]mec_error -msgid "The server takes too much time to respond" -msgstr "" - -#: [error]too_old -msgid "Your web browser is too old to use with Movim." -msgstr "" - -#: [error]websocket -msgid "Movim cannot talk with the server, please try again later (Websocket connection error)" -msgstr "" - -#: [error]impossible -msgid "Impossible login" -msgstr "" - -#: [error]title -msgid "Oops!" -msgstr "" - -#: [error]default [visio]unknown_error -msgid "Unknown error" -msgstr "" - -#: [error]login_format -msgid "Invalid username format" -msgstr "" - -#: [error]password_format -msgid "Invalid password format" -msgstr "" - -#: [error]unauthorized -msgctxt "[error]unauthorized" -msgid "Your XMPP server is unauthorized" -msgstr "" - -#: [error]conflict -msgid "A Movim session is already open on an other device" -msgstr "" - -#: [error]wrong_account -msgid "Movim failed to authenticate. You entered wrong data" -msgstr "" - -#: [error]mechanism -msgid "Authentication mechanism not supported by Movim" -msgstr "" - -#: [error]fail_auth -msgid "The XMPP authentification failed" -msgstr "" - -#: [account]title [accounts]accounts_title -msgid "Accounts" -msgstr "" - -#: [form]username -msgid "My address" -msgstr "" - -#: [form]create_one -msgid "Create one !" -msgstr "" - -#: [form]another_account -msgid "Another account" -msgstr "" - -#: [form]no_account -msgid "No account yet ?" -msgstr "" - -#: [form]whitelist.info -msgid "You can login with accounts from theses servers" -msgstr "" - -#: [form]connected -msgid "Connected" -msgstr "" - -#: [form]population -msgid "Population" -msgstr "" - -#: [menu]empty_title -msgid "No news yet..." -msgstr "" - -#: [menu]empty -msgid "Welcome on your news feed, here you will see all the posts published by your contacts and in the groups you have subscribed." -msgstr "" - -#: [menu]refresh -msgid "Refreshing all the streams" -msgstr "" - -#: [menu]public -msgid "This post is public" -msgstr "" - -#: [affiliations]title -msgid "Manage your members" -msgstr "" - -#: [affiliations]get -msgid "Get the members" -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 "" - -#: [notifs]title -msgid "Pending Invitations" -msgstr "" - -#: [notifs]wants_to_talk -msgid "%s wants to talk with you" -msgstr "" - -#: [notifs]manage -msgid "Manage" -msgstr "" - -#: [post]news_feed -msgid "News Feed" -msgstr "" - -#: [post]placeholder -msgid "Discover and register to the groups you are interested in" -msgstr "" - -#: [post]preview [page]preview -msgid "Preview" -msgstr "" - -#: [post]help [page]help -msgid "Help" -msgstr "" - -#: [post]help_more -msgid "More help" -msgstr "" - -#: [post]help_manual -msgid "Markdown syntax manual" -msgstr "" - -#: [post]title -msgid "Title" -msgstr "" - -#: [post]content -msgid "Content" -msgstr "" - -#: [post]link -msgid "Link" -msgstr "" - -#: [post]tags -msgid "Tags" -msgstr "" - -#: [post]valid_url [publish]valid_url -msgid "Please enter a valid url" -msgstr "" - -#: [post]no_content_preview [publish]no_content_preview -msgid "No content to preview" -msgstr "" - -#: [post]no_content [publish]no_content [post]empty -msgid "No content" -msgstr "" - -#: [post]published -msgid "Post published" -msgstr "" - -#: [post]deleted -msgid "Post deleted" -msgstr "" - -#: [post]gallery -msgid "This picture will be added to your gallery" -msgstr "" - -#: [post]hot -msgid "What's Hot" -msgstr "" - -#: [post]hot_text -msgid "Posts recently published in Groups that you are not subscribed (yet)" -msgstr "" - -#: [post]new [publish]new -msgid "New post" -msgstr "" - -#: [post]embed_tip -msgid "You can also use services like Imgur or Flickr to host your picture and paste the link here." -msgstr "" - -#: [post]repost -msgid "This is a re-post from %s" -msgstr "" - -#: [post]repost_profile -msgid "See %s profile" -msgstr "" - -#: [post]public -msgid "Publish this post publicly?" -msgstr "" - -#: [post]blog_add -msgid "Post published on your blog" -msgstr "" - -#: [post]blog_remove -msgid "Post removed from your blog" -msgstr "" - -#: [post]delete_title [post]delete -msgid "Delete this post" -msgstr "" - -#: [post]delete_text -msgid "You are going to delete this post, please confirm your action" -msgstr "" - -#: [post]comments_disabled -msgid "Comments disabled" -msgstr "" - -#: [post]comment_published -msgid "Comment published" -msgstr "" - -#: [status]disconnect -msgid "Disconnect" -msgstr "" - -#: [status]here -msgid "Your status here !" -msgstr "" - -#: [status]updated -msgid "Status updated" -msgstr "" - -#: [status]status -msgid "Status" -msgstr "" - -#: [status]presence -msgid "Presence" -msgstr "" - -#: [status]online -msgid "Online with Movim" -msgstr "" - -#: [publish]title -msgid "Publish" -msgstr "" - -#: [publish]attach -msgid "Add a file or a picture to your post" -msgstr "" - -#: [publish]no_publication -msgid "You cannot publish a post on this Group" -msgstr "" - -#: [publish]form_filled -msgid "Some fields have been filled in. Do you still want to go back and loose their content?" -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 "" - -#: [rooms]empty_text1 -msgid "You don't have any chatroom yet." -msgstr "" - -#: [rooms]empty_text2 -msgid "Add one by clicking on the add button in the header." -msgstr "" - -#: [chatrooms]title -msgid "Chatrooms" -msgstr "" - -#: [chatrooms]name_placeholder -msgid "My Favorite Room" -msgstr "" - -#: [chatrooms]users -msgid "Users in the room" -msgstr "" - -#: [chatrooms]bad_nickname -msgid "Please enter a correct nickname (2 to 40 characters)" -msgstr "" - -#: [room]anonymous_title -msgid "Public chatroom" -msgstr "" - -#: [room]no_room -msgid "Please provide a room address" -msgstr "" - -#: [room]anonymous_text1 -msgid "You are currently logued as an anonymous user." -msgstr "" - -#: [room]anonymous_text2 -msgid "You can join using your own account or create one on the login page by loging out using the cross in the top-right corner." -msgstr "" - -#: [room]anonymous_login -msgid "Login on %s" -msgstr "" - -#: [room]nick -msgid "Your nickname" -msgstr "" - -#: [roster]ungrouped -msgid "Ungrouped" -msgstr "" - -#: [roster]show_disconnected -msgid "Show disconnected contacts" -msgstr "" - -#: [roster]hide_disconnected -msgid "Hide disconnected contacts" -msgstr "" - -#: [roster]show_group -msgid "Show group %s" -msgstr "" - -#: [roster]hide_group -msgid "Hide group %s" -msgstr "" - -#: [roster]jid_error -msgid "Please enter a valid Jabber ID" -msgstr "" - -#: [roster]no_contacts_title -msgid "No contacts ?" -msgstr "" - -#: [roster]no_contacts_text -msgid "You can add one using the + button bellow" -msgstr "" - -#: [roster]show_hide -msgid "Show/Hide" -msgstr "" - -#: [roster]add_contact_info1 -msgid "Enter the Jabber ID of your contact." -msgstr "" - -#: [roster]add_contact_info2 -msgid "Press enter to validate." -msgstr "" - -#: [roster]jid -msgid "JID" -msgstr "" - -#: [roster]results -msgid "Results" -msgstr "" - -#: [roster]added -msgid "Contact added" -msgstr "" - -#: [roster]deleted -msgid "Contact deleted" -msgstr "" - -#: [roster]search +#: ../cache/locales.php:220 ../cache/locales.php:402 msgid "Search" msgstr "" -#: [share]error +#: ../cache/locales.php:221 +msgid "Go on the Chat page" +msgstr "" + +#: ../cache/locales.php:222 +msgid "Read all theses articles on the News page" +msgstr "" + +#: ../cache/locales.php:223 +msgid "Visit your public blog" +msgstr "" + +#: ../cache/locales.php:224 +msgid "See your public posts and share them with all your contacts" +msgstr "" + +#: ../cache/locales.php:226 +msgid "Universal share button" +msgstr "" + +#: ../cache/locales.php:227 +msgid "" +"Bookmark or drag and drop the following button in your toolbar and use it on " +"all the pages you want to share on Movim" +msgstr "" + +#: ../cache/locales.php:228 +msgid "Share on Movim" +msgstr "" + +#: ../cache/locales.php:229 +msgid "Frequently Asked Questions" +msgstr "" + +#: ../cache/locales.php:230 +msgid "What do the little banners refer to ?" +msgstr "" + +#: ../cache/locales.php:231 +msgid "" +"Thanks to these five little banners, you can quickly identitfy the level of " +"confdentiality applied to the information you provide." +msgstr "" + +#: ../cache/locales.php:232 +msgid "White, only you can see the information" +msgstr "" + +#: ../cache/locales.php:233 +msgid "Green, you have chosen some contacts who can see your information" +msgstr "" + +#: ../cache/locales.php:234 +msgid "Orange, all your contact list can see your information" +msgstr "" + +#: ../cache/locales.php:235 +msgid "Red, everybody in the XMPP network can see your information" +msgstr "" + +#: ../cache/locales.php:236 +msgid "Black, the whole Internet can see your information" +msgstr "" + +#: ../cache/locales.php:237 +msgid "Looking for some documentation ?" +msgstr "" + +#: ../cache/locales.php:238 +msgid "Read the Wiki" +msgstr "" + +#: ../cache/locales.php:239 +msgid "Talk with us by email ?" +msgstr "" + +#: ../cache/locales.php:240 +msgid "Join the Mailing List" +msgstr "" + +#: ../cache/locales.php:241 +msgid "Chat with the team ?" +msgstr "" + +#: ../cache/locales.php:242 +msgid "Join the Chatroom" +msgstr "" + +#: ../cache/locales.php:243 +msgid "Location node created" +msgstr "" + +#: ../cache/locales.php:244 +msgid "Bookmark node created" +msgstr "" + +#: ../cache/locales.php:245 +msgid "Profile node created" +msgstr "" + +#: ../cache/locales.php:246 +msgid "Avatar node created" +msgstr "" + +#: ../cache/locales.php:247 +msgid "Subscriptions node created" +msgstr "" + +#: ../cache/locales.php:248 +msgid "Microblog node created" +msgstr "" + +#: ../cache/locales.php:249 +msgid "Location" +msgstr "" + +#: ../cache/locales.php:250 +msgid "Wrong position" +msgstr "" + +#: ../cache/locales.php:251 +msgid "Location updated" +msgstr "" + +#: ../cache/locales.php:252 +msgid "Update my position" +msgstr "" + +#: ../cache/locales.php:253 +msgid "Wrong username" +msgstr "" + +#: ../cache/locales.php:254 +msgid "Invalid JID" +msgstr "" + +#: ../cache/locales.php:255 +msgid "Empty Challenge from the server" +msgstr "" + +#: ../cache/locales.php:256 +msgid "XMPP Domain error, your account is not a correct Jabber ID" +msgstr "" + +#: ../cache/locales.php:257 +msgid "Some data are missing !" +msgstr "" + +#: ../cache/locales.php:258 +msgid "Wrong password" +msgstr "" + +#: ../cache/locales.php:259 +msgid "Internal server error" +msgstr "" + +#: ../cache/locales.php:260 +msgid "Session error" +msgstr "" + +#: ../cache/locales.php:261 +msgid "Account successfully created" +msgstr "" + +#: ../cache/locales.php:262 ../cache/locales.php:271 +msgid "Your XMPP server is unauthorized" +msgstr "" + +#: ../cache/locales.php:263 +msgid "The server takes too much time to respond" +msgstr "" + +#: ../cache/locales.php:264 +msgid "Your web browser is too old to use with Movim." +msgstr "" + +#: ../cache/locales.php:265 +msgid "" +"Movim cannot talk with the server, please try again later (Websocket " +"connection error)" +msgstr "" + +#: ../cache/locales.php:266 +msgid "Impossible login" +msgstr "" + +#: ../cache/locales.php:267 +msgid "Oops!" +msgstr "" + +#: ../cache/locales.php:268 ../cache/locales.php:449 ../cache/locales.php:455 +msgid "Unknown error" +msgstr "" + +#: ../cache/locales.php:269 +msgid "Invalid username format" +msgstr "" + +#: ../cache/locales.php:270 +msgid "Invalid password format" +msgstr "" + +#: ../cache/locales.php:272 +msgid "A Movim session is already open on an other device" +msgstr "" + +#: ../cache/locales.php:273 +msgid "Movim failed to authenticate. You entered wrong data" +msgstr "" + +#: ../cache/locales.php:274 +msgid "Authentication mechanism not supported by Movim" +msgstr "" + +#: ../cache/locales.php:275 +msgid "The XMPP authentification failed" +msgstr "" + +#: ../cache/locales.php:276 +#, php-format +msgid "" +"You can login with Facebook (chat only) using %syour.id@chat.facebook.com%s " +"and your password" +msgstr "" + +#: ../cache/locales.php:277 +#, php-format +msgid "%sGmail accounts are also compatible%s but are not fully supported" +msgstr "" + +#: ../cache/locales.php:278 +msgid "You can login using your favorite Jabber account" +msgstr "" + +#: ../cache/locales.php:279 +msgid "or with our demonstration account" +msgstr "" + +#: ../cache/locales.php:280 ../cache/locales.php:435 +msgid "Accounts" +msgstr "" + +#: ../cache/locales.php:281 +msgid "My address" +msgstr "" + +#: ../cache/locales.php:283 +msgid "Create one !" +msgstr "" + +#: ../cache/locales.php:284 +msgid "No account yet ?" +msgstr "" + +#: ../cache/locales.php:285 +msgid "Another account" +msgstr "" + +#: ../cache/locales.php:286 +msgid "You can login with accounts from theses servers" +msgstr "" + +#: ../cache/locales.php:287 +msgid "Connected" +msgstr "" + +#: ../cache/locales.php:288 +msgid "Population" +msgstr "" + +#: ../cache/locales.php:289 +msgid "Bad nickname (between 4 and 40 characters)" +msgstr "" + +#: ../cache/locales.php:292 +msgid "" +"Welcome on your news feed, here you will see all the posts published in the " +"groups you have subscribed." +msgstr "" + +#: ../cache/locales.php:293 +msgid "Refreshing all the streams" +msgstr "" + +#: ../cache/locales.php:294 +msgid "This post is public" +msgstr "" + +#: ../cache/locales.php:295 +msgid "Manage your members" +msgstr "" + +#: ../cache/locales.php:296 +msgid "Get the members" +msgstr "" + +#: ../cache/locales.php:297 +msgid "Affiliations saved" +msgstr "" + +#: ../cache/locales.php:298 +msgid "Manage your subscriptions" +msgstr "" + +#: ../cache/locales.php:299 +msgid "Manage the subscriptions" +msgstr "" + +#: ../cache/locales.php:300 +msgid "Get the subscriptions" +msgstr "" + +#: ../cache/locales.php:301 +msgid "Subscriptions saved" +msgstr "" + +#: ../cache/locales.php:302 +msgid "Pending Invitations" +msgstr "" + +#: ../cache/locales.php:303 +#, php-format +msgid "%s wants to talk with you" +msgstr "" + +#: ../cache/locales.php:304 +msgid "Manage" +msgstr "" + +#: ../cache/locales.php:305 ../cache/locales.php:338 +msgid "News Feed" +msgstr "" + +#: ../cache/locales.php:306 ../cache/locales.php:339 +msgid "Discover and register to the groups you are interested in" +msgstr "" + +#: ../cache/locales.php:307 ../cache/locales.php:340 ../cache/locales.php:482 +msgid "Preview" +msgstr "" + +#: ../cache/locales.php:308 ../cache/locales.php:341 ../cache/locales.php:478 +msgid "Help" +msgstr "" + +#: ../cache/locales.php:309 ../cache/locales.php:342 +msgid "More help" +msgstr "" + +#: ../cache/locales.php:310 ../cache/locales.php:343 +msgid "Markdown syntax manual" +msgstr "" + +#: ../cache/locales.php:311 ../cache/locales.php:344 ../cache/locales.php:681 +msgid "Title" +msgstr "" + +#: ../cache/locales.php:312 ../cache/locales.php:345 +msgid "Content" +msgstr "" + +#: ../cache/locales.php:313 ../cache/locales.php:346 +msgid "Link" +msgstr "" + +#: ../cache/locales.php:314 ../cache/locales.php:347 +msgid "Tags" +msgstr "" + +#: ../cache/locales.php:315 ../cache/locales.php:348 +msgid "Please enter a valid url" +msgstr "" + +#: ../cache/locales.php:316 ../cache/locales.php:349 +msgid "No content to preview" +msgstr "" + +#: ../cache/locales.php:317 ../cache/locales.php:350 ../cache/locales.php:687 +msgid "No content" +msgstr "" + +#: ../cache/locales.php:318 ../cache/locales.php:351 +msgid "Post published" +msgstr "" + +#: ../cache/locales.php:319 ../cache/locales.php:352 +msgid "Post deleted" +msgstr "" + +#: ../cache/locales.php:320 ../cache/locales.php:353 +msgid "This picture will be added to your gallery" +msgstr "" + +#: ../cache/locales.php:321 ../cache/locales.php:354 +msgid "What's Hot" +msgstr "" + +#: ../cache/locales.php:322 ../cache/locales.php:355 +msgid "New post" +msgstr "" + +#: ../cache/locales.php:323 ../cache/locales.php:357 +msgid "" +"You can also use services like Imgur or Flickr to host your picture and " +"paste the link here." +msgstr "" + +#: ../cache/locales.php:324 +#, php-format +msgid "This is a re-post from %s" +msgstr "" + +#: ../cache/locales.php:325 +#, php-format +msgid "See %s profile" +msgstr "" + +#: ../cache/locales.php:326 +msgid "Publish this post on your public feed?" +msgstr "" + +#: ../cache/locales.php:327 +msgid "Post published on your blog" +msgstr "" + +#: ../cache/locales.php:328 +msgid "Post removed from your blog" +msgstr "" + +#: ../cache/locales.php:329 ../cache/locales.php:701 +msgid "Delete this post" +msgstr "" + +#: ../cache/locales.php:330 +msgid "You are going to delete this post, please confirm your action" +msgstr "" + +#: ../cache/locales.php:331 +msgid "Comments disabled" +msgstr "" + +#: ../cache/locales.php:332 +msgid "Comment published" +msgstr "" + +#: ../cache/locales.php:333 +msgid "Disconnect" +msgstr "" + +#: ../cache/locales.php:334 +msgid "Your status here !" +msgstr "" + +#: ../cache/locales.php:335 +msgid "Status updated" +msgstr "" + +#: ../cache/locales.php:336 +msgid "Status" +msgstr "" + +#: ../cache/locales.php:337 +msgid "Presence" +msgstr "" + +#: ../cache/locales.php:356 +msgid "Publish" +msgstr "" + +#: ../cache/locales.php:358 +msgid "You cannot publish a post on this Group" +msgstr "" + +#: ../cache/locales.php:359 +msgid "" +"Some fields have been filled in. Do you still want to go back and loose " +"their content?" +msgstr "" + +#: ../cache/locales.php:360 +msgid "Shared" +msgstr "" + +#: ../cache/locales.php:362 +#, php-format +msgid "%s has been added to your public groups" +msgstr "" + +#: ../cache/locales.php:363 +#, php-format +msgid "%s has been removed from your public groups" +msgstr "" + +#: ../cache/locales.php:364 +msgid "Add a chatroom" +msgstr "" + +#: ../cache/locales.php:365 +msgid "You don't have any chatroom yet." +msgstr "" + +#: ../cache/locales.php:366 +msgid "Add one by clicking on the add button in the header." +msgstr "" + +#: ../cache/locales.php:367 +msgid "Chatrooms" +msgstr "" + +#: ../cache/locales.php:370 +msgid "My Favorite Room" +msgstr "" + +#: ../cache/locales.php:374 +msgid "Remove a chatroom" +msgstr "" + +#: ../cache/locales.php:375 +msgid "" +"You are going to remove the following chatroom. Please confirm your action." +msgstr "" + +#: ../cache/locales.php:378 +msgid "Users in the room" +msgstr "" + +#: ../cache/locales.php:379 +msgid "Please enter a correct nickname (6 to 40 characters)" +msgstr "" + +#: ../cache/locales.php:381 +msgid "Public chatroom" +msgstr "" + +#: ../cache/locales.php:382 +msgid "Please provide a room address" +msgstr "" + +#: ../cache/locales.php:383 +msgid "You are currently logued as an anonymous user." +msgstr "" + +#: ../cache/locales.php:384 +msgid "" +"You can join using your own account or create one on the login page by " +"loging out using the cross in the top-right corner." +msgstr "" + +#: ../cache/locales.php:385 +#, php-format +msgid "Login on %s" +msgstr "" + +#: ../cache/locales.php:386 +msgid "Your nickname" +msgstr "" + +#: ../cache/locales.php:387 +msgid "Ungrouped" +msgstr "" + +#: ../cache/locales.php:388 +msgid "Show disconnected contacts" +msgstr "" + +#: ../cache/locales.php:389 +msgid "Hide disconnected contacts" +msgstr "" + +#: ../cache/locales.php:390 +#, php-format +msgid "Show group %s" +msgstr "" + +#: ../cache/locales.php:391 +#, php-format +msgid "Hide group %s" +msgstr "" + +#: ../cache/locales.php:392 +msgid "Please enter a valid Jabber ID" +msgstr "" + +#: ../cache/locales.php:393 +msgid "" +"No contacts ? You can add one using the + button bellow or going to the " +"Explore page" +msgstr "" + +#: ../cache/locales.php:394 +msgid "Show/Hide" +msgstr "" + +#: ../cache/locales.php:395 +msgid "Enter the Jabber ID of your contact." +msgstr "" + +#: ../cache/locales.php:396 +msgid "Press enter to validate." +msgstr "" + +#: ../cache/locales.php:397 +msgid "JID" +msgstr "" + +#: ../cache/locales.php:398 +msgid "Results" +msgstr "" + +#: ../cache/locales.php:399 +msgid "Contact added" +msgstr "" + +#: ../cache/locales.php:401 +msgid "Contact deleted" +msgstr "" + +#: ../cache/locales.php:403 msgid "This is not a valid url" msgstr "" -#: [share]success +#: ../cache/locales.php:404 msgid "Sharing the URL" msgstr "" -#: [statistics]title +#: ../cache/locales.php:405 msgid "Statistics" msgstr "" -#: [statistics]since +#: ../cache/locales.php:406 msgid "Since" msgstr "" -#: [statistics]sessions +#: ../cache/locales.php:407 msgid "Sessions" msgstr "" -#: [statistics]monthly_sub +#: ../cache/locales.php:409 msgid "Monthly Subscriptions" msgstr "" -#: [statistics]monthly_sub_cum +#: ../cache/locales.php:410 msgid "Monthly Subscriptions Cumulated" msgstr "" -#: [subscribe]info -msgid "Movim is a decentralized social network, before creating a new account you need to choose a server to register." +#: ../cache/locales.php:412 +msgid "" +"Movim is a decentralized social network, before creating a new account you " +"need to choose a server to register." msgstr "" -#: [subscribe]server_question +#: ../cache/locales.php:413 msgid "Your server here ?" msgstr "" -#: [subscribe]server_contact +#: ../cache/locales.php:414 msgid "Contact us to add yours to the officially supported servers list" msgstr "" -#: [feed]nope +#: ../cache/locales.php:416 msgid "No public feed for this contact" msgstr "" -#: [feed]nope_contact +#: ../cache/locales.php:417 msgid "No contact specified" msgstr "" -#: [upload]title -msgid "Upload a file" -msgstr "" - -#: [upload]choose -msgid "Choose a file to upload" -msgstr "" - -#: [vcard]title [page]profile +#: ../cache/locales.php:418 ../cache/locales.php:473 msgid "Profile" msgstr "" -#: [vcard]updated +#: ../cache/locales.php:419 msgid "Profile Updated" msgstr "" -#: [vcard]not_updated +#: ../cache/locales.php:420 msgid "Profile Not Updated" msgstr "" -#: [vcard]public +#: ../cache/locales.php:421 msgid "Your profile is now public" msgstr "" -#: [vcard]restricted +#: ../cache/locales.php:422 msgid "Your profile is now restricted" msgstr "" -#: [general]nickname -msgctxt "[general]nickname" -msgid "Nickname" -msgstr "" - -#: [accounts]twitter +#: ../cache/locales.php:436 msgid "Twitter" msgstr "" -#: [accounts]skype +#: ../cache/locales.php:437 msgid "Skype" msgstr "" -#: [accounts]yahoo +#: ../cache/locales.php:438 msgid "Yahoo" msgstr "" -#: [accounts]accounts_nickname -msgctxt "[accounts]accounts_nickname" -msgid "Nickname" -msgstr "" - -#: [accounts]accounts_yahoo -msgid "Yahoo Account" -msgstr "" - -#: [privacy]privacy_title +#: ../cache/locales.php:439 msgid "Privacy Level" msgstr "" -#: [privacy]privacy_question +#: ../cache/locales.php:440 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." +#: ../cache/locales.php:441 +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." msgstr "" -#: [save]submit [button]submit -msgid "Submit" -msgstr "" - -#: [save]reset [button]reset -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 +#: ../cache/locales.php:442 msgid "Call" msgstr "" -#: [visio]hang_up +#: ../cache/locales.php:443 msgid "Hang up" msgstr "" -#: [visio]connection +#: ../cache/locales.php:444 msgid "Connection" msgstr "" -#: [global]no_js +#: ../cache/locales.php:445 ../cache/locales.php:451 +msgid "Hung up" +msgstr "" + +#: ../cache/locales.php:446 ../cache/locales.php:452 +msgid "Your contact is busy" +msgstr "" + +#: ../cache/locales.php:447 ../cache/locales.php:453 +msgid "Declined" +msgstr "" + +#: ../cache/locales.php:448 ../cache/locales.php:454 +msgid "Remote application incompatible" +msgstr "" + +#: ../cache/locales.php:450 ../cache/locales.php:456 +msgid "Is calling you" +msgstr "" + +#: ../cache/locales.php:457 msgid "You don't have javascript enabled. Good luck with that." msgstr "" -#: [global]description -msgid "Movim is a kickass distributed social networking platform that protect your privacy an comes with a set of awesome features." +#: ../cache/locales.php:458 +msgid "" +"Movim is a kickass distributed social networking platform that protect your " +"privacy an comes with a set of awesome features." msgstr "" -#: [page]administration +#: ../cache/locales.php:459 msgid "Administration" msgstr "" -#: [page]home +#: ../cache/locales.php:460 msgid "Home" msgstr "" -#: [page]discover +#: ../cache/locales.php:461 msgid "Discover" msgstr "" -#: [page]explore +#: ../cache/locales.php:462 msgid "Explore" msgstr "" -#: [page]account_creation +#: ../cache/locales.php:463 msgid "Account Creation" msgstr "" -#: [page]avatar +#: ../cache/locales.php:464 +msgid "News" +msgstr "" + +#: ../cache/locales.php:465 msgid "Avatar" msgstr "" -#: [page]chats +#: ../cache/locales.php:467 msgid "Chats" msgstr "" -#: [page]server +#: ../cache/locales.php:470 msgid "Server" msgstr "" -#: [page]public_groups +#: ../cache/locales.php:471 msgid "Public Groups" msgstr "" -#: [page]viewer +#: ../cache/locales.php:472 msgid "Viewer" msgstr "" -#: [page]media +#: ../cache/locales.php:474 msgid "Media" msgstr "" -#: [page]blog +#: ../cache/locales.php:475 msgid "Blog" msgstr "" -#: [page]about +#: ../cache/locales.php:476 msgid "About" msgstr "" -#: [page]login +#: ../cache/locales.php:477 msgid "Login" msgstr "" -#: [page]feed +#: ../cache/locales.php:479 msgid "Feed" msgstr "" -#: [page]gallery +#: ../cache/locales.php:481 msgid "Gallery" msgstr "" -#: [page]visio +#: ../cache/locales.php:483 msgid "Visio-conference" msgstr "" -#: [page]pods +#: ../cache/locales.php:484 msgid "Pods" msgstr "" -#: [page]share +#: ../cache/locales.php:485 msgid "Share" msgstr "" -#: [page]room +#: ../cache/locales.php:486 msgid "Room" msgstr "" -#: [error]error +#: ../cache/locales.php:487 +#, php-format msgid "Error: %s" msgstr "" -#: [error]cannot_load_file +#: ../cache/locales.php:488 +#, php-format msgid "Cannot load file '%s'" msgstr "নথি '%s' লোড করা যাচ্ছে না" -#: [error]route +#: ../cache/locales.php:489 +#, php-format msgid "Route error, please set all the parameters for the page %s" msgstr "" -#: [error]widget_load_error +#: ../cache/locales.php:490 +#, php-format msgid "Requested widget '%s' doesn't exist." msgstr "" -#: [error]widget_call_error +#: ../cache/locales.php:491 +#, php-format msgid "Requested event '%s' not registered." msgstr "" -#: [error]whoops +#: ../cache/locales.php:492 msgid "Whoops!" msgstr "" -#: [error]media_not_found +#: ../cache/locales.php:493 msgid "It seem that you don't have any pictures here?" msgstr "" -#: [error]media_ask_upload +#: ../cache/locales.php:494 msgid "You can try to upload a couple by going to the Media page" msgstr "" -#: [title]about +#: ../cache/locales.php:495 +#, php-format msgid "%s - About" msgstr "" -#: [title]account +#: ../cache/locales.php:496 +#, php-format msgid "%s - Account" msgstr "" -#: [title]administration +#: ../cache/locales.php:497 +#, php-format msgid "%s - Administration Panel" msgstr "" -#: [title]blog +#: ../cache/locales.php:498 +#, php-format msgid "%s - Blog" msgstr "" -#: [title]configuration +#: ../cache/locales.php:499 +#, php-format msgid "%s - Configuration" msgstr "" -#: [title]discover +#: ../cache/locales.php:500 +#, php-format msgid "%s - Discover" msgstr "" -#: [title]explore +#: ../cache/locales.php:501 +#, php-format msgid "%s - Explore" msgstr "" -#: [title]help +#: ../cache/locales.php:502 +#, php-format msgid "%s - Help Page" msgstr "" -#: [title]login +#: ../cache/locales.php:503 +#, php-format msgid "%s - Login to Movim" msgstr "" -#: [title]main +#: ../cache/locales.php:504 +#, php-format msgid "%s - Welcome to Movim" msgstr "" -#: [title]media +#: ../cache/locales.php:505 +#, php-format msgid "%s - Media" msgstr "" -#: [title]news +#: ../cache/locales.php:506 +#, php-format msgid "%s - News" msgstr "" -#: [title]node_configuration +#: ../cache/locales.php:507 +#, php-format msgid "%s - Group Configuration" msgstr "" -#: [title]node +#: ../cache/locales.php:508 +#, php-format msgid "%s - Group" msgstr "" -#: [title]not_found +#: ../cache/locales.php:509 +#, php-format msgid "%s - 404" msgstr "" -#: [title]profile +#: ../cache/locales.php:510 +#, php-format msgid "%s - Profile" msgstr "" -#: [title]server +#: ../cache/locales.php:511 +#, php-format msgid "%s - Server" msgstr "" -#: [button]validate +#: ../cache/locales.php:512 msgid "Validate" msgstr "" -#: [button]refresh +#: ../cache/locales.php:513 msgid "Refresh" msgstr "" -#: [button]add +#: ../cache/locales.php:514 msgid "Add" msgstr "" -#: [button]delete +#: ../cache/locales.php:515 msgid "Delete" msgstr "" -#: [button]cancel +#: ../cache/locales.php:516 +msgid "Remove" +msgstr "" + +#: ../cache/locales.php:517 msgid "Cancel" msgstr "" -#: [button]close +#: ../cache/locales.php:518 msgid "Close" msgstr "" -#: [button]update +#: ../cache/locales.php:519 msgid "Update" msgstr "" -#: [button]updating +#: ../cache/locales.php:520 msgid "Updating" msgstr "" -#: [button]submitting +#: ../cache/locales.php:521 +msgid "Submit" +msgstr "" + +#: ../cache/locales.php:522 msgid "Submitting" msgstr "" -#: [button]register +#: ../cache/locales.php:523 +msgid "Reset" +msgstr "" + +#: ../cache/locales.php:524 msgid "Register" msgstr "" -#: [button]unregister +#: ../cache/locales.php:525 msgid "Unregister" msgstr "" -#: [button]save +#: ../cache/locales.php:526 msgid "Save" msgstr "" -#: [button]clear +#: ../cache/locales.php:527 msgid "Clear" msgstr "" -#: [button]upload +#: ../cache/locales.php:528 msgid "Upload" msgstr "" -#: [button]come_in +#: ../cache/locales.php:529 msgid "Come in!" msgstr "" -#: [button]connecting +#: ../cache/locales.php:530 msgid "Connecting" msgstr "" -#: [button]bool_yes +#: ../cache/locales.php:531 msgid "Yes" msgstr "" -#: [button]bool_no +#: ../cache/locales.php:532 msgid "No" msgstr "" -#: [button]return +#: ../cache/locales.php:534 msgid "Return" msgstr "" -#: [button]accept +#: ../cache/locales.php:535 msgid "Accept" msgstr "" -#: [button]refuse +#: ../cache/locales.php:536 msgid "Refuse" msgstr "" -#: [button]next +#: ../cache/locales.php:537 msgid "Next" msgstr "" -#: [button]previous +#: ../cache/locales.php:538 msgid "Previous" msgstr "" -#: [step]step +#: ../cache/locales.php:539 +#, php-format msgid "Step %s" msgstr "" -#: [day]title +#: ../cache/locales.php:542 msgid "Day" msgstr "" -#: [day]monday +#: ../cache/locales.php:543 msgid "Monday" msgstr "সোমবার" -#: [day]tuesday +#: ../cache/locales.php:544 msgid "Tuesday" msgstr "মঙ্গলবার" -#: [day]wednesday +#: ../cache/locales.php:545 msgid "Wednesday" msgstr "বুধবার" -#: [day]thursday +#: ../cache/locales.php:546 msgid "Thursday" msgstr "বৃহস্পতিবার" -#: [day]friday +#: ../cache/locales.php:547 msgid "Friday" msgstr "শুক্রবার" -#: [day]saturday +#: ../cache/locales.php:548 msgid "Saturday" msgstr "শনিবার" -#: [day]sunday +#: ../cache/locales.php:549 msgid "Sunday" msgstr "" -#: [gender]nil -#, fuzzy -msgctxt "[gender]nil" +#: ../cache/locales.php:550 ../cache/locales.php:559 msgid "None" msgstr "কোনোটিই নয়" -#: [gender]male +#: ../cache/locales.php:551 msgid "Male" msgstr "পুরুষ" -#: [gender]female +#: ../cache/locales.php:552 msgid "Female" msgstr "নারী" -#: [gender]other +#: ../cache/locales.php:553 msgid "Other" msgstr "অন্যান্য" -#: [client]bot +#: ../cache/locales.php:554 msgid "Bot" msgstr "" -#: [client]desktop +#: ../cache/locales.php:555 msgid "Desktop" msgstr "" -#: [client]phone +#: ../cache/locales.php:556 msgid "Phone" msgstr "" -#: [client]web +#: ../cache/locales.php:557 msgid "Web" msgstr "" -#: [client]registered +#: ../cache/locales.php:558 msgid "Registered" msgstr "" -#: [marital]nil -#, fuzzy -msgctxt "[marital]nil" -msgid "None" -msgstr "কোনোটিই নয়" - -#: [marital]single +#: ../cache/locales.php:560 msgid "Single" msgstr "সঙ্গীহীন" -#: [marital]relationship +#: ../cache/locales.php:561 msgid "In a relationship" msgstr "সম্পর্কে আবদ্ধ" -#: [marital]married +#: ../cache/locales.php:562 msgid "Married" msgstr "বিবাহিত" -#: [marital]divorced +#: ../cache/locales.php:563 msgid "Divorced" msgstr "সম্পর্কচ্ছিন্ন" -#: [marital]widowed +#: ../cache/locales.php:564 msgid "Widowed" msgstr "বিপত্নীক/বিধবা" -#: [marital]cohabiting +#: ../cache/locales.php:565 msgid "Cohabiting" msgstr "" -#: [marital]union +#: ../cache/locales.php:566 msgid "Civil Union" msgstr "" -#: [flag]white +#: ../cache/locales.php:567 msgid "Not shared" msgstr "" -#: [flag]green +#: ../cache/locales.php:568 msgid "Shared with one contact" msgstr "" -#: [flag]orange +#: ../cache/locales.php:569 msgid "Shared with all contacts" msgstr "" -#: [flag]red +#: ../cache/locales.php:570 msgid "Shared with the XMPP network" msgstr "" -#: [flag]black +#: ../cache/locales.php:571 msgid "Shared with the whole Internet" msgstr "" -#: [presence]online +#: ../cache/locales.php:572 msgid "Online" msgstr "অনলাইন" -#: [presence]away +#: ../cache/locales.php:573 msgid "Away" msgstr "অনুপস্থিত" -#: [presence]dnd +#: ../cache/locales.php:574 msgid "Do Not Disturb" msgstr "জ্বালিয়ো না" -#: [presence]xa +#: ../cache/locales.php:575 msgid "Extended Away" msgstr "অনেকক্ষণ যাবৎ দূরে" -#: [presence]offline +#: ../cache/locales.php:576 msgid "Offline" msgstr "" -#: [presence]error +#: ../cache/locales.php:577 msgid "Error" msgstr "" -#: [mood]afraid +#: ../cache/locales.php:578 msgid "afraid" msgstr "ভীত" -#: [mood]amazed +#: ../cache/locales.php:579 msgid "amazed" msgstr "অভিভূত" -#: [mood]amorous +#: ../cache/locales.php:580 msgid "amorous" msgstr "প্রেমালু" -#: [mood]angry +#: ../cache/locales.php:581 msgid "angry" msgstr "ক্ষীপ্ত" -#: [mood]annoyed +#: ../cache/locales.php:582 msgid "annoyed" msgstr "বিরক্ত" -#: [mood]anxious +#: ../cache/locales.php:583 msgid "anxious" msgstr "উদ্বিগ্ন" -#: [mood]aroused +#: ../cache/locales.php:584 msgid "aroused" msgstr "জাগ্রত" -#: [mood]ashamed +#: ../cache/locales.php:585 msgid "ashamed" msgstr "লজ্জিত" -#: [mood]bored +#: ../cache/locales.php:586 msgid "bored" msgstr "একঘেয়ে" -#: [mood]brave +#: ../cache/locales.php:587 msgid "brave" msgstr "সাহসী" -#: [mood]calm +#: ../cache/locales.php:588 msgid "calm" msgstr "শান্ত" -#: [mood]cautious +#: ../cache/locales.php:589 msgid "cautious" msgstr "সাবধানী" -#: [mood]cold +#: ../cache/locales.php:590 msgid "cold" msgstr "ঠাণ্ডা" -#: [mood]confident +#: ../cache/locales.php:591 msgid "confident" msgstr "আত্মবিশ্বাসী" -#: [mood]confused +#: ../cache/locales.php:592 msgid "confused" msgstr "সন্দিগ্ন" -#: [mood]contemplative +#: ../cache/locales.php:593 msgid "contemplative" msgstr "ধার্মিক" -#: [mood]contented +#: ../cache/locales.php:594 msgid "contented" msgstr "সুখী" -#: [mood]cranky +#: ../cache/locales.php:595 msgid "cranky" msgstr "" -#: [mood]crazy +#: ../cache/locales.php:596 msgid "crazy" msgstr "" -#: [mood]creative +#: ../cache/locales.php:597 msgid "creative" msgstr "" -#: [mood]curious +#: ../cache/locales.php:598 msgid "curious" msgstr "" -#: [mood]dejected +#: ../cache/locales.php:599 msgid "dejected" msgstr "" -#: [mood]depressed +#: ../cache/locales.php:600 msgid "depressed" msgstr "" -#: [mood]disappointed +#: ../cache/locales.php:601 msgid "disappointed" msgstr "" -#: [mood]disgusted +#: ../cache/locales.php:602 msgid "disgusted" msgstr "" -#: [mood]dismayed +#: ../cache/locales.php:603 msgid "dismayed" msgstr "" -#: [mood]distracted +#: ../cache/locales.php:604 msgid "distracted" msgstr "" -#: [mood]embarrassed +#: ../cache/locales.php:605 msgid "embarrassed" msgstr "" -#: [mood]envious +#: ../cache/locales.php:606 msgid "envious" msgstr "" -#: [mood]excited +#: ../cache/locales.php:607 msgid "excited" msgstr "" -#: [mood]flirtatious +#: ../cache/locales.php:608 msgid "flirtatious" msgstr "" -#: [mood]frustated +#: ../cache/locales.php:609 msgid "frustated" msgstr "" -#: [mood]grateful +#: ../cache/locales.php:610 msgid "grateful" msgstr "" -#: [mood]grieving +#: ../cache/locales.php:611 msgid "grieving" msgstr "" -#: [mood]grumpy +#: ../cache/locales.php:612 msgid "grumpy" msgstr "" -#: [mood]guilty +#: ../cache/locales.php:613 msgid "guilty" msgstr "" -#: [mood]happy +#: ../cache/locales.php:614 msgid "happy" msgstr "" -#: [mood]hopeful +#: ../cache/locales.php:615 msgid "hopeful" msgstr "" -#: [mood]hot +#: ../cache/locales.php:616 msgid "hot" msgstr "" -#: [mood]humbled +#: ../cache/locales.php:617 msgid "humbled" msgstr "" -#: [mood]humiliated +#: ../cache/locales.php:618 msgid "humiliated" msgstr "" -#: [mood]hungry +#: ../cache/locales.php:619 msgid "hungry" msgstr "" -#: [mood]hurt +#: ../cache/locales.php:620 msgid "hurt" msgstr "" -#: [mood]impressed +#: ../cache/locales.php:621 msgid "impressed" msgstr "" -#: [mood]in_awe +#: ../cache/locales.php:622 msgid "in awe" msgstr "" -#: [mood]in_love +#: ../cache/locales.php:623 msgid "in love" msgstr "" -#: [mood]indignant +#: ../cache/locales.php:624 msgid "indignant" msgstr "" -#: [mood]interested +#: ../cache/locales.php:625 msgid "interested" msgstr "" -#: [mood]intoxicated +#: ../cache/locales.php:626 msgid "intoxicated" msgstr "" -#: [mood]invincible +#: ../cache/locales.php:627 msgid "invincible" msgstr "" -#: [mood]jealous +#: ../cache/locales.php:628 msgid "jealous" msgstr "" -#: [mood]lonely +#: ../cache/locales.php:629 msgid "lonely" msgstr "" -#: [mood]lost +#: ../cache/locales.php:630 msgid "lost" msgstr "" -#: [mood]lucky +#: ../cache/locales.php:631 msgid "lucky" msgstr "" -#: [mood]mean +#: ../cache/locales.php:632 msgid "mean" msgstr "" -#: [mood]moody +#: ../cache/locales.php:633 msgid "moody" msgstr "" -#: [mood]nervous +#: ../cache/locales.php:634 msgid "nervous" msgstr "" -#: [mood]neutral +#: ../cache/locales.php:635 msgid "neutral" msgstr "" -#: [mood]offended +#: ../cache/locales.php:636 msgid "offended" msgstr "" -#: [mood]outraged +#: ../cache/locales.php:637 msgid "outraged" msgstr "" -#: [mood]playful +#: ../cache/locales.php:638 msgid "playful" msgstr "" -#: [mood]proud +#: ../cache/locales.php:639 msgid "proud" msgstr "" -#: [mood]relaxed +#: ../cache/locales.php:640 msgid "relaxed" msgstr "" -#: [mood]relieved +#: ../cache/locales.php:641 msgid "relieved" msgstr "" -#: [mood]restless +#: ../cache/locales.php:642 +msgid "remorseful" +msgstr "" + +#: ../cache/locales.php:643 msgid "restless" msgstr "" -#: [mood]sad +#: ../cache/locales.php:644 msgid "sad" msgstr "" -#: [mood]sarcastic +#: ../cache/locales.php:645 msgid "sarcastic" msgstr "" -#: [mood]satisfied +#: ../cache/locales.php:646 msgid "satisfied" msgstr "" -#: [mood]serious +#: ../cache/locales.php:647 msgid "serious" msgstr "" -#: [mood]shocked +#: ../cache/locales.php:648 msgid "shocked" msgstr "" -#: [mood]shy +#: ../cache/locales.php:649 msgid "shy" msgstr "" -#: [mood]sick +#: ../cache/locales.php:650 msgid "sick" msgstr "" -#: [mood]sleepy +#: ../cache/locales.php:651 msgid "sleepy" msgstr "" -#: [mood]spontaneous +#: ../cache/locales.php:652 msgid "spontaneous" msgstr "" -#: [mood]stressed +#: ../cache/locales.php:653 msgid "stressed" msgstr "" -#: [mood]strong +#: ../cache/locales.php:654 msgid "strong" msgstr "" -#: [mood]surprised +#: ../cache/locales.php:655 msgid "surprised" msgstr "" -#: [mood]thankful +#: ../cache/locales.php:656 msgid "thankful" msgstr "" -#: [mood]thirsty +#: ../cache/locales.php:657 msgid "thirsty" msgstr "" -#: [mood]tired +#: ../cache/locales.php:658 msgid "tired" msgstr "" -#: [mood]undefined +#: ../cache/locales.php:659 msgid "undefined" msgstr "" -#: [mood]weak +#: ../cache/locales.php:660 msgid "weak" msgstr "" -#: [mood]worried +#: ../cache/locales.php:661 msgid "worried" msgstr "" -#: [month]title +#: ../cache/locales.php:662 msgid "Month" msgstr "" -#: [month]january +#: ../cache/locales.php:663 msgid "January" msgstr "জানুয়ারী" -#: [month]february +#: ../cache/locales.php:664 msgid "February" msgstr "ফেব্রুয়ারী" -#: [month]march +#: ../cache/locales.php:665 msgid "March" msgstr "মার্চ" -#: [month]april +#: ../cache/locales.php:666 msgid "April" msgstr "এপ্রিল" -#: [month]may +#: ../cache/locales.php:667 msgid "May" msgstr "মে" -#: [month]june +#: ../cache/locales.php:668 msgid "June" msgstr "জুন" -#: [month]july +#: ../cache/locales.php:669 msgid "July" msgstr "জুলাই" -#: [month]august +#: ../cache/locales.php:670 msgid "August" msgstr "আগষ্ট" -#: [month]september +#: ../cache/locales.php:671 msgid "September" msgstr "সেপ্টেম্বর" -#: [month]october +#: ../cache/locales.php:672 msgid "October" msgstr "অক্টোবর" -#: [month]november +#: ../cache/locales.php:673 msgid "November" msgstr "নভেম্বর" -#: [month]december +#: ../cache/locales.php:674 msgid "December" msgstr "ডিসেম্বর" -#: [year]title +#: ../cache/locales.php:675 msgid "Year" msgstr "" -#: [date]today +#: ../cache/locales.php:676 msgid "Today" msgstr "আজ" -#: [date]tomorrow +#: ../cache/locales.php:677 msgid "Tomorrow" msgstr "আগামীকাল" -#: [date]yesterday +#: ../cache/locales.php:678 msgid "Yesterday" msgstr "গতোকাল" -#: [date]ago -#, fuzzy -msgid "%d days ago" +#: ../cache/locales.php:679 +#, php-format +msgid " %d days ago" msgstr " %d দিন আগে" -#: [date]day +#: ../cache/locales.php:680 msgid "day" msgstr "দিন" -#: [post]whats_new +#: ../cache/locales.php:682 msgid "What's new ?" msgstr "" -#: [post]place +#: ../cache/locales.php:683 msgid "Place" msgstr "" -#: [post]by +#: ../cache/locales.php:684 msgid "by" msgstr "" -#: [post]geolocalisation +#: ../cache/locales.php:685 msgid "Geolocalisation" msgstr "" -#: [post]email +#: ../cache/locales.php:686 msgid "email" msgstr "" -#: [post]no_comments +#: ../cache/locales.php:688 msgid "No comments yet" msgstr "" -#: [post]no_comments_stream +#: ../cache/locales.php:689 msgid "No comments stream" msgstr "" -#: [post]no_load +#: ../cache/locales.php:690 msgid "Your feed cannot be loaded." msgstr "" -#: [post]older +#: ../cache/locales.php:691 msgid "Get older posts" msgstr "" -#: [post]new_items +#: ../cache/locales.php:692 +#, php-format msgid "%s new items" msgstr "" -#: [post]comment_error +#: ../cache/locales.php:693 msgid "Comment publication error" msgstr "" -#: [post]comments_older +#: ../cache/locales.php:694 msgid "Show the older comments" msgstr "" -#: [post]comments_loading -msgid "Loading comments..." +#: ../cache/locales.php:695 +msgid "Loading comments ..." msgstr "" -#: [post]comments_get +#: ../cache/locales.php:696 msgid "Get the comments" msgstr "" -#: [post]comment_add +#: ../cache/locales.php:697 msgid "Add a comment" msgstr "" -#: [post]share +#: ../cache/locales.php:698 msgid "Share with" msgstr "" -#: [post]share_everyone +#: ../cache/locales.php:699 msgid "Everyone" msgstr "" -#: [post]share_your_contacts +#: ../cache/locales.php:700 msgid "Your contacts" msgstr "" -#: [post]updated +#: ../cache/locales.php:702 msgid "Updated" msgstr "" -#: [post]content_not_found +#: ../cache/locales.php:703 msgid "Content not found" msgstr "" -#: [post]default_title +#: ../cache/locales.php:704 msgid "Contact publication" msgstr "" -#: [post]comments +#: ../cache/locales.php:705 msgid "Comments" msgstr "" -#: [api]error +#: ../cache/locales.php:706 msgid "The API is not reachable, try again later" msgstr "" -#: [field]type_here +#: ../cache/locales.php:707 msgid "Type here" msgstr "" diff --git a/sources/locales/br.po b/sources/locales/br.po index d74f302..d1b0c87 100644 --- a/sources/locales/br.po +++ b/sources/locales/br.po @@ -1,2714 +1,2591 @@ # Breton translations for Movim package. # This file is distributed under the same license as the Movim package. # This file was translated from CodingTeam at . -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/About/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Account/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/AccountNext/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/AdHoc/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/AdminDB/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/AdminMain/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/AdminTest/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Api/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Avatar/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Blog/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Bookmark/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Chat/locales.ini -#. #-#-#-#-# 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 -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Group/locales.ini -#. #-#-#-#-# 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 -#. #-#-#-#-# 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 -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Presence/locales.ini -#. #-#-#-#-# 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 -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Share/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Statistics/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Subscribe/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Syndication/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Upload/locales.ini -#. #-#-#-#-# 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-08-20 15:17+0200\n" +"POT-Creation-Date: 2015-06-08 22:06+0200\n" "PO-Revision-Date: 2013-07-27 17:06+0000\n" "Last-Translator: Gwenn M \n" "Language-Team: LANGUAGE \n" -"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2015-06-18 21:08+0000\n" "X-Generator: Launchpad (build 17570)\n" +"Language: \n" -#: [about]thanks +#: ../cache/locales.php:2 msgid "Thanks" msgstr "" -#: [about]developers +#: ../cache/locales.php:3 msgid "Developers" msgstr "" -#: [about]translators +#: ../cache/locales.php:4 msgid "Translators" msgstr "" -#: [about]software +#: ../cache/locales.php:5 msgid "Software" msgstr "" -#: [about]resources +#: ../cache/locales.php:6 msgid "Resources" msgstr "" -#: [about]api [schema]api [api]title +#: ../cache/locales.php:7 ../cache/locales.php:83 ../cache/locales.php:85 msgid "API" msgstr "" -#: [about]info -msgid "Movim is an XMPP-based communication platform. All the project, except the following software and resources, is under" +#: ../cache/locales.php:8 +msgid "" +"Movim is an XMPP-based communication platform. All the project, except the " +"following software and resources, is under" msgstr "" -#: [account]title +#: ../cache/locales.php:9 msgid "Account" msgstr "" -#: [account]password_change_title -#, fuzzy -msgid "Change my password" -msgstr "Ger-tremen direizh" - -#: [account]password [db]password [credentials]password [form]password -#: [input]password -msgid "Password" -msgstr "Ger-tremen" - -#: [account]password_confirmation -#, fuzzy -msgid "Password confirmation" -msgstr "%s - Kefluniadur" - -#: [account]password_changed +#: ../cache/locales.php:10 msgid "The password has been updated" msgstr "" -#: [account]password_not_valid +#: ../cache/locales.php:11 msgid "Please provide a valid password (6 characters minimum)" msgstr "" -#: [account]password_not_same +#: ../cache/locales.php:12 msgid "The provided passwords are not the same" msgstr "" -#: [account]delete_title +#: ../cache/locales.php:13 msgid "Delete my account" msgstr "" -#: [account]delete -#, fuzzy -msgid "Delete your account" -msgstr "Kouiñ ur gont nevez" - -#: [account]delete_text -msgid "You will delete your XMPP account and all the relative information linked to it (profile, contacts and publications)." +#: ../cache/locales.php:14 +msgid "" +"You will delete your XMPP account and all the relative information linked to " +"it (profile, contacts and publications)." msgstr "" -#: [account]delete_text_confirm +#: ../cache/locales.php:15 msgid "Are you sure that you want to delete it ?" msgstr "" -#: [account]gateway_title -msgid "Gateway" -msgstr "" - -#: [create]title [subscribe]title +#: ../cache/locales.php:16 ../cache/locales.php:411 msgid "Create a new account" msgstr "Kouiñ ur gont nevez" -#: [create]notfound +#: ../cache/locales.php:17 msgid "No account creation form found on the server" msgstr "" -#: [create]server_on +#: ../cache/locales.php:18 ../cache/locales.php:172 msgid "on" msgstr "" -#: [create]successfull +#: ../cache/locales.php:19 msgid "Your acccount has been successfully registered" msgstr "" -#: [create]loading +#: ../cache/locales.php:20 msgid "Loading" msgstr "" -#: [error]not_acceptable +#: ../cache/locales.php:21 msgid "Not Acceptable" msgstr "" -#: [error]service_unavailable +#: ../cache/locales.php:22 msgid "The registration system of this server is currently unavailable" msgstr "" -#: [oob]about -msgid "This server use an external system for the registration, please click on the following URL." +#: ../cache/locales.php:23 +msgid "" +"This server use an external system for the registration, please click on the " +"following URL." msgstr "" -#: [adhoc]title +#: ../cache/locales.php:24 msgid "Actions" msgstr "Oberennoù" -#: [db]legend [schema]database +#: ../cache/locales.php:25 ../cache/locales.php:82 msgid "Database" msgstr "" -#: [db]connect_error +#: ../cache/locales.php:26 msgid "Modl wasn't able to connect to the database" msgstr "" -#: [db]connect_success +#: ../cache/locales.php:27 msgid "Movim is connected to the database" msgstr "" -#: [db]update +#: ../cache/locales.php:28 msgid "The database need to be updated" msgstr "" -#: [db]up_to_date +#: ../cache/locales.php:29 msgid "Movim database is up to date" msgstr "" -#: [db]type +#: ../cache/locales.php:30 msgid "Database Type" msgstr "" -#: [db]username [credentials]username [input]username +#: ../cache/locales.php:31 ../cache/locales.php:50 ../cache/locales.php:540 msgid "Username" msgstr "" -#: [db]host +#: ../cache/locales.php:32 ../cache/locales.php:51 ../cache/locales.php:282 +#: ../cache/locales.php:541 +msgid "Password" +msgstr "Ger-tremen" + +#: ../cache/locales.php:33 msgid "Host" msgstr "" -#: [db]port +#: ../cache/locales.php:34 msgid "Port" msgstr "" -#: [db]name -msgid "Database sName" +#: ../cache/locales.php:35 +msgid "Database Name" msgstr "" -#: [admin]general +#: ../cache/locales.php:36 msgid "General Settings" msgstr "" -#: [general]theme +#: ../cache/locales.php:37 msgid "Theme" msgstr "" -#: [general]language +#: ../cache/locales.php:38 msgid "Default language" msgstr "" -#: [general]log_verbosity +#: ../cache/locales.php:39 +msgid "Environment" +msgstr "" + +#: ../cache/locales.php:40 msgid "Log verbosity" msgstr "" -#: [general]timezone +#: ../cache/locales.php:41 msgid "Server Timezone" msgstr "" -#: [general]limit +#: ../cache/locales.php:42 msgid "User folder size limit (in bytes)" msgstr "" -#: [websocket]title +#: ../cache/locales.php:43 msgid "WebSocket Configuration" msgstr "" -#: [websocket]info +#: ../cache/locales.php:44 msgid "Enter here a valid WebSocket URI in the form" msgstr "" -#: [websocket]label +#: ../cache/locales.php:45 msgid "WebSocket URI" msgstr "" -#: [websocket]save_info -msgid "If you change the URI, please restart the daemon to reload the configuration" +#: ../cache/locales.php:46 +msgid "" +"If you change the URI, please restart the daemon to reload the configuration" msgstr "" -#: [websocket]publics +#: ../cache/locales.php:47 msgid "Public WebSockets" msgstr "" -#: [credentials]title +#: ../cache/locales.php:48 msgid "Administration Credential" msgstr "" -#: [credentials]info +#: ../cache/locales.php:49 msgid "Change the default credentials admin/password" msgstr "" -#: [credentials]re_password +#: ../cache/locales.php:52 msgid "Retype password" msgstr "" -#: [whitelist]title +#: ../cache/locales.php:53 msgid "Whitelist - XMPP Server" msgstr "" -#: [whitelist]info1 -msgid "If you want to specify a list of authorized XMPP servers on your Movim pod and forbid the connection on all the others please put their domain name here, with comma (ex: movim.eu,jabber.fr)" +#: ../cache/locales.php:54 +msgid "" +"If you want to specify a list of authorized XMPP servers on your Movim pod " +"and forbid the connection on all the others please put their domain name " +"here, with comma (ex: movim.eu,jabber.fr)" msgstr "" -#: [whitelist]info2 -msgid "Leave this field blank if you allow the access to all the XMPP accounts." +#: ../cache/locales.php:55 +msgid "" +"Leave this field blank if you allow the access to all the XMPP accounts." msgstr "" -#: [whitelist]label +#: ../cache/locales.php:56 msgid "List of whitelisted XMPP servers" msgstr "" -#: [information]title -#, fuzzy -msgctxt "[information]title" +#: ../cache/locales.php:57 ../cache/locales.php:61 msgid "Information Message" -msgstr "Titouroù an arval" +msgstr "" -#: [information]description +#: ../cache/locales.php:58 msgid "Description" msgstr "" -#: [information]info1 +#: ../cache/locales.php:59 msgid "This message will be displayed on the login page" msgstr "" -#: [information]info2 -msgid "Leave this field blank if you dont want to show any message." +#: ../cache/locales.php:60 +msgid "Leave this field blank if you don't want to show any message." msgstr "" -#: [information]label -#, fuzzy -msgctxt "[information]label" -msgid "Information Message" -msgstr "Titouroù an arval" - -#: [log]empty +#: ../cache/locales.php:62 msgid "Empty" msgstr "" -#: [log]syslog +#: ../cache/locales.php:63 msgid "Syslog" msgstr "" -#: [log]syslog_files +#: ../cache/locales.php:64 msgid "Syslog and files" msgstr "" -#: [rewrite]title +#: ../cache/locales.php:65 msgid "URL Rewriting" msgstr "" -#: [rewrite]info +#: ../cache/locales.php:66 msgid "The URL Rewriting can be enabled" msgstr "" -#: [admin]compatibility +#: ../cache/locales.php:67 msgid "General Overview" msgstr "" -#: [compatibility]info -msgid "Movim has found some issues or things that need to be fixed or improved" +#: ../cache/locales.php:68 +msgid "" +"Movim has found some issues or things that need to be fixed or improved" msgstr "" -#: [compatibility]php1 +#: ../cache/locales.php:69 +#, php-format msgid "Update your PHP-Version: %s" msgstr "" -#: [compatibility]php2 +#: ../cache/locales.php:70 msgid "Required: 5.3.0" msgstr "" -#: [compatibility]curl +#: ../cache/locales.php:71 msgid "Install the php5-curl library" msgstr "" -#: [compatibility]imagick +#: ../cache/locales.php:72 msgid "Install the php5-imagick library" msgstr "" -#: [compatibility]gd +#: ../cache/locales.php:73 msgid "Install the php5-gd library" msgstr "" -#: [compatibility]rights -msgid "Read and write rights for the webserver in Movims root directory" +#: ../cache/locales.php:74 +msgid "Read and write rights for the webserver in Movim's root directory" msgstr "" -#: [compatibility]rewrite +#: ../cache/locales.php:75 msgid "The URL Rewriting support is currently disabled" msgstr "" -#: [compatibility]db +#: ../cache/locales.php:76 msgid "The database need to be updated, go to the database panel to fix this" msgstr "" -#: [compatibility]websocket -msgid "WebSocket connection error, check if the Movim Daemon is running and is reachable" +#: ../cache/locales.php:77 +msgid "" +"WebSocket connection error, check if the Movim Daemon is running and is " +"reacheable" msgstr "" -#: [compatibility]xmpp_websocket -msgid "XMPP Websocket connection error, please check the validity of the URL given in the General Configuration" +#: ../cache/locales.php:78 +msgid "" +"XMPP Websocket connection error, please check the validity of the URL given " +"in the General Configuration" msgstr "" -#: [schema]browser +#: ../cache/locales.php:79 msgid "Browser" msgstr "" -#: [schema]movim +#: ../cache/locales.php:80 msgid "Movim Core" msgstr "" -#: [schema]daemon +#: ../cache/locales.php:81 msgid "Movim Daemon" msgstr "" -#: [schema]xmpp +#: ../cache/locales.php:84 msgid "XMPP" msgstr "" -#: [api]info -msgid "Here you can register your pod on the official %sMovim API%s and be listed on %sthe pods page%s." +#: ../cache/locales.php:86 +#, php-format +msgid "" +"Here you can register your pod on the official %sMovim API%s and be listed " +"on %sthe pods page%s." msgstr "" -#: [api]register +#: ../cache/locales.php:87 msgid "Your pod is not registered on the API" msgstr "" -#: [api]registered +#: ../cache/locales.php:88 msgid "Your pod is registered on the API" msgstr "" -#: [api]wait +#: ../cache/locales.php:89 msgid "Your pod is not yet validated" msgstr "" -#: [api]validated +#: ../cache/locales.php:90 msgid "Your pod is validated" msgstr "" -#: [api]unregister -msgid "You asked to be removed from the API, this request will be processed in a couple of hours" +#: ../cache/locales.php:91 +msgid "" +"You asked to be removed from the API, this request will be processed in a " +"couple of hours" msgstr "" -#: [api]conf_updated [config]updated +#: ../cache/locales.php:92 ../cache/locales.php:147 msgid "Configuration updated" msgstr "" -#: [avatar]file +#: ../cache/locales.php:93 msgid "File" msgstr "" -#: [avatar]use_it +#: ../cache/locales.php:94 msgid "Use it" msgstr "" -#: [avatar]webcam +#: ../cache/locales.php:95 msgid "Webcam" msgstr "" -#: [avatar]cheese +#: ../cache/locales.php:96 msgid "Cheese !" msgstr "" -#: [avatar]snapshot +#: ../cache/locales.php:97 msgid "Take a webcam snapshot" msgstr "" -#: [avatar]updated +#: ../cache/locales.php:98 msgid "Avatar Updated" msgstr "" -#: [avatar]not_updated +#: ../cache/locales.php:99 msgid "Avatar Not Updated" msgstr "" -#: [blog]title [feed]title +#: ../cache/locales.php:100 ../cache/locales.php:415 +#, php-format msgid "%s's feed" msgstr "" -#: [blog]empty +#: ../cache/locales.php:101 msgid "This user has not posted anything right now" msgstr "" -#: [title]conferences +#: ../cache/locales.php:102 msgid "Conferences" msgstr "" -#: [title]groups [group]empty_title [menu]groups [page]groups +#: ../cache/locales.php:103 ../cache/locales.php:193 ../cache/locales.php:217 +#: ../cache/locales.php:468 msgid "Groups" msgstr "" -#: [chatroom]add +#: ../cache/locales.php:104 msgid "Add a new Chat Room" msgstr "" -#: [chatroom]id [chatrooms]id +#: ../cache/locales.php:105 ../cache/locales.php:368 msgid "Chat Room ID" msgstr "" -#: [chatroom]name -#, fuzzy -msgctxt "[chatroom]name" +#: ../cache/locales.php:106 ../cache/locales.php:116 ../cache/locales.php:156 +#: ../cache/locales.php:361 ../cache/locales.php:369 ../cache/locales.php:424 msgid "Name" msgstr "Anv" -#: [chatroom]nickname [general]nickname [chatrooms]nickname +#: ../cache/locales.php:107 ../cache/locales.php:157 ../cache/locales.php:371 +#: ../cache/locales.php:425 msgid "Nickname" msgstr "Lezanv" -#: [chatroom]autojoin_label +#: ../cache/locales.php:108 msgid "Do you want do join automaticaly this Chat Room ?" msgstr "" -#: [chatroom]bad_id [chatrooms]bad_id +#: ../cache/locales.php:109 ../cache/locales.php:372 msgid "Bad Chatroom ID" msgstr "" -#: [chatroom]empty_name [chatrooms]empty_name +#: ../cache/locales.php:110 ../cache/locales.php:373 msgid "Empty name" msgstr "" -#: [bookmarks]updated +#: ../cache/locales.php:111 ../cache/locales.php:380 msgid "Bookmarks updated" msgstr "" -#: [bookmarks]error -msgid "An error occured :" +#: ../cache/locales.php:112 +msgid "An error occured : " msgstr "" -#: [bookmarks]configure +#: ../cache/locales.php:113 msgid "Configure" msgstr "" -#: [url]add +#: ../cache/locales.php:114 msgid "Add a new URL" msgstr "" -#: [url]url +#: ../cache/locales.php:115 msgid "URL" msgstr "" -#: [url]name -#, fuzzy -msgctxt "[url]name" -msgid "Name" -msgstr "Anv" - -#: [message]published +#: ../cache/locales.php:117 msgid "Message Published" msgstr "" -#: [message]encrypted +#: ../cache/locales.php:118 ../cache/locales.php:138 msgid "Encrypted message" msgstr "" -#: [message]composing [chats]composing +#: ../cache/locales.php:119 msgid "Composing..." msgstr "O kompozañ" -#: [message]paused [chats]paused +#: ../cache/locales.php:120 msgid "Paused..." msgstr "" -#: [message]gone +#: ../cache/locales.php:121 msgid "Contact gone" msgstr "" -#: [chat]attention +#: ../cache/locales.php:122 +#, php-format msgid "%s needs your attention" msgstr "" -#: [chat]placeholder +#: ../cache/locales.php:123 msgid "Your message here..." msgstr "" -#: [chat]smileys +#: ../cache/locales.php:124 msgid "Smileys" msgstr "" -#: [chat]empty_title [button]chat +#: ../cache/locales.php:125 ../cache/locales.php:139 msgid "Chat" msgstr "Tchat" -#: [chat]empty_text +#: ../cache/locales.php:126 msgid "Discuss with your contacts" msgstr "" -#: [chat]frequent [chats]frequent -msgid "Frequent contacts" -msgstr "" - -#: [chatroom]members +#: ../cache/locales.php:127 msgid "Members" msgstr "" -#: [chatroom]connected [chatrooms]connected +#: ../cache/locales.php:128 ../cache/locales.php:376 msgid "Connected to the chatroom" msgstr "" -#: [chatroom]disconnected [chatrooms]disconnected +#: ../cache/locales.php:129 ../cache/locales.php:377 msgid "Disconnected from the chatroom" msgstr "" -#: [chatroom]config [group]configuration [page]configuration +#: ../cache/locales.php:130 ../cache/locales.php:200 ../cache/locales.php:469 msgid "Configuration" msgstr "Kefluniadur" -#: [chatroom]config_saved +#: ../cache/locales.php:131 msgid "Configuration saved" msgstr "" -#: [chatroom]subject +#: ../cache/locales.php:132 msgid "Subject" msgstr "" -#: [chatroom]subject_changed +#: ../cache/locales.php:133 msgid "Subject changed" msgstr "" -#: [chats]empty_title -msgid "No chats yet..." +#: ../cache/locales.php:134 +msgid "Open a new conversation by clicking on the plus button bellow" msgstr "" -#: [chats]empty -msgid "Open a new conversation by clicking on the plus button bellow or visit the Contacts page." -msgstr "" - -#: [chats]add +#: ../cache/locales.php:135 msgid "Chat with a contact" msgstr "" -#: [chats]more +#: ../cache/locales.php:136 +msgid "Frequent contacts" +msgstr "" + +#: ../cache/locales.php:137 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 "" - -#: [config]general +#: ../cache/locales.php:140 msgid "General" msgstr "" -#: [config]language +#: ../cache/locales.php:141 msgid "Language" msgstr "Yezh" -#: [config]roster +#: ../cache/locales.php:142 msgid "Roster display" msgstr "" -#: [config]roster_show +#: ../cache/locales.php:143 msgid "Show the offline contacts" msgstr "" -#: [config]roster_hide +#: ../cache/locales.php:144 msgid "Hide the offline contacts" msgstr "" -#: [config]appearence +#: ../cache/locales.php:145 msgid "Appearence" msgstr "" -#: [config]info -msgid "This configuration is shared wherever you are connected" +#: ../cache/locales.php:146 +msgid "This configuration is shared wherever you are connected !" msgstr "" -#: [notifications]message +#: ../cache/locales.php:148 msgid "Notify on incoming message" msgstr "" -#: [notifications]desktop +#: ../cache/locales.php:149 msgid "Use desktop notifications" msgstr "" -#: [general]legend [general]general_title +#: ../cache/locales.php:150 +msgid "Data" +msgstr "" + +#: ../cache/locales.php:151 +msgid "Cache" +msgstr "" + +#: ../cache/locales.php:152 ../cache/locales.php:218 ../cache/locales.php:466 +msgid "Contacts" +msgstr "" + +#: ../cache/locales.php:153 ../cache/locales.php:480 +msgid "Posts" +msgstr "" + +#: ../cache/locales.php:154 +msgid "Messages" +msgstr "" + +#: ../cache/locales.php:155 ../cache/locales.php:423 msgid "General Informations" msgstr "Titouroù hollek" -#: [general]name [public_groups]name [chatrooms]name -msgid "Name" -msgstr "Anv" - -#: [general]date_of_birth +#: ../cache/locales.php:158 ../cache/locales.php:427 msgid "Date of Birth" msgstr "Devezh ganedigezh" -#: [general]gender +#: ../cache/locales.php:159 ../cache/locales.php:428 msgid "Gender" msgstr "Rev" -#: [general]marital +#: ../cache/locales.php:160 ../cache/locales.php:429 msgid "Marital Status" msgstr "Statud-dimez" -#: [general]email +#: ../cache/locales.php:161 ../cache/locales.php:426 msgid "Email" msgstr "" -#: [general]website +#: ../cache/locales.php:162 ../cache/locales.php:430 msgid "Website" msgstr "Lec'hienn web" -#: [general]about +#: ../cache/locales.php:163 ../cache/locales.php:431 msgid "About Me" msgstr "Diwar ma fenn" -#: [general]accounts +#: ../cache/locales.php:164 msgid "Other Accounts" msgstr "" -#: [general]tune +#: ../cache/locales.php:165 msgid "Is Listening" msgstr "" -#: [position]legend [position]position_title +#: ../cache/locales.php:166 ../cache/locales.php:432 msgid "Geographic Position" msgstr "" -#: [position]locality +#: ../cache/locales.php:167 ../cache/locales.php:433 msgid "Locality" msgstr "" -#: [position]country +#: ../cache/locales.php:168 ../cache/locales.php:434 msgid "Country" msgstr "" -#: [mood]title +#: ../cache/locales.php:169 msgid "Mood" msgstr "" -#: [mood]im +#: ../cache/locales.php:170 msgid "I'm " msgstr "" -#: [listen]title +#: ../cache/locales.php:171 msgid "Listening" msgstr "" -#: [last]title +#: ../cache/locales.php:173 msgid "Last seen" msgstr "" -#: [client]title +#: ../cache/locales.php:174 msgid "Client Informations" msgstr "Titouroù an arval" -#: [explore]last_registered +#: ../cache/locales.php:175 msgid "Last registered" msgstr "" -#: [explore]explore +#: ../cache/locales.php:176 msgid "Find some new friends" msgstr "" -#: [edit]title [button]edit +#: ../cache/locales.php:177 ../cache/locales.php:533 msgid "Edit" msgstr "" -#: [edit]alias +#: ../cache/locales.php:178 msgid "Alias" msgstr "Alias" -#: [edit]group +#: ../cache/locales.php:179 msgid "Group" msgstr "" -#: [edit]updated [roster]updated +#: ../cache/locales.php:180 ../cache/locales.php:400 msgid "Contact updated" msgstr "" -#: [delete]title +#: ../cache/locales.php:181 msgid "Are you sure?" msgstr "" -#: [delete]text -msgid "You are going to delete one of your contacts, please confirm your action" +#: ../cache/locales.php:182 +msgid "" +"You are going to delete one of your contacts, please confirm your action" msgstr "" -#: [age]years +#: ../cache/locales.php:183 +#, php-format msgid "%s years" msgstr "" -#: [blog]last +#: ../cache/locales.php:184 msgid "Last public post" msgstr "" -#: [subscription]to -#, fuzzy -msgid "You can see this contact status" -msgstr "Tennañ an darempred" - -#: [subscription]to_button -msgid "Share my status" -msgstr "" - -#: [subscription]to_text -msgid "But this contact cannot see yours" -msgstr "" - -#: [subscription]from -msgid "You are not subscribed to this contact" -msgstr "" - -#: [subscription]from_button -msgid "Ask to subscribe" -msgstr "" - -#: [subscription]from_text -msgid "But this contact can still see if you are online" -msgstr "" - -#: [subscription]nil -msgid "No subscriptions" -msgstr "" - -#: [subscription]nil_button -msgid "Invite" -msgstr "" - -#: [subscription]nil_text -msgid "This contact is in your contact list but there is no subscriptions between the two accounts" -msgstr "" - -#: [group]subscribe +#: ../cache/locales.php:185 msgid "Subscribe" msgstr "" -#: [group]subscribed +#: ../cache/locales.php:186 msgid "Subscribed" msgstr "" -#: [group]unsubscribe +#: ../cache/locales.php:187 msgid "Unsubscribe" msgstr "" -#: [group]unsubscribe_text +#: ../cache/locales.php:188 msgid "You are going to unsubscribe from this Group" msgstr "" -#: [group]unsubscribed +#: ../cache/locales.php:189 msgid "Unsubscribed" msgstr "" -#: [group]share_label +#: ../cache/locales.php:190 msgid "Make your membership to this group public to your friends" msgstr "" -#: [group]label_label +#: ../cache/locales.php:191 msgid "Give a label for this group" msgstr "" -#: [group]sure +#: ../cache/locales.php:192 msgid "Are you sure ?" msgstr "" -#: [group]empty_text +#: ../cache/locales.php:194 msgid "Discover, follow and share" msgstr "" -#: [group]empty +#: ../cache/locales.php:195 msgid "Something bad happened to this group" msgstr "" -#: [group]config_saved +#: ../cache/locales.php:196 msgid "Group configuration saved" msgstr "" -#: [group]delete_title +#: ../cache/locales.php:197 msgid "Delete the group" msgstr "" -#: [group]delete_text -msgid "You are going to delete the following group. Please confirm your action." +#: ../cache/locales.php:198 +msgid "" +"You are going to delete the following group. Please confirm your action." msgstr "" -#: [group]delete_clean_text -msgid "It seems that this group doesn't exists anymore. Do you want to remove it from your subscriptions?" +#: ../cache/locales.php:199 +msgid "" +"It seems that this group doesn't exists anymore. Do you want to remove it " +"from your subscriptions?" msgstr "" -#: [group]counter -msgid "%s groups on this server" -msgstr "" - -#: [group]subscriptions [statistics]subscriptions +#: ../cache/locales.php:201 ../cache/locales.php:408 msgid "Subscriptions" msgstr "" -#: [group]servers -msgid "Groups servers" -msgstr "" - -#: [group]search_server -msgid "Search for a new server" -msgstr "" - -#: [group]help_info1 -msgid "Groups are the perfect way to share posts about topics that you like with all the other Movim's users." -msgstr "" - -#: [group]help_info2 -msgid "Choose a server and a Group and subscribe to it using the %s button in the header. You can also create a new one using the %s button." -msgstr "" - -#: [group]help_info3 -msgid "Done? You can now publish a new post in the Group by using the %s button." -msgstr "" - -#: [group]help_info4 -msgid "You will find a list of all your subscribed Groups in My Subscriptions and receive instantly all the new incoming posts in the %sNews%s page." -msgstr "" - -#: [groups]empty_title +#: ../cache/locales.php:202 ../cache/locales.php:290 msgid "Hello" msgstr "" -#: [groups]contact_post [hello]contact_post [menu]contact_post +#: ../cache/locales.php:203 ../cache/locales.php:225 ../cache/locales.php:291 msgid "Contact post" msgstr "" -#: [groups]empty_text1 -msgid "You don't have any subscriptions yet, select a group server above to start exploring." +#: ../cache/locales.php:204 +msgid "" +"You don't have any subscriptions yet, select a group server above to start " +"exploring." msgstr "" -#: [groups]empty_text2 +#: ../cache/locales.php:205 msgid "Subscribe to your favorite feeds by bookmarking them." msgstr "" -#: [groups]subscriptions +#: ../cache/locales.php:206 msgid "My Subscriptions" msgstr "" -#: [groups]add +#: ../cache/locales.php:207 msgid "Create a new Group" msgstr "" -#: [groups]name +#: ../cache/locales.php:208 msgid "Group name" msgstr "" -#: [groups]name_example +#: ../cache/locales.php:209 msgid "My Little Pony - Fan Club" msgstr "" -#: [groups]created +#: ../cache/locales.php:210 msgid "Group created successfully" msgstr "" -#: [groups]deleted +#: ../cache/locales.php:211 msgid "Group deleted successfully" msgstr "" -#: [groups]name_error +#: ../cache/locales.php:212 msgid "Please provide a valid group name (4 characters minimum)" msgstr "" -#: [groups]no_creation +#: ../cache/locales.php:213 msgid "You cannot create a new Group on this server" msgstr "" -#: [groups]sub +#: ../cache/locales.php:214 +#, php-format msgid "%s subscribers" msgstr "" -#: [groups]num +#: ../cache/locales.php:215 +#, php-format msgid "%s posts" msgstr "" -#: [groups]disco_error -msgid "This server doesn't exists" -msgstr "" - -#: [menu]all +#: ../cache/locales.php:216 msgid "All" msgstr "" -#: [menu]refresh +#: ../cache/locales.php:219 msgid "Refresh all the streams" msgstr "" -#: [roster]search -msgid "Search in your contacts" -msgstr "" - -#: [hello]active_contacts -#, fuzzy -msgid "Active contacts" -msgstr "Oberennoù" - -#: [hello]chat -msgid "Go on the Chat page" -msgstr "" - -#: [hello]news [page]news -msgid "News" -msgstr "Nevezadennoù" - -#: [hello]news_page -msgid "Read all theses articles on the News page" -msgstr "" - -#: [hello]blog_title -msgid "Visit your public blog" -msgstr "" - -#: [hello]blog_text -msgid "See your public posts and share them with all your contacts" -msgstr "" - -#: [hello]share_title -msgid "Universal share button" -msgstr "" - -#: [hello]share_text -msgid "Bookmark or drag and drop the following button in your toolbar and use it on all the pages you want to share on Movim" -msgstr "" - -#: [hello]share_button -msgid "Share on Movim" -msgstr "" - -#: [help]faq -msgid "Frequently Asked Questions" -msgstr "" - -#: [banner]title -msgid "What do the little banners refer to ?" -msgstr "Petra dalv ar bannelioù bhan ?" - -#: [banner]info1 -msgid "Thanks to these five little banners, you can quickly identitfy the level of confdentiality applied to the information you provide." -msgstr "A-drugarez d'ar pemp banielig-se ez eus tu deoc'h kavout al live prevezded war an titour roet ganeoc'h" - -#: [banner]white -msgid "White, only you can see the information" -msgstr "Gwenn, n'eus nemedoc'h a c'hell gwelout an titour" - -#: [banner]green -msgid "Green, you have chosen some contacts who can see your information" -msgstr "Gwer, choazet ho peus an darempredoù a c'hell gwelet ho titouroù" - -#: [banner]orange -msgid "Orange, all your contact list can see your information" -msgstr "Orañjez, tout ho darempredoù a c'hell gwelet ho titouroù" - -#: [banner]red -msgid "Red, everybody in the XMPP network can see your information" -msgstr "Ruz, an holl en ho rouedad XMPP a c'hell gwelet ho titouroù" - -#: [banner]black -msgid "Black, the whole Internet can see your information" -msgstr "Du, an internet a-bezh a c'hell gwelet ho titouroù" - -#: [wiki]question -msgid "Looking for some documentation ?" -msgstr "" - -#: [wiki]button -msgid "Read the Wiki" -msgstr "" - -#: [ml]question -msgid "Talk with us by email ?" -msgstr "" - -#: [ml]button -msgid "Join the Mailing List" -msgstr "" - -#: [chatroom]question -msgid "Chat with the team ?" -msgstr "" - -#: [chatroom]button -msgid "Join the Chatroom" -msgstr "" - -#: [init]location -msgid "Location node created" -msgstr "" - -#: [init]bookmark -msgid "Bookmark node created" -msgstr "" - -#: [init]vcard4 -msgid "Profile node created" -msgstr "" - -#: [init]avatar -msgid "Avatar node created" -msgstr "" - -#: [init]subscriptions -msgid "Subscriptions node created" -msgstr "" - -#: [init]microblog -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" - -#: [error]jid -msgid "Invalid JID" -msgstr "JID direizh" - -#: [error]empty_challenge -msgid "Empty Challenge from the server" -msgstr "" - -#: [error]dns -msgid "XMPP Domain error, your account is not a correct Jabber ID" -msgstr "Kudenn Domani XMPP, ho gont n'eo ket un ID Jabber reizh" - -#: [error]data_missings -msgid "Some data are missing !" -msgstr "Roadennoù 'zo a vank !" - -#: [error]wrong_password -msgid "Wrong password" -msgstr "Ger-tremen direizh" - -#: [error]internal -msgid "Internal server error" -msgstr "Kudenn servijer diabarzh" - -#: [error]session -msgid "Session error" -msgstr "Kudenn dalc'h" - -#: [error]account_created -msgid "Account successfully created" -msgstr "Kont krouet gant berzh." - -#: [error]xmpp_unauthorized -msgctxt "[error]xmpp_unauthorized" -msgid "Your XMPP server is unauthorized" -msgstr "" - -#: [error]mec_error -msgid "The server takes too much time to respond" -msgstr "" - -#: [error]too_old -msgid "Your web browser is too old to use with Movim." -msgstr "Ho merdeer a zo re gozh evit implij Movim" - -#: [error]websocket -msgid "Movim cannot talk with the server, please try again later (Websocket connection error)" -msgstr "" - -#: [error]impossible -msgid "Impossible login" -msgstr "" - -#: [error]title -msgid "Oops!" -msgstr "" - -#: [error]default [visio]unknown_error -msgid "Unknown error" -msgstr "Kudenn dianavezet" - -#: [error]login_format -msgid "Invalid username format" -msgstr "" - -#: [error]password_format -msgid "Invalid password format" -msgstr "" - -#: [error]unauthorized -msgctxt "[error]unauthorized" -msgid "Your XMPP server is unauthorized" -msgstr "" - -#: [error]conflict -msgid "A Movim session is already open on an other device" -msgstr "" - -#: [error]wrong_account -msgid "Movim failed to authenticate. You entered wrong data" -msgstr "N'eo ket deuet a-benn Movim da gennaskañ. Lakaet ho peus roadennoù fall." - -#: [error]mechanism -msgid "Authentication mechanism not supported by Movim" -msgstr "" - -#: [error]fail_auth -msgid "The XMPP authentification failed" -msgstr "Ar c'hennaskañ XMPP a zo c'hwitet" - -#: [account]title [accounts]accounts_title -msgid "Accounts" -msgstr "" - -#: [form]username -msgid "My address" -msgstr "Ho chomlec'h" - -#: [form]create_one -msgid "Create one !" -msgstr "" - -#: [form]another_account -msgid "Another account" -msgstr "" - -#: [form]no_account -msgid "No account yet ?" -msgstr "" - -#: [form]whitelist.info -msgid "You can login with accounts from theses servers" -msgstr "" - -#: [form]connected -msgid "Connected" -msgstr "" - -#: [form]population -msgid "Population" -msgstr "" - -#: [menu]empty_title -msgid "No news yet..." -msgstr "" - -#: [menu]empty -msgid "Welcome on your news feed, here you will see all the posts published by your contacts and in the groups you have subscribed." -msgstr "" - -#: [menu]refresh -msgid "Refreshing all the streams" -msgstr "" - -#: [menu]public -msgid "This post is public" -msgstr "" - -#: [affiliations]title -msgid "Manage your members" -msgstr "" - -#: [affiliations]get -msgid "Get the members" -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 "" - -#: [notifs]title -msgid "Pending Invitations" -msgstr "" - -#: [notifs]wants_to_talk -msgid "%s wants to talk with you" -msgstr "" - -#: [notifs]manage -msgid "Manage" -msgstr "" - -#: [post]news_feed -msgid "News Feed" -msgstr "" - -#: [post]placeholder -msgid "Discover and register to the groups you are interested in" -msgstr "" - -#: [post]preview [page]preview -msgid "Preview" -msgstr "" - -#: [post]help [page]help -msgid "Help" -msgstr "Sikour" - -#: [post]help_more -msgid "More help" -msgstr "" - -#: [post]help_manual -msgid "Markdown syntax manual" -msgstr "" - -#: [post]title -msgid "Title" -msgstr "" - -#: [post]content -msgid "Content" -msgstr "" - -#: [post]link -msgid "Link" -msgstr "" - -#: [post]tags -msgid "Tags" -msgstr "" - -#: [post]valid_url [publish]valid_url -msgid "Please enter a valid url" -msgstr "" - -#: [post]no_content_preview [publish]no_content_preview -msgid "No content to preview" -msgstr "" - -#: [post]no_content [publish]no_content [post]empty -msgid "No content" -msgstr "" - -#: [post]published -msgid "Post published" -msgstr "" - -#: [post]deleted -msgid "Post deleted" -msgstr "" - -#: [post]gallery -msgid "This picture will be added to your gallery" -msgstr "" - -#: [post]hot -msgid "What's Hot" -msgstr "" - -#: [post]hot_text -msgid "Posts recently published in Groups that you are not subscribed (yet)" -msgstr "" - -#: [post]new [publish]new -msgid "New post" -msgstr "" - -#: [post]embed_tip -msgid "You can also use services like Imgur or Flickr to host your picture and paste the link here." -msgstr "" - -#: [post]repost -msgid "This is a re-post from %s" -msgstr "" - -#: [post]repost_profile -msgid "See %s profile" -msgstr "" - -#: [post]public -msgid "Publish this post publicly?" -msgstr "" - -#: [post]blog_add -msgid "Post published on your blog" -msgstr "" - -#: [post]blog_remove -msgid "Post removed from your blog" -msgstr "" - -#: [post]delete_title [post]delete -msgid "Delete this post" -msgstr "" - -#: [post]delete_text -msgid "You are going to delete this post, please confirm your action" -msgstr "" - -#: [post]comments_disabled -msgid "Comments disabled" -msgstr "" - -#: [post]comment_published -msgid "Comment published" -msgstr "" - -#: [status]disconnect -msgid "Disconnect" -msgstr "" - -#: [status]here -msgid "Your status here !" -msgstr "" - -#: [status]updated -msgid "Status updated" -msgstr "" - -#: [status]status -msgid "Status" -msgstr "" - -#: [status]presence -msgid "Presence" -msgstr "" - -#: [status]online -msgid "Online with Movim" -msgstr "" - -#: [publish]title -msgid "Publish" -msgstr "" - -#: [publish]attach -msgid "Add a file or a picture to your post" -msgstr "" - -#: [publish]no_publication -msgid "You cannot publish a post on this Group" -msgstr "" - -#: [publish]form_filled -msgid "Some fields have been filled in. Do you still want to go back and loose their content?" -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 "" - -#: [rooms]empty_text1 -msgid "You don't have any chatroom yet." -msgstr "" - -#: [rooms]empty_text2 -msgid "Add one by clicking on the add button in the header." -msgstr "" - -#: [chatrooms]title -msgid "Chatrooms" -msgstr "" - -#: [chatrooms]name_placeholder -msgid "My Favorite Room" -msgstr "" - -#: [chatrooms]users -msgid "Users in the room" -msgstr "" - -#: [chatrooms]bad_nickname -msgid "Please enter a correct nickname (2 to 40 characters)" -msgstr "" - -#: [room]anonymous_title -msgid "Public chatroom" -msgstr "" - -#: [room]no_room -msgid "Please provide a room address" -msgstr "" - -#: [room]anonymous_text1 -msgid "You are currently logued as an anonymous user." -msgstr "" - -#: [room]anonymous_text2 -msgid "You can join using your own account or create one on the login page by loging out using the cross in the top-right corner." -msgstr "" - -#: [room]anonymous_login -msgid "Login on %s" -msgstr "" - -#: [room]nick -msgid "Your nickname" -msgstr "" - -#: [roster]ungrouped -msgid "Ungrouped" -msgstr "Distrollet" - -#: [roster]show_disconnected -msgid "Show disconnected contacts" -msgstr "" - -#: [roster]hide_disconnected -msgid "Hide disconnected contacts" -msgstr "" - -#: [roster]show_group -msgid "Show group %s" -msgstr "" - -#: [roster]hide_group -msgid "Hide group %s" -msgstr "" - -#: [roster]jid_error -msgid "Please enter a valid Jabber ID" -msgstr "" - -#: [roster]no_contacts_title -msgid "No contacts ?" -msgstr "" - -#: [roster]no_contacts_text -msgid "You can add one using the + button bellow" -msgstr "" - -#: [roster]show_hide -msgid "Show/Hide" -msgstr "" - -#: [roster]add_contact_info1 -msgid "Enter the Jabber ID of your contact." -msgstr "" - -#: [roster]add_contact_info2 -msgid "Press enter to validate." -msgstr "" - -#: [roster]jid -msgid "JID" -msgstr "" - -#: [roster]results -msgid "Results" -msgstr "" - -#: [roster]added -msgid "Contact added" -msgstr "" - -#: [roster]deleted -msgid "Contact deleted" -msgstr "" - -#: [roster]search +#: ../cache/locales.php:220 ../cache/locales.php:402 msgid "Search" msgstr "" -#: [share]error +#: ../cache/locales.php:221 +msgid "Go on the Chat page" +msgstr "" + +#: ../cache/locales.php:222 +msgid "Read all theses articles on the News page" +msgstr "" + +#: ../cache/locales.php:223 +msgid "Visit your public blog" +msgstr "" + +#: ../cache/locales.php:224 +msgid "See your public posts and share them with all your contacts" +msgstr "" + +#: ../cache/locales.php:226 +msgid "Universal share button" +msgstr "" + +#: ../cache/locales.php:227 +msgid "" +"Bookmark or drag and drop the following button in your toolbar and use it on " +"all the pages you want to share on Movim" +msgstr "" + +#: ../cache/locales.php:228 +msgid "Share on Movim" +msgstr "" + +#: ../cache/locales.php:229 +msgid "Frequently Asked Questions" +msgstr "" + +#: ../cache/locales.php:230 +msgid "What do the little banners refer to ?" +msgstr "Petra dalv ar bannelioù bhan ?" + +#: ../cache/locales.php:231 +msgid "" +"Thanks to these five little banners, you can quickly identitfy the level of " +"confdentiality applied to the information you provide." +msgstr "" +"A-drugarez d'ar pemp banielig-se ez eus tu deoc'h kavout al live prevezded " +"war an titour roet ganeoc'h" + +#: ../cache/locales.php:232 +msgid "White, only you can see the information" +msgstr "Gwenn, n'eus nemedoc'h a c'hell gwelout an titour" + +#: ../cache/locales.php:233 +msgid "Green, you have chosen some contacts who can see your information" +msgstr "Gwer, choazet ho peus an darempredoù a c'hell gwelet ho titouroù" + +#: ../cache/locales.php:234 +msgid "Orange, all your contact list can see your information" +msgstr "Orañjez, tout ho darempredoù a c'hell gwelet ho titouroù" + +#: ../cache/locales.php:235 +msgid "Red, everybody in the XMPP network can see your information" +msgstr "Ruz, an holl en ho rouedad XMPP a c'hell gwelet ho titouroù" + +#: ../cache/locales.php:236 +msgid "Black, the whole Internet can see your information" +msgstr "Du, an internet a-bezh a c'hell gwelet ho titouroù" + +#: ../cache/locales.php:237 +msgid "Looking for some documentation ?" +msgstr "" + +#: ../cache/locales.php:238 +msgid "Read the Wiki" +msgstr "" + +#: ../cache/locales.php:239 +msgid "Talk with us by email ?" +msgstr "" + +#: ../cache/locales.php:240 +msgid "Join the Mailing List" +msgstr "" + +#: ../cache/locales.php:241 +msgid "Chat with the team ?" +msgstr "" + +#: ../cache/locales.php:242 +msgid "Join the Chatroom" +msgstr "" + +#: ../cache/locales.php:243 +msgid "Location node created" +msgstr "" + +#: ../cache/locales.php:244 +msgid "Bookmark node created" +msgstr "" + +#: ../cache/locales.php:245 +msgid "Profile node created" +msgstr "" + +#: ../cache/locales.php:246 +msgid "Avatar node created" +msgstr "" + +#: ../cache/locales.php:247 +msgid "Subscriptions node created" +msgstr "" + +#: ../cache/locales.php:248 +msgid "Microblog node created" +msgstr "" + +#: ../cache/locales.php:249 +msgid "Location" +msgstr "" + +#: ../cache/locales.php:250 +msgid "Wrong position" +msgstr "" + +#: ../cache/locales.php:251 +msgid "Location updated" +msgstr "" + +#: ../cache/locales.php:252 +msgid "Update my position" +msgstr "" + +#: ../cache/locales.php:253 +msgid "Wrong username" +msgstr "Anv implijer direizh" + +#: ../cache/locales.php:254 +msgid "Invalid JID" +msgstr "JID direizh" + +#: ../cache/locales.php:255 +msgid "Empty Challenge from the server" +msgstr "" + +#: ../cache/locales.php:256 +msgid "XMPP Domain error, your account is not a correct Jabber ID" +msgstr "Kudenn Domani XMPP, ho gont n'eo ket un ID Jabber reizh" + +#: ../cache/locales.php:257 +msgid "Some data are missing !" +msgstr "Roadennoù 'zo a vank !" + +#: ../cache/locales.php:258 +msgid "Wrong password" +msgstr "Ger-tremen direizh" + +#: ../cache/locales.php:259 +msgid "Internal server error" +msgstr "Kudenn servijer diabarzh" + +#: ../cache/locales.php:260 +msgid "Session error" +msgstr "Kudenn dalc'h" + +#: ../cache/locales.php:261 +msgid "Account successfully created" +msgstr "Kont krouet gant berzh." + +#: ../cache/locales.php:262 ../cache/locales.php:271 +msgid "Your XMPP server is unauthorized" +msgstr "" + +#: ../cache/locales.php:263 +msgid "The server takes too much time to respond" +msgstr "" + +#: ../cache/locales.php:264 +msgid "Your web browser is too old to use with Movim." +msgstr "Ho merdeer a zo re gozh evit implij Movim" + +#: ../cache/locales.php:265 +msgid "" +"Movim cannot talk with the server, please try again later (Websocket " +"connection error)" +msgstr "" + +#: ../cache/locales.php:266 +msgid "Impossible login" +msgstr "" + +#: ../cache/locales.php:267 +msgid "Oops!" +msgstr "" + +#: ../cache/locales.php:268 ../cache/locales.php:449 ../cache/locales.php:455 +msgid "Unknown error" +msgstr "Kudenn dianavezet" + +#: ../cache/locales.php:269 +msgid "Invalid username format" +msgstr "" + +#: ../cache/locales.php:270 +msgid "Invalid password format" +msgstr "" + +#: ../cache/locales.php:272 +msgid "A Movim session is already open on an other device" +msgstr "" + +#: ../cache/locales.php:273 +msgid "Movim failed to authenticate. You entered wrong data" +msgstr "" +"N'eo ket deuet a-benn Movim da gennaskañ. Lakaet ho peus roadennoù fall." + +#: ../cache/locales.php:274 +msgid "Authentication mechanism not supported by Movim" +msgstr "" + +#: ../cache/locales.php:275 +msgid "The XMPP authentification failed" +msgstr "Ar c'hennaskañ XMPP a zo c'hwitet" + +#: ../cache/locales.php:276 +#, php-format +msgid "" +"You can login with Facebook (chat only) using %syour.id@chat.facebook.com%s " +"and your password" +msgstr "" + +#: ../cache/locales.php:277 +#, php-format +msgid "%sGmail accounts are also compatible%s but are not fully supported" +msgstr "" + +#: ../cache/locales.php:278 +msgid "You can login using your favorite Jabber account" +msgstr "" + +#: ../cache/locales.php:279 +msgid "or with our demonstration account" +msgstr "" + +#: ../cache/locales.php:280 ../cache/locales.php:435 +msgid "Accounts" +msgstr "" + +#: ../cache/locales.php:281 +msgid "My address" +msgstr "Ho chomlec'h" + +#: ../cache/locales.php:283 +msgid "Create one !" +msgstr "" + +#: ../cache/locales.php:284 +msgid "No account yet ?" +msgstr "" + +#: ../cache/locales.php:285 +msgid "Another account" +msgstr "" + +#: ../cache/locales.php:286 +msgid "You can login with accounts from theses servers" +msgstr "" + +#: ../cache/locales.php:287 +msgid "Connected" +msgstr "" + +#: ../cache/locales.php:288 +msgid "Population" +msgstr "" + +#: ../cache/locales.php:289 +msgid "Bad nickname (between 4 and 40 characters)" +msgstr "" + +#: ../cache/locales.php:292 +msgid "" +"Welcome on your news feed, here you will see all the posts published in the " +"groups you have subscribed." +msgstr "" + +#: ../cache/locales.php:293 +msgid "Refreshing all the streams" +msgstr "" + +#: ../cache/locales.php:294 +msgid "This post is public" +msgstr "" + +#: ../cache/locales.php:295 +msgid "Manage your members" +msgstr "" + +#: ../cache/locales.php:296 +msgid "Get the members" +msgstr "" + +#: ../cache/locales.php:297 +msgid "Affiliations saved" +msgstr "" + +#: ../cache/locales.php:298 +msgid "Manage your subscriptions" +msgstr "" + +#: ../cache/locales.php:299 +msgid "Manage the subscriptions" +msgstr "" + +#: ../cache/locales.php:300 +msgid "Get the subscriptions" +msgstr "" + +#: ../cache/locales.php:301 +msgid "Subscriptions saved" +msgstr "" + +#: ../cache/locales.php:302 +msgid "Pending Invitations" +msgstr "" + +#: ../cache/locales.php:303 +#, php-format +msgid "%s wants to talk with you" +msgstr "" + +#: ../cache/locales.php:304 +msgid "Manage" +msgstr "" + +#: ../cache/locales.php:305 ../cache/locales.php:338 +msgid "News Feed" +msgstr "" + +#: ../cache/locales.php:306 ../cache/locales.php:339 +msgid "Discover and register to the groups you are interested in" +msgstr "" + +#: ../cache/locales.php:307 ../cache/locales.php:340 ../cache/locales.php:482 +msgid "Preview" +msgstr "" + +#: ../cache/locales.php:308 ../cache/locales.php:341 ../cache/locales.php:478 +msgid "Help" +msgstr "Sikour" + +#: ../cache/locales.php:309 ../cache/locales.php:342 +msgid "More help" +msgstr "" + +#: ../cache/locales.php:310 ../cache/locales.php:343 +msgid "Markdown syntax manual" +msgstr "" + +#: ../cache/locales.php:311 ../cache/locales.php:344 ../cache/locales.php:681 +msgid "Title" +msgstr "" + +#: ../cache/locales.php:312 ../cache/locales.php:345 +msgid "Content" +msgstr "" + +#: ../cache/locales.php:313 ../cache/locales.php:346 +msgid "Link" +msgstr "" + +#: ../cache/locales.php:314 ../cache/locales.php:347 +msgid "Tags" +msgstr "" + +#: ../cache/locales.php:315 ../cache/locales.php:348 +msgid "Please enter a valid url" +msgstr "" + +#: ../cache/locales.php:316 ../cache/locales.php:349 +msgid "No content to preview" +msgstr "" + +#: ../cache/locales.php:317 ../cache/locales.php:350 ../cache/locales.php:687 +msgid "No content" +msgstr "" + +#: ../cache/locales.php:318 ../cache/locales.php:351 +msgid "Post published" +msgstr "" + +#: ../cache/locales.php:319 ../cache/locales.php:352 +msgid "Post deleted" +msgstr "" + +#: ../cache/locales.php:320 ../cache/locales.php:353 +msgid "This picture will be added to your gallery" +msgstr "" + +#: ../cache/locales.php:321 ../cache/locales.php:354 +msgid "What's Hot" +msgstr "" + +#: ../cache/locales.php:322 ../cache/locales.php:355 +msgid "New post" +msgstr "" + +#: ../cache/locales.php:323 ../cache/locales.php:357 +msgid "" +"You can also use services like Imgur or Flickr to host your picture and " +"paste the link here." +msgstr "" + +#: ../cache/locales.php:324 +#, php-format +msgid "This is a re-post from %s" +msgstr "" + +#: ../cache/locales.php:325 +#, php-format +msgid "See %s profile" +msgstr "" + +#: ../cache/locales.php:326 +msgid "Publish this post on your public feed?" +msgstr "" + +#: ../cache/locales.php:327 +msgid "Post published on your blog" +msgstr "" + +#: ../cache/locales.php:328 +msgid "Post removed from your blog" +msgstr "" + +#: ../cache/locales.php:329 ../cache/locales.php:701 +msgid "Delete this post" +msgstr "" + +#: ../cache/locales.php:330 +msgid "You are going to delete this post, please confirm your action" +msgstr "" + +#: ../cache/locales.php:331 +msgid "Comments disabled" +msgstr "" + +#: ../cache/locales.php:332 +msgid "Comment published" +msgstr "" + +#: ../cache/locales.php:333 +msgid "Disconnect" +msgstr "" + +#: ../cache/locales.php:334 +msgid "Your status here !" +msgstr "" + +#: ../cache/locales.php:335 +msgid "Status updated" +msgstr "" + +#: ../cache/locales.php:336 +msgid "Status" +msgstr "" + +#: ../cache/locales.php:337 +msgid "Presence" +msgstr "" + +#: ../cache/locales.php:356 +msgid "Publish" +msgstr "" + +#: ../cache/locales.php:358 +msgid "You cannot publish a post on this Group" +msgstr "" + +#: ../cache/locales.php:359 +msgid "" +"Some fields have been filled in. Do you still want to go back and loose " +"their content?" +msgstr "" + +#: ../cache/locales.php:360 +msgid "Shared" +msgstr "" + +#: ../cache/locales.php:362 +#, php-format +msgid "%s has been added to your public groups" +msgstr "" + +#: ../cache/locales.php:363 +#, php-format +msgid "%s has been removed from your public groups" +msgstr "" + +#: ../cache/locales.php:364 +msgid "Add a chatroom" +msgstr "" + +#: ../cache/locales.php:365 +msgid "You don't have any chatroom yet." +msgstr "" + +#: ../cache/locales.php:366 +msgid "Add one by clicking on the add button in the header." +msgstr "" + +#: ../cache/locales.php:367 +msgid "Chatrooms" +msgstr "" + +#: ../cache/locales.php:370 +msgid "My Favorite Room" +msgstr "" + +#: ../cache/locales.php:374 +msgid "Remove a chatroom" +msgstr "" + +#: ../cache/locales.php:375 +msgid "" +"You are going to remove the following chatroom. Please confirm your action." +msgstr "" + +#: ../cache/locales.php:378 +msgid "Users in the room" +msgstr "" + +#: ../cache/locales.php:379 +msgid "Please enter a correct nickname (6 to 40 characters)" +msgstr "" + +#: ../cache/locales.php:381 +msgid "Public chatroom" +msgstr "" + +#: ../cache/locales.php:382 +msgid "Please provide a room address" +msgstr "" + +#: ../cache/locales.php:383 +msgid "You are currently logued as an anonymous user." +msgstr "" + +#: ../cache/locales.php:384 +msgid "" +"You can join using your own account or create one on the login page by " +"loging out using the cross in the top-right corner." +msgstr "" + +#: ../cache/locales.php:385 +#, php-format +msgid "Login on %s" +msgstr "" + +#: ../cache/locales.php:386 +msgid "Your nickname" +msgstr "" + +#: ../cache/locales.php:387 +msgid "Ungrouped" +msgstr "Distrollet" + +#: ../cache/locales.php:388 +msgid "Show disconnected contacts" +msgstr "" + +#: ../cache/locales.php:389 +msgid "Hide disconnected contacts" +msgstr "" + +#: ../cache/locales.php:390 +#, php-format +msgid "Show group %s" +msgstr "" + +#: ../cache/locales.php:391 +#, php-format +msgid "Hide group %s" +msgstr "" + +#: ../cache/locales.php:392 +msgid "Please enter a valid Jabber ID" +msgstr "" + +#: ../cache/locales.php:393 +msgid "" +"No contacts ? You can add one using the + button bellow or going to the " +"Explore page" +msgstr "" + +#: ../cache/locales.php:394 +msgid "Show/Hide" +msgstr "" + +#: ../cache/locales.php:395 +msgid "Enter the Jabber ID of your contact." +msgstr "" + +#: ../cache/locales.php:396 +msgid "Press enter to validate." +msgstr "" + +#: ../cache/locales.php:397 +msgid "JID" +msgstr "" + +#: ../cache/locales.php:398 +msgid "Results" +msgstr "" + +#: ../cache/locales.php:399 +msgid "Contact added" +msgstr "" + +#: ../cache/locales.php:401 +msgid "Contact deleted" +msgstr "" + +#: ../cache/locales.php:403 msgid "This is not a valid url" msgstr "" -#: [share]success +#: ../cache/locales.php:404 msgid "Sharing the URL" msgstr "" -#: [statistics]title +#: ../cache/locales.php:405 msgid "Statistics" msgstr "" -#: [statistics]since +#: ../cache/locales.php:406 msgid "Since" msgstr "" -#: [statistics]sessions +#: ../cache/locales.php:407 msgid "Sessions" msgstr "" -#: [statistics]monthly_sub +#: ../cache/locales.php:409 msgid "Monthly Subscriptions" msgstr "" -#: [statistics]monthly_sub_cum +#: ../cache/locales.php:410 msgid "Monthly Subscriptions Cumulated" msgstr "" -#: [subscribe]info -msgid "Movim is a decentralized social network, before creating a new account you need to choose a server to register." +#: ../cache/locales.php:412 +msgid "" +"Movim is a decentralized social network, before creating a new account you " +"need to choose a server to register." msgstr "" -#: [subscribe]server_question +#: ../cache/locales.php:413 msgid "Your server here ?" msgstr "" -#: [subscribe]server_contact +#: ../cache/locales.php:414 msgid "Contact us to add yours to the officially supported servers list" msgstr "" -#: [feed]nope +#: ../cache/locales.php:416 msgid "No public feed for this contact" msgstr "" -#: [feed]nope_contact +#: ../cache/locales.php:417 msgid "No contact specified" msgstr "" -#: [upload]title -msgid "Upload a file" -msgstr "" - -#: [upload]choose -msgid "Choose a file to upload" -msgstr "" - -#: [vcard]title [page]profile +#: ../cache/locales.php:418 ../cache/locales.php:473 msgid "Profile" msgstr "Profil" -#: [vcard]updated +#: ../cache/locales.php:419 msgid "Profile Updated" msgstr "" -#: [vcard]not_updated +#: ../cache/locales.php:420 msgid "Profile Not Updated" msgstr "" -#: [vcard]public +#: ../cache/locales.php:421 msgid "Your profile is now public" msgstr "" -#: [vcard]restricted +#: ../cache/locales.php:422 msgid "Your profile is now restricted" msgstr "" -#: [general]nickname -#, fuzzy -msgctxt "[general]nickname" -msgid "Nickname" -msgstr "Lezanv" - -#: [accounts]twitter +#: ../cache/locales.php:436 msgid "Twitter" msgstr "" -#: [accounts]skype +#: ../cache/locales.php:437 msgid "Skype" msgstr "" -#: [accounts]yahoo +#: ../cache/locales.php:438 msgid "Yahoo" msgstr "" -#: [accounts]accounts_nickname -#, fuzzy -msgctxt "[accounts]accounts_nickname" -msgid "Nickname" -msgstr "Lezanv" - -#: [accounts]accounts_yahoo -msgid "Yahoo Account" -msgstr "" - -#: [privacy]privacy_title +#: ../cache/locales.php:439 msgid "Privacy Level" msgstr "" -#: [privacy]privacy_question +#: ../cache/locales.php:440 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." +#: ../cache/locales.php:441 +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." msgstr "" -#: [save]submit [button]submit -msgid "Submit" -msgstr "Kinnig" - -#: [save]reset [button]reset -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 +#: ../cache/locales.php:442 msgid "Call" msgstr "" -#: [visio]hang_up +#: ../cache/locales.php:443 msgid "Hang up" msgstr "" -#: [visio]connection +#: ../cache/locales.php:444 msgid "Connection" msgstr "" -#: [global]no_js +#: ../cache/locales.php:445 ../cache/locales.php:451 +msgid "Hung up" +msgstr "" + +#: ../cache/locales.php:446 ../cache/locales.php:452 +msgid "Your contact is busy" +msgstr "" + +#: ../cache/locales.php:447 ../cache/locales.php:453 +msgid "Declined" +msgstr "" + +#: ../cache/locales.php:448 ../cache/locales.php:454 +msgid "Remote application incompatible" +msgstr "" + +#: ../cache/locales.php:450 ../cache/locales.php:456 +msgid "Is calling you" +msgstr "" + +#: ../cache/locales.php:457 msgid "You don't have javascript enabled. Good luck with that." msgstr "" -#: [global]description -msgid "Movim is a kickass distributed social networking platform that protect your privacy an comes with a set of awesome features." +#: ../cache/locales.php:458 +msgid "" +"Movim is a kickass distributed social networking platform that protect your " +"privacy an comes with a set of awesome features." msgstr "" -#: [page]administration +#: ../cache/locales.php:459 msgid "Administration" msgstr "" -#: [page]home +#: ../cache/locales.php:460 msgid "Home" msgstr "Degemer" -#: [page]discover +#: ../cache/locales.php:461 msgid "Discover" msgstr "" -#: [page]explore +#: ../cache/locales.php:462 msgid "Explore" msgstr "" -#: [page]account_creation +#: ../cache/locales.php:463 msgid "Account Creation" msgstr "Krouadur ar gont" -#: [page]avatar +#: ../cache/locales.php:464 +msgid "News" +msgstr "Nevezadennoù" + +#: ../cache/locales.php:465 msgid "Avatar" msgstr "Avatar" -#: [page]chats +#: ../cache/locales.php:467 msgid "Chats" msgstr "" -#: [page]server +#: ../cache/locales.php:470 msgid "Server" msgstr "" -#: [page]public_groups +#: ../cache/locales.php:471 msgid "Public Groups" msgstr "" -#: [page]viewer +#: ../cache/locales.php:472 msgid "Viewer" msgstr "" -#: [page]media +#: ../cache/locales.php:474 msgid "Media" msgstr "" -#: [page]blog +#: ../cache/locales.php:475 msgid "Blog" msgstr "" -#: [page]about +#: ../cache/locales.php:476 msgid "About" msgstr "" -#: [page]login +#: ../cache/locales.php:477 msgid "Login" msgstr "" -#: [page]feed +#: ../cache/locales.php:479 msgid "Feed" msgstr "Gwazh" -#: [page]gallery +#: ../cache/locales.php:481 msgid "Gallery" msgstr "" -#: [page]visio +#: ../cache/locales.php:483 msgid "Visio-conference" msgstr "" -#: [page]pods +#: ../cache/locales.php:484 msgid "Pods" msgstr "" -#: [page]share +#: ../cache/locales.php:485 msgid "Share" msgstr "" -#: [page]room +#: ../cache/locales.php:486 msgid "Room" msgstr "" -#: [error]error +#: ../cache/locales.php:487 +#, php-format msgid "Error: %s" msgstr "Kudenn: %s" -#: [error]cannot_load_file +#: ../cache/locales.php:488 +#, php-format msgid "Cannot load file '%s'" msgstr "Neus ket tu kargañ ar restr '%s'" -#: [error]route +#: ../cache/locales.php:489 +#, php-format msgid "Route error, please set all the parameters for the page %s" msgstr "" -#: [error]widget_load_error +#: ../cache/locales.php:490 +#, php-format msgid "Requested widget '%s' doesn't exist." msgstr "" -#: [error]widget_call_error +#: ../cache/locales.php:491 +#, php-format msgid "Requested event '%s' not registered." msgstr "" -#: [error]whoops +#: ../cache/locales.php:492 msgid "Whoops!" msgstr "" -#: [error]media_not_found +#: ../cache/locales.php:493 msgid "It seem that you don't have any pictures here?" msgstr "" -#: [error]media_ask_upload +#: ../cache/locales.php:494 msgid "You can try to upload a couple by going to the Media page" msgstr "" -#: [title]about +#: ../cache/locales.php:495 +#, php-format msgid "%s - About" msgstr "" -#: [title]account +#: ../cache/locales.php:496 +#, php-format msgid "%s - Account" msgstr "" -#: [title]administration +#: ../cache/locales.php:497 +#, php-format msgid "%s - Administration Panel" msgstr "" -#: [title]blog +#: ../cache/locales.php:498 +#, php-format msgid "%s - Blog" msgstr "" -#: [title]configuration +#: ../cache/locales.php:499 +#, php-format msgid "%s - Configuration" msgstr "%s - Kefluniadur" -#: [title]discover +#: ../cache/locales.php:500 +#, php-format msgid "%s - Discover" msgstr "" -#: [title]explore +#: ../cache/locales.php:501 +#, php-format msgid "%s - Explore" msgstr "" -#: [title]help +#: ../cache/locales.php:502 +#, php-format msgid "%s - Help Page" msgstr "%s - Pajenn sikour" -#: [title]login +#: ../cache/locales.php:503 +#, php-format msgid "%s - Login to Movim" msgstr "%s - Kennaskañ da Movim" -#: [title]main +#: ../cache/locales.php:504 +#, php-format msgid "%s - Welcome to Movim" msgstr "%s - Degemer mat war Movim" -#: [title]media +#: ../cache/locales.php:505 +#, php-format msgid "%s - Media" msgstr "" -#: [title]news +#: ../cache/locales.php:506 +#, php-format msgid "%s - News" msgstr "" -#: [title]node_configuration +#: ../cache/locales.php:507 +#, php-format msgid "%s - Group Configuration" msgstr "" -#: [title]node +#: ../cache/locales.php:508 +#, php-format msgid "%s - Group" msgstr "" -#: [title]not_found +#: ../cache/locales.php:509 +#, php-format msgid "%s - 404" msgstr "" -#: [title]profile +#: ../cache/locales.php:510 +#, php-format msgid "%s - Profile" msgstr "%s - Profil" -#: [title]server +#: ../cache/locales.php:511 +#, php-format msgid "%s - Server" msgstr "" -#: [button]validate +#: ../cache/locales.php:512 msgid "Validate" msgstr "" -#: [button]refresh +#: ../cache/locales.php:513 msgid "Refresh" msgstr "" -#: [button]add +#: ../cache/locales.php:514 msgid "Add" msgstr "Ouzhpennañ" -#: [button]delete +#: ../cache/locales.php:515 msgid "Delete" msgstr "" -#: [button]cancel +#: ../cache/locales.php:516 +msgid "Remove" +msgstr "" + +#: ../cache/locales.php:517 msgid "Cancel" msgstr "" -#: [button]close +#: ../cache/locales.php:518 msgid "Close" msgstr "" -#: [button]update +#: ../cache/locales.php:519 msgid "Update" msgstr "" -#: [button]updating +#: ../cache/locales.php:520 msgid "Updating" msgstr "" -#: [button]submitting +#: ../cache/locales.php:521 +msgid "Submit" +msgstr "Kinnig" + +#: ../cache/locales.php:522 msgid "Submitting" msgstr "Kinngadenn" -#: [button]register +#: ../cache/locales.php:523 +msgid "Reset" +msgstr "Adkregiñ" + +#: ../cache/locales.php:524 msgid "Register" msgstr "" -#: [button]unregister +#: ../cache/locales.php:525 msgid "Unregister" msgstr "" -#: [button]save +#: ../cache/locales.php:526 msgid "Save" msgstr "" -#: [button]clear +#: ../cache/locales.php:527 msgid "Clear" msgstr "" -#: [button]upload +#: ../cache/locales.php:528 msgid "Upload" msgstr "" -#: [button]come_in +#: ../cache/locales.php:529 msgid "Come in!" msgstr "Deuit e-barzh !" -#: [button]connecting +#: ../cache/locales.php:530 msgid "Connecting" msgstr "" -#: [button]bool_yes +#: ../cache/locales.php:531 msgid "Yes" msgstr "Ya" -#: [button]bool_no +#: ../cache/locales.php:532 msgid "No" msgstr "Nann" -#: [button]return +#: ../cache/locales.php:534 msgid "Return" msgstr "" -#: [button]accept +#: ../cache/locales.php:535 msgid "Accept" msgstr "Asantiñ" -#: [button]refuse +#: ../cache/locales.php:536 msgid "Refuse" msgstr "" -#: [button]next +#: ../cache/locales.php:537 msgid "Next" msgstr "" -#: [button]previous +#: ../cache/locales.php:538 msgid "Previous" msgstr "" -#: [step]step +#: ../cache/locales.php:539 +#, php-format msgid "Step %s" msgstr "" -#: [day]title +#: ../cache/locales.php:542 msgid "Day" msgstr "Devezh" -#: [day]monday +#: ../cache/locales.php:543 msgid "Monday" msgstr "Lun" -#: [day]tuesday +#: ../cache/locales.php:544 msgid "Tuesday" msgstr "Meurzh" -#: [day]wednesday +#: ../cache/locales.php:545 msgid "Wednesday" msgstr "Merc'her" -#: [day]thursday +#: ../cache/locales.php:546 msgid "Thursday" msgstr "Yaou" -#: [day]friday +#: ../cache/locales.php:547 msgid "Friday" msgstr "Gwener" -#: [day]saturday +#: ../cache/locales.php:548 msgid "Saturday" msgstr "Sadorn" -#: [day]sunday +#: ../cache/locales.php:549 msgid "Sunday" msgstr "" -#: [gender]nil -#, fuzzy -msgctxt "[gender]nil" +#: ../cache/locales.php:550 ../cache/locales.php:559 msgid "None" msgstr "Hini ebet" -#: [gender]male +#: ../cache/locales.php:551 msgid "Male" msgstr "Paotr" -#: [gender]female +#: ../cache/locales.php:552 msgid "Female" msgstr "Plac'h" -#: [gender]other +#: ../cache/locales.php:553 msgid "Other" msgstr "All" -#: [client]bot +#: ../cache/locales.php:554 msgid "Bot" msgstr "Robot" -#: [client]desktop +#: ../cache/locales.php:555 msgid "Desktop" msgstr "Burev" -#: [client]phone +#: ../cache/locales.php:556 msgid "Phone" msgstr "Pellgomz" -#: [client]web +#: ../cache/locales.php:557 msgid "Web" msgstr "" -#: [client]registered +#: ../cache/locales.php:558 msgid "Registered" msgstr "" -#: [marital]nil -#, fuzzy -msgctxt "[marital]nil" -msgid "None" -msgstr "Hini ebet" - -#: [marital]single +#: ../cache/locales.php:560 msgid "Single" msgstr "E-unan" -#: [marital]relationship +#: ../cache/locales.php:561 msgid "In a relationship" msgstr "E kouplad" -#: [marital]married +#: ../cache/locales.php:562 msgid "Married" msgstr "Dimezet" -#: [marital]divorced +#: ../cache/locales.php:563 msgid "Divorced" msgstr "Dizimezet" -#: [marital]widowed +#: ../cache/locales.php:564 msgid "Widowed" msgstr "Intañv(ez)" -#: [marital]cohabiting +#: ../cache/locales.php:565 msgid "Cohabiting" msgstr "Kenlojañ" -#: [marital]union +#: ../cache/locales.php:566 msgid "Civil Union" msgstr "Unvaniezh keodedel" -#: [flag]white +#: ../cache/locales.php:567 msgid "Not shared" msgstr "" -#: [flag]green +#: ../cache/locales.php:568 msgid "Shared with one contact" msgstr "" -#: [flag]orange +#: ../cache/locales.php:569 msgid "Shared with all contacts" msgstr "" -#: [flag]red +#: ../cache/locales.php:570 msgid "Shared with the XMPP network" msgstr "" -#: [flag]black +#: ../cache/locales.php:571 msgid "Shared with the whole Internet" msgstr "" -#: [presence]online +#: ../cache/locales.php:572 msgid "Online" msgstr "Enlinenn" -#: [presence]away +#: ../cache/locales.php:573 msgid "Away" msgstr "Ezvezant" -#: [presence]dnd +#: ../cache/locales.php:574 msgid "Do Not Disturb" msgstr "Arabat direnkañ" -#: [presence]xa +#: ../cache/locales.php:575 msgid "Extended Away" msgstr "Ezvezant e-pad pell" -#: [presence]offline +#: ../cache/locales.php:576 msgid "Offline" msgstr "Digennasket" -#: [presence]error +#: ../cache/locales.php:577 msgid "Error" msgstr "" -#: [mood]afraid +#: ../cache/locales.php:578 msgid "afraid" msgstr "" -#: [mood]amazed +#: ../cache/locales.php:579 msgid "amazed" msgstr "" -#: [mood]amorous +#: ../cache/locales.php:580 msgid "amorous" msgstr "" -#: [mood]angry +#: ../cache/locales.php:581 msgid "angry" msgstr "" -#: [mood]annoyed +#: ../cache/locales.php:582 msgid "annoyed" msgstr "" -#: [mood]anxious +#: ../cache/locales.php:583 msgid "anxious" msgstr "" -#: [mood]aroused +#: ../cache/locales.php:584 msgid "aroused" msgstr "" -#: [mood]ashamed +#: ../cache/locales.php:585 msgid "ashamed" msgstr "" -#: [mood]bored +#: ../cache/locales.php:586 msgid "bored" msgstr "" -#: [mood]brave +#: ../cache/locales.php:587 msgid "brave" msgstr "" -#: [mood]calm +#: ../cache/locales.php:588 msgid "calm" msgstr "" -#: [mood]cautious +#: ../cache/locales.php:589 msgid "cautious" msgstr "" -#: [mood]cold +#: ../cache/locales.php:590 msgid "cold" msgstr "" -#: [mood]confident +#: ../cache/locales.php:591 msgid "confident" msgstr "" -#: [mood]confused +#: ../cache/locales.php:592 msgid "confused" msgstr "" -#: [mood]contemplative +#: ../cache/locales.php:593 msgid "contemplative" msgstr "" -#: [mood]contented +#: ../cache/locales.php:594 msgid "contented" msgstr "" -#: [mood]cranky +#: ../cache/locales.php:595 msgid "cranky" msgstr "" -#: [mood]crazy +#: ../cache/locales.php:596 msgid "crazy" msgstr "" -#: [mood]creative +#: ../cache/locales.php:597 msgid "creative" msgstr "" -#: [mood]curious +#: ../cache/locales.php:598 msgid "curious" msgstr "" -#: [mood]dejected +#: ../cache/locales.php:599 msgid "dejected" msgstr "" -#: [mood]depressed +#: ../cache/locales.php:600 msgid "depressed" msgstr "" -#: [mood]disappointed +#: ../cache/locales.php:601 msgid "disappointed" msgstr "" -#: [mood]disgusted +#: ../cache/locales.php:602 msgid "disgusted" msgstr "" -#: [mood]dismayed +#: ../cache/locales.php:603 msgid "dismayed" msgstr "" -#: [mood]distracted +#: ../cache/locales.php:604 msgid "distracted" msgstr "" -#: [mood]embarrassed +#: ../cache/locales.php:605 msgid "embarrassed" msgstr "" -#: [mood]envious +#: ../cache/locales.php:606 msgid "envious" msgstr "" -#: [mood]excited +#: ../cache/locales.php:607 msgid "excited" msgstr "" -#: [mood]flirtatious +#: ../cache/locales.php:608 msgid "flirtatious" msgstr "" -#: [mood]frustated +#: ../cache/locales.php:609 msgid "frustated" msgstr "" -#: [mood]grateful +#: ../cache/locales.php:610 msgid "grateful" msgstr "" -#: [mood]grieving +#: ../cache/locales.php:611 msgid "grieving" msgstr "" -#: [mood]grumpy +#: ../cache/locales.php:612 msgid "grumpy" msgstr "" -#: [mood]guilty +#: ../cache/locales.php:613 msgid "guilty" msgstr "" -#: [mood]happy +#: ../cache/locales.php:614 msgid "happy" msgstr "" -#: [mood]hopeful +#: ../cache/locales.php:615 msgid "hopeful" msgstr "" -#: [mood]hot +#: ../cache/locales.php:616 msgid "hot" msgstr "" -#: [mood]humbled +#: ../cache/locales.php:617 msgid "humbled" msgstr "" -#: [mood]humiliated +#: ../cache/locales.php:618 msgid "humiliated" msgstr "" -#: [mood]hungry +#: ../cache/locales.php:619 msgid "hungry" msgstr "" -#: [mood]hurt +#: ../cache/locales.php:620 msgid "hurt" msgstr "" -#: [mood]impressed +#: ../cache/locales.php:621 msgid "impressed" msgstr "" -#: [mood]in_awe +#: ../cache/locales.php:622 msgid "in awe" msgstr "" -#: [mood]in_love +#: ../cache/locales.php:623 msgid "in love" msgstr "" -#: [mood]indignant +#: ../cache/locales.php:624 msgid "indignant" msgstr "" -#: [mood]interested +#: ../cache/locales.php:625 msgid "interested" msgstr "" -#: [mood]intoxicated +#: ../cache/locales.php:626 msgid "intoxicated" msgstr "" -#: [mood]invincible +#: ../cache/locales.php:627 msgid "invincible" msgstr "" -#: [mood]jealous +#: ../cache/locales.php:628 msgid "jealous" msgstr "" -#: [mood]lonely +#: ../cache/locales.php:629 msgid "lonely" msgstr "" -#: [mood]lost +#: ../cache/locales.php:630 msgid "lost" msgstr "" -#: [mood]lucky +#: ../cache/locales.php:631 msgid "lucky" msgstr "" -#: [mood]mean +#: ../cache/locales.php:632 msgid "mean" msgstr "" -#: [mood]moody +#: ../cache/locales.php:633 msgid "moody" msgstr "" -#: [mood]nervous +#: ../cache/locales.php:634 msgid "nervous" msgstr "" -#: [mood]neutral +#: ../cache/locales.php:635 msgid "neutral" msgstr "" -#: [mood]offended +#: ../cache/locales.php:636 msgid "offended" msgstr "" -#: [mood]outraged +#: ../cache/locales.php:637 msgid "outraged" msgstr "" -#: [mood]playful +#: ../cache/locales.php:638 msgid "playful" msgstr "" -#: [mood]proud +#: ../cache/locales.php:639 msgid "proud" msgstr "" -#: [mood]relaxed +#: ../cache/locales.php:640 msgid "relaxed" msgstr "" -#: [mood]relieved +#: ../cache/locales.php:641 msgid "relieved" msgstr "" -#: [mood]restless +#: ../cache/locales.php:642 +msgid "remorseful" +msgstr "" + +#: ../cache/locales.php:643 msgid "restless" msgstr "" -#: [mood]sad +#: ../cache/locales.php:644 msgid "sad" msgstr "" -#: [mood]sarcastic +#: ../cache/locales.php:645 msgid "sarcastic" msgstr "" -#: [mood]satisfied +#: ../cache/locales.php:646 msgid "satisfied" msgstr "" -#: [mood]serious +#: ../cache/locales.php:647 msgid "serious" msgstr "" -#: [mood]shocked +#: ../cache/locales.php:648 msgid "shocked" msgstr "" -#: [mood]shy +#: ../cache/locales.php:649 msgid "shy" msgstr "" -#: [mood]sick +#: ../cache/locales.php:650 msgid "sick" msgstr "" -#: [mood]sleepy +#: ../cache/locales.php:651 msgid "sleepy" msgstr "" -#: [mood]spontaneous +#: ../cache/locales.php:652 msgid "spontaneous" msgstr "" -#: [mood]stressed +#: ../cache/locales.php:653 msgid "stressed" msgstr "" -#: [mood]strong +#: ../cache/locales.php:654 msgid "strong" msgstr "" -#: [mood]surprised +#: ../cache/locales.php:655 msgid "surprised" msgstr "" -#: [mood]thankful +#: ../cache/locales.php:656 msgid "thankful" msgstr "" -#: [mood]thirsty +#: ../cache/locales.php:657 msgid "thirsty" msgstr "" -#: [mood]tired +#: ../cache/locales.php:658 msgid "tired" msgstr "" -#: [mood]undefined +#: ../cache/locales.php:659 msgid "undefined" msgstr "" -#: [mood]weak +#: ../cache/locales.php:660 msgid "weak" msgstr "" -#: [mood]worried +#: ../cache/locales.php:661 msgid "worried" msgstr "" -#: [month]title +#: ../cache/locales.php:662 msgid "Month" msgstr "Miz" -#: [month]january +#: ../cache/locales.php:663 msgid "January" msgstr "Genver" -#: [month]february +#: ../cache/locales.php:664 msgid "February" msgstr "C'hwevrer" -#: [month]march +#: ../cache/locales.php:665 msgid "March" msgstr "Meurzh" -#: [month]april +#: ../cache/locales.php:666 msgid "April" msgstr "Ebrel" -#: [month]may +#: ../cache/locales.php:667 msgid "May" msgstr "Mae" -#: [month]june +#: ../cache/locales.php:668 msgid "June" msgstr "Even" -#: [month]july +#: ../cache/locales.php:669 msgid "July" msgstr "Gouere" -#: [month]august +#: ../cache/locales.php:670 msgid "August" msgstr "Eost" -#: [month]september +#: ../cache/locales.php:671 msgid "September" msgstr "Gwengolo" -#: [month]october +#: ../cache/locales.php:672 msgid "October" msgstr "Here" -#: [month]november +#: ../cache/locales.php:673 msgid "November" msgstr "Du" -#: [month]december +#: ../cache/locales.php:674 msgid "December" msgstr "Kerzu" -#: [year]title +#: ../cache/locales.php:675 msgid "Year" msgstr "Bloavezh" -#: [date]today +#: ../cache/locales.php:676 msgid "Today" msgstr "Hiziv" -#: [date]tomorrow +#: ../cache/locales.php:677 msgid "Tomorrow" msgstr "Warc'hoazh" -#: [date]yesterday +#: ../cache/locales.php:678 msgid "Yesterday" msgstr "Dec'h" -#: [date]ago -#, fuzzy -msgid "%d days ago" +#: ../cache/locales.php:679 +#, php-format +msgid " %d days ago" msgstr " %d devezh 'zo" -#: [date]day +#: ../cache/locales.php:680 msgid "day" msgstr "devezh" -#: [post]whats_new +#: ../cache/locales.php:682 msgid "What's new ?" msgstr "" -#: [post]place +#: ../cache/locales.php:683 msgid "Place" msgstr "" -#: [post]by +#: ../cache/locales.php:684 msgid "by" msgstr "" -#: [post]geolocalisation +#: ../cache/locales.php:685 msgid "Geolocalisation" msgstr "" -#: [post]email +#: ../cache/locales.php:686 msgid "email" msgstr "" -#: [post]no_comments +#: ../cache/locales.php:688 msgid "No comments yet" msgstr "" -#: [post]no_comments_stream +#: ../cache/locales.php:689 msgid "No comments stream" msgstr "" -#: [post]no_load +#: ../cache/locales.php:690 msgid "Your feed cannot be loaded." msgstr "Ho gwazh n'hall ket bezañ karget" -#: [post]older +#: ../cache/locales.php:691 msgid "Get older posts" msgstr "Kaout an embanadennoù kozhoc'h" -#: [post]new_items +#: ../cache/locales.php:692 +#, php-format msgid "%s new items" msgstr "" -#: [post]comment_error +#: ../cache/locales.php:693 msgid "Comment publication error" msgstr "" -#: [post]comments_older +#: ../cache/locales.php:694 msgid "Show the older comments" msgstr "" -#: [post]comments_loading -msgid "Loading comments..." +#: ../cache/locales.php:695 +msgid "Loading comments ..." msgstr "" -#: [post]comments_get +#: ../cache/locales.php:696 msgid "Get the comments" msgstr "" -#: [post]comment_add +#: ../cache/locales.php:697 msgid "Add a comment" msgstr "" -#: [post]share +#: ../cache/locales.php:698 msgid "Share with" msgstr "" -#: [post]share_everyone +#: ../cache/locales.php:699 msgid "Everyone" msgstr "" -#: [post]share_your_contacts +#: ../cache/locales.php:700 msgid "Your contacts" msgstr "" -#: [post]updated +#: ../cache/locales.php:702 msgid "Updated" msgstr "" -#: [post]content_not_found +#: ../cache/locales.php:703 msgid "Content not found" msgstr "" -#: [post]default_title +#: ../cache/locales.php:704 msgid "Contact publication" msgstr "" -#: [post]comments +#: ../cache/locales.php:705 msgid "Comments" msgstr "" -#: [api]error +#: ../cache/locales.php:706 msgid "The API is not reachable, try again later" msgstr "" -#: [field]type_here +#: ../cache/locales.php:707 msgid "Type here" msgstr "" +#, php-format #~ msgid "Cannot load element value '%s'" #~ msgstr "N'eus ket tu kargañ talvoud an elfenn '%s'" @@ -2724,8 +2601,15 @@ msgstr "" #~ msgid "Edit my Profile" #~ msgstr "Cheñch va brofil" -#~ msgid "Your server doesn't support post publication, you can only read contact's feeds" -#~ msgstr "N'eo ket meret an embannadennoù gant ho servijer, tu zo deoc'h lenn gwazhioù darempred hepken" +#~ msgid "" +#~ "Your server doesn't support post publication, you can only read contact's " +#~ "feeds" +#~ msgstr "" +#~ "N'eo ket meret an embannadennoù gant ho servijer, tu zo deoc'h lenn gwazhioù " +#~ "darempred hepken" + +#~ msgid "Remove this contact" +#~ msgstr "Tennañ an darempred" #~ msgid "Invite this user" #~ msgstr "Pediñ an implijer-mañ" @@ -2733,23 +2617,50 @@ msgstr "" #~ msgid "What is Movim?" #~ msgstr "Petra eo Movim?" -#~ msgid "Visit the page %s What is Movim ? %s to know more about the project, its aims and understand how it works." -#~ msgstr "Gwelladenniñ ar bajenn %s Petra eo Movim ? %s evit gouzout hiroc'h diwar-benn ar raktres, e pal ha kompren penaos ez a en-dro." +#, php-format +#~ msgid "" +#~ "Visit the page %s What is Movim ? %s to know more about the project, its " +#~ "aims and understand how it works." +#~ msgstr "" +#~ "Gwelladenniñ ar bajenn %s Petra eo Movim ? %s evit gouzout hiroc'h diwar-" +#~ "benn ar raktres, e pal ha kompren penaos ez a en-dro." -#~ msgid "Some features are missing/I can't do everything I used to do on other social networks" -#~ msgstr "Arc'hweladurioù a vank/N'eus ket tu din ober tout ar pezh a ran war ar rouedadoù sokial all" +#~ msgid "" +#~ "Some features are missing/I can't do everything I used to do on other social " +#~ "networks" +#~ msgstr "" +#~ "Arc'hweladurioù a vank/N'eus ket tu din ober tout ar pezh a ran war ar " +#~ "rouedadoù sokial all" -#~ msgid "Although Movim is evolving fast, many (many) features are missing. Be patient ;). You can have a look %s at next versions's roadmaps %s to know if the one you want is on its way." -#~ msgstr "Daoust m'eo prim emdroadur Movim, ur bern (bern) ac'hwelladurioù a vank. Bezit pasiant :). Tu o deoc'h sellet ouzh %s an handelv o tont %s evit gouzout m'eo war an hent an hini ho 'peus c'hoant." +#, php-format +#~ msgid "" +#~ "Although Movim is evolving fast, many (many) features are missing. Be " +#~ "patient ;). You can have a look %s at next versions's roadmaps %s to know if " +#~ "the one you want is on its way." +#~ msgstr "" +#~ "Daoust m'eo prim emdroadur Movim, ur bern (bern) ac'hwelladurioù a vank. " +#~ "Bezit pasiant :). Tu o deoc'h sellet ouzh %s an handelv o tont %s evit " +#~ "gouzout m'eo war an hent an hini ho 'peus c'hoant." -#~ msgid "Don't forget that Movim is an open source project, a helping hand is always welcome (see %s Can I participate %s)" -#~ msgstr "Na zisoñjit ket eo Movim ur raktres frank, un taol sikour a zo degemeret mat atav (gwelet %s Tu zo din kemer perzh %s)" +#, php-format +#~ msgid "" +#~ "Don't forget that Movim is an open source project, a helping hand is always " +#~ "welcome (see %s Can I participate %s)" +#~ msgstr "" +#~ "Na zisoñjit ket eo Movim ur raktres frank, un taol sikour a zo degemeret mat " +#~ "atav (gwelet %s Tu zo din kemer perzh %s)" #~ msgid "I can't find the answer to my question here" #~ msgstr "N'eus ket bet tu din kavout ar respont d'am goulenn" -#~ msgid "Go to the %s to the Frequently Asked Questions %s or come ask your question on the official chatroom %s or via our mailing-list (%s see the dedicated page %s)." -#~ msgstr "Kit d'ar %s Goulennoù Savet an Aliesañ %s pe goulennit war an tchat ofisiel %s pe dre hor mailing-list (%s sellit ar bajenn a-zere %s)" +#, php-format +#~ msgid "" +#~ "Go to the %s to the Frequently Asked Questions %s or come ask your question " +#~ "on the official chatroom %s or via our mailing-list (%s see the dedicated " +#~ "page %s)." +#~ msgstr "" +#~ "Kit d'ar %s Goulennoù Savet an Aliesañ %s pe goulennit war an tchat ofisiel " +#~ "%s pe dre hor mailing-list (%s sellit ar bajenn a-zere %s)" #~ msgid "Debug console" #~ msgstr "Koñsolenn debug" @@ -2775,6 +2686,7 @@ msgstr "" #~ msgid "No profile yet ?" #~ msgstr "Profil ebet c'hoazh ?" +#, php-format #~ msgid "Couldn't create directory '%s'." #~ msgstr "Dibosupl krouiñ an teuliad '%s'." diff --git a/sources/locales/da.po b/sources/locales/da.po index 654feb2..dcb2bbd 100644 --- a/sources/locales/da.po +++ b/sources/locales/da.po @@ -1,2772 +1,2635 @@ # Danish translations for Movim package. # This file is distributed under the same license as the Movim package. # This file was translated from CodingTeam at . -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/About/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Account/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/AccountNext/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/AdHoc/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/AdminDB/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/AdminMain/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/AdminTest/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Api/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Avatar/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Blog/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Bookmark/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Chat/locales.ini -#. #-#-#-#-# 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 -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Group/locales.ini -#. #-#-#-#-# 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 -#. #-#-#-#-# 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 -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Presence/locales.ini -#. #-#-#-#-# 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 -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Share/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Statistics/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Subscribe/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Syndication/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Upload/locales.ini -#. #-#-#-#-# 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-08-20 15:17+0200\n" +"POT-Creation-Date: 2015-06-08 22:06+0200\n" "PO-Revision-Date: 2015-05-18 08:45+0000\n" "Last-Translator: Filip Kemuel Dam Bartholdy \n" "Language-Team: LANGUAGE \n" -"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2015-06-18 21:08+0000\n" "X-Generator: Launchpad (build 17570)\n" +"Language: \n" -#: [about]thanks +#: ../cache/locales.php:2 msgid "Thanks" msgstr "Tak" -#: [about]developers +#: ../cache/locales.php:3 msgid "Developers" msgstr "Udviklere" -#: [about]translators +#: ../cache/locales.php:4 msgid "Translators" msgstr "Oversættere" -#: [about]software +#: ../cache/locales.php:5 msgid "Software" msgstr "Software" -#: [about]resources +#: ../cache/locales.php:6 msgid "Resources" msgstr "Ressourcer" -#: [about]api [schema]api [api]title +#: ../cache/locales.php:7 ../cache/locales.php:83 ../cache/locales.php:85 msgid "API" msgstr "API" -#: [about]info -msgid "Movim is an XMPP-based communication platform. All the project, except the following software and resources, is under" -msgstr "Movim er en XMPP-baseret kommunikationsplatform. Hele projektet, med undtagelse af den følgende software og ressourcer er udgivet under" +#: ../cache/locales.php:8 +msgid "" +"Movim is an XMPP-based communication platform. All the project, except the " +"following software and resources, is under" +msgstr "" +"Movim er en XMPP-baseret kommunikationsplatform. Hele projektet, med " +"undtagelse af den følgende software og ressourcer er udgivet under" -#: [account]title +#: ../cache/locales.php:9 msgid "Account" msgstr "Konto" -#: [account]password_change_title -#, fuzzy -msgid "Change my password" -msgstr "Forkert adgangskode" - -#: [account]password [db]password [credentials]password [form]password -#: [input]password -msgid "Password" -msgstr "Kodeord" - -#: [account]password_confirmation -#, fuzzy -msgid "Password confirmation" -msgstr "%s - Konfiguration" - -#: [account]password_changed +#: ../cache/locales.php:10 msgid "The password has been updated" msgstr "Kodeordet er opdateret" -#: [account]password_not_valid +#: ../cache/locales.php:11 msgid "Please provide a valid password (6 characters minimum)" msgstr "Skriv venligst et gyldigt kodeord (minimun 6 tegn)" -#: [account]password_not_same +#: ../cache/locales.php:12 msgid "The provided passwords are not the same" msgstr "De givnde kodeord er ikke ens" -#: [account]delete_title +#: ../cache/locales.php:13 msgid "Delete my account" msgstr "Slet min konto" -#: [account]delete -#, fuzzy -msgid "Delete your account" -msgstr "Slet min konto" +#: ../cache/locales.php:14 +msgid "" +"You will delete your XMPP account and all the relative information linked to " +"it (profile, contacts and publications)." +msgstr "" +"Du sletter hermed din XMPP konto og alle de relative informationer knyttet " +"til den (profil, kontakter og udgivelser)." -#: [account]delete_text -msgid "You will delete your XMPP account and all the relative information linked to it (profile, contacts and publications)." -msgstr "Du sletter hermed din XMPP konto og alle de relative informationer knyttet til den (profil, kontakter og udgivelser)." - -#: [account]delete_text_confirm +#: ../cache/locales.php:15 msgid "Are you sure that you want to delete it ?" msgstr "Er du sikker på at du vil slette den ?" -#: [account]gateway_title -msgid "Gateway" -msgstr "" - -#: [create]title [subscribe]title +#: ../cache/locales.php:16 ../cache/locales.php:411 msgid "Create a new account" msgstr "Opret en ny konto" -#: [create]notfound +#: ../cache/locales.php:17 msgid "No account creation form found on the server" msgstr "Ingen konto-oprettelses-formular fundet på serveren" -#: [create]server_on +#: ../cache/locales.php:18 ../cache/locales.php:172 msgid "on" msgstr "på" -#: [create]successfull +#: ../cache/locales.php:19 msgid "Your acccount has been successfully registered" msgstr "Success! Din konto er registreret" -#: [create]loading +#: ../cache/locales.php:20 msgid "Loading" msgstr "Indlæser" -#: [error]not_acceptable +#: ../cache/locales.php:21 msgid "Not Acceptable" msgstr "Ikke accepteret" -#: [error]service_unavailable +#: ../cache/locales.php:22 msgid "The registration system of this server is currently unavailable" msgstr "Registreringssystemet på denne server er i øjeblikket utilgængeligt" -#: [oob]about -msgid "This server use an external system for the registration, please click on the following URL." -msgstr "Denne server bruger et eksternt system til registrering, klik venligst på følgende link." +#: ../cache/locales.php:23 +msgid "" +"This server use an external system for the registration, please click on the " +"following URL." +msgstr "" +"Denne server bruger et eksternt system til registrering, klik venligst på " +"følgende link." -#: [adhoc]title +#: ../cache/locales.php:24 msgid "Actions" msgstr "Handlinger" -#: [db]legend [schema]database +#: ../cache/locales.php:25 ../cache/locales.php:82 msgid "Database" msgstr "Database" -#: [db]connect_error +#: ../cache/locales.php:26 msgid "Modl wasn't able to connect to the database" msgstr "Modl kunne ikke forbinde til databasen" -#: [db]connect_success +#: ../cache/locales.php:27 msgid "Movim is connected to the database" msgstr "Moovim er forbundet til databasen" -#: [db]update +#: ../cache/locales.php:28 msgid "The database need to be updated" msgstr "Databasen bør opdateres" -#: [db]up_to_date +#: ../cache/locales.php:29 msgid "Movim database is up to date" msgstr "Movim database er i nyeste version" -#: [db]type +#: ../cache/locales.php:30 msgid "Database Type" msgstr "Databasetype" -#: [db]username [credentials]username [input]username +#: ../cache/locales.php:31 ../cache/locales.php:50 ../cache/locales.php:540 msgid "Username" msgstr "Brugernavn" -#: [db]host +#: ../cache/locales.php:32 ../cache/locales.php:51 ../cache/locales.php:282 +#: ../cache/locales.php:541 +msgid "Password" +msgstr "Kodeord" + +#: ../cache/locales.php:33 msgid "Host" msgstr "Vært" -#: [db]port +#: ../cache/locales.php:34 msgid "Port" msgstr "Port" -#: [db]name -#, fuzzy -msgid "Database sName" +#: ../cache/locales.php:35 +msgid "Database Name" msgstr "Databasenavn" -#: [admin]general +#: ../cache/locales.php:36 msgid "General Settings" msgstr "Generelle indstillinger" -#: [general]theme +#: ../cache/locales.php:37 msgid "Theme" msgstr "Tema" -#: [general]language +#: ../cache/locales.php:38 msgid "Default language" msgstr "Standardsprog" -#: [general]log_verbosity +#: ../cache/locales.php:39 +msgid "Environment" +msgstr "Miljø" + +#: ../cache/locales.php:40 msgid "Log verbosity" msgstr "Log detaljerethed" -#: [general]timezone +#: ../cache/locales.php:41 msgid "Server Timezone" msgstr "Server tidszone" -#: [general]limit +#: ../cache/locales.php:42 msgid "User folder size limit (in bytes)" msgstr "Brugermappes maks-størrelse (i bytes)" -#: [websocket]title +#: ../cache/locales.php:43 msgid "WebSocket Configuration" msgstr "WebSocket opsætning" -#: [websocket]info +#: ../cache/locales.php:44 msgid "Enter here a valid WebSocket URI in the form" msgstr "Skriv her en gyldig WebSocket URI i formularen" -#: [websocket]label +#: ../cache/locales.php:45 msgid "WebSocket URI" msgstr "WebSocket URI" -#: [websocket]save_info -msgid "If you change the URI, please restart the daemon to reload the configuration" -msgstr "Genstart venligst daemon'en for at genindlæse opsætningen, hvis du ændrer URI'en" +#: ../cache/locales.php:46 +msgid "" +"If you change the URI, please restart the daemon to reload the configuration" +msgstr "" +"Genstart venligst daemon'en for at genindlæse opsætningen, hvis du ændrer " +"URI'en" -#: [websocket]publics +#: ../cache/locales.php:47 msgid "Public WebSockets" msgstr "Offentlige WebSockets" -#: [credentials]title +#: ../cache/locales.php:48 msgid "Administration Credential" msgstr "Administrations legitimationsstyring" -#: [credentials]info +#: ../cache/locales.php:49 msgid "Change the default credentials admin/password" msgstr "Ændre standard legitimationen admin/kodeord" -#: [credentials]re_password +#: ../cache/locales.php:52 msgid "Retype password" msgstr "Gentag adgangskode" -#: [whitelist]title +#: ../cache/locales.php:53 msgid "Whitelist - XMPP Server" msgstr "Hvidliste - XMPP server" -#: [whitelist]info1 -msgid "If you want to specify a list of authorized XMPP servers on your Movim pod and forbid the connection on all the others please put their domain name here, with comma (ex: movim.eu,jabber.fr)" -msgstr "Hvis du vil specificere en liste af autoriserede XMPP servere på din Movim pod og forbyde forbindelser på alle andre, skriv da venligst deres domænenavne her, separeret med komma (f.eks: movim.eu,jabber.dk)" +#: ../cache/locales.php:54 +msgid "" +"If you want to specify a list of authorized XMPP servers on your Movim pod " +"and forbid the connection on all the others please put their domain name " +"here, with comma (ex: movim.eu,jabber.fr)" +msgstr "" +"Hvis du vil specificere en liste af autoriserede XMPP servere på din Movim " +"pod og forbyde forbindelser på alle andre, skriv da venligst deres " +"domænenavne her, separeret med komma (f.eks: movim.eu,jabber.dk)" -#: [whitelist]info2 -msgid "Leave this field blank if you allow the access to all the XMPP accounts." -msgstr "Efterlad dette felt tomt hvis du vil tillade adgang til alle XMPP konti." +#: ../cache/locales.php:55 +msgid "" +"Leave this field blank if you allow the access to all the XMPP accounts." +msgstr "" +"Efterlad dette felt tomt hvis du vil tillade adgang til alle XMPP konti." -#: [whitelist]label +#: ../cache/locales.php:56 msgid "List of whitelisted XMPP servers" msgstr "Liste over hvidlistede XMPP servere" -#: [information]title -#, fuzzy -msgctxt "[information]title" +#: ../cache/locales.php:57 ../cache/locales.php:61 msgid "Information Message" msgstr "Informationsbesked" -#: [information]description +#: ../cache/locales.php:58 msgid "Description" msgstr "Beskrivelse" -#: [information]info1 +#: ../cache/locales.php:59 msgid "This message will be displayed on the login page" msgstr "Denne meddelselse vil blive vist på logind siden" -#: [information]info2 -#, fuzzy -msgid "Leave this field blank if you dont want to show any message." +#: ../cache/locales.php:60 +msgid "Leave this field blank if you don't want to show any message." msgstr "Efterlad feltet tomt hvis du ikke vil vise nogen beskedl" -#: [information]label -#, fuzzy -msgctxt "[information]label" -msgid "Information Message" -msgstr "Informationsbesked" - -#: [log]empty +#: ../cache/locales.php:62 msgid "Empty" msgstr "Tomt" -#: [log]syslog +#: ../cache/locales.php:63 msgid "Syslog" msgstr "Syslog" -#: [log]syslog_files +#: ../cache/locales.php:64 msgid "Syslog and files" msgstr "Syslog og filer" -#: [rewrite]title +#: ../cache/locales.php:65 msgid "URL Rewriting" msgstr "URL omskrivning" -#: [rewrite]info +#: ../cache/locales.php:66 msgid "The URL Rewriting can be enabled" msgstr "URL omskrivning kan slås til" -#: [admin]compatibility +#: ../cache/locales.php:67 msgid "General Overview" msgstr "Generel oversigt" -#: [compatibility]info -msgid "Movim has found some issues or things that need to be fixed or improved" -msgstr "Movim har fundet nogle problemer, eller ting der har brug for at blive ordnet eller forbedret" +#: ../cache/locales.php:68 +msgid "" +"Movim has found some issues or things that need to be fixed or improved" +msgstr "" +"Movim har fundet nogle problemer, eller ting der har brug for at blive " +"ordnet eller forbedret" -#: [compatibility]php1 +#: ../cache/locales.php:69 +#, php-format msgid "Update your PHP-Version: %s" msgstr "Opdater din PHP-version: %s" -#: [compatibility]php2 +#: ../cache/locales.php:70 msgid "Required: 5.3.0" msgstr "Kræver: 5.3.0" -#: [compatibility]curl +#: ../cache/locales.php:71 msgid "Install the php5-curl library" msgstr "Installer php5-curl biblioteket" -#: [compatibility]imagick +#: ../cache/locales.php:72 msgid "Install the php5-imagick library" msgstr "Installer php5-imagick biblioteket" -#: [compatibility]gd +#: ../cache/locales.php:73 msgid "Install the php5-gd library" msgstr "" -#: [compatibility]rights -#, fuzzy -msgid "Read and write rights for the webserver in Movims root directory" +#: ../cache/locales.php:74 +msgid "Read and write rights for the webserver in Movim's root directory" msgstr "Læse og skrive rettigheder på webserveren i Movim's rodmappe" -#: [compatibility]rewrite +#: ../cache/locales.php:75 msgid "The URL Rewriting support is currently disabled" msgstr "URL omskrivnings understøttelse er i øjeblikket slået fra" -#: [compatibility]db +#: ../cache/locales.php:76 msgid "The database need to be updated, go to the database panel to fix this" msgstr "" -#: [compatibility]websocket -msgid "WebSocket connection error, check if the Movim Daemon is running and is reachable" +#: ../cache/locales.php:77 +msgid "" +"WebSocket connection error, check if the Movim Daemon is running and is " +"reacheable" msgstr "" -#: [compatibility]xmpp_websocket -msgid "XMPP Websocket connection error, please check the validity of the URL given in the General Configuration" +#: ../cache/locales.php:78 +msgid "" +"XMPP Websocket connection error, please check the validity of the URL given " +"in the General Configuration" msgstr "" -#: [schema]browser +#: ../cache/locales.php:79 msgid "Browser" msgstr "" -#: [schema]movim +#: ../cache/locales.php:80 msgid "Movim Core" msgstr "" -#: [schema]daemon +#: ../cache/locales.php:81 msgid "Movim Daemon" msgstr "" -#: [schema]xmpp +#: ../cache/locales.php:84 msgid "XMPP" msgstr "" -#: [api]info -msgid "Here you can register your pod on the official %sMovim API%s and be listed on %sthe pods page%s." -msgstr "Her kan du registrere din pod på den officielle %sMovim API%s og blive listet på %spod siden%s." +#: ../cache/locales.php:86 +#, php-format +msgid "" +"Here you can register your pod on the official %sMovim API%s and be listed " +"on %sthe pods page%s." +msgstr "" +"Her kan du registrere din pod på den officielle %sMovim API%s og blive " +"listet på %spod siden%s." -#: [api]register +#: ../cache/locales.php:87 msgid "Your pod is not registered on the API" msgstr "Din pod er ikke registreret på API'en" -#: [api]registered +#: ../cache/locales.php:88 msgid "Your pod is registered on the API" msgstr "Din pod er registreret på API'en" -#: [api]wait +#: ../cache/locales.php:89 msgid "Your pod is not yet validated" msgstr "Din pod er ikke valideret endnu" -#: [api]validated +#: ../cache/locales.php:90 msgid "Your pod is validated" msgstr "Din pod er valideret" -#: [api]unregister -msgid "You asked to be removed from the API, this request will be processed in a couple of hours" -msgstr "Du har spurgt om at blive fjernet fra API'en, denne forespørgsel vil blive behandlet i løbet af et par timer" +#: ../cache/locales.php:91 +msgid "" +"You asked to be removed from the API, this request will be processed in a " +"couple of hours" +msgstr "" +"Du har spurgt om at blive fjernet fra API'en, denne forespørgsel vil blive " +"behandlet i løbet af et par timer" -#: [api]conf_updated [config]updated +#: ../cache/locales.php:92 ../cache/locales.php:147 msgid "Configuration updated" msgstr "Opsætning opdateret" -#: [avatar]file +#: ../cache/locales.php:93 msgid "File" msgstr "Fil" -#: [avatar]use_it +#: ../cache/locales.php:94 msgid "Use it" msgstr "Brug den" -#: [avatar]webcam +#: ../cache/locales.php:95 msgid "Webcam" msgstr "Webkamera" -#: [avatar]cheese +#: ../cache/locales.php:96 msgid "Cheese !" msgstr "Smiil !" -#: [avatar]snapshot +#: ../cache/locales.php:97 msgid "Take a webcam snapshot" msgstr "Tag et webcam billede" -#: [avatar]updated +#: ../cache/locales.php:98 msgid "Avatar Updated" msgstr "Avatar opdateret" -#: [avatar]not_updated +#: ../cache/locales.php:99 msgid "Avatar Not Updated" msgstr "Avatar ikke opdateret" -#: [blog]title [feed]title +#: ../cache/locales.php:100 ../cache/locales.php:415 +#, php-format msgid "%s's feed" msgstr "%s's feed" -#: [blog]empty +#: ../cache/locales.php:101 msgid "This user has not posted anything right now" msgstr "Denne bruger har ikke postet noget endnu" -#: [title]conferences +#: ../cache/locales.php:102 msgid "Conferences" msgstr "Konferencer" -#: [title]groups [group]empty_title [menu]groups [page]groups +#: ../cache/locales.php:103 ../cache/locales.php:193 ../cache/locales.php:217 +#: ../cache/locales.php:468 msgid "Groups" msgstr "Grupper" -#: [chatroom]add +#: ../cache/locales.php:104 msgid "Add a new Chat Room" msgstr "Tilføj et nyt chatroom" -#: [chatroom]id [chatrooms]id +#: ../cache/locales.php:105 ../cache/locales.php:368 msgid "Chat Room ID" msgstr "Chat Room ID" -#: [chatroom]name -#, fuzzy -msgctxt "[chatroom]name" +#: ../cache/locales.php:106 ../cache/locales.php:116 ../cache/locales.php:156 +#: ../cache/locales.php:361 ../cache/locales.php:369 ../cache/locales.php:424 msgid "Name" msgstr "Navn" -#: [chatroom]nickname [general]nickname [chatrooms]nickname +#: ../cache/locales.php:107 ../cache/locales.php:157 ../cache/locales.php:371 +#: ../cache/locales.php:425 msgid "Nickname" msgstr "Kaldenavn" -#: [chatroom]autojoin_label +#: ../cache/locales.php:108 msgid "Do you want do join automaticaly this Chat Room ?" msgstr "Vil du automatisk joine dette Chatroom" -#: [chatroom]bad_id [chatrooms]bad_id +#: ../cache/locales.php:109 ../cache/locales.php:372 msgid "Bad Chatroom ID" msgstr "Dårligt Chatroom ID" -#: [chatroom]empty_name [chatrooms]empty_name +#: ../cache/locales.php:110 ../cache/locales.php:373 msgid "Empty name" msgstr "Tomt navn" -#: [bookmarks]updated +#: ../cache/locales.php:111 ../cache/locales.php:380 msgid "Bookmarks updated" msgstr "Bogmærker opdateret" -#: [bookmarks]error -#, fuzzy -msgid "An error occured :" +#: ../cache/locales.php:112 +msgid "An error occured : " msgstr "En fejl er sket: " -#: [bookmarks]configure +#: ../cache/locales.php:113 msgid "Configure" msgstr "Indstil" -#: [url]add +#: ../cache/locales.php:114 msgid "Add a new URL" msgstr "Tilføj en ny URL" -#: [url]url +#: ../cache/locales.php:115 msgid "URL" msgstr "URL" -#: [url]name -#, fuzzy -msgctxt "[url]name" -msgid "Name" -msgstr "Navn" - -#: [message]published +#: ../cache/locales.php:117 msgid "Message Published" msgstr "Besked publiceret" -#: [message]encrypted +#: ../cache/locales.php:118 ../cache/locales.php:138 msgid "Encrypted message" msgstr "Krypteret meddelelse" -#: [message]composing [chats]composing +#: ../cache/locales.php:119 msgid "Composing..." msgstr "Sammensætter..." -#: [message]paused [chats]paused +#: ../cache/locales.php:120 msgid "Paused..." msgstr "Sat i pause..." -#: [message]gone +#: ../cache/locales.php:121 msgid "Contact gone" msgstr "Kontakt er væk" -#: [chat]attention +#: ../cache/locales.php:122 +#, php-format msgid "%s needs your attention" msgstr "%s har brug for din opmærksomhed" -#: [chat]placeholder +#: ../cache/locales.php:123 msgid "Your message here..." msgstr "Din besked her..." -#: [chat]smileys +#: ../cache/locales.php:124 msgid "Smileys" msgstr "Smileyer" -#: [chat]empty_title [button]chat +#: ../cache/locales.php:125 ../cache/locales.php:139 msgid "Chat" msgstr "Chat" -#: [chat]empty_text +#: ../cache/locales.php:126 msgid "Discuss with your contacts" msgstr "Snak med dine kontakter" -#: [chat]frequent [chats]frequent -msgid "Frequent contacts" -msgstr "Ofte brugte kontakter" - -#: [chatroom]members +#: ../cache/locales.php:127 msgid "Members" msgstr "Medlemmer" -#: [chatroom]connected [chatrooms]connected +#: ../cache/locales.php:128 ../cache/locales.php:376 msgid "Connected to the chatroom" msgstr "Forbundet til chatroom'et" -#: [chatroom]disconnected [chatrooms]disconnected +#: ../cache/locales.php:129 ../cache/locales.php:377 msgid "Disconnected from the chatroom" msgstr "Afkoblet fra chatroom'et" -#: [chatroom]config [group]configuration [page]configuration +#: ../cache/locales.php:130 ../cache/locales.php:200 ../cache/locales.php:469 msgid "Configuration" msgstr "Opsætning" -#: [chatroom]config_saved +#: ../cache/locales.php:131 msgid "Configuration saved" msgstr "Opsætning gemt" -#: [chatroom]subject +#: ../cache/locales.php:132 msgid "Subject" msgstr "Emne" -#: [chatroom]subject_changed +#: ../cache/locales.php:133 msgid "Subject changed" msgstr "Emnet er ændret" -#: [chats]empty_title -#, fuzzy -msgid "No chats yet..." -msgstr "Ingen kommentarer endnu" - -#: [chats]empty -#, fuzzy -msgid "Open a new conversation by clicking on the plus button bellow or visit the Contacts page." +#: ../cache/locales.php:134 +msgid "Open a new conversation by clicking on the plus button bellow" msgstr "Åbn en ny samtale ved at klikke på plus knappen herunder" -#: [chats]add +#: ../cache/locales.php:135 msgid "Chat with a contact" msgstr "Snak med en kontakt" -#: [chats]more +#: ../cache/locales.php:136 +msgid "Frequent contacts" +msgstr "Ofte brugte kontakter" + +#: ../cache/locales.php:137 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" -msgstr "" - -#: [config]general +#: ../cache/locales.php:140 msgid "General" msgstr "Generelt" -#: [config]language +#: ../cache/locales.php:141 msgid "Language" msgstr "Sprog" -#: [config]roster +#: ../cache/locales.php:142 msgid "Roster display" msgstr "" -#: [config]roster_show +#: ../cache/locales.php:143 msgid "Show the offline contacts" msgstr "Vis offline kontakter" -#: [config]roster_hide +#: ../cache/locales.php:144 msgid "Hide the offline contacts" msgstr "Skjul offline kontakter" -#: [config]appearence +#: ../cache/locales.php:145 msgid "Appearence" msgstr "Udseende" -#: [config]info -#, fuzzy -msgid "This configuration is shared wherever you are connected" +#: ../cache/locales.php:146 +msgid "This configuration is shared wherever you are connected !" msgstr "Denne opsætning er delt hver gang du er forbundet !" -#: [notifications]message +#: ../cache/locales.php:148 msgid "Notify on incoming message" msgstr "Giv besked om indkomne beskeder" -#: [notifications]desktop +#: ../cache/locales.php:149 msgid "Use desktop notifications" msgstr "Brug skrivebordsmeddelelser" -#: [general]legend [general]general_title +#: ../cache/locales.php:150 +msgid "Data" +msgstr "Data" + +#: ../cache/locales.php:151 +msgid "Cache" +msgstr "" + +#: ../cache/locales.php:152 ../cache/locales.php:218 ../cache/locales.php:466 +msgid "Contacts" +msgstr "" + +#: ../cache/locales.php:153 ../cache/locales.php:480 +msgid "Posts" +msgstr "" + +#: ../cache/locales.php:154 +msgid "Messages" +msgstr "" + +#: ../cache/locales.php:155 ../cache/locales.php:423 msgid "General Informations" msgstr "Generelle informationer" -#: [general]name [public_groups]name [chatrooms]name -msgid "Name" -msgstr "Navn" - -#: [general]date_of_birth +#: ../cache/locales.php:158 ../cache/locales.php:427 msgid "Date of Birth" msgstr "Fødselsdag" -#: [general]gender +#: ../cache/locales.php:159 ../cache/locales.php:428 msgid "Gender" msgstr "" -#: [general]marital +#: ../cache/locales.php:160 ../cache/locales.php:429 msgid "Marital Status" msgstr "" -#: [general]email +#: ../cache/locales.php:161 ../cache/locales.php:426 msgid "Email" msgstr "E-mail" -#: [general]website +#: ../cache/locales.php:162 ../cache/locales.php:430 msgid "Website" msgstr "Internetside" -#: [general]about +#: ../cache/locales.php:163 ../cache/locales.php:431 msgid "About Me" msgstr "Om mig" -#: [general]accounts +#: ../cache/locales.php:164 msgid "Other Accounts" msgstr "Andre konti" -#: [general]tune +#: ../cache/locales.php:165 msgid "Is Listening" msgstr "Lytter" -#: [position]legend [position]position_title +#: ../cache/locales.php:166 ../cache/locales.php:432 msgid "Geographic Position" msgstr "Geografisk placering" -#: [position]locality +#: ../cache/locales.php:167 ../cache/locales.php:433 msgid "Locality" msgstr "Lokalitet" -#: [position]country +#: ../cache/locales.php:168 ../cache/locales.php:434 msgid "Country" msgstr "Land" -#: [mood]title +#: ../cache/locales.php:169 msgid "Mood" msgstr "Humør" -#: [mood]im +#: ../cache/locales.php:170 msgid "I'm " msgstr "Jeg " -#: [listen]title +#: ../cache/locales.php:171 msgid "Listening" msgstr "Lytter" -#: [last]title +#: ../cache/locales.php:173 msgid "Last seen" msgstr "Sidst set" -#: [client]title +#: ../cache/locales.php:174 msgid "Client Informations" msgstr "Klient infomatiner" -#: [explore]last_registered +#: ../cache/locales.php:175 msgid "Last registered" msgstr "Sidst registreret" -#: [explore]explore +#: ../cache/locales.php:176 msgid "Find some new friends" msgstr "Find nogle nye venner" -#: [edit]title [button]edit +#: ../cache/locales.php:177 ../cache/locales.php:533 msgid "Edit" msgstr "Redigér" -#: [edit]alias +#: ../cache/locales.php:178 msgid "Alias" msgstr "Alias" -#: [edit]group +#: ../cache/locales.php:179 msgid "Group" msgstr "Gruppe" -#: [edit]updated [roster]updated +#: ../cache/locales.php:180 ../cache/locales.php:400 msgid "Contact updated" msgstr "Kontakt opdateret" -#: [delete]title +#: ../cache/locales.php:181 msgid "Are you sure?" msgstr "Er du sikker?" -#: [delete]text -msgid "You are going to delete one of your contacts, please confirm your action" -msgstr "Du er ved at slette en af dine kontakter, bekræft venligts din handling" +#: ../cache/locales.php:182 +msgid "" +"You are going to delete one of your contacts, please confirm your action" +msgstr "" +"Du er ved at slette en af dine kontakter, bekræft venligts din handling" -#: [age]years +#: ../cache/locales.php:183 +#, php-format msgid "%s years" msgstr "%s år" -#: [blog]last +#: ../cache/locales.php:184 msgid "Last public post" msgstr "Sidste offentige indlæg" -#: [subscription]to -#, fuzzy -msgid "You can see this contact status" -msgstr "Intet offentligt feed for kontakt" - -#: [subscription]to_button -msgid "Share my status" -msgstr "" - -#: [subscription]to_text -msgid "But this contact cannot see yours" -msgstr "" - -#: [subscription]from -#, fuzzy -msgid "You are not subscribed to this contact" -msgstr "Du er ved at afmelde dig fra denne gruppe" - -#: [subscription]from_button -#, fuzzy -msgid "Ask to subscribe" -msgstr "%s tilmeldte" - -#: [subscription]from_text -msgid "But this contact can still see if you are online" -msgstr "" - -#: [subscription]nil -#, fuzzy -msgid "No subscriptions" -msgstr "Tilmeldinger" - -#: [subscription]nil_button -msgid "Invite" -msgstr "" - -#: [subscription]nil_text -msgid "This contact is in your contact list but there is no subscriptions between the two accounts" -msgstr "" - -#: [group]subscribe +#: ../cache/locales.php:185 msgid "Subscribe" msgstr "Abonnér" -#: [group]subscribed +#: ../cache/locales.php:186 msgid "Subscribed" msgstr "Tilmeldt" -#: [group]unsubscribe +#: ../cache/locales.php:187 msgid "Unsubscribe" msgstr "Afmeld" -#: [group]unsubscribe_text +#: ../cache/locales.php:188 msgid "You are going to unsubscribe from this Group" msgstr "Du er ved at afmelde dig fra denne gruppe" -#: [group]unsubscribed +#: ../cache/locales.php:189 msgid "Unsubscribed" msgstr "Afmeldt" -#: [group]share_label +#: ../cache/locales.php:190 msgid "Make your membership to this group public to your friends" msgstr "Gør dit mnedlemskab af denne fruppe offentligt for dine venner" -#: [group]label_label +#: ../cache/locales.php:191 msgid "Give a label for this group" msgstr "Giv denne gruppe en label" -#: [group]sure +#: ../cache/locales.php:192 msgid "Are you sure ?" msgstr "Er du sikker ?" -#: [group]empty_text +#: ../cache/locales.php:194 msgid "Discover, follow and share" msgstr "Opdag, følg og del" -#: [group]empty +#: ../cache/locales.php:195 msgid "Something bad happened to this group" msgstr "Noget skidt er sket med denne gruppe" -#: [group]config_saved +#: ../cache/locales.php:196 msgid "Group configuration saved" msgstr "Gruppe opsætning gemt" -#: [group]delete_title +#: ../cache/locales.php:197 msgid "Delete the group" msgstr "Slet denne gruppe" -#: [group]delete_text -msgid "You are going to delete the following group. Please confirm your action." +#: ../cache/locales.php:198 +msgid "" +"You are going to delete the following group. Please confirm your action." msgstr "Du er ved at slette følgende gruppe. Bekræft venligst din handling." -#: [group]delete_clean_text -msgid "It seems that this group doesn't exists anymore. Do you want to remove it from your subscriptions?" -msgstr "Det ser ud til at denne gruppe ikke eksisterer mere. Vil du fjerne den fra dine tilmeldinger?" - -#: [group]counter -msgid "%s groups on this server" +#: ../cache/locales.php:199 +msgid "" +"It seems that this group doesn't exists anymore. Do you want to remove it " +"from your subscriptions?" msgstr "" +"Det ser ud til at denne gruppe ikke eksisterer mere. Vil du fjerne den fra " +"dine tilmeldinger?" -#: [group]subscriptions [statistics]subscriptions +#: ../cache/locales.php:201 ../cache/locales.php:408 msgid "Subscriptions" msgstr "Tilmeldinger" -#: [group]servers -#, fuzzy -msgid "Groups servers" -msgstr "Grupper" - -#: [group]search_server -msgid "Search for a new server" -msgstr "" - -#: [group]help_info1 -msgid "Groups are the perfect way to share posts about topics that you like with all the other Movim's users." -msgstr "" - -#: [group]help_info2 -msgid "Choose a server and a Group and subscribe to it using the %s button in the header. You can also create a new one using the %s button." -msgstr "" - -#: [group]help_info3 -msgid "Done? You can now publish a new post in the Group by using the %s button." -msgstr "" - -#: [group]help_info4 -msgid "You will find a list of all your subscribed Groups in My Subscriptions and receive instantly all the new incoming posts in the %sNews%s page." -msgstr "" - -#: [groups]empty_title +#: ../cache/locales.php:202 ../cache/locales.php:290 msgid "Hello" msgstr "Hej" -#: [groups]contact_post [hello]contact_post [menu]contact_post +#: ../cache/locales.php:203 ../cache/locales.php:225 ../cache/locales.php:291 msgid "Contact post" msgstr "Kontakt indlæg" -#: [groups]empty_text1 -msgid "You don't have any subscriptions yet, select a group server above to start exploring." -msgstr "Du har ingen abonnementer endnu, vælg en gruppe server herover for at begynde at gå på opdagelse." +#: ../cache/locales.php:204 +msgid "" +"You don't have any subscriptions yet, select a group server above to start " +"exploring." +msgstr "" +"Du har ingen abonnementer endnu, vælg en gruppe server herover for at " +"begynde at gå på opdagelse." -#: [groups]empty_text2 +#: ../cache/locales.php:205 msgid "Subscribe to your favorite feeds by bookmarking them." msgstr "Tilmled dig til dine favorit feeds ved at bogmærke dem." -#: [groups]subscriptions +#: ../cache/locales.php:206 msgid "My Subscriptions" msgstr "Mine tilmeldinger" -#: [groups]add +#: ../cache/locales.php:207 msgid "Create a new Group" msgstr "Opret en ny gruppe" -#: [groups]name +#: ../cache/locales.php:208 msgid "Group name" msgstr "Gruppenavn" -#: [groups]name_example +#: ../cache/locales.php:209 msgid "My Little Pony - Fan Club" msgstr "My Little Pony - Fan Klub" -#: [groups]created +#: ../cache/locales.php:210 msgid "Group created successfully" msgstr "Gruppe er oprettet" -#: [groups]deleted +#: ../cache/locales.php:211 msgid "Group deleted successfully" msgstr "Gruppe er slettet" -#: [groups]name_error +#: ../cache/locales.php:212 msgid "Please provide a valid group name (4 characters minimum)" msgstr "" -#: [groups]no_creation +#: ../cache/locales.php:213 msgid "You cannot create a new Group on this server" msgstr "" -#: [groups]sub +#: ../cache/locales.php:214 +#, php-format msgid "%s subscribers" msgstr "%s tilmeldte" -#: [groups]num +#: ../cache/locales.php:215 +#, php-format msgid "%s posts" msgstr "%s indlæg" -#: [groups]disco_error -msgid "This server doesn't exists" -msgstr "" - -#: [menu]all +#: ../cache/locales.php:216 msgid "All" msgstr "Alle" -#: [menu]refresh +#: ../cache/locales.php:219 msgid "Refresh all the streams" msgstr "Genopfrisk alle strømmene" -#: [roster]search -#, fuzzy -msgid "Search in your contacts" -msgstr "Snak med dine kontakter" - -#: [hello]active_contacts -#, fuzzy -msgid "Active contacts" -msgstr "Dine kontakter" - -#: [hello]chat -msgid "Go on the Chat page" -msgstr "Gå til Chat siden" - -#: [hello]news [page]news -msgid "News" -msgstr "Nyheder" - -#: [hello]news_page -msgid "Read all theses articles on the News page" -msgstr "Læs alle disse artikler på nyhedssiden" - -#: [hello]blog_title -msgid "Visit your public blog" -msgstr "Besøg din offentlig blog" - -#: [hello]blog_text -msgid "See your public posts and share them with all your contacts" -msgstr "Se dine offentlig indlæg og del dem med alle dine kontakter" - -#: [hello]share_title -msgid "Universal share button" -msgstr "Universel dele-knap" - -#: [hello]share_text -msgid "Bookmark or drag and drop the following button in your toolbar and use it on all the pages you want to share on Movim" -msgstr "Bogmærk eller træk og slip følgende knap ind på din værktøjslinje og brug den på alle de sider du gerne vil dele på Movim" - -#: [hello]share_button -msgid "Share on Movim" -msgstr "Del på Movim" - -#: [help]faq -msgid "Frequently Asked Questions" -msgstr "Ofte stillede spørgsmål" - -#: [banner]title -msgid "What do the little banners refer to ?" -msgstr "Hvad refererer de små bannere til ?" - -#: [banner]info1 -msgid "Thanks to these five little banners, you can quickly identitfy the level of confdentiality applied to the information you provide." -msgstr "Takket være disse fem små bannere, kan du hurtigt identificere niveauet af fortrolighed der tillæges den information du giver." - -#: [banner]white -msgid "White, only you can see the information" -msgstr "Hvid, kun du kan se denne information" - -#: [banner]green -msgid "Green, you have chosen some contacts who can see your information" -msgstr "Grøn, du har valgt nogle kontakter der kan se din information" - -#: [banner]orange -msgid "Orange, all your contact list can see your information" -msgstr "Orange, alle dine kontakter kan se din information" - -#: [banner]red -msgid "Red, everybody in the XMPP network can see your information" -msgstr "Rød, alle på XMPP-netværket kan se din information" - -#: [banner]black -msgid "Black, the whole Internet can see your information" -msgstr "Sort, hele internettet kan se din information" - -#: [wiki]question -msgid "Looking for some documentation ?" -msgstr "Leder du efter dokumentation ?" - -#: [wiki]button -msgid "Read the Wiki" -msgstr "Læs Wiki'en" - -#: [ml]question -msgid "Talk with us by email ?" -msgstr "Skriv til os på email ?" - -#: [ml]button -msgid "Join the Mailing List" -msgstr "Tilmeld dig maillisten" - -#: [chatroom]question -msgid "Chat with the team ?" -msgstr "Chat med teamet ?" - -#: [chatroom]button -msgid "Join the Chatroom" -msgstr "Gå ind i chatrummet" - -#: [init]location -msgid "Location node created" -msgstr "Placerings node oprettet" - -#: [init]bookmark -msgid "Bookmark node created" -msgstr "Bogmærke node oprettet" - -#: [init]vcard4 -msgid "Profile node created" -msgstr "Profil node oprettet" - -#: [init]avatar -msgid "Avatar node created" -msgstr "Avatar node oprettet" - -#: [init]subscriptions -msgid "Subscriptions node created" -msgstr "Tilmeldings node oprettet" - -#: [init]microblog -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" - -#: [error]jid -msgid "Invalid JID" -msgstr "Ugyldig JID" - -#: [error]empty_challenge -msgid "Empty Challenge from the server" -msgstr "Tom Challenge fra serveren" - -#: [error]dns -msgid "XMPP Domain error, your account is not a correct Jabber ID" -msgstr "XMPP domænefejl, din konto er ikke et rigtigt Jabber ID" - -#: [error]data_missings -msgid "Some data are missing !" -msgstr "Nogle data manger !" - -#: [error]wrong_password -msgid "Wrong password" -msgstr "Forkert adgangskode" - -#: [error]internal -msgid "Internal server error" -msgstr "Intern serverfejl" - -#: [error]session -msgid "Session error" -msgstr "Sessionsfejl" - -#: [error]account_created -msgid "Account successfully created" -msgstr "Konto er oprettet" - -#: [error]xmpp_unauthorized -#, fuzzy -msgctxt "[error]xmpp_unauthorized" -msgid "Your XMPP server is unauthorized" -msgstr "Din XMPP server er ikke tilladt" - -#: [error]mec_error -msgid "The server takes too much time to respond" -msgstr "Serveren er for lang tid om at svare" - -#: [error]too_old -msgid "Your web browser is too old to use with Movim." -msgstr "Din internet browser er for gammel til at bruge Movim." - -#: [error]websocket -msgid "Movim cannot talk with the server, please try again later (Websocket connection error)" -msgstr "Movim kan ikke kommunikere med serveren, prøv venligst igen senere (Websocket forbindelsesfejl)" - -#: [error]impossible -msgid "Impossible login" -msgstr "Login ikke muligt" - -#: [error]title -msgid "Oops!" -msgstr "Uups!" - -#: [error]default [visio]unknown_error -msgid "Unknown error" -msgstr "Ukendt fejl" - -#: [error]login_format -msgid "Invalid username format" -msgstr "Ugyldigt brugernavn" - -#: [error]password_format -msgid "Invalid password format" -msgstr "Ugyldigt kodeord" - -#: [error]unauthorized -#, fuzzy -msgctxt "[error]unauthorized" -msgid "Your XMPP server is unauthorized" -msgstr "Din XMPP server er ikke tilladt" - -#: [error]conflict -msgid "A Movim session is already open on an other device" -msgstr "En Movim session er allerede åben på en anden enhed" - -#: [error]wrong_account -msgid "Movim failed to authenticate. You entered wrong data" -msgstr "Movim kunne ikke autentificere sig. Du indtastede forkert data" - -#: [error]mechanism -msgid "Authentication mechanism not supported by Movim" -msgstr "Autentificerings mekanismen er ikke understøttet af Movim" - -#: [error]fail_auth -msgid "The XMPP authentification failed" -msgstr "XMMP autetifikationen fejlede" - -#: [account]title [accounts]accounts_title -msgid "Accounts" -msgstr "Konti" - -#: [form]username -msgid "My address" -msgstr "Min adresse" - -#: [form]create_one -msgid "Create one !" -msgstr "Opret en !" - -#: [form]another_account -msgid "Another account" -msgstr "En anden konto" - -#: [form]no_account -msgid "No account yet ?" -msgstr "Ingen konto endnu ?" - -#: [form]whitelist.info -msgid "You can login with accounts from theses servers" -msgstr "Du kan logge ind med konti fra disse servere" - -#: [form]connected -msgid "Connected" -msgstr "Forbundet" - -#: [form]population -msgid "Population" -msgstr "Befolkning" - -#: [menu]empty_title -#, fuzzy -msgid "No news yet..." -msgstr "Ingen kommentarer endnu" - -#: [menu]empty -#, fuzzy -msgid "Welcome on your news feed, here you will see all the posts published by your contacts and in the groups you have subscribed." -msgstr "Velkommen til din egen nyhedsfeed, her kan du se alle de indlæg der er publiceret i de grupper du er tilmeldt." - -#: [menu]refresh -msgid "Refreshing all the streams" -msgstr "Genopfriksker alle strømmende" - -#: [menu]public -msgid "This post is public" -msgstr "Dette indlæg er offentligt" - -#: [affiliations]title -msgid "Manage your members" -msgstr "Administrér dine medlemmer" - -#: [affiliations]get -msgid "Get the members" -msgstr "Hent medlemmerne" - -#: [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" - -#: [notifs]title -msgid "Pending Invitations" -msgstr "Ventende invitationer" - -#: [notifs]wants_to_talk -msgid "%s wants to talk with you" -msgstr "%s vil gerne snakke med dig" - -#: [notifs]manage -msgid "Manage" -msgstr "Administrér" - -#: [post]news_feed -msgid "News Feed" -msgstr "Nyhedsfeed" - -#: [post]placeholder -msgid "Discover and register to the groups you are interested in" -msgstr "Opdag og tilmeld gig til de grupper du er interreseret i" - -#: [post]preview [page]preview -msgid "Preview" -msgstr "Forhåndsvisning" - -#: [post]help [page]help -msgid "Help" -msgstr "Hjælp" - -#: [post]help_more -msgid "More help" -msgstr "Mere hjælp" - -#: [post]help_manual -msgid "Markdown syntax manual" -msgstr "Markdown syntaks manual" - -#: [post]title -msgid "Title" -msgstr "Titel" - -#: [post]content -msgid "Content" -msgstr "Indhold" - -#: [post]link -msgid "Link" -msgstr "Link" - -#: [post]tags -msgid "Tags" -msgstr "Tags" - -#: [post]valid_url [publish]valid_url -msgid "Please enter a valid url" -msgstr "Skriv venligst en gyldig url" - -#: [post]no_content_preview [publish]no_content_preview -msgid "No content to preview" -msgstr "Intet indhold at forhåndsvise" - -#: [post]no_content [publish]no_content [post]empty -msgid "No content" -msgstr "Intet indhold" - -#: [post]published -msgid "Post published" -msgstr "Indlæg udgivet" - -#: [post]deleted -msgid "Post deleted" -msgstr "Indlæg slettet" - -#: [post]gallery -msgid "This picture will be added to your gallery" -msgstr "Dette billede vil blive tilføjet til dit galleri" - -#: [post]hot -msgid "What's Hot" -msgstr "Hvad er hot" - -#: [post]hot_text -msgid "Posts recently published in Groups that you are not subscribed (yet)" -msgstr "" - -#: [post]new [publish]new -msgid "New post" -msgstr "Nyt indlæg" - -#: [post]embed_tip -msgid "You can also use services like Imgur or Flickr to host your picture and paste the link here." -msgstr "Du kan også bruge tjenester som Imgur eller Flickr til at hoste dit billede og så indsætte et link her." - -#: [post]repost -msgid "This is a re-post from %s" -msgstr "" - -#: [post]repost_profile -msgid "See %s profile" -msgstr "" - -#: [post]public -#, fuzzy -msgid "Publish this post publicly?" -msgstr "Udgiv dette indlæg i dit offentlige feed?" - -#: [post]blog_add -msgid "Post published on your blog" -msgstr "Indlæg udgivet på din blog" - -#: [post]blog_remove -msgid "Post removed from your blog" -msgstr "Indlæg fjernet fra din blog" - -#: [post]delete_title [post]delete -msgid "Delete this post" -msgstr "Slet dette indlæg" - -#: [post]delete_text -msgid "You are going to delete this post, please confirm your action" -msgstr "Du er ved at slette dette indlæg, bekræft venligst din handling" - -#: [post]comments_disabled -msgid "Comments disabled" -msgstr "Kommentarer slået fra" - -#: [post]comment_published -msgid "Comment published" -msgstr "Kommentar udgivet" - -#: [status]disconnect -msgid "Disconnect" -msgstr "Afbryd" - -#: [status]here -msgid "Your status here !" -msgstr "Din status her !" - -#: [status]updated -msgid "Status updated" -msgstr "Status opdateret" - -#: [status]status -msgid "Status" -msgstr "Status" - -#: [status]presence -msgid "Presence" -msgstr "Tilstedeværelse" - -#: [status]online -msgid "Online with Movim" -msgstr "" - -#: [publish]title -msgid "Publish" -msgstr "" - -#: [publish]attach -msgid "Add a file or a picture to your post" -msgstr "" - -#: [publish]no_publication -msgid "You cannot publish a post on this Group" -msgstr "" - -#: [publish]form_filled -msgid "Some fields have been filled in. Do you still want to go back and loose their content?" -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" - -#: [rooms]empty_text1 -msgid "You don't have any chatroom yet." -msgstr "Du har ikke nogen chatrum endnu." - -#: [rooms]empty_text2 -msgid "Add one by clicking on the add button in the header." -msgstr "Tilføj et ved at klikke på tilføj knappen i headeren." - -#: [chatrooms]title -msgid "Chatrooms" -msgstr "Chatrum" - -#: [chatrooms]name_placeholder -msgid "My Favorite Room" -msgstr "Mit favoritrum" - -#: [chatrooms]users -msgid "Users in the room" -msgstr "Brugere i rummet" - -#: [chatrooms]bad_nickname -msgid "Please enter a correct nickname (2 to 40 characters)" -msgstr "" - -#: [room]anonymous_title -msgid "Public chatroom" -msgstr "" - -#: [room]no_room -msgid "Please provide a room address" -msgstr "" - -#: [room]anonymous_text1 -msgid "You are currently logued as an anonymous user." -msgstr "" - -#: [room]anonymous_text2 -msgid "You can join using your own account or create one on the login page by loging out using the cross in the top-right corner." -msgstr "" - -#: [room]anonymous_login -msgid "Login on %s" -msgstr "" - -#: [room]nick -msgid "Your nickname" -msgstr "" - -#: [roster]ungrouped -msgid "Ungrouped" -msgstr "Ikke grupperet" - -#: [roster]show_disconnected -msgid "Show disconnected contacts" -msgstr "Vis offline kontakter" - -#: [roster]hide_disconnected -msgid "Hide disconnected contacts" -msgstr "Skjul offline kontaker" - -#: [roster]show_group -msgid "Show group %s" -msgstr "Vis gruppen %s" - -#: [roster]hide_group -msgid "Hide group %s" -msgstr "Skjul gruppen %s" - -#: [roster]jid_error -msgid "Please enter a valid Jabber ID" -msgstr "Skriv venligst et gyldigt Jabber ID" - -#: [roster]no_contacts_title -#, fuzzy -msgid "No contacts ?" -msgstr "Dine kontakter" - -#: [roster]no_contacts_text -#, fuzzy -msgid "You can add one using the + button bellow" -msgstr "Inken kontakter ? Du kan tilføje nogen med + knappen herunder eller via Opdag siden" - -#: [roster]show_hide -msgid "Show/Hide" -msgstr "Vis/skjul" - -#: [roster]add_contact_info1 -msgid "Enter the Jabber ID of your contact." -msgstr "Skriv Jabber ID'et på din kontakt." - -#: [roster]add_contact_info2 -msgid "Press enter to validate." -msgstr "Tryk enter vor at validere." - -#: [roster]jid -msgid "JID" -msgstr "JID" - -#: [roster]results -msgid "Results" -msgstr "Resultater" - -#: [roster]added -msgid "Contact added" -msgstr "Kontakt tilføjet" - -#: [roster]deleted -msgid "Contact deleted" -msgstr "Kontakt slettet" - -#: [roster]search +#: ../cache/locales.php:220 ../cache/locales.php:402 msgid "Search" msgstr "Søg" -#: [share]error +#: ../cache/locales.php:221 +msgid "Go on the Chat page" +msgstr "Gå til Chat siden" + +#: ../cache/locales.php:222 +msgid "Read all theses articles on the News page" +msgstr "Læs alle disse artikler på nyhedssiden" + +#: ../cache/locales.php:223 +msgid "Visit your public blog" +msgstr "Besøg din offentlig blog" + +#: ../cache/locales.php:224 +msgid "See your public posts and share them with all your contacts" +msgstr "Se dine offentlig indlæg og del dem med alle dine kontakter" + +#: ../cache/locales.php:226 +msgid "Universal share button" +msgstr "Universel dele-knap" + +#: ../cache/locales.php:227 +msgid "" +"Bookmark or drag and drop the following button in your toolbar and use it on " +"all the pages you want to share on Movim" +msgstr "" +"Bogmærk eller træk og slip følgende knap ind på din værktøjslinje og brug " +"den på alle de sider du gerne vil dele på Movim" + +#: ../cache/locales.php:228 +msgid "Share on Movim" +msgstr "Del på Movim" + +#: ../cache/locales.php:229 +msgid "Frequently Asked Questions" +msgstr "Ofte stillede spørgsmål" + +#: ../cache/locales.php:230 +msgid "What do the little banners refer to ?" +msgstr "Hvad refererer de små bannere til ?" + +#: ../cache/locales.php:231 +msgid "" +"Thanks to these five little banners, you can quickly identitfy the level of " +"confdentiality applied to the information you provide." +msgstr "" +"Takket være disse fem små bannere, kan du hurtigt identificere niveauet af " +"fortrolighed der tillæges den information du giver." + +#: ../cache/locales.php:232 +msgid "White, only you can see the information" +msgstr "Hvid, kun du kan se denne information" + +#: ../cache/locales.php:233 +msgid "Green, you have chosen some contacts who can see your information" +msgstr "Grøn, du har valgt nogle kontakter der kan se din information" + +#: ../cache/locales.php:234 +msgid "Orange, all your contact list can see your information" +msgstr "Orange, alle dine kontakter kan se din information" + +#: ../cache/locales.php:235 +msgid "Red, everybody in the XMPP network can see your information" +msgstr "Rød, alle på XMPP-netværket kan se din information" + +#: ../cache/locales.php:236 +msgid "Black, the whole Internet can see your information" +msgstr "Sort, hele internettet kan se din information" + +#: ../cache/locales.php:237 +msgid "Looking for some documentation ?" +msgstr "Leder du efter dokumentation ?" + +#: ../cache/locales.php:238 +msgid "Read the Wiki" +msgstr "Læs Wiki'en" + +#: ../cache/locales.php:239 +msgid "Talk with us by email ?" +msgstr "Skriv til os på email ?" + +#: ../cache/locales.php:240 +msgid "Join the Mailing List" +msgstr "Tilmeld dig maillisten" + +#: ../cache/locales.php:241 +msgid "Chat with the team ?" +msgstr "Chat med teamet ?" + +#: ../cache/locales.php:242 +msgid "Join the Chatroom" +msgstr "Gå ind i chatrummet" + +#: ../cache/locales.php:243 +msgid "Location node created" +msgstr "Placerings node oprettet" + +#: ../cache/locales.php:244 +msgid "Bookmark node created" +msgstr "Bogmærke node oprettet" + +#: ../cache/locales.php:245 +msgid "Profile node created" +msgstr "Profil node oprettet" + +#: ../cache/locales.php:246 +msgid "Avatar node created" +msgstr "Avatar node oprettet" + +#: ../cache/locales.php:247 +msgid "Subscriptions node created" +msgstr "Tilmeldings node oprettet" + +#: ../cache/locales.php:248 +msgid "Microblog node created" +msgstr "Mikroblog node oprettet" + +#: ../cache/locales.php:249 +msgid "Location" +msgstr "Placering" + +#: ../cache/locales.php:250 +msgid "Wrong position" +msgstr "Forkert placering" + +#: ../cache/locales.php:251 +msgid "Location updated" +msgstr "Placering opdateret" + +#: ../cache/locales.php:252 +msgid "Update my position" +msgstr "Opdater min placering" + +#: ../cache/locales.php:253 +msgid "Wrong username" +msgstr "Forkert brugernavn" + +#: ../cache/locales.php:254 +msgid "Invalid JID" +msgstr "Ugyldig JID" + +#: ../cache/locales.php:255 +msgid "Empty Challenge from the server" +msgstr "Tom Challenge fra serveren" + +#: ../cache/locales.php:256 +msgid "XMPP Domain error, your account is not a correct Jabber ID" +msgstr "XMPP domænefejl, din konto er ikke et rigtigt Jabber ID" + +#: ../cache/locales.php:257 +msgid "Some data are missing !" +msgstr "Nogle data manger !" + +#: ../cache/locales.php:258 +msgid "Wrong password" +msgstr "Forkert adgangskode" + +#: ../cache/locales.php:259 +msgid "Internal server error" +msgstr "Intern serverfejl" + +#: ../cache/locales.php:260 +msgid "Session error" +msgstr "Sessionsfejl" + +#: ../cache/locales.php:261 +msgid "Account successfully created" +msgstr "Konto er oprettet" + +#: ../cache/locales.php:262 ../cache/locales.php:271 +msgid "Your XMPP server is unauthorized" +msgstr "Din XMPP server er ikke tilladt" + +#: ../cache/locales.php:263 +msgid "The server takes too much time to respond" +msgstr "Serveren er for lang tid om at svare" + +#: ../cache/locales.php:264 +msgid "Your web browser is too old to use with Movim." +msgstr "Din internet browser er for gammel til at bruge Movim." + +#: ../cache/locales.php:265 +msgid "" +"Movim cannot talk with the server, please try again later (Websocket " +"connection error)" +msgstr "" +"Movim kan ikke kommunikere med serveren, prøv venligst igen senere " +"(Websocket forbindelsesfejl)" + +#: ../cache/locales.php:266 +msgid "Impossible login" +msgstr "Login ikke muligt" + +#: ../cache/locales.php:267 +msgid "Oops!" +msgstr "Uups!" + +#: ../cache/locales.php:268 ../cache/locales.php:449 ../cache/locales.php:455 +msgid "Unknown error" +msgstr "Ukendt fejl" + +#: ../cache/locales.php:269 +msgid "Invalid username format" +msgstr "Ugyldigt brugernavn" + +#: ../cache/locales.php:270 +msgid "Invalid password format" +msgstr "Ugyldigt kodeord" + +#: ../cache/locales.php:272 +msgid "A Movim session is already open on an other device" +msgstr "En Movim session er allerede åben på en anden enhed" + +#: ../cache/locales.php:273 +msgid "Movim failed to authenticate. You entered wrong data" +msgstr "Movim kunne ikke autentificere sig. Du indtastede forkert data" + +#: ../cache/locales.php:274 +msgid "Authentication mechanism not supported by Movim" +msgstr "Autentificerings mekanismen er ikke understøttet af Movim" + +#: ../cache/locales.php:275 +msgid "The XMPP authentification failed" +msgstr "XMMP autetifikationen fejlede" + +#: ../cache/locales.php:276 +#, php-format +msgid "" +"You can login with Facebook (chat only) using %syour.id@chat.facebook.com%s " +"and your password" +msgstr "" +"Du kan logge ind med Facebook (kun chat) med %sdin.id@chat.facebook.com%s og " +"dit kodeord" + +#: ../cache/locales.php:277 +#, php-format +msgid "%sGmail accounts are also compatible%s but are not fully supported" +msgstr "%sGmail konti er også kompatible%s men ikke fuldt understøttede" + +#: ../cache/locales.php:278 +msgid "You can login using your favorite Jabber account" +msgstr "Du kan logge ind med din favorit Jabber konto" + +#: ../cache/locales.php:279 +msgid "or with our demonstration account" +msgstr "eller med vores demonstrations konto" + +#: ../cache/locales.php:280 ../cache/locales.php:435 +msgid "Accounts" +msgstr "Konti" + +#: ../cache/locales.php:281 +msgid "My address" +msgstr "Min adresse" + +#: ../cache/locales.php:283 +msgid "Create one !" +msgstr "Opret en !" + +#: ../cache/locales.php:284 +msgid "No account yet ?" +msgstr "Ingen konto endnu ?" + +#: ../cache/locales.php:285 +msgid "Another account" +msgstr "En anden konto" + +#: ../cache/locales.php:286 +msgid "You can login with accounts from theses servers" +msgstr "Du kan logge ind med konti fra disse servere" + +#: ../cache/locales.php:287 +msgid "Connected" +msgstr "Forbundet" + +#: ../cache/locales.php:288 +msgid "Population" +msgstr "Befolkning" + +#: ../cache/locales.php:289 +msgid "Bad nickname (between 4 and 40 characters)" +msgstr "" + +#: ../cache/locales.php:292 +msgid "" +"Welcome on your news feed, here you will see all the posts published in the " +"groups you have subscribed." +msgstr "" +"Velkommen til din egen nyhedsfeed, her kan du se alle de indlæg der er " +"publiceret i de grupper du er tilmeldt." + +#: ../cache/locales.php:293 +msgid "Refreshing all the streams" +msgstr "Genopfriksker alle strømmende" + +#: ../cache/locales.php:294 +msgid "This post is public" +msgstr "Dette indlæg er offentligt" + +#: ../cache/locales.php:295 +msgid "Manage your members" +msgstr "Administrér dine medlemmer" + +#: ../cache/locales.php:296 +msgid "Get the members" +msgstr "Hent medlemmerne" + +#: ../cache/locales.php:297 +msgid "Affiliations saved" +msgstr "Tilknytninger gemt" + +#: ../cache/locales.php:298 +msgid "Manage your subscriptions" +msgstr "Administrér dine tilmeldinger" + +#: ../cache/locales.php:299 +msgid "Manage the subscriptions" +msgstr "Administrér tilmeldingerne" + +#: ../cache/locales.php:300 +msgid "Get the subscriptions" +msgstr "Hent tilmeldingerne" + +#: ../cache/locales.php:301 +msgid "Subscriptions saved" +msgstr "Tilmeding gemt" + +#: ../cache/locales.php:302 +msgid "Pending Invitations" +msgstr "Ventende invitationer" + +#: ../cache/locales.php:303 +#, php-format +msgid "%s wants to talk with you" +msgstr "%s vil gerne snakke med dig" + +#: ../cache/locales.php:304 +msgid "Manage" +msgstr "Administrér" + +#: ../cache/locales.php:305 ../cache/locales.php:338 +msgid "News Feed" +msgstr "Nyhedsfeed" + +#: ../cache/locales.php:306 ../cache/locales.php:339 +msgid "Discover and register to the groups you are interested in" +msgstr "Opdag og tilmeld gig til de grupper du er interreseret i" + +#: ../cache/locales.php:307 ../cache/locales.php:340 ../cache/locales.php:482 +msgid "Preview" +msgstr "Forhåndsvisning" + +#: ../cache/locales.php:308 ../cache/locales.php:341 ../cache/locales.php:478 +msgid "Help" +msgstr "Hjælp" + +#: ../cache/locales.php:309 ../cache/locales.php:342 +msgid "More help" +msgstr "Mere hjælp" + +#: ../cache/locales.php:310 ../cache/locales.php:343 +msgid "Markdown syntax manual" +msgstr "Markdown syntaks manual" + +#: ../cache/locales.php:311 ../cache/locales.php:344 ../cache/locales.php:681 +msgid "Title" +msgstr "Titel" + +#: ../cache/locales.php:312 ../cache/locales.php:345 +msgid "Content" +msgstr "Indhold" + +#: ../cache/locales.php:313 ../cache/locales.php:346 +msgid "Link" +msgstr "Link" + +#: ../cache/locales.php:314 ../cache/locales.php:347 +msgid "Tags" +msgstr "Tags" + +#: ../cache/locales.php:315 ../cache/locales.php:348 +msgid "Please enter a valid url" +msgstr "Skriv venligst en gyldig url" + +#: ../cache/locales.php:316 ../cache/locales.php:349 +msgid "No content to preview" +msgstr "Intet indhold at forhåndsvise" + +#: ../cache/locales.php:317 ../cache/locales.php:350 ../cache/locales.php:687 +msgid "No content" +msgstr "Intet indhold" + +#: ../cache/locales.php:318 ../cache/locales.php:351 +msgid "Post published" +msgstr "Indlæg udgivet" + +#: ../cache/locales.php:319 ../cache/locales.php:352 +msgid "Post deleted" +msgstr "Indlæg slettet" + +#: ../cache/locales.php:320 ../cache/locales.php:353 +msgid "This picture will be added to your gallery" +msgstr "Dette billede vil blive tilføjet til dit galleri" + +#: ../cache/locales.php:321 ../cache/locales.php:354 +msgid "What's Hot" +msgstr "Hvad er hot" + +#: ../cache/locales.php:322 ../cache/locales.php:355 +msgid "New post" +msgstr "Nyt indlæg" + +#: ../cache/locales.php:323 ../cache/locales.php:357 +msgid "" +"You can also use services like Imgur or Flickr to host your picture and " +"paste the link here." +msgstr "" +"Du kan også bruge tjenester som Imgur eller Flickr til at hoste dit billede " +"og så indsætte et link her." + +#: ../cache/locales.php:324 +#, php-format +msgid "This is a re-post from %s" +msgstr "" + +#: ../cache/locales.php:325 +#, php-format +msgid "See %s profile" +msgstr "" + +#: ../cache/locales.php:326 +msgid "Publish this post on your public feed?" +msgstr "Udgiv dette indlæg i dit offentlige feed?" + +#: ../cache/locales.php:327 +msgid "Post published on your blog" +msgstr "Indlæg udgivet på din blog" + +#: ../cache/locales.php:328 +msgid "Post removed from your blog" +msgstr "Indlæg fjernet fra din blog" + +#: ../cache/locales.php:329 ../cache/locales.php:701 +msgid "Delete this post" +msgstr "Slet dette indlæg" + +#: ../cache/locales.php:330 +msgid "You are going to delete this post, please confirm your action" +msgstr "Du er ved at slette dette indlæg, bekræft venligst din handling" + +#: ../cache/locales.php:331 +msgid "Comments disabled" +msgstr "Kommentarer slået fra" + +#: ../cache/locales.php:332 +msgid "Comment published" +msgstr "Kommentar udgivet" + +#: ../cache/locales.php:333 +msgid "Disconnect" +msgstr "Afbryd" + +#: ../cache/locales.php:334 +msgid "Your status here !" +msgstr "Din status her !" + +#: ../cache/locales.php:335 +msgid "Status updated" +msgstr "Status opdateret" + +#: ../cache/locales.php:336 +msgid "Status" +msgstr "Status" + +#: ../cache/locales.php:337 +msgid "Presence" +msgstr "Tilstedeværelse" + +#: ../cache/locales.php:356 +msgid "Publish" +msgstr "" + +#: ../cache/locales.php:358 +msgid "You cannot publish a post on this Group" +msgstr "" + +#: ../cache/locales.php:359 +msgid "" +"Some fields have been filled in. Do you still want to go back and loose " +"their content?" +msgstr "" + +#: ../cache/locales.php:360 +msgid "Shared" +msgstr "Delt" + +#: ../cache/locales.php:362 +#, php-format +msgid "%s has been added to your public groups" +msgstr "%s er blevet tilføjet til dine offentlige grupper" + +#: ../cache/locales.php:363 +#, php-format +msgid "%s has been removed from your public groups" +msgstr "%s er blevet fjernet fra dine offentlige grupper" + +#: ../cache/locales.php:364 +msgid "Add a chatroom" +msgstr "Tilføj et chatrum" + +#: ../cache/locales.php:365 +msgid "You don't have any chatroom yet." +msgstr "Du har ikke nogen chatrum endnu." + +#: ../cache/locales.php:366 +msgid "Add one by clicking on the add button in the header." +msgstr "Tilføj et ved at klikke på tilføj knappen i headeren." + +#: ../cache/locales.php:367 +msgid "Chatrooms" +msgstr "Chatrum" + +#: ../cache/locales.php:370 +msgid "My Favorite Room" +msgstr "Mit favoritrum" + +#: ../cache/locales.php:374 +msgid "Remove a chatroom" +msgstr "Fjern et chatrum" + +#: ../cache/locales.php:375 +msgid "" +"You are going to remove the following chatroom. Please confirm your action." +msgstr "Du er ved at fjerne følgende chatrum. Bekræft venligst din handling." + +#: ../cache/locales.php:378 +msgid "Users in the room" +msgstr "Brugere i rummet" + +#: ../cache/locales.php:379 +msgid "Please enter a correct nickname (6 to 40 characters)" +msgstr "" + +#: ../cache/locales.php:381 +msgid "Public chatroom" +msgstr "" + +#: ../cache/locales.php:382 +msgid "Please provide a room address" +msgstr "" + +#: ../cache/locales.php:383 +msgid "You are currently logued as an anonymous user." +msgstr "" + +#: ../cache/locales.php:384 +msgid "" +"You can join using your own account or create one on the login page by " +"loging out using the cross in the top-right corner." +msgstr "" + +#: ../cache/locales.php:385 +#, php-format +msgid "Login on %s" +msgstr "" + +#: ../cache/locales.php:386 +msgid "Your nickname" +msgstr "" + +#: ../cache/locales.php:387 +msgid "Ungrouped" +msgstr "Ikke grupperet" + +#: ../cache/locales.php:388 +msgid "Show disconnected contacts" +msgstr "Vis offline kontakter" + +#: ../cache/locales.php:389 +msgid "Hide disconnected contacts" +msgstr "Skjul offline kontaker" + +#: ../cache/locales.php:390 +#, php-format +msgid "Show group %s" +msgstr "Vis gruppen %s" + +#: ../cache/locales.php:391 +#, php-format +msgid "Hide group %s" +msgstr "Skjul gruppen %s" + +#: ../cache/locales.php:392 +msgid "Please enter a valid Jabber ID" +msgstr "Skriv venligst et gyldigt Jabber ID" + +#: ../cache/locales.php:393 +msgid "" +"No contacts ? You can add one using the + button bellow or going to the " +"Explore page" +msgstr "" +"Inken kontakter ? Du kan tilføje nogen med + knappen herunder eller via " +"Opdag siden" + +#: ../cache/locales.php:394 +msgid "Show/Hide" +msgstr "Vis/skjul" + +#: ../cache/locales.php:395 +msgid "Enter the Jabber ID of your contact." +msgstr "Skriv Jabber ID'et på din kontakt." + +#: ../cache/locales.php:396 +msgid "Press enter to validate." +msgstr "Tryk enter vor at validere." + +#: ../cache/locales.php:397 +msgid "JID" +msgstr "JID" + +#: ../cache/locales.php:398 +msgid "Results" +msgstr "Resultater" + +#: ../cache/locales.php:399 +msgid "Contact added" +msgstr "Kontakt tilføjet" + +#: ../cache/locales.php:401 +msgid "Contact deleted" +msgstr "Kontakt slettet" + +#: ../cache/locales.php:403 msgid "This is not a valid url" msgstr "Dette er ikke en gyldig url" -#: [share]success +#: ../cache/locales.php:404 msgid "Sharing the URL" msgstr "Dele URL'en" -#: [statistics]title +#: ../cache/locales.php:405 msgid "Statistics" msgstr "Statistikker" -#: [statistics]since +#: ../cache/locales.php:406 msgid "Since" msgstr "Siden" -#: [statistics]sessions +#: ../cache/locales.php:407 msgid "Sessions" msgstr "Sessioner" -#: [statistics]monthly_sub +#: ../cache/locales.php:409 msgid "Monthly Subscriptions" msgstr "Månedlige tilmeldinger" -#: [statistics]monthly_sub_cum +#: ../cache/locales.php:410 msgid "Monthly Subscriptions Cumulated" msgstr "Måndelige tilmeldinger akkumuleret" -#: [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" +#: ../cache/locales.php:412 +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" -#: [subscribe]server_question +#: ../cache/locales.php:413 msgid "Your server here ?" msgstr "Din server her ?" -#: [subscribe]server_contact +#: ../cache/locales.php:414 msgid "Contact us to add yours to the officially supported servers list" -msgstr "Kontakt os for at tilføje din til den officielt understøttede serverliste" +msgstr "" +"Kontakt os for at tilføje din til den officielt understøttede serverliste" -#: [feed]nope +#: ../cache/locales.php:416 msgid "No public feed for this contact" msgstr "Intet offentligt feed for kontakt" -#: [feed]nope_contact +#: ../cache/locales.php:417 msgid "No contact specified" msgstr "Ingen kontakt specificeret" -#: [upload]title -#, fuzzy -msgid "Upload a file" -msgstr "Upload" - -#: [upload]choose -msgid "Choose a file to upload" -msgstr "" - -#: [vcard]title [page]profile +#: ../cache/locales.php:418 ../cache/locales.php:473 msgid "Profile" msgstr "Profil" -#: [vcard]updated +#: ../cache/locales.php:419 msgid "Profile Updated" msgstr "Profil opdateret" -#: [vcard]not_updated +#: ../cache/locales.php:420 msgid "Profile Not Updated" msgstr "Profil ikke opdateret" -#: [vcard]public +#: ../cache/locales.php:421 msgid "Your profile is now public" msgstr "Din profil er nu offentlig" -#: [vcard]restricted +#: ../cache/locales.php:422 msgid "Your profile is now restricted" msgstr "Din profil er nu begrænset" -#: [general]nickname -#, fuzzy -msgctxt "[general]nickname" -msgid "Nickname" -msgstr "Kaldenavn" - -#: [accounts]twitter +#: ../cache/locales.php:436 msgid "Twitter" msgstr "Twitter" -#: [accounts]skype +#: ../cache/locales.php:437 msgid "Skype" msgstr "Skype" -#: [accounts]yahoo +#: ../cache/locales.php:438 msgid "Yahoo" msgstr "Yahoo" -#: [accounts]accounts_nickname -#, fuzzy -msgctxt "[accounts]accounts_nickname" -msgid "Nickname" -msgstr "Kaldenavn" - -#: [accounts]accounts_yahoo -#, fuzzy -msgid "Yahoo Account" -msgstr "Konto" - -#: [privacy]privacy_title +#: ../cache/locales.php:439 msgid "Privacy Level" msgstr "Privatlivs niveau" -#: [privacy]privacy_question +#: ../cache/locales.php:440 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." -msgstr "Overvej venligst ! Ved at gøre din profil offentlig, bliver al information herunder tilgængelig for alle Movim brugere og på hele internettet." +#: ../cache/locales.php:441 +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." +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 -msgid "Submit" -msgstr "Indsend" - -#: [save]reset [button]reset -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 +#: ../cache/locales.php:442 msgid "Call" msgstr "Ring op" -#: [visio]hang_up +#: ../cache/locales.php:443 msgid "Hang up" msgstr "Læg på" -#: [visio]connection +#: ../cache/locales.php:444 msgid "Connection" msgstr "Forbindelse" -#: [global]no_js +#: ../cache/locales.php:445 ../cache/locales.php:451 +msgid "Hung up" +msgstr "Lagde på" + +#: ../cache/locales.php:446 ../cache/locales.php:452 +msgid "Your contact is busy" +msgstr "Din kontakt er optaget" + +#: ../cache/locales.php:447 ../cache/locales.php:453 +msgid "Declined" +msgstr "Afslået" + +#: ../cache/locales.php:448 ../cache/locales.php:454 +msgid "Remote application incompatible" +msgstr "Programmet i den anden ende er ikke kompatibel" + +#: ../cache/locales.php:450 ../cache/locales.php:456 +msgid "Is calling you" +msgstr "ringer til dig" + +#: ../cache/locales.php:457 msgid "You don't have javascript enabled. Good luck with that." msgstr "Du har ikke Javascript slået til. Held og lykke med det." -#: [global]description -msgid "Movim is a kickass distributed social networking platform that protect your privacy an comes with a set of awesome features." -msgstr "Movim er en brandgod distribueret socialt netværks-platform, der beskytter dit privatliv og kommer med et sæt af ærefrygtindgydende features." +#: ../cache/locales.php:458 +msgid "" +"Movim is a kickass distributed social networking platform that protect your " +"privacy an comes with a set of awesome features." +msgstr "" +"Movim er en brandgod distribueret socialt netværks-platform, der beskytter " +"dit privatliv og kommer med et sæt af ærefrygtindgydende features." -#: [page]administration +#: ../cache/locales.php:459 msgid "Administration" msgstr "Administration" -#: [page]home +#: ../cache/locales.php:460 msgid "Home" msgstr "Start" -#: [page]discover +#: ../cache/locales.php:461 msgid "Discover" msgstr "Opdag" -#: [page]explore +#: ../cache/locales.php:462 msgid "Explore" msgstr "Udforsk" -#: [page]account_creation +#: ../cache/locales.php:463 msgid "Account Creation" msgstr "Konto oprettelse" -#: [page]avatar +#: ../cache/locales.php:464 +msgid "News" +msgstr "Nyheder" + +#: ../cache/locales.php:465 msgid "Avatar" msgstr "Profilbillede" -#: [page]chats +#: ../cache/locales.php:467 msgid "Chats" msgstr "Chats" -#: [page]server +#: ../cache/locales.php:470 msgid "Server" msgstr "Server" -#: [page]public_groups +#: ../cache/locales.php:471 msgid "Public Groups" msgstr "Offentlige grupper" -#: [page]viewer +#: ../cache/locales.php:472 msgid "Viewer" msgstr "Fremviser" -#: [page]media +#: ../cache/locales.php:474 msgid "Media" msgstr "Medier" -#: [page]blog +#: ../cache/locales.php:475 msgid "Blog" msgstr "Blog" -#: [page]about +#: ../cache/locales.php:476 msgid "About" msgstr "Om" -#: [page]login +#: ../cache/locales.php:477 msgid "Login" msgstr "Log ind" -#: [page]feed +#: ../cache/locales.php:479 msgid "Feed" msgstr "Kilde" -#: [page]gallery +#: ../cache/locales.php:481 msgid "Gallery" msgstr "Galleri" -#: [page]visio +#: ../cache/locales.php:483 msgid "Visio-conference" msgstr "Visio-konference" -#: [page]pods +#: ../cache/locales.php:484 msgid "Pods" msgstr "Pods" -#: [page]share +#: ../cache/locales.php:485 msgid "Share" msgstr "Del" -#: [page]room +#: ../cache/locales.php:486 msgid "Room" msgstr "" -#: [error]error +#: ../cache/locales.php:487 +#, php-format msgid "Error: %s" msgstr "Fejl: '%s'" -#: [error]cannot_load_file +#: ../cache/locales.php:488 +#, php-format msgid "Cannot load file '%s'" msgstr "Kan ikke indlæse fil '%s'" -#: [error]route +#: ../cache/locales.php:489 +#, php-format msgid "Route error, please set all the parameters for the page %s" msgstr "Rutefejl, sæt venligst alle parametre for siden %s" -#: [error]widget_load_error +#: ../cache/locales.php:490 +#, php-format msgid "Requested widget '%s' doesn't exist." msgstr "Efterspurgte widget '%s' eksisterer ikke." -#: [error]widget_call_error +#: ../cache/locales.php:491 +#, php-format msgid "Requested event '%s' not registered." msgstr "Efterspurgte event '%s' er ikke registreret" -#: [error]whoops +#: ../cache/locales.php:492 msgid "Whoops!" msgstr "Hovsa!" -#: [error]media_not_found +#: ../cache/locales.php:493 msgid "It seem that you don't have any pictures here?" msgstr "Det ser ud til at du ikke har noget billede her?" -#: [error]media_ask_upload +#: ../cache/locales.php:494 msgid "You can try to upload a couple by going to the Media page" msgstr "Du kan prøve at uploade et par stykker på Medie siden" -#: [title]about +#: ../cache/locales.php:495 +#, php-format msgid "%s - About" msgstr "%s - Om" -#: [title]account +#: ../cache/locales.php:496 +#, php-format msgid "%s - Account" msgstr "%s - Konto" -#: [title]administration +#: ../cache/locales.php:497 +#, php-format msgid "%s - Administration Panel" msgstr "%s - Adminstrationspanel" -#: [title]blog +#: ../cache/locales.php:498 +#, php-format msgid "%s - Blog" msgstr "%s - Blog" -#: [title]configuration +#: ../cache/locales.php:499 +#, php-format msgid "%s - Configuration" msgstr "%s - Konfiguration" -#: [title]discover +#: ../cache/locales.php:500 +#, php-format msgid "%s - Discover" msgstr "%s - Opdag" -#: [title]explore +#: ../cache/locales.php:501 +#, php-format msgid "%s - Explore" msgstr "%s - Udforsk" -#: [title]help +#: ../cache/locales.php:502 +#, php-format msgid "%s - Help Page" msgstr "%s - Hjælp side" -#: [title]login +#: ../cache/locales.php:503 +#, php-format msgid "%s - Login to Movim" msgstr "%s - Log Ind til Movim" -#: [title]main +#: ../cache/locales.php:504 +#, php-format msgid "%s - Welcome to Movim" msgstr "%s - Velkommen til Movim" -#: [title]media +#: ../cache/locales.php:505 +#, php-format msgid "%s - Media" msgstr "%s - Medier" -#: [title]news +#: ../cache/locales.php:506 +#, php-format msgid "%s - News" msgstr "%s - Nyheder" -#: [title]node_configuration +#: ../cache/locales.php:507 +#, php-format msgid "%s - Group Configuration" msgstr "%s - Guppe opsætning" -#: [title]node +#: ../cache/locales.php:508 +#, php-format msgid "%s - Group" msgstr "%s - Gruppe" -#: [title]not_found +#: ../cache/locales.php:509 +#, php-format msgid "%s - 404" msgstr "%s - 404" -#: [title]profile +#: ../cache/locales.php:510 +#, php-format msgid "%s - Profile" msgstr "%s - Profil" -#: [title]server +#: ../cache/locales.php:511 +#, php-format msgid "%s - Server" msgstr "%s - Server" -#: [button]validate +#: ../cache/locales.php:512 msgid "Validate" msgstr "Validér" -#: [button]refresh +#: ../cache/locales.php:513 msgid "Refresh" msgstr "Genopfrisk" -#: [button]add +#: ../cache/locales.php:514 msgid "Add" msgstr "Tilføj" -#: [button]delete +#: ../cache/locales.php:515 msgid "Delete" msgstr "Slet" -#: [button]cancel +#: ../cache/locales.php:516 +msgid "Remove" +msgstr "Fjern" + +#: ../cache/locales.php:517 msgid "Cancel" msgstr "Annullér" -#: [button]close +#: ../cache/locales.php:518 msgid "Close" msgstr "Luk" -#: [button]update +#: ../cache/locales.php:519 msgid "Update" msgstr "Opdatér" -#: [button]updating +#: ../cache/locales.php:520 msgid "Updating" msgstr "Opdatérer" -#: [button]submitting +#: ../cache/locales.php:521 +msgid "Submit" +msgstr "Indsend" + +#: ../cache/locales.php:522 msgid "Submitting" msgstr "Indsender" -#: [button]register +#: ../cache/locales.php:523 +msgid "Reset" +msgstr "Nulstil" + +#: ../cache/locales.php:524 msgid "Register" msgstr "Registrér" -#: [button]unregister +#: ../cache/locales.php:525 msgid "Unregister" msgstr "Afmeld" -#: [button]save +#: ../cache/locales.php:526 msgid "Save" msgstr "Gem" -#: [button]clear +#: ../cache/locales.php:527 msgid "Clear" msgstr "Rens" -#: [button]upload +#: ../cache/locales.php:528 msgid "Upload" msgstr "Upload" -#: [button]come_in +#: ../cache/locales.php:529 msgid "Come in!" msgstr "Kom Ind!" -#: [button]connecting +#: ../cache/locales.php:530 msgid "Connecting" msgstr "Forbinder" -#: [button]bool_yes +#: ../cache/locales.php:531 msgid "Yes" msgstr "Ja" -#: [button]bool_no +#: ../cache/locales.php:532 msgid "No" msgstr "Nej" -#: [button]return +#: ../cache/locales.php:534 msgid "Return" msgstr "Returnér" -#: [button]accept +#: ../cache/locales.php:535 msgid "Accept" msgstr "Godkend" -#: [button]refuse +#: ../cache/locales.php:536 msgid "Refuse" msgstr "Afvis" -#: [button]next +#: ../cache/locales.php:537 msgid "Next" msgstr "Næste" -#: [button]previous +#: ../cache/locales.php:538 msgid "Previous" msgstr "Forrige" -#: [step]step +#: ../cache/locales.php:539 +#, php-format msgid "Step %s" msgstr "Skridt %s" -#: [day]title +#: ../cache/locales.php:542 msgid "Day" msgstr "Dag" -#: [day]monday +#: ../cache/locales.php:543 msgid "Monday" msgstr "Mandag" -#: [day]tuesday +#: ../cache/locales.php:544 msgid "Tuesday" msgstr "Tirsdag" -#: [day]wednesday +#: ../cache/locales.php:545 msgid "Wednesday" msgstr "Onsdag" -#: [day]thursday +#: ../cache/locales.php:546 msgid "Thursday" msgstr "Torsdag" -#: [day]friday +#: ../cache/locales.php:547 msgid "Friday" msgstr "Fredag" -#: [day]saturday +#: ../cache/locales.php:548 msgid "Saturday" msgstr "Lørdag" -#: [day]sunday +#: ../cache/locales.php:549 msgid "Sunday" msgstr "Søndag" -#: [gender]nil -#, fuzzy -msgctxt "[gender]nil" +#: ../cache/locales.php:550 ../cache/locales.php:559 msgid "None" msgstr "Ingen" -#: [gender]male +#: ../cache/locales.php:551 msgid "Male" msgstr "Mand" -#: [gender]female +#: ../cache/locales.php:552 msgid "Female" msgstr "Kvinde" -#: [gender]other +#: ../cache/locales.php:553 msgid "Other" msgstr "Andet" -#: [client]bot +#: ../cache/locales.php:554 msgid "Bot" msgstr "Bot" -#: [client]desktop +#: ../cache/locales.php:555 msgid "Desktop" msgstr "Skrivebord" -#: [client]phone +#: ../cache/locales.php:556 msgid "Phone" msgstr "Telefon" -#: [client]web +#: ../cache/locales.php:557 msgid "Web" msgstr "Web" -#: [client]registered +#: ../cache/locales.php:558 msgid "Registered" msgstr "Registreret" -#: [marital]nil -#, fuzzy -msgctxt "[marital]nil" -msgid "None" -msgstr "Ingen" - -#: [marital]single +#: ../cache/locales.php:560 msgid "Single" msgstr "Single" -#: [marital]relationship +#: ../cache/locales.php:561 msgid "In a relationship" msgstr "I forhold" -#: [marital]married +#: ../cache/locales.php:562 msgid "Married" msgstr "Gift" -#: [marital]divorced +#: ../cache/locales.php:563 msgid "Divorced" msgstr "Fraskilt" -#: [marital]widowed +#: ../cache/locales.php:564 msgid "Widowed" msgstr "Enke eller enkemand" -#: [marital]cohabiting +#: ../cache/locales.php:565 msgid "Cohabiting" msgstr "Samboende" -#: [marital]union +#: ../cache/locales.php:566 msgid "Civil Union" msgstr "Borgerlig Vielse" -#: [flag]white +#: ../cache/locales.php:567 msgid "Not shared" msgstr "Ikke delt" -#: [flag]green +#: ../cache/locales.php:568 msgid "Shared with one contact" msgstr "Delt med en kontakt" -#: [flag]orange +#: ../cache/locales.php:569 msgid "Shared with all contacts" msgstr "Delt med alle kontakter" -#: [flag]red +#: ../cache/locales.php:570 msgid "Shared with the XMPP network" msgstr "Delt med XMPP netværket" -#: [flag]black +#: ../cache/locales.php:571 msgid "Shared with the whole Internet" msgstr "Delt med hele internettet" -#: [presence]online +#: ../cache/locales.php:572 msgid "Online" msgstr "Online" -#: [presence]away +#: ../cache/locales.php:573 msgid "Away" msgstr "Ikke tilstede" -#: [presence]dnd +#: ../cache/locales.php:574 msgid "Do Not Disturb" msgstr "Vil ikke forstyrres" -#: [presence]xa +#: ../cache/locales.php:575 msgid "Extended Away" msgstr "Væk i længere tid" -#: [presence]offline +#: ../cache/locales.php:576 msgid "Offline" msgstr "Offline" -#: [presence]error +#: ../cache/locales.php:577 msgid "Error" msgstr "Fejl" -#: [mood]afraid +#: ../cache/locales.php:578 msgid "afraid" msgstr "bange" -#: [mood]amazed +#: ../cache/locales.php:579 msgid "amazed" msgstr "forbløffet" -#: [mood]amorous +#: ../cache/locales.php:580 msgid "amorous" msgstr "kælen" -#: [mood]angry +#: ../cache/locales.php:581 msgid "angry" msgstr "vred" -#: [mood]annoyed +#: ../cache/locales.php:582 msgid "annoyed" msgstr "irriteret" -#: [mood]anxious +#: ../cache/locales.php:583 msgid "anxious" msgstr "nervøs" -#: [mood]aroused +#: ../cache/locales.php:584 msgid "aroused" msgstr "opstemt" -#: [mood]ashamed +#: ../cache/locales.php:585 msgid "ashamed" msgstr "skamfuld" -#: [mood]bored +#: ../cache/locales.php:586 msgid "bored" msgstr "kedsom" -#: [mood]brave +#: ../cache/locales.php:587 msgid "brave" msgstr "modig" -#: [mood]calm +#: ../cache/locales.php:588 msgid "calm" msgstr "fedfyldt" -#: [mood]cautious +#: ../cache/locales.php:589 msgid "cautious" msgstr "forsigtig" -#: [mood]cold +#: ../cache/locales.php:590 msgid "cold" msgstr "kold" -#: [mood]confident +#: ../cache/locales.php:591 msgid "confident" msgstr "selvsikker" -#: [mood]confused +#: ../cache/locales.php:592 msgid "confused" msgstr "forvirret" -#: [mood]contemplative +#: ../cache/locales.php:593 msgid "contemplative" msgstr "eftertænksom" -#: [mood]contented +#: ../cache/locales.php:594 msgid "contented" msgstr "tilfreds" -#: [mood]cranky +#: ../cache/locales.php:595 msgid "cranky" msgstr "småsur" -#: [mood]crazy +#: ../cache/locales.php:596 msgid "crazy" msgstr "skør" -#: [mood]creative +#: ../cache/locales.php:597 msgid "creative" msgstr "kreativ" -#: [mood]curious +#: ../cache/locales.php:598 msgid "curious" msgstr "nysgerrig" -#: [mood]dejected +#: ../cache/locales.php:599 msgid "dejected" msgstr "modløs" -#: [mood]depressed +#: ../cache/locales.php:600 msgid "depressed" msgstr "deppresiv" -#: [mood]disappointed +#: ../cache/locales.php:601 msgid "disappointed" msgstr "skuffet" -#: [mood]disgusted +#: ../cache/locales.php:602 msgid "disgusted" msgstr "væmmet" -#: [mood]dismayed +#: ../cache/locales.php:603 msgid "dismayed" msgstr "forfærdet" -#: [mood]distracted +#: ../cache/locales.php:604 msgid "distracted" msgstr "distraheret" -#: [mood]embarrassed +#: ../cache/locales.php:605 msgid "embarrassed" msgstr "flov" -#: [mood]envious +#: ../cache/locales.php:606 msgid "envious" msgstr "misundelig" -#: [mood]excited +#: ../cache/locales.php:607 msgid "excited" msgstr "begejstret" -#: [mood]flirtatious +#: ../cache/locales.php:608 msgid "flirtatious" msgstr "flirtende" -#: [mood]frustated +#: ../cache/locales.php:609 msgid "frustated" msgstr "frustreret" -#: [mood]grateful +#: ../cache/locales.php:610 msgid "grateful" msgstr "taknemlig" -#: [mood]grieving +#: ../cache/locales.php:611 msgid "grieving" msgstr "sørgende" -#: [mood]grumpy +#: ../cache/locales.php:612 msgid "grumpy" msgstr "gnaven" -#: [mood]guilty +#: ../cache/locales.php:613 msgid "guilty" msgstr "skyldig" -#: [mood]happy +#: ../cache/locales.php:614 msgid "happy" msgstr "glad" -#: [mood]hopeful +#: ../cache/locales.php:615 msgid "hopeful" msgstr "håbefuld" -#: [mood]hot +#: ../cache/locales.php:616 msgid "hot" msgstr "hot" -#: [mood]humbled +#: ../cache/locales.php:617 msgid "humbled" msgstr "ydmyg" -#: [mood]humiliated +#: ../cache/locales.php:618 msgid "humiliated" msgstr "ydmyget" -#: [mood]hungry +#: ../cache/locales.php:619 msgid "hungry" msgstr "sulten" -#: [mood]hurt +#: ../cache/locales.php:620 msgid "hurt" msgstr "såret" -#: [mood]impressed +#: ../cache/locales.php:621 msgid "impressed" msgstr "imponeret" -#: [mood]in_awe +#: ../cache/locales.php:622 msgid "in awe" msgstr "i ærefrygt" -#: [mood]in_love +#: ../cache/locales.php:623 msgid "in love" msgstr "forelsket" -#: [mood]indignant +#: ../cache/locales.php:624 msgid "indignant" msgstr "indigneret" -#: [mood]interested +#: ../cache/locales.php:625 msgid "interested" msgstr "interreseret" -#: [mood]intoxicated +#: ../cache/locales.php:626 msgid "intoxicated" msgstr "beruset" -#: [mood]invincible +#: ../cache/locales.php:627 msgid "invincible" msgstr "uovervindelig" -#: [mood]jealous +#: ../cache/locales.php:628 msgid "jealous" msgstr "jaloux" -#: [mood]lonely +#: ../cache/locales.php:629 msgid "lonely" msgstr "ensom" -#: [mood]lost +#: ../cache/locales.php:630 msgid "lost" msgstr "fortabt" -#: [mood]lucky +#: ../cache/locales.php:631 msgid "lucky" msgstr "heldig" -#: [mood]mean +#: ../cache/locales.php:632 msgid "mean" msgstr "ondskabfuld" -#: [mood]moody +#: ../cache/locales.php:633 msgid "moody" msgstr "humørsyg" -#: [mood]nervous +#: ../cache/locales.php:634 msgid "nervous" msgstr "nervøs" -#: [mood]neutral +#: ../cache/locales.php:635 msgid "neutral" msgstr "neutral" -#: [mood]offended +#: ../cache/locales.php:636 msgid "offended" msgstr "forarget" -#: [mood]outraged +#: ../cache/locales.php:637 msgid "outraged" msgstr "rasende" -#: [mood]playful +#: ../cache/locales.php:638 msgid "playful" msgstr "legesyg" -#: [mood]proud +#: ../cache/locales.php:639 msgid "proud" msgstr "stolt" -#: [mood]relaxed +#: ../cache/locales.php:640 msgid "relaxed" msgstr "afslappet" -#: [mood]relieved +#: ../cache/locales.php:641 msgid "relieved" msgstr "lettet" -#: [mood]restless +#: ../cache/locales.php:642 +msgid "remorseful" +msgstr "angrende" + +#: ../cache/locales.php:643 msgid "restless" msgstr "rastløs" -#: [mood]sad +#: ../cache/locales.php:644 msgid "sad" msgstr "ked af det" -#: [mood]sarcastic +#: ../cache/locales.php:645 msgid "sarcastic" msgstr "sarkastisk" -#: [mood]satisfied +#: ../cache/locales.php:646 msgid "satisfied" msgstr "tilfredsstillet" -#: [mood]serious +#: ../cache/locales.php:647 msgid "serious" msgstr "seriøs" -#: [mood]shocked +#: ../cache/locales.php:648 msgid "shocked" msgstr "chokeret" -#: [mood]shy +#: ../cache/locales.php:649 msgid "shy" msgstr "genert" -#: [mood]sick +#: ../cache/locales.php:650 msgid "sick" msgstr "syg" -#: [mood]sleepy +#: ../cache/locales.php:651 msgid "sleepy" msgstr "søvnig" -#: [mood]spontaneous +#: ../cache/locales.php:652 msgid "spontaneous" msgstr "spontan" -#: [mood]stressed +#: ../cache/locales.php:653 msgid "stressed" msgstr "stresset" -#: [mood]strong +#: ../cache/locales.php:654 msgid "strong" msgstr "stærk" -#: [mood]surprised +#: ../cache/locales.php:655 msgid "surprised" msgstr "ovverasket" -#: [mood]thankful +#: ../cache/locales.php:656 msgid "thankful" msgstr "taknemlig" -#: [mood]thirsty +#: ../cache/locales.php:657 msgid "thirsty" msgstr "tøstig" -#: [mood]tired +#: ../cache/locales.php:658 msgid "tired" msgstr "træt" -#: [mood]undefined +#: ../cache/locales.php:659 msgid "undefined" msgstr "udefineret" -#: [mood]weak +#: ../cache/locales.php:660 msgid "weak" msgstr "svag" -#: [mood]worried +#: ../cache/locales.php:661 msgid "worried" msgstr "bekymret" -#: [month]title +#: ../cache/locales.php:662 msgid "Month" msgstr "Måned" -#: [month]january +#: ../cache/locales.php:663 msgid "January" msgstr "Januar" -#: [month]february +#: ../cache/locales.php:664 msgid "February" msgstr "Februar" -#: [month]march +#: ../cache/locales.php:665 msgid "March" msgstr "Marts" -#: [month]april +#: ../cache/locales.php:666 msgid "April" msgstr "April" -#: [month]may +#: ../cache/locales.php:667 msgid "May" msgstr "Maj" -#: [month]june +#: ../cache/locales.php:668 msgid "June" msgstr "Juni" -#: [month]july +#: ../cache/locales.php:669 msgid "July" msgstr "Juli" -#: [month]august +#: ../cache/locales.php:670 msgid "August" msgstr "August" -#: [month]september +#: ../cache/locales.php:671 msgid "September" msgstr "September" -#: [month]october +#: ../cache/locales.php:672 msgid "October" msgstr "Oktober" -#: [month]november +#: ../cache/locales.php:673 msgid "November" msgstr "November" -#: [month]december +#: ../cache/locales.php:674 msgid "December" msgstr "December" -#: [year]title +#: ../cache/locales.php:675 msgid "Year" msgstr "År" -#: [date]today +#: ../cache/locales.php:676 msgid "Today" msgstr "Idag" -#: [date]tomorrow +#: ../cache/locales.php:677 msgid "Tomorrow" msgstr "I morgen" -#: [date]yesterday +#: ../cache/locales.php:678 msgid "Yesterday" msgstr "I går" -#: [date]ago -#, fuzzy -msgid "%d days ago" +#: ../cache/locales.php:679 +#, php-format +msgid " %d days ago" msgstr " for %d dage siden" -#: [date]day +#: ../cache/locales.php:680 msgid "day" msgstr "dag" -#: [post]whats_new +#: ../cache/locales.php:682 msgid "What's new ?" msgstr "Hvad er nyt ?" -#: [post]place +#: ../cache/locales.php:683 msgid "Place" msgstr "Sted" -#: [post]by +#: ../cache/locales.php:684 msgid "by" msgstr "af" -#: [post]geolocalisation +#: ../cache/locales.php:685 msgid "Geolocalisation" msgstr "Geolokalisering" -#: [post]email +#: ../cache/locales.php:686 msgid "email" msgstr "e-mail" -#: [post]no_comments +#: ../cache/locales.php:688 msgid "No comments yet" msgstr "Ingen kommentarer endnu" -#: [post]no_comments_stream +#: ../cache/locales.php:689 msgid "No comments stream" msgstr "Innegn kommentarstrøm" -#: [post]no_load +#: ../cache/locales.php:690 msgid "Your feed cannot be loaded." msgstr "Dit feed kan ikken indlæses" -#: [post]older +#: ../cache/locales.php:691 msgid "Get older posts" msgstr "Hent ældre indlæg" -#: [post]new_items +#: ../cache/locales.php:692 +#, php-format msgid "%s new items" msgstr "%s nye indlægeolocalisation" -#: [post]comment_error +#: ../cache/locales.php:693 msgid "Comment publication error" msgstr "Kommentar udgivelsesfejl" -#: [post]comments_older +#: ../cache/locales.php:694 msgid "Show the older comments" msgstr "Vis de ældre kommentarer" -#: [post]comments_loading -#, fuzzy -msgid "Loading comments..." +#: ../cache/locales.php:695 +msgid "Loading comments ..." msgstr "Indlæser kommentarer ..." -#: [post]comments_get +#: ../cache/locales.php:696 msgid "Get the comments" msgstr "Hent kommentarerne" -#: [post]comment_add +#: ../cache/locales.php:697 msgid "Add a comment" msgstr "Tilføj en kommentar" -#: [post]share +#: ../cache/locales.php:698 msgid "Share with" msgstr "Del med" -#: [post]share_everyone +#: ../cache/locales.php:699 msgid "Everyone" msgstr "Alle" -#: [post]share_your_contacts +#: ../cache/locales.php:700 msgid "Your contacts" msgstr "Dine kontakter" -#: [post]updated +#: ../cache/locales.php:702 msgid "Updated" msgstr "Opdateret" -#: [post]content_not_found +#: ../cache/locales.php:703 msgid "Content not found" msgstr "Indhold ikke fundet" -#: [post]default_title +#: ../cache/locales.php:704 msgid "Contact publication" msgstr "Kontakt udgivelse" -#: [post]comments +#: ../cache/locales.php:705 msgid "Comments" msgstr "Kommentarer" -#: [api]error +#: ../cache/locales.php:706 msgid "The API is not reachable, try again later" msgstr "API'en kan ikke nåes, prøv igen senere" -#: [field]type_here +#: ../cache/locales.php:707 msgid "Type here" msgstr "Skriv her" -#~ msgid "Environment" -#~ msgstr "Miljø" - -#~ msgid "You can login with Facebook (chat only) using %syour.id@chat.facebook.com%s and your password" -#~ msgstr "Du kan logge ind med Facebook (kun chat) med %sdin.id@chat.facebook.com%s og dit kodeord" - -#~ msgid "%sGmail accounts are also compatible%s but are not fully supported" -#~ msgstr "%sGmail konti er også kompatible%s men ikke fuldt understøttede" - -#~ msgid "You can login using your favorite Jabber account" -#~ msgstr "Du kan logge ind med din favorit Jabber konto" - -#~ msgid "or with our demonstration account" -#~ msgstr "eller med vores demonstrations konto" - -#~ msgid "%s has been removed from your public groups" -#~ msgstr "%s er blevet fjernet fra dine offentlige grupper" - -#~ msgid "Remove a chatroom" -#~ msgstr "Fjern et chatrum" - -#~ msgid "You are going to remove the following chatroom. Please confirm your action." -#~ msgstr "Du er ved at fjerne følgende chatrum. Bekræft venligst din handling." - -#~ msgid "Remote application incompatible" -#~ msgstr "Programmet i den anden ende er ikke kompatibel" - -#~ msgid "Remove" -#~ msgstr "Fjern" - -#~ msgid "remorseful" -#~ msgstr "angrende" - #~ msgid "PHP version mismatch. Movim requires PHP 5.3 minimum." #~ msgstr "PHP version passer ikke. Movim kræver PHP 5.3 eller højere." +#, php-format #~ msgid "Movim requires the %s extension." #~ msgstr "Movim kræver %s udvidelsen." @@ -2776,17 +2639,23 @@ msgstr "Skriv her" #~ msgid "Movim Installer" #~ msgstr "Movim installeringspakke" +#, php-format #~ msgid "Couldn't create directory '%s'." #~ msgstr "Kunne ikke oprette bibliotek '%s'." +#, php-format #~ msgid "Couldn't create configuration file '%s'." #~ msgstr "Kunne ikke oprette konfigurationfil '%s'." #~ msgid "Compatibility Test" #~ msgstr "Kompabilitetstest" -#~ msgid "The following requirements were not met. Please make sure they are all satisfied in order to install Movim." -#~ msgstr "De følgende krav blev ikke opfyldt. Sikre dig venligst de alle er dækket for at kunne installere Movim." +#~ msgid "" +#~ "The following requirements were not met. Please make sure they are all " +#~ "satisfied in order to install Movim." +#~ msgstr "" +#~ "De følgende krav blev ikke opfyldt. Sikre dig venligst de alle er dækket for " +#~ "at kunne installere Movim." #~ msgid "User not logged in." #~ msgstr "Bruger er ikke logget ind." @@ -2794,12 +2663,15 @@ msgstr "Skriv her" #~ msgid "JID not provided." #~ msgstr "JID ikke givet." +#, php-format #~ msgid "jid '%s' is incorrect" #~ msgstr "jid '%s' er ikke korrekt" +#, php-format #~ msgid "Cannot open log file '%s'" #~ msgstr "Kan ikke åbne log fil '%s'" +#, php-format #~ msgid "%s - Account Creation" #~ msgstr "%s - Konto oprettelse" @@ -2848,6 +2720,7 @@ msgstr "Skriv her" #~ msgid "Success !" #~ msgstr "Fuldført!" +#, php-format #~ msgid "Cannot load element value '%s'" #~ msgstr "Kan ikke indlæse elementværdi '%s'" diff --git a/sources/locales/de.po b/sources/locales/de.po index f89611a..38eca96 100644 --- a/sources/locales/de.po +++ b/sources/locales/de.po @@ -1,2773 +1,2649 @@ # German translations for Movim Website package. # This file is distributed under the same license as the Movim Website package. # This file was translated from CodingTeam at . -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/About/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Account/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/AccountNext/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/AdHoc/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/AdminDB/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/AdminMain/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/AdminTest/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Api/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Avatar/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Blog/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Bookmark/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Chat/locales.ini -#. #-#-#-#-# 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 -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Group/locales.ini -#. #-#-#-#-# 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 -#. #-#-#-#-# 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 -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Presence/locales.ini -#. #-#-#-#-# 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 -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Share/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Statistics/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Subscribe/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Syndication/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Upload/locales.ini -#. #-#-#-#-# 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 Website\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-08-20 15:17+0200\n" +"POT-Creation-Date: 2015-06-08 22:06+0200\n" "PO-Revision-Date: 2015-06-09 22:18+0000\n" "Last-Translator: Tobias Bannert \n" "Language-Team: \n" -"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2015-06-18 21:08+0000\n" "X-Generator: Launchpad (build 17570)\n" +"Language: \n" -#: [about]thanks +#: ../cache/locales.php:2 msgid "Thanks" msgstr "Danke" -#: [about]developers +#: ../cache/locales.php:3 msgid "Developers" msgstr "Entwickler" -#: [about]translators +#: ../cache/locales.php:4 msgid "Translators" msgstr "Übersetzer" -#: [about]software +#: ../cache/locales.php:5 msgid "Software" msgstr "Programm" -#: [about]resources +#: ../cache/locales.php:6 msgid "Resources" msgstr "Ressourcen" -#: [about]api [schema]api [api]title +#: ../cache/locales.php:7 ../cache/locales.php:83 ../cache/locales.php:85 msgid "API" msgstr "API" -#: [about]info -msgid "Movim is an XMPP-based communication platform. All the project, except the following software and resources, is under" -msgstr "Movim ist eine XMPP-basierte Kommunikationsplattform. Das gesamte Projekt, ausgenommen der folgenden Anwendung und Ressourcen, sind unter" +#: ../cache/locales.php:8 +msgid "" +"Movim is an XMPP-based communication platform. All the project, except the " +"following software and resources, is under" +msgstr "" +"Movim ist eine XMPP-basierte Kommunikationsplattform. Das gesamte Projekt, " +"ausgenommen der folgenden Anwendung und Ressourcen, sind unter" -#: [account]title +#: ../cache/locales.php:9 msgid "Account" msgstr "Konto" -#: [account]password_change_title -#, fuzzy -msgid "Change my password" -msgstr "Falsches Passwort" - -#: [account]password [db]password [credentials]password [form]password -#: [input]password -msgid "Password" -msgstr "Passwort" - -#: [account]password_confirmation -#, fuzzy -msgid "Password confirmation" -msgstr "%s – Einstellungen" - -#: [account]password_changed +#: ../cache/locales.php:10 msgid "The password has been updated" msgstr "Das Passwort wurde aktualisiert" -#: [account]password_not_valid +#: ../cache/locales.php:11 msgid "Please provide a valid password (6 characters minimum)" msgstr "Das Passwort muss mindestens 6 Zeichen beinhalten" -#: [account]password_not_same +#: ../cache/locales.php:12 msgid "The provided passwords are not the same" msgstr "Die eingegebenen Passwörter stimmen nicht überein" -#: [account]delete_title +#: ../cache/locales.php:13 msgid "Delete my account" msgstr "Mein Konto löschen" -#: [account]delete -#, fuzzy -msgid "Delete your account" -msgstr "Mein Konto löschen" +#: ../cache/locales.php:14 +msgid "" +"You will delete your XMPP account and all the relative information linked to " +"it (profile, contacts and publications)." +msgstr "" +"Sie werden Ihr XMPP-Konto und alle Informationen welche damit verbunden sind " +"löschen (Profil, Kontakte und Veröffentlichungen)." -#: [account]delete_text -msgid "You will delete your XMPP account and all the relative information linked to it (profile, contacts and publications)." -msgstr "Sie werden Ihr XMPP-Konto und alle Informationen welche damit verbunden sind löschen (Profil, Kontakte und Veröffentlichungen)." - -#: [account]delete_text_confirm +#: ../cache/locales.php:15 msgid "Are you sure that you want to delete it ?" msgstr "Soll es wirklich gelöscht werden?" -#: [account]gateway_title -msgid "Gateway" -msgstr "" - -#: [create]title [subscribe]title +#: ../cache/locales.php:16 ../cache/locales.php:411 msgid "Create a new account" msgstr "Neues Konto erstellen" -#: [create]notfound +#: ../cache/locales.php:17 msgid "No account creation form found on the server" msgstr "Keine Kontoerstellungseingabemaske auf dem Server gefunden" -#: [create]server_on +#: ../cache/locales.php:18 ../cache/locales.php:172 msgid "on" msgstr "an" -#: [create]successfull +#: ../cache/locales.php:19 msgid "Your acccount has been successfully registered" msgstr "Ihr Konto wurde erfolgreich eingerichtet" -#: [create]loading +#: ../cache/locales.php:20 msgid "Loading" msgstr "Wird geladen" -#: [error]not_acceptable +#: ../cache/locales.php:21 msgid "Not Acceptable" msgstr "Nicht zulässig" -#: [error]service_unavailable +#: ../cache/locales.php:22 msgid "The registration system of this server is currently unavailable" -msgstr "Das Registrierungssystem dieses Servers ist vorübergend nicht erreichbar." +msgstr "" +"Das Registrierungssystem dieses Servers ist vorübergend nicht erreichbar." -#: [oob]about -msgid "This server use an external system for the registration, please click on the following URL." -msgstr "Dieser Server benutzt ein externes Registrierungssystem. Bitte auf die folgende Adresse klicken." +#: ../cache/locales.php:23 +msgid "" +"This server use an external system for the registration, please click on the " +"following URL." +msgstr "" +"Dieser Server benutzt ein externes Registrierungssystem. Bitte auf die " +"folgende Adresse klicken." -#: [adhoc]title +#: ../cache/locales.php:24 msgid "Actions" msgstr "Aktionen" -#: [db]legend [schema]database +#: ../cache/locales.php:25 ../cache/locales.php:82 msgid "Database" msgstr "Datenbank" -#: [db]connect_error +#: ../cache/locales.php:26 msgid "Modl wasn't able to connect to the database" msgstr "Modl konnte sich nicht mit der Datenbank verbinden" -#: [db]connect_success +#: ../cache/locales.php:27 msgid "Movim is connected to the database" msgstr "Movim ist mit der Datenbank verbunden" -#: [db]update +#: ../cache/locales.php:28 msgid "The database need to be updated" msgstr "Die Datenbank muss aktualisiert werden" -#: [db]up_to_date +#: ../cache/locales.php:29 msgid "Movim database is up to date" msgstr "Movim-Datenbank ist aktuell" -#: [db]type +#: ../cache/locales.php:30 msgid "Database Type" msgstr "Datenbanktyp" -#: [db]username [credentials]username [input]username +#: ../cache/locales.php:31 ../cache/locales.php:50 ../cache/locales.php:540 msgid "Username" msgstr "Benutzername" -#: [db]host +#: ../cache/locales.php:32 ../cache/locales.php:51 ../cache/locales.php:282 +#: ../cache/locales.php:541 +msgid "Password" +msgstr "Passwort" + +#: ../cache/locales.php:33 msgid "Host" msgstr "Rechner (Host)" -#: [db]port +#: ../cache/locales.php:34 msgid "Port" msgstr "Anschluss (Port)" -#: [db]name -#, fuzzy -msgid "Database sName" +#: ../cache/locales.php:35 +msgid "Database Name" msgstr "Datenbankname" -#: [admin]general +#: ../cache/locales.php:36 msgid "General Settings" msgstr "Grundeinstellungen" -#: [general]theme +#: ../cache/locales.php:37 msgid "Theme" msgstr "Thema" -#: [general]language +#: ../cache/locales.php:38 msgid "Default language" msgstr "Vorgabesprache" -#: [general]log_verbosity +#: ../cache/locales.php:39 +msgid "Environment" +msgstr "Umgebung" + +#: ../cache/locales.php:40 msgid "Log verbosity" msgstr "Protokollstufe" -#: [general]timezone +#: ../cache/locales.php:41 msgid "Server Timezone" msgstr "Server-Zeitzone" -#: [general]limit +#: ../cache/locales.php:42 msgid "User folder size limit (in bytes)" msgstr "Speicherlimit des Nutzerverzeichnis (in Bytes)" -#: [websocket]title +#: ../cache/locales.php:43 msgid "WebSocket Configuration" msgstr "WebSocket-Konfiguration" -#: [websocket]info +#: ../cache/locales.php:44 msgid "Enter here a valid WebSocket URI in the form" msgstr "Bitte in das Feld eine gültige WebSocket-Adresse eingeben" -#: [websocket]label +#: ../cache/locales.php:45 msgid "WebSocket URI" msgstr "WebSocket-Adresse" -#: [websocket]save_info -msgid "If you change the URI, please restart the daemon to reload the configuration" -msgstr "Nach dem Ändern der Adresse bitte den Dienst neu starten, um die Konfiguration neu zu laden." +#: ../cache/locales.php:46 +msgid "" +"If you change the URI, please restart the daemon to reload the configuration" +msgstr "" +"Nach dem Ändern der Adresse bitte den Dienst neu starten, um die " +"Konfiguration neu zu laden." -#: [websocket]publics +#: ../cache/locales.php:47 msgid "Public WebSockets" msgstr "Öffentliche WebSockets" -#: [credentials]title +#: ../cache/locales.php:48 msgid "Administration Credential" msgstr "Systemverwaltungsberechtigung" -#: [credentials]info +#: ../cache/locales.php:49 msgid "Change the default credentials admin/password" msgstr "Vorgegebene Systemverwaltungsberechtigung/-passwort ändern" -#: [credentials]re_password +#: ../cache/locales.php:52 msgid "Retype password" msgstr "Passwort erneut eingeben" -#: [whitelist]title +#: ../cache/locales.php:53 msgid "Whitelist - XMPP Server" msgstr "Liste der erlaubten XMPP-Server" -#: [whitelist]info1 -msgid "If you want to specify a list of authorized XMPP servers on your Movim pod and forbid the connection on all the others please put their domain name here, with comma (ex: movim.eu,jabber.fr)" -msgstr "Wenn Sie eine Liste von legitimierten XMPP-Servern für diesen Movim-Pod festzulegen und alle sonstigen Verbindungen verbieten wollen, dann bitte hier die Domänennamen durch Kommata getrennt eintragen. (z.B.: movim.eu, jabber.fr)" +#: ../cache/locales.php:54 +msgid "" +"If you want to specify a list of authorized XMPP servers on your Movim pod " +"and forbid the connection on all the others please put their domain name " +"here, with comma (ex: movim.eu,jabber.fr)" +msgstr "" +"Wenn Sie eine Liste von legitimierten XMPP-Servern für diesen Movim-Pod " +"festzulegen und alle sonstigen Verbindungen verbieten wollen, dann bitte " +"hier die Domänennamen durch Kommata getrennt eintragen. (z.B.: movim.eu, " +"jabber.fr)" -#: [whitelist]info2 -msgid "Leave this field blank if you allow the access to all the XMPP accounts." -msgstr "Dieses Feld leer lassen, um den Zugriff auf alle XMPP-Konten zu erlauben." +#: ../cache/locales.php:55 +msgid "" +"Leave this field blank if you allow the access to all the XMPP accounts." +msgstr "" +"Dieses Feld leer lassen, um den Zugriff auf alle XMPP-Konten zu erlauben." -#: [whitelist]label +#: ../cache/locales.php:56 msgid "List of whitelisted XMPP servers" msgstr "Liste der erlaubten XMPP-Server" -#: [information]title -#, fuzzy -msgctxt "[information]title" +#: ../cache/locales.php:57 ../cache/locales.php:61 msgid "Information Message" msgstr "Informationsmeldung" -#: [information]description +#: ../cache/locales.php:58 msgid "Description" msgstr "Beschreibung" -#: [information]info1 +#: ../cache/locales.php:59 msgid "This message will be displayed on the login page" msgstr "Diese Nachricht wird auf der Anmeldeseite angezeigt" -#: [information]info2 -#, fuzzy -msgid "Leave this field blank if you dont want to show any message." +#: ../cache/locales.php:60 +msgid "Leave this field blank if you don't want to show any message." msgstr "Dieses Feld leer lassen, wenn keine Nachricht angezeigt werden soll." -#: [information]label -#, fuzzy -msgctxt "[information]label" -msgid "Information Message" -msgstr "Informationsmeldung" - -#: [log]empty +#: ../cache/locales.php:62 msgid "Empty" msgstr "Leer" -#: [log]syslog +#: ../cache/locales.php:63 msgid "Syslog" msgstr "Systemprotokoll" -#: [log]syslog_files +#: ../cache/locales.php:64 msgid "Syslog and files" msgstr "Systemprotokoll und Dateien" -#: [rewrite]title +#: ../cache/locales.php:65 msgid "URL Rewriting" msgstr "Adressumschreiben" -#: [rewrite]info +#: ../cache/locales.php:66 msgid "The URL Rewriting can be enabled" msgstr "Adressumschreiben kann aktiviert werden" -#: [admin]compatibility +#: ../cache/locales.php:67 msgid "General Overview" msgstr "Allgemeiner Überblick" -#: [compatibility]info -msgid "Movim has found some issues or things that need to be fixed or improved" -msgstr "Movim hat Probleme oder Dinge gefunden, die repariert oder verbessert werden müssen." +#: ../cache/locales.php:68 +msgid "" +"Movim has found some issues or things that need to be fixed or improved" +msgstr "" +"Movim hat Probleme oder Dinge gefunden, die repariert oder verbessert werden " +"müssen." -#: [compatibility]php1 +#: ../cache/locales.php:69 +#, php-format msgid "Update your PHP-Version: %s" msgstr "Bitte Ihre PHP-Version aktualisieren: %s" -#: [compatibility]php2 +#: ../cache/locales.php:70 msgid "Required: 5.3.0" msgstr "Benötigt: 5.3.0" -#: [compatibility]curl +#: ../cache/locales.php:71 msgid "Install the php5-curl library" msgstr "Die php5-curl-Bibliothek installieren" -#: [compatibility]imagick +#: ../cache/locales.php:72 msgid "Install the php5-imagick library" msgstr "Die php5-imagick-Bibliothek installieren" -#: [compatibility]gd +#: ../cache/locales.php:73 msgid "Install the php5-gd library" msgstr "Die php5-gd-Bibliothek installieren" -#: [compatibility]rights -#, fuzzy -msgid "Read and write rights for the webserver in Movims root directory" -msgstr "Lese- und Schreibrechte für den Webserver im Wurzelverzeichnis von Movim" +#: ../cache/locales.php:74 +msgid "Read and write rights for the webserver in Movim's root directory" +msgstr "" +"Lese- und Schreibrechte für den Webserver im Wurzelverzeichnis von Movim" -#: [compatibility]rewrite +#: ../cache/locales.php:75 msgid "The URL Rewriting support is currently disabled" msgstr "Das Adressumschreiben ist derzeit deaktiviert" -#: [compatibility]db +#: ../cache/locales.php:76 msgid "The database need to be updated, go to the database panel to fix this" -msgstr "Die Datenbank muss aktualisiert werden. Bitte zur Datenbankverwaltung gehen, um das zu reparieren." +msgstr "" +"Die Datenbank muss aktualisiert werden. Bitte zur Datenbankverwaltung gehen, " +"um das zu reparieren." -#: [compatibility]websocket -msgid "WebSocket connection error, check if the Movim Daemon is running and is reachable" +#: ../cache/locales.php:77 +msgid "" +"WebSocket connection error, check if the Movim Daemon is running and is " +"reacheable" msgstr "" -#: [compatibility]xmpp_websocket -msgid "XMPP Websocket connection error, please check the validity of the URL given in the General Configuration" +#: ../cache/locales.php:78 +msgid "" +"XMPP Websocket connection error, please check the validity of the URL given " +"in the General Configuration" msgstr "" -#: [schema]browser +#: ../cache/locales.php:79 msgid "Browser" msgstr "Browser" -#: [schema]movim +#: ../cache/locales.php:80 msgid "Movim Core" msgstr "Movim-Kern" -#: [schema]daemon +#: ../cache/locales.php:81 msgid "Movim Daemon" msgstr "Movim-Dienst" -#: [schema]xmpp +#: ../cache/locales.php:84 msgid "XMPP" msgstr "XMPP" -#: [api]info -msgid "Here you can register your pod on the official %sMovim API%s and be listed on %sthe pods page%s." -msgstr "Hier können Sie Ihren eigenen Pod bei der offiziellen %sMovim-API%s registrieren und auf der %sPod-Seite%s gelistet werden." +#: ../cache/locales.php:86 +#, php-format +msgid "" +"Here you can register your pod on the official %sMovim API%s and be listed " +"on %sthe pods page%s." +msgstr "" +"Hier können Sie Ihren eigenen Pod bei der offiziellen %sMovim-API%s " +"registrieren und auf der %sPod-Seite%s gelistet werden." -#: [api]register +#: ../cache/locales.php:87 msgid "Your pod is not registered on the API" msgstr "Ihr Pod ist nicht bei der offiziellen API registriert" -#: [api]registered +#: ../cache/locales.php:88 msgid "Your pod is registered on the API" msgstr "Ihr Pod ist bei der offiziellen API registriert" -#: [api]wait +#: ../cache/locales.php:89 msgid "Your pod is not yet validated" msgstr "Ihr Pod ist noch nicht bestätigt worden" -#: [api]validated +#: ../cache/locales.php:90 msgid "Your pod is validated" msgstr "Ihr Pod wurde bestätigt" -#: [api]unregister -msgid "You asked to be removed from the API, this request will be processed in a couple of hours" -msgstr "Die Anfrage, Ihren Pod aus der API zu entfernen, wird in den nächsten Stunden ausgeführt" +#: ../cache/locales.php:91 +msgid "" +"You asked to be removed from the API, this request will be processed in a " +"couple of hours" +msgstr "" +"Die Anfrage, Ihren Pod aus der API zu entfernen, wird in den nächsten " +"Stunden ausgeführt" -#: [api]conf_updated [config]updated +#: ../cache/locales.php:92 ../cache/locales.php:147 msgid "Configuration updated" msgstr "Konfiguration aktualisiert" -#: [avatar]file +#: ../cache/locales.php:93 msgid "File" msgstr "Datei" -#: [avatar]use_it +#: ../cache/locales.php:94 msgid "Use it" msgstr "Es benutzen" -#: [avatar]webcam +#: ../cache/locales.php:95 msgid "Webcam" msgstr "Webcam" -#: [avatar]cheese +#: ../cache/locales.php:96 msgid "Cheese !" msgstr "Lächeln!" -#: [avatar]snapshot +#: ../cache/locales.php:97 msgid "Take a webcam snapshot" msgstr "Einen Webcam-Schnappschuss aufnehmen" -#: [avatar]updated +#: ../cache/locales.php:98 msgid "Avatar Updated" msgstr "Benutzerbild aktualisiert" -#: [avatar]not_updated +#: ../cache/locales.php:99 msgid "Avatar Not Updated" msgstr "Benutzerbild nicht aktualisiert" -#: [blog]title [feed]title +#: ../cache/locales.php:100 ../cache/locales.php:415 +#, php-format msgid "%s's feed" msgstr "%ss Datenstrom" -#: [blog]empty +#: ../cache/locales.php:101 msgid "This user has not posted anything right now" msgstr "Dieser Benutzer hat noch nichts veröffentlicht" -#: [title]conferences +#: ../cache/locales.php:102 msgid "Conferences" msgstr "Chaträume" -#: [title]groups [group]empty_title [menu]groups [page]groups +#: ../cache/locales.php:103 ../cache/locales.php:193 ../cache/locales.php:217 +#: ../cache/locales.php:468 msgid "Groups" msgstr "Gruppen" -#: [chatroom]add +#: ../cache/locales.php:104 msgid "Add a new Chat Room" msgstr "Einen neuen Chatraum hinzufügen" -#: [chatroom]id [chatrooms]id +#: ../cache/locales.php:105 ../cache/locales.php:368 msgid "Chat Room ID" msgstr "Chatraum-Kennung" -#: [chatroom]name -#, fuzzy -msgctxt "[chatroom]name" +#: ../cache/locales.php:106 ../cache/locales.php:116 ../cache/locales.php:156 +#: ../cache/locales.php:361 ../cache/locales.php:369 ../cache/locales.php:424 msgid "Name" msgstr "Name" -#: [chatroom]nickname [general]nickname [chatrooms]nickname +#: ../cache/locales.php:107 ../cache/locales.php:157 ../cache/locales.php:371 +#: ../cache/locales.php:425 msgid "Nickname" msgstr "Spitzname" -#: [chatroom]autojoin_label +#: ../cache/locales.php:108 msgid "Do you want do join automaticaly this Chat Room ?" msgstr "Möchten Sie diesem Chatraum automatisch beitreten?" -#: [chatroom]bad_id [chatrooms]bad_id +#: ../cache/locales.php:109 ../cache/locales.php:372 msgid "Bad Chatroom ID" msgstr "Falsche Chatraumkennung" -#: [chatroom]empty_name [chatrooms]empty_name +#: ../cache/locales.php:110 ../cache/locales.php:373 msgid "Empty name" msgstr "Leerer Name" -#: [bookmarks]updated +#: ../cache/locales.php:111 ../cache/locales.php:380 msgid "Bookmarks updated" msgstr "Lesezeichen aktualisiert" -#: [bookmarks]error -#, fuzzy -msgid "An error occured :" +#: ../cache/locales.php:112 +msgid "An error occured : " msgstr "Ein Fehler ist aufgetreten: " -#: [bookmarks]configure +#: ../cache/locales.php:113 msgid "Configure" msgstr "Konfigurieren" -#: [url]add +#: ../cache/locales.php:114 msgid "Add a new URL" msgstr "Neue Adresse hinzufügen" -#: [url]url +#: ../cache/locales.php:115 msgid "URL" msgstr "Adresse" -#: [url]name -#, fuzzy -msgctxt "[url]name" -msgid "Name" -msgstr "Name" - -#: [message]published +#: ../cache/locales.php:117 msgid "Message Published" msgstr "Nachricht veröffentlicht" -#: [message]encrypted +#: ../cache/locales.php:118 ../cache/locales.php:138 msgid "Encrypted message" msgstr "Verschlüsselte Nachricht" -#: [message]composing [chats]composing +#: ../cache/locales.php:119 msgid "Composing..." msgstr "Verfassen …" -#: [message]paused [chats]paused +#: ../cache/locales.php:120 msgid "Paused..." msgstr "Angehalten …" -#: [message]gone +#: ../cache/locales.php:121 msgid "Contact gone" msgstr "Kontakt verschwunden" -#: [chat]attention +#: ../cache/locales.php:122 +#, php-format msgid "%s needs your attention" msgstr "%s braucht Ihre Aufmerksamkeit" -#: [chat]placeholder +#: ../cache/locales.php:123 msgid "Your message here..." msgstr "Hier Ihre Nachricht …" -#: [chat]smileys +#: ../cache/locales.php:124 msgid "Smileys" msgstr "Smileys" -#: [chat]empty_title [button]chat +#: ../cache/locales.php:125 ../cache/locales.php:139 msgid "Chat" msgstr "Sofortnachrichten" -#: [chat]empty_text +#: ../cache/locales.php:126 msgid "Discuss with your contacts" msgstr "Mit Ihren Kontakten diskutieren" -#: [chat]frequent [chats]frequent -msgid "Frequent contacts" -msgstr "Häufige Kontakte" - -#: [chatroom]members +#: ../cache/locales.php:127 msgid "Members" msgstr "Mitglieder" -#: [chatroom]connected [chatrooms]connected +#: ../cache/locales.php:128 ../cache/locales.php:376 msgid "Connected to the chatroom" msgstr "Mit dem Chatraum verbunden" -#: [chatroom]disconnected [chatrooms]disconnected +#: ../cache/locales.php:129 ../cache/locales.php:377 msgid "Disconnected from the chatroom" msgstr "Vom Chatraum getrennt" -#: [chatroom]config [group]configuration [page]configuration +#: ../cache/locales.php:130 ../cache/locales.php:200 ../cache/locales.php:469 msgid "Configuration" msgstr "Einstellungen" -#: [chatroom]config_saved +#: ../cache/locales.php:131 msgid "Configuration saved" msgstr "Konfiguration gespeichert" -#: [chatroom]subject +#: ../cache/locales.php:132 msgid "Subject" msgstr "Betreff" -#: [chatroom]subject_changed +#: ../cache/locales.php:133 msgid "Subject changed" msgstr "Betreff geändert" -#: [chats]empty_title -#, fuzzy -msgid "No chats yet..." -msgstr "Noch keine Kommentare" - -#: [chats]empty -msgid "Open a new conversation by clicking on the plus button bellow or visit the Contacts page." +#: ../cache/locales.php:134 +msgid "Open a new conversation by clicking on the plus button bellow" msgstr "" -#: [chats]add +#: ../cache/locales.php:135 msgid "Chat with a contact" msgstr "Mit einem Kontakt sprechen" -#: [chats]more +#: ../cache/locales.php:136 +msgid "Frequent contacts" +msgstr "Häufige Kontakte" + +#: ../cache/locales.php:137 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" - -#: [config]general +#: ../cache/locales.php:140 msgid "General" msgstr "Allgemein" -#: [config]language +#: ../cache/locales.php:141 msgid "Language" msgstr "Sprache" -#: [config]roster +#: ../cache/locales.php:142 msgid "Roster display" msgstr "Kontaktlistenansicht" -#: [config]roster_show +#: ../cache/locales.php:143 msgid "Show the offline contacts" msgstr "Abgemeldete Kontakte anzeigen" -#: [config]roster_hide +#: ../cache/locales.php:144 msgid "Hide the offline contacts" msgstr "Abgemeldete Kontakte ausblenden" -#: [config]appearence +#: ../cache/locales.php:145 msgid "Appearence" msgstr "Erscheinungsbild" -#: [config]info -#, fuzzy -msgid "This configuration is shared wherever you are connected" -msgstr "Diese Konfiguration wird geteilt wohin auch immer Sie sich verbinden!" +#: ../cache/locales.php:146 +msgid "This configuration is shared wherever you are connected !" +msgstr "" +"Diese Konfiguration wird geteilt wohin auch immer Sie sich verbinden!" -#: [notifications]message +#: ../cache/locales.php:148 msgid "Notify on incoming message" msgstr "Benachrichtigung über eingehende Nachricht" -#: [notifications]desktop +#: ../cache/locales.php:149 msgid "Use desktop notifications" msgstr "Schreibtischbenachrichtigung nutzen" -#: [general]legend [general]general_title +#: ../cache/locales.php:150 +msgid "Data" +msgstr "Daten" + +#: ../cache/locales.php:151 +msgid "Cache" +msgstr "Puffer" + +#: ../cache/locales.php:152 ../cache/locales.php:218 ../cache/locales.php:466 +msgid "Contacts" +msgstr "Kontakte" + +#: ../cache/locales.php:153 ../cache/locales.php:480 +msgid "Posts" +msgstr "Beiträge" + +#: ../cache/locales.php:154 +msgid "Messages" +msgstr "Nachrichten" + +#: ../cache/locales.php:155 ../cache/locales.php:423 msgid "General Informations" msgstr "Allgemeine Angaben" -#: [general]name [public_groups]name [chatrooms]name -msgid "Name" -msgstr "Name" - -#: [general]date_of_birth +#: ../cache/locales.php:158 ../cache/locales.php:427 msgid "Date of Birth" msgstr "Geburtsdatum" -#: [general]gender +#: ../cache/locales.php:159 ../cache/locales.php:428 msgid "Gender" msgstr "Geschlecht" -#: [general]marital +#: ../cache/locales.php:160 ../cache/locales.php:429 msgid "Marital Status" msgstr "Familienstand" -#: [general]email +#: ../cache/locales.php:161 ../cache/locales.php:426 msgid "Email" msgstr "Epost" -#: [general]website +#: ../cache/locales.php:162 ../cache/locales.php:430 msgid "Website" msgstr "Internetseite" -#: [general]about +#: ../cache/locales.php:163 ../cache/locales.php:431 msgid "About Me" msgstr "Persönliche Angaben" -#: [general]accounts +#: ../cache/locales.php:164 msgid "Other Accounts" msgstr "Weitere Konten" -#: [general]tune +#: ../cache/locales.php:165 msgid "Is Listening" msgstr "hört" -#: [position]legend [position]position_title +#: ../cache/locales.php:166 ../cache/locales.php:432 msgid "Geographic Position" msgstr "Standort" -#: [position]locality +#: ../cache/locales.php:167 ../cache/locales.php:433 msgid "Locality" msgstr "Ort" -#: [position]country +#: ../cache/locales.php:168 ../cache/locales.php:434 msgid "Country" msgstr "Land" -#: [mood]title +#: ../cache/locales.php:169 msgid "Mood" msgstr "Stimmung" -#: [mood]im +#: ../cache/locales.php:170 msgid "I'm " msgstr "Ich bin " -#: [listen]title +#: ../cache/locales.php:171 msgid "Listening" msgstr "Hört zu" -#: [last]title +#: ../cache/locales.php:173 msgid "Last seen" msgstr "Zuletzt gesehen" -#: [client]title +#: ../cache/locales.php:174 msgid "Client Informations" msgstr "Programminformationen" -#: [explore]last_registered +#: ../cache/locales.php:175 msgid "Last registered" msgstr "Zuletzt angemeldet" -#: [explore]explore +#: ../cache/locales.php:176 msgid "Find some new friends" msgstr "Neu Freunde finden" -#: [edit]title [button]edit +#: ../cache/locales.php:177 ../cache/locales.php:533 msgid "Edit" msgstr "Bearbeiten" -#: [edit]alias +#: ../cache/locales.php:178 msgid "Alias" msgstr "Pseudonym" -#: [edit]group +#: ../cache/locales.php:179 msgid "Group" msgstr "Gruppe" -#: [edit]updated [roster]updated +#: ../cache/locales.php:180 ../cache/locales.php:400 msgid "Contact updated" msgstr "Kontakt aktualisiert" -#: [delete]title +#: ../cache/locales.php:181 msgid "Are you sure?" msgstr "Sind Sie sicher?" -#: [delete]text -msgid "You are going to delete one of your contacts, please confirm your action" -msgstr "Sie sind dabei einen Ihrer Kontakte zu löschen, bitte bestätigen Sie Ihre Handlung" +#: ../cache/locales.php:182 +msgid "" +"You are going to delete one of your contacts, please confirm your action" +msgstr "" +"Sie sind dabei einen Ihrer Kontakte zu löschen, bitte bestätigen Sie Ihre " +"Handlung" -#: [age]years +#: ../cache/locales.php:183 +#, php-format msgid "%s years" msgstr "%s Jahre" -#: [blog]last +#: ../cache/locales.php:184 msgid "Last public post" msgstr "Letzer öffentlicher Beitrag" -#: [subscription]to -#, fuzzy -msgid "You can see this contact status" -msgstr "Kein öffentlicher Datenstrom für diesen Kontakt" - -#: [subscription]to_button -msgid "Share my status" -msgstr "" - -#: [subscription]to_text -msgid "But this contact cannot see yours" -msgstr "" - -#: [subscription]from -#, fuzzy -msgid "You are not subscribed to this contact" -msgstr "Sie sind dabei sich von dieser Gruppe abzumelden" - -#: [subscription]from_button -#, fuzzy -msgid "Ask to subscribe" -msgstr "%s Abonnenten" - -#: [subscription]from_text -msgid "But this contact can still see if you are online" -msgstr "" - -#: [subscription]nil -#, fuzzy -msgid "No subscriptions" -msgstr "Anmeldungen" - -#: [subscription]nil_button -msgid "Invite" -msgstr "" - -#: [subscription]nil_text -msgid "This contact is in your contact list but there is no subscriptions between the two accounts" -msgstr "" - -#: [group]subscribe +#: ../cache/locales.php:185 msgid "Subscribe" msgstr "Abonnieren" -#: [group]subscribed +#: ../cache/locales.php:186 msgid "Subscribed" msgstr "Abonniert" -#: [group]unsubscribe +#: ../cache/locales.php:187 msgid "Unsubscribe" msgstr "Abbestellen" -#: [group]unsubscribe_text +#: ../cache/locales.php:188 msgid "You are going to unsubscribe from this Group" msgstr "Sie sind dabei sich von dieser Gruppe abzumelden" -#: [group]unsubscribed +#: ../cache/locales.php:189 msgid "Unsubscribed" msgstr "Abgemeldet" -#: [group]share_label +#: ../cache/locales.php:190 msgid "Make your membership to this group public to your friends" -msgstr "Machen Sie die Mitgliedschaft zu dieser Gruppe für Ihre Freunde öffentlich" +msgstr "" +"Machen Sie die Mitgliedschaft zu dieser Gruppe für Ihre Freunde öffentlich" -#: [group]label_label +#: ../cache/locales.php:191 msgid "Give a label for this group" msgstr "Der Gruppe eine Bezeichnung geben" -#: [group]sure +#: ../cache/locales.php:192 msgid "Are you sure ?" msgstr "Sind Sie sicher?" -#: [group]empty_text +#: ../cache/locales.php:194 msgid "Discover, follow and share" msgstr "Entdecken, folgen und teilen" -#: [group]empty +#: ../cache/locales.php:195 msgid "Something bad happened to this group" msgstr "" -#: [group]config_saved +#: ../cache/locales.php:196 msgid "Group configuration saved" msgstr "Gruppeneinstellung gespeichert" -#: [group]delete_title +#: ../cache/locales.php:197 msgid "Delete the group" msgstr "Die Gruppe löschen" -#: [group]delete_text -msgid "You are going to delete the following group. Please confirm your action." -msgstr "Sie sind dabei die folgende Gruppe zu löschen. Bitte bestätigen Sie die Aktion." +#: ../cache/locales.php:198 +msgid "" +"You are going to delete the following group. Please confirm your action." +msgstr "" +"Sie sind dabei die folgende Gruppe zu löschen. Bitte bestätigen Sie die " +"Aktion." -#: [group]delete_clean_text -msgid "It seems that this group doesn't exists anymore. Do you want to remove it from your subscriptions?" +#: ../cache/locales.php:199 +msgid "" +"It seems that this group doesn't exists anymore. Do you want to remove it " +"from your subscriptions?" msgstr "" -#: [group]counter -msgid "%s groups on this server" -msgstr "" - -#: [group]subscriptions [statistics]subscriptions +#: ../cache/locales.php:201 ../cache/locales.php:408 msgid "Subscriptions" msgstr "Anmeldungen" -#: [group]servers -#, fuzzy -msgid "Groups servers" -msgstr "Gruppen" - -#: [group]search_server -msgid "Search for a new server" -msgstr "" - -#: [group]help_info1 -msgid "Groups are the perfect way to share posts about topics that you like with all the other Movim's users." -msgstr "" - -#: [group]help_info2 -msgid "Choose a server and a Group and subscribe to it using the %s button in the header. You can also create a new one using the %s button." -msgstr "" - -#: [group]help_info3 -msgid "Done? You can now publish a new post in the Group by using the %s button." -msgstr "" - -#: [group]help_info4 -msgid "You will find a list of all your subscribed Groups in My Subscriptions and receive instantly all the new incoming posts in the %sNews%s page." -msgstr "" - -#: [groups]empty_title +#: ../cache/locales.php:202 ../cache/locales.php:290 msgid "Hello" msgstr "Hallo" -#: [groups]contact_post [hello]contact_post [menu]contact_post +#: ../cache/locales.php:203 ../cache/locales.php:225 ../cache/locales.php:291 msgid "Contact post" msgstr "Kontaktnachricht" -#: [groups]empty_text1 -msgid "You don't have any subscriptions yet, select a group server above to start exploring." +#: ../cache/locales.php:204 +msgid "" +"You don't have any subscriptions yet, select a group server above to start " +"exploring." msgstr "" -#: [groups]empty_text2 +#: ../cache/locales.php:205 msgid "Subscribe to your favorite feeds by bookmarking them." -msgstr "Ihren Liblingsdatenstrom abonnieren, durch Hinzufügen als Lesezeichen." +msgstr "" +"Ihren Liblingsdatenstrom abonnieren, durch Hinzufügen als Lesezeichen." -#: [groups]subscriptions +#: ../cache/locales.php:206 msgid "My Subscriptions" msgstr "Meine Abonnements" -#: [groups]add +#: ../cache/locales.php:207 msgid "Create a new Group" msgstr "Eine neue Gruppe erstellen" -#: [groups]name +#: ../cache/locales.php:208 msgid "Group name" msgstr "Gruppenname" -#: [groups]name_example +#: ../cache/locales.php:209 msgid "My Little Pony - Fan Club" msgstr "My Little Pony - Fanclub" -#: [groups]created +#: ../cache/locales.php:210 msgid "Group created successfully" msgstr "Grupper erfolgreich erstellt" -#: [groups]deleted +#: ../cache/locales.php:211 msgid "Group deleted successfully" msgstr "Gruppe erfolgreich gelöscht" -#: [groups]name_error +#: ../cache/locales.php:212 msgid "Please provide a valid group name (4 characters minimum)" msgstr "" -#: [groups]no_creation +#: ../cache/locales.php:213 msgid "You cannot create a new Group on this server" msgstr "Sie können keine neue Gruppe auf diesem Server erstellen" -#: [groups]sub +#: ../cache/locales.php:214 +#, php-format msgid "%s subscribers" msgstr "%s Abonnenten" -#: [groups]num +#: ../cache/locales.php:215 +#, php-format msgid "%s posts" msgstr "%s Beiträge" -#: [groups]disco_error -#, fuzzy -msgid "This server doesn't exists" -msgstr "Dieser Server beherbergt %s Konten" - -#: [menu]all +#: ../cache/locales.php:216 msgid "All" msgstr "Alle" -#: [menu]refresh +#: ../cache/locales.php:219 msgid "Refresh all the streams" msgstr "Alle Daten auffrischen" -#: [roster]search -#, fuzzy -msgid "Search in your contacts" -msgstr "Mit Ihren Kontakten diskutieren" - -#: [hello]active_contacts -#, fuzzy -msgid "Active contacts" -msgstr "Ihre Kontakte" - -#: [hello]chat -msgid "Go on the Chat page" -msgstr "Den Chat öffnen" - -#: [hello]news [page]news -msgid "News" -msgstr "Neuigkeiten" - -#: [hello]news_page -msgid "Read all theses articles on the News page" -msgstr "Alle diese Artikel auf der Nachrichtenseite lesen" - -#: [hello]blog_title -msgid "Visit your public blog" -msgstr "Ihren öffentlichen Blog besuchen" - -#: [hello]blog_text -msgid "See your public posts and share them with all your contacts" -msgstr "Ihre öffentlichen Beiträge ansehen und diese allen Ihren Kontakten freigeben" - -#: [hello]share_title -msgid "Universal share button" -msgstr "Universeller Freigabeknopf" - -#: [hello]share_text -msgid "Bookmark or drag and drop the following button in your toolbar and use it on all the pages you want to share on Movim" -msgstr "" - -#: [hello]share_button -msgid "Share on Movim" -msgstr "Auf Movim teilen" - -#: [help]faq -msgid "Frequently Asked Questions" -msgstr "Häufig gestellte Fragen" - -#: [banner]title -msgid "What do the little banners refer to ?" -msgstr "Was bedeuten die kleinen Fahnen?" - -#: [banner]info1 -msgid "Thanks to these five little banners, you can quickly identitfy the level of confdentiality applied to the information you provide." -msgstr "Danke dieser fünf kleinen Fahnen, können Sie schnell die Vertraulichkeitsstufe Ihrer Information erkennen." - -#: [banner]white -msgid "White, only you can see the information" -msgstr "Weiß, nur Sie können die Information sehen" - -#: [banner]green -msgid "Green, you have chosen some contacts who can see your information" -msgstr "Grün, Sie haben einige Kontakte gewählt, die Ihre Information sehen können" - -#: [banner]orange -msgid "Orange, all your contact list can see your information" -msgstr "Orange, Ihre vollständige Kontaktliste kann Ihre Information sehen" - -#: [banner]red -msgid "Red, everybody in the XMPP network can see your information" -msgstr "Rot, jeder im XMPP-Netzwerk kann Ihre Information sehen" - -#: [banner]black -msgid "Black, the whole Internet can see your information" -msgstr "Schwarz, das vollständige Internet kann Ihre Information sehen" - -#: [wiki]question -msgid "Looking for some documentation ?" -msgstr "Suchen Sie nach einer Dokumentation?" - -#: [wiki]button -msgid "Read the Wiki" -msgstr "Das Wiki lesen" - -#: [ml]question -msgid "Talk with us by email ?" -msgstr "Mit uns per E-Mail sprechen?" - -#: [ml]button -msgid "Join the Mailing List" -msgstr "Der Verteilerliste beitreten" - -#: [chatroom]question -msgid "Chat with the team ?" -msgstr "Mit dem Team sprechen?" - -#: [chatroom]button -msgid "Join the Chatroom" -msgstr "Den Chatraum betreten" - -#: [init]location -msgid "Location node created" -msgstr "Ortsknoten erstellt" - -#: [init]bookmark -msgid "Bookmark node created" -msgstr "Lesezeichenknoten erstellt" - -#: [init]vcard4 -msgid "Profile node created" -msgstr "Profilknoten erstellt" - -#: [init]avatar -msgid "Avatar node created" -msgstr "Avatarknoten erstellt" - -#: [init]subscriptions -msgid "Subscriptions node created" -msgstr "Abonnementknoten erstellt" - -#: [init]microblog -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 "" - -#: [error]username -msgid "Wrong username" -msgstr "Falscher Benutzername" - -#: [error]jid -msgid "Invalid JID" -msgstr "Ungültige Jabber-Kennung" - -#: [error]empty_challenge -msgid "Empty Challenge from the server" -msgstr "Leere Aufforderung vom Server" - -#: [error]dns -msgid "XMPP Domain error, your account is not a correct Jabber ID" -msgstr "XMPP-Domänenfehler: Ihr Konto ist keine richtige Jabber-Kennung" - -#: [error]data_missings -msgid "Some data are missing !" -msgstr "Es fehlen einige Daten!" - -#: [error]wrong_password -msgid "Wrong password" -msgstr "Falsches Passwort" - -#: [error]internal -msgid "Internal server error" -msgstr "Interner Server-Fehler" - -#: [error]session -msgid "Session error" -msgstr "Sitzungsfehler" - -#: [error]account_created -msgid "Account successfully created" -msgstr "Das Benutzerkonto wurde erfolgreich angelegt." - -#: [error]xmpp_unauthorized -#, fuzzy -msgctxt "[error]xmpp_unauthorized" -msgid "Your XMPP server is unauthorized" -msgstr "Ihr XMPP-Server ist nicht legitimiert" - -#: [error]mec_error -msgid "The server takes too much time to respond" -msgstr "Der Server braucht zum Antworten zu lange" - -#: [error]too_old -msgid "Your web browser is too old to use with Movim." -msgstr "Ihr Browser ist zu alt für Movim." - -#: [error]websocket -msgid "Movim cannot talk with the server, please try again later (Websocket connection error)" -msgstr "Movim kann den Server nicht erreichen, bitte versuchen Sie es später nochmal (Websocket-Verbindungsfehler)" - -#: [error]impossible -msgid "Impossible login" -msgstr "Anmeldung nicht möglich" - -#: [error]title -msgid "Oops!" -msgstr "Huch!" - -#: [error]default [visio]unknown_error -msgid "Unknown error" -msgstr "Unbekannter Fehler" - -#: [error]login_format -msgid "Invalid username format" -msgstr "Ungültiges Benutzernamenformat" - -#: [error]password_format -msgid "Invalid password format" -msgstr "Ungültiges Passwortformat" - -#: [error]unauthorized -#, fuzzy -msgctxt "[error]unauthorized" -msgid "Your XMPP server is unauthorized" -msgstr "Ihr XMPP-Server ist nicht legitimiert" - -#: [error]conflict -msgid "A Movim session is already open on an other device" -msgstr "" - -#: [error]wrong_account -msgid "Movim failed to authenticate. You entered wrong data" -msgstr "Movim konnte nicht legitimiert werden. Sie haben falsche Daten eingegeben." - -#: [error]mechanism -msgid "Authentication mechanism not supported by Movim" -msgstr "Legitimierungsmechanismus wird von Movim nicht unterstützt" - -#: [error]fail_auth -msgid "The XMPP authentification failed" -msgstr "XMPP-Legitimierung ist fehlgeschlagen" - -#: [account]title [accounts]accounts_title -msgid "Accounts" -msgstr "Konten" - -#: [form]username -msgid "My address" -msgstr "Adresse" - -#: [form]create_one -msgid "Create one !" -msgstr "Eines erstellen!" - -#: [form]another_account -msgid "Another account" -msgstr "Ein anderes Konto" - -#: [form]no_account -msgid "No account yet ?" -msgstr "Noch keine Konto?" - -#: [form]whitelist.info -msgid "You can login with accounts from theses servers" -msgstr "" - -#: [form]connected -msgid "Connected" -msgstr "Verbunden" - -#: [form]population -msgid "Population" -msgstr "Einwohner" - -#: [menu]empty_title -#, fuzzy -msgid "No news yet..." -msgstr "Noch keine Kommentare" - -#: [menu]empty -#, fuzzy -msgid "Welcome on your news feed, here you will see all the posts published by your contacts and in the groups you have subscribed." -msgstr "Willkommen zu Ihrem Datenstrom, hier können Sie alle Beiträge sehen, welche in Ihren abonnierten Gruppen veröffentlicht wurden." - -#: [menu]refresh -msgid "Refreshing all the streams" -msgstr "Alle Daten werden aufgefrischt" - -#: [menu]public -msgid "This post is public" -msgstr "Dieser Beitrag ist öffentlich" - -#: [affiliations]title -msgid "Manage your members" -msgstr "Mitglieder verwalten" - -#: [affiliations]get -msgid "Get the members" -msgstr "Mitglieder abfragen" - -#: [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" - -#: [notifs]title -msgid "Pending Invitations" -msgstr "Neue Einladungen" - -#: [notifs]wants_to_talk -msgid "%s wants to talk with you" -msgstr "%s möchte mit Ihnen sprechen" - -#: [notifs]manage -msgid "Manage" -msgstr "Verwalten" - -#: [post]news_feed -msgid "News Feed" -msgstr "Nachrichtendaten" - -#: [post]placeholder -msgid "Discover and register to the groups you are interested in" -msgstr "Gruppen, die Sie interessieren, entdecken und dort registrieren" - -#: [post]preview [page]preview -msgid "Preview" -msgstr "Vorschau" - -#: [post]help [page]help -msgid "Help" -msgstr "Hilfe" - -#: [post]help_more -msgid "More help" -msgstr "Weitere Hilfe" - -#: [post]help_manual -msgid "Markdown syntax manual" -msgstr "" - -#: [post]title -msgid "Title" -msgstr "Titel" - -#: [post]content -msgid "Content" -msgstr "Inhalt" - -#: [post]link -msgid "Link" -msgstr "Verweis" - -#: [post]tags -msgid "Tags" -msgstr "Schlagwörter" - -#: [post]valid_url [publish]valid_url -msgid "Please enter a valid url" -msgstr "Bitte eine gültige Adresse eingeben" - -#: [post]no_content_preview [publish]no_content_preview -msgid "No content to preview" -msgstr "Kein Inhalt zur Vorschau" - -#: [post]no_content [publish]no_content [post]empty -msgid "No content" -msgstr "Ohne Inhalt" - -#: [post]published -msgid "Post published" -msgstr "Beitrag veröffentlicht" - -#: [post]deleted -msgid "Post deleted" -msgstr "Beitrag gelöscht" - -#: [post]gallery -msgid "This picture will be added to your gallery" -msgstr "" - -#: [post]hot -msgid "What's Hot" -msgstr "Spannendes" - -#: [post]hot_text -msgid "Posts recently published in Groups that you are not subscribed (yet)" -msgstr "" - -#: [post]new [publish]new -msgid "New post" -msgstr "Neuer Beitrag" - -#: [post]embed_tip -msgid "You can also use services like Imgur or Flickr to host your picture and paste the link here." -msgstr "" - -#: [post]repost -msgid "This is a re-post from %s" -msgstr "" - -#: [post]repost_profile -msgid "See %s profile" -msgstr "Profil %s ansehen" - -#: [post]public -#, fuzzy -msgid "Publish this post publicly?" -msgstr "Diesen Beitrag in Ihrem öffentlichen Datenstrom veröffentlichen?" - -#: [post]blog_add -msgid "Post published on your blog" -msgstr "Beitrag in Ihrem Blog veröffentlicht" - -#: [post]blog_remove -msgid "Post removed from your blog" -msgstr "Beitrag von Ihrem Blog entfernt" - -#: [post]delete_title [post]delete -msgid "Delete this post" -msgstr "Diesen Eintrag löschen" - -#: [post]delete_text -msgid "You are going to delete this post, please confirm your action" -msgstr "" - -#: [post]comments_disabled -msgid "Comments disabled" -msgstr "Kommentare deaktiviert" - -#: [post]comment_published -msgid "Comment published" -msgstr "Kommentar veröffentlicht" - -#: [status]disconnect -msgid "Disconnect" -msgstr "Trennen" - -#: [status]here -msgid "Your status here !" -msgstr "Ihr Status hier!" - -#: [status]updated -msgid "Status updated" -msgstr "Status aktualisiert" - -#: [status]status -msgid "Status" -msgstr "Status" - -#: [status]presence -msgid "Presence" -msgstr "Anwesenend" - -#: [status]online -msgid "Online with Movim" -msgstr "" - -#: [publish]title -msgid "Publish" -msgstr "Veröffentlichen" - -#: [publish]attach -msgid "Add a file or a picture to your post" -msgstr "" - -#: [publish]no_publication -msgid "You cannot publish a post on this Group" -msgstr "" - -#: [publish]form_filled -msgid "Some fields have been filled in. Do you still want to go back and loose their content?" -msgstr "" - -#: [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" - -#: [rooms]empty_text1 -msgid "You don't have any chatroom yet." -msgstr "Sie sind noch keinem Chatraum beigetreten." - -#: [rooms]empty_text2 -msgid "Add one by clicking on the add button in the header." -msgstr "" - -#: [chatrooms]title -msgid "Chatrooms" -msgstr "Chaträume" - -#: [chatrooms]name_placeholder -msgid "My Favorite Room" -msgstr "Mein favorisierter Raum" - -#: [chatrooms]users -msgid "Users in the room" -msgstr "Nutzer im Raum" - -#: [chatrooms]bad_nickname -#, fuzzy -msgid "Please enter a correct nickname (2 to 40 characters)" -msgstr "Bitte einen richtigen Spitznamen eingeben (6 bis 40 Zeichen)" - -#: [room]anonymous_title -msgid "Public chatroom" -msgstr "Öffentlicher Chatraum" - -#: [room]no_room -msgid "Please provide a room address" -msgstr "Bitte eine Raumadresse übermitteln" - -#: [room]anonymous_text1 -msgid "You are currently logued as an anonymous user." -msgstr "" - -#: [room]anonymous_text2 -msgid "You can join using your own account or create one on the login page by loging out using the cross in the top-right corner." -msgstr "" - -#: [room]anonymous_login -msgid "Login on %s" -msgstr "Bei %s anmelden" - -#: [room]nick -msgid "Your nickname" -msgstr "Ihr Spitzname" - -#: [roster]ungrouped -msgid "Ungrouped" -msgstr "Nicht gruppiert" - -#: [roster]show_disconnected -msgid "Show disconnected contacts" -msgstr "Abgemeldete Kontakte anzeigen" - -#: [roster]hide_disconnected -msgid "Hide disconnected contacts" -msgstr "Abgemeldete Kontakte verbergen" - -#: [roster]show_group -msgid "Show group %s" -msgstr "Gruppe %s anzeigen" - -#: [roster]hide_group -msgid "Hide group %s" -msgstr "Gruppe %s verbergen" - -#: [roster]jid_error -msgid "Please enter a valid Jabber ID" -msgstr "Bitte eine gültige Jabber-Kennung eingeben" - -#: [roster]no_contacts_title -#, fuzzy -msgid "No contacts ?" -msgstr "Ihre Kontakte" - -#: [roster]no_contacts_text -#, fuzzy -msgid "You can add one using the + button bellow" -msgstr "Keine Kontakte? Sie können welche mit dem unteren + Knopf hinzufügen oder zur Entdeckenseite gehen." - -#: [roster]show_hide -msgid "Show/Hide" -msgstr "Anzeigen/Ausblenden" - -#: [roster]add_contact_info1 -msgid "Enter the Jabber ID of your contact." -msgstr "Die Jabber-Kennung Ihres Kontaktes eingeben." - -#: [roster]add_contact_info2 -msgid "Press enter to validate." -msgstr "Enter zum Überprüfen eingeben." - -#: [roster]jid -msgid "JID" -msgstr "JID" - -#: [roster]results -msgid "Results" -msgstr "Suchergebnisse" - -#: [roster]added -msgid "Contact added" -msgstr "Kontakt hinzugefügt" - -#: [roster]deleted -msgid "Contact deleted" -msgstr "Kontakt gelöscht" - -#: [roster]search +#: ../cache/locales.php:220 ../cache/locales.php:402 msgid "Search" msgstr "Suchen" -#: [share]error +#: ../cache/locales.php:221 +msgid "Go on the Chat page" +msgstr "Den Chat öffnen" + +#: ../cache/locales.php:222 +msgid "Read all theses articles on the News page" +msgstr "Alle diese Artikel auf der Nachrichtenseite lesen" + +#: ../cache/locales.php:223 +msgid "Visit your public blog" +msgstr "Ihren öffentlichen Blog besuchen" + +#: ../cache/locales.php:224 +msgid "See your public posts and share them with all your contacts" +msgstr "" +"Ihre öffentlichen Beiträge ansehen und diese allen Ihren Kontakten freigeben" + +#: ../cache/locales.php:226 +msgid "Universal share button" +msgstr "Universeller Freigabeknopf" + +#: ../cache/locales.php:227 +msgid "" +"Bookmark or drag and drop the following button in your toolbar and use it on " +"all the pages you want to share on Movim" +msgstr "" + +#: ../cache/locales.php:228 +msgid "Share on Movim" +msgstr "Auf Movim teilen" + +#: ../cache/locales.php:229 +msgid "Frequently Asked Questions" +msgstr "Häufig gestellte Fragen" + +#: ../cache/locales.php:230 +msgid "What do the little banners refer to ?" +msgstr "Was bedeuten die kleinen Fahnen?" + +#: ../cache/locales.php:231 +msgid "" +"Thanks to these five little banners, you can quickly identitfy the level of " +"confdentiality applied to the information you provide." +msgstr "" +"Danke dieser fünf kleinen Fahnen, können Sie schnell die " +"Vertraulichkeitsstufe Ihrer Information erkennen." + +#: ../cache/locales.php:232 +msgid "White, only you can see the information" +msgstr "Weiß, nur Sie können die Information sehen" + +#: ../cache/locales.php:233 +msgid "Green, you have chosen some contacts who can see your information" +msgstr "" +"Grün, Sie haben einige Kontakte gewählt, die Ihre Information sehen können" + +#: ../cache/locales.php:234 +msgid "Orange, all your contact list can see your information" +msgstr "Orange, Ihre vollständige Kontaktliste kann Ihre Information sehen" + +#: ../cache/locales.php:235 +msgid "Red, everybody in the XMPP network can see your information" +msgstr "Rot, jeder im XMPP-Netzwerk kann Ihre Information sehen" + +#: ../cache/locales.php:236 +msgid "Black, the whole Internet can see your information" +msgstr "Schwarz, das vollständige Internet kann Ihre Information sehen" + +#: ../cache/locales.php:237 +msgid "Looking for some documentation ?" +msgstr "Suchen Sie nach einer Dokumentation?" + +#: ../cache/locales.php:238 +msgid "Read the Wiki" +msgstr "Das Wiki lesen" + +#: ../cache/locales.php:239 +msgid "Talk with us by email ?" +msgstr "Mit uns per E-Mail sprechen?" + +#: ../cache/locales.php:240 +msgid "Join the Mailing List" +msgstr "Der Verteilerliste beitreten" + +#: ../cache/locales.php:241 +msgid "Chat with the team ?" +msgstr "Mit dem Team sprechen?" + +#: ../cache/locales.php:242 +msgid "Join the Chatroom" +msgstr "Den Chatraum betreten" + +#: ../cache/locales.php:243 +msgid "Location node created" +msgstr "Ortsknoten erstellt" + +#: ../cache/locales.php:244 +msgid "Bookmark node created" +msgstr "Lesezeichenknoten erstellt" + +#: ../cache/locales.php:245 +msgid "Profile node created" +msgstr "Profilknoten erstellt" + +#: ../cache/locales.php:246 +msgid "Avatar node created" +msgstr "Avatarknoten erstellt" + +#: ../cache/locales.php:247 +msgid "Subscriptions node created" +msgstr "Abonnementknoten erstellt" + +#: ../cache/locales.php:248 +msgid "Microblog node created" +msgstr "Microblogknoten ersellt" + +#: ../cache/locales.php:249 +msgid "Location" +msgstr "Standort" + +#: ../cache/locales.php:250 +msgid "Wrong position" +msgstr "Falsche Position" + +#: ../cache/locales.php:251 +msgid "Location updated" +msgstr "Standort aktualisiert" + +#: ../cache/locales.php:252 +msgid "Update my position" +msgstr "Meine Position aktualisieren" + +#: ../cache/locales.php:253 +msgid "Wrong username" +msgstr "Falscher Benutzername" + +#: ../cache/locales.php:254 +msgid "Invalid JID" +msgstr "Ungültige Jabber-Kennung" + +#: ../cache/locales.php:255 +msgid "Empty Challenge from the server" +msgstr "Leere Aufforderung vom Server" + +#: ../cache/locales.php:256 +msgid "XMPP Domain error, your account is not a correct Jabber ID" +msgstr "XMPP-Domänenfehler: Ihr Konto ist keine richtige Jabber-Kennung" + +#: ../cache/locales.php:257 +msgid "Some data are missing !" +msgstr "Es fehlen einige Daten!" + +#: ../cache/locales.php:258 +msgid "Wrong password" +msgstr "Falsches Passwort" + +#: ../cache/locales.php:259 +msgid "Internal server error" +msgstr "Interner Server-Fehler" + +#: ../cache/locales.php:260 +msgid "Session error" +msgstr "Sitzungsfehler" + +#: ../cache/locales.php:261 +msgid "Account successfully created" +msgstr "Das Benutzerkonto wurde erfolgreich angelegt." + +#: ../cache/locales.php:262 ../cache/locales.php:271 +msgid "Your XMPP server is unauthorized" +msgstr "Ihr XMPP-Server ist nicht legitimiert" + +#: ../cache/locales.php:263 +msgid "The server takes too much time to respond" +msgstr "Der Server braucht zum Antworten zu lange" + +#: ../cache/locales.php:264 +msgid "Your web browser is too old to use with Movim." +msgstr "Ihr Browser ist zu alt für Movim." + +#: ../cache/locales.php:265 +msgid "" +"Movim cannot talk with the server, please try again later (Websocket " +"connection error)" +msgstr "" +"Movim kann den Server nicht erreichen, bitte versuchen Sie es später nochmal " +"(Websocket-Verbindungsfehler)" + +#: ../cache/locales.php:266 +msgid "Impossible login" +msgstr "Anmeldung nicht möglich" + +#: ../cache/locales.php:267 +msgid "Oops!" +msgstr "Huch!" + +#: ../cache/locales.php:268 ../cache/locales.php:449 ../cache/locales.php:455 +msgid "Unknown error" +msgstr "Unbekannter Fehler" + +#: ../cache/locales.php:269 +msgid "Invalid username format" +msgstr "Ungültiges Benutzernamenformat" + +#: ../cache/locales.php:270 +msgid "Invalid password format" +msgstr "Ungültiges Passwortformat" + +#: ../cache/locales.php:272 +msgid "A Movim session is already open on an other device" +msgstr "" + +#: ../cache/locales.php:273 +msgid "Movim failed to authenticate. You entered wrong data" +msgstr "" +"Movim konnte nicht legitimiert werden. Sie haben falsche Daten eingegeben." + +#: ../cache/locales.php:274 +msgid "Authentication mechanism not supported by Movim" +msgstr "Legitimierungsmechanismus wird von Movim nicht unterstützt" + +#: ../cache/locales.php:275 +msgid "The XMPP authentification failed" +msgstr "XMPP-Legitimierung ist fehlgeschlagen" + +#: ../cache/locales.php:276 +#, php-format +msgid "" +"You can login with Facebook (chat only) using %syour.id@chat.facebook.com%s " +"and your password" +msgstr "" +"Sie können Sich mit Facebook (nur Kurznachrichten) anmelden mit " +"%sihre.identifikation@chat.facebook.com%s und Ihrem Passwort." + +#: ../cache/locales.php:277 +#, php-format +msgid "%sGmail accounts are also compatible%s but are not fully supported" +msgstr "" +"%sGooglemail-Konten werden auch unterstützt%s aber nicht mit vollem " +"Funktionsumfang" + +#: ../cache/locales.php:278 +msgid "You can login using your favorite Jabber account" +msgstr "Sie können sich mit Ihrem liebsten Jabber-Konto anmelden" + +#: ../cache/locales.php:279 +msgid "or with our demonstration account" +msgstr "oder mit unserem Demonstrationskonto" + +#: ../cache/locales.php:280 ../cache/locales.php:435 +msgid "Accounts" +msgstr "Konten" + +#: ../cache/locales.php:281 +msgid "My address" +msgstr "Adresse" + +#: ../cache/locales.php:283 +msgid "Create one !" +msgstr "Eines erstellen!" + +#: ../cache/locales.php:284 +msgid "No account yet ?" +msgstr "Noch keine Konto?" + +#: ../cache/locales.php:285 +msgid "Another account" +msgstr "Ein anderes Konto" + +#: ../cache/locales.php:286 +msgid "You can login with accounts from theses servers" +msgstr "" + +#: ../cache/locales.php:287 +msgid "Connected" +msgstr "Verbunden" + +#: ../cache/locales.php:288 +msgid "Population" +msgstr "Einwohner" + +#: ../cache/locales.php:289 +msgid "Bad nickname (between 4 and 40 characters)" +msgstr "" + +#: ../cache/locales.php:292 +msgid "" +"Welcome on your news feed, here you will see all the posts published in the " +"groups you have subscribed." +msgstr "" +"Willkommen zu Ihrem Datenstrom, hier können Sie alle Beiträge sehen, welche " +"in Ihren abonnierten Gruppen veröffentlicht wurden." + +#: ../cache/locales.php:293 +msgid "Refreshing all the streams" +msgstr "Alle Daten werden aufgefrischt" + +#: ../cache/locales.php:294 +msgid "This post is public" +msgstr "Dieser Beitrag ist öffentlich" + +#: ../cache/locales.php:295 +msgid "Manage your members" +msgstr "Mitglieder verwalten" + +#: ../cache/locales.php:296 +msgid "Get the members" +msgstr "Mitglieder abfragen" + +#: ../cache/locales.php:297 +msgid "Affiliations saved" +msgstr "Zugehörigkeiten gespeichert" + +#: ../cache/locales.php:298 +msgid "Manage your subscriptions" +msgstr "Ihre Abonnements verwalten" + +#: ../cache/locales.php:299 +msgid "Manage the subscriptions" +msgstr "Die Abonnements verwalten" + +#: ../cache/locales.php:300 +msgid "Get the subscriptions" +msgstr "Abonnements" + +#: ../cache/locales.php:301 +msgid "Subscriptions saved" +msgstr "Abonnement gespeichert" + +#: ../cache/locales.php:302 +msgid "Pending Invitations" +msgstr "Neue Einladungen" + +#: ../cache/locales.php:303 +#, php-format +msgid "%s wants to talk with you" +msgstr "%s möchte mit Ihnen sprechen" + +#: ../cache/locales.php:304 +msgid "Manage" +msgstr "Verwalten" + +#: ../cache/locales.php:305 ../cache/locales.php:338 +msgid "News Feed" +msgstr "Nachrichtendaten" + +#: ../cache/locales.php:306 ../cache/locales.php:339 +msgid "Discover and register to the groups you are interested in" +msgstr "Gruppen, die Sie interessieren, entdecken und dort registrieren" + +#: ../cache/locales.php:307 ../cache/locales.php:340 ../cache/locales.php:482 +msgid "Preview" +msgstr "Vorschau" + +#: ../cache/locales.php:308 ../cache/locales.php:341 ../cache/locales.php:478 +msgid "Help" +msgstr "Hilfe" + +#: ../cache/locales.php:309 ../cache/locales.php:342 +msgid "More help" +msgstr "Weitere Hilfe" + +#: ../cache/locales.php:310 ../cache/locales.php:343 +msgid "Markdown syntax manual" +msgstr "" + +#: ../cache/locales.php:311 ../cache/locales.php:344 ../cache/locales.php:681 +msgid "Title" +msgstr "Titel" + +#: ../cache/locales.php:312 ../cache/locales.php:345 +msgid "Content" +msgstr "Inhalt" + +#: ../cache/locales.php:313 ../cache/locales.php:346 +msgid "Link" +msgstr "Verweis" + +#: ../cache/locales.php:314 ../cache/locales.php:347 +msgid "Tags" +msgstr "Schlagwörter" + +#: ../cache/locales.php:315 ../cache/locales.php:348 +msgid "Please enter a valid url" +msgstr "Bitte eine gültige Adresse eingeben" + +#: ../cache/locales.php:316 ../cache/locales.php:349 +msgid "No content to preview" +msgstr "Kein Inhalt zur Vorschau" + +#: ../cache/locales.php:317 ../cache/locales.php:350 ../cache/locales.php:687 +msgid "No content" +msgstr "Ohne Inhalt" + +#: ../cache/locales.php:318 ../cache/locales.php:351 +msgid "Post published" +msgstr "Beitrag veröffentlicht" + +#: ../cache/locales.php:319 ../cache/locales.php:352 +msgid "Post deleted" +msgstr "Beitrag gelöscht" + +#: ../cache/locales.php:320 ../cache/locales.php:353 +msgid "This picture will be added to your gallery" +msgstr "" + +#: ../cache/locales.php:321 ../cache/locales.php:354 +msgid "What's Hot" +msgstr "Spannendes" + +#: ../cache/locales.php:322 ../cache/locales.php:355 +msgid "New post" +msgstr "Neuer Beitrag" + +#: ../cache/locales.php:323 ../cache/locales.php:357 +msgid "" +"You can also use services like Imgur or Flickr to host your picture and " +"paste the link here." +msgstr "" + +#: ../cache/locales.php:324 +#, php-format +msgid "This is a re-post from %s" +msgstr "" + +#: ../cache/locales.php:325 +#, php-format +msgid "See %s profile" +msgstr "Profil %s ansehen" + +#: ../cache/locales.php:326 +msgid "Publish this post on your public feed?" +msgstr "Diesen Beitrag in Ihrem öffentlichen Datenstrom veröffentlichen?" + +#: ../cache/locales.php:327 +msgid "Post published on your blog" +msgstr "Beitrag in Ihrem Blog veröffentlicht" + +#: ../cache/locales.php:328 +msgid "Post removed from your blog" +msgstr "Beitrag von Ihrem Blog entfernt" + +#: ../cache/locales.php:329 ../cache/locales.php:701 +msgid "Delete this post" +msgstr "Diesen Eintrag löschen" + +#: ../cache/locales.php:330 +msgid "You are going to delete this post, please confirm your action" +msgstr "" + +#: ../cache/locales.php:331 +msgid "Comments disabled" +msgstr "Kommentare deaktiviert" + +#: ../cache/locales.php:332 +msgid "Comment published" +msgstr "Kommentar veröffentlicht" + +#: ../cache/locales.php:333 +msgid "Disconnect" +msgstr "Trennen" + +#: ../cache/locales.php:334 +msgid "Your status here !" +msgstr "Ihr Status hier!" + +#: ../cache/locales.php:335 +msgid "Status updated" +msgstr "Status aktualisiert" + +#: ../cache/locales.php:336 +msgid "Status" +msgstr "Status" + +#: ../cache/locales.php:337 +msgid "Presence" +msgstr "Anwesenend" + +#: ../cache/locales.php:356 +msgid "Publish" +msgstr "Veröffentlichen" + +#: ../cache/locales.php:358 +msgid "You cannot publish a post on this Group" +msgstr "" + +#: ../cache/locales.php:359 +msgid "" +"Some fields have been filled in. Do you still want to go back and loose " +"their content?" +msgstr "" + +#: ../cache/locales.php:360 +msgid "Shared" +msgstr "Geteilt" + +#: ../cache/locales.php:362 +#, php-format +msgid "%s has been added to your public groups" +msgstr "%s wurde zu Ihren öffentlichen Gruppen hinzugefügt" + +#: ../cache/locales.php:363 +#, php-format +msgid "%s has been removed from your public groups" +msgstr "%s wurde aus Ihren öffentlichen Gruppen entfernt" + +#: ../cache/locales.php:364 +msgid "Add a chatroom" +msgstr "Chatraum hinzufügen" + +#: ../cache/locales.php:365 +msgid "You don't have any chatroom yet." +msgstr "Sie sind noch keinem Chatraum beigetreten." + +#: ../cache/locales.php:366 +msgid "Add one by clicking on the add button in the header." +msgstr "" + +#: ../cache/locales.php:367 +msgid "Chatrooms" +msgstr "Chaträume" + +#: ../cache/locales.php:370 +msgid "My Favorite Room" +msgstr "Mein favorisierter Raum" + +#: ../cache/locales.php:374 +msgid "Remove a chatroom" +msgstr "Chatraum löschen" + +#: ../cache/locales.php:375 +msgid "" +"You are going to remove the following chatroom. Please confirm your action." +msgstr "" +"Sie sind dabei den folgenden Chatraum zu löschen. Bitte bestätigen Sie Ihre " +"Handlung." + +#: ../cache/locales.php:378 +msgid "Users in the room" +msgstr "Nutzer im Raum" + +#: ../cache/locales.php:379 +msgid "Please enter a correct nickname (6 to 40 characters)" +msgstr "Bitte einen richtigen Spitznamen eingeben (6 bis 40 Zeichen)" + +#: ../cache/locales.php:381 +msgid "Public chatroom" +msgstr "Öffentlicher Chatraum" + +#: ../cache/locales.php:382 +msgid "Please provide a room address" +msgstr "Bitte eine Raumadresse übermitteln" + +#: ../cache/locales.php:383 +msgid "You are currently logued as an anonymous user." +msgstr "" + +#: ../cache/locales.php:384 +msgid "" +"You can join using your own account or create one on the login page by " +"loging out using the cross in the top-right corner." +msgstr "" + +#: ../cache/locales.php:385 +#, php-format +msgid "Login on %s" +msgstr "Bei %s anmelden" + +#: ../cache/locales.php:386 +msgid "Your nickname" +msgstr "Ihr Spitzname" + +#: ../cache/locales.php:387 +msgid "Ungrouped" +msgstr "Nicht gruppiert" + +#: ../cache/locales.php:388 +msgid "Show disconnected contacts" +msgstr "Abgemeldete Kontakte anzeigen" + +#: ../cache/locales.php:389 +msgid "Hide disconnected contacts" +msgstr "Abgemeldete Kontakte verbergen" + +#: ../cache/locales.php:390 +#, php-format +msgid "Show group %s" +msgstr "Gruppe %s anzeigen" + +#: ../cache/locales.php:391 +#, php-format +msgid "Hide group %s" +msgstr "Gruppe %s verbergen" + +#: ../cache/locales.php:392 +msgid "Please enter a valid Jabber ID" +msgstr "Bitte eine gültige Jabber-Kennung eingeben" + +#: ../cache/locales.php:393 +msgid "" +"No contacts ? You can add one using the + button bellow or going to the " +"Explore page" +msgstr "" +"Keine Kontakte? Sie können welche mit dem unteren + Knopf hinzufügen oder " +"zur Entdeckenseite gehen." + +#: ../cache/locales.php:394 +msgid "Show/Hide" +msgstr "Anzeigen/Ausblenden" + +#: ../cache/locales.php:395 +msgid "Enter the Jabber ID of your contact." +msgstr "Die Jabber-Kennung Ihres Kontaktes eingeben." + +#: ../cache/locales.php:396 +msgid "Press enter to validate." +msgstr "Enter zum Überprüfen eingeben." + +#: ../cache/locales.php:397 +msgid "JID" +msgstr "JID" + +#: ../cache/locales.php:398 +msgid "Results" +msgstr "Suchergebnisse" + +#: ../cache/locales.php:399 +msgid "Contact added" +msgstr "Kontakt hinzugefügt" + +#: ../cache/locales.php:401 +msgid "Contact deleted" +msgstr "Kontakt gelöscht" + +#: ../cache/locales.php:403 msgid "This is not a valid url" msgstr "Das ist keine gültige Adresse" -#: [share]success +#: ../cache/locales.php:404 msgid "Sharing the URL" msgstr "Adressfreigabe" -#: [statistics]title +#: ../cache/locales.php:405 msgid "Statistics" msgstr "Statistiken" -#: [statistics]since +#: ../cache/locales.php:406 msgid "Since" msgstr "Seit" -#: [statistics]sessions +#: ../cache/locales.php:407 msgid "Sessions" msgstr "Sitzungen" -#: [statistics]monthly_sub +#: ../cache/locales.php:409 msgid "Monthly Subscriptions" msgstr "Monatliches Abonnement" -#: [statistics]monthly_sub_cum +#: ../cache/locales.php:410 msgid "Monthly Subscriptions Cumulated" msgstr "Monatliche Abonnements" -#: [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." +#: ../cache/locales.php:412 +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." -#: [subscribe]server_question +#: ../cache/locales.php:413 msgid "Your server here ?" msgstr "Ihr Server hier?" -#: [subscribe]server_contact +#: ../cache/locales.php:414 msgid "Contact us to add yours to the officially supported servers list" -msgstr "Treten Sie mit uns in Kontakt, um Ihren Server zu der Liste der offiziell unterstützten Server hinzuzufügen" +msgstr "" +"Treten Sie mit uns in Kontakt, um Ihren Server zu der Liste der offiziell " +"unterstützten Server hinzuzufügen" -#: [feed]nope +#: ../cache/locales.php:416 msgid "No public feed for this contact" msgstr "Kein öffentlicher Datenstrom für diesen Kontakt" -#: [feed]nope_contact +#: ../cache/locales.php:417 msgid "No contact specified" msgstr "Keinen Kontakt spezifiziert" -#: [upload]title -#, fuzzy -msgid "Upload a file" -msgstr "Hochladen" - -#: [upload]choose -msgid "Choose a file to upload" -msgstr "" - -#: [vcard]title [page]profile +#: ../cache/locales.php:418 ../cache/locales.php:473 msgid "Profile" msgstr "Profil" -#: [vcard]updated +#: ../cache/locales.php:419 msgid "Profile Updated" msgstr "Profil aktualisiert" -#: [vcard]not_updated +#: ../cache/locales.php:420 msgid "Profile Not Updated" msgstr "Profil nicht aktualisiert" -#: [vcard]public +#: ../cache/locales.php:421 msgid "Your profile is now public" msgstr "Ihr Profil ist jetzt öffentlich" -#: [vcard]restricted +#: ../cache/locales.php:422 msgid "Your profile is now restricted" msgstr "Ihr Profil ist jetzt eingeschränkt" -#: [general]nickname -#, fuzzy -msgctxt "[general]nickname" -msgid "Nickname" -msgstr "Spitzname" - -#: [accounts]twitter +#: ../cache/locales.php:436 msgid "Twitter" msgstr "Twitter" -#: [accounts]skype +#: ../cache/locales.php:437 msgid "Skype" msgstr "Skype" -#: [accounts]yahoo +#: ../cache/locales.php:438 msgid "Yahoo" msgstr "Yahoo" -#: [accounts]accounts_nickname -#, fuzzy -msgctxt "[accounts]accounts_nickname" -msgid "Nickname" -msgstr "Spitzname" - -#: [accounts]accounts_yahoo -#, fuzzy -msgid "Yahoo Account" -msgstr "Konto" - -#: [privacy]privacy_title +#: ../cache/locales.php:439 msgid "Privacy Level" msgstr "Privatsphärenstufe" -#: [privacy]privacy_question +#: ../cache/locales.php:440 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." -msgstr "Achtung! Durch das Öffentlichmachen des Profils werden alle obenstehenden Information verfügbar für alle Movimnutzer und das gesamte Internet." +#: ../cache/locales.php:441 +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." +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 -msgid "Submit" -msgstr "Absenden" - -#: [save]reset [button]reset -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 +#: ../cache/locales.php:442 msgid "Call" msgstr "Anrufen" -#: [visio]hang_up +#: ../cache/locales.php:443 msgid "Hang up" msgstr "Auflegen" -#: [visio]connection +#: ../cache/locales.php:444 msgid "Connection" msgstr "Verbindung" -#: [global]no_js +#: ../cache/locales.php:445 ../cache/locales.php:451 +msgid "Hung up" +msgstr "Aufgelegt" + +#: ../cache/locales.php:446 ../cache/locales.php:452 +msgid "Your contact is busy" +msgstr "Der Kontakt ist beschäftigt" + +#: ../cache/locales.php:447 ../cache/locales.php:453 +msgid "Declined" +msgstr "Abgelehnt" + +#: ../cache/locales.php:448 ../cache/locales.php:454 +msgid "Remote application incompatible" +msgstr "Entfernte Anwendung inkompatibel" + +#: ../cache/locales.php:450 ../cache/locales.php:456 +msgid "Is calling you" +msgstr "Ruft Sie gerade an" + +#: ../cache/locales.php:457 msgid "You don't have javascript enabled. Good luck with that." msgstr "Javaskript ist deaktiviert. Viel Erfolg damit!" -#: [global]description -msgid "Movim is a kickass distributed social networking platform that protect your privacy an comes with a set of awesome features." -msgstr "Movim ist eine großartige Platform eines verteilten sozialen Netzwerks, das die Privatsphäre schützt und eine Menge fantastischer Funktionen mitbringt." +#: ../cache/locales.php:458 +msgid "" +"Movim is a kickass distributed social networking platform that protect your " +"privacy an comes with a set of awesome features." +msgstr "" +"Movim ist eine großartige Platform eines verteilten sozialen Netzwerks, das " +"die Privatsphäre schützt und eine Menge fantastischer Funktionen mitbringt." -#: [page]administration +#: ../cache/locales.php:459 msgid "Administration" msgstr "Systemverwaltung" -#: [page]home +#: ../cache/locales.php:460 msgid "Home" msgstr "Hauptansicht" -#: [page]discover +#: ../cache/locales.php:461 msgid "Discover" msgstr "Entdecken" -#: [page]explore +#: ../cache/locales.php:462 msgid "Explore" msgstr "Durchsuchen" -#: [page]account_creation +#: ../cache/locales.php:463 msgid "Account Creation" msgstr "Konto erstellen" -#: [page]avatar +#: ../cache/locales.php:464 +msgid "News" +msgstr "Neuigkeiten" + +#: ../cache/locales.php:465 msgid "Avatar" msgstr "Benutzerbild" -#: [page]chats +#: ../cache/locales.php:467 msgid "Chats" msgstr "Unterhaltungen" -#: [page]server +#: ../cache/locales.php:470 msgid "Server" msgstr "Server" -#: [page]public_groups +#: ../cache/locales.php:471 msgid "Public Groups" msgstr "Öffentliche Gruppen" -#: [page]viewer +#: ../cache/locales.php:472 msgid "Viewer" msgstr "Betrachter" -#: [page]media +#: ../cache/locales.php:474 msgid "Media" msgstr "Medien" -#: [page]blog +#: ../cache/locales.php:475 msgid "Blog" msgstr "Blog" -#: [page]about +#: ../cache/locales.php:476 msgid "About" msgstr "Info" -#: [page]login +#: ../cache/locales.php:477 msgid "Login" msgstr "Anmelden" -#: [page]feed +#: ../cache/locales.php:479 msgid "Feed" msgstr "Datenstrom" -#: [page]gallery +#: ../cache/locales.php:481 msgid "Gallery" msgstr "Galerie" -#: [page]visio +#: ../cache/locales.php:483 msgid "Visio-conference" msgstr "Videokonferenz" -#: [page]pods +#: ../cache/locales.php:484 msgid "Pods" msgstr "Pods" -#: [page]share +#: ../cache/locales.php:485 msgid "Share" msgstr "Teilen" -#: [page]room +#: ../cache/locales.php:486 msgid "Room" msgstr "Raum" -#: [error]error +#: ../cache/locales.php:487 +#, php-format msgid "Error: %s" msgstr "Fehler: %s" -#: [error]cannot_load_file +#: ../cache/locales.php:488 +#, php-format msgid "Cannot load file '%s'" msgstr "Datei »%s« kann nicht geladen werden." -#: [error]route +#: ../cache/locales.php:489 +#, php-format msgid "Route error, please set all the parameters for the page %s" -msgstr "Fehler bei der Weiterleitung. Bitte alle Parameter für die Seite %s einstellen." +msgstr "" +"Fehler bei der Weiterleitung. Bitte alle Parameter für die Seite %s " +"einstellen." -#: [error]widget_load_error +#: ../cache/locales.php:490 +#, php-format msgid "Requested widget '%s' doesn't exist." msgstr "Das geforderte Widget »%s« ist nicht vorhanden." -#: [error]widget_call_error +#: ../cache/locales.php:491 +#, php-format msgid "Requested event '%s' not registered." msgstr "Das geforderte Event »%s« ist nicht registriert." -#: [error]whoops +#: ../cache/locales.php:492 msgid "Whoops!" msgstr "Huch!" -#: [error]media_not_found +#: ../cache/locales.php:493 msgid "It seem that you don't have any pictures here?" msgstr "Es sieht so aus, als hätten Sie hier keine Bilder." -#: [error]media_ask_upload +#: ../cache/locales.php:494 msgid "You can try to upload a couple by going to the Media page" -msgstr "Sie können versuchen einige hochzuladen, indem Sie auf die Medienseite gehen." +msgstr "" +"Sie können versuchen einige hochzuladen, indem Sie auf die Medienseite gehen." -#: [title]about +#: ../cache/locales.php:495 +#, php-format msgid "%s - About" msgstr "%s - Info" -#: [title]account +#: ../cache/locales.php:496 +#, php-format msgid "%s - Account" msgstr "%s - Konto" -#: [title]administration +#: ../cache/locales.php:497 +#, php-format msgid "%s - Administration Panel" msgstr "%s - Systemverwaltung" -#: [title]blog +#: ../cache/locales.php:498 +#, php-format msgid "%s - Blog" msgstr "%s - Blog" -#: [title]configuration +#: ../cache/locales.php:499 +#, php-format msgid "%s - Configuration" msgstr "%s – Einstellungen" -#: [title]discover +#: ../cache/locales.php:500 +#, php-format msgid "%s - Discover" msgstr "%s - Entdecken" -#: [title]explore +#: ../cache/locales.php:501 +#, php-format msgid "%s - Explore" msgstr "%s - Durchsuchen" -#: [title]help +#: ../cache/locales.php:502 +#, php-format msgid "%s - Help Page" msgstr "%s - Hilfeseite" -#: [title]login +#: ../cache/locales.php:503 +#, php-format msgid "%s - Login to Movim" msgstr "%s – Anmelden" -#: [title]main +#: ../cache/locales.php:504 +#, php-format msgid "%s - Welcome to Movim" msgstr "%s – Willkommen bei Movim" -#: [title]media +#: ../cache/locales.php:505 +#, php-format msgid "%s - Media" msgstr "%s - Medien" -#: [title]news +#: ../cache/locales.php:506 +#, php-format msgid "%s - News" msgstr "%s - Neuigkeiten" -#: [title]node_configuration +#: ../cache/locales.php:507 +#, php-format msgid "%s - Group Configuration" msgstr "%s - Gruppenkonfiguration" -#: [title]node +#: ../cache/locales.php:508 +#, php-format msgid "%s - Group" msgstr "%s - Gruppe" -#: [title]not_found +#: ../cache/locales.php:509 +#, php-format msgid "%s - 404" msgstr "%s - 404" -#: [title]profile +#: ../cache/locales.php:510 +#, php-format msgid "%s - Profile" msgstr "%s - Profil" -#: [title]server +#: ../cache/locales.php:511 +#, php-format msgid "%s - Server" msgstr "%s - Server" -#: [button]validate +#: ../cache/locales.php:512 msgid "Validate" msgstr "Bestätigen" -#: [button]refresh +#: ../cache/locales.php:513 msgid "Refresh" msgstr "Aktualisieren" -#: [button]add +#: ../cache/locales.php:514 msgid "Add" msgstr "Hinzufügen" -#: [button]delete +#: ../cache/locales.php:515 msgid "Delete" msgstr "Löschen" -#: [button]cancel +#: ../cache/locales.php:516 +msgid "Remove" +msgstr "Entfernen" + +#: ../cache/locales.php:517 msgid "Cancel" msgstr "Abbrechen" -#: [button]close +#: ../cache/locales.php:518 msgid "Close" msgstr "Schließen" -#: [button]update +#: ../cache/locales.php:519 msgid "Update" msgstr "Aktualisieren" -#: [button]updating +#: ../cache/locales.php:520 msgid "Updating" msgstr "Aktualisierung läuft" -#: [button]submitting +#: ../cache/locales.php:521 +msgid "Submit" +msgstr "Absenden" + +#: ../cache/locales.php:522 msgid "Submitting" msgstr "Wird gesendet" -#: [button]register +#: ../cache/locales.php:523 +msgid "Reset" +msgstr "Zurücksetzen" + +#: ../cache/locales.php:524 msgid "Register" msgstr "Registrieren" -#: [button]unregister +#: ../cache/locales.php:525 msgid "Unregister" msgstr "Registrierung löschen" -#: [button]save +#: ../cache/locales.php:526 msgid "Save" msgstr "Speichern" -#: [button]clear +#: ../cache/locales.php:527 msgid "Clear" msgstr "Leeren" -#: [button]upload +#: ../cache/locales.php:528 msgid "Upload" msgstr "Hochladen" -#: [button]come_in +#: ../cache/locales.php:529 msgid "Come in!" msgstr "Komm herein!" -#: [button]connecting +#: ../cache/locales.php:530 msgid "Connecting" msgstr "Verbindung wird hergestellt" -#: [button]bool_yes +#: ../cache/locales.php:531 msgid "Yes" msgstr "Ja" -#: [button]bool_no +#: ../cache/locales.php:532 msgid "No" msgstr "Nein" -#: [button]return +#: ../cache/locales.php:534 msgid "Return" msgstr "Zurück" -#: [button]accept +#: ../cache/locales.php:535 msgid "Accept" msgstr "Annehmen" -#: [button]refuse +#: ../cache/locales.php:536 msgid "Refuse" msgstr "Ablehnen" -#: [button]next +#: ../cache/locales.php:537 msgid "Next" msgstr "Weiter" -#: [button]previous +#: ../cache/locales.php:538 msgid "Previous" msgstr "Zurück" -#: [step]step +#: ../cache/locales.php:539 +#, php-format msgid "Step %s" msgstr "Schritt %s" -#: [day]title +#: ../cache/locales.php:542 msgid "Day" msgstr "Tag" -#: [day]monday +#: ../cache/locales.php:543 msgid "Monday" msgstr "Montag" -#: [day]tuesday +#: ../cache/locales.php:544 msgid "Tuesday" msgstr "Dienstag" -#: [day]wednesday +#: ../cache/locales.php:545 msgid "Wednesday" msgstr "Mittwoch" -#: [day]thursday +#: ../cache/locales.php:546 msgid "Thursday" msgstr "Donnerstag" -#: [day]friday +#: ../cache/locales.php:547 msgid "Friday" msgstr "Freitag" -#: [day]saturday +#: ../cache/locales.php:548 msgid "Saturday" msgstr "Samstag" -#: [day]sunday +#: ../cache/locales.php:549 msgid "Sunday" msgstr "Sonntag" -#: [gender]nil -#, fuzzy -msgctxt "[gender]nil" +#: ../cache/locales.php:550 ../cache/locales.php:559 msgid "None" msgstr "Nichts" -#: [gender]male +#: ../cache/locales.php:551 msgid "Male" msgstr "Männlich" -#: [gender]female +#: ../cache/locales.php:552 msgid "Female" msgstr "Weiblich" -#: [gender]other +#: ../cache/locales.php:553 msgid "Other" msgstr "Sonstige" -#: [client]bot +#: ../cache/locales.php:554 msgid "Bot" msgstr "Roboter" -#: [client]desktop +#: ../cache/locales.php:555 msgid "Desktop" msgstr "Schreibtisch" -#: [client]phone +#: ../cache/locales.php:556 msgid "Phone" msgstr "Telefon" -#: [client]web +#: ../cache/locales.php:557 msgid "Web" msgstr "Internet" -#: [client]registered +#: ../cache/locales.php:558 msgid "Registered" msgstr "Registriert" -#: [marital]nil -#, fuzzy -msgctxt "[marital]nil" -msgid "None" -msgstr "Nichts" - -#: [marital]single +#: ../cache/locales.php:560 msgid "Single" msgstr "Single" -#: [marital]relationship +#: ../cache/locales.php:561 msgid "In a relationship" msgstr "In einer Beziehung" -#: [marital]married +#: ../cache/locales.php:562 msgid "Married" msgstr "Verheiratet" -#: [marital]divorced +#: ../cache/locales.php:563 msgid "Divorced" msgstr "Geschieden" -#: [marital]widowed +#: ../cache/locales.php:564 msgid "Widowed" msgstr "Verwitwet" -#: [marital]cohabiting +#: ../cache/locales.php:565 msgid "Cohabiting" msgstr "Wilde Ehe" -#: [marital]union +#: ../cache/locales.php:566 msgid "Civil Union" msgstr "Eingetragene Lebenspartnerschaft" -#: [flag]white +#: ../cache/locales.php:567 msgid "Not shared" msgstr "Nicht geteilt" -#: [flag]green +#: ../cache/locales.php:568 msgid "Shared with one contact" msgstr "Mit einem Kontakt geteilt" -#: [flag]orange +#: ../cache/locales.php:569 msgid "Shared with all contacts" msgstr "Mit allen Kontakten geteilt" -#: [flag]red +#: ../cache/locales.php:570 msgid "Shared with the XMPP network" msgstr "Mit dem XMPP-Netzwerk geteilt" -#: [flag]black +#: ../cache/locales.php:571 msgid "Shared with the whole Internet" msgstr "Mit dem gesamten Internet geteilt" -#: [presence]online +#: ../cache/locales.php:572 msgid "Online" msgstr "Verbunden" -#: [presence]away +#: ../cache/locales.php:573 msgid "Away" msgstr "Abwesend" -#: [presence]dnd +#: ../cache/locales.php:574 msgid "Do Not Disturb" msgstr "Bitte nicht stören" -#: [presence]xa +#: ../cache/locales.php:575 msgid "Extended Away" msgstr "Länger abwesend" -#: [presence]offline +#: ../cache/locales.php:576 msgid "Offline" msgstr "Nicht verbunden" -#: [presence]error +#: ../cache/locales.php:577 msgid "Error" msgstr "Fehler" -#: [mood]afraid +#: ../cache/locales.php:578 msgid "afraid" msgstr "verängstigt" -#: [mood]amazed +#: ../cache/locales.php:579 msgid "amazed" msgstr "begeistert" -#: [mood]amorous +#: ../cache/locales.php:580 msgid "amorous" msgstr "verliebt" -#: [mood]angry +#: ../cache/locales.php:581 msgid "angry" msgstr "wütend" -#: [mood]annoyed +#: ../cache/locales.php:582 msgid "annoyed" msgstr "verärgert" -#: [mood]anxious +#: ../cache/locales.php:583 msgid "anxious" msgstr "besorgt" -#: [mood]aroused +#: ../cache/locales.php:584 msgid "aroused" msgstr "aufgeregt" -#: [mood]ashamed +#: ../cache/locales.php:585 msgid "ashamed" msgstr "beschämt" -#: [mood]bored +#: ../cache/locales.php:586 msgid "bored" msgstr "gelangweilt" -#: [mood]brave +#: ../cache/locales.php:587 msgid "brave" msgstr "tapfer" -#: [mood]calm +#: ../cache/locales.php:588 msgid "calm" msgstr "ruhig" -#: [mood]cautious +#: ../cache/locales.php:589 msgid "cautious" msgstr "vorsichtig" -#: [mood]cold +#: ../cache/locales.php:590 msgid "cold" msgstr "kalt" -#: [mood]confident +#: ../cache/locales.php:591 msgid "confident" msgstr "zuversichtlich" -#: [mood]confused +#: ../cache/locales.php:592 msgid "confused" msgstr "verwirrt" -#: [mood]contemplative +#: ../cache/locales.php:593 msgid "contemplative" msgstr "nachdenklich" -#: [mood]contented +#: ../cache/locales.php:594 msgid "contented" msgstr "glücklich" -#: [mood]cranky +#: ../cache/locales.php:595 msgid "cranky" msgstr "reizbar" -#: [mood]crazy +#: ../cache/locales.php:596 msgid "crazy" msgstr "verrückt" -#: [mood]creative +#: ../cache/locales.php:597 msgid "creative" msgstr "kreativ" -#: [mood]curious +#: ../cache/locales.php:598 msgid "curious" msgstr "neugierig" -#: [mood]dejected +#: ../cache/locales.php:599 msgid "dejected" msgstr "niedergeschlagen" -#: [mood]depressed +#: ../cache/locales.php:600 msgid "depressed" msgstr "bedrückt" -#: [mood]disappointed +#: ../cache/locales.php:601 msgid "disappointed" msgstr "enttäuscht" -#: [mood]disgusted +#: ../cache/locales.php:602 msgid "disgusted" msgstr "angewidert" -#: [mood]dismayed +#: ../cache/locales.php:603 msgid "dismayed" msgstr "bestürzt" -#: [mood]distracted +#: ../cache/locales.php:604 msgid "distracted" msgstr "abgelenkt" -#: [mood]embarrassed +#: ../cache/locales.php:605 msgid "embarrassed" msgstr "verlegen" -#: [mood]envious +#: ../cache/locales.php:606 msgid "envious" msgstr "neidisch" -#: [mood]excited +#: ../cache/locales.php:607 msgid "excited" msgstr "begeistert" -#: [mood]flirtatious +#: ../cache/locales.php:608 msgid "flirtatious" msgstr "kokett" -#: [mood]frustated +#: ../cache/locales.php:609 msgid "frustated" msgstr "frustriert" -#: [mood]grateful +#: ../cache/locales.php:610 msgid "grateful" msgstr "dankbar" -#: [mood]grieving +#: ../cache/locales.php:611 msgid "grieving" msgstr "trauernd" -#: [mood]grumpy +#: ../cache/locales.php:612 msgid "grumpy" msgstr "missmutig" -#: [mood]guilty +#: ../cache/locales.php:613 msgid "guilty" msgstr "schuldbewusst" -#: [mood]happy +#: ../cache/locales.php:614 msgid "happy" msgstr "fröhlich" -#: [mood]hopeful +#: ../cache/locales.php:615 msgid "hopeful" msgstr "hoffnungsvoll" -#: [mood]hot +#: ../cache/locales.php:616 msgid "hot" msgstr "heiß" -#: [mood]humbled +#: ../cache/locales.php:617 msgid "humbled" msgstr "geehrt" -#: [mood]humiliated +#: ../cache/locales.php:618 msgid "humiliated" msgstr "gedemütigt" -#: [mood]hungry +#: ../cache/locales.php:619 msgid "hungry" msgstr "hungrig" -#: [mood]hurt +#: ../cache/locales.php:620 msgid "hurt" msgstr "verletzt" -#: [mood]impressed +#: ../cache/locales.php:621 msgid "impressed" msgstr "beeindruckt" -#: [mood]in_awe +#: ../cache/locales.php:622 msgid "in awe" msgstr "bewundernd" -#: [mood]in_love +#: ../cache/locales.php:623 msgid "in love" msgstr "verliebt" -#: [mood]indignant +#: ../cache/locales.php:624 msgid "indignant" msgstr "empört" -#: [mood]interested +#: ../cache/locales.php:625 msgid "interested" msgstr "interessiert" -#: [mood]intoxicated +#: ../cache/locales.php:626 msgid "intoxicated" msgstr "berauscht" -#: [mood]invincible +#: ../cache/locales.php:627 msgid "invincible" msgstr "unbesiegbar" -#: [mood]jealous +#: ../cache/locales.php:628 msgid "jealous" msgstr "eifersüchtig" -#: [mood]lonely +#: ../cache/locales.php:629 msgid "lonely" msgstr "einsam" -#: [mood]lost +#: ../cache/locales.php:630 msgid "lost" msgstr "verloren" -#: [mood]lucky +#: ../cache/locales.php:631 msgid "lucky" msgstr "Glück gehabt" -#: [mood]mean +#: ../cache/locales.php:632 msgid "mean" msgstr "gemein" -#: [mood]moody +#: ../cache/locales.php:633 msgid "moody" msgstr "mürrisch" -#: [mood]nervous +#: ../cache/locales.php:634 msgid "nervous" msgstr "nervös" -#: [mood]neutral +#: ../cache/locales.php:635 msgid "neutral" msgstr "gleichgültig" -#: [mood]offended +#: ../cache/locales.php:636 msgid "offended" msgstr "beleidigt" -#: [mood]outraged +#: ../cache/locales.php:637 msgid "outraged" msgstr "empört" -#: [mood]playful +#: ../cache/locales.php:638 msgid "playful" msgstr "verspielt" -#: [mood]proud +#: ../cache/locales.php:639 msgid "proud" msgstr "stolz" -#: [mood]relaxed +#: ../cache/locales.php:640 msgid "relaxed" msgstr "entspannt" -#: [mood]relieved +#: ../cache/locales.php:641 msgid "relieved" msgstr "erleichtert" -#: [mood]restless +#: ../cache/locales.php:642 +msgid "remorseful" +msgstr "reumütig" + +#: ../cache/locales.php:643 msgid "restless" msgstr "ruhelos" -#: [mood]sad +#: ../cache/locales.php:644 msgid "sad" msgstr "betrübt" -#: [mood]sarcastic +#: ../cache/locales.php:645 msgid "sarcastic" msgstr "sarkastisch" -#: [mood]satisfied +#: ../cache/locales.php:646 msgid "satisfied" msgstr "zufrieden" -#: [mood]serious +#: ../cache/locales.php:647 msgid "serious" msgstr "ernst" -#: [mood]shocked +#: ../cache/locales.php:648 msgid "shocked" msgstr "schockiert" -#: [mood]shy +#: ../cache/locales.php:649 msgid "shy" msgstr "schüchtern" -#: [mood]sick +#: ../cache/locales.php:650 msgid "sick" msgstr "krank" -#: [mood]sleepy +#: ../cache/locales.php:651 msgid "sleepy" msgstr "schläfrig" -#: [mood]spontaneous +#: ../cache/locales.php:652 msgid "spontaneous" msgstr "spontan" -#: [mood]stressed +#: ../cache/locales.php:653 msgid "stressed" msgstr "gestresst" -#: [mood]strong +#: ../cache/locales.php:654 msgid "strong" msgstr "stark" -#: [mood]surprised +#: ../cache/locales.php:655 msgid "surprised" msgstr "überrascht" -#: [mood]thankful +#: ../cache/locales.php:656 msgid "thankful" msgstr "dankbar" -#: [mood]thirsty +#: ../cache/locales.php:657 msgid "thirsty" msgstr "durstig" -#: [mood]tired +#: ../cache/locales.php:658 msgid "tired" msgstr "müde" -#: [mood]undefined +#: ../cache/locales.php:659 msgid "undefined" msgstr "unbestimmt" -#: [mood]weak +#: ../cache/locales.php:660 msgid "weak" msgstr "schwach" -#: [mood]worried +#: ../cache/locales.php:661 msgid "worried" msgstr "besorgt" -#: [month]title +#: ../cache/locales.php:662 msgid "Month" msgstr "Monat" -#: [month]january +#: ../cache/locales.php:663 msgid "January" msgstr "Januar" -#: [month]february +#: ../cache/locales.php:664 msgid "February" msgstr "Februar" -#: [month]march +#: ../cache/locales.php:665 msgid "March" msgstr "März" -#: [month]april +#: ../cache/locales.php:666 msgid "April" msgstr "April" -#: [month]may +#: ../cache/locales.php:667 msgid "May" msgstr "Mai" -#: [month]june +#: ../cache/locales.php:668 msgid "June" msgstr "Juni" -#: [month]july +#: ../cache/locales.php:669 msgid "July" msgstr "Juli" -#: [month]august +#: ../cache/locales.php:670 msgid "August" msgstr "August" -#: [month]september +#: ../cache/locales.php:671 msgid "September" msgstr "September" -#: [month]october +#: ../cache/locales.php:672 msgid "October" msgstr "Oktober" -#: [month]november +#: ../cache/locales.php:673 msgid "November" msgstr "November" -#: [month]december +#: ../cache/locales.php:674 msgid "December" msgstr "Dezember" -#: [year]title +#: ../cache/locales.php:675 msgid "Year" msgstr "Jahr" -#: [date]today +#: ../cache/locales.php:676 msgid "Today" msgstr "Heute" -#: [date]tomorrow +#: ../cache/locales.php:677 msgid "Tomorrow" msgstr "Morgen" -#: [date]yesterday +#: ../cache/locales.php:678 msgid "Yesterday" msgstr "Gestern" -#: [date]ago -#, fuzzy -msgid "%d days ago" +#: ../cache/locales.php:679 +#, php-format +msgid " %d days ago" msgstr " vor %d Tagen" -#: [date]day +#: ../cache/locales.php:680 msgid "day" msgstr "Tag" -#: [post]whats_new +#: ../cache/locales.php:682 msgid "What's new ?" msgstr "Was gibt's neues?" -#: [post]place +#: ../cache/locales.php:683 msgid "Place" msgstr "Ort" -#: [post]by +#: ../cache/locales.php:684 msgid "by" msgstr "von" -#: [post]geolocalisation +#: ../cache/locales.php:685 msgid "Geolocalisation" msgstr "Standortbestimmung" -#: [post]email +#: ../cache/locales.php:686 msgid "email" msgstr "E-Mail" -#: [post]no_comments +#: ../cache/locales.php:688 msgid "No comments yet" msgstr "Noch keine Kommentare" -#: [post]no_comments_stream +#: ../cache/locales.php:689 msgid "No comments stream" msgstr "Keine Kommentarquelle" -#: [post]no_load +#: ../cache/locales.php:690 msgid "Your feed cannot be loaded." msgstr "Ihr Datenstrom kann nicht geladen werden." -#: [post]older +#: ../cache/locales.php:691 msgid "Get older posts" msgstr "Ältere Beiträge" -#: [post]new_items +#: ../cache/locales.php:692 +#, php-format msgid "%s new items" msgstr "%s neue Einträge" -#: [post]comment_error +#: ../cache/locales.php:693 msgid "Comment publication error" msgstr "Fehler beim Veröffentlichen des Kommentars" -#: [post]comments_older +#: ../cache/locales.php:694 msgid "Show the older comments" msgstr "Ältere Kommentare anzeigen" -#: [post]comments_loading -#, fuzzy -msgid "Loading comments..." +#: ../cache/locales.php:695 +msgid "Loading comments ..." msgstr "Kommentare werden geladen …" -#: [post]comments_get +#: ../cache/locales.php:696 msgid "Get the comments" msgstr "Die Kommentare erhalten" -#: [post]comment_add +#: ../cache/locales.php:697 msgid "Add a comment" msgstr "Einen Kommentar hinzufügen" -#: [post]share +#: ../cache/locales.php:698 msgid "Share with" msgstr "Teilen mit" -#: [post]share_everyone +#: ../cache/locales.php:699 msgid "Everyone" msgstr "Jeder" -#: [post]share_your_contacts +#: ../cache/locales.php:700 msgid "Your contacts" msgstr "Ihre Kontakte" -#: [post]updated +#: ../cache/locales.php:702 msgid "Updated" msgstr "Aktualisiert" -#: [post]content_not_found +#: ../cache/locales.php:703 msgid "Content not found" msgstr "Inhalt nicht gefunden" -#: [post]default_title +#: ../cache/locales.php:704 msgid "Contact publication" msgstr "" -#: [post]comments +#: ../cache/locales.php:705 msgid "Comments" msgstr "Kommentare" -#: [api]error +#: ../cache/locales.php:706 msgid "The API is not reachable, try again later" msgstr "Die API ist nicht erreichbar, bitte später erneut versuchen" -#: [field]type_here +#: ../cache/locales.php:707 msgid "Type here" msgstr "Hier tippen" -#~ msgid "Environment" -#~ msgstr "Umgebung" - -#~ msgid "You can login with Facebook (chat only) using %syour.id@chat.facebook.com%s and your password" -#~ msgstr "Sie können Sich mit Facebook (nur Kurznachrichten) anmelden mit %sihre.identifikation@chat.facebook.com%s und Ihrem Passwort." - -#~ msgid "%sGmail accounts are also compatible%s but are not fully supported" -#~ msgstr "%sGooglemail-Konten werden auch unterstützt%s aber nicht mit vollem Funktionsumfang" - -#~ msgid "You can login using your favorite Jabber account" -#~ msgstr "Sie können sich mit Ihrem liebsten Jabber-Konto anmelden" - -#~ msgid "or with our demonstration account" -#~ msgstr "oder mit unserem Demonstrationskonto" - -#~ msgid "%s has been removed from your public groups" -#~ msgstr "%s wurde aus Ihren öffentlichen Gruppen entfernt" - -#~ msgid "Remove a chatroom" -#~ msgstr "Chatraum löschen" - -#~ msgid "You are going to remove the following chatroom. Please confirm your action." -#~ msgstr "Sie sind dabei den folgenden Chatraum zu löschen. Bitte bestätigen Sie Ihre Handlung." - -#~ msgid "Remote application incompatible" -#~ msgstr "Entfernte Anwendung inkompatibel" - -#~ msgid "Remove" -#~ msgstr "Entfernen" - -#~ msgid "remorseful" -#~ msgstr "reumütig" - #~ msgid "Logout" #~ msgstr "Abmelden" +#, php-format #~ msgid "%s - Account Creation" #~ msgstr "%s – Registrieren" @@ -2817,7 +2693,9 @@ msgstr "Hier tippen" #~ msgstr "Anlegen" #~ msgid "A capital letter, a digit and a special character are recommended" -#~ msgstr "Mindestens jeweils ein Großbuchstabe, eine Ziffer und ein Sonderzeichen werden empfohlen." +#~ msgstr "" +#~ "Mindestens jeweils ein Großbuchstabe, eine Ziffer und ein Sonderzeichen " +#~ "werden empfohlen." #~ msgid "8 characters" #~ msgstr "8 Buchstaben" @@ -2837,29 +2715,41 @@ msgstr "Hier tippen" #~ msgid "talkative" #~ msgstr "gesprächig" +#, php-format #~ msgid "%s - Add An Account" #~ msgstr "%s - Neues Profil anlegen" #~ msgid "I can't find the answer to my question here" #~ msgstr "Meine Frage ist hier nicht aufgelistet" +#, php-format #~ msgid "Contacts (%s)" #~ msgstr "Kontakte (%s)" #~ msgid "Edit my Profile" #~ msgstr "Profil bearbeiten" +#, php-format #~ msgid "Install the %s package" #~ msgstr "%s installieren" +#, php-format #~ msgid "Movim requires the %s extension." #~ msgstr "Movim benötigt die Erweiterung %s." #~ msgid "normal" #~ msgstr "normal" -#~ msgid "Some errors were detected. Please correct them for the installation to proceed." -#~ msgstr "Es wurden Fehler entdeckt. Bitte korrigieren Sie diese, damit die Installation abgeschlossen werden kann." +#~ msgid "" +#~ "Some errors were detected. Please correct them for the installation to " +#~ "proceed." +#~ msgstr "" +#~ "Es wurden Fehler entdeckt. Bitte korrigieren Sie diese, damit die " +#~ "Installation abgeschlossen werden kann." + +#, php-format +#~ msgid "This server hosts %s accounts" +#~ msgstr "Dieser Server beherbergt %s Konten" #~ msgid "Send request" #~ msgstr "Anfrage absenden" @@ -2903,12 +2793,15 @@ msgstr "Hier tippen" #~ msgid "PHP version mismatch. Movim requires PHP 5.3 minimum." #~ msgstr "Falsche PHP-Version. Movim benötigt mindestens PHP 5.3." +#, php-format #~ msgid "Cannot open log file '%s'" #~ msgstr "Protokolldatei »%s« konnte nicht geöffnet werden." +#, php-format #~ msgid "Couldn't create configuration file '%s'." #~ msgstr "Die Konfigurationsdatei »%s« konnte nicht erstellt werden." +#, php-format #~ msgid "Couldn't create directory '%s'." #~ msgstr "Verzeichnis »%s« konnte nicht erstellt werden." @@ -2921,12 +2814,14 @@ msgstr "Hier tippen" #~ msgid "Database Detected" #~ msgstr "Datenbank erkannt" +#, php-format #~ msgid "Please remove the %s folder in order to complete the installation" #~ msgstr "Bitte entfernen Sie den Ordner %s, um die Installation abzuschließen" #~ msgid "Database Movim schema installed" #~ msgstr "Das Datenbankschema Movim wurde installiert" +#, php-format #~ msgid "Cannot load element value '%s'" #~ msgstr "Inhalt des Elementes »%s« kann nicht geladen werden." @@ -2936,56 +2831,103 @@ msgstr "Hier tippen" #~ msgid "Loading your feed ..." #~ msgstr "Ihre Inhalte werden geladen …" -#~ msgid "Your server doesn't support post publication, you can only read contact's feeds" -#~ msgstr "Ihr Server unterstützt keine nachträglichen Veröffentlichungen, Sie können nur die Kontaktdaten lesen." +#~ msgid "" +#~ "Your server doesn't support post publication, you can only read contact's " +#~ "feeds" +#~ msgstr "" +#~ "Ihr Server unterstützt keine nachträglichen Veröffentlichungen, Sie können " +#~ "nur die Kontaktdaten lesen." #~ msgid "Update your PHP version or contact your server administrator" -#~ msgstr "Bitte die PHP-Version aktualisieren oder melden Sie sich beim Systemverwalter" +#~ msgstr "" +#~ "Bitte die PHP-Version aktualisieren oder melden Sie sich beim Systemverwalter" #~ msgid "Enable read and write rights on Movim's root folder" -#~ msgstr "Bitte die Lese- und Schreibrechte in dem Ordner aktivieren, in dem Sie Movim entpackt haben" +#~ msgstr "" +#~ "Bitte die Lese- und Schreibrechte in dem Ordner aktivieren, in dem Sie Movim " +#~ "entpackt haben" -#~ msgid "Keep in mind that Movim is still under development and will handle many personal details. Its use can potentially endanger your data. Always pay attention to information that you submit." -#~ msgstr "Bitte beachten, dass Movim noch im Entwicklungsstadium ist. Es behandelt viele persönliche Daten und könnte diese eventuell gefährden. Bitte achten Sie darauf, welche Informationen Sie bei Movim eingeben." +#~ msgid "" +#~ "Keep in mind that Movim is still under development and will handle many " +#~ "personal details. Its use can potentially endanger your data. Always pay " +#~ "attention to information that you submit." +#~ msgstr "" +#~ "Bitte beachten, dass Movim noch im Entwicklungsstadium ist. Es behandelt " +#~ "viele persönliche Daten und könnte diese eventuell gefährden. Bitte achten " +#~ "Sie darauf, welche Informationen Sie bei Movim eingeben." #~ msgid "Movim Installer" #~ msgstr "Movim-Installationsprogramm" -#~ msgid "The following requirements were not met. Please make sure they are all satisfied in order to install Movim." -#~ msgstr "Die folgenden Voraussetzungen sind nicht erfüllt. Bitte stellen Sie sicher, dass alle erfüllt sind, um Movim zu installieren." +#~ msgid "" +#~ "The following requirements were not met. Please make sure they are all " +#~ "satisfied in order to install Movim." +#~ msgstr "" +#~ "Die folgenden Voraussetzungen sind nicht erfüllt. Bitte stellen Sie sicher, " +#~ "dass alle erfüllt sind, um Movim zu installieren." +#, php-format #~ msgid "You can now access your shiny Movim instance %sJump In !%s" -#~ msgstr "Sie können jetzt Ihre nagelneue Movim-Instanz betreten. %sAuf geht's!%s" +#~ msgstr "" +#~ "Sie können jetzt Ihre nagelneue Movim-Instanz betreten. %sAuf geht's!%s" +#, php-format #~ msgid "Install %s and %s packages" #~ msgstr "Pakete %s und %s installieren" #~ msgid "Movim's folder must be writable." #~ msgstr "Der Movim-Ordner muss Schreibrechte besitzen." -#~ msgid "Go to the %s to the Frequently Asked Questions %s or come ask your question on the official chatroom %s or via our mailing-list (%s see the dedicated page %s)." -#~ msgstr "Zu den %s häufig gestellten Fragen %s gehen oder in unserem offiziellen Chatraum %s eine Frage stellen oder über unsere Verteilerliste (%s weitere Informationen %s)" +#, php-format +#~ msgid "" +#~ "Go to the %s to the Frequently Asked Questions %s or come ask your question " +#~ "on the official chatroom %s or via our mailing-list (%s see the dedicated " +#~ "page %s)." +#~ msgstr "" +#~ "Zu den %s häufig gestellten Fragen %s gehen oder in unserem offiziellen " +#~ "Chatraum %s eine Frage stellen oder über unsere Verteilerliste (%s weitere " +#~ "Informationen %s)" +#, php-format #~ msgid "jid '%s' is incorrect" #~ msgstr "JID »%s« ist falsch" +#, php-format #~ msgid "Bosh connection failed with error '%s'" #~ msgstr "Verbindung zu BOSH ist fehlgeschlagen. Fehler: »%s«" +#, php-format #~ msgid "Database connection failed with error '%s'" #~ msgstr "Datenbankverbindung ist fehlgeschlagen. Fehler: »%s«" +#, php-format #~ msgid "XMPP connection through Bosh failed with error '%s'" #~ msgstr "XMPP-Verbindung über BOSH ist fehlgeschlagen. Fehler: »%s«" -#~ msgid "Some features are missing/I can't do everything I used to do on other social networks" -#~ msgstr "Manche Funktionen fehlen, Ich kann nicht alles tun, was ich von anderen sozialen Netzwerken gewohnt bin." +#~ msgid "" +#~ "Some features are missing/I can't do everything I used to do on other social " +#~ "networks" +#~ msgstr "" +#~ "Manche Funktionen fehlen, Ich kann nicht alles tun, was ich von anderen " +#~ "sozialen Netzwerken gewohnt bin." -#~ msgid "Although Movim is evolving fast, many (many) features are missing. Be patient ;). You can have a look %s at next versions's roadmaps %s to know if the one you want is on its way." -#~ msgstr "Obwohl sich Movim schnell entwickelt, fehlen noch viele Funktionen. Haben Sie Geduld ;). Sie können auf dem %s Fahrplan der nächsten Version %s sehen, um nachzusehen, ob das was Sie wollen schon auf dem Weg ist." +#, php-format +#~ msgid "" +#~ "Although Movim is evolving fast, many (many) features are missing. Be " +#~ "patient ;). You can have a look %s at next versions's roadmaps %s to know if " +#~ "the one you want is on its way." +#~ msgstr "" +#~ "Obwohl sich Movim schnell entwickelt, fehlen noch viele Funktionen. Haben " +#~ "Sie Geduld ;). Sie können auf dem %s Fahrplan der nächsten Version %s sehen, " +#~ "um nachzusehen, ob das was Sie wollen schon auf dem Weg ist." -#~ msgid "Don't forget that Movim is an open source project, a helping hand is always welcome (see %s Can I participate %s)" -#~ msgstr "Bitte nicht vergessen, dass Movim ein quelloffenes Anwendungsprojekt ist. Helfende Hände sind immer willkommen. (%s Mithelfen %s)" +#, php-format +#~ msgid "" +#~ "Don't forget that Movim is an open source project, a helping hand is always " +#~ "welcome (see %s Can I participate %s)" +#~ msgstr "" +#~ "Bitte nicht vergessen, dass Movim ein quelloffenes Anwendungsprojekt ist. " +#~ "Helfende Hände sind immer willkommen. (%s Mithelfen %s)" #~ msgid "wants to talk with you" #~ msgstr "möchte mit Ihnen sprechen" @@ -2996,8 +2938,11 @@ msgstr "Hier tippen" #~ msgid "Thank you for downloading Movim!" #~ msgstr "Vielen Dank, dass Sie Movim heruntergeladen haben." -#~ msgid "Before you enjoy your social network, a few adjustements are required." -#~ msgstr "Bevor Sie Ihr soziales Netzwerk betreten können, müssen Sie noch ein paar Dinge einstellen." +#~ msgid "" +#~ "Before you enjoy your social network, a few adjustements are required." +#~ msgstr "" +#~ "Bevor Sie Ihr soziales Netzwerk betreten können, müssen Sie noch ein paar " +#~ "Dinge einstellen." #~ msgid "XMPP Connection Preferences" #~ msgstr "XMPP-Verbindungseinstellungen" @@ -3008,8 +2953,12 @@ msgstr "Hier tippen" #~ msgid "Proxy Preferences" #~ msgstr "Proxy-Server-Einstellungen" -#~ msgid "Firstly fill in this blank with a brand new account ID, this address will follow you on all the Movim network !" -#~ msgstr "Zunächst bitte dieses freie Feld mit einer nagelneuen Adresse ausfüllen. Diese begleitet Sie überall im Movim-Netzwerk." +#~ msgid "" +#~ "Firstly fill in this blank with a brand new account ID, this address will " +#~ "follow you on all the Movim network !" +#~ msgstr "" +#~ "Zunächst bitte dieses freie Feld mit einer nagelneuen Adresse ausfüllen. " +#~ "Diese begleitet Sie überall im Movim-Netzwerk." #~ msgid "Make sure your password is safe :" #~ msgstr "Ein sicheres Passwort eingeben:" @@ -3020,8 +2969,13 @@ msgstr "Hier tippen" #~ msgid "Client Type" #~ msgstr "Programmtyp" -#~ msgid "Visit the page %s What is Movim ? %s to know more about the project, its aims and understand how it works." -#~ msgstr "Besuche Sie die Seite %s Was ist Movim? %s, um mehr über das Projekt, seine Ziele und die technische Seite zu erfahren." +#, php-format +#~ msgid "" +#~ "Visit the page %s What is Movim ? %s to know more about the project, its " +#~ "aims and understand how it works." +#~ msgstr "" +#~ "Besuche Sie die Seite %s Was ist Movim? %s, um mehr über das Projekt, seine " +#~ "Ziele und die technische Seite zu erfahren." #~ msgid "The current BOSH URL in invalid" #~ msgstr "Die aktuelle BOSH-Adresse ist ungültig" diff --git a/sources/locales/el.po b/sources/locales/el.po index e8dc45c..3480921 100644 --- a/sources/locales/el.po +++ b/sources/locales/el.po @@ -1,2718 +1,2593 @@ # Greek translations for Movim package. # This file is distributed under the same license as the Movim package. # This file was translated from CodingTeam at . -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/About/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Account/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/AccountNext/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/AdHoc/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/AdminDB/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/AdminMain/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/AdminTest/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Api/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Avatar/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Blog/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Bookmark/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Chat/locales.ini -#. #-#-#-#-# 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 -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Group/locales.ini -#. #-#-#-#-# 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 -#. #-#-#-#-# 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 -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Presence/locales.ini -#. #-#-#-#-# 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 -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Share/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Statistics/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Subscribe/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Syndication/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Upload/locales.ini -#. #-#-#-#-# 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-08-20 15:17+0200\n" +"POT-Creation-Date: 2015-06-08 22:06+0200\n" "PO-Revision-Date: 2013-12-07 17:27+0000\n" "Last-Translator: aitolos \n" "Language-Team: LANGUAGE \n" -"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2015-06-18 21:08+0000\n" "X-Generator: Launchpad (build 17570)\n" +"Language: \n" -#: [about]thanks +#: ../cache/locales.php:2 msgid "Thanks" msgstr "" -#: [about]developers +#: ../cache/locales.php:3 msgid "Developers" msgstr "" -#: [about]translators +#: ../cache/locales.php:4 msgid "Translators" msgstr "" -#: [about]software +#: ../cache/locales.php:5 msgid "Software" msgstr "" -#: [about]resources +#: ../cache/locales.php:6 msgid "Resources" msgstr "" -#: [about]api [schema]api [api]title +#: ../cache/locales.php:7 ../cache/locales.php:83 ../cache/locales.php:85 msgid "API" msgstr "" -#: [about]info -msgid "Movim is an XMPP-based communication platform. All the project, except the following software and resources, is under" +#: ../cache/locales.php:8 +msgid "" +"Movim is an XMPP-based communication platform. All the project, except the " +"following software and resources, is under" msgstr "" -#: [account]title +#: ../cache/locales.php:9 msgid "Account" msgstr "" -#: [account]password_change_title -#, fuzzy -msgid "Change my password" -msgstr "Λανθασμένος κωδικός" - -#: [account]password [db]password [credentials]password [form]password -#: [input]password -msgid "Password" -msgstr "Συνθηματικό" - -#: [account]password_confirmation -#, fuzzy -msgid "Password confirmation" -msgstr "%s - Ρύθμιση" - -#: [account]password_changed +#: ../cache/locales.php:10 msgid "The password has been updated" msgstr "" -#: [account]password_not_valid +#: ../cache/locales.php:11 msgid "Please provide a valid password (6 characters minimum)" msgstr "" -#: [account]password_not_same +#: ../cache/locales.php:12 msgid "The provided passwords are not the same" msgstr "" -#: [account]delete_title +#: ../cache/locales.php:13 msgid "Delete my account" msgstr "" -#: [account]delete -#, fuzzy -msgid "Delete your account" -msgstr "Δημιουργία νέου λογαριασμού" - -#: [account]delete_text -msgid "You will delete your XMPP account and all the relative information linked to it (profile, contacts and publications)." +#: ../cache/locales.php:14 +msgid "" +"You will delete your XMPP account and all the relative information linked to " +"it (profile, contacts and publications)." msgstr "" -#: [account]delete_text_confirm +#: ../cache/locales.php:15 msgid "Are you sure that you want to delete it ?" msgstr "" -#: [account]gateway_title -msgid "Gateway" -msgstr "" - -#: [create]title [subscribe]title +#: ../cache/locales.php:16 ../cache/locales.php:411 msgid "Create a new account" msgstr "Δημιουργία νέου λογαριασμού" -#: [create]notfound +#: ../cache/locales.php:17 msgid "No account creation form found on the server" msgstr "" -#: [create]server_on +#: ../cache/locales.php:18 ../cache/locales.php:172 msgid "on" msgstr "" -#: [create]successfull +#: ../cache/locales.php:19 msgid "Your acccount has been successfully registered" msgstr "" -#: [create]loading +#: ../cache/locales.php:20 msgid "Loading" msgstr "" -#: [error]not_acceptable +#: ../cache/locales.php:21 msgid "Not Acceptable" msgstr "" -#: [error]service_unavailable +#: ../cache/locales.php:22 msgid "The registration system of this server is currently unavailable" msgstr "" -#: [oob]about -msgid "This server use an external system for the registration, please click on the following URL." +#: ../cache/locales.php:23 +msgid "" +"This server use an external system for the registration, please click on the " +"following URL." msgstr "" -#: [adhoc]title +#: ../cache/locales.php:24 msgid "Actions" msgstr "" -#: [db]legend [schema]database +#: ../cache/locales.php:25 ../cache/locales.php:82 msgid "Database" msgstr "" -#: [db]connect_error +#: ../cache/locales.php:26 msgid "Modl wasn't able to connect to the database" msgstr "" -#: [db]connect_success +#: ../cache/locales.php:27 msgid "Movim is connected to the database" msgstr "" -#: [db]update +#: ../cache/locales.php:28 msgid "The database need to be updated" msgstr "" -#: [db]up_to_date +#: ../cache/locales.php:29 msgid "Movim database is up to date" msgstr "" -#: [db]type +#: ../cache/locales.php:30 msgid "Database Type" msgstr "" -#: [db]username [credentials]username [input]username +#: ../cache/locales.php:31 ../cache/locales.php:50 ../cache/locales.php:540 msgid "Username" msgstr "" -#: [db]host +#: ../cache/locales.php:32 ../cache/locales.php:51 ../cache/locales.php:282 +#: ../cache/locales.php:541 +msgid "Password" +msgstr "Συνθηματικό" + +#: ../cache/locales.php:33 msgid "Host" msgstr "" -#: [db]port +#: ../cache/locales.php:34 msgid "Port" msgstr "" -#: [db]name -#, fuzzy -msgid "Database sName" -msgstr "Εντοπίστηκε βάση δεδομένων" +#: ../cache/locales.php:35 +msgid "Database Name" +msgstr "" -#: [admin]general +#: ../cache/locales.php:36 msgid "General Settings" msgstr "" -#: [general]theme +#: ../cache/locales.php:37 msgid "Theme" msgstr "" -#: [general]language +#: ../cache/locales.php:38 msgid "Default language" msgstr "" -#: [general]log_verbosity +#: ../cache/locales.php:39 +msgid "Environment" +msgstr "" + +#: ../cache/locales.php:40 msgid "Log verbosity" msgstr "" -#: [general]timezone +#: ../cache/locales.php:41 msgid "Server Timezone" msgstr "" -#: [general]limit +#: ../cache/locales.php:42 msgid "User folder size limit (in bytes)" msgstr "" -#: [websocket]title +#: ../cache/locales.php:43 msgid "WebSocket Configuration" msgstr "" -#: [websocket]info +#: ../cache/locales.php:44 msgid "Enter here a valid WebSocket URI in the form" msgstr "" -#: [websocket]label +#: ../cache/locales.php:45 msgid "WebSocket URI" msgstr "" -#: [websocket]save_info -msgid "If you change the URI, please restart the daemon to reload the configuration" +#: ../cache/locales.php:46 +msgid "" +"If you change the URI, please restart the daemon to reload the configuration" msgstr "" -#: [websocket]publics +#: ../cache/locales.php:47 msgid "Public WebSockets" msgstr "" -#: [credentials]title +#: ../cache/locales.php:48 msgid "Administration Credential" msgstr "" -#: [credentials]info +#: ../cache/locales.php:49 msgid "Change the default credentials admin/password" msgstr "" -#: [credentials]re_password +#: ../cache/locales.php:52 msgid "Retype password" msgstr "" -#: [whitelist]title +#: ../cache/locales.php:53 msgid "Whitelist - XMPP Server" msgstr "" -#: [whitelist]info1 -msgid "If you want to specify a list of authorized XMPP servers on your Movim pod and forbid the connection on all the others please put their domain name here, with comma (ex: movim.eu,jabber.fr)" +#: ../cache/locales.php:54 +msgid "" +"If you want to specify a list of authorized XMPP servers on your Movim pod " +"and forbid the connection on all the others please put their domain name " +"here, with comma (ex: movim.eu,jabber.fr)" msgstr "" -#: [whitelist]info2 -msgid "Leave this field blank if you allow the access to all the XMPP accounts." +#: ../cache/locales.php:55 +msgid "" +"Leave this field blank if you allow the access to all the XMPP accounts." msgstr "" -#: [whitelist]label +#: ../cache/locales.php:56 msgid "List of whitelisted XMPP servers" msgstr "" -#: [information]title -#, fuzzy -msgctxt "[information]title" +#: ../cache/locales.php:57 ../cache/locales.php:61 msgid "Information Message" -msgstr "Γενικές πληροφορίες" +msgstr "" -#: [information]description +#: ../cache/locales.php:58 msgid "Description" msgstr "" -#: [information]info1 +#: ../cache/locales.php:59 msgid "This message will be displayed on the login page" msgstr "" -#: [information]info2 -msgid "Leave this field blank if you dont want to show any message." +#: ../cache/locales.php:60 +msgid "Leave this field blank if you don't want to show any message." msgstr "" -#: [information]label -#, fuzzy -msgctxt "[information]label" -msgid "Information Message" -msgstr "Γενικές πληροφορίες" - -#: [log]empty +#: ../cache/locales.php:62 msgid "Empty" msgstr "" -#: [log]syslog +#: ../cache/locales.php:63 msgid "Syslog" msgstr "" -#: [log]syslog_files +#: ../cache/locales.php:64 msgid "Syslog and files" msgstr "" -#: [rewrite]title +#: ../cache/locales.php:65 msgid "URL Rewriting" msgstr "" -#: [rewrite]info +#: ../cache/locales.php:66 msgid "The URL Rewriting can be enabled" msgstr "" -#: [admin]compatibility +#: ../cache/locales.php:67 msgid "General Overview" msgstr "" -#: [compatibility]info -msgid "Movim has found some issues or things that need to be fixed or improved" +#: ../cache/locales.php:68 +msgid "" +"Movim has found some issues or things that need to be fixed or improved" msgstr "" -#: [compatibility]php1 +#: ../cache/locales.php:69 +#, php-format msgid "Update your PHP-Version: %s" msgstr "" -#: [compatibility]php2 +#: ../cache/locales.php:70 msgid "Required: 5.3.0" msgstr "" -#: [compatibility]curl +#: ../cache/locales.php:71 msgid "Install the php5-curl library" msgstr "" -#: [compatibility]imagick +#: ../cache/locales.php:72 msgid "Install the php5-imagick library" msgstr "" -#: [compatibility]gd +#: ../cache/locales.php:73 msgid "Install the php5-gd library" msgstr "" -#: [compatibility]rights -msgid "Read and write rights for the webserver in Movims root directory" +#: ../cache/locales.php:74 +msgid "Read and write rights for the webserver in Movim's root directory" msgstr "" -#: [compatibility]rewrite +#: ../cache/locales.php:75 msgid "The URL Rewriting support is currently disabled" msgstr "" -#: [compatibility]db +#: ../cache/locales.php:76 msgid "The database need to be updated, go to the database panel to fix this" msgstr "" -#: [compatibility]websocket -msgid "WebSocket connection error, check if the Movim Daemon is running and is reachable" +#: ../cache/locales.php:77 +msgid "" +"WebSocket connection error, check if the Movim Daemon is running and is " +"reacheable" msgstr "" -#: [compatibility]xmpp_websocket -msgid "XMPP Websocket connection error, please check the validity of the URL given in the General Configuration" +#: ../cache/locales.php:78 +msgid "" +"XMPP Websocket connection error, please check the validity of the URL given " +"in the General Configuration" msgstr "" -#: [schema]browser +#: ../cache/locales.php:79 msgid "Browser" msgstr "" -#: [schema]movim +#: ../cache/locales.php:80 msgid "Movim Core" msgstr "" -#: [schema]daemon +#: ../cache/locales.php:81 msgid "Movim Daemon" msgstr "" -#: [schema]xmpp +#: ../cache/locales.php:84 msgid "XMPP" msgstr "" -#: [api]info -msgid "Here you can register your pod on the official %sMovim API%s and be listed on %sthe pods page%s." +#: ../cache/locales.php:86 +#, php-format +msgid "" +"Here you can register your pod on the official %sMovim API%s and be listed " +"on %sthe pods page%s." msgstr "" -#: [api]register +#: ../cache/locales.php:87 msgid "Your pod is not registered on the API" msgstr "" -#: [api]registered +#: ../cache/locales.php:88 msgid "Your pod is registered on the API" msgstr "" -#: [api]wait +#: ../cache/locales.php:89 msgid "Your pod is not yet validated" msgstr "" -#: [api]validated +#: ../cache/locales.php:90 msgid "Your pod is validated" msgstr "" -#: [api]unregister -msgid "You asked to be removed from the API, this request will be processed in a couple of hours" +#: ../cache/locales.php:91 +msgid "" +"You asked to be removed from the API, this request will be processed in a " +"couple of hours" msgstr "" -#: [api]conf_updated [config]updated +#: ../cache/locales.php:92 ../cache/locales.php:147 msgid "Configuration updated" msgstr "" -#: [avatar]file +#: ../cache/locales.php:93 msgid "File" msgstr "" -#: [avatar]use_it +#: ../cache/locales.php:94 msgid "Use it" msgstr "" -#: [avatar]webcam +#: ../cache/locales.php:95 msgid "Webcam" msgstr "" -#: [avatar]cheese +#: ../cache/locales.php:96 msgid "Cheese !" msgstr "" -#: [avatar]snapshot +#: ../cache/locales.php:97 msgid "Take a webcam snapshot" msgstr "" -#: [avatar]updated +#: ../cache/locales.php:98 msgid "Avatar Updated" msgstr "" -#: [avatar]not_updated +#: ../cache/locales.php:99 msgid "Avatar Not Updated" msgstr "" -#: [blog]title [feed]title +#: ../cache/locales.php:100 ../cache/locales.php:415 +#, php-format msgid "%s's feed" msgstr "" -#: [blog]empty +#: ../cache/locales.php:101 msgid "This user has not posted anything right now" msgstr "" -#: [title]conferences +#: ../cache/locales.php:102 msgid "Conferences" msgstr "" -#: [title]groups [group]empty_title [menu]groups [page]groups +#: ../cache/locales.php:103 ../cache/locales.php:193 ../cache/locales.php:217 +#: ../cache/locales.php:468 msgid "Groups" msgstr "" -#: [chatroom]add +#: ../cache/locales.php:104 msgid "Add a new Chat Room" msgstr "" -#: [chatroom]id [chatrooms]id +#: ../cache/locales.php:105 ../cache/locales.php:368 msgid "Chat Room ID" msgstr "" -#: [chatroom]name -#, fuzzy -msgctxt "[chatroom]name" +#: ../cache/locales.php:106 ../cache/locales.php:116 ../cache/locales.php:156 +#: ../cache/locales.php:361 ../cache/locales.php:369 ../cache/locales.php:424 msgid "Name" msgstr "Όνομα" -#: [chatroom]nickname [general]nickname [chatrooms]nickname +#: ../cache/locales.php:107 ../cache/locales.php:157 ../cache/locales.php:371 +#: ../cache/locales.php:425 msgid "Nickname" msgstr "Ψευδώνυμο" -#: [chatroom]autojoin_label +#: ../cache/locales.php:108 msgid "Do you want do join automaticaly this Chat Room ?" msgstr "" -#: [chatroom]bad_id [chatrooms]bad_id +#: ../cache/locales.php:109 ../cache/locales.php:372 msgid "Bad Chatroom ID" msgstr "" -#: [chatroom]empty_name [chatrooms]empty_name +#: ../cache/locales.php:110 ../cache/locales.php:373 msgid "Empty name" msgstr "" -#: [bookmarks]updated +#: ../cache/locales.php:111 ../cache/locales.php:380 msgid "Bookmarks updated" msgstr "" -#: [bookmarks]error -msgid "An error occured :" +#: ../cache/locales.php:112 +msgid "An error occured : " msgstr "" -#: [bookmarks]configure +#: ../cache/locales.php:113 msgid "Configure" msgstr "" -#: [url]add +#: ../cache/locales.php:114 msgid "Add a new URL" msgstr "" -#: [url]url +#: ../cache/locales.php:115 msgid "URL" msgstr "" -#: [url]name -#, fuzzy -msgctxt "[url]name" -msgid "Name" -msgstr "Όνομα" - -#: [message]published +#: ../cache/locales.php:117 msgid "Message Published" msgstr "" -#: [message]encrypted +#: ../cache/locales.php:118 ../cache/locales.php:138 msgid "Encrypted message" msgstr "" -#: [message]composing [chats]composing +#: ../cache/locales.php:119 msgid "Composing..." msgstr "Συνθέτοντας..." -#: [message]paused [chats]paused +#: ../cache/locales.php:120 msgid "Paused..." msgstr "" -#: [message]gone +#: ../cache/locales.php:121 msgid "Contact gone" msgstr "" -#: [chat]attention +#: ../cache/locales.php:122 +#, php-format msgid "%s needs your attention" msgstr "" -#: [chat]placeholder +#: ../cache/locales.php:123 msgid "Your message here..." msgstr "" -#: [chat]smileys +#: ../cache/locales.php:124 msgid "Smileys" msgstr "" -#: [chat]empty_title [button]chat +#: ../cache/locales.php:125 ../cache/locales.php:139 msgid "Chat" msgstr "Συνομιλία" -#: [chat]empty_text +#: ../cache/locales.php:126 msgid "Discuss with your contacts" msgstr "" -#: [chat]frequent [chats]frequent -msgid "Frequent contacts" -msgstr "" - -#: [chatroom]members +#: ../cache/locales.php:127 msgid "Members" msgstr "" -#: [chatroom]connected [chatrooms]connected +#: ../cache/locales.php:128 ../cache/locales.php:376 msgid "Connected to the chatroom" msgstr "" -#: [chatroom]disconnected [chatrooms]disconnected +#: ../cache/locales.php:129 ../cache/locales.php:377 msgid "Disconnected from the chatroom" msgstr "" -#: [chatroom]config [group]configuration [page]configuration +#: ../cache/locales.php:130 ../cache/locales.php:200 ../cache/locales.php:469 msgid "Configuration" msgstr "Ρύθμιση" -#: [chatroom]config_saved +#: ../cache/locales.php:131 msgid "Configuration saved" msgstr "" -#: [chatroom]subject +#: ../cache/locales.php:132 msgid "Subject" msgstr "" -#: [chatroom]subject_changed +#: ../cache/locales.php:133 msgid "Subject changed" msgstr "" -#: [chats]empty_title -msgid "No chats yet..." +#: ../cache/locales.php:134 +msgid "Open a new conversation by clicking on the plus button bellow" msgstr "" -#: [chats]empty -msgid "Open a new conversation by clicking on the plus button bellow or visit the Contacts page." -msgstr "" - -#: [chats]add +#: ../cache/locales.php:135 msgid "Chat with a contact" msgstr "" -#: [chats]more +#: ../cache/locales.php:136 +msgid "Frequent contacts" +msgstr "" + +#: ../cache/locales.php:137 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 "" - -#: [config]general +#: ../cache/locales.php:140 msgid "General" msgstr "" -#: [config]language +#: ../cache/locales.php:141 msgid "Language" msgstr "Γλώσσα" -#: [config]roster +#: ../cache/locales.php:142 msgid "Roster display" msgstr "" -#: [config]roster_show +#: ../cache/locales.php:143 msgid "Show the offline contacts" msgstr "" -#: [config]roster_hide +#: ../cache/locales.php:144 msgid "Hide the offline contacts" msgstr "" -#: [config]appearence +#: ../cache/locales.php:145 msgid "Appearence" msgstr "" -#: [config]info -msgid "This configuration is shared wherever you are connected" +#: ../cache/locales.php:146 +msgid "This configuration is shared wherever you are connected !" msgstr "" -#: [notifications]message +#: ../cache/locales.php:148 msgid "Notify on incoming message" msgstr "" -#: [notifications]desktop +#: ../cache/locales.php:149 msgid "Use desktop notifications" msgstr "" -#: [general]legend [general]general_title +#: ../cache/locales.php:150 +msgid "Data" +msgstr "" + +#: ../cache/locales.php:151 +msgid "Cache" +msgstr "" + +#: ../cache/locales.php:152 ../cache/locales.php:218 ../cache/locales.php:466 +msgid "Contacts" +msgstr "" + +#: ../cache/locales.php:153 ../cache/locales.php:480 +msgid "Posts" +msgstr "" + +#: ../cache/locales.php:154 +msgid "Messages" +msgstr "" + +#: ../cache/locales.php:155 ../cache/locales.php:423 msgid "General Informations" msgstr "Γενικές πληροφορίες" -#: [general]name [public_groups]name [chatrooms]name -msgid "Name" -msgstr "Όνομα" - -#: [general]date_of_birth +#: ../cache/locales.php:158 ../cache/locales.php:427 msgid "Date of Birth" msgstr "Ημερομ. γεννήσεως" -#: [general]gender +#: ../cache/locales.php:159 ../cache/locales.php:428 msgid "Gender" msgstr "" -#: [general]marital +#: ../cache/locales.php:160 ../cache/locales.php:429 msgid "Marital Status" msgstr "" -#: [general]email +#: ../cache/locales.php:161 ../cache/locales.php:426 msgid "Email" msgstr "" -#: [general]website +#: ../cache/locales.php:162 ../cache/locales.php:430 msgid "Website" msgstr "Ιστότοπος" -#: [general]about +#: ../cache/locales.php:163 ../cache/locales.php:431 msgid "About Me" msgstr "" -#: [general]accounts +#: ../cache/locales.php:164 msgid "Other Accounts" msgstr "" -#: [general]tune +#: ../cache/locales.php:165 msgid "Is Listening" msgstr "" -#: [position]legend [position]position_title +#: ../cache/locales.php:166 ../cache/locales.php:432 msgid "Geographic Position" msgstr "" -#: [position]locality +#: ../cache/locales.php:167 ../cache/locales.php:433 msgid "Locality" msgstr "" -#: [position]country +#: ../cache/locales.php:168 ../cache/locales.php:434 msgid "Country" msgstr "" -#: [mood]title +#: ../cache/locales.php:169 msgid "Mood" msgstr "" -#: [mood]im +#: ../cache/locales.php:170 msgid "I'm " msgstr "" -#: [listen]title +#: ../cache/locales.php:171 msgid "Listening" msgstr "" -#: [last]title +#: ../cache/locales.php:173 msgid "Last seen" msgstr "" -#: [client]title +#: ../cache/locales.php:174 msgid "Client Informations" msgstr "" -#: [explore]last_registered +#: ../cache/locales.php:175 msgid "Last registered" msgstr "" -#: [explore]explore +#: ../cache/locales.php:176 msgid "Find some new friends" msgstr "" -#: [edit]title [button]edit +#: ../cache/locales.php:177 ../cache/locales.php:533 msgid "Edit" msgstr "" -#: [edit]alias +#: ../cache/locales.php:178 msgid "Alias" msgstr "Ψευδώνυμο" -#: [edit]group +#: ../cache/locales.php:179 msgid "Group" msgstr "" -#: [edit]updated [roster]updated +#: ../cache/locales.php:180 ../cache/locales.php:400 msgid "Contact updated" msgstr "" -#: [delete]title +#: ../cache/locales.php:181 msgid "Are you sure?" msgstr "" -#: [delete]text -msgid "You are going to delete one of your contacts, please confirm your action" +#: ../cache/locales.php:182 +msgid "" +"You are going to delete one of your contacts, please confirm your action" msgstr "" -#: [age]years +#: ../cache/locales.php:183 +#, php-format msgid "%s years" msgstr "" -#: [blog]last +#: ../cache/locales.php:184 msgid "Last public post" msgstr "" -#: [subscription]to -#, fuzzy -msgid "You can see this contact status" -msgstr "Διαγραφή αυτής της επαφής" - -#: [subscription]to_button -msgid "Share my status" -msgstr "" - -#: [subscription]to_text -msgid "But this contact cannot see yours" -msgstr "" - -#: [subscription]from -msgid "You are not subscribed to this contact" -msgstr "" - -#: [subscription]from_button -msgid "Ask to subscribe" -msgstr "" - -#: [subscription]from_text -msgid "But this contact can still see if you are online" -msgstr "" - -#: [subscription]nil -msgid "No subscriptions" -msgstr "" - -#: [subscription]nil_button -msgid "Invite" -msgstr "" - -#: [subscription]nil_text -msgid "This contact is in your contact list but there is no subscriptions between the two accounts" -msgstr "" - -#: [group]subscribe +#: ../cache/locales.php:185 msgid "Subscribe" msgstr "" -#: [group]subscribed +#: ../cache/locales.php:186 msgid "Subscribed" msgstr "" -#: [group]unsubscribe +#: ../cache/locales.php:187 msgid "Unsubscribe" msgstr "" -#: [group]unsubscribe_text +#: ../cache/locales.php:188 msgid "You are going to unsubscribe from this Group" msgstr "" -#: [group]unsubscribed +#: ../cache/locales.php:189 msgid "Unsubscribed" msgstr "" -#: [group]share_label +#: ../cache/locales.php:190 msgid "Make your membership to this group public to your friends" msgstr "" -#: [group]label_label +#: ../cache/locales.php:191 msgid "Give a label for this group" msgstr "" -#: [group]sure +#: ../cache/locales.php:192 msgid "Are you sure ?" msgstr "" -#: [group]empty_text +#: ../cache/locales.php:194 msgid "Discover, follow and share" msgstr "" -#: [group]empty +#: ../cache/locales.php:195 msgid "Something bad happened to this group" msgstr "" -#: [group]config_saved +#: ../cache/locales.php:196 msgid "Group configuration saved" msgstr "" -#: [group]delete_title +#: ../cache/locales.php:197 msgid "Delete the group" msgstr "" -#: [group]delete_text -msgid "You are going to delete the following group. Please confirm your action." +#: ../cache/locales.php:198 +msgid "" +"You are going to delete the following group. Please confirm your action." msgstr "" -#: [group]delete_clean_text -msgid "It seems that this group doesn't exists anymore. Do you want to remove it from your subscriptions?" +#: ../cache/locales.php:199 +msgid "" +"It seems that this group doesn't exists anymore. Do you want to remove it " +"from your subscriptions?" msgstr "" -#: [group]counter -msgid "%s groups on this server" -msgstr "" - -#: [group]subscriptions [statistics]subscriptions +#: ../cache/locales.php:201 ../cache/locales.php:408 msgid "Subscriptions" msgstr "" -#: [group]servers -msgid "Groups servers" -msgstr "" - -#: [group]search_server -msgid "Search for a new server" -msgstr "" - -#: [group]help_info1 -msgid "Groups are the perfect way to share posts about topics that you like with all the other Movim's users." -msgstr "" - -#: [group]help_info2 -msgid "Choose a server and a Group and subscribe to it using the %s button in the header. You can also create a new one using the %s button." -msgstr "" - -#: [group]help_info3 -msgid "Done? You can now publish a new post in the Group by using the %s button." -msgstr "" - -#: [group]help_info4 -msgid "You will find a list of all your subscribed Groups in My Subscriptions and receive instantly all the new incoming posts in the %sNews%s page." -msgstr "" - -#: [groups]empty_title +#: ../cache/locales.php:202 ../cache/locales.php:290 msgid "Hello" msgstr "" -#: [groups]contact_post [hello]contact_post [menu]contact_post +#: ../cache/locales.php:203 ../cache/locales.php:225 ../cache/locales.php:291 msgid "Contact post" msgstr "" -#: [groups]empty_text1 -msgid "You don't have any subscriptions yet, select a group server above to start exploring." +#: ../cache/locales.php:204 +msgid "" +"You don't have any subscriptions yet, select a group server above to start " +"exploring." msgstr "" -#: [groups]empty_text2 +#: ../cache/locales.php:205 msgid "Subscribe to your favorite feeds by bookmarking them." msgstr "" -#: [groups]subscriptions +#: ../cache/locales.php:206 msgid "My Subscriptions" msgstr "" -#: [groups]add +#: ../cache/locales.php:207 msgid "Create a new Group" msgstr "" -#: [groups]name +#: ../cache/locales.php:208 msgid "Group name" msgstr "" -#: [groups]name_example +#: ../cache/locales.php:209 msgid "My Little Pony - Fan Club" msgstr "" -#: [groups]created +#: ../cache/locales.php:210 msgid "Group created successfully" msgstr "" -#: [groups]deleted +#: ../cache/locales.php:211 msgid "Group deleted successfully" msgstr "" -#: [groups]name_error +#: ../cache/locales.php:212 msgid "Please provide a valid group name (4 characters minimum)" msgstr "" -#: [groups]no_creation +#: ../cache/locales.php:213 msgid "You cannot create a new Group on this server" msgstr "" -#: [groups]sub +#: ../cache/locales.php:214 +#, php-format msgid "%s subscribers" msgstr "" -#: [groups]num +#: ../cache/locales.php:215 +#, php-format msgid "%s posts" msgstr "" -#: [groups]disco_error -msgid "This server doesn't exists" -msgstr "" - -#: [menu]all +#: ../cache/locales.php:216 msgid "All" msgstr "" -#: [menu]refresh +#: ../cache/locales.php:219 msgid "Refresh all the streams" msgstr "" -#: [roster]search -msgid "Search in your contacts" -msgstr "" - -#: [hello]active_contacts -msgid "Active contacts" -msgstr "" - -#: [hello]chat -msgid "Go on the Chat page" -msgstr "" - -#: [hello]news [page]news -msgid "News" -msgstr "" - -#: [hello]news_page -msgid "Read all theses articles on the News page" -msgstr "" - -#: [hello]blog_title -msgid "Visit your public blog" -msgstr "" - -#: [hello]blog_text -msgid "See your public posts and share them with all your contacts" -msgstr "" - -#: [hello]share_title -msgid "Universal share button" -msgstr "" - -#: [hello]share_text -msgid "Bookmark or drag and drop the following button in your toolbar and use it on all the pages you want to share on Movim" -msgstr "" - -#: [hello]share_button -msgid "Share on Movim" -msgstr "" - -#: [help]faq -msgid "Frequently Asked Questions" -msgstr "" - -#: [banner]title -msgid "What do the little banners refer to ?" -msgstr "" - -#: [banner]info1 -msgid "Thanks to these five little banners, you can quickly identitfy the level of confdentiality applied to the information you provide." -msgstr "" - -#: [banner]white -msgid "White, only you can see the information" -msgstr "" - -#: [banner]green -msgid "Green, you have chosen some contacts who can see your information" -msgstr "" - -#: [banner]orange -msgid "Orange, all your contact list can see your information" -msgstr "" - -#: [banner]red -msgid "Red, everybody in the XMPP network can see your information" -msgstr "" - -#: [banner]black -msgid "Black, the whole Internet can see your information" -msgstr "" - -#: [wiki]question -msgid "Looking for some documentation ?" -msgstr "" - -#: [wiki]button -msgid "Read the Wiki" -msgstr "" - -#: [ml]question -msgid "Talk with us by email ?" -msgstr "" - -#: [ml]button -msgid "Join the Mailing List" -msgstr "" - -#: [chatroom]question -msgid "Chat with the team ?" -msgstr "" - -#: [chatroom]button -msgid "Join the Chatroom" -msgstr "" - -#: [init]location -msgid "Location node created" -msgstr "" - -#: [init]bookmark -msgid "Bookmark node created" -msgstr "" - -#: [init]vcard4 -msgid "Profile node created" -msgstr "" - -#: [init]avatar -msgid "Avatar node created" -msgstr "" - -#: [init]subscriptions -msgid "Subscriptions node created" -msgstr "" - -#: [init]microblog -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 "Λάθος όνομα χρήστη" - -#: [error]jid -msgid "Invalid JID" -msgstr "" - -#: [error]empty_challenge -msgid "Empty Challenge from the server" -msgstr "" - -#: [error]dns -msgid "XMPP Domain error, your account is not a correct Jabber ID" -msgstr "" - -#: [error]data_missings -msgid "Some data are missing !" -msgstr "Μερικά δεδομένα λείπουν" - -#: [error]wrong_password -msgid "Wrong password" -msgstr "Λανθασμένος κωδικός" - -#: [error]internal -msgid "Internal server error" -msgstr "" - -#: [error]session -msgid "Session error" -msgstr "" - -#: [error]account_created -msgid "Account successfully created" -msgstr "Ο λογαριασμός δημιουργήθηκε επιτυχώς" - -#: [error]xmpp_unauthorized -msgctxt "[error]xmpp_unauthorized" -msgid "Your XMPP server is unauthorized" -msgstr "" - -#: [error]mec_error -msgid "The server takes too much time to respond" -msgstr "" - -#: [error]too_old -msgid "Your web browser is too old to use with Movim." -msgstr "Ο περιηγητης σας είναι αρκετά παλιός για να χρησιμοποιηθεί με Movim" - -#: [error]websocket -msgid "Movim cannot talk with the server, please try again later (Websocket connection error)" -msgstr "" - -#: [error]impossible -msgid "Impossible login" -msgstr "" - -#: [error]title -msgid "Oops!" -msgstr "" - -#: [error]default [visio]unknown_error -msgid "Unknown error" -msgstr "" - -#: [error]login_format -msgid "Invalid username format" -msgstr "" - -#: [error]password_format -msgid "Invalid password format" -msgstr "" - -#: [error]unauthorized -msgctxt "[error]unauthorized" -msgid "Your XMPP server is unauthorized" -msgstr "" - -#: [error]conflict -msgid "A Movim session is already open on an other device" -msgstr "" - -#: [error]wrong_account -msgid "Movim failed to authenticate. You entered wrong data" -msgstr "" - -#: [error]mechanism -msgid "Authentication mechanism not supported by Movim" -msgstr "" - -#: [error]fail_auth -msgid "The XMPP authentification failed" -msgstr "" - -#: [account]title [accounts]accounts_title -msgid "Accounts" -msgstr "" - -#: [form]username -msgid "My address" -msgstr "Η διεύθυνσή μου" - -#: [form]create_one -msgid "Create one !" -msgstr "" - -#: [form]another_account -msgid "Another account" -msgstr "" - -#: [form]no_account -msgid "No account yet ?" -msgstr "" - -#: [form]whitelist.info -msgid "You can login with accounts from theses servers" -msgstr "" - -#: [form]connected -msgid "Connected" -msgstr "" - -#: [form]population -msgid "Population" -msgstr "" - -#: [menu]empty_title -msgid "No news yet..." -msgstr "" - -#: [menu]empty -msgid "Welcome on your news feed, here you will see all the posts published by your contacts and in the groups you have subscribed." -msgstr "" - -#: [menu]refresh -msgid "Refreshing all the streams" -msgstr "" - -#: [menu]public -msgid "This post is public" -msgstr "" - -#: [affiliations]title -msgid "Manage your members" -msgstr "" - -#: [affiliations]get -msgid "Get the members" -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 "" - -#: [notifs]title -msgid "Pending Invitations" -msgstr "" - -#: [notifs]wants_to_talk -msgid "%s wants to talk with you" -msgstr "" - -#: [notifs]manage -msgid "Manage" -msgstr "" - -#: [post]news_feed -msgid "News Feed" -msgstr "" - -#: [post]placeholder -msgid "Discover and register to the groups you are interested in" -msgstr "" - -#: [post]preview [page]preview -msgid "Preview" -msgstr "" - -#: [post]help [page]help -msgid "Help" -msgstr "" - -#: [post]help_more -msgid "More help" -msgstr "" - -#: [post]help_manual -msgid "Markdown syntax manual" -msgstr "" - -#: [post]title -msgid "Title" -msgstr "" - -#: [post]content -msgid "Content" -msgstr "" - -#: [post]link -msgid "Link" -msgstr "" - -#: [post]tags -msgid "Tags" -msgstr "" - -#: [post]valid_url [publish]valid_url -msgid "Please enter a valid url" -msgstr "" - -#: [post]no_content_preview [publish]no_content_preview -msgid "No content to preview" -msgstr "" - -#: [post]no_content [publish]no_content [post]empty -msgid "No content" -msgstr "" - -#: [post]published -msgid "Post published" -msgstr "" - -#: [post]deleted -msgid "Post deleted" -msgstr "" - -#: [post]gallery -msgid "This picture will be added to your gallery" -msgstr "" - -#: [post]hot -msgid "What's Hot" -msgstr "" - -#: [post]hot_text -msgid "Posts recently published in Groups that you are not subscribed (yet)" -msgstr "" - -#: [post]new [publish]new -msgid "New post" -msgstr "" - -#: [post]embed_tip -msgid "You can also use services like Imgur or Flickr to host your picture and paste the link here." -msgstr "" - -#: [post]repost -msgid "This is a re-post from %s" -msgstr "" - -#: [post]repost_profile -msgid "See %s profile" -msgstr "" - -#: [post]public -msgid "Publish this post publicly?" -msgstr "" - -#: [post]blog_add -msgid "Post published on your blog" -msgstr "" - -#: [post]blog_remove -msgid "Post removed from your blog" -msgstr "" - -#: [post]delete_title [post]delete -msgid "Delete this post" -msgstr "" - -#: [post]delete_text -msgid "You are going to delete this post, please confirm your action" -msgstr "" - -#: [post]comments_disabled -msgid "Comments disabled" -msgstr "" - -#: [post]comment_published -msgid "Comment published" -msgstr "" - -#: [status]disconnect -msgid "Disconnect" -msgstr "" - -#: [status]here -msgid "Your status here !" -msgstr "" - -#: [status]updated -msgid "Status updated" -msgstr "" - -#: [status]status -msgid "Status" -msgstr "" - -#: [status]presence -msgid "Presence" -msgstr "" - -#: [status]online -msgid "Online with Movim" -msgstr "" - -#: [publish]title -msgid "Publish" -msgstr "" - -#: [publish]attach -msgid "Add a file or a picture to your post" -msgstr "" - -#: [publish]no_publication -msgid "You cannot publish a post on this Group" -msgstr "" - -#: [publish]form_filled -msgid "Some fields have been filled in. Do you still want to go back and loose their content?" -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 "" - -#: [rooms]empty_text1 -msgid "You don't have any chatroom yet." -msgstr "" - -#: [rooms]empty_text2 -msgid "Add one by clicking on the add button in the header." -msgstr "" - -#: [chatrooms]title -msgid "Chatrooms" -msgstr "" - -#: [chatrooms]name_placeholder -msgid "My Favorite Room" -msgstr "" - -#: [chatrooms]users -msgid "Users in the room" -msgstr "" - -#: [chatrooms]bad_nickname -msgid "Please enter a correct nickname (2 to 40 characters)" -msgstr "" - -#: [room]anonymous_title -msgid "Public chatroom" -msgstr "" - -#: [room]no_room -msgid "Please provide a room address" -msgstr "" - -#: [room]anonymous_text1 -msgid "You are currently logued as an anonymous user." -msgstr "" - -#: [room]anonymous_text2 -msgid "You can join using your own account or create one on the login page by loging out using the cross in the top-right corner." -msgstr "" - -#: [room]anonymous_login -msgid "Login on %s" -msgstr "" - -#: [room]nick -msgid "Your nickname" -msgstr "" - -#: [roster]ungrouped -msgid "Ungrouped" -msgstr "" - -#: [roster]show_disconnected -msgid "Show disconnected contacts" -msgstr "" - -#: [roster]hide_disconnected -msgid "Hide disconnected contacts" -msgstr "" - -#: [roster]show_group -msgid "Show group %s" -msgstr "" - -#: [roster]hide_group -msgid "Hide group %s" -msgstr "" - -#: [roster]jid_error -msgid "Please enter a valid Jabber ID" -msgstr "" - -#: [roster]no_contacts_title -msgid "No contacts ?" -msgstr "" - -#: [roster]no_contacts_text -msgid "You can add one using the + button bellow" -msgstr "" - -#: [roster]show_hide -msgid "Show/Hide" -msgstr "" - -#: [roster]add_contact_info1 -msgid "Enter the Jabber ID of your contact." -msgstr "" - -#: [roster]add_contact_info2 -msgid "Press enter to validate." -msgstr "" - -#: [roster]jid -msgid "JID" -msgstr "" - -#: [roster]results -msgid "Results" -msgstr "" - -#: [roster]added -msgid "Contact added" -msgstr "" - -#: [roster]deleted -msgid "Contact deleted" -msgstr "" - -#: [roster]search +#: ../cache/locales.php:220 ../cache/locales.php:402 msgid "Search" msgstr "" -#: [share]error +#: ../cache/locales.php:221 +msgid "Go on the Chat page" +msgstr "" + +#: ../cache/locales.php:222 +msgid "Read all theses articles on the News page" +msgstr "" + +#: ../cache/locales.php:223 +msgid "Visit your public blog" +msgstr "" + +#: ../cache/locales.php:224 +msgid "See your public posts and share them with all your contacts" +msgstr "" + +#: ../cache/locales.php:226 +msgid "Universal share button" +msgstr "" + +#: ../cache/locales.php:227 +msgid "" +"Bookmark or drag and drop the following button in your toolbar and use it on " +"all the pages you want to share on Movim" +msgstr "" + +#: ../cache/locales.php:228 +msgid "Share on Movim" +msgstr "" + +#: ../cache/locales.php:229 +msgid "Frequently Asked Questions" +msgstr "" + +#: ../cache/locales.php:230 +msgid "What do the little banners refer to ?" +msgstr "" + +#: ../cache/locales.php:231 +msgid "" +"Thanks to these five little banners, you can quickly identitfy the level of " +"confdentiality applied to the information you provide." +msgstr "" + +#: ../cache/locales.php:232 +msgid "White, only you can see the information" +msgstr "" + +#: ../cache/locales.php:233 +msgid "Green, you have chosen some contacts who can see your information" +msgstr "" + +#: ../cache/locales.php:234 +msgid "Orange, all your contact list can see your information" +msgstr "" + +#: ../cache/locales.php:235 +msgid "Red, everybody in the XMPP network can see your information" +msgstr "" + +#: ../cache/locales.php:236 +msgid "Black, the whole Internet can see your information" +msgstr "" + +#: ../cache/locales.php:237 +msgid "Looking for some documentation ?" +msgstr "" + +#: ../cache/locales.php:238 +msgid "Read the Wiki" +msgstr "" + +#: ../cache/locales.php:239 +msgid "Talk with us by email ?" +msgstr "" + +#: ../cache/locales.php:240 +msgid "Join the Mailing List" +msgstr "" + +#: ../cache/locales.php:241 +msgid "Chat with the team ?" +msgstr "" + +#: ../cache/locales.php:242 +msgid "Join the Chatroom" +msgstr "" + +#: ../cache/locales.php:243 +msgid "Location node created" +msgstr "" + +#: ../cache/locales.php:244 +msgid "Bookmark node created" +msgstr "" + +#: ../cache/locales.php:245 +msgid "Profile node created" +msgstr "" + +#: ../cache/locales.php:246 +msgid "Avatar node created" +msgstr "" + +#: ../cache/locales.php:247 +msgid "Subscriptions node created" +msgstr "" + +#: ../cache/locales.php:248 +msgid "Microblog node created" +msgstr "" + +#: ../cache/locales.php:249 +msgid "Location" +msgstr "" + +#: ../cache/locales.php:250 +msgid "Wrong position" +msgstr "" + +#: ../cache/locales.php:251 +msgid "Location updated" +msgstr "" + +#: ../cache/locales.php:252 +msgid "Update my position" +msgstr "" + +#: ../cache/locales.php:253 +msgid "Wrong username" +msgstr "Λάθος όνομα χρήστη" + +#: ../cache/locales.php:254 +msgid "Invalid JID" +msgstr "" + +#: ../cache/locales.php:255 +msgid "Empty Challenge from the server" +msgstr "" + +#: ../cache/locales.php:256 +msgid "XMPP Domain error, your account is not a correct Jabber ID" +msgstr "" + +#: ../cache/locales.php:257 +msgid "Some data are missing !" +msgstr "Μερικά δεδομένα λείπουν" + +#: ../cache/locales.php:258 +msgid "Wrong password" +msgstr "Λανθασμένος κωδικός" + +#: ../cache/locales.php:259 +msgid "Internal server error" +msgstr "" + +#: ../cache/locales.php:260 +msgid "Session error" +msgstr "" + +#: ../cache/locales.php:261 +msgid "Account successfully created" +msgstr "Ο λογαριασμός δημιουργήθηκε επιτυχώς" + +#: ../cache/locales.php:262 ../cache/locales.php:271 +msgid "Your XMPP server is unauthorized" +msgstr "" + +#: ../cache/locales.php:263 +msgid "The server takes too much time to respond" +msgstr "" + +#: ../cache/locales.php:264 +msgid "Your web browser is too old to use with Movim." +msgstr "Ο περιηγητης σας είναι αρκετά παλιός για να χρησιμοποιηθεί με Movim" + +#: ../cache/locales.php:265 +msgid "" +"Movim cannot talk with the server, please try again later (Websocket " +"connection error)" +msgstr "" + +#: ../cache/locales.php:266 +msgid "Impossible login" +msgstr "" + +#: ../cache/locales.php:267 +msgid "Oops!" +msgstr "" + +#: ../cache/locales.php:268 ../cache/locales.php:449 ../cache/locales.php:455 +msgid "Unknown error" +msgstr "" + +#: ../cache/locales.php:269 +msgid "Invalid username format" +msgstr "" + +#: ../cache/locales.php:270 +msgid "Invalid password format" +msgstr "" + +#: ../cache/locales.php:272 +msgid "A Movim session is already open on an other device" +msgstr "" + +#: ../cache/locales.php:273 +msgid "Movim failed to authenticate. You entered wrong data" +msgstr "" + +#: ../cache/locales.php:274 +msgid "Authentication mechanism not supported by Movim" +msgstr "" + +#: ../cache/locales.php:275 +msgid "The XMPP authentification failed" +msgstr "" + +#: ../cache/locales.php:276 +#, php-format +msgid "" +"You can login with Facebook (chat only) using %syour.id@chat.facebook.com%s " +"and your password" +msgstr "" + +#: ../cache/locales.php:277 +#, php-format +msgid "%sGmail accounts are also compatible%s but are not fully supported" +msgstr "" + +#: ../cache/locales.php:278 +msgid "You can login using your favorite Jabber account" +msgstr "" + +#: ../cache/locales.php:279 +msgid "or with our demonstration account" +msgstr "" + +#: ../cache/locales.php:280 ../cache/locales.php:435 +msgid "Accounts" +msgstr "" + +#: ../cache/locales.php:281 +msgid "My address" +msgstr "Η διεύθυνσή μου" + +#: ../cache/locales.php:283 +msgid "Create one !" +msgstr "" + +#: ../cache/locales.php:284 +msgid "No account yet ?" +msgstr "" + +#: ../cache/locales.php:285 +msgid "Another account" +msgstr "" + +#: ../cache/locales.php:286 +msgid "You can login with accounts from theses servers" +msgstr "" + +#: ../cache/locales.php:287 +msgid "Connected" +msgstr "" + +#: ../cache/locales.php:288 +msgid "Population" +msgstr "" + +#: ../cache/locales.php:289 +msgid "Bad nickname (between 4 and 40 characters)" +msgstr "" + +#: ../cache/locales.php:292 +msgid "" +"Welcome on your news feed, here you will see all the posts published in the " +"groups you have subscribed." +msgstr "" + +#: ../cache/locales.php:293 +msgid "Refreshing all the streams" +msgstr "" + +#: ../cache/locales.php:294 +msgid "This post is public" +msgstr "" + +#: ../cache/locales.php:295 +msgid "Manage your members" +msgstr "" + +#: ../cache/locales.php:296 +msgid "Get the members" +msgstr "" + +#: ../cache/locales.php:297 +msgid "Affiliations saved" +msgstr "" + +#: ../cache/locales.php:298 +msgid "Manage your subscriptions" +msgstr "" + +#: ../cache/locales.php:299 +msgid "Manage the subscriptions" +msgstr "" + +#: ../cache/locales.php:300 +msgid "Get the subscriptions" +msgstr "" + +#: ../cache/locales.php:301 +msgid "Subscriptions saved" +msgstr "" + +#: ../cache/locales.php:302 +msgid "Pending Invitations" +msgstr "" + +#: ../cache/locales.php:303 +#, php-format +msgid "%s wants to talk with you" +msgstr "" + +#: ../cache/locales.php:304 +msgid "Manage" +msgstr "" + +#: ../cache/locales.php:305 ../cache/locales.php:338 +msgid "News Feed" +msgstr "" + +#: ../cache/locales.php:306 ../cache/locales.php:339 +msgid "Discover and register to the groups you are interested in" +msgstr "" + +#: ../cache/locales.php:307 ../cache/locales.php:340 ../cache/locales.php:482 +msgid "Preview" +msgstr "" + +#: ../cache/locales.php:308 ../cache/locales.php:341 ../cache/locales.php:478 +msgid "Help" +msgstr "" + +#: ../cache/locales.php:309 ../cache/locales.php:342 +msgid "More help" +msgstr "" + +#: ../cache/locales.php:310 ../cache/locales.php:343 +msgid "Markdown syntax manual" +msgstr "" + +#: ../cache/locales.php:311 ../cache/locales.php:344 ../cache/locales.php:681 +msgid "Title" +msgstr "" + +#: ../cache/locales.php:312 ../cache/locales.php:345 +msgid "Content" +msgstr "" + +#: ../cache/locales.php:313 ../cache/locales.php:346 +msgid "Link" +msgstr "" + +#: ../cache/locales.php:314 ../cache/locales.php:347 +msgid "Tags" +msgstr "" + +#: ../cache/locales.php:315 ../cache/locales.php:348 +msgid "Please enter a valid url" +msgstr "" + +#: ../cache/locales.php:316 ../cache/locales.php:349 +msgid "No content to preview" +msgstr "" + +#: ../cache/locales.php:317 ../cache/locales.php:350 ../cache/locales.php:687 +msgid "No content" +msgstr "" + +#: ../cache/locales.php:318 ../cache/locales.php:351 +msgid "Post published" +msgstr "" + +#: ../cache/locales.php:319 ../cache/locales.php:352 +msgid "Post deleted" +msgstr "" + +#: ../cache/locales.php:320 ../cache/locales.php:353 +msgid "This picture will be added to your gallery" +msgstr "" + +#: ../cache/locales.php:321 ../cache/locales.php:354 +msgid "What's Hot" +msgstr "" + +#: ../cache/locales.php:322 ../cache/locales.php:355 +msgid "New post" +msgstr "" + +#: ../cache/locales.php:323 ../cache/locales.php:357 +msgid "" +"You can also use services like Imgur or Flickr to host your picture and " +"paste the link here." +msgstr "" + +#: ../cache/locales.php:324 +#, php-format +msgid "This is a re-post from %s" +msgstr "" + +#: ../cache/locales.php:325 +#, php-format +msgid "See %s profile" +msgstr "" + +#: ../cache/locales.php:326 +msgid "Publish this post on your public feed?" +msgstr "" + +#: ../cache/locales.php:327 +msgid "Post published on your blog" +msgstr "" + +#: ../cache/locales.php:328 +msgid "Post removed from your blog" +msgstr "" + +#: ../cache/locales.php:329 ../cache/locales.php:701 +msgid "Delete this post" +msgstr "" + +#: ../cache/locales.php:330 +msgid "You are going to delete this post, please confirm your action" +msgstr "" + +#: ../cache/locales.php:331 +msgid "Comments disabled" +msgstr "" + +#: ../cache/locales.php:332 +msgid "Comment published" +msgstr "" + +#: ../cache/locales.php:333 +msgid "Disconnect" +msgstr "" + +#: ../cache/locales.php:334 +msgid "Your status here !" +msgstr "" + +#: ../cache/locales.php:335 +msgid "Status updated" +msgstr "" + +#: ../cache/locales.php:336 +msgid "Status" +msgstr "" + +#: ../cache/locales.php:337 +msgid "Presence" +msgstr "" + +#: ../cache/locales.php:356 +msgid "Publish" +msgstr "" + +#: ../cache/locales.php:358 +msgid "You cannot publish a post on this Group" +msgstr "" + +#: ../cache/locales.php:359 +msgid "" +"Some fields have been filled in. Do you still want to go back and loose " +"their content?" +msgstr "" + +#: ../cache/locales.php:360 +msgid "Shared" +msgstr "" + +#: ../cache/locales.php:362 +#, php-format +msgid "%s has been added to your public groups" +msgstr "" + +#: ../cache/locales.php:363 +#, php-format +msgid "%s has been removed from your public groups" +msgstr "" + +#: ../cache/locales.php:364 +msgid "Add a chatroom" +msgstr "" + +#: ../cache/locales.php:365 +msgid "You don't have any chatroom yet." +msgstr "" + +#: ../cache/locales.php:366 +msgid "Add one by clicking on the add button in the header." +msgstr "" + +#: ../cache/locales.php:367 +msgid "Chatrooms" +msgstr "" + +#: ../cache/locales.php:370 +msgid "My Favorite Room" +msgstr "" + +#: ../cache/locales.php:374 +msgid "Remove a chatroom" +msgstr "" + +#: ../cache/locales.php:375 +msgid "" +"You are going to remove the following chatroom. Please confirm your action." +msgstr "" + +#: ../cache/locales.php:378 +msgid "Users in the room" +msgstr "" + +#: ../cache/locales.php:379 +msgid "Please enter a correct nickname (6 to 40 characters)" +msgstr "" + +#: ../cache/locales.php:381 +msgid "Public chatroom" +msgstr "" + +#: ../cache/locales.php:382 +msgid "Please provide a room address" +msgstr "" + +#: ../cache/locales.php:383 +msgid "You are currently logued as an anonymous user." +msgstr "" + +#: ../cache/locales.php:384 +msgid "" +"You can join using your own account or create one on the login page by " +"loging out using the cross in the top-right corner." +msgstr "" + +#: ../cache/locales.php:385 +#, php-format +msgid "Login on %s" +msgstr "" + +#: ../cache/locales.php:386 +msgid "Your nickname" +msgstr "" + +#: ../cache/locales.php:387 +msgid "Ungrouped" +msgstr "" + +#: ../cache/locales.php:388 +msgid "Show disconnected contacts" +msgstr "" + +#: ../cache/locales.php:389 +msgid "Hide disconnected contacts" +msgstr "" + +#: ../cache/locales.php:390 +#, php-format +msgid "Show group %s" +msgstr "" + +#: ../cache/locales.php:391 +#, php-format +msgid "Hide group %s" +msgstr "" + +#: ../cache/locales.php:392 +msgid "Please enter a valid Jabber ID" +msgstr "" + +#: ../cache/locales.php:393 +msgid "" +"No contacts ? You can add one using the + button bellow or going to the " +"Explore page" +msgstr "" + +#: ../cache/locales.php:394 +msgid "Show/Hide" +msgstr "" + +#: ../cache/locales.php:395 +msgid "Enter the Jabber ID of your contact." +msgstr "" + +#: ../cache/locales.php:396 +msgid "Press enter to validate." +msgstr "" + +#: ../cache/locales.php:397 +msgid "JID" +msgstr "" + +#: ../cache/locales.php:398 +msgid "Results" +msgstr "" + +#: ../cache/locales.php:399 +msgid "Contact added" +msgstr "" + +#: ../cache/locales.php:401 +msgid "Contact deleted" +msgstr "" + +#: ../cache/locales.php:403 msgid "This is not a valid url" msgstr "" -#: [share]success +#: ../cache/locales.php:404 msgid "Sharing the URL" msgstr "" -#: [statistics]title +#: ../cache/locales.php:405 msgid "Statistics" msgstr "" -#: [statistics]since +#: ../cache/locales.php:406 msgid "Since" msgstr "" -#: [statistics]sessions +#: ../cache/locales.php:407 msgid "Sessions" msgstr "" -#: [statistics]monthly_sub +#: ../cache/locales.php:409 msgid "Monthly Subscriptions" msgstr "" -#: [statistics]monthly_sub_cum +#: ../cache/locales.php:410 msgid "Monthly Subscriptions Cumulated" msgstr "" -#: [subscribe]info -msgid "Movim is a decentralized social network, before creating a new account you need to choose a server to register." +#: ../cache/locales.php:412 +msgid "" +"Movim is a decentralized social network, before creating a new account you " +"need to choose a server to register." msgstr "" -#: [subscribe]server_question +#: ../cache/locales.php:413 msgid "Your server here ?" msgstr "" -#: [subscribe]server_contact +#: ../cache/locales.php:414 msgid "Contact us to add yours to the officially supported servers list" msgstr "" -#: [feed]nope +#: ../cache/locales.php:416 msgid "No public feed for this contact" msgstr "" -#: [feed]nope_contact +#: ../cache/locales.php:417 msgid "No contact specified" msgstr "" -#: [upload]title -msgid "Upload a file" -msgstr "" - -#: [upload]choose -msgid "Choose a file to upload" -msgstr "" - -#: [vcard]title [page]profile +#: ../cache/locales.php:418 ../cache/locales.php:473 msgid "Profile" msgstr "Προφίλ" -#: [vcard]updated +#: ../cache/locales.php:419 msgid "Profile Updated" msgstr "" -#: [vcard]not_updated +#: ../cache/locales.php:420 msgid "Profile Not Updated" msgstr "" -#: [vcard]public +#: ../cache/locales.php:421 msgid "Your profile is now public" msgstr "" -#: [vcard]restricted +#: ../cache/locales.php:422 msgid "Your profile is now restricted" msgstr "" -#: [general]nickname -#, fuzzy -msgctxt "[general]nickname" -msgid "Nickname" -msgstr "Ψευδώνυμο" - -#: [accounts]twitter +#: ../cache/locales.php:436 msgid "Twitter" msgstr "" -#: [accounts]skype +#: ../cache/locales.php:437 msgid "Skype" msgstr "" -#: [accounts]yahoo +#: ../cache/locales.php:438 msgid "Yahoo" msgstr "" -#: [accounts]accounts_nickname -#, fuzzy -msgctxt "[accounts]accounts_nickname" -msgid "Nickname" -msgstr "Ψευδώνυμο" - -#: [accounts]accounts_yahoo -msgid "Yahoo Account" -msgstr "" - -#: [privacy]privacy_title +#: ../cache/locales.php:439 msgid "Privacy Level" msgstr "" -#: [privacy]privacy_question +#: ../cache/locales.php:440 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." +#: ../cache/locales.php:441 +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." msgstr "" -#: [save]submit [button]submit -msgid "Submit" -msgstr "Υποβολή" - -#: [save]reset [button]reset -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 +#: ../cache/locales.php:442 msgid "Call" msgstr "" -#: [visio]hang_up +#: ../cache/locales.php:443 msgid "Hang up" msgstr "" -#: [visio]connection +#: ../cache/locales.php:444 msgid "Connection" msgstr "" -#: [global]no_js +#: ../cache/locales.php:445 ../cache/locales.php:451 +msgid "Hung up" +msgstr "" + +#: ../cache/locales.php:446 ../cache/locales.php:452 +msgid "Your contact is busy" +msgstr "" + +#: ../cache/locales.php:447 ../cache/locales.php:453 +msgid "Declined" +msgstr "" + +#: ../cache/locales.php:448 ../cache/locales.php:454 +msgid "Remote application incompatible" +msgstr "" + +#: ../cache/locales.php:450 ../cache/locales.php:456 +msgid "Is calling you" +msgstr "" + +#: ../cache/locales.php:457 msgid "You don't have javascript enabled. Good luck with that." msgstr "" -#: [global]description -msgid "Movim is a kickass distributed social networking platform that protect your privacy an comes with a set of awesome features." +#: ../cache/locales.php:458 +msgid "" +"Movim is a kickass distributed social networking platform that protect your " +"privacy an comes with a set of awesome features." msgstr "" -#: [page]administration +#: ../cache/locales.php:459 msgid "Administration" msgstr "" -#: [page]home +#: ../cache/locales.php:460 msgid "Home" msgstr "Αρχική Σελίδα" -#: [page]discover +#: ../cache/locales.php:461 msgid "Discover" msgstr "" -#: [page]explore +#: ../cache/locales.php:462 msgid "Explore" msgstr "" -#: [page]account_creation +#: ../cache/locales.php:463 msgid "Account Creation" msgstr "Δημιουργία Λογαριασμού" -#: [page]avatar +#: ../cache/locales.php:464 +msgid "News" +msgstr "" + +#: ../cache/locales.php:465 msgid "Avatar" msgstr "Avatar" -#: [page]chats +#: ../cache/locales.php:467 msgid "Chats" msgstr "" -#: [page]server +#: ../cache/locales.php:470 msgid "Server" msgstr "" -#: [page]public_groups +#: ../cache/locales.php:471 msgid "Public Groups" msgstr "" -#: [page]viewer +#: ../cache/locales.php:472 msgid "Viewer" msgstr "" -#: [page]media +#: ../cache/locales.php:474 msgid "Media" msgstr "" -#: [page]blog +#: ../cache/locales.php:475 msgid "Blog" msgstr "" -#: [page]about +#: ../cache/locales.php:476 msgid "About" msgstr "" -#: [page]login +#: ../cache/locales.php:477 msgid "Login" msgstr "" -#: [page]feed +#: ../cache/locales.php:479 msgid "Feed" msgstr "Feed" -#: [page]gallery +#: ../cache/locales.php:481 msgid "Gallery" msgstr "" -#: [page]visio +#: ../cache/locales.php:483 msgid "Visio-conference" msgstr "" -#: [page]pods +#: ../cache/locales.php:484 msgid "Pods" msgstr "" -#: [page]share +#: ../cache/locales.php:485 msgid "Share" msgstr "" -#: [page]room +#: ../cache/locales.php:486 msgid "Room" msgstr "" -#: [error]error +#: ../cache/locales.php:487 +#, php-format msgid "Error: %s" msgstr "Σφάλμα: %s" -#: [error]cannot_load_file +#: ../cache/locales.php:488 +#, php-format msgid "Cannot load file '%s'" msgstr "Αδύνατη η φόρτωση του αρχείου '%s'" -#: [error]route +#: ../cache/locales.php:489 +#, php-format msgid "Route error, please set all the parameters for the page %s" msgstr "" -#: [error]widget_load_error +#: ../cache/locales.php:490 +#, php-format msgid "Requested widget '%s' doesn't exist." msgstr "" -#: [error]widget_call_error +#: ../cache/locales.php:491 +#, php-format msgid "Requested event '%s' not registered." msgstr "" -#: [error]whoops +#: ../cache/locales.php:492 msgid "Whoops!" msgstr "" -#: [error]media_not_found +#: ../cache/locales.php:493 msgid "It seem that you don't have any pictures here?" msgstr "" -#: [error]media_ask_upload +#: ../cache/locales.php:494 msgid "You can try to upload a couple by going to the Media page" msgstr "" -#: [title]about +#: ../cache/locales.php:495 +#, php-format msgid "%s - About" msgstr "" -#: [title]account +#: ../cache/locales.php:496 +#, php-format msgid "%s - Account" msgstr "" -#: [title]administration +#: ../cache/locales.php:497 +#, php-format msgid "%s - Administration Panel" msgstr "" -#: [title]blog +#: ../cache/locales.php:498 +#, php-format msgid "%s - Blog" msgstr "" -#: [title]configuration +#: ../cache/locales.php:499 +#, php-format msgid "%s - Configuration" msgstr "%s - Ρύθμιση" -#: [title]discover +#: ../cache/locales.php:500 +#, php-format msgid "%s - Discover" msgstr "" -#: [title]explore +#: ../cache/locales.php:501 +#, php-format msgid "%s - Explore" msgstr "" -#: [title]help +#: ../cache/locales.php:502 +#, php-format msgid "%s - Help Page" msgstr "%s - Σελίδα βοήθειας" -#: [title]login +#: ../cache/locales.php:503 +#, php-format msgid "%s - Login to Movim" msgstr "%s - Είσοδος στο Movim" -#: [title]main +#: ../cache/locales.php:504 +#, php-format msgid "%s - Welcome to Movim" msgstr "%s - Καλωσήλθατε στο Movim" -#: [title]media +#: ../cache/locales.php:505 +#, php-format msgid "%s - Media" msgstr "" -#: [title]news +#: ../cache/locales.php:506 +#, php-format msgid "%s - News" msgstr "" -#: [title]node_configuration +#: ../cache/locales.php:507 +#, php-format msgid "%s - Group Configuration" msgstr "" -#: [title]node +#: ../cache/locales.php:508 +#, php-format msgid "%s - Group" msgstr "" -#: [title]not_found +#: ../cache/locales.php:509 +#, php-format msgid "%s - 404" msgstr "" -#: [title]profile +#: ../cache/locales.php:510 +#, php-format msgid "%s - Profile" msgstr "%s - Προφίλ" -#: [title]server +#: ../cache/locales.php:511 +#, php-format msgid "%s - Server" msgstr "" -#: [button]validate +#: ../cache/locales.php:512 msgid "Validate" msgstr "" -#: [button]refresh +#: ../cache/locales.php:513 msgid "Refresh" msgstr "" -#: [button]add +#: ../cache/locales.php:514 msgid "Add" msgstr "" -#: [button]delete +#: ../cache/locales.php:515 msgid "Delete" msgstr "" -#: [button]cancel +#: ../cache/locales.php:516 +msgid "Remove" +msgstr "" + +#: ../cache/locales.php:517 msgid "Cancel" msgstr "" -#: [button]close +#: ../cache/locales.php:518 msgid "Close" msgstr "" -#: [button]update +#: ../cache/locales.php:519 msgid "Update" msgstr "" -#: [button]updating +#: ../cache/locales.php:520 msgid "Updating" msgstr "" -#: [button]submitting +#: ../cache/locales.php:521 +msgid "Submit" +msgstr "Υποβολή" + +#: ../cache/locales.php:522 msgid "Submitting" msgstr "" -#: [button]register +#: ../cache/locales.php:523 +msgid "Reset" +msgstr "Επαναφορά" + +#: ../cache/locales.php:524 msgid "Register" msgstr "" -#: [button]unregister +#: ../cache/locales.php:525 msgid "Unregister" msgstr "" -#: [button]save +#: ../cache/locales.php:526 msgid "Save" msgstr "" -#: [button]clear +#: ../cache/locales.php:527 msgid "Clear" msgstr "" -#: [button]upload +#: ../cache/locales.php:528 msgid "Upload" msgstr "" -#: [button]come_in +#: ../cache/locales.php:529 msgid "Come in!" msgstr "Έλα μέσα!" -#: [button]connecting +#: ../cache/locales.php:530 msgid "Connecting" msgstr "" -#: [button]bool_yes +#: ../cache/locales.php:531 msgid "Yes" msgstr "" -#: [button]bool_no +#: ../cache/locales.php:532 msgid "No" msgstr "" -#: [button]return +#: ../cache/locales.php:534 msgid "Return" msgstr "" -#: [button]accept +#: ../cache/locales.php:535 msgid "Accept" msgstr "Αποδοχή" -#: [button]refuse +#: ../cache/locales.php:536 msgid "Refuse" msgstr "" -#: [button]next +#: ../cache/locales.php:537 msgid "Next" msgstr "" -#: [button]previous +#: ../cache/locales.php:538 msgid "Previous" msgstr "" -#: [step]step +#: ../cache/locales.php:539 +#, php-format msgid "Step %s" msgstr "" -#: [day]title +#: ../cache/locales.php:542 msgid "Day" msgstr "" -#: [day]monday +#: ../cache/locales.php:543 msgid "Monday" msgstr "Δευτέρα" -#: [day]tuesday +#: ../cache/locales.php:544 msgid "Tuesday" msgstr "Τρίτη" -#: [day]wednesday +#: ../cache/locales.php:545 msgid "Wednesday" msgstr "Τετάρτη" -#: [day]thursday +#: ../cache/locales.php:546 msgid "Thursday" msgstr "Πέμπτη" -#: [day]friday +#: ../cache/locales.php:547 msgid "Friday" msgstr "Παρασκευή" -#: [day]saturday +#: ../cache/locales.php:548 msgid "Saturday" msgstr "Σάββατο" -#: [day]sunday +#: ../cache/locales.php:549 msgid "Sunday" msgstr "" -#: [gender]nil -#, fuzzy -msgctxt "[gender]nil" +#: ../cache/locales.php:550 ../cache/locales.php:559 msgid "None" msgstr "Κανένα" -#: [gender]male +#: ../cache/locales.php:551 msgid "Male" msgstr "Άνδρας" -#: [gender]female +#: ../cache/locales.php:552 msgid "Female" msgstr "Γυναίκα" -#: [gender]other +#: ../cache/locales.php:553 msgid "Other" msgstr "Άλλο" -#: [client]bot +#: ../cache/locales.php:554 msgid "Bot" msgstr "" -#: [client]desktop +#: ../cache/locales.php:555 msgid "Desktop" msgstr "" -#: [client]phone +#: ../cache/locales.php:556 msgid "Phone" msgstr "" -#: [client]web +#: ../cache/locales.php:557 msgid "Web" msgstr "" -#: [client]registered +#: ../cache/locales.php:558 msgid "Registered" msgstr "" -#: [marital]nil -#, fuzzy -msgctxt "[marital]nil" -msgid "None" -msgstr "Κανένα" - -#: [marital]single +#: ../cache/locales.php:560 msgid "Single" msgstr "Μόνος/η" -#: [marital]relationship +#: ../cache/locales.php:561 msgid "In a relationship" msgstr "Σε σχέση" -#: [marital]married +#: ../cache/locales.php:562 msgid "Married" msgstr "Παντρεμένος/η" -#: [marital]divorced +#: ../cache/locales.php:563 msgid "Divorced" msgstr "Διαζευγμένος/η" -#: [marital]widowed +#: ../cache/locales.php:564 msgid "Widowed" msgstr "" -#: [marital]cohabiting +#: ../cache/locales.php:565 msgid "Cohabiting" msgstr "" -#: [marital]union +#: ../cache/locales.php:566 msgid "Civil Union" msgstr "" -#: [flag]white +#: ../cache/locales.php:567 msgid "Not shared" msgstr "" -#: [flag]green +#: ../cache/locales.php:568 msgid "Shared with one contact" msgstr "" -#: [flag]orange +#: ../cache/locales.php:569 msgid "Shared with all contacts" msgstr "" -#: [flag]red +#: ../cache/locales.php:570 msgid "Shared with the XMPP network" msgstr "" -#: [flag]black +#: ../cache/locales.php:571 msgid "Shared with the whole Internet" msgstr "" -#: [presence]online +#: ../cache/locales.php:572 msgid "Online" msgstr "Συνδεδεμένος" -#: [presence]away +#: ../cache/locales.php:573 msgid "Away" msgstr "Απών" -#: [presence]dnd +#: ../cache/locales.php:574 msgid "Do Not Disturb" msgstr "Μην Ενοχλείτε" -#: [presence]xa +#: ../cache/locales.php:575 msgid "Extended Away" msgstr "Παρατεταμένη απουσία" -#: [presence]offline +#: ../cache/locales.php:576 msgid "Offline" msgstr "" -#: [presence]error +#: ../cache/locales.php:577 msgid "Error" msgstr "" -#: [mood]afraid +#: ../cache/locales.php:578 msgid "afraid" msgstr "" -#: [mood]amazed +#: ../cache/locales.php:579 msgid "amazed" msgstr "" -#: [mood]amorous +#: ../cache/locales.php:580 msgid "amorous" msgstr "" -#: [mood]angry +#: ../cache/locales.php:581 msgid "angry" msgstr "" -#: [mood]annoyed +#: ../cache/locales.php:582 msgid "annoyed" msgstr "" -#: [mood]anxious +#: ../cache/locales.php:583 msgid "anxious" msgstr "" -#: [mood]aroused +#: ../cache/locales.php:584 msgid "aroused" msgstr "" -#: [mood]ashamed +#: ../cache/locales.php:585 msgid "ashamed" msgstr "" -#: [mood]bored +#: ../cache/locales.php:586 msgid "bored" msgstr "" -#: [mood]brave +#: ../cache/locales.php:587 msgid "brave" msgstr "" -#: [mood]calm +#: ../cache/locales.php:588 msgid "calm" msgstr "" -#: [mood]cautious +#: ../cache/locales.php:589 msgid "cautious" msgstr "" -#: [mood]cold +#: ../cache/locales.php:590 msgid "cold" msgstr "" -#: [mood]confident +#: ../cache/locales.php:591 msgid "confident" msgstr "" -#: [mood]confused +#: ../cache/locales.php:592 msgid "confused" msgstr "" -#: [mood]contemplative +#: ../cache/locales.php:593 msgid "contemplative" msgstr "" -#: [mood]contented +#: ../cache/locales.php:594 msgid "contented" msgstr "" -#: [mood]cranky +#: ../cache/locales.php:595 msgid "cranky" msgstr "" -#: [mood]crazy +#: ../cache/locales.php:596 msgid "crazy" msgstr "" -#: [mood]creative +#: ../cache/locales.php:597 msgid "creative" msgstr "" -#: [mood]curious +#: ../cache/locales.php:598 msgid "curious" msgstr "" -#: [mood]dejected +#: ../cache/locales.php:599 msgid "dejected" msgstr "" -#: [mood]depressed +#: ../cache/locales.php:600 msgid "depressed" msgstr "" -#: [mood]disappointed +#: ../cache/locales.php:601 msgid "disappointed" msgstr "" -#: [mood]disgusted +#: ../cache/locales.php:602 msgid "disgusted" msgstr "" -#: [mood]dismayed +#: ../cache/locales.php:603 msgid "dismayed" msgstr "" -#: [mood]distracted +#: ../cache/locales.php:604 msgid "distracted" msgstr "" -#: [mood]embarrassed +#: ../cache/locales.php:605 msgid "embarrassed" msgstr "" -#: [mood]envious +#: ../cache/locales.php:606 msgid "envious" msgstr "" -#: [mood]excited +#: ../cache/locales.php:607 msgid "excited" msgstr "" -#: [mood]flirtatious +#: ../cache/locales.php:608 msgid "flirtatious" msgstr "" -#: [mood]frustated +#: ../cache/locales.php:609 msgid "frustated" msgstr "" -#: [mood]grateful +#: ../cache/locales.php:610 msgid "grateful" msgstr "" -#: [mood]grieving +#: ../cache/locales.php:611 msgid "grieving" msgstr "" -#: [mood]grumpy +#: ../cache/locales.php:612 msgid "grumpy" msgstr "" -#: [mood]guilty +#: ../cache/locales.php:613 msgid "guilty" msgstr "" -#: [mood]happy +#: ../cache/locales.php:614 msgid "happy" msgstr "" -#: [mood]hopeful +#: ../cache/locales.php:615 msgid "hopeful" msgstr "" -#: [mood]hot +#: ../cache/locales.php:616 msgid "hot" msgstr "" -#: [mood]humbled +#: ../cache/locales.php:617 msgid "humbled" msgstr "" -#: [mood]humiliated +#: ../cache/locales.php:618 msgid "humiliated" msgstr "" -#: [mood]hungry +#: ../cache/locales.php:619 msgid "hungry" msgstr "" -#: [mood]hurt +#: ../cache/locales.php:620 msgid "hurt" msgstr "" -#: [mood]impressed +#: ../cache/locales.php:621 msgid "impressed" msgstr "" -#: [mood]in_awe +#: ../cache/locales.php:622 msgid "in awe" msgstr "" -#: [mood]in_love +#: ../cache/locales.php:623 msgid "in love" msgstr "" -#: [mood]indignant +#: ../cache/locales.php:624 msgid "indignant" msgstr "" -#: [mood]interested +#: ../cache/locales.php:625 msgid "interested" msgstr "" -#: [mood]intoxicated +#: ../cache/locales.php:626 msgid "intoxicated" msgstr "" -#: [mood]invincible +#: ../cache/locales.php:627 msgid "invincible" msgstr "" -#: [mood]jealous +#: ../cache/locales.php:628 msgid "jealous" msgstr "" -#: [mood]lonely +#: ../cache/locales.php:629 msgid "lonely" msgstr "" -#: [mood]lost +#: ../cache/locales.php:630 msgid "lost" msgstr "" -#: [mood]lucky +#: ../cache/locales.php:631 msgid "lucky" msgstr "" -#: [mood]mean +#: ../cache/locales.php:632 msgid "mean" msgstr "" -#: [mood]moody +#: ../cache/locales.php:633 msgid "moody" msgstr "" -#: [mood]nervous +#: ../cache/locales.php:634 msgid "nervous" msgstr "" -#: [mood]neutral +#: ../cache/locales.php:635 msgid "neutral" msgstr "" -#: [mood]offended +#: ../cache/locales.php:636 msgid "offended" msgstr "" -#: [mood]outraged +#: ../cache/locales.php:637 msgid "outraged" msgstr "" -#: [mood]playful +#: ../cache/locales.php:638 msgid "playful" msgstr "" -#: [mood]proud +#: ../cache/locales.php:639 msgid "proud" msgstr "" -#: [mood]relaxed +#: ../cache/locales.php:640 msgid "relaxed" msgstr "" -#: [mood]relieved +#: ../cache/locales.php:641 msgid "relieved" msgstr "" -#: [mood]restless +#: ../cache/locales.php:642 +msgid "remorseful" +msgstr "" + +#: ../cache/locales.php:643 msgid "restless" msgstr "" -#: [mood]sad +#: ../cache/locales.php:644 msgid "sad" msgstr "" -#: [mood]sarcastic +#: ../cache/locales.php:645 msgid "sarcastic" msgstr "" -#: [mood]satisfied +#: ../cache/locales.php:646 msgid "satisfied" msgstr "" -#: [mood]serious +#: ../cache/locales.php:647 msgid "serious" msgstr "" -#: [mood]shocked +#: ../cache/locales.php:648 msgid "shocked" msgstr "" -#: [mood]shy +#: ../cache/locales.php:649 msgid "shy" msgstr "" -#: [mood]sick +#: ../cache/locales.php:650 msgid "sick" msgstr "" -#: [mood]sleepy +#: ../cache/locales.php:651 msgid "sleepy" msgstr "" -#: [mood]spontaneous +#: ../cache/locales.php:652 msgid "spontaneous" msgstr "" -#: [mood]stressed +#: ../cache/locales.php:653 msgid "stressed" msgstr "" -#: [mood]strong +#: ../cache/locales.php:654 msgid "strong" msgstr "" -#: [mood]surprised +#: ../cache/locales.php:655 msgid "surprised" msgstr "" -#: [mood]thankful +#: ../cache/locales.php:656 msgid "thankful" msgstr "" -#: [mood]thirsty +#: ../cache/locales.php:657 msgid "thirsty" msgstr "" -#: [mood]tired +#: ../cache/locales.php:658 msgid "tired" msgstr "" -#: [mood]undefined +#: ../cache/locales.php:659 msgid "undefined" msgstr "" -#: [mood]weak +#: ../cache/locales.php:660 msgid "weak" msgstr "" -#: [mood]worried +#: ../cache/locales.php:661 msgid "worried" msgstr "" -#: [month]title +#: ../cache/locales.php:662 msgid "Month" msgstr "" -#: [month]january +#: ../cache/locales.php:663 msgid "January" msgstr "Ιανουάριος" -#: [month]february +#: ../cache/locales.php:664 msgid "February" msgstr "Φεβρουάριος" -#: [month]march +#: ../cache/locales.php:665 msgid "March" msgstr "Μάρτιος" -#: [month]april +#: ../cache/locales.php:666 msgid "April" msgstr "Απρίλιος" -#: [month]may +#: ../cache/locales.php:667 msgid "May" msgstr "Μάιος" -#: [month]june +#: ../cache/locales.php:668 msgid "June" msgstr "Ιούνιος" -#: [month]july +#: ../cache/locales.php:669 msgid "July" msgstr "Ιούλιος" -#: [month]august +#: ../cache/locales.php:670 msgid "August" msgstr "Αύγουστος" -#: [month]september +#: ../cache/locales.php:671 msgid "September" msgstr "Σεπτέμβριος" -#: [month]october +#: ../cache/locales.php:672 msgid "October" msgstr "Οκτώβριος" -#: [month]november +#: ../cache/locales.php:673 msgid "November" msgstr "Νοέμβριος" -#: [month]december +#: ../cache/locales.php:674 msgid "December" msgstr "Δεκέμβριος" -#: [year]title +#: ../cache/locales.php:675 msgid "Year" msgstr "" -#: [date]today +#: ../cache/locales.php:676 msgid "Today" msgstr "Σήμερα" -#: [date]tomorrow +#: ../cache/locales.php:677 msgid "Tomorrow" msgstr "Αύριο" -#: [date]yesterday +#: ../cache/locales.php:678 msgid "Yesterday" msgstr "Χθες" -#: [date]ago -#, fuzzy -msgid "%d days ago" +#: ../cache/locales.php:679 +#, php-format +msgid " %d days ago" msgstr " %d ημέρες πριν" -#: [date]day +#: ../cache/locales.php:680 msgid "day" msgstr "ημέρα" -#: [post]whats_new +#: ../cache/locales.php:682 msgid "What's new ?" msgstr "" -#: [post]place +#: ../cache/locales.php:683 msgid "Place" msgstr "" -#: [post]by +#: ../cache/locales.php:684 msgid "by" msgstr "" -#: [post]geolocalisation +#: ../cache/locales.php:685 msgid "Geolocalisation" msgstr "" -#: [post]email +#: ../cache/locales.php:686 msgid "email" msgstr "" -#: [post]no_comments +#: ../cache/locales.php:688 msgid "No comments yet" msgstr "" -#: [post]no_comments_stream +#: ../cache/locales.php:689 msgid "No comments stream" msgstr "" -#: [post]no_load +#: ../cache/locales.php:690 msgid "Your feed cannot be loaded." msgstr "" -#: [post]older +#: ../cache/locales.php:691 msgid "Get older posts" msgstr "" -#: [post]new_items +#: ../cache/locales.php:692 +#, php-format msgid "%s new items" msgstr "" -#: [post]comment_error +#: ../cache/locales.php:693 msgid "Comment publication error" msgstr "" -#: [post]comments_older +#: ../cache/locales.php:694 msgid "Show the older comments" msgstr "" -#: [post]comments_loading -#, fuzzy -msgid "Loading comments..." -msgstr "Φορτώνεται το contact feed ..." +#: ../cache/locales.php:695 +msgid "Loading comments ..." +msgstr "" -#: [post]comments_get +#: ../cache/locales.php:696 msgid "Get the comments" msgstr "" -#: [post]comment_add +#: ../cache/locales.php:697 msgid "Add a comment" msgstr "" -#: [post]share +#: ../cache/locales.php:698 msgid "Share with" msgstr "" -#: [post]share_everyone +#: ../cache/locales.php:699 msgid "Everyone" msgstr "" -#: [post]share_your_contacts +#: ../cache/locales.php:700 msgid "Your contacts" msgstr "" -#: [post]updated +#: ../cache/locales.php:702 msgid "Updated" msgstr "" -#: [post]content_not_found +#: ../cache/locales.php:703 msgid "Content not found" msgstr "" -#: [post]default_title +#: ../cache/locales.php:704 msgid "Contact publication" msgstr "" -#: [post]comments +#: ../cache/locales.php:705 msgid "Comments" msgstr "" -#: [api]error +#: ../cache/locales.php:706 msgid "The API is not reachable, try again later" msgstr "" -#: [field]type_here +#: ../cache/locales.php:707 msgid "Type here" msgstr "" #~ msgid "PHP version mismatch. Movim requires PHP 5.3 minimum." -#~ msgstr "Αναντιστοιχία έκδοσης της PHP. Το Movim απαιτεί τουλάχιστον την έκδοση 5.3 της PHP." +#~ msgstr "" +#~ "Αναντιστοιχία έκδοσης της PHP. Το Movim απαιτεί τουλάχιστον την έκδοση 5.3 " +#~ "της PHP." +#, php-format #~ msgid "Movim requires the %s extension." #~ msgstr "Το Movim απαιτεί την %s επέκταση." @@ -2722,17 +2597,23 @@ msgstr "" #~ msgid "Movim Installer" #~ msgstr "Πρόγραμμα εγκατάστασης του Movim" +#, php-format #~ msgid "Couldn't create directory '%s'." #~ msgstr "Αδύνατη η δημιουργία του φακέλλου '%s'." +#, php-format #~ msgid "Couldn't create configuration file '%s'." #~ msgstr "Αδύνατη η δημιουργία του αρχείου ρύθμισης '%s'." #~ msgid "Compatibility Test" #~ msgstr "Δοκιμασία συμβατότητας" -#~ msgid "The following requirements were not met. Please make sure they are all satisfied in order to install Movim." -#~ msgstr "Οι ακόλουθες προϋποθέσεις δεν καλύπτονταν. Παρακαλώ βεβαιωθείτε πως καλύπτονται όλες, για να μπορέσετε να προχωρήσετε στην εγκατάσταση του Movim." +#~ msgid "" +#~ "The following requirements were not met. Please make sure they are all " +#~ "satisfied in order to install Movim." +#~ msgstr "" +#~ "Οι ακόλουθες προϋποθέσεις δεν καλύπτονταν. Παρακαλώ βεβαιωθείτε πως " +#~ "καλύπτονται όλες, για να μπορέσετε να προχωρήσετε στην εγκατάσταση του Movim." #~ msgid "User not logged in." #~ msgstr "Χρήστης μη συνδεδεμένος." @@ -2740,15 +2621,21 @@ msgstr "" #~ msgid "JID not provided." #~ msgstr "Δεν παρέχονται JID (Jabber Identif. Codes)" +#, php-format #~ msgid "jid '%s' is incorrect" #~ msgstr "Ο jid '%s' είναι λανθασμένος" +#, php-format #~ msgid "Cannot open log file '%s'" #~ msgstr "Αδύνατο να ανοίξει το αρχείο καταγραφής '%s'" +#, php-format #~ msgid "%s - Account Creation" #~ msgstr "%s - Δημιουργία Λογαριασμού" +#~ msgid "Remove this contact" +#~ msgstr "Διαγραφή αυτής της επαφής" + #~ msgid "Debug console" #~ msgstr "Κονσόλα αποσφαλμάτωσης" @@ -2761,6 +2648,9 @@ msgstr "" #~ msgid "Decline" #~ msgstr "Απόρριψη" +#~ msgid "Loading the contact feed ..." +#~ msgstr "Φορτώνεται το contact feed ..." + #~ msgid "BOSH Connection Preferences" #~ msgstr "Επιλογές σύνδεσης BOSH" @@ -2794,17 +2684,22 @@ msgstr "" #~ msgid "Actual version : " #~ msgstr "Τρέχουσα έκδοση " +#, php-format #~ msgid "Install the %s package" #~ msgstr "Εγκαταστήστε το %s πακέτο" +#, php-format #~ msgid "Install %s and %s packages" #~ msgstr "Εγκατασταση %s και %s πακέτα" #~ msgid "Update your PHP version or contact your server administrator" -#~ msgstr "Κάντε αναβάθμιση του PHP ή επικοινωνήστε με τον διαχειρηστή του εξυπηρετητή" +#~ msgstr "" +#~ "Κάντε αναβάθμιση του PHP ή επικοινωνήστε με τον διαχειρηστή του εξυπηρετητή" -#~ msgid "Before you enjoy your social network, a few adjustements are required." -#~ msgstr "Πριν απολαύσετε το κοινωνικό σας δίκτυο, απαιτούνται ορισμένες προσαρμογές." +#~ msgid "" +#~ "Before you enjoy your social network, a few adjustements are required." +#~ msgstr "" +#~ "Πριν απολαύσετε το κοινωνικό σας δίκτυο, απαιτούνται ορισμένες προσαρμογές." #~ msgid "Thank you for downloading Movim!" #~ msgstr "Ευχαριστούμε που κατεβάσατε το Movim!" @@ -2821,17 +2716,25 @@ msgstr "" #~ msgid "terse" #~ msgstr "λιτός" -#~ msgid "Some errors were detected. Please correct them for the installation to proceed." -#~ msgstr "Εντοπίστηκαν μερικά σφάλματα. Παρακαλούμε διορθώστε τα για να συνεχίστεί η εγκατάσταση" +#~ msgid "" +#~ "Some errors were detected. Please correct them for the installation to " +#~ "proceed." +#~ msgstr "" +#~ "Εντοπίστηκαν μερικά σφάλματα. Παρακαλούμε διορθώστε τα για να συνεχίστεί η " +#~ "εγκατάσταση" #~ msgid "Valid Bosh" #~ msgstr "Εγκυρο bosh" +#~ msgid "Database Detected" +#~ msgstr "Εντοπίστηκε βάση δεδομένων" + #~ msgid "Make sure your password is safe :" #~ msgstr "Σιγουρευτείτε εαν ο κωδικός σας είναι ασφαλής" #~ msgid "A capital letter, a digit and a special character are recommended" -#~ msgstr "Προτείνεται ένα κεφαλαίο γράμμα, ένα ψηφίο και ένας ειδικός χαρακτήρας" +#~ msgstr "" +#~ "Προτείνεται ένα κεφαλαίο γράμμα, ένα ψηφίο και ένας ειδικός χαρακτήρας" #~ msgid "Could not communicate with the XMPP server" #~ msgstr "Δεν είναι εφικτή η επικοινωνία με τον διακομιστή XMPP" @@ -2839,6 +2742,7 @@ msgstr "" #~ msgid "Could not connect to the XMPP server" #~ msgstr "Δεν είναι εφικτή η σύνδεση στον διακομιστή XMPP" +#, php-format #~ msgid "%s - Add An Account" #~ msgstr "%s - Προσθέστε λογαριασμό" diff --git a/sources/locales/eo.po b/sources/locales/eo.po index ff966a1..e186d05 100644 --- a/sources/locales/eo.po +++ b/sources/locales/eo.po @@ -1,2712 +1,2584 @@ # Esperanto translations for Movim package. # This file is distributed under the same license as the Movim package. # This file was translated from CodingTeam at . -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/About/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Account/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/AccountNext/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/AdHoc/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/AdminDB/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/AdminMain/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/AdminTest/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Api/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Avatar/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Blog/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Bookmark/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Chat/locales.ini -#. #-#-#-#-# 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 -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Group/locales.ini -#. #-#-#-#-# 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 -#. #-#-#-#-# 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 -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Presence/locales.ini -#. #-#-#-#-# 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 -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Share/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Statistics/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Subscribe/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Syndication/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Upload/locales.ini -#. #-#-#-#-# 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-08-20 15:17+0200\n" +"POT-Creation-Date: 2015-06-08 22:06+0200\n" "PO-Revision-Date: 2013-05-11 17:33+0000\n" "Last-Translator: Baptiste Darthenay \n" "Language-Team: LANGUAGE \n" -"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2015-06-18 21:08+0000\n" "X-Generator: Launchpad (build 17570)\n" +"Language: \n" -#: [about]thanks +#: ../cache/locales.php:2 msgid "Thanks" msgstr "" -#: [about]developers +#: ../cache/locales.php:3 msgid "Developers" msgstr "" -#: [about]translators +#: ../cache/locales.php:4 msgid "Translators" msgstr "" -#: [about]software +#: ../cache/locales.php:5 msgid "Software" msgstr "" -#: [about]resources +#: ../cache/locales.php:6 msgid "Resources" msgstr "" -#: [about]api [schema]api [api]title +#: ../cache/locales.php:7 ../cache/locales.php:83 ../cache/locales.php:85 msgid "API" msgstr "" -#: [about]info -msgid "Movim is an XMPP-based communication platform. All the project, except the following software and resources, is under" +#: ../cache/locales.php:8 +msgid "" +"Movim is an XMPP-based communication platform. All the project, except the " +"following software and resources, is under" msgstr "" -#: [account]title +#: ../cache/locales.php:9 msgid "Account" msgstr "" -#: [account]password_change_title -#, fuzzy -msgid "Change my password" -msgstr "Malkorekta pasvorto" - -#: [account]password [db]password [credentials]password [form]password -#: [input]password -msgid "Password" -msgstr "Pasvorto" - -#: [account]password_confirmation -#, fuzzy -msgid "Password confirmation" -msgstr "%s - Agordaĵoj" - -#: [account]password_changed +#: ../cache/locales.php:10 msgid "The password has been updated" msgstr "" -#: [account]password_not_valid +#: ../cache/locales.php:11 msgid "Please provide a valid password (6 characters minimum)" msgstr "" -#: [account]password_not_same +#: ../cache/locales.php:12 msgid "The provided passwords are not the same" msgstr "" -#: [account]delete_title +#: ../cache/locales.php:13 msgid "Delete my account" msgstr "" -#: [account]delete -msgid "Delete your account" +#: ../cache/locales.php:14 +msgid "" +"You will delete your XMPP account and all the relative information linked to " +"it (profile, contacts and publications)." msgstr "" -#: [account]delete_text -msgid "You will delete your XMPP account and all the relative information linked to it (profile, contacts and publications)." -msgstr "" - -#: [account]delete_text_confirm +#: ../cache/locales.php:15 msgid "Are you sure that you want to delete it ?" msgstr "" -#: [account]gateway_title -msgid "Gateway" -msgstr "" - -#: [create]title [subscribe]title +#: ../cache/locales.php:16 ../cache/locales.php:411 msgid "Create a new account" msgstr "" -#: [create]notfound +#: ../cache/locales.php:17 msgid "No account creation form found on the server" msgstr "" -#: [create]server_on +#: ../cache/locales.php:18 ../cache/locales.php:172 msgid "on" msgstr "" -#: [create]successfull +#: ../cache/locales.php:19 msgid "Your acccount has been successfully registered" msgstr "" -#: [create]loading +#: ../cache/locales.php:20 msgid "Loading" msgstr "" -#: [error]not_acceptable +#: ../cache/locales.php:21 msgid "Not Acceptable" msgstr "" -#: [error]service_unavailable +#: ../cache/locales.php:22 msgid "The registration system of this server is currently unavailable" msgstr "" -#: [oob]about -msgid "This server use an external system for the registration, please click on the following URL." +#: ../cache/locales.php:23 +msgid "" +"This server use an external system for the registration, please click on the " +"following URL." msgstr "" -#: [adhoc]title +#: ../cache/locales.php:24 msgid "Actions" msgstr "" -#: [db]legend [schema]database +#: ../cache/locales.php:25 ../cache/locales.php:82 msgid "Database" msgstr "" -#: [db]connect_error +#: ../cache/locales.php:26 msgid "Modl wasn't able to connect to the database" msgstr "" -#: [db]connect_success +#: ../cache/locales.php:27 msgid "Movim is connected to the database" msgstr "" -#: [db]update +#: ../cache/locales.php:28 msgid "The database need to be updated" msgstr "" -#: [db]up_to_date +#: ../cache/locales.php:29 msgid "Movim database is up to date" msgstr "" -#: [db]type +#: ../cache/locales.php:30 msgid "Database Type" msgstr "" -#: [db]username [credentials]username [input]username +#: ../cache/locales.php:31 ../cache/locales.php:50 ../cache/locales.php:540 msgid "Username" msgstr "" -#: [db]host +#: ../cache/locales.php:32 ../cache/locales.php:51 ../cache/locales.php:282 +#: ../cache/locales.php:541 +msgid "Password" +msgstr "Pasvorto" + +#: ../cache/locales.php:33 msgid "Host" msgstr "" -#: [db]port +#: ../cache/locales.php:34 msgid "Port" msgstr "" -#: [db]name -#, fuzzy -msgid "Database sName" -msgstr "Datumbazo trovita" +#: ../cache/locales.php:35 +msgid "Database Name" +msgstr "" -#: [admin]general +#: ../cache/locales.php:36 msgid "General Settings" msgstr "" -#: [general]theme +#: ../cache/locales.php:37 msgid "Theme" msgstr "" -#: [general]language +#: ../cache/locales.php:38 msgid "Default language" msgstr "" -#: [general]log_verbosity +#: ../cache/locales.php:39 +msgid "Environment" +msgstr "" + +#: ../cache/locales.php:40 msgid "Log verbosity" msgstr "" -#: [general]timezone +#: ../cache/locales.php:41 msgid "Server Timezone" msgstr "" -#: [general]limit +#: ../cache/locales.php:42 msgid "User folder size limit (in bytes)" msgstr "" -#: [websocket]title +#: ../cache/locales.php:43 msgid "WebSocket Configuration" msgstr "" -#: [websocket]info +#: ../cache/locales.php:44 msgid "Enter here a valid WebSocket URI in the form" msgstr "" -#: [websocket]label +#: ../cache/locales.php:45 msgid "WebSocket URI" msgstr "" -#: [websocket]save_info -msgid "If you change the URI, please restart the daemon to reload the configuration" +#: ../cache/locales.php:46 +msgid "" +"If you change the URI, please restart the daemon to reload the configuration" msgstr "" -#: [websocket]publics +#: ../cache/locales.php:47 msgid "Public WebSockets" msgstr "" -#: [credentials]title +#: ../cache/locales.php:48 msgid "Administration Credential" msgstr "" -#: [credentials]info +#: ../cache/locales.php:49 msgid "Change the default credentials admin/password" msgstr "" -#: [credentials]re_password +#: ../cache/locales.php:52 msgid "Retype password" msgstr "" -#: [whitelist]title +#: ../cache/locales.php:53 msgid "Whitelist - XMPP Server" msgstr "" -#: [whitelist]info1 -msgid "If you want to specify a list of authorized XMPP servers on your Movim pod and forbid the connection on all the others please put their domain name here, with comma (ex: movim.eu,jabber.fr)" +#: ../cache/locales.php:54 +msgid "" +"If you want to specify a list of authorized XMPP servers on your Movim pod " +"and forbid the connection on all the others please put their domain name " +"here, with comma (ex: movim.eu,jabber.fr)" msgstr "" -#: [whitelist]info2 -msgid "Leave this field blank if you allow the access to all the XMPP accounts." +#: ../cache/locales.php:55 +msgid "" +"Leave this field blank if you allow the access to all the XMPP accounts." msgstr "" -#: [whitelist]label +#: ../cache/locales.php:56 msgid "List of whitelisted XMPP servers" msgstr "" -#: [information]title -#, fuzzy -msgctxt "[information]title" +#: ../cache/locales.php:57 ../cache/locales.php:61 msgid "Information Message" -msgstr "Generalaj informoj" +msgstr "" -#: [information]description +#: ../cache/locales.php:58 msgid "Description" msgstr "" -#: [information]info1 +#: ../cache/locales.php:59 msgid "This message will be displayed on the login page" msgstr "" -#: [information]info2 -msgid "Leave this field blank if you dont want to show any message." +#: ../cache/locales.php:60 +msgid "Leave this field blank if you don't want to show any message." msgstr "" -#: [information]label -#, fuzzy -msgctxt "[information]label" -msgid "Information Message" -msgstr "Generalaj informoj" - -#: [log]empty +#: ../cache/locales.php:62 msgid "Empty" msgstr "" -#: [log]syslog +#: ../cache/locales.php:63 msgid "Syslog" msgstr "" -#: [log]syslog_files +#: ../cache/locales.php:64 msgid "Syslog and files" msgstr "" -#: [rewrite]title +#: ../cache/locales.php:65 msgid "URL Rewriting" msgstr "" -#: [rewrite]info +#: ../cache/locales.php:66 msgid "The URL Rewriting can be enabled" msgstr "" -#: [admin]compatibility +#: ../cache/locales.php:67 msgid "General Overview" msgstr "" -#: [compatibility]info -msgid "Movim has found some issues or things that need to be fixed or improved" +#: ../cache/locales.php:68 +msgid "" +"Movim has found some issues or things that need to be fixed or improved" msgstr "" -#: [compatibility]php1 +#: ../cache/locales.php:69 +#, php-format msgid "Update your PHP-Version: %s" msgstr "" -#: [compatibility]php2 +#: ../cache/locales.php:70 msgid "Required: 5.3.0" msgstr "" -#: [compatibility]curl +#: ../cache/locales.php:71 msgid "Install the php5-curl library" msgstr "" -#: [compatibility]imagick +#: ../cache/locales.php:72 msgid "Install the php5-imagick library" msgstr "" -#: [compatibility]gd +#: ../cache/locales.php:73 msgid "Install the php5-gd library" msgstr "" -#: [compatibility]rights -#, fuzzy -msgid "Read and write rights for the webserver in Movims root directory" -msgstr "Ebligi legi kaj skribi rajtojn on la radika dosierujo de Movim" +#: ../cache/locales.php:74 +msgid "Read and write rights for the webserver in Movim's root directory" +msgstr "" -#: [compatibility]rewrite +#: ../cache/locales.php:75 msgid "The URL Rewriting support is currently disabled" msgstr "" -#: [compatibility]db +#: ../cache/locales.php:76 msgid "The database need to be updated, go to the database panel to fix this" msgstr "" -#: [compatibility]websocket -msgid "WebSocket connection error, check if the Movim Daemon is running and is reachable" +#: ../cache/locales.php:77 +msgid "" +"WebSocket connection error, check if the Movim Daemon is running and is " +"reacheable" msgstr "" -#: [compatibility]xmpp_websocket -msgid "XMPP Websocket connection error, please check the validity of the URL given in the General Configuration" +#: ../cache/locales.php:78 +msgid "" +"XMPP Websocket connection error, please check the validity of the URL given " +"in the General Configuration" msgstr "" -#: [schema]browser +#: ../cache/locales.php:79 msgid "Browser" msgstr "" -#: [schema]movim +#: ../cache/locales.php:80 msgid "Movim Core" msgstr "" -#: [schema]daemon +#: ../cache/locales.php:81 msgid "Movim Daemon" msgstr "" -#: [schema]xmpp +#: ../cache/locales.php:84 msgid "XMPP" msgstr "" -#: [api]info -msgid "Here you can register your pod on the official %sMovim API%s and be listed on %sthe pods page%s." +#: ../cache/locales.php:86 +#, php-format +msgid "" +"Here you can register your pod on the official %sMovim API%s and be listed " +"on %sthe pods page%s." msgstr "" -#: [api]register +#: ../cache/locales.php:87 msgid "Your pod is not registered on the API" msgstr "" -#: [api]registered +#: ../cache/locales.php:88 msgid "Your pod is registered on the API" msgstr "" -#: [api]wait +#: ../cache/locales.php:89 msgid "Your pod is not yet validated" msgstr "" -#: [api]validated +#: ../cache/locales.php:90 msgid "Your pod is validated" msgstr "" -#: [api]unregister -msgid "You asked to be removed from the API, this request will be processed in a couple of hours" +#: ../cache/locales.php:91 +msgid "" +"You asked to be removed from the API, this request will be processed in a " +"couple of hours" msgstr "" -#: [api]conf_updated [config]updated +#: ../cache/locales.php:92 ../cache/locales.php:147 msgid "Configuration updated" msgstr "" -#: [avatar]file +#: ../cache/locales.php:93 msgid "File" msgstr "" -#: [avatar]use_it +#: ../cache/locales.php:94 msgid "Use it" msgstr "" -#: [avatar]webcam +#: ../cache/locales.php:95 msgid "Webcam" msgstr "" -#: [avatar]cheese +#: ../cache/locales.php:96 msgid "Cheese !" msgstr "" -#: [avatar]snapshot +#: ../cache/locales.php:97 msgid "Take a webcam snapshot" msgstr "" -#: [avatar]updated +#: ../cache/locales.php:98 msgid "Avatar Updated" msgstr "" -#: [avatar]not_updated +#: ../cache/locales.php:99 msgid "Avatar Not Updated" msgstr "" -#: [blog]title [feed]title +#: ../cache/locales.php:100 ../cache/locales.php:415 +#, php-format msgid "%s's feed" msgstr "" -#: [blog]empty +#: ../cache/locales.php:101 msgid "This user has not posted anything right now" msgstr "" -#: [title]conferences +#: ../cache/locales.php:102 msgid "Conferences" msgstr "" -#: [title]groups [group]empty_title [menu]groups [page]groups +#: ../cache/locales.php:103 ../cache/locales.php:193 ../cache/locales.php:217 +#: ../cache/locales.php:468 msgid "Groups" msgstr "" -#: [chatroom]add +#: ../cache/locales.php:104 msgid "Add a new Chat Room" msgstr "" -#: [chatroom]id [chatrooms]id +#: ../cache/locales.php:105 ../cache/locales.php:368 msgid "Chat Room ID" msgstr "" -#: [chatroom]name -#, fuzzy -msgctxt "[chatroom]name" +#: ../cache/locales.php:106 ../cache/locales.php:116 ../cache/locales.php:156 +#: ../cache/locales.php:361 ../cache/locales.php:369 ../cache/locales.php:424 msgid "Name" msgstr "Nomo" -#: [chatroom]nickname [general]nickname [chatrooms]nickname +#: ../cache/locales.php:107 ../cache/locales.php:157 ../cache/locales.php:371 +#: ../cache/locales.php:425 msgid "Nickname" msgstr "Kromnomo" -#: [chatroom]autojoin_label +#: ../cache/locales.php:108 msgid "Do you want do join automaticaly this Chat Room ?" msgstr "" -#: [chatroom]bad_id [chatrooms]bad_id +#: ../cache/locales.php:109 ../cache/locales.php:372 msgid "Bad Chatroom ID" msgstr "" -#: [chatroom]empty_name [chatrooms]empty_name +#: ../cache/locales.php:110 ../cache/locales.php:373 msgid "Empty name" msgstr "" -#: [bookmarks]updated +#: ../cache/locales.php:111 ../cache/locales.php:380 msgid "Bookmarks updated" msgstr "" -#: [bookmarks]error -msgid "An error occured :" +#: ../cache/locales.php:112 +msgid "An error occured : " msgstr "" -#: [bookmarks]configure +#: ../cache/locales.php:113 msgid "Configure" msgstr "" -#: [url]add +#: ../cache/locales.php:114 msgid "Add a new URL" msgstr "" -#: [url]url +#: ../cache/locales.php:115 msgid "URL" msgstr "" -#: [url]name -#, fuzzy -msgctxt "[url]name" -msgid "Name" -msgstr "Nomo" - -#: [message]published +#: ../cache/locales.php:117 msgid "Message Published" msgstr "" -#: [message]encrypted +#: ../cache/locales.php:118 ../cache/locales.php:138 msgid "Encrypted message" msgstr "" -#: [message]composing [chats]composing +#: ../cache/locales.php:119 msgid "Composing..." msgstr "" -#: [message]paused [chats]paused +#: ../cache/locales.php:120 msgid "Paused..." msgstr "" -#: [message]gone +#: ../cache/locales.php:121 msgid "Contact gone" msgstr "" -#: [chat]attention +#: ../cache/locales.php:122 +#, php-format msgid "%s needs your attention" msgstr "" -#: [chat]placeholder +#: ../cache/locales.php:123 msgid "Your message here..." msgstr "" -#: [chat]smileys +#: ../cache/locales.php:124 msgid "Smileys" msgstr "" -#: [chat]empty_title [button]chat +#: ../cache/locales.php:125 ../cache/locales.php:139 msgid "Chat" msgstr "Tujmesaĝilo" -#: [chat]empty_text +#: ../cache/locales.php:126 msgid "Discuss with your contacts" msgstr "" -#: [chat]frequent [chats]frequent -msgid "Frequent contacts" -msgstr "" - -#: [chatroom]members +#: ../cache/locales.php:127 msgid "Members" msgstr "" -#: [chatroom]connected [chatrooms]connected +#: ../cache/locales.php:128 ../cache/locales.php:376 msgid "Connected to the chatroom" msgstr "" -#: [chatroom]disconnected [chatrooms]disconnected +#: ../cache/locales.php:129 ../cache/locales.php:377 msgid "Disconnected from the chatroom" msgstr "" -#: [chatroom]config [group]configuration [page]configuration +#: ../cache/locales.php:130 ../cache/locales.php:200 ../cache/locales.php:469 msgid "Configuration" msgstr "Agordaĵoj" -#: [chatroom]config_saved +#: ../cache/locales.php:131 msgid "Configuration saved" msgstr "" -#: [chatroom]subject +#: ../cache/locales.php:132 msgid "Subject" msgstr "" -#: [chatroom]subject_changed +#: ../cache/locales.php:133 msgid "Subject changed" msgstr "" -#: [chats]empty_title -msgid "No chats yet..." +#: ../cache/locales.php:134 +msgid "Open a new conversation by clicking on the plus button bellow" msgstr "" -#: [chats]empty -msgid "Open a new conversation by clicking on the plus button bellow or visit the Contacts page." -msgstr "" - -#: [chats]add +#: ../cache/locales.php:135 msgid "Chat with a contact" msgstr "" -#: [chats]more +#: ../cache/locales.php:136 +msgid "Frequent contacts" +msgstr "" + +#: ../cache/locales.php:137 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 "" - -#: [config]general +#: ../cache/locales.php:140 msgid "General" msgstr "" -#: [config]language +#: ../cache/locales.php:141 msgid "Language" msgstr "Lingvo" -#: [config]roster +#: ../cache/locales.php:142 msgid "Roster display" msgstr "" -#: [config]roster_show +#: ../cache/locales.php:143 msgid "Show the offline contacts" msgstr "" -#: [config]roster_hide +#: ../cache/locales.php:144 msgid "Hide the offline contacts" msgstr "" -#: [config]appearence +#: ../cache/locales.php:145 msgid "Appearence" msgstr "" -#: [config]info -msgid "This configuration is shared wherever you are connected" +#: ../cache/locales.php:146 +msgid "This configuration is shared wherever you are connected !" msgstr "" -#: [notifications]message +#: ../cache/locales.php:148 msgid "Notify on incoming message" msgstr "" -#: [notifications]desktop +#: ../cache/locales.php:149 msgid "Use desktop notifications" msgstr "" -#: [general]legend [general]general_title +#: ../cache/locales.php:150 +msgid "Data" +msgstr "" + +#: ../cache/locales.php:151 +msgid "Cache" +msgstr "" + +#: ../cache/locales.php:152 ../cache/locales.php:218 ../cache/locales.php:466 +msgid "Contacts" +msgstr "" + +#: ../cache/locales.php:153 ../cache/locales.php:480 +msgid "Posts" +msgstr "" + +#: ../cache/locales.php:154 +msgid "Messages" +msgstr "" + +#: ../cache/locales.php:155 ../cache/locales.php:423 msgid "General Informations" msgstr "Generalaj informoj" -#: [general]name [public_groups]name [chatrooms]name -msgid "Name" -msgstr "Nomo" - -#: [general]date_of_birth +#: ../cache/locales.php:158 ../cache/locales.php:427 msgid "Date of Birth" msgstr "Naskiĝdato" -#: [general]gender +#: ../cache/locales.php:159 ../cache/locales.php:428 msgid "Gender" msgstr "" -#: [general]marital +#: ../cache/locales.php:160 ../cache/locales.php:429 msgid "Marital Status" msgstr "" -#: [general]email +#: ../cache/locales.php:161 ../cache/locales.php:426 msgid "Email" msgstr "" -#: [general]website +#: ../cache/locales.php:162 ../cache/locales.php:430 msgid "Website" msgstr "Retpaĝaro" -#: [general]about +#: ../cache/locales.php:163 ../cache/locales.php:431 msgid "About Me" msgstr "" -#: [general]accounts +#: ../cache/locales.php:164 msgid "Other Accounts" msgstr "" -#: [general]tune +#: ../cache/locales.php:165 msgid "Is Listening" msgstr "" -#: [position]legend [position]position_title +#: ../cache/locales.php:166 ../cache/locales.php:432 msgid "Geographic Position" msgstr "" -#: [position]locality +#: ../cache/locales.php:167 ../cache/locales.php:433 msgid "Locality" msgstr "" -#: [position]country +#: ../cache/locales.php:168 ../cache/locales.php:434 msgid "Country" msgstr "" -#: [mood]title +#: ../cache/locales.php:169 msgid "Mood" msgstr "" -#: [mood]im +#: ../cache/locales.php:170 msgid "I'm " msgstr "" -#: [listen]title +#: ../cache/locales.php:171 msgid "Listening" msgstr "" -#: [last]title +#: ../cache/locales.php:173 msgid "Last seen" msgstr "" -#: [client]title +#: ../cache/locales.php:174 msgid "Client Informations" msgstr "" -#: [explore]last_registered +#: ../cache/locales.php:175 msgid "Last registered" msgstr "" -#: [explore]explore +#: ../cache/locales.php:176 msgid "Find some new friends" msgstr "" -#: [edit]title [button]edit +#: ../cache/locales.php:177 ../cache/locales.php:533 msgid "Edit" msgstr "" -#: [edit]alias +#: ../cache/locales.php:178 msgid "Alias" msgstr "Kromnomo" -#: [edit]group +#: ../cache/locales.php:179 msgid "Group" msgstr "" -#: [edit]updated [roster]updated +#: ../cache/locales.php:180 ../cache/locales.php:400 msgid "Contact updated" msgstr "" -#: [delete]title +#: ../cache/locales.php:181 msgid "Are you sure?" msgstr "" -#: [delete]text -msgid "You are going to delete one of your contacts, please confirm your action" +#: ../cache/locales.php:182 +msgid "" +"You are going to delete one of your contacts, please confirm your action" msgstr "" -#: [age]years +#: ../cache/locales.php:183 +#, php-format msgid "%s years" msgstr "" -#: [blog]last +#: ../cache/locales.php:184 msgid "Last public post" msgstr "" -#: [subscription]to -#, fuzzy -msgid "You can see this contact status" -msgstr "Forigi tiun kontakton" - -#: [subscription]to_button -msgid "Share my status" -msgstr "" - -#: [subscription]to_text -msgid "But this contact cannot see yours" -msgstr "" - -#: [subscription]from -msgid "You are not subscribed to this contact" -msgstr "" - -#: [subscription]from_button -msgid "Ask to subscribe" -msgstr "" - -#: [subscription]from_text -msgid "But this contact can still see if you are online" -msgstr "" - -#: [subscription]nil -msgid "No subscriptions" -msgstr "" - -#: [subscription]nil_button -msgid "Invite" -msgstr "" - -#: [subscription]nil_text -msgid "This contact is in your contact list but there is no subscriptions between the two accounts" -msgstr "" - -#: [group]subscribe +#: ../cache/locales.php:185 msgid "Subscribe" msgstr "" -#: [group]subscribed +#: ../cache/locales.php:186 msgid "Subscribed" msgstr "" -#: [group]unsubscribe +#: ../cache/locales.php:187 msgid "Unsubscribe" msgstr "" -#: [group]unsubscribe_text +#: ../cache/locales.php:188 msgid "You are going to unsubscribe from this Group" msgstr "" -#: [group]unsubscribed +#: ../cache/locales.php:189 msgid "Unsubscribed" msgstr "" -#: [group]share_label +#: ../cache/locales.php:190 msgid "Make your membership to this group public to your friends" msgstr "" -#: [group]label_label +#: ../cache/locales.php:191 msgid "Give a label for this group" msgstr "" -#: [group]sure +#: ../cache/locales.php:192 msgid "Are you sure ?" msgstr "" -#: [group]empty_text +#: ../cache/locales.php:194 msgid "Discover, follow and share" msgstr "" -#: [group]empty +#: ../cache/locales.php:195 msgid "Something bad happened to this group" msgstr "" -#: [group]config_saved +#: ../cache/locales.php:196 msgid "Group configuration saved" msgstr "" -#: [group]delete_title +#: ../cache/locales.php:197 msgid "Delete the group" msgstr "" -#: [group]delete_text -msgid "You are going to delete the following group. Please confirm your action." +#: ../cache/locales.php:198 +msgid "" +"You are going to delete the following group. Please confirm your action." msgstr "" -#: [group]delete_clean_text -msgid "It seems that this group doesn't exists anymore. Do you want to remove it from your subscriptions?" +#: ../cache/locales.php:199 +msgid "" +"It seems that this group doesn't exists anymore. Do you want to remove it " +"from your subscriptions?" msgstr "" -#: [group]counter -msgid "%s groups on this server" -msgstr "" - -#: [group]subscriptions [statistics]subscriptions +#: ../cache/locales.php:201 ../cache/locales.php:408 msgid "Subscriptions" msgstr "" -#: [group]servers -msgid "Groups servers" -msgstr "" - -#: [group]search_server -msgid "Search for a new server" -msgstr "" - -#: [group]help_info1 -msgid "Groups are the perfect way to share posts about topics that you like with all the other Movim's users." -msgstr "" - -#: [group]help_info2 -msgid "Choose a server and a Group and subscribe to it using the %s button in the header. You can also create a new one using the %s button." -msgstr "" - -#: [group]help_info3 -msgid "Done? You can now publish a new post in the Group by using the %s button." -msgstr "" - -#: [group]help_info4 -msgid "You will find a list of all your subscribed Groups in My Subscriptions and receive instantly all the new incoming posts in the %sNews%s page." -msgstr "" - -#: [groups]empty_title +#: ../cache/locales.php:202 ../cache/locales.php:290 msgid "Hello" msgstr "" -#: [groups]contact_post [hello]contact_post [menu]contact_post +#: ../cache/locales.php:203 ../cache/locales.php:225 ../cache/locales.php:291 msgid "Contact post" msgstr "" -#: [groups]empty_text1 -msgid "You don't have any subscriptions yet, select a group server above to start exploring." +#: ../cache/locales.php:204 +msgid "" +"You don't have any subscriptions yet, select a group server above to start " +"exploring." msgstr "" -#: [groups]empty_text2 +#: ../cache/locales.php:205 msgid "Subscribe to your favorite feeds by bookmarking them." msgstr "" -#: [groups]subscriptions +#: ../cache/locales.php:206 msgid "My Subscriptions" msgstr "" -#: [groups]add +#: ../cache/locales.php:207 msgid "Create a new Group" msgstr "" -#: [groups]name +#: ../cache/locales.php:208 msgid "Group name" msgstr "" -#: [groups]name_example +#: ../cache/locales.php:209 msgid "My Little Pony - Fan Club" msgstr "" -#: [groups]created +#: ../cache/locales.php:210 msgid "Group created successfully" msgstr "" -#: [groups]deleted +#: ../cache/locales.php:211 msgid "Group deleted successfully" msgstr "" -#: [groups]name_error +#: ../cache/locales.php:212 msgid "Please provide a valid group name (4 characters minimum)" msgstr "" -#: [groups]no_creation +#: ../cache/locales.php:213 msgid "You cannot create a new Group on this server" msgstr "" -#: [groups]sub +#: ../cache/locales.php:214 +#, php-format msgid "%s subscribers" msgstr "" -#: [groups]num +#: ../cache/locales.php:215 +#, php-format msgid "%s posts" msgstr "" -#: [groups]disco_error -msgid "This server doesn't exists" -msgstr "" - -#: [menu]all +#: ../cache/locales.php:216 msgid "All" msgstr "" -#: [menu]refresh +#: ../cache/locales.php:219 msgid "Refresh all the streams" msgstr "" -#: [roster]search -msgid "Search in your contacts" -msgstr "" - -#: [hello]active_contacts -msgid "Active contacts" -msgstr "" - -#: [hello]chat -msgid "Go on the Chat page" -msgstr "" - -#: [hello]news [page]news -msgid "News" -msgstr "" - -#: [hello]news_page -msgid "Read all theses articles on the News page" -msgstr "" - -#: [hello]blog_title -msgid "Visit your public blog" -msgstr "" - -#: [hello]blog_text -msgid "See your public posts and share them with all your contacts" -msgstr "" - -#: [hello]share_title -msgid "Universal share button" -msgstr "" - -#: [hello]share_text -msgid "Bookmark or drag and drop the following button in your toolbar and use it on all the pages you want to share on Movim" -msgstr "" - -#: [hello]share_button -msgid "Share on Movim" -msgstr "" - -#: [help]faq -msgid "Frequently Asked Questions" -msgstr "" - -#: [banner]title -msgid "What do the little banners refer to ?" -msgstr "" - -#: [banner]info1 -msgid "Thanks to these five little banners, you can quickly identitfy the level of confdentiality applied to the information you provide." -msgstr "" - -#: [banner]white -msgid "White, only you can see the information" -msgstr "" - -#: [banner]green -msgid "Green, you have chosen some contacts who can see your information" -msgstr "" - -#: [banner]orange -msgid "Orange, all your contact list can see your information" -msgstr "" - -#: [banner]red -msgid "Red, everybody in the XMPP network can see your information" -msgstr "" - -#: [banner]black -msgid "Black, the whole Internet can see your information" -msgstr "" - -#: [wiki]question -msgid "Looking for some documentation ?" -msgstr "" - -#: [wiki]button -msgid "Read the Wiki" -msgstr "" - -#: [ml]question -msgid "Talk with us by email ?" -msgstr "" - -#: [ml]button -msgid "Join the Mailing List" -msgstr "" - -#: [chatroom]question -msgid "Chat with the team ?" -msgstr "" - -#: [chatroom]button -msgid "Join the Chatroom" -msgstr "" - -#: [init]location -msgid "Location node created" -msgstr "" - -#: [init]bookmark -msgid "Bookmark node created" -msgstr "" - -#: [init]vcard4 -msgid "Profile node created" -msgstr "" - -#: [init]avatar -msgid "Avatar node created" -msgstr "" - -#: [init]subscriptions -msgid "Subscriptions node created" -msgstr "" - -#: [init]microblog -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 "" - -#: [error]jid -msgid "Invalid JID" -msgstr "" - -#: [error]empty_challenge -msgid "Empty Challenge from the server" -msgstr "" - -#: [error]dns -msgid "XMPP Domain error, your account is not a correct Jabber ID" -msgstr "" - -#: [error]data_missings -msgid "Some data are missing !" -msgstr "" - -#: [error]wrong_password -msgid "Wrong password" -msgstr "Malkorekta pasvorto" - -#: [error]internal -msgid "Internal server error" -msgstr "" - -#: [error]session -msgid "Session error" -msgstr "" - -#: [error]account_created -msgid "Account successfully created" -msgstr "" - -#: [error]xmpp_unauthorized -msgctxt "[error]xmpp_unauthorized" -msgid "Your XMPP server is unauthorized" -msgstr "" - -#: [error]mec_error -msgid "The server takes too much time to respond" -msgstr "" - -#: [error]too_old -msgid "Your web browser is too old to use with Movim." -msgstr "" - -#: [error]websocket -msgid "Movim cannot talk with the server, please try again later (Websocket connection error)" -msgstr "" - -#: [error]impossible -msgid "Impossible login" -msgstr "" - -#: [error]title -msgid "Oops!" -msgstr "" - -#: [error]default [visio]unknown_error -msgid "Unknown error" -msgstr "" - -#: [error]login_format -msgid "Invalid username format" -msgstr "" - -#: [error]password_format -msgid "Invalid password format" -msgstr "" - -#: [error]unauthorized -msgctxt "[error]unauthorized" -msgid "Your XMPP server is unauthorized" -msgstr "" - -#: [error]conflict -msgid "A Movim session is already open on an other device" -msgstr "" - -#: [error]wrong_account -msgid "Movim failed to authenticate. You entered wrong data" -msgstr "" - -#: [error]mechanism -msgid "Authentication mechanism not supported by Movim" -msgstr "" - -#: [error]fail_auth -msgid "The XMPP authentification failed" -msgstr "" - -#: [account]title [accounts]accounts_title -msgid "Accounts" -msgstr "" - -#: [form]username -msgid "My address" -msgstr "Mia adreso" - -#: [form]create_one -msgid "Create one !" -msgstr "" - -#: [form]another_account -msgid "Another account" -msgstr "" - -#: [form]no_account -msgid "No account yet ?" -msgstr "" - -#: [form]whitelist.info -msgid "You can login with accounts from theses servers" -msgstr "" - -#: [form]connected -msgid "Connected" -msgstr "" - -#: [form]population -msgid "Population" -msgstr "" - -#: [menu]empty_title -msgid "No news yet..." -msgstr "" - -#: [menu]empty -msgid "Welcome on your news feed, here you will see all the posts published by your contacts and in the groups you have subscribed." -msgstr "" - -#: [menu]refresh -msgid "Refreshing all the streams" -msgstr "" - -#: [menu]public -msgid "This post is public" -msgstr "" - -#: [affiliations]title -msgid "Manage your members" -msgstr "" - -#: [affiliations]get -msgid "Get the members" -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 "" - -#: [notifs]title -msgid "Pending Invitations" -msgstr "" - -#: [notifs]wants_to_talk -msgid "%s wants to talk with you" -msgstr "" - -#: [notifs]manage -msgid "Manage" -msgstr "" - -#: [post]news_feed -msgid "News Feed" -msgstr "" - -#: [post]placeholder -msgid "Discover and register to the groups you are interested in" -msgstr "" - -#: [post]preview [page]preview -msgid "Preview" -msgstr "" - -#: [post]help [page]help -msgid "Help" -msgstr "Helpo" - -#: [post]help_more -msgid "More help" -msgstr "" - -#: [post]help_manual -msgid "Markdown syntax manual" -msgstr "" - -#: [post]title -msgid "Title" -msgstr "" - -#: [post]content -msgid "Content" -msgstr "" - -#: [post]link -msgid "Link" -msgstr "" - -#: [post]tags -msgid "Tags" -msgstr "" - -#: [post]valid_url [publish]valid_url -msgid "Please enter a valid url" -msgstr "" - -#: [post]no_content_preview [publish]no_content_preview -msgid "No content to preview" -msgstr "" - -#: [post]no_content [publish]no_content [post]empty -msgid "No content" -msgstr "" - -#: [post]published -msgid "Post published" -msgstr "" - -#: [post]deleted -msgid "Post deleted" -msgstr "" - -#: [post]gallery -msgid "This picture will be added to your gallery" -msgstr "" - -#: [post]hot -msgid "What's Hot" -msgstr "" - -#: [post]hot_text -msgid "Posts recently published in Groups that you are not subscribed (yet)" -msgstr "" - -#: [post]new [publish]new -msgid "New post" -msgstr "" - -#: [post]embed_tip -msgid "You can also use services like Imgur or Flickr to host your picture and paste the link here." -msgstr "" - -#: [post]repost -msgid "This is a re-post from %s" -msgstr "" - -#: [post]repost_profile -msgid "See %s profile" -msgstr "" - -#: [post]public -msgid "Publish this post publicly?" -msgstr "" - -#: [post]blog_add -msgid "Post published on your blog" -msgstr "" - -#: [post]blog_remove -msgid "Post removed from your blog" -msgstr "" - -#: [post]delete_title [post]delete -msgid "Delete this post" -msgstr "" - -#: [post]delete_text -msgid "You are going to delete this post, please confirm your action" -msgstr "" - -#: [post]comments_disabled -msgid "Comments disabled" -msgstr "" - -#: [post]comment_published -msgid "Comment published" -msgstr "" - -#: [status]disconnect -msgid "Disconnect" -msgstr "" - -#: [status]here -msgid "Your status here !" -msgstr "" - -#: [status]updated -msgid "Status updated" -msgstr "" - -#: [status]status -msgid "Status" -msgstr "" - -#: [status]presence -msgid "Presence" -msgstr "" - -#: [status]online -msgid "Online with Movim" -msgstr "" - -#: [publish]title -msgid "Publish" -msgstr "" - -#: [publish]attach -msgid "Add a file or a picture to your post" -msgstr "" - -#: [publish]no_publication -msgid "You cannot publish a post on this Group" -msgstr "" - -#: [publish]form_filled -msgid "Some fields have been filled in. Do you still want to go back and loose their content?" -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 "" - -#: [rooms]empty_text1 -msgid "You don't have any chatroom yet." -msgstr "" - -#: [rooms]empty_text2 -msgid "Add one by clicking on the add button in the header." -msgstr "" - -#: [chatrooms]title -msgid "Chatrooms" -msgstr "" - -#: [chatrooms]name_placeholder -msgid "My Favorite Room" -msgstr "" - -#: [chatrooms]users -msgid "Users in the room" -msgstr "" - -#: [chatrooms]bad_nickname -msgid "Please enter a correct nickname (2 to 40 characters)" -msgstr "" - -#: [room]anonymous_title -msgid "Public chatroom" -msgstr "" - -#: [room]no_room -msgid "Please provide a room address" -msgstr "" - -#: [room]anonymous_text1 -msgid "You are currently logued as an anonymous user." -msgstr "" - -#: [room]anonymous_text2 -msgid "You can join using your own account or create one on the login page by loging out using the cross in the top-right corner." -msgstr "" - -#: [room]anonymous_login -msgid "Login on %s" -msgstr "" - -#: [room]nick -msgid "Your nickname" -msgstr "" - -#: [roster]ungrouped -msgid "Ungrouped" -msgstr "" - -#: [roster]show_disconnected -msgid "Show disconnected contacts" -msgstr "" - -#: [roster]hide_disconnected -msgid "Hide disconnected contacts" -msgstr "" - -#: [roster]show_group -msgid "Show group %s" -msgstr "" - -#: [roster]hide_group -msgid "Hide group %s" -msgstr "" - -#: [roster]jid_error -msgid "Please enter a valid Jabber ID" -msgstr "" - -#: [roster]no_contacts_title -msgid "No contacts ?" -msgstr "" - -#: [roster]no_contacts_text -msgid "You can add one using the + button bellow" -msgstr "" - -#: [roster]show_hide -msgid "Show/Hide" -msgstr "" - -#: [roster]add_contact_info1 -msgid "Enter the Jabber ID of your contact." -msgstr "" - -#: [roster]add_contact_info2 -msgid "Press enter to validate." -msgstr "" - -#: [roster]jid -msgid "JID" -msgstr "" - -#: [roster]results -msgid "Results" -msgstr "" - -#: [roster]added -msgid "Contact added" -msgstr "" - -#: [roster]deleted -msgid "Contact deleted" -msgstr "" - -#: [roster]search +#: ../cache/locales.php:220 ../cache/locales.php:402 msgid "Search" msgstr "" -#: [share]error +#: ../cache/locales.php:221 +msgid "Go on the Chat page" +msgstr "" + +#: ../cache/locales.php:222 +msgid "Read all theses articles on the News page" +msgstr "" + +#: ../cache/locales.php:223 +msgid "Visit your public blog" +msgstr "" + +#: ../cache/locales.php:224 +msgid "See your public posts and share them with all your contacts" +msgstr "" + +#: ../cache/locales.php:226 +msgid "Universal share button" +msgstr "" + +#: ../cache/locales.php:227 +msgid "" +"Bookmark or drag and drop the following button in your toolbar and use it on " +"all the pages you want to share on Movim" +msgstr "" + +#: ../cache/locales.php:228 +msgid "Share on Movim" +msgstr "" + +#: ../cache/locales.php:229 +msgid "Frequently Asked Questions" +msgstr "" + +#: ../cache/locales.php:230 +msgid "What do the little banners refer to ?" +msgstr "" + +#: ../cache/locales.php:231 +msgid "" +"Thanks to these five little banners, you can quickly identitfy the level of " +"confdentiality applied to the information you provide." +msgstr "" + +#: ../cache/locales.php:232 +msgid "White, only you can see the information" +msgstr "" + +#: ../cache/locales.php:233 +msgid "Green, you have chosen some contacts who can see your information" +msgstr "" + +#: ../cache/locales.php:234 +msgid "Orange, all your contact list can see your information" +msgstr "" + +#: ../cache/locales.php:235 +msgid "Red, everybody in the XMPP network can see your information" +msgstr "" + +#: ../cache/locales.php:236 +msgid "Black, the whole Internet can see your information" +msgstr "" + +#: ../cache/locales.php:237 +msgid "Looking for some documentation ?" +msgstr "" + +#: ../cache/locales.php:238 +msgid "Read the Wiki" +msgstr "" + +#: ../cache/locales.php:239 +msgid "Talk with us by email ?" +msgstr "" + +#: ../cache/locales.php:240 +msgid "Join the Mailing List" +msgstr "" + +#: ../cache/locales.php:241 +msgid "Chat with the team ?" +msgstr "" + +#: ../cache/locales.php:242 +msgid "Join the Chatroom" +msgstr "" + +#: ../cache/locales.php:243 +msgid "Location node created" +msgstr "" + +#: ../cache/locales.php:244 +msgid "Bookmark node created" +msgstr "" + +#: ../cache/locales.php:245 +msgid "Profile node created" +msgstr "" + +#: ../cache/locales.php:246 +msgid "Avatar node created" +msgstr "" + +#: ../cache/locales.php:247 +msgid "Subscriptions node created" +msgstr "" + +#: ../cache/locales.php:248 +msgid "Microblog node created" +msgstr "" + +#: ../cache/locales.php:249 +msgid "Location" +msgstr "" + +#: ../cache/locales.php:250 +msgid "Wrong position" +msgstr "" + +#: ../cache/locales.php:251 +msgid "Location updated" +msgstr "" + +#: ../cache/locales.php:252 +msgid "Update my position" +msgstr "" + +#: ../cache/locales.php:253 +msgid "Wrong username" +msgstr "" + +#: ../cache/locales.php:254 +msgid "Invalid JID" +msgstr "" + +#: ../cache/locales.php:255 +msgid "Empty Challenge from the server" +msgstr "" + +#: ../cache/locales.php:256 +msgid "XMPP Domain error, your account is not a correct Jabber ID" +msgstr "" + +#: ../cache/locales.php:257 +msgid "Some data are missing !" +msgstr "" + +#: ../cache/locales.php:258 +msgid "Wrong password" +msgstr "Malkorekta pasvorto" + +#: ../cache/locales.php:259 +msgid "Internal server error" +msgstr "" + +#: ../cache/locales.php:260 +msgid "Session error" +msgstr "" + +#: ../cache/locales.php:261 +msgid "Account successfully created" +msgstr "" + +#: ../cache/locales.php:262 ../cache/locales.php:271 +msgid "Your XMPP server is unauthorized" +msgstr "" + +#: ../cache/locales.php:263 +msgid "The server takes too much time to respond" +msgstr "" + +#: ../cache/locales.php:264 +msgid "Your web browser is too old to use with Movim." +msgstr "" + +#: ../cache/locales.php:265 +msgid "" +"Movim cannot talk with the server, please try again later (Websocket " +"connection error)" +msgstr "" + +#: ../cache/locales.php:266 +msgid "Impossible login" +msgstr "" + +#: ../cache/locales.php:267 +msgid "Oops!" +msgstr "" + +#: ../cache/locales.php:268 ../cache/locales.php:449 ../cache/locales.php:455 +msgid "Unknown error" +msgstr "" + +#: ../cache/locales.php:269 +msgid "Invalid username format" +msgstr "" + +#: ../cache/locales.php:270 +msgid "Invalid password format" +msgstr "" + +#: ../cache/locales.php:272 +msgid "A Movim session is already open on an other device" +msgstr "" + +#: ../cache/locales.php:273 +msgid "Movim failed to authenticate. You entered wrong data" +msgstr "" + +#: ../cache/locales.php:274 +msgid "Authentication mechanism not supported by Movim" +msgstr "" + +#: ../cache/locales.php:275 +msgid "The XMPP authentification failed" +msgstr "" + +#: ../cache/locales.php:276 +#, php-format +msgid "" +"You can login with Facebook (chat only) using %syour.id@chat.facebook.com%s " +"and your password" +msgstr "" + +#: ../cache/locales.php:277 +#, php-format +msgid "%sGmail accounts are also compatible%s but are not fully supported" +msgstr "" + +#: ../cache/locales.php:278 +msgid "You can login using your favorite Jabber account" +msgstr "" + +#: ../cache/locales.php:279 +msgid "or with our demonstration account" +msgstr "" + +#: ../cache/locales.php:280 ../cache/locales.php:435 +msgid "Accounts" +msgstr "" + +#: ../cache/locales.php:281 +msgid "My address" +msgstr "Mia adreso" + +#: ../cache/locales.php:283 +msgid "Create one !" +msgstr "" + +#: ../cache/locales.php:284 +msgid "No account yet ?" +msgstr "" + +#: ../cache/locales.php:285 +msgid "Another account" +msgstr "" + +#: ../cache/locales.php:286 +msgid "You can login with accounts from theses servers" +msgstr "" + +#: ../cache/locales.php:287 +msgid "Connected" +msgstr "" + +#: ../cache/locales.php:288 +msgid "Population" +msgstr "" + +#: ../cache/locales.php:289 +msgid "Bad nickname (between 4 and 40 characters)" +msgstr "" + +#: ../cache/locales.php:292 +msgid "" +"Welcome on your news feed, here you will see all the posts published in the " +"groups you have subscribed." +msgstr "" + +#: ../cache/locales.php:293 +msgid "Refreshing all the streams" +msgstr "" + +#: ../cache/locales.php:294 +msgid "This post is public" +msgstr "" + +#: ../cache/locales.php:295 +msgid "Manage your members" +msgstr "" + +#: ../cache/locales.php:296 +msgid "Get the members" +msgstr "" + +#: ../cache/locales.php:297 +msgid "Affiliations saved" +msgstr "" + +#: ../cache/locales.php:298 +msgid "Manage your subscriptions" +msgstr "" + +#: ../cache/locales.php:299 +msgid "Manage the subscriptions" +msgstr "" + +#: ../cache/locales.php:300 +msgid "Get the subscriptions" +msgstr "" + +#: ../cache/locales.php:301 +msgid "Subscriptions saved" +msgstr "" + +#: ../cache/locales.php:302 +msgid "Pending Invitations" +msgstr "" + +#: ../cache/locales.php:303 +#, php-format +msgid "%s wants to talk with you" +msgstr "" + +#: ../cache/locales.php:304 +msgid "Manage" +msgstr "" + +#: ../cache/locales.php:305 ../cache/locales.php:338 +msgid "News Feed" +msgstr "" + +#: ../cache/locales.php:306 ../cache/locales.php:339 +msgid "Discover and register to the groups you are interested in" +msgstr "" + +#: ../cache/locales.php:307 ../cache/locales.php:340 ../cache/locales.php:482 +msgid "Preview" +msgstr "" + +#: ../cache/locales.php:308 ../cache/locales.php:341 ../cache/locales.php:478 +msgid "Help" +msgstr "Helpo" + +#: ../cache/locales.php:309 ../cache/locales.php:342 +msgid "More help" +msgstr "" + +#: ../cache/locales.php:310 ../cache/locales.php:343 +msgid "Markdown syntax manual" +msgstr "" + +#: ../cache/locales.php:311 ../cache/locales.php:344 ../cache/locales.php:681 +msgid "Title" +msgstr "" + +#: ../cache/locales.php:312 ../cache/locales.php:345 +msgid "Content" +msgstr "" + +#: ../cache/locales.php:313 ../cache/locales.php:346 +msgid "Link" +msgstr "" + +#: ../cache/locales.php:314 ../cache/locales.php:347 +msgid "Tags" +msgstr "" + +#: ../cache/locales.php:315 ../cache/locales.php:348 +msgid "Please enter a valid url" +msgstr "" + +#: ../cache/locales.php:316 ../cache/locales.php:349 +msgid "No content to preview" +msgstr "" + +#: ../cache/locales.php:317 ../cache/locales.php:350 ../cache/locales.php:687 +msgid "No content" +msgstr "" + +#: ../cache/locales.php:318 ../cache/locales.php:351 +msgid "Post published" +msgstr "" + +#: ../cache/locales.php:319 ../cache/locales.php:352 +msgid "Post deleted" +msgstr "" + +#: ../cache/locales.php:320 ../cache/locales.php:353 +msgid "This picture will be added to your gallery" +msgstr "" + +#: ../cache/locales.php:321 ../cache/locales.php:354 +msgid "What's Hot" +msgstr "" + +#: ../cache/locales.php:322 ../cache/locales.php:355 +msgid "New post" +msgstr "" + +#: ../cache/locales.php:323 ../cache/locales.php:357 +msgid "" +"You can also use services like Imgur or Flickr to host your picture and " +"paste the link here." +msgstr "" + +#: ../cache/locales.php:324 +#, php-format +msgid "This is a re-post from %s" +msgstr "" + +#: ../cache/locales.php:325 +#, php-format +msgid "See %s profile" +msgstr "" + +#: ../cache/locales.php:326 +msgid "Publish this post on your public feed?" +msgstr "" + +#: ../cache/locales.php:327 +msgid "Post published on your blog" +msgstr "" + +#: ../cache/locales.php:328 +msgid "Post removed from your blog" +msgstr "" + +#: ../cache/locales.php:329 ../cache/locales.php:701 +msgid "Delete this post" +msgstr "" + +#: ../cache/locales.php:330 +msgid "You are going to delete this post, please confirm your action" +msgstr "" + +#: ../cache/locales.php:331 +msgid "Comments disabled" +msgstr "" + +#: ../cache/locales.php:332 +msgid "Comment published" +msgstr "" + +#: ../cache/locales.php:333 +msgid "Disconnect" +msgstr "" + +#: ../cache/locales.php:334 +msgid "Your status here !" +msgstr "" + +#: ../cache/locales.php:335 +msgid "Status updated" +msgstr "" + +#: ../cache/locales.php:336 +msgid "Status" +msgstr "" + +#: ../cache/locales.php:337 +msgid "Presence" +msgstr "" + +#: ../cache/locales.php:356 +msgid "Publish" +msgstr "" + +#: ../cache/locales.php:358 +msgid "You cannot publish a post on this Group" +msgstr "" + +#: ../cache/locales.php:359 +msgid "" +"Some fields have been filled in. Do you still want to go back and loose " +"their content?" +msgstr "" + +#: ../cache/locales.php:360 +msgid "Shared" +msgstr "" + +#: ../cache/locales.php:362 +#, php-format +msgid "%s has been added to your public groups" +msgstr "" + +#: ../cache/locales.php:363 +#, php-format +msgid "%s has been removed from your public groups" +msgstr "" + +#: ../cache/locales.php:364 +msgid "Add a chatroom" +msgstr "" + +#: ../cache/locales.php:365 +msgid "You don't have any chatroom yet." +msgstr "" + +#: ../cache/locales.php:366 +msgid "Add one by clicking on the add button in the header." +msgstr "" + +#: ../cache/locales.php:367 +msgid "Chatrooms" +msgstr "" + +#: ../cache/locales.php:370 +msgid "My Favorite Room" +msgstr "" + +#: ../cache/locales.php:374 +msgid "Remove a chatroom" +msgstr "" + +#: ../cache/locales.php:375 +msgid "" +"You are going to remove the following chatroom. Please confirm your action." +msgstr "" + +#: ../cache/locales.php:378 +msgid "Users in the room" +msgstr "" + +#: ../cache/locales.php:379 +msgid "Please enter a correct nickname (6 to 40 characters)" +msgstr "" + +#: ../cache/locales.php:381 +msgid "Public chatroom" +msgstr "" + +#: ../cache/locales.php:382 +msgid "Please provide a room address" +msgstr "" + +#: ../cache/locales.php:383 +msgid "You are currently logued as an anonymous user." +msgstr "" + +#: ../cache/locales.php:384 +msgid "" +"You can join using your own account or create one on the login page by " +"loging out using the cross in the top-right corner." +msgstr "" + +#: ../cache/locales.php:385 +#, php-format +msgid "Login on %s" +msgstr "" + +#: ../cache/locales.php:386 +msgid "Your nickname" +msgstr "" + +#: ../cache/locales.php:387 +msgid "Ungrouped" +msgstr "" + +#: ../cache/locales.php:388 +msgid "Show disconnected contacts" +msgstr "" + +#: ../cache/locales.php:389 +msgid "Hide disconnected contacts" +msgstr "" + +#: ../cache/locales.php:390 +#, php-format +msgid "Show group %s" +msgstr "" + +#: ../cache/locales.php:391 +#, php-format +msgid "Hide group %s" +msgstr "" + +#: ../cache/locales.php:392 +msgid "Please enter a valid Jabber ID" +msgstr "" + +#: ../cache/locales.php:393 +msgid "" +"No contacts ? You can add one using the + button bellow or going to the " +"Explore page" +msgstr "" + +#: ../cache/locales.php:394 +msgid "Show/Hide" +msgstr "" + +#: ../cache/locales.php:395 +msgid "Enter the Jabber ID of your contact." +msgstr "" + +#: ../cache/locales.php:396 +msgid "Press enter to validate." +msgstr "" + +#: ../cache/locales.php:397 +msgid "JID" +msgstr "" + +#: ../cache/locales.php:398 +msgid "Results" +msgstr "" + +#: ../cache/locales.php:399 +msgid "Contact added" +msgstr "" + +#: ../cache/locales.php:401 +msgid "Contact deleted" +msgstr "" + +#: ../cache/locales.php:403 msgid "This is not a valid url" msgstr "" -#: [share]success +#: ../cache/locales.php:404 msgid "Sharing the URL" msgstr "" -#: [statistics]title +#: ../cache/locales.php:405 msgid "Statistics" msgstr "" -#: [statistics]since +#: ../cache/locales.php:406 msgid "Since" msgstr "" -#: [statistics]sessions +#: ../cache/locales.php:407 msgid "Sessions" msgstr "" -#: [statistics]monthly_sub +#: ../cache/locales.php:409 msgid "Monthly Subscriptions" msgstr "" -#: [statistics]monthly_sub_cum +#: ../cache/locales.php:410 msgid "Monthly Subscriptions Cumulated" msgstr "" -#: [subscribe]info -msgid "Movim is a decentralized social network, before creating a new account you need to choose a server to register." +#: ../cache/locales.php:412 +msgid "" +"Movim is a decentralized social network, before creating a new account you " +"need to choose a server to register." msgstr "" -#: [subscribe]server_question +#: ../cache/locales.php:413 msgid "Your server here ?" msgstr "" -#: [subscribe]server_contact +#: ../cache/locales.php:414 msgid "Contact us to add yours to the officially supported servers list" msgstr "" -#: [feed]nope +#: ../cache/locales.php:416 msgid "No public feed for this contact" msgstr "" -#: [feed]nope_contact +#: ../cache/locales.php:417 msgid "No contact specified" msgstr "" -#: [upload]title -msgid "Upload a file" -msgstr "" - -#: [upload]choose -msgid "Choose a file to upload" -msgstr "" - -#: [vcard]title [page]profile +#: ../cache/locales.php:418 ../cache/locales.php:473 msgid "Profile" msgstr "Profilo" -#: [vcard]updated +#: ../cache/locales.php:419 msgid "Profile Updated" msgstr "" -#: [vcard]not_updated +#: ../cache/locales.php:420 msgid "Profile Not Updated" msgstr "" -#: [vcard]public +#: ../cache/locales.php:421 msgid "Your profile is now public" msgstr "" -#: [vcard]restricted +#: ../cache/locales.php:422 msgid "Your profile is now restricted" msgstr "" -#: [general]nickname -#, fuzzy -msgctxt "[general]nickname" -msgid "Nickname" -msgstr "Kromnomo" - -#: [accounts]twitter +#: ../cache/locales.php:436 msgid "Twitter" msgstr "" -#: [accounts]skype +#: ../cache/locales.php:437 msgid "Skype" msgstr "" -#: [accounts]yahoo +#: ../cache/locales.php:438 msgid "Yahoo" msgstr "" -#: [accounts]accounts_nickname -#, fuzzy -msgctxt "[accounts]accounts_nickname" -msgid "Nickname" -msgstr "Kromnomo" - -#: [accounts]accounts_yahoo -msgid "Yahoo Account" -msgstr "" - -#: [privacy]privacy_title +#: ../cache/locales.php:439 msgid "Privacy Level" msgstr "" -#: [privacy]privacy_question +#: ../cache/locales.php:440 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." +#: ../cache/locales.php:441 +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." msgstr "" -#: [save]submit [button]submit -msgid "Submit" -msgstr "Sendi" - -#: [save]reset [button]reset -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 +#: ../cache/locales.php:442 msgid "Call" msgstr "" -#: [visio]hang_up +#: ../cache/locales.php:443 msgid "Hang up" msgstr "" -#: [visio]connection +#: ../cache/locales.php:444 msgid "Connection" msgstr "" -#: [global]no_js +#: ../cache/locales.php:445 ../cache/locales.php:451 +msgid "Hung up" +msgstr "" + +#: ../cache/locales.php:446 ../cache/locales.php:452 +msgid "Your contact is busy" +msgstr "" + +#: ../cache/locales.php:447 ../cache/locales.php:453 +msgid "Declined" +msgstr "" + +#: ../cache/locales.php:448 ../cache/locales.php:454 +msgid "Remote application incompatible" +msgstr "" + +#: ../cache/locales.php:450 ../cache/locales.php:456 +msgid "Is calling you" +msgstr "" + +#: ../cache/locales.php:457 msgid "You don't have javascript enabled. Good luck with that." msgstr "" -#: [global]description -msgid "Movim is a kickass distributed social networking platform that protect your privacy an comes with a set of awesome features." +#: ../cache/locales.php:458 +msgid "" +"Movim is a kickass distributed social networking platform that protect your " +"privacy an comes with a set of awesome features." msgstr "" -#: [page]administration +#: ../cache/locales.php:459 msgid "Administration" msgstr "" -#: [page]home +#: ../cache/locales.php:460 msgid "Home" msgstr "Ĉefpaĝo" -#: [page]discover +#: ../cache/locales.php:461 msgid "Discover" msgstr "" -#: [page]explore +#: ../cache/locales.php:462 msgid "Explore" msgstr "" -#: [page]account_creation +#: ../cache/locales.php:463 msgid "Account Creation" msgstr "Kreado de konto" -#: [page]avatar +#: ../cache/locales.php:464 +msgid "News" +msgstr "" + +#: ../cache/locales.php:465 msgid "Avatar" msgstr "Avataro" -#: [page]chats +#: ../cache/locales.php:467 msgid "Chats" msgstr "" -#: [page]server +#: ../cache/locales.php:470 msgid "Server" msgstr "" -#: [page]public_groups +#: ../cache/locales.php:471 msgid "Public Groups" msgstr "" -#: [page]viewer +#: ../cache/locales.php:472 msgid "Viewer" msgstr "" -#: [page]media +#: ../cache/locales.php:474 msgid "Media" msgstr "" -#: [page]blog +#: ../cache/locales.php:475 msgid "Blog" msgstr "" -#: [page]about +#: ../cache/locales.php:476 msgid "About" msgstr "" -#: [page]login +#: ../cache/locales.php:477 msgid "Login" msgstr "" -#: [page]feed +#: ../cache/locales.php:479 msgid "Feed" msgstr "Fluo" -#: [page]gallery +#: ../cache/locales.php:481 msgid "Gallery" msgstr "" -#: [page]visio +#: ../cache/locales.php:483 msgid "Visio-conference" msgstr "" -#: [page]pods +#: ../cache/locales.php:484 msgid "Pods" msgstr "" -#: [page]share +#: ../cache/locales.php:485 msgid "Share" msgstr "" -#: [page]room +#: ../cache/locales.php:486 msgid "Room" msgstr "" -#: [error]error +#: ../cache/locales.php:487 +#, php-format msgid "Error: %s" msgstr "Eraro: %s" -#: [error]cannot_load_file +#: ../cache/locales.php:488 +#, php-format msgid "Cannot load file '%s'" msgstr "Ne povas ŝargi dosieron “%s”." -#: [error]route +#: ../cache/locales.php:489 +#, php-format msgid "Route error, please set all the parameters for the page %s" msgstr "" -#: [error]widget_load_error +#: ../cache/locales.php:490 +#, php-format msgid "Requested widget '%s' doesn't exist." msgstr "" -#: [error]widget_call_error +#: ../cache/locales.php:491 +#, php-format msgid "Requested event '%s' not registered." msgstr "" -#: [error]whoops +#: ../cache/locales.php:492 msgid "Whoops!" msgstr "" -#: [error]media_not_found +#: ../cache/locales.php:493 msgid "It seem that you don't have any pictures here?" msgstr "" -#: [error]media_ask_upload +#: ../cache/locales.php:494 msgid "You can try to upload a couple by going to the Media page" msgstr "" -#: [title]about +#: ../cache/locales.php:495 +#, php-format msgid "%s - About" msgstr "" -#: [title]account +#: ../cache/locales.php:496 +#, php-format msgid "%s - Account" msgstr "" -#: [title]administration +#: ../cache/locales.php:497 +#, php-format msgid "%s - Administration Panel" msgstr "" -#: [title]blog +#: ../cache/locales.php:498 +#, php-format msgid "%s - Blog" msgstr "" -#: [title]configuration +#: ../cache/locales.php:499 +#, php-format msgid "%s - Configuration" msgstr "%s - Agordaĵoj" -#: [title]discover +#: ../cache/locales.php:500 +#, php-format msgid "%s - Discover" msgstr "" -#: [title]explore +#: ../cache/locales.php:501 +#, php-format msgid "%s - Explore" msgstr "" -#: [title]help +#: ../cache/locales.php:502 +#, php-format msgid "%s - Help Page" msgstr "%s - Helppaĝo" -#: [title]login +#: ../cache/locales.php:503 +#, php-format msgid "%s - Login to Movim" msgstr "%s - Ensaluti al Movim" -#: [title]main +#: ../cache/locales.php:504 +#, php-format msgid "%s - Welcome to Movim" msgstr "%s - Bonvenon al Movim" -#: [title]media +#: ../cache/locales.php:505 +#, php-format msgid "%s - Media" msgstr "" -#: [title]news +#: ../cache/locales.php:506 +#, php-format msgid "%s - News" msgstr "" -#: [title]node_configuration +#: ../cache/locales.php:507 +#, php-format msgid "%s - Group Configuration" msgstr "" -#: [title]node +#: ../cache/locales.php:508 +#, php-format msgid "%s - Group" msgstr "" -#: [title]not_found +#: ../cache/locales.php:509 +#, php-format msgid "%s - 404" msgstr "" -#: [title]profile +#: ../cache/locales.php:510 +#, php-format msgid "%s - Profile" msgstr "%s - Profilo" -#: [title]server +#: ../cache/locales.php:511 +#, php-format msgid "%s - Server" msgstr "" -#: [button]validate +#: ../cache/locales.php:512 msgid "Validate" msgstr "" -#: [button]refresh +#: ../cache/locales.php:513 msgid "Refresh" msgstr "" -#: [button]add +#: ../cache/locales.php:514 msgid "Add" msgstr "Aldoni" -#: [button]delete +#: ../cache/locales.php:515 msgid "Delete" msgstr "" -#: [button]cancel +#: ../cache/locales.php:516 +msgid "Remove" +msgstr "" + +#: ../cache/locales.php:517 msgid "Cancel" msgstr "" -#: [button]close +#: ../cache/locales.php:518 msgid "Close" msgstr "" -#: [button]update +#: ../cache/locales.php:519 msgid "Update" msgstr "" -#: [button]updating +#: ../cache/locales.php:520 msgid "Updating" msgstr "" -#: [button]submitting +#: ../cache/locales.php:521 +msgid "Submit" +msgstr "Sendi" + +#: ../cache/locales.php:522 msgid "Submitting" msgstr "" -#: [button]register +#: ../cache/locales.php:523 +msgid "Reset" +msgstr "Nuligi" + +#: ../cache/locales.php:524 msgid "Register" msgstr "" -#: [button]unregister +#: ../cache/locales.php:525 msgid "Unregister" msgstr "" -#: [button]save +#: ../cache/locales.php:526 msgid "Save" msgstr "" -#: [button]clear +#: ../cache/locales.php:527 msgid "Clear" msgstr "" -#: [button]upload +#: ../cache/locales.php:528 msgid "Upload" msgstr "" -#: [button]come_in +#: ../cache/locales.php:529 msgid "Come in!" msgstr "Envenu!" -#: [button]connecting +#: ../cache/locales.php:530 msgid "Connecting" msgstr "" -#: [button]bool_yes +#: ../cache/locales.php:531 msgid "Yes" msgstr "" -#: [button]bool_no +#: ../cache/locales.php:532 msgid "No" msgstr "" -#: [button]return +#: ../cache/locales.php:534 msgid "Return" msgstr "" -#: [button]accept +#: ../cache/locales.php:535 msgid "Accept" msgstr "Akcepti" -#: [button]refuse +#: ../cache/locales.php:536 msgid "Refuse" msgstr "" -#: [button]next +#: ../cache/locales.php:537 msgid "Next" msgstr "" -#: [button]previous +#: ../cache/locales.php:538 msgid "Previous" msgstr "" -#: [step]step +#: ../cache/locales.php:539 +#, php-format msgid "Step %s" msgstr "" -#: [day]title +#: ../cache/locales.php:542 msgid "Day" msgstr "" -#: [day]monday +#: ../cache/locales.php:543 msgid "Monday" msgstr "Lundo" -#: [day]tuesday +#: ../cache/locales.php:544 msgid "Tuesday" msgstr "Mardo" -#: [day]wednesday +#: ../cache/locales.php:545 msgid "Wednesday" msgstr "Merkredo" -#: [day]thursday +#: ../cache/locales.php:546 msgid "Thursday" msgstr "Ĵaŭdo" -#: [day]friday +#: ../cache/locales.php:547 msgid "Friday" msgstr "Vendredo" -#: [day]saturday +#: ../cache/locales.php:548 msgid "Saturday" msgstr "Sabato" -#: [day]sunday +#: ../cache/locales.php:549 msgid "Sunday" msgstr "" -#: [gender]nil -#, fuzzy -msgctxt "[gender]nil" +#: ../cache/locales.php:550 ../cache/locales.php:559 msgid "None" msgstr "Neniu" -#: [gender]male +#: ../cache/locales.php:551 msgid "Male" msgstr "Malina" -#: [gender]female +#: ../cache/locales.php:552 msgid "Female" msgstr "Ina" -#: [gender]other +#: ../cache/locales.php:553 msgid "Other" msgstr "Alia" -#: [client]bot +#: ../cache/locales.php:554 msgid "Bot" msgstr "" -#: [client]desktop +#: ../cache/locales.php:555 msgid "Desktop" msgstr "" -#: [client]phone +#: ../cache/locales.php:556 msgid "Phone" msgstr "" -#: [client]web +#: ../cache/locales.php:557 msgid "Web" msgstr "" -#: [client]registered +#: ../cache/locales.php:558 msgid "Registered" msgstr "" -#: [marital]nil -#, fuzzy -msgctxt "[marital]nil" -msgid "None" -msgstr "Neniu" - -#: [marital]single +#: ../cache/locales.php:560 msgid "Single" msgstr "Unuope" -#: [marital]relationship +#: ../cache/locales.php:561 msgid "In a relationship" msgstr "" -#: [marital]married +#: ../cache/locales.php:562 msgid "Married" msgstr "Edz(in)iĝinta" -#: [marital]divorced +#: ../cache/locales.php:563 msgid "Divorced" msgstr "" -#: [marital]widowed +#: ../cache/locales.php:564 msgid "Widowed" msgstr "" -#: [marital]cohabiting +#: ../cache/locales.php:565 msgid "Cohabiting" msgstr "" -#: [marital]union +#: ../cache/locales.php:566 msgid "Civil Union" msgstr "" -#: [flag]white +#: ../cache/locales.php:567 msgid "Not shared" msgstr "" -#: [flag]green +#: ../cache/locales.php:568 msgid "Shared with one contact" msgstr "" -#: [flag]orange +#: ../cache/locales.php:569 msgid "Shared with all contacts" msgstr "" -#: [flag]red +#: ../cache/locales.php:570 msgid "Shared with the XMPP network" msgstr "" -#: [flag]black +#: ../cache/locales.php:571 msgid "Shared with the whole Internet" msgstr "" -#: [presence]online +#: ../cache/locales.php:572 msgid "Online" msgstr "Enrete" -#: [presence]away +#: ../cache/locales.php:573 msgid "Away" msgstr "For" -#: [presence]dnd +#: ../cache/locales.php:574 msgid "Do Not Disturb" msgstr "Ne ĝenu" -#: [presence]xa +#: ../cache/locales.php:575 msgid "Extended Away" msgstr "" -#: [presence]offline +#: ../cache/locales.php:576 msgid "Offline" msgstr "" -#: [presence]error +#: ../cache/locales.php:577 msgid "Error" msgstr "" -#: [mood]afraid +#: ../cache/locales.php:578 msgid "afraid" msgstr "" -#: [mood]amazed +#: ../cache/locales.php:579 msgid "amazed" msgstr "" -#: [mood]amorous +#: ../cache/locales.php:580 msgid "amorous" msgstr "" -#: [mood]angry +#: ../cache/locales.php:581 msgid "angry" msgstr "" -#: [mood]annoyed +#: ../cache/locales.php:582 msgid "annoyed" msgstr "" -#: [mood]anxious +#: ../cache/locales.php:583 msgid "anxious" msgstr "" -#: [mood]aroused +#: ../cache/locales.php:584 msgid "aroused" msgstr "" -#: [mood]ashamed +#: ../cache/locales.php:585 msgid "ashamed" msgstr "" -#: [mood]bored +#: ../cache/locales.php:586 msgid "bored" msgstr "" -#: [mood]brave +#: ../cache/locales.php:587 msgid "brave" msgstr "" -#: [mood]calm +#: ../cache/locales.php:588 msgid "calm" msgstr "" -#: [mood]cautious +#: ../cache/locales.php:589 msgid "cautious" msgstr "" -#: [mood]cold +#: ../cache/locales.php:590 msgid "cold" msgstr "" -#: [mood]confident +#: ../cache/locales.php:591 msgid "confident" msgstr "" -#: [mood]confused +#: ../cache/locales.php:592 msgid "confused" msgstr "" -#: [mood]contemplative +#: ../cache/locales.php:593 msgid "contemplative" msgstr "" -#: [mood]contented +#: ../cache/locales.php:594 msgid "contented" msgstr "" -#: [mood]cranky +#: ../cache/locales.php:595 msgid "cranky" msgstr "" -#: [mood]crazy +#: ../cache/locales.php:596 msgid "crazy" msgstr "" -#: [mood]creative +#: ../cache/locales.php:597 msgid "creative" msgstr "" -#: [mood]curious +#: ../cache/locales.php:598 msgid "curious" msgstr "" -#: [mood]dejected +#: ../cache/locales.php:599 msgid "dejected" msgstr "" -#: [mood]depressed +#: ../cache/locales.php:600 msgid "depressed" msgstr "" -#: [mood]disappointed +#: ../cache/locales.php:601 msgid "disappointed" msgstr "" -#: [mood]disgusted +#: ../cache/locales.php:602 msgid "disgusted" msgstr "" -#: [mood]dismayed +#: ../cache/locales.php:603 msgid "dismayed" msgstr "" -#: [mood]distracted +#: ../cache/locales.php:604 msgid "distracted" msgstr "" -#: [mood]embarrassed +#: ../cache/locales.php:605 msgid "embarrassed" msgstr "" -#: [mood]envious +#: ../cache/locales.php:606 msgid "envious" msgstr "" -#: [mood]excited +#: ../cache/locales.php:607 msgid "excited" msgstr "" -#: [mood]flirtatious +#: ../cache/locales.php:608 msgid "flirtatious" msgstr "" -#: [mood]frustated +#: ../cache/locales.php:609 msgid "frustated" msgstr "" -#: [mood]grateful +#: ../cache/locales.php:610 msgid "grateful" msgstr "" -#: [mood]grieving +#: ../cache/locales.php:611 msgid "grieving" msgstr "" -#: [mood]grumpy +#: ../cache/locales.php:612 msgid "grumpy" msgstr "" -#: [mood]guilty +#: ../cache/locales.php:613 msgid "guilty" msgstr "" -#: [mood]happy +#: ../cache/locales.php:614 msgid "happy" msgstr "" -#: [mood]hopeful +#: ../cache/locales.php:615 msgid "hopeful" msgstr "" -#: [mood]hot +#: ../cache/locales.php:616 msgid "hot" msgstr "" -#: [mood]humbled +#: ../cache/locales.php:617 msgid "humbled" msgstr "" -#: [mood]humiliated +#: ../cache/locales.php:618 msgid "humiliated" msgstr "" -#: [mood]hungry +#: ../cache/locales.php:619 msgid "hungry" msgstr "" -#: [mood]hurt +#: ../cache/locales.php:620 msgid "hurt" msgstr "" -#: [mood]impressed +#: ../cache/locales.php:621 msgid "impressed" msgstr "" -#: [mood]in_awe +#: ../cache/locales.php:622 msgid "in awe" msgstr "" -#: [mood]in_love +#: ../cache/locales.php:623 msgid "in love" msgstr "" -#: [mood]indignant +#: ../cache/locales.php:624 msgid "indignant" msgstr "" -#: [mood]interested +#: ../cache/locales.php:625 msgid "interested" msgstr "" -#: [mood]intoxicated +#: ../cache/locales.php:626 msgid "intoxicated" msgstr "" -#: [mood]invincible +#: ../cache/locales.php:627 msgid "invincible" msgstr "" -#: [mood]jealous +#: ../cache/locales.php:628 msgid "jealous" msgstr "" -#: [mood]lonely +#: ../cache/locales.php:629 msgid "lonely" msgstr "" -#: [mood]lost +#: ../cache/locales.php:630 msgid "lost" msgstr "" -#: [mood]lucky +#: ../cache/locales.php:631 msgid "lucky" msgstr "" -#: [mood]mean +#: ../cache/locales.php:632 msgid "mean" msgstr "" -#: [mood]moody +#: ../cache/locales.php:633 msgid "moody" msgstr "" -#: [mood]nervous +#: ../cache/locales.php:634 msgid "nervous" msgstr "" -#: [mood]neutral +#: ../cache/locales.php:635 msgid "neutral" msgstr "" -#: [mood]offended +#: ../cache/locales.php:636 msgid "offended" msgstr "" -#: [mood]outraged +#: ../cache/locales.php:637 msgid "outraged" msgstr "" -#: [mood]playful +#: ../cache/locales.php:638 msgid "playful" msgstr "" -#: [mood]proud +#: ../cache/locales.php:639 msgid "proud" msgstr "" -#: [mood]relaxed +#: ../cache/locales.php:640 msgid "relaxed" msgstr "" -#: [mood]relieved +#: ../cache/locales.php:641 msgid "relieved" msgstr "" -#: [mood]restless +#: ../cache/locales.php:642 +msgid "remorseful" +msgstr "" + +#: ../cache/locales.php:643 msgid "restless" msgstr "" -#: [mood]sad +#: ../cache/locales.php:644 msgid "sad" msgstr "" -#: [mood]sarcastic +#: ../cache/locales.php:645 msgid "sarcastic" msgstr "" -#: [mood]satisfied +#: ../cache/locales.php:646 msgid "satisfied" msgstr "" -#: [mood]serious +#: ../cache/locales.php:647 msgid "serious" msgstr "" -#: [mood]shocked +#: ../cache/locales.php:648 msgid "shocked" msgstr "" -#: [mood]shy +#: ../cache/locales.php:649 msgid "shy" msgstr "" -#: [mood]sick +#: ../cache/locales.php:650 msgid "sick" msgstr "" -#: [mood]sleepy +#: ../cache/locales.php:651 msgid "sleepy" msgstr "" -#: [mood]spontaneous +#: ../cache/locales.php:652 msgid "spontaneous" msgstr "" -#: [mood]stressed +#: ../cache/locales.php:653 msgid "stressed" msgstr "" -#: [mood]strong +#: ../cache/locales.php:654 msgid "strong" msgstr "" -#: [mood]surprised +#: ../cache/locales.php:655 msgid "surprised" msgstr "" -#: [mood]thankful +#: ../cache/locales.php:656 msgid "thankful" msgstr "" -#: [mood]thirsty +#: ../cache/locales.php:657 msgid "thirsty" msgstr "" -#: [mood]tired +#: ../cache/locales.php:658 msgid "tired" msgstr "" -#: [mood]undefined +#: ../cache/locales.php:659 msgid "undefined" msgstr "" -#: [mood]weak +#: ../cache/locales.php:660 msgid "weak" msgstr "" -#: [mood]worried +#: ../cache/locales.php:661 msgid "worried" msgstr "" -#: [month]title +#: ../cache/locales.php:662 msgid "Month" msgstr "" -#: [month]january +#: ../cache/locales.php:663 msgid "January" msgstr "Januaro" -#: [month]february +#: ../cache/locales.php:664 msgid "February" msgstr "Februaro" -#: [month]march +#: ../cache/locales.php:665 msgid "March" msgstr "Marto" -#: [month]april +#: ../cache/locales.php:666 msgid "April" msgstr "Aprilo" -#: [month]may +#: ../cache/locales.php:667 msgid "May" msgstr "Majo" -#: [month]june +#: ../cache/locales.php:668 msgid "June" msgstr "Junio" -#: [month]july +#: ../cache/locales.php:669 msgid "July" msgstr "Julio" -#: [month]august +#: ../cache/locales.php:670 msgid "August" msgstr "Aŭgusto" -#: [month]september +#: ../cache/locales.php:671 msgid "September" msgstr "Septembro" -#: [month]october +#: ../cache/locales.php:672 msgid "October" msgstr "Oktobro" -#: [month]november +#: ../cache/locales.php:673 msgid "November" msgstr "Novembro" -#: [month]december +#: ../cache/locales.php:674 msgid "December" msgstr "Decembro" -#: [year]title +#: ../cache/locales.php:675 msgid "Year" msgstr "" -#: [date]today +#: ../cache/locales.php:676 msgid "Today" msgstr "Hodiaŭ" -#: [date]tomorrow +#: ../cache/locales.php:677 msgid "Tomorrow" msgstr "Morgaŭ" -#: [date]yesterday +#: ../cache/locales.php:678 msgid "Yesterday" msgstr "Hieraŭ" -#: [date]ago -#, fuzzy -msgid "%d days ago" +#: ../cache/locales.php:679 +#, php-format +msgid " %d days ago" msgstr " Antaŭ %d tagoj" -#: [date]day +#: ../cache/locales.php:680 msgid "day" msgstr "tago" -#: [post]whats_new +#: ../cache/locales.php:682 msgid "What's new ?" msgstr "" -#: [post]place +#: ../cache/locales.php:683 msgid "Place" msgstr "" -#: [post]by +#: ../cache/locales.php:684 msgid "by" msgstr "" -#: [post]geolocalisation +#: ../cache/locales.php:685 msgid "Geolocalisation" msgstr "" -#: [post]email +#: ../cache/locales.php:686 msgid "email" msgstr "" -#: [post]no_comments +#: ../cache/locales.php:688 msgid "No comments yet" msgstr "" -#: [post]no_comments_stream +#: ../cache/locales.php:689 msgid "No comments stream" msgstr "" -#: [post]no_load +#: ../cache/locales.php:690 msgid "Your feed cannot be loaded." msgstr "" -#: [post]older +#: ../cache/locales.php:691 msgid "Get older posts" msgstr "" -#: [post]new_items +#: ../cache/locales.php:692 +#, php-format msgid "%s new items" msgstr "" -#: [post]comment_error +#: ../cache/locales.php:693 msgid "Comment publication error" msgstr "" -#: [post]comments_older +#: ../cache/locales.php:694 msgid "Show the older comments" msgstr "" -#: [post]comments_loading -#, fuzzy -msgid "Loading comments..." -msgstr "Ŝarĝante la kontakta fluo…" +#: ../cache/locales.php:695 +msgid "Loading comments ..." +msgstr "" -#: [post]comments_get +#: ../cache/locales.php:696 msgid "Get the comments" msgstr "" -#: [post]comment_add +#: ../cache/locales.php:697 msgid "Add a comment" msgstr "" -#: [post]share +#: ../cache/locales.php:698 msgid "Share with" msgstr "" -#: [post]share_everyone +#: ../cache/locales.php:699 msgid "Everyone" msgstr "" -#: [post]share_your_contacts +#: ../cache/locales.php:700 msgid "Your contacts" msgstr "" -#: [post]updated +#: ../cache/locales.php:702 msgid "Updated" msgstr "" -#: [post]content_not_found +#: ../cache/locales.php:703 msgid "Content not found" msgstr "" -#: [post]default_title +#: ../cache/locales.php:704 msgid "Contact publication" msgstr "" -#: [post]comments +#: ../cache/locales.php:705 msgid "Comments" msgstr "" -#: [api]error +#: ../cache/locales.php:706 msgid "The API is not reachable, try again later" msgstr "" -#: [field]type_here +#: ../cache/locales.php:707 msgid "Type here" msgstr "" @@ -2719,8 +2591,12 @@ msgstr "" #~ msgid "Compatibility Test" #~ msgstr "Kongrueca testo" -#~ msgid "The following requirements were not met. Please make sure they are all satisfied in order to install Movim." -#~ msgstr "La sekvaj elementoj ne estis trovita. Bonvolu kontroli ke ĉiuj estas disponeblaj por instali Movim-on." +#~ msgid "" +#~ "The following requirements were not met. Please make sure they are all " +#~ "satisfied in order to install Movim." +#~ msgstr "" +#~ "La sekvaj elementoj ne estis trovita. Bonvolu kontroli ke ĉiuj estas " +#~ "disponeblaj por instali Movim-on." #~ msgid "User not logged in." #~ msgstr "Uzanto ne ensalutita." @@ -2728,12 +2604,17 @@ msgstr "" #~ msgid "JID not provided." #~ msgstr "JID maldisponebla" +#, php-format #~ msgid "jid '%s' is incorrect" #~ msgstr "JID “%s” malkorekta" +#, php-format #~ msgid "%s - Account Creation" #~ msgstr "%s - Kreado de konto" +#~ msgid "Remove this contact" +#~ msgstr "Forigi tiun kontakton" + #~ msgid "Debug console" #~ msgstr "Sencimiga konzolo" @@ -2746,18 +2627,25 @@ msgstr "" #~ msgid "Decline" #~ msgstr "Malakcepti" +#~ msgid "Loading the contact feed ..." +#~ msgstr "Ŝarĝante la kontakta fluo…" + #~ msgid "PHP version mismatch. Movim requires PHP 5.3 minimum." #~ msgstr "Nekongrua versio de PHP. Movim necesas PHP 5.3 minimume." +#, php-format #~ msgid "Movim requires the %s extension." #~ msgstr "Movim necesas la kromaĵon %s." +#, php-format #~ msgid "Couldn't create directory '%s'." #~ msgstr "Ne povas krei dosierujon “%s”." +#, php-format #~ msgid "Couldn't create configuration file '%s'." #~ msgstr "Ne povas krei agorddosieron “%s”." +#, php-format #~ msgid "Cannot open log file '%s'" #~ msgstr "Ne povas malfermi protokolan dosieron '%s'" @@ -2768,8 +2656,10 @@ msgstr "" #~ msgstr "Actuala versio: " #~ msgid "Update your PHP version or contact your server administrator" -#~ msgstr "Ĝisdatigu vian PHP-an version aŭ kontaktu vian servilan administranton" +#~ msgstr "" +#~ "Ĝisdatigu vian PHP-an version aŭ kontaktu vian servilan administranton" +#, php-format #~ msgid "Install %s and %s packages" #~ msgstr "Instali %s kaj %s pakaĵojn" @@ -2785,12 +2675,20 @@ msgstr "" #~ msgid "XMPP Connection Preferences" #~ msgstr "Agordoj de XMPP-konektado" +#~ msgid "Enable read and write rights on Movim's root folder" +#~ msgstr "Ebligi legi kaj skribi rajtojn on la radika dosierujo de Movim" + +#, php-format #~ msgid "You can now access your shiny Movim instance %sJump In !%s" #~ msgstr "Nun, vi povas aliri vian Movim-instancon %sEk en!%s" #~ msgid "Database Movim schema installed" #~ msgstr "Skemo de Movim-datumbazo instalita" +#~ msgid "Database Detected" +#~ msgstr "Datumbazo trovita" + +#, php-format #~ msgid "Install the %s package" #~ msgstr "Intali la pakaĵon \"%s\"" @@ -2815,5 +2713,6 @@ msgstr "" #~ msgid "normal" #~ msgstr "normala" +#, php-format #~ msgid "Cannot load element value '%s'" #~ msgstr "Ne eblas ŝarĝi elementvaloro '%s'" diff --git a/sources/locales/es.po b/sources/locales/es.po index 48b88f0..4815ec9 100644 --- a/sources/locales/es.po +++ b/sources/locales/es.po @@ -1,2745 +1,2612 @@ # Spanish translations for Movim package. # This file is distributed under the same license as the Movim package. # This file was translated from CodingTeam at . -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/About/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Account/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/AccountNext/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/AdHoc/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/AdminDB/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/AdminMain/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/AdminTest/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Api/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Avatar/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Blog/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Bookmark/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Chat/locales.ini -#. #-#-#-#-# 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 -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Group/locales.ini -#. #-#-#-#-# 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 -#. #-#-#-#-# 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 -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Presence/locales.ini -#. #-#-#-#-# 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 -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Share/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Statistics/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Subscribe/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Syndication/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Upload/locales.ini -#. #-#-#-#-# 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-08-20 15:17+0200\n" +"POT-Creation-Date: 2015-06-08 22:06+0200\n" "PO-Revision-Date: 2015-06-09 12:20+0000\n" "Last-Translator: Jorge Cantero \n" "Language-Team: LANGUAGE \n" -"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2015-06-18 21:08+0000\n" "X-Generator: Launchpad (build 17570)\n" +"Language: \n" -#: [about]thanks +#: ../cache/locales.php:2 msgid "Thanks" msgstr "Agradecimientos" -#: [about]developers +#: ../cache/locales.php:3 msgid "Developers" msgstr "Desarrolladores" -#: [about]translators +#: ../cache/locales.php:4 msgid "Translators" msgstr "Traductores" -#: [about]software +#: ../cache/locales.php:5 msgid "Software" msgstr "Software" -#: [about]resources +#: ../cache/locales.php:6 msgid "Resources" msgstr "Recursos" -#: [about]api [schema]api [api]title +#: ../cache/locales.php:7 ../cache/locales.php:83 ../cache/locales.php:85 msgid "API" msgstr "API" -#: [about]info -msgid "Movim is an XMPP-based communication platform. All the project, except the following software and resources, is under" -msgstr "Movim es una plataforma de comunicación que se basa en la tecnología XMPP. Todo el proyecto, excepto los recursos y software siguientes, están disponibles bajo la" +#: ../cache/locales.php:8 +msgid "" +"Movim is an XMPP-based communication platform. All the project, except the " +"following software and resources, is under" +msgstr "" +"Movim es una plataforma de comunicación que se basa en la tecnología XMPP. " +"Todo el proyecto, excepto los recursos y software siguientes, están " +"disponibles bajo la" -#: [account]title +#: ../cache/locales.php:9 msgid "Account" msgstr "" -#: [account]password_change_title -#, fuzzy -msgid "Change my password" -msgstr "Contraseña incorrecta" - -#: [account]password [db]password [credentials]password [form]password -#: [input]password -msgid "Password" -msgstr "Contraseña" - -#: [account]password_confirmation -#, fuzzy -msgid "Password confirmation" -msgstr "%s - Configuración" - -#: [account]password_changed +#: ../cache/locales.php:10 msgid "The password has been updated" msgstr "" -#: [account]password_not_valid +#: ../cache/locales.php:11 msgid "Please provide a valid password (6 characters minimum)" msgstr "" -#: [account]password_not_same +#: ../cache/locales.php:12 msgid "The provided passwords are not the same" msgstr "" -#: [account]delete_title +#: ../cache/locales.php:13 msgid "Delete my account" msgstr "" -#: [account]delete -#, fuzzy -msgid "Delete your account" -msgstr "Crear una cuenta nueva" - -#: [account]delete_text -msgid "You will delete your XMPP account and all the relative information linked to it (profile, contacts and publications)." +#: ../cache/locales.php:14 +msgid "" +"You will delete your XMPP account and all the relative information linked to " +"it (profile, contacts and publications)." msgstr "" -#: [account]delete_text_confirm +#: ../cache/locales.php:15 msgid "Are you sure that you want to delete it ?" msgstr "" -#: [account]gateway_title -msgid "Gateway" -msgstr "" - -#: [create]title [subscribe]title +#: ../cache/locales.php:16 ../cache/locales.php:411 msgid "Create a new account" msgstr "Crear una cuenta nueva" -#: [create]notfound +#: ../cache/locales.php:17 msgid "No account creation form found on the server" msgstr "No hemos encontrado una cuenta creada en el servidor" -#: [create]server_on +#: ../cache/locales.php:18 ../cache/locales.php:172 msgid "on" msgstr "activado" -#: [create]successfull +#: ../cache/locales.php:19 msgid "Your acccount has been successfully registered" msgstr "" -#: [create]loading +#: ../cache/locales.php:20 msgid "Loading" msgstr "Cargando" -#: [error]not_acceptable +#: ../cache/locales.php:21 msgid "Not Acceptable" msgstr "" -#: [error]service_unavailable +#: ../cache/locales.php:22 msgid "The registration system of this server is currently unavailable" msgstr "" -#: [oob]about -msgid "This server use an external system for the registration, please click on the following URL." +#: ../cache/locales.php:23 +msgid "" +"This server use an external system for the registration, please click on the " +"following URL." msgstr "" -#: [adhoc]title +#: ../cache/locales.php:24 msgid "Actions" msgstr "Acciones" -#: [db]legend [schema]database +#: ../cache/locales.php:25 ../cache/locales.php:82 msgid "Database" msgstr "" -#: [db]connect_error +#: ../cache/locales.php:26 msgid "Modl wasn't able to connect to the database" msgstr "Modl no se pudo conectar con la base de datos" -#: [db]connect_success +#: ../cache/locales.php:27 msgid "Movim is connected to the database" msgstr "Movim está conectado con la base de datos" -#: [db]update +#: ../cache/locales.php:28 msgid "The database need to be updated" msgstr "La base de datos necesita ser actualizada" -#: [db]up_to_date +#: ../cache/locales.php:29 msgid "Movim database is up to date" msgstr "La base de datos de Movim está actualizada" -#: [db]type +#: ../cache/locales.php:30 msgid "Database Type" msgstr "Tipo de la base de datos" -#: [db]username [credentials]username [input]username +#: ../cache/locales.php:31 ../cache/locales.php:50 ../cache/locales.php:540 msgid "Username" msgstr "Nombre de usuario" -#: [db]host +#: ../cache/locales.php:32 ../cache/locales.php:51 ../cache/locales.php:282 +#: ../cache/locales.php:541 +msgid "Password" +msgstr "Contraseña" + +#: ../cache/locales.php:33 msgid "Host" msgstr "Servidor" -#: [db]port +#: ../cache/locales.php:34 msgid "Port" msgstr "Puerto" -#: [db]name -#, fuzzy -msgid "Database sName" +#: ../cache/locales.php:35 +msgid "Database Name" msgstr "Nombre de la base de datos" -#: [admin]general +#: ../cache/locales.php:36 msgid "General Settings" msgstr "Opciones generales" -#: [general]theme +#: ../cache/locales.php:37 msgid "Theme" msgstr "Tema" -#: [general]language +#: ../cache/locales.php:38 msgid "Default language" msgstr "Idioma predeterminado" -#: [general]log_verbosity +#: ../cache/locales.php:39 +msgid "Environment" +msgstr "Entorno" + +#: ../cache/locales.php:40 msgid "Log verbosity" msgstr "Detalle de registro" -#: [general]timezone +#: ../cache/locales.php:41 msgid "Server Timezone" msgstr "Zona horaria del servidor" -#: [general]limit +#: ../cache/locales.php:42 msgid "User folder size limit (in bytes)" msgstr "Límite de tamaño de carpeta de usuario (en bytes)" -#: [websocket]title +#: ../cache/locales.php:43 msgid "WebSocket Configuration" msgstr "" -#: [websocket]info +#: ../cache/locales.php:44 msgid "Enter here a valid WebSocket URI in the form" msgstr "" -#: [websocket]label +#: ../cache/locales.php:45 msgid "WebSocket URI" msgstr "" -#: [websocket]save_info -msgid "If you change the URI, please restart the daemon to reload the configuration" +#: ../cache/locales.php:46 +msgid "" +"If you change the URI, please restart the daemon to reload the configuration" msgstr "" -#: [websocket]publics +#: ../cache/locales.php:47 msgid "Public WebSockets" msgstr "" -#: [credentials]title +#: ../cache/locales.php:48 msgid "Administration Credential" msgstr "Credenciales de administración" -#: [credentials]info +#: ../cache/locales.php:49 msgid "Change the default credentials admin/password" msgstr "Cambie las credenciales predeterminadas administrador/contraseña" -#: [credentials]re_password +#: ../cache/locales.php:52 msgid "Retype password" msgstr "Escriba la contraseña de nuevo" -#: [whitelist]title +#: ../cache/locales.php:53 msgid "Whitelist - XMPP Server" msgstr "Lista blanca - Servidor XMPP" -#: [whitelist]info1 -msgid "If you want to specify a list of authorized XMPP servers on your Movim pod and forbid the connection on all the others please put their domain name here, with comma (ex: movim.eu,jabber.fr)" -msgstr "Si quieres especificar una lista de servidores autorizados XMPP en tu pod de Movim y prohibir la conexión a todos los demás pon sus dominios aquí, separado por comas (ej: movim.eu,jabber.fr)" +#: ../cache/locales.php:54 +msgid "" +"If you want to specify a list of authorized XMPP servers on your Movim pod " +"and forbid the connection on all the others please put their domain name " +"here, with comma (ex: movim.eu,jabber.fr)" +msgstr "" +"Si quieres especificar una lista de servidores autorizados XMPP en tu pod de " +"Movim y prohibir la conexión a todos los demás pon sus dominios aquí, " +"separado por comas (ej: movim.eu,jabber.fr)" -#: [whitelist]info2 -msgid "Leave this field blank if you allow the access to all the XMPP accounts." -msgstr "Deja este campo en blanco si quieres permitir el acceso a todas las cuentas XMPP." +#: ../cache/locales.php:55 +msgid "" +"Leave this field blank if you allow the access to all the XMPP accounts." +msgstr "" +"Deja este campo en blanco si quieres permitir el acceso a todas las cuentas " +"XMPP." -#: [whitelist]label +#: ../cache/locales.php:56 msgid "List of whitelisted XMPP servers" msgstr "Lista de listas blancas de servidores XMPP" -#: [information]title -#, fuzzy -msgctxt "[information]title" +#: ../cache/locales.php:57 ../cache/locales.php:61 msgid "Information Message" msgstr "Información" -#: [information]description +#: ../cache/locales.php:58 msgid "Description" msgstr "Descripción" -#: [information]info1 +#: ../cache/locales.php:59 msgid "This message will be displayed on the login page" msgstr "Este mensaje se mostrará en la página de inicio" -#: [information]info2 -#, fuzzy -msgid "Leave this field blank if you dont want to show any message." +#: ../cache/locales.php:60 +msgid "Leave this field blank if you don't want to show any message." msgstr "Deja este espacio en blanco si no quieres mostar ningun mensaje" -#: [information]label -#, fuzzy -msgctxt "[information]label" -msgid "Information Message" -msgstr "Información" - -#: [log]empty +#: ../cache/locales.php:62 msgid "Empty" msgstr "" -#: [log]syslog +#: ../cache/locales.php:63 msgid "Syslog" msgstr "" -#: [log]syslog_files +#: ../cache/locales.php:64 msgid "Syslog and files" msgstr "" -#: [rewrite]title +#: ../cache/locales.php:65 msgid "URL Rewriting" msgstr "" -#: [rewrite]info +#: ../cache/locales.php:66 msgid "The URL Rewriting can be enabled" msgstr "" -#: [admin]compatibility +#: ../cache/locales.php:67 msgid "General Overview" msgstr "" -#: [compatibility]info -msgid "Movim has found some issues or things that need to be fixed or improved" +#: ../cache/locales.php:68 +msgid "" +"Movim has found some issues or things that need to be fixed or improved" msgstr "" -#: [compatibility]php1 +#: ../cache/locales.php:69 +#, php-format msgid "Update your PHP-Version: %s" msgstr "" -#: [compatibility]php2 +#: ../cache/locales.php:70 msgid "Required: 5.3.0" msgstr "" -#: [compatibility]curl +#: ../cache/locales.php:71 msgid "Install the php5-curl library" msgstr "" -#: [compatibility]imagick +#: ../cache/locales.php:72 msgid "Install the php5-imagick library" msgstr "" -#: [compatibility]gd +#: ../cache/locales.php:73 msgid "Install the php5-gd library" msgstr "" -#: [compatibility]rights -#, fuzzy -msgid "Read and write rights for the webserver in Movims root directory" -msgstr "Derechos de escritura y lectura para el servidor web en el directorio raíz de Movim" +#: ../cache/locales.php:74 +msgid "Read and write rights for the webserver in Movim's root directory" +msgstr "" +"Derechos de escritura y lectura para el servidor web en el directorio raíz " +"de Movim" -#: [compatibility]rewrite +#: ../cache/locales.php:75 msgid "The URL Rewriting support is currently disabled" msgstr "" -#: [compatibility]db +#: ../cache/locales.php:76 msgid "The database need to be updated, go to the database panel to fix this" msgstr "" -#: [compatibility]websocket -msgid "WebSocket connection error, check if the Movim Daemon is running and is reachable" +#: ../cache/locales.php:77 +msgid "" +"WebSocket connection error, check if the Movim Daemon is running and is " +"reacheable" msgstr "" -#: [compatibility]xmpp_websocket -msgid "XMPP Websocket connection error, please check the validity of the URL given in the General Configuration" +#: ../cache/locales.php:78 +msgid "" +"XMPP Websocket connection error, please check the validity of the URL given " +"in the General Configuration" msgstr "" -#: [schema]browser +#: ../cache/locales.php:79 msgid "Browser" msgstr "" -#: [schema]movim +#: ../cache/locales.php:80 msgid "Movim Core" msgstr "" -#: [schema]daemon +#: ../cache/locales.php:81 msgid "Movim Daemon" msgstr "" -#: [schema]xmpp +#: ../cache/locales.php:84 msgid "XMPP" msgstr "" -#: [api]info -msgid "Here you can register your pod on the official %sMovim API%s and be listed on %sthe pods page%s." +#: ../cache/locales.php:86 +#, php-format +msgid "" +"Here you can register your pod on the official %sMovim API%s and be listed " +"on %sthe pods page%s." msgstr "" -#: [api]register +#: ../cache/locales.php:87 msgid "Your pod is not registered on the API" msgstr "" -#: [api]registered +#: ../cache/locales.php:88 msgid "Your pod is registered on the API" msgstr "" -#: [api]wait +#: ../cache/locales.php:89 msgid "Your pod is not yet validated" msgstr "" -#: [api]validated +#: ../cache/locales.php:90 msgid "Your pod is validated" msgstr "" -#: [api]unregister -msgid "You asked to be removed from the API, this request will be processed in a couple of hours" -msgstr "Solicitó su eliminación de la API; la petición se procesará en un par de horas" +#: ../cache/locales.php:91 +msgid "" +"You asked to be removed from the API, this request will be processed in a " +"couple of hours" +msgstr "" +"Solicitó su eliminación de la API; la petición se procesará en un par de " +"horas" -#: [api]conf_updated [config]updated +#: ../cache/locales.php:92 ../cache/locales.php:147 msgid "Configuration updated" msgstr "" -#: [avatar]file +#: ../cache/locales.php:93 msgid "File" msgstr "" -#: [avatar]use_it +#: ../cache/locales.php:94 msgid "Use it" msgstr "" -#: [avatar]webcam +#: ../cache/locales.php:95 msgid "Webcam" msgstr "Webcam" -#: [avatar]cheese +#: ../cache/locales.php:96 msgid "Cheese !" msgstr "¡ Sonría !" -#: [avatar]snapshot +#: ../cache/locales.php:97 msgid "Take a webcam snapshot" msgstr "Tomar una instantánea con la webcam" -#: [avatar]updated +#: ../cache/locales.php:98 msgid "Avatar Updated" msgstr "" -#: [avatar]not_updated +#: ../cache/locales.php:99 msgid "Avatar Not Updated" msgstr "" -#: [blog]title [feed]title +#: ../cache/locales.php:100 ../cache/locales.php:415 +#, php-format msgid "%s's feed" msgstr "" -#: [blog]empty +#: ../cache/locales.php:101 msgid "This user has not posted anything right now" msgstr "" -#: [title]conferences +#: ../cache/locales.php:102 msgid "Conferences" msgstr "Conferencias" -#: [title]groups [group]empty_title [menu]groups [page]groups +#: ../cache/locales.php:103 ../cache/locales.php:193 ../cache/locales.php:217 +#: ../cache/locales.php:468 msgid "Groups" msgstr "Grupos" -#: [chatroom]add +#: ../cache/locales.php:104 msgid "Add a new Chat Room" msgstr "" -#: [chatroom]id [chatrooms]id +#: ../cache/locales.php:105 ../cache/locales.php:368 msgid "Chat Room ID" msgstr "Id. de la sala de chat" -#: [chatroom]name -#, fuzzy -msgctxt "[chatroom]name" +#: ../cache/locales.php:106 ../cache/locales.php:116 ../cache/locales.php:156 +#: ../cache/locales.php:361 ../cache/locales.php:369 ../cache/locales.php:424 msgid "Name" msgstr "Nombre" -#: [chatroom]nickname [general]nickname [chatrooms]nickname +#: ../cache/locales.php:107 ../cache/locales.php:157 ../cache/locales.php:371 +#: ../cache/locales.php:425 msgid "Nickname" msgstr "Apodo" -#: [chatroom]autojoin_label +#: ../cache/locales.php:108 msgid "Do you want do join automaticaly this Chat Room ?" msgstr "" -#: [chatroom]bad_id [chatrooms]bad_id +#: ../cache/locales.php:109 ../cache/locales.php:372 msgid "Bad Chatroom ID" msgstr "ID de la Chatroom incorrecto" -#: [chatroom]empty_name [chatrooms]empty_name +#: ../cache/locales.php:110 ../cache/locales.php:373 msgid "Empty name" msgstr "Nombre vacío" -#: [bookmarks]updated +#: ../cache/locales.php:111 ../cache/locales.php:380 msgid "Bookmarks updated" msgstr "Marcadores actualizados" -#: [bookmarks]error -#, fuzzy -msgid "An error occured :" +#: ../cache/locales.php:112 +msgid "An error occured : " msgstr "Sucedió un error : " -#: [bookmarks]configure +#: ../cache/locales.php:113 msgid "Configure" msgstr "" -#: [url]add +#: ../cache/locales.php:114 msgid "Add a new URL" msgstr "" -#: [url]url +#: ../cache/locales.php:115 msgid "URL" msgstr "" -#: [url]name -#, fuzzy -msgctxt "[url]name" -msgid "Name" -msgstr "Nombre" - -#: [message]published +#: ../cache/locales.php:117 msgid "Message Published" msgstr "Mensaje publicado" -#: [message]encrypted +#: ../cache/locales.php:118 ../cache/locales.php:138 msgid "Encrypted message" msgstr "" -#: [message]composing [chats]composing +#: ../cache/locales.php:119 msgid "Composing..." msgstr "Componiendo..." -#: [message]paused [chats]paused +#: ../cache/locales.php:120 msgid "Paused..." msgstr "" -#: [message]gone +#: ../cache/locales.php:121 msgid "Contact gone" msgstr "" -#: [chat]attention +#: ../cache/locales.php:122 +#, php-format msgid "%s needs your attention" msgstr "%s necesita tu atención" -#: [chat]placeholder +#: ../cache/locales.php:123 msgid "Your message here..." msgstr "" -#: [chat]smileys +#: ../cache/locales.php:124 msgid "Smileys" msgstr "" -#: [chat]empty_title [button]chat +#: ../cache/locales.php:125 ../cache/locales.php:139 msgid "Chat" msgstr "Chat" -#: [chat]empty_text +#: ../cache/locales.php:126 msgid "Discuss with your contacts" msgstr "" -#: [chat]frequent [chats]frequent -msgid "Frequent contacts" -msgstr "" - -#: [chatroom]members +#: ../cache/locales.php:127 msgid "Members" msgstr "" -#: [chatroom]connected [chatrooms]connected +#: ../cache/locales.php:128 ../cache/locales.php:376 msgid "Connected to the chatroom" msgstr "" -#: [chatroom]disconnected [chatrooms]disconnected +#: ../cache/locales.php:129 ../cache/locales.php:377 msgid "Disconnected from the chatroom" msgstr "" -#: [chatroom]config [group]configuration [page]configuration +#: ../cache/locales.php:130 ../cache/locales.php:200 ../cache/locales.php:469 msgid "Configuration" msgstr "Configuración" -#: [chatroom]config_saved +#: ../cache/locales.php:131 msgid "Configuration saved" msgstr "" -#: [chatroom]subject +#: ../cache/locales.php:132 msgid "Subject" msgstr "" -#: [chatroom]subject_changed +#: ../cache/locales.php:133 msgid "Subject changed" msgstr "" -#: [chats]empty_title -msgid "No chats yet..." +#: ../cache/locales.php:134 +msgid "Open a new conversation by clicking on the plus button bellow" msgstr "" -#: [chats]empty -msgid "Open a new conversation by clicking on the plus button bellow or visit the Contacts page." -msgstr "" - -#: [chats]add +#: ../cache/locales.php:135 msgid "Chat with a contact" msgstr "" -#: [chats]more +#: ../cache/locales.php:136 +msgid "Frequent contacts" +msgstr "" + +#: ../cache/locales.php:137 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 "" - -#: [config]general +#: ../cache/locales.php:140 msgid "General" msgstr "" -#: [config]language +#: ../cache/locales.php:141 msgid "Language" msgstr "Idioma" -#: [config]roster +#: ../cache/locales.php:142 msgid "Roster display" msgstr "" -#: [config]roster_show +#: ../cache/locales.php:143 msgid "Show the offline contacts" msgstr "" -#: [config]roster_hide +#: ../cache/locales.php:144 msgid "Hide the offline contacts" msgstr "" -#: [config]appearence +#: ../cache/locales.php:145 msgid "Appearence" msgstr "" -#: [config]info -msgid "This configuration is shared wherever you are connected" +#: ../cache/locales.php:146 +msgid "This configuration is shared wherever you are connected !" msgstr "" -#: [notifications]message +#: ../cache/locales.php:148 msgid "Notify on incoming message" msgstr "" -#: [notifications]desktop +#: ../cache/locales.php:149 msgid "Use desktop notifications" msgstr "" -#: [general]legend [general]general_title +#: ../cache/locales.php:150 +msgid "Data" +msgstr "" + +#: ../cache/locales.php:151 +msgid "Cache" +msgstr "" + +#: ../cache/locales.php:152 ../cache/locales.php:218 ../cache/locales.php:466 +msgid "Contacts" +msgstr "" + +#: ../cache/locales.php:153 ../cache/locales.php:480 +msgid "Posts" +msgstr "" + +#: ../cache/locales.php:154 +msgid "Messages" +msgstr "" + +#: ../cache/locales.php:155 ../cache/locales.php:423 msgid "General Informations" msgstr "Informaciones generales" -#: [general]name [public_groups]name [chatrooms]name -msgid "Name" -msgstr "Nombre" - -#: [general]date_of_birth +#: ../cache/locales.php:158 ../cache/locales.php:427 msgid "Date of Birth" msgstr "Fecha de nacimiento" -#: [general]gender +#: ../cache/locales.php:159 ../cache/locales.php:428 msgid "Gender" msgstr "Género" -#: [general]marital +#: ../cache/locales.php:160 ../cache/locales.php:429 msgid "Marital Status" msgstr "Estado civil" -#: [general]email +#: ../cache/locales.php:161 ../cache/locales.php:426 msgid "Email" msgstr "Correo electrónico" -#: [general]website +#: ../cache/locales.php:162 ../cache/locales.php:430 msgid "Website" msgstr "Página web" -#: [general]about +#: ../cache/locales.php:163 ../cache/locales.php:431 msgid "About Me" msgstr "Acerca de mí" -#: [general]accounts +#: ../cache/locales.php:164 msgid "Other Accounts" msgstr "" -#: [general]tune +#: ../cache/locales.php:165 msgid "Is Listening" msgstr "" -#: [position]legend [position]position_title +#: ../cache/locales.php:166 ../cache/locales.php:432 msgid "Geographic Position" msgstr "Posición geográfica" -#: [position]locality +#: ../cache/locales.php:167 ../cache/locales.php:433 msgid "Locality" msgstr "Localidad" -#: [position]country +#: ../cache/locales.php:168 ../cache/locales.php:434 msgid "Country" msgstr "País" -#: [mood]title +#: ../cache/locales.php:169 msgid "Mood" msgstr "Estado de ánimo" -#: [mood]im +#: ../cache/locales.php:170 msgid "I'm " msgstr "Soy " -#: [listen]title +#: ../cache/locales.php:171 msgid "Listening" msgstr "Escuchando" -#: [last]title +#: ../cache/locales.php:173 msgid "Last seen" msgstr "Visto por última vez" -#: [client]title +#: ../cache/locales.php:174 msgid "Client Informations" msgstr "Información del Cliente" -#: [explore]last_registered +#: ../cache/locales.php:175 msgid "Last registered" msgstr "Último registrado" -#: [explore]explore +#: ../cache/locales.php:176 msgid "Find some new friends" msgstr "" -#: [edit]title [button]edit +#: ../cache/locales.php:177 ../cache/locales.php:533 msgid "Edit" msgstr "" -#: [edit]alias +#: ../cache/locales.php:178 msgid "Alias" msgstr "Apodo" -#: [edit]group +#: ../cache/locales.php:179 msgid "Group" msgstr "Grupo" -#: [edit]updated [roster]updated +#: ../cache/locales.php:180 ../cache/locales.php:400 msgid "Contact updated" msgstr "Contacto actualizado" -#: [delete]title +#: ../cache/locales.php:181 msgid "Are you sure?" msgstr "" -#: [delete]text -msgid "You are going to delete one of your contacts, please confirm your action" +#: ../cache/locales.php:182 +msgid "" +"You are going to delete one of your contacts, please confirm your action" msgstr "" -#: [age]years +#: ../cache/locales.php:183 +#, php-format msgid "%s years" msgstr "" -#: [blog]last +#: ../cache/locales.php:184 msgid "Last public post" msgstr "" -#: [subscription]to -#, fuzzy -msgid "You can see this contact status" -msgstr "Borrar contacto" - -#: [subscription]to_button -msgid "Share my status" -msgstr "" - -#: [subscription]to_text -msgid "But this contact cannot see yours" -msgstr "" - -#: [subscription]from -msgid "You are not subscribed to this contact" -msgstr "" - -#: [subscription]from_button -#, fuzzy -msgid "Ask to subscribe" -msgstr "Suscribirse" - -#: [subscription]from_text -msgid "But this contact can still see if you are online" -msgstr "" - -#: [subscription]nil -#, fuzzy -msgid "No subscriptions" -msgstr "Recibe suscripciones" - -#: [subscription]nil_button -msgid "Invite" -msgstr "" - -#: [subscription]nil_text -msgid "This contact is in your contact list but there is no subscriptions between the two accounts" -msgstr "" - -#: [group]subscribe +#: ../cache/locales.php:185 msgid "Subscribe" msgstr "" -#: [group]subscribed +#: ../cache/locales.php:186 msgid "Subscribed" msgstr "Suscribirse" -#: [group]unsubscribe +#: ../cache/locales.php:187 msgid "Unsubscribe" msgstr "" -#: [group]unsubscribe_text +#: ../cache/locales.php:188 msgid "You are going to unsubscribe from this Group" msgstr "" -#: [group]unsubscribed +#: ../cache/locales.php:189 msgid "Unsubscribed" msgstr "" -#: [group]share_label +#: ../cache/locales.php:190 msgid "Make your membership to this group public to your friends" msgstr "" -#: [group]label_label +#: ../cache/locales.php:191 msgid "Give a label for this group" msgstr "" -#: [group]sure +#: ../cache/locales.php:192 msgid "Are you sure ?" msgstr "" -#: [group]empty_text +#: ../cache/locales.php:194 msgid "Discover, follow and share" msgstr "" -#: [group]empty +#: ../cache/locales.php:195 msgid "Something bad happened to this group" msgstr "" -#: [group]config_saved +#: ../cache/locales.php:196 msgid "Group configuration saved" msgstr "Configuración de grupo guardada" -#: [group]delete_title +#: ../cache/locales.php:197 msgid "Delete the group" msgstr "" -#: [group]delete_text -msgid "You are going to delete the following group. Please confirm your action." +#: ../cache/locales.php:198 +msgid "" +"You are going to delete the following group. Please confirm your action." msgstr "" -#: [group]delete_clean_text -msgid "It seems that this group doesn't exists anymore. Do you want to remove it from your subscriptions?" +#: ../cache/locales.php:199 +msgid "" +"It seems that this group doesn't exists anymore. Do you want to remove it " +"from your subscriptions?" msgstr "" -#: [group]counter -msgid "%s groups on this server" -msgstr "" - -#: [group]subscriptions [statistics]subscriptions +#: ../cache/locales.php:201 ../cache/locales.php:408 msgid "Subscriptions" msgstr "" -#: [group]servers -#, fuzzy -msgid "Groups servers" -msgstr "Grupos" - -#: [group]search_server -msgid "Search for a new server" -msgstr "" - -#: [group]help_info1 -msgid "Groups are the perfect way to share posts about topics that you like with all the other Movim's users." -msgstr "" - -#: [group]help_info2 -msgid "Choose a server and a Group and subscribe to it using the %s button in the header. You can also create a new one using the %s button." -msgstr "" - -#: [group]help_info3 -msgid "Done? You can now publish a new post in the Group by using the %s button." -msgstr "" - -#: [group]help_info4 -msgid "You will find a list of all your subscribed Groups in My Subscriptions and receive instantly all the new incoming posts in the %sNews%s page." -msgstr "" - -#: [groups]empty_title +#: ../cache/locales.php:202 ../cache/locales.php:290 msgid "Hello" msgstr "" -#: [groups]contact_post [hello]contact_post [menu]contact_post +#: ../cache/locales.php:203 ../cache/locales.php:225 ../cache/locales.php:291 msgid "Contact post" msgstr "" -#: [groups]empty_text1 -msgid "You don't have any subscriptions yet, select a group server above to start exploring." +#: ../cache/locales.php:204 +msgid "" +"You don't have any subscriptions yet, select a group server above to start " +"exploring." msgstr "" -#: [groups]empty_text2 +#: ../cache/locales.php:205 msgid "Subscribe to your favorite feeds by bookmarking them." msgstr "" -#: [groups]subscriptions +#: ../cache/locales.php:206 msgid "My Subscriptions" msgstr "" -#: [groups]add +#: ../cache/locales.php:207 msgid "Create a new Group" msgstr "" -#: [groups]name +#: ../cache/locales.php:208 msgid "Group name" msgstr "" -#: [groups]name_example +#: ../cache/locales.php:209 msgid "My Little Pony - Fan Club" msgstr "Mi pequeño pony - Club de fans" -#: [groups]created +#: ../cache/locales.php:210 msgid "Group created successfully" msgstr "" -#: [groups]deleted +#: ../cache/locales.php:211 msgid "Group deleted successfully" msgstr "" -#: [groups]name_error +#: ../cache/locales.php:212 msgid "Please provide a valid group name (4 characters minimum)" msgstr "" -#: [groups]no_creation +#: ../cache/locales.php:213 msgid "You cannot create a new Group on this server" msgstr "" -#: [groups]sub +#: ../cache/locales.php:214 +#, php-format msgid "%s subscribers" msgstr "" -#: [groups]num +#: ../cache/locales.php:215 +#, php-format msgid "%s posts" msgstr "" -#: [groups]disco_error -#, fuzzy -msgid "This server doesn't exists" -msgstr "Este servidor cuenta %s cuentas" - -#: [menu]all +#: ../cache/locales.php:216 msgid "All" msgstr "Todos" -#: [menu]refresh +#: ../cache/locales.php:219 msgid "Refresh all the streams" msgstr "" -#: [roster]search -#, fuzzy -msgid "Search in your contacts" -msgstr "Compartir con un contacto" - -#: [hello]active_contacts -#, fuzzy -msgid "Active contacts" -msgstr "Acciones" - -#: [hello]chat -msgid "Go on the Chat page" -msgstr "" - -#: [hello]news [page]news -msgid "News" -msgstr "Novedades" - -#: [hello]news_page -msgid "Read all theses articles on the News page" -msgstr "" - -#: [hello]blog_title -msgid "Visit your public blog" -msgstr "" - -#: [hello]blog_text -msgid "See your public posts and share them with all your contacts" -msgstr "" - -#: [hello]share_title -msgid "Universal share button" -msgstr "" - -#: [hello]share_text -msgid "Bookmark or drag and drop the following button in your toolbar and use it on all the pages you want to share on Movim" -msgstr "" - -#: [hello]share_button -msgid "Share on Movim" -msgstr "" - -#: [help]faq -msgid "Frequently Asked Questions" -msgstr "" - -#: [banner]title -msgid "What do the little banners refer to ?" -msgstr "¿A que hacen referencia las pequeñas banderitas?" - -#: [banner]info1 -msgid "Thanks to these five little banners, you can quickly identitfy the level of confdentiality applied to the information you provide." -msgstr "Gracias a estas cinco pequeñas banderas, usted puede identificar el nivel de confidencialidad aplicado a la información que usted proporcione." - -#: [banner]white -msgid "White, only you can see the information" -msgstr "Blanco, sólo usted puede ver la información" - -#: [banner]green -msgid "Green, you have chosen some contacts who can see your information" -msgstr "Verde, ha elegido que algunos contactos puedan ver su información" - -#: [banner]orange -msgid "Orange, all your contact list can see your information" -msgstr "Anaranjado, toda su lista de contactos puede ver su información" - -#: [banner]red -msgid "Red, everybody in the XMPP network can see your information" -msgstr "Rojo, todos en la red XMPP pueden ver su información" - -#: [banner]black -msgid "Black, the whole Internet can see your information" -msgstr "Negro, toda la Internet puede ver su información" - -#: [wiki]question -msgid "Looking for some documentation ?" -msgstr "" - -#: [wiki]button -msgid "Read the Wiki" -msgstr "" - -#: [ml]question -msgid "Talk with us by email ?" -msgstr "" - -#: [ml]button -msgid "Join the Mailing List" -msgstr "" - -#: [chatroom]question -msgid "Chat with the team ?" -msgstr "" - -#: [chatroom]button -msgid "Join the Chatroom" -msgstr "" - -#: [init]location -msgid "Location node created" -msgstr "" - -#: [init]bookmark -msgid "Bookmark node created" -msgstr "" - -#: [init]vcard4 -msgid "Profile node created" -msgstr "" - -#: [init]avatar -msgid "Avatar node created" -msgstr "" - -#: [init]subscriptions -msgid "Subscriptions node created" -msgstr "" - -#: [init]microblog -msgid "Microblog node created" -msgstr "" - -#: [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 "" - -#: [login_anonymous]bad_username -msgid "Bad nickname (between 4 and 40 characters)" -msgstr "" - -#: [error]username -msgid "Wrong username" -msgstr "Nombre de usuario incorrecto" - -#: [error]jid -msgid "Invalid JID" -msgstr "Identificación de Jabber no válida" - -#: [error]empty_challenge -msgid "Empty Challenge from the server" -msgstr "Desafío vacío del servidor" - -#: [error]dns -msgid "XMPP Domain error, your account is not a correct Jabber ID" -msgstr "Error de dominio XMPP, su cuenta no es un Jabber ID correcto" - -#: [error]data_missings -msgid "Some data are missing !" -msgstr "¡Algunos datos están incompletos!" - -#: [error]wrong_password -msgid "Wrong password" -msgstr "Contraseña incorrecta" - -#: [error]internal -msgid "Internal server error" -msgstr "Error interno del servidor" - -#: [error]session -msgid "Session error" -msgstr "Error en la sesión" - -#: [error]account_created -msgid "Account successfully created" -msgstr "La cuenta ha sido creada exitosamente" - -#: [error]xmpp_unauthorized -#, fuzzy -msgctxt "[error]xmpp_unauthorized" -msgid "Your XMPP server is unauthorized" -msgstr "Tu servidor de XMPP no está autorizado" - -#: [error]mec_error -msgid "The server takes too much time to respond" -msgstr "El servidor está tardando demasiado en responder" - -#: [error]too_old -msgid "Your web browser is too old to use with Movim." -msgstr "Tu navegador web es demasiado antiguo para usar Movim" - -#: [error]websocket -msgid "Movim cannot talk with the server, please try again later (Websocket connection error)" -msgstr "" - -#: [error]impossible -msgid "Impossible login" -msgstr "" - -#: [error]title -msgid "Oops!" -msgstr "" - -#: [error]default [visio]unknown_error -msgid "Unknown error" -msgstr "Error desconocido" - -#: [error]login_format -msgid "Invalid username format" -msgstr "" - -#: [error]password_format -msgid "Invalid password format" -msgstr "" - -#: [error]unauthorized -#, fuzzy -msgctxt "[error]unauthorized" -msgid "Your XMPP server is unauthorized" -msgstr "Tu servidor de XMPP no está autorizado" - -#: [error]conflict -msgid "A Movim session is already open on an other device" -msgstr "" - -#: [error]wrong_account -msgid "Movim failed to authenticate. You entered wrong data" -msgstr "Movim no ha podido autenticar. Ha introducido datos erróneos" - -#: [error]mechanism -msgid "Authentication mechanism not supported by Movim" -msgstr "El mecanismo de autenticación no está soportado por Movim" - -#: [error]fail_auth -msgid "The XMPP authentification failed" -msgstr "La autentificación de XMPP ha fallado" - -#: [account]title [accounts]accounts_title -msgid "Accounts" -msgstr "" - -#: [form]username -msgid "My address" -msgstr "Mi dirección" - -#: [form]create_one -msgid "Create one !" -msgstr "" - -#: [form]another_account -msgid "Another account" -msgstr "" - -#: [form]no_account -msgid "No account yet ?" -msgstr "" - -#: [form]whitelist.info -msgid "You can login with accounts from theses servers" -msgstr "" - -#: [form]connected -msgid "Connected" -msgstr "" - -#: [form]population -msgid "Population" -msgstr "" - -#: [menu]empty_title -msgid "No news yet..." -msgstr "" - -#: [menu]empty -msgid "Welcome on your news feed, here you will see all the posts published by your contacts and in the groups you have subscribed." -msgstr "" - -#: [menu]refresh -msgid "Refreshing all the streams" -msgstr "" - -#: [menu]public -msgid "This post is public" -msgstr "" - -#: [affiliations]title -msgid "Manage your members" -msgstr "Gestionar miembros" - -#: [affiliations]get -msgid "Get the members" -msgstr "Obtener miembros" - -#: [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 "" - -#: [notifs]title -msgid "Pending Invitations" -msgstr "" - -#: [notifs]wants_to_talk -msgid "%s wants to talk with you" -msgstr "" - -#: [notifs]manage -msgid "Manage" -msgstr "Administrar" - -#: [post]news_feed -msgid "News Feed" -msgstr "" - -#: [post]placeholder -msgid "Discover and register to the groups you are interested in" -msgstr "" - -#: [post]preview [page]preview -msgid "Preview" -msgstr "" - -#: [post]help [page]help -msgid "Help" -msgstr "Ayuda" - -#: [post]help_more -msgid "More help" -msgstr "" - -#: [post]help_manual -msgid "Markdown syntax manual" -msgstr "" - -#: [post]title -msgid "Title" -msgstr "" - -#: [post]content -msgid "Content" -msgstr "" - -#: [post]link -msgid "Link" -msgstr "Enlace" - -#: [post]tags -msgid "Tags" -msgstr "" - -#: [post]valid_url [publish]valid_url -msgid "Please enter a valid url" -msgstr "" - -#: [post]no_content_preview [publish]no_content_preview -msgid "No content to preview" -msgstr "" - -#: [post]no_content [publish]no_content [post]empty -msgid "No content" -msgstr "No hay contenido" - -#: [post]published -msgid "Post published" -msgstr "" - -#: [post]deleted -msgid "Post deleted" -msgstr "" - -#: [post]gallery -msgid "This picture will be added to your gallery" -msgstr "" - -#: [post]hot -msgid "What's Hot" -msgstr "" - -#: [post]hot_text -msgid "Posts recently published in Groups that you are not subscribed (yet)" -msgstr "" - -#: [post]new [publish]new -msgid "New post" -msgstr "" - -#: [post]embed_tip -msgid "You can also use services like Imgur or Flickr to host your picture and paste the link here." -msgstr "" - -#: [post]repost -msgid "This is a re-post from %s" -msgstr "" - -#: [post]repost_profile -msgid "See %s profile" -msgstr "" - -#: [post]public -#, fuzzy -msgid "Publish this post publicly?" -msgstr "¿ Es público este perfil ?" - -#: [post]blog_add -msgid "Post published on your blog" -msgstr "" - -#: [post]blog_remove -msgid "Post removed from your blog" -msgstr "" - -#: [post]delete_title [post]delete -msgid "Delete this post" -msgstr "" - -#: [post]delete_text -msgid "You are going to delete this post, please confirm your action" -msgstr "" - -#: [post]comments_disabled -msgid "Comments disabled" -msgstr "" - -#: [post]comment_published -msgid "Comment published" -msgstr "" - -#: [status]disconnect -msgid "Disconnect" -msgstr "" - -#: [status]here -msgid "Your status here !" -msgstr "" - -#: [status]updated -msgid "Status updated" -msgstr "Actualizar estado" - -#: [status]status -msgid "Status" -msgstr "" - -#: [status]presence -msgid "Presence" -msgstr "" - -#: [status]online -msgid "Online with Movim" -msgstr "" - -#: [publish]title -msgid "Publish" -msgstr "" - -#: [publish]attach -msgid "Add a file or a picture to your post" -msgstr "" - -#: [publish]no_publication -msgid "You cannot publish a post on this Group" -msgstr "" - -#: [publish]form_filled -msgid "Some fields have been filled in. Do you still want to go back and loose their content?" -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 "" - -#: [rooms]empty_text1 -msgid "You don't have any chatroom yet." -msgstr "" - -#: [rooms]empty_text2 -msgid "Add one by clicking on the add button in the header." -msgstr "" - -#: [chatrooms]title -msgid "Chatrooms" -msgstr "" - -#: [chatrooms]name_placeholder -msgid "My Favorite Room" -msgstr "" - -#: [chatrooms]users -msgid "Users in the room" -msgstr "" - -#: [chatrooms]bad_nickname -msgid "Please enter a correct nickname (2 to 40 characters)" -msgstr "" - -#: [room]anonymous_title -msgid "Public chatroom" -msgstr "" - -#: [room]no_room -msgid "Please provide a room address" -msgstr "" - -#: [room]anonymous_text1 -msgid "You are currently logued as an anonymous user." -msgstr "" - -#: [room]anonymous_text2 -msgid "You can join using your own account or create one on the login page by loging out using the cross in the top-right corner." -msgstr "" - -#: [room]anonymous_login -msgid "Login on %s" -msgstr "" - -#: [room]nick -msgid "Your nickname" -msgstr "" - -#: [roster]ungrouped -msgid "Ungrouped" -msgstr "Sin grupo" - -#: [roster]show_disconnected -msgid "Show disconnected contacts" -msgstr "" - -#: [roster]hide_disconnected -msgid "Hide disconnected contacts" -msgstr "" - -#: [roster]show_group -msgid "Show group %s" -msgstr "" - -#: [roster]hide_group -msgid "Hide group %s" -msgstr "" - -#: [roster]jid_error -msgid "Please enter a valid Jabber ID" -msgstr "Por favor, ingresa un Jabber ID válido" - -#: [roster]no_contacts_title -#, fuzzy -msgid "No contacts ?" -msgstr "No hay contenido" - -#: [roster]no_contacts_text -msgid "You can add one using the + button bellow" -msgstr "" - -#: [roster]show_hide -msgid "Show/Hide" -msgstr "" - -#: [roster]add_contact_info1 -msgid "Enter the Jabber ID of your contact." -msgstr "" - -#: [roster]add_contact_info2 -msgid "Press enter to validate." -msgstr "" - -#: [roster]jid -msgid "JID" -msgstr "" - -#: [roster]results -msgid "Results" -msgstr "" - -#: [roster]added -msgid "Contact added" -msgstr "" - -#: [roster]deleted -msgid "Contact deleted" -msgstr "" - -#: [roster]search +#: ../cache/locales.php:220 ../cache/locales.php:402 msgid "Search" msgstr "Buscar" -#: [share]error +#: ../cache/locales.php:221 +msgid "Go on the Chat page" +msgstr "" + +#: ../cache/locales.php:222 +msgid "Read all theses articles on the News page" +msgstr "" + +#: ../cache/locales.php:223 +msgid "Visit your public blog" +msgstr "" + +#: ../cache/locales.php:224 +msgid "See your public posts and share them with all your contacts" +msgstr "" + +#: ../cache/locales.php:226 +msgid "Universal share button" +msgstr "" + +#: ../cache/locales.php:227 +msgid "" +"Bookmark or drag and drop the following button in your toolbar and use it on " +"all the pages you want to share on Movim" +msgstr "" + +#: ../cache/locales.php:228 +msgid "Share on Movim" +msgstr "" + +#: ../cache/locales.php:229 +msgid "Frequently Asked Questions" +msgstr "" + +#: ../cache/locales.php:230 +msgid "What do the little banners refer to ?" +msgstr "¿A que hacen referencia las pequeñas banderitas?" + +#: ../cache/locales.php:231 +msgid "" +"Thanks to these five little banners, you can quickly identitfy the level of " +"confdentiality applied to the information you provide." +msgstr "" +"Gracias a estas cinco pequeñas banderas, usted puede identificar el nivel de " +"confidencialidad aplicado a la información que usted proporcione." + +#: ../cache/locales.php:232 +msgid "White, only you can see the information" +msgstr "Blanco, sólo usted puede ver la información" + +#: ../cache/locales.php:233 +msgid "Green, you have chosen some contacts who can see your information" +msgstr "Verde, ha elegido que algunos contactos puedan ver su información" + +#: ../cache/locales.php:234 +msgid "Orange, all your contact list can see your information" +msgstr "Anaranjado, toda su lista de contactos puede ver su información" + +#: ../cache/locales.php:235 +msgid "Red, everybody in the XMPP network can see your information" +msgstr "Rojo, todos en la red XMPP pueden ver su información" + +#: ../cache/locales.php:236 +msgid "Black, the whole Internet can see your information" +msgstr "Negro, toda la Internet puede ver su información" + +#: ../cache/locales.php:237 +msgid "Looking for some documentation ?" +msgstr "" + +#: ../cache/locales.php:238 +msgid "Read the Wiki" +msgstr "" + +#: ../cache/locales.php:239 +msgid "Talk with us by email ?" +msgstr "" + +#: ../cache/locales.php:240 +msgid "Join the Mailing List" +msgstr "" + +#: ../cache/locales.php:241 +msgid "Chat with the team ?" +msgstr "" + +#: ../cache/locales.php:242 +msgid "Join the Chatroom" +msgstr "" + +#: ../cache/locales.php:243 +msgid "Location node created" +msgstr "" + +#: ../cache/locales.php:244 +msgid "Bookmark node created" +msgstr "" + +#: ../cache/locales.php:245 +msgid "Profile node created" +msgstr "" + +#: ../cache/locales.php:246 +msgid "Avatar node created" +msgstr "" + +#: ../cache/locales.php:247 +msgid "Subscriptions node created" +msgstr "" + +#: ../cache/locales.php:248 +msgid "Microblog node created" +msgstr "" + +#: ../cache/locales.php:249 +msgid "Location" +msgstr "Ubicación" + +#: ../cache/locales.php:250 +msgid "Wrong position" +msgstr "Posición errónea" + +#: ../cache/locales.php:251 +msgid "Location updated" +msgstr "Ubicación actualizada" + +#: ../cache/locales.php:252 +msgid "Update my position" +msgstr "" + +#: ../cache/locales.php:253 +msgid "Wrong username" +msgstr "Nombre de usuario incorrecto" + +#: ../cache/locales.php:254 +msgid "Invalid JID" +msgstr "Identificación de Jabber no válida" + +#: ../cache/locales.php:255 +msgid "Empty Challenge from the server" +msgstr "Desafío vacío del servidor" + +#: ../cache/locales.php:256 +msgid "XMPP Domain error, your account is not a correct Jabber ID" +msgstr "Error de dominio XMPP, su cuenta no es un Jabber ID correcto" + +#: ../cache/locales.php:257 +msgid "Some data are missing !" +msgstr "¡Algunos datos están incompletos!" + +#: ../cache/locales.php:258 +msgid "Wrong password" +msgstr "Contraseña incorrecta" + +#: ../cache/locales.php:259 +msgid "Internal server error" +msgstr "Error interno del servidor" + +#: ../cache/locales.php:260 +msgid "Session error" +msgstr "Error en la sesión" + +#: ../cache/locales.php:261 +msgid "Account successfully created" +msgstr "La cuenta ha sido creada exitosamente" + +#: ../cache/locales.php:262 ../cache/locales.php:271 +msgid "Your XMPP server is unauthorized" +msgstr "Tu servidor de XMPP no está autorizado" + +#: ../cache/locales.php:263 +msgid "The server takes too much time to respond" +msgstr "El servidor está tardando demasiado en responder" + +#: ../cache/locales.php:264 +msgid "Your web browser is too old to use with Movim." +msgstr "Tu navegador web es demasiado antiguo para usar Movim" + +#: ../cache/locales.php:265 +msgid "" +"Movim cannot talk with the server, please try again later (Websocket " +"connection error)" +msgstr "" + +#: ../cache/locales.php:266 +msgid "Impossible login" +msgstr "" + +#: ../cache/locales.php:267 +msgid "Oops!" +msgstr "" + +#: ../cache/locales.php:268 ../cache/locales.php:449 ../cache/locales.php:455 +msgid "Unknown error" +msgstr "Error desconocido" + +#: ../cache/locales.php:269 +msgid "Invalid username format" +msgstr "" + +#: ../cache/locales.php:270 +msgid "Invalid password format" +msgstr "" + +#: ../cache/locales.php:272 +msgid "A Movim session is already open on an other device" +msgstr "" + +#: ../cache/locales.php:273 +msgid "Movim failed to authenticate. You entered wrong data" +msgstr "Movim no ha podido autenticar. Ha introducido datos erróneos" + +#: ../cache/locales.php:274 +msgid "Authentication mechanism not supported by Movim" +msgstr "El mecanismo de autenticación no está soportado por Movim" + +#: ../cache/locales.php:275 +msgid "The XMPP authentification failed" +msgstr "La autentificación de XMPP ha fallado" + +#: ../cache/locales.php:276 +#, php-format +msgid "" +"You can login with Facebook (chat only) using %syour.id@chat.facebook.com%s " +"and your password" +msgstr "" +"Puedes loguearte con tu cuenta de Facebook (solo chat) usando " +"%stu.usuario@chat.facebook.com%s y tu contraseña" + +#: ../cache/locales.php:277 +#, php-format +msgid "%sGmail accounts are also compatible%s but are not fully supported" +msgstr "" +"%s Las cuentas de Gmail también son compatibles %s pero no están totalmente " +"soportadas" + +#: ../cache/locales.php:278 +msgid "You can login using your favorite Jabber account" +msgstr "" + +#: ../cache/locales.php:279 +msgid "or with our demonstration account" +msgstr "" + +#: ../cache/locales.php:280 ../cache/locales.php:435 +msgid "Accounts" +msgstr "" + +#: ../cache/locales.php:281 +msgid "My address" +msgstr "Mi dirección" + +#: ../cache/locales.php:283 +msgid "Create one !" +msgstr "" + +#: ../cache/locales.php:284 +msgid "No account yet ?" +msgstr "" + +#: ../cache/locales.php:285 +msgid "Another account" +msgstr "" + +#: ../cache/locales.php:286 +msgid "You can login with accounts from theses servers" +msgstr "" + +#: ../cache/locales.php:287 +msgid "Connected" +msgstr "" + +#: ../cache/locales.php:288 +msgid "Population" +msgstr "" + +#: ../cache/locales.php:289 +msgid "Bad nickname (between 4 and 40 characters)" +msgstr "" + +#: ../cache/locales.php:292 +msgid "" +"Welcome on your news feed, here you will see all the posts published in the " +"groups you have subscribed." +msgstr "" + +#: ../cache/locales.php:293 +msgid "Refreshing all the streams" +msgstr "" + +#: ../cache/locales.php:294 +msgid "This post is public" +msgstr "" + +#: ../cache/locales.php:295 +msgid "Manage your members" +msgstr "Gestionar miembros" + +#: ../cache/locales.php:296 +msgid "Get the members" +msgstr "Obtener miembros" + +#: ../cache/locales.php:297 +msgid "Affiliations saved" +msgstr "Afiliaciones guardadas" + +#: ../cache/locales.php:298 +msgid "Manage your subscriptions" +msgstr "Administrar tus subscripciones" + +#: ../cache/locales.php:299 +msgid "Manage the subscriptions" +msgstr "Administar las subscripciones" + +#: ../cache/locales.php:300 +msgid "Get the subscriptions" +msgstr "Recibe suscripciones" + +#: ../cache/locales.php:301 +msgid "Subscriptions saved" +msgstr "" + +#: ../cache/locales.php:302 +msgid "Pending Invitations" +msgstr "" + +#: ../cache/locales.php:303 +#, php-format +msgid "%s wants to talk with you" +msgstr "" + +#: ../cache/locales.php:304 +msgid "Manage" +msgstr "Administrar" + +#: ../cache/locales.php:305 ../cache/locales.php:338 +msgid "News Feed" +msgstr "" + +#: ../cache/locales.php:306 ../cache/locales.php:339 +msgid "Discover and register to the groups you are interested in" +msgstr "" + +#: ../cache/locales.php:307 ../cache/locales.php:340 ../cache/locales.php:482 +msgid "Preview" +msgstr "" + +#: ../cache/locales.php:308 ../cache/locales.php:341 ../cache/locales.php:478 +msgid "Help" +msgstr "Ayuda" + +#: ../cache/locales.php:309 ../cache/locales.php:342 +msgid "More help" +msgstr "" + +#: ../cache/locales.php:310 ../cache/locales.php:343 +msgid "Markdown syntax manual" +msgstr "" + +#: ../cache/locales.php:311 ../cache/locales.php:344 ../cache/locales.php:681 +msgid "Title" +msgstr "" + +#: ../cache/locales.php:312 ../cache/locales.php:345 +msgid "Content" +msgstr "" + +#: ../cache/locales.php:313 ../cache/locales.php:346 +msgid "Link" +msgstr "Enlace" + +#: ../cache/locales.php:314 ../cache/locales.php:347 +msgid "Tags" +msgstr "" + +#: ../cache/locales.php:315 ../cache/locales.php:348 +msgid "Please enter a valid url" +msgstr "" + +#: ../cache/locales.php:316 ../cache/locales.php:349 +msgid "No content to preview" +msgstr "" + +#: ../cache/locales.php:317 ../cache/locales.php:350 ../cache/locales.php:687 +msgid "No content" +msgstr "No hay contenido" + +#: ../cache/locales.php:318 ../cache/locales.php:351 +msgid "Post published" +msgstr "" + +#: ../cache/locales.php:319 ../cache/locales.php:352 +msgid "Post deleted" +msgstr "" + +#: ../cache/locales.php:320 ../cache/locales.php:353 +msgid "This picture will be added to your gallery" +msgstr "" + +#: ../cache/locales.php:321 ../cache/locales.php:354 +msgid "What's Hot" +msgstr "" + +#: ../cache/locales.php:322 ../cache/locales.php:355 +msgid "New post" +msgstr "" + +#: ../cache/locales.php:323 ../cache/locales.php:357 +msgid "" +"You can also use services like Imgur or Flickr to host your picture and " +"paste the link here." +msgstr "" + +#: ../cache/locales.php:324 +#, php-format +msgid "This is a re-post from %s" +msgstr "" + +#: ../cache/locales.php:325 +#, php-format +msgid "See %s profile" +msgstr "" + +#: ../cache/locales.php:326 +msgid "Publish this post on your public feed?" +msgstr "" + +#: ../cache/locales.php:327 +msgid "Post published on your blog" +msgstr "" + +#: ../cache/locales.php:328 +msgid "Post removed from your blog" +msgstr "" + +#: ../cache/locales.php:329 ../cache/locales.php:701 +msgid "Delete this post" +msgstr "" + +#: ../cache/locales.php:330 +msgid "You are going to delete this post, please confirm your action" +msgstr "" + +#: ../cache/locales.php:331 +msgid "Comments disabled" +msgstr "" + +#: ../cache/locales.php:332 +msgid "Comment published" +msgstr "" + +#: ../cache/locales.php:333 +msgid "Disconnect" +msgstr "" + +#: ../cache/locales.php:334 +msgid "Your status here !" +msgstr "" + +#: ../cache/locales.php:335 +msgid "Status updated" +msgstr "Actualizar estado" + +#: ../cache/locales.php:336 +msgid "Status" +msgstr "" + +#: ../cache/locales.php:337 +msgid "Presence" +msgstr "" + +#: ../cache/locales.php:356 +msgid "Publish" +msgstr "" + +#: ../cache/locales.php:358 +msgid "You cannot publish a post on this Group" +msgstr "" + +#: ../cache/locales.php:359 +msgid "" +"Some fields have been filled in. Do you still want to go back and loose " +"their content?" +msgstr "" + +#: ../cache/locales.php:360 +msgid "Shared" +msgstr "" + +#: ../cache/locales.php:362 +#, php-format +msgid "%s has been added to your public groups" +msgstr "" + +#: ../cache/locales.php:363 +#, php-format +msgid "%s has been removed from your public groups" +msgstr "%s ha sido eliminado de tus grupos públicos" + +#: ../cache/locales.php:364 +msgid "Add a chatroom" +msgstr "" + +#: ../cache/locales.php:365 +msgid "You don't have any chatroom yet." +msgstr "" + +#: ../cache/locales.php:366 +msgid "Add one by clicking on the add button in the header." +msgstr "" + +#: ../cache/locales.php:367 +msgid "Chatrooms" +msgstr "" + +#: ../cache/locales.php:370 +msgid "My Favorite Room" +msgstr "" + +#: ../cache/locales.php:374 +msgid "Remove a chatroom" +msgstr "" + +#: ../cache/locales.php:375 +msgid "" +"You are going to remove the following chatroom. Please confirm your action." +msgstr "" + +#: ../cache/locales.php:378 +msgid "Users in the room" +msgstr "" + +#: ../cache/locales.php:379 +msgid "Please enter a correct nickname (6 to 40 characters)" +msgstr "" + +#: ../cache/locales.php:381 +msgid "Public chatroom" +msgstr "" + +#: ../cache/locales.php:382 +msgid "Please provide a room address" +msgstr "" + +#: ../cache/locales.php:383 +msgid "You are currently logued as an anonymous user." +msgstr "" + +#: ../cache/locales.php:384 +msgid "" +"You can join using your own account or create one on the login page by " +"loging out using the cross in the top-right corner." +msgstr "" + +#: ../cache/locales.php:385 +#, php-format +msgid "Login on %s" +msgstr "" + +#: ../cache/locales.php:386 +msgid "Your nickname" +msgstr "" + +#: ../cache/locales.php:387 +msgid "Ungrouped" +msgstr "Sin grupo" + +#: ../cache/locales.php:388 +msgid "Show disconnected contacts" +msgstr "" + +#: ../cache/locales.php:389 +msgid "Hide disconnected contacts" +msgstr "" + +#: ../cache/locales.php:390 +#, php-format +msgid "Show group %s" +msgstr "" + +#: ../cache/locales.php:391 +#, php-format +msgid "Hide group %s" +msgstr "" + +#: ../cache/locales.php:392 +msgid "Please enter a valid Jabber ID" +msgstr "Por favor, ingresa un Jabber ID válido" + +#: ../cache/locales.php:393 +msgid "" +"No contacts ? You can add one using the + button bellow or going to the " +"Explore page" +msgstr "" + +#: ../cache/locales.php:394 +msgid "Show/Hide" +msgstr "" + +#: ../cache/locales.php:395 +msgid "Enter the Jabber ID of your contact." +msgstr "" + +#: ../cache/locales.php:396 +msgid "Press enter to validate." +msgstr "" + +#: ../cache/locales.php:397 +msgid "JID" +msgstr "" + +#: ../cache/locales.php:398 +msgid "Results" +msgstr "" + +#: ../cache/locales.php:399 +msgid "Contact added" +msgstr "" + +#: ../cache/locales.php:401 +msgid "Contact deleted" +msgstr "" + +#: ../cache/locales.php:403 msgid "This is not a valid url" msgstr "" -#: [share]success +#: ../cache/locales.php:404 msgid "Sharing the URL" msgstr "" -#: [statistics]title +#: ../cache/locales.php:405 msgid "Statistics" msgstr "" -#: [statistics]since +#: ../cache/locales.php:406 msgid "Since" msgstr "" -#: [statistics]sessions +#: ../cache/locales.php:407 msgid "Sessions" msgstr "" -#: [statistics]monthly_sub +#: ../cache/locales.php:409 msgid "Monthly Subscriptions" msgstr "" -#: [statistics]monthly_sub_cum +#: ../cache/locales.php:410 msgid "Monthly Subscriptions Cumulated" 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." +#: ../cache/locales.php:412 +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." -#: [subscribe]server_question +#: ../cache/locales.php:413 msgid "Your server here ?" msgstr "" -#: [subscribe]server_contact +#: ../cache/locales.php:414 msgid "Contact us to add yours to the officially supported servers list" msgstr "" -#: [feed]nope +#: ../cache/locales.php:416 msgid "No public feed for this contact" msgstr "" -#: [feed]nope_contact +#: ../cache/locales.php:417 msgid "No contact specified" msgstr "" -#: [upload]title -#, fuzzy -msgid "Upload a file" -msgstr "Subir" - -#: [upload]choose -msgid "Choose a file to upload" -msgstr "" - -#: [vcard]title [page]profile +#: ../cache/locales.php:418 ../cache/locales.php:473 msgid "Profile" msgstr "Perfil" -#: [vcard]updated +#: ../cache/locales.php:419 msgid "Profile Updated" msgstr "Perfil actualizado" -#: [vcard]not_updated +#: ../cache/locales.php:420 msgid "Profile Not Updated" msgstr "" -#: [vcard]public +#: ../cache/locales.php:421 msgid "Your profile is now public" msgstr "" -#: [vcard]restricted +#: ../cache/locales.php:422 msgid "Your profile is now restricted" msgstr "" -#: [general]nickname -#, fuzzy -msgctxt "[general]nickname" -msgid "Nickname" -msgstr "Apodo" - -#: [accounts]twitter +#: ../cache/locales.php:436 msgid "Twitter" msgstr "" -#: [accounts]skype +#: ../cache/locales.php:437 msgid "Skype" msgstr "" -#: [accounts]yahoo +#: ../cache/locales.php:438 msgid "Yahoo" msgstr "" -#: [accounts]accounts_nickname -#, fuzzy -msgctxt "[accounts]accounts_nickname" -msgid "Nickname" -msgstr "Apodo" - -#: [accounts]accounts_yahoo -#, fuzzy -msgid "Yahoo Account" -msgstr "%s - Cuenta" - -#: [privacy]privacy_title +#: ../cache/locales.php:439 msgid "Privacy Level" msgstr "Nivel de privacidad" -#: [privacy]privacy_question +#: ../cache/locales.php:440 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." -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 -msgid "Submit" -msgstr "Enviar" - -#: [save]reset [button]reset -msgid "Reset" -msgstr "Reiniciar" - -#: [visio]hung_up -msgid "Hung up" +#: ../cache/locales.php:441 +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." 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." -#: [visio]busy -msgid "Your contact is busy" -msgstr "" - -#: [visio]declined -msgid "Declined" -msgstr "" - -#: [visio]calling -msgid "Is calling you" -msgstr "" - -#: [visio]call +#: ../cache/locales.php:442 msgid "Call" msgstr "" -#: [visio]hang_up +#: ../cache/locales.php:443 msgid "Hang up" msgstr "" -#: [visio]connection +#: ../cache/locales.php:444 msgid "Connection" msgstr "" -#: [global]no_js +#: ../cache/locales.php:445 ../cache/locales.php:451 +msgid "Hung up" +msgstr "" + +#: ../cache/locales.php:446 ../cache/locales.php:452 +msgid "Your contact is busy" +msgstr "" + +#: ../cache/locales.php:447 ../cache/locales.php:453 +msgid "Declined" +msgstr "" + +#: ../cache/locales.php:448 ../cache/locales.php:454 +msgid "Remote application incompatible" +msgstr "" + +#: ../cache/locales.php:450 ../cache/locales.php:456 +msgid "Is calling you" +msgstr "" + +#: ../cache/locales.php:457 msgid "You don't have javascript enabled. Good luck with that." msgstr "" -#: [global]description -msgid "Movim is a kickass distributed social networking platform that protect your privacy an comes with a set of awesome features." +#: ../cache/locales.php:458 +msgid "" +"Movim is a kickass distributed social networking platform that protect your " +"privacy an comes with a set of awesome features." msgstr "" -#: [page]administration +#: ../cache/locales.php:459 msgid "Administration" msgstr "Administración" -#: [page]home +#: ../cache/locales.php:460 msgid "Home" msgstr "Inicio" -#: [page]discover +#: ../cache/locales.php:461 msgid "Discover" msgstr "Descubrir" -#: [page]explore +#: ../cache/locales.php:462 msgid "Explore" msgstr "Explorar" -#: [page]account_creation +#: ../cache/locales.php:463 msgid "Account Creation" msgstr "Crear cuenta" -#: [page]avatar +#: ../cache/locales.php:464 +msgid "News" +msgstr "Novedades" + +#: ../cache/locales.php:465 msgid "Avatar" msgstr "Imagen de perfil" -#: [page]chats +#: ../cache/locales.php:467 msgid "Chats" msgstr "" -#: [page]server +#: ../cache/locales.php:470 msgid "Server" msgstr "Servidor" -#: [page]public_groups +#: ../cache/locales.php:471 msgid "Public Groups" msgstr "Grupos públicos" -#: [page]viewer +#: ../cache/locales.php:472 msgid "Viewer" msgstr "Visor" -#: [page]media +#: ../cache/locales.php:474 msgid "Media" msgstr "Multimedia" -#: [page]blog +#: ../cache/locales.php:475 msgid "Blog" msgstr "Blog" -#: [page]about +#: ../cache/locales.php:476 msgid "About" msgstr "Acerca de" -#: [page]login +#: ../cache/locales.php:477 msgid "Login" msgstr "" -#: [page]feed +#: ../cache/locales.php:479 msgid "Feed" msgstr "Canal" -#: [page]gallery +#: ../cache/locales.php:481 msgid "Gallery" msgstr "" -#: [page]visio +#: ../cache/locales.php:483 msgid "Visio-conference" msgstr "" -#: [page]pods +#: ../cache/locales.php:484 msgid "Pods" msgstr "" -#: [page]share +#: ../cache/locales.php:485 msgid "Share" msgstr "" -#: [page]room +#: ../cache/locales.php:486 msgid "Room" msgstr "" -#: [error]error +#: ../cache/locales.php:487 +#, php-format msgid "Error: %s" msgstr "Error: %s" -#: [error]cannot_load_file +#: ../cache/locales.php:488 +#, php-format msgid "Cannot load file '%s'" msgstr "No se pudo cargar el archivo '%s'" -#: [error]route +#: ../cache/locales.php:489 +#, php-format msgid "Route error, please set all the parameters for the page %s" -msgstr "Error de ruta, por favor establezca todos los parámetros para la página %s" +msgstr "" +"Error de ruta, por favor establezca todos los parámetros para la página %s" -#: [error]widget_load_error +#: ../cache/locales.php:490 +#, php-format msgid "Requested widget '%s' doesn't exist." msgstr "" -#: [error]widget_call_error +#: ../cache/locales.php:491 +#, php-format msgid "Requested event '%s' not registered." msgstr "" -#: [error]whoops +#: ../cache/locales.php:492 msgid "Whoops!" msgstr "" -#: [error]media_not_found +#: ../cache/locales.php:493 msgid "It seem that you don't have any pictures here?" msgstr "" -#: [error]media_ask_upload +#: ../cache/locales.php:494 msgid "You can try to upload a couple by going to the Media page" msgstr "" -#: [title]about +#: ../cache/locales.php:495 +#, php-format msgid "%s - About" msgstr "%s - Acerca de" -#: [title]account +#: ../cache/locales.php:496 +#, php-format msgid "%s - Account" msgstr "%s - Cuenta" -#: [title]administration +#: ../cache/locales.php:497 +#, php-format msgid "%s - Administration Panel" msgstr "%s - Panel de administración" -#: [title]blog +#: ../cache/locales.php:498 +#, php-format msgid "%s - Blog" msgstr "" -#: [title]configuration +#: ../cache/locales.php:499 +#, php-format msgid "%s - Configuration" msgstr "%s - Configuración" -#: [title]discover +#: ../cache/locales.php:500 +#, php-format msgid "%s - Discover" msgstr "%s - Descubrir" -#: [title]explore +#: ../cache/locales.php:501 +#, php-format msgid "%s - Explore" msgstr "%s - Explorar" -#: [title]help +#: ../cache/locales.php:502 +#, php-format msgid "%s - Help Page" msgstr "%s - Página de Ayuda" -#: [title]login +#: ../cache/locales.php:503 +#, php-format msgid "%s - Login to Movim" msgstr "%s - Conectarse a Movim" -#: [title]main +#: ../cache/locales.php:504 +#, php-format msgid "%s - Welcome to Movim" msgstr "%s - Bienvenido a Movim" -#: [title]media +#: ../cache/locales.php:505 +#, php-format msgid "%s - Media" msgstr "" -#: [title]news +#: ../cache/locales.php:506 +#, php-format msgid "%s - News" msgstr "%s - Noticias" -#: [title]node_configuration +#: ../cache/locales.php:507 +#, php-format msgid "%s - Group Configuration" msgstr "" -#: [title]node +#: ../cache/locales.php:508 +#, php-format msgid "%s - Group" msgstr "" -#: [title]not_found +#: ../cache/locales.php:509 +#, php-format msgid "%s - 404" msgstr "" -#: [title]profile +#: ../cache/locales.php:510 +#, php-format msgid "%s - Profile" msgstr "%s - Perfil" -#: [title]server +#: ../cache/locales.php:511 +#, php-format msgid "%s - Server" msgstr "" -#: [button]validate +#: ../cache/locales.php:512 msgid "Validate" msgstr "Validar" -#: [button]refresh +#: ../cache/locales.php:513 msgid "Refresh" msgstr "Actualizar" -#: [button]add +#: ../cache/locales.php:514 msgid "Add" msgstr "Agregar" -#: [button]delete +#: ../cache/locales.php:515 msgid "Delete" msgstr "" -#: [button]cancel +#: ../cache/locales.php:516 +msgid "Remove" +msgstr "" + +#: ../cache/locales.php:517 msgid "Cancel" msgstr "Cancelar" -#: [button]close +#: ../cache/locales.php:518 msgid "Close" msgstr "Cerrar" -#: [button]update +#: ../cache/locales.php:519 msgid "Update" msgstr "Actualizar" -#: [button]updating +#: ../cache/locales.php:520 msgid "Updating" msgstr "Actualizando" -#: [button]submitting +#: ../cache/locales.php:521 +msgid "Submit" +msgstr "Enviar" + +#: ../cache/locales.php:522 msgid "Submitting" msgstr "Enviando" -#: [button]register +#: ../cache/locales.php:523 +msgid "Reset" +msgstr "Reiniciar" + +#: ../cache/locales.php:524 msgid "Register" msgstr "" -#: [button]unregister +#: ../cache/locales.php:525 msgid "Unregister" msgstr "" -#: [button]save +#: ../cache/locales.php:526 msgid "Save" msgstr "Guardar" -#: [button]clear +#: ../cache/locales.php:527 msgid "Clear" msgstr "" -#: [button]upload +#: ../cache/locales.php:528 msgid "Upload" msgstr "Subir" -#: [button]come_in +#: ../cache/locales.php:529 msgid "Come in!" msgstr "¡Apúntate!" -#: [button]connecting +#: ../cache/locales.php:530 msgid "Connecting" msgstr "" -#: [button]bool_yes +#: ../cache/locales.php:531 msgid "Yes" msgstr "Sí" -#: [button]bool_no +#: ../cache/locales.php:532 msgid "No" msgstr "No" -#: [button]return +#: ../cache/locales.php:534 msgid "Return" msgstr "" -#: [button]accept +#: ../cache/locales.php:535 msgid "Accept" msgstr "Aceptar" -#: [button]refuse +#: ../cache/locales.php:536 msgid "Refuse" msgstr "" -#: [button]next +#: ../cache/locales.php:537 msgid "Next" msgstr "" -#: [button]previous +#: ../cache/locales.php:538 msgid "Previous" msgstr "" -#: [step]step +#: ../cache/locales.php:539 +#, php-format msgid "Step %s" msgstr "" -#: [day]title +#: ../cache/locales.php:542 msgid "Day" msgstr "Día" -#: [day]monday +#: ../cache/locales.php:543 msgid "Monday" msgstr "Lunes" -#: [day]tuesday +#: ../cache/locales.php:544 msgid "Tuesday" msgstr "Martes" -#: [day]wednesday +#: ../cache/locales.php:545 msgid "Wednesday" msgstr "Miércoles" -#: [day]thursday +#: ../cache/locales.php:546 msgid "Thursday" msgstr "Jueves" -#: [day]friday +#: ../cache/locales.php:547 msgid "Friday" msgstr "Viernes" -#: [day]saturday +#: ../cache/locales.php:548 msgid "Saturday" msgstr "Sábado" -#: [day]sunday +#: ../cache/locales.php:549 msgid "Sunday" msgstr "" -#: [gender]nil -#, fuzzy -msgctxt "[gender]nil" +#: ../cache/locales.php:550 ../cache/locales.php:559 msgid "None" msgstr "Ninguno" -#: [gender]male +#: ../cache/locales.php:551 msgid "Male" msgstr "Masculino" -#: [gender]female +#: ../cache/locales.php:552 msgid "Female" msgstr "Femenino" -#: [gender]other +#: ../cache/locales.php:553 msgid "Other" msgstr "Otro" -#: [client]bot +#: ../cache/locales.php:554 msgid "Bot" msgstr "Bot" -#: [client]desktop +#: ../cache/locales.php:555 msgid "Desktop" msgstr "Escritorio" -#: [client]phone +#: ../cache/locales.php:556 msgid "Phone" msgstr "Teléfono" -#: [client]web +#: ../cache/locales.php:557 msgid "Web" msgstr "Web" -#: [client]registered +#: ../cache/locales.php:558 msgid "Registered" msgstr "Registrado" -#: [marital]nil -#, fuzzy -msgctxt "[marital]nil" -msgid "None" -msgstr "Ninguno" - -#: [marital]single +#: ../cache/locales.php:560 msgid "Single" msgstr "Soltero (a)" -#: [marital]relationship +#: ../cache/locales.php:561 msgid "In a relationship" msgstr "En una relación" -#: [marital]married +#: ../cache/locales.php:562 msgid "Married" msgstr "Casado (a)" -#: [marital]divorced +#: ../cache/locales.php:563 msgid "Divorced" msgstr "Divorciado (a)" -#: [marital]widowed +#: ../cache/locales.php:564 msgid "Widowed" msgstr "Viudo (a)" -#: [marital]cohabiting +#: ../cache/locales.php:565 msgid "Cohabiting" msgstr "Cohabitando" -#: [marital]union +#: ../cache/locales.php:566 msgid "Civil Union" msgstr "Unión civil" -#: [flag]white +#: ../cache/locales.php:567 msgid "Not shared" msgstr "No compartido" -#: [flag]green +#: ../cache/locales.php:568 msgid "Shared with one contact" msgstr "Compartir con un contacto" -#: [flag]orange +#: ../cache/locales.php:569 msgid "Shared with all contacts" msgstr "Compartir con todos los contactos" -#: [flag]red +#: ../cache/locales.php:570 msgid "Shared with the XMPP network" msgstr "Compartir con la red XMPP" -#: [flag]black +#: ../cache/locales.php:571 msgid "Shared with the whole Internet" msgstr "Compartir con todos en internet" -#: [presence]online +#: ../cache/locales.php:572 msgid "Online" msgstr "En línea" -#: [presence]away +#: ../cache/locales.php:573 msgid "Away" msgstr "Ausente" -#: [presence]dnd +#: ../cache/locales.php:574 msgid "Do Not Disturb" msgstr "No molestar" -#: [presence]xa +#: ../cache/locales.php:575 msgid "Extended Away" msgstr "Ausencia extendida" -#: [presence]offline +#: ../cache/locales.php:576 msgid "Offline" msgstr "Fuera de Línea" -#: [presence]error +#: ../cache/locales.php:577 msgid "Error" msgstr "Error" -#: [mood]afraid +#: ../cache/locales.php:578 msgid "afraid" msgstr "temeroso" -#: [mood]amazed +#: ../cache/locales.php:579 msgid "amazed" msgstr "asombrado" -#: [mood]amorous +#: ../cache/locales.php:580 msgid "amorous" msgstr "amoroso" -#: [mood]angry +#: ../cache/locales.php:581 msgid "angry" msgstr "enfadado" -#: [mood]annoyed +#: ../cache/locales.php:582 msgid "annoyed" msgstr "molesto" -#: [mood]anxious +#: ../cache/locales.php:583 msgid "anxious" msgstr "ansioso" -#: [mood]aroused +#: ../cache/locales.php:584 msgid "aroused" msgstr "despertado" -#: [mood]ashamed +#: ../cache/locales.php:585 msgid "ashamed" msgstr "avergonzado" -#: [mood]bored +#: ../cache/locales.php:586 msgid "bored" msgstr "aburrido" -#: [mood]brave +#: ../cache/locales.php:587 msgid "brave" msgstr "valiente" -#: [mood]calm +#: ../cache/locales.php:588 msgid "calm" msgstr "calmado" -#: [mood]cautious +#: ../cache/locales.php:589 msgid "cautious" msgstr "cauteloso" -#: [mood]cold +#: ../cache/locales.php:590 msgid "cold" msgstr "frío" -#: [mood]confident +#: ../cache/locales.php:591 msgid "confident" msgstr "seguro" -#: [mood]confused +#: ../cache/locales.php:592 msgid "confused" msgstr "confuso" -#: [mood]contemplative +#: ../cache/locales.php:593 msgid "contemplative" msgstr "contemplativo" -#: [mood]contented +#: ../cache/locales.php:594 msgid "contented" msgstr "contento" -#: [mood]cranky +#: ../cache/locales.php:595 msgid "cranky" msgstr "irritable" -#: [mood]crazy +#: ../cache/locales.php:596 msgid "crazy" msgstr "loco" -#: [mood]creative +#: ../cache/locales.php:597 msgid "creative" msgstr "creativo" -#: [mood]curious +#: ../cache/locales.php:598 msgid "curious" msgstr "curioso" -#: [mood]dejected +#: ../cache/locales.php:599 msgid "dejected" msgstr "abatido" -#: [mood]depressed +#: ../cache/locales.php:600 msgid "depressed" msgstr "deprimido" -#: [mood]disappointed +#: ../cache/locales.php:601 msgid "disappointed" msgstr "decepcionado" -#: [mood]disgusted +#: ../cache/locales.php:602 msgid "disgusted" msgstr "disgustado" -#: [mood]dismayed +#: ../cache/locales.php:603 msgid "dismayed" msgstr "desmayado" -#: [mood]distracted +#: ../cache/locales.php:604 msgid "distracted" msgstr "distraído" -#: [mood]embarrassed +#: ../cache/locales.php:605 msgid "embarrassed" msgstr "avergonzado" -#: [mood]envious +#: ../cache/locales.php:606 msgid "envious" msgstr "envidioso" -#: [mood]excited +#: ../cache/locales.php:607 msgid "excited" msgstr "excitado" -#: [mood]flirtatious +#: ../cache/locales.php:608 msgid "flirtatious" msgstr "coqueto" -#: [mood]frustated +#: ../cache/locales.php:609 msgid "frustated" msgstr "" -#: [mood]grateful +#: ../cache/locales.php:610 msgid "grateful" msgstr "agradecido" -#: [mood]grieving +#: ../cache/locales.php:611 msgid "grieving" msgstr "dolido" -#: [mood]grumpy +#: ../cache/locales.php:612 msgid "grumpy" msgstr "gruñón" -#: [mood]guilty +#: ../cache/locales.php:613 msgid "guilty" msgstr "culpable" -#: [mood]happy +#: ../cache/locales.php:614 msgid "happy" msgstr "feliz" -#: [mood]hopeful +#: ../cache/locales.php:615 msgid "hopeful" msgstr "esperanzado" -#: [mood]hot +#: ../cache/locales.php:616 msgid "hot" msgstr "caliente" -#: [mood]humbled +#: ../cache/locales.php:617 msgid "humbled" msgstr "humilde" -#: [mood]humiliated +#: ../cache/locales.php:618 msgid "humiliated" msgstr "humillado" -#: [mood]hungry +#: ../cache/locales.php:619 msgid "hungry" msgstr "hambriento" -#: [mood]hurt +#: ../cache/locales.php:620 msgid "hurt" msgstr "herido" -#: [mood]impressed +#: ../cache/locales.php:621 msgid "impressed" msgstr "impresionado" -#: [mood]in_awe +#: ../cache/locales.php:622 msgid "in awe" msgstr "temeroso" -#: [mood]in_love +#: ../cache/locales.php:623 msgid "in love" msgstr "enamorado" -#: [mood]indignant +#: ../cache/locales.php:624 msgid "indignant" msgstr "" -#: [mood]interested +#: ../cache/locales.php:625 msgid "interested" msgstr "interesado" -#: [mood]intoxicated +#: ../cache/locales.php:626 msgid "intoxicated" msgstr "intoxicado" -#: [mood]invincible +#: ../cache/locales.php:627 msgid "invincible" msgstr "invencible" -#: [mood]jealous +#: ../cache/locales.php:628 msgid "jealous" msgstr "celoso" -#: [mood]lonely +#: ../cache/locales.php:629 msgid "lonely" msgstr "solitario" -#: [mood]lost +#: ../cache/locales.php:630 msgid "lost" msgstr "perdido" -#: [mood]lucky +#: ../cache/locales.php:631 msgid "lucky" msgstr "afortunado" -#: [mood]mean +#: ../cache/locales.php:632 msgid "mean" msgstr "media" -#: [mood]moody +#: ../cache/locales.php:633 msgid "moody" msgstr "variable" -#: [mood]nervous +#: ../cache/locales.php:634 msgid "nervous" msgstr "nervioso" -#: [mood]neutral +#: ../cache/locales.php:635 msgid "neutral" msgstr "neutral" -#: [mood]offended +#: ../cache/locales.php:636 msgid "offended" msgstr "ofendido" -#: [mood]outraged +#: ../cache/locales.php:637 msgid "outraged" msgstr "indignado" -#: [mood]playful +#: ../cache/locales.php:638 msgid "playful" msgstr "juguetón" -#: [mood]proud +#: ../cache/locales.php:639 msgid "proud" msgstr "orgulloso" -#: [mood]relaxed +#: ../cache/locales.php:640 msgid "relaxed" msgstr "relajado" -#: [mood]relieved +#: ../cache/locales.php:641 msgid "relieved" msgstr "aliviado" -#: [mood]restless +#: ../cache/locales.php:642 +msgid "remorseful" +msgstr "arrepentido" + +#: ../cache/locales.php:643 msgid "restless" msgstr "inquieto" -#: [mood]sad +#: ../cache/locales.php:644 msgid "sad" msgstr "triste" -#: [mood]sarcastic +#: ../cache/locales.php:645 msgid "sarcastic" msgstr "sarcástico" -#: [mood]satisfied +#: ../cache/locales.php:646 msgid "satisfied" msgstr "satisfecho" -#: [mood]serious +#: ../cache/locales.php:647 msgid "serious" msgstr "serio" -#: [mood]shocked +#: ../cache/locales.php:648 msgid "shocked" msgstr "conmocionado" -#: [mood]shy +#: ../cache/locales.php:649 msgid "shy" msgstr "tímido" -#: [mood]sick +#: ../cache/locales.php:650 msgid "sick" msgstr "enfermo" -#: [mood]sleepy +#: ../cache/locales.php:651 msgid "sleepy" msgstr "soñoliento" -#: [mood]spontaneous +#: ../cache/locales.php:652 msgid "spontaneous" msgstr "espontáneo" -#: [mood]stressed +#: ../cache/locales.php:653 msgid "stressed" msgstr "estresado" -#: [mood]strong +#: ../cache/locales.php:654 msgid "strong" msgstr "fuerte" -#: [mood]surprised +#: ../cache/locales.php:655 msgid "surprised" msgstr "sorprendido" -#: [mood]thankful +#: ../cache/locales.php:656 msgid "thankful" msgstr "agradecido" -#: [mood]thirsty +#: ../cache/locales.php:657 msgid "thirsty" msgstr "sediento" -#: [mood]tired +#: ../cache/locales.php:658 msgid "tired" msgstr "cansado" -#: [mood]undefined +#: ../cache/locales.php:659 msgid "undefined" msgstr "indefinido" -#: [mood]weak +#: ../cache/locales.php:660 msgid "weak" msgstr "débil" -#: [mood]worried +#: ../cache/locales.php:661 msgid "worried" msgstr "preocupado" -#: [month]title +#: ../cache/locales.php:662 msgid "Month" msgstr "Mes" -#: [month]january +#: ../cache/locales.php:663 msgid "January" msgstr "Enero" -#: [month]february +#: ../cache/locales.php:664 msgid "February" msgstr "Febrero" -#: [month]march +#: ../cache/locales.php:665 msgid "March" msgstr "Marzo" -#: [month]april +#: ../cache/locales.php:666 msgid "April" msgstr "Abril" -#: [month]may +#: ../cache/locales.php:667 msgid "May" msgstr "Mayo" -#: [month]june +#: ../cache/locales.php:668 msgid "June" msgstr "Junio" -#: [month]july +#: ../cache/locales.php:669 msgid "July" msgstr "Julio" -#: [month]august +#: ../cache/locales.php:670 msgid "August" msgstr "Agosto" -#: [month]september +#: ../cache/locales.php:671 msgid "September" msgstr "Septiembre" -#: [month]october +#: ../cache/locales.php:672 msgid "October" msgstr "Octubre" -#: [month]november +#: ../cache/locales.php:673 msgid "November" msgstr "Noviembre" -#: [month]december +#: ../cache/locales.php:674 msgid "December" msgstr "Diciembre" -#: [year]title +#: ../cache/locales.php:675 msgid "Year" msgstr "Año" -#: [date]today +#: ../cache/locales.php:676 msgid "Today" msgstr "Hoy" -#: [date]tomorrow +#: ../cache/locales.php:677 msgid "Tomorrow" msgstr "Mañana" -#: [date]yesterday +#: ../cache/locales.php:678 msgid "Yesterday" msgstr "Ayer" -#: [date]ago -#, fuzzy -msgid "%d days ago" +#: ../cache/locales.php:679 +#, php-format +msgid " %d days ago" msgstr " %d días atrás" -#: [date]day +#: ../cache/locales.php:680 msgid "day" msgstr "día" -#: [post]whats_new +#: ../cache/locales.php:682 msgid "What's new ?" msgstr "" -#: [post]place +#: ../cache/locales.php:683 msgid "Place" msgstr "Lugar" -#: [post]by +#: ../cache/locales.php:684 msgid "by" msgstr "" -#: [post]geolocalisation +#: ../cache/locales.php:685 msgid "Geolocalisation" msgstr "" -#: [post]email +#: ../cache/locales.php:686 msgid "email" msgstr "" -#: [post]no_comments +#: ../cache/locales.php:688 msgid "No comments yet" msgstr "" -#: [post]no_comments_stream +#: ../cache/locales.php:689 msgid "No comments stream" msgstr "No hay comentarios stream" -#: [post]no_load +#: ../cache/locales.php:690 msgid "Your feed cannot be loaded." msgstr "Tu canal no se pudo cargar" -#: [post]older +#: ../cache/locales.php:691 msgid "Get older posts" msgstr "Recibir las entradas más antiguas" -#: [post]new_items +#: ../cache/locales.php:692 +#, php-format msgid "%s new items" msgstr "" -#: [post]comment_error +#: ../cache/locales.php:693 msgid "Comment publication error" msgstr "Error al publicar comentario" -#: [post]comments_older +#: ../cache/locales.php:694 msgid "Show the older comments" msgstr "Mostrar los comentarios antiguos" -#: [post]comments_loading -#, fuzzy -msgid "Loading comments..." -msgstr "Cargando tu canal" +#: ../cache/locales.php:695 +msgid "Loading comments ..." +msgstr "" -#: [post]comments_get +#: ../cache/locales.php:696 msgid "Get the comments" msgstr "" -#: [post]comment_add +#: ../cache/locales.php:697 msgid "Add a comment" msgstr "" -#: [post]share +#: ../cache/locales.php:698 msgid "Share with" msgstr "" -#: [post]share_everyone +#: ../cache/locales.php:699 msgid "Everyone" msgstr "" -#: [post]share_your_contacts +#: ../cache/locales.php:700 msgid "Your contacts" msgstr "" -#: [post]updated +#: ../cache/locales.php:702 msgid "Updated" msgstr "" -#: [post]content_not_found +#: ../cache/locales.php:703 msgid "Content not found" msgstr "" -#: [post]default_title +#: ../cache/locales.php:704 msgid "Contact publication" msgstr "" -#: [post]comments +#: ../cache/locales.php:705 msgid "Comments" msgstr "" -#: [api]error +#: ../cache/locales.php:706 msgid "The API is not reachable, try again later" msgstr "" -#: [field]type_here +#: ../cache/locales.php:707 msgid "Type here" msgstr "" -#~ msgid "Environment" -#~ msgstr "Entorno" - -#~ msgid "You can login with Facebook (chat only) using %syour.id@chat.facebook.com%s and your password" -#~ msgstr "Puedes loguearte con tu cuenta de Facebook (solo chat) usando %stu.usuario@chat.facebook.com%s y tu contraseña" - -#~ msgid "%sGmail accounts are also compatible%s but are not fully supported" -#~ msgstr "%s Las cuentas de Gmail también son compatibles %s pero no están totalmente soportadas" - -#~ msgid "%s has been removed from your public groups" -#~ msgstr "%s ha sido eliminado de tus grupos públicos" - -#~ msgid "remorseful" -#~ msgstr "arrepentido" - +#, php-format #~ msgid "%s - Account Creation" #~ msgstr "%s - Crear cuenta" @@ -2776,12 +2643,15 @@ msgstr "" #~ msgid "Actual version : " #~ msgstr "Versión actual: " +#, php-format #~ msgid "Install %s and %s packages" #~ msgstr "Instala %s y %s paquetes" +#, php-format #~ msgid "Couldn't create directory '%s'." #~ msgstr "No se pudo crear el directorio '%s'." +#, php-format #~ msgid "Please remove the %s folder in order to complete the installation" #~ msgstr "Por favor, borra la %s carpeta para poder completar la instalación" @@ -2797,11 +2667,19 @@ msgstr "" #~ msgid "Connecting..." #~ msgstr "Conectando…" +#~ msgid "Remove this contact" +#~ msgstr "Borrar contacto" + +#~ msgid "Loading your feed ..." +#~ msgstr "Cargando tu canal" + #~ msgid "Loading the contact feed ..." #~ msgstr "Cargando el canal del contacto..." +#, php-format #~ msgid "You can now access your shiny Movim instance %sJump In !%s" -#~ msgstr "Ahora puedes acceder a tu brillante Movim de ejemplo %s¡Entra ahora!%s" +#~ msgstr "" +#~ "Ahora puedes acceder a tu brillante Movim de ejemplo %s¡Entra ahora!%s" #~ msgid "Success !" #~ msgstr "¡Éxito!" @@ -2809,9 +2687,11 @@ msgstr "" #~ msgid "JID not provided." #~ msgstr "Identidad de Jabber no proveída" +#, php-format #~ msgid "Cannot open log file '%s'" #~ msgstr "No se pudo abrir el archivo del log '%s'" +#, php-format #~ msgid "jid '%s' is incorrect" #~ msgstr "Identidad de Jabber '%s' no es correcta" @@ -2836,6 +2716,7 @@ msgstr "" #~ msgid "Invalid name" #~ msgstr "Nombre inválido" +#, php-format #~ msgid "%s - Add An Account" #~ msgstr "%s - Agregar una cuenta" @@ -2878,8 +2759,12 @@ msgstr "" #~ msgid "I can't find the answer to my question here" #~ msgstr "No puedo encontrar la respuesta a mi pregunta aquí" -#~ msgid "Some features are missing/I can't do everything I used to do on other social networks" -#~ msgstr "Algunas características están ausentes / no puedo hacer todo lo que yo solía hacer en otras redes sociales" +#~ msgid "" +#~ "Some features are missing/I can't do everything I used to do on other social " +#~ "networks" +#~ msgstr "" +#~ "Algunas características están ausentes / no puedo hacer todo lo que yo solía " +#~ "hacer en otras redes sociales" #~ msgid "No profile yet ?" #~ msgstr "¿No hay perfil aún?" @@ -2890,8 +2775,12 @@ msgstr "" #~ msgid "Create my vCard" #~ msgstr "Crear mi vCard" -#~ msgid "Some errors were detected. Please correct them for the installation to proceed." -#~ msgstr "Algunos errores fueron detectados. Por favor, corrija ellos para que continúe la instalación." +#~ msgid "" +#~ "Some errors were detected. Please correct them for the installation to " +#~ "proceed." +#~ msgstr "" +#~ "Algunos errores fueron detectados. Por favor, corrija ellos para que " +#~ "continúe la instalación." #~ msgid "Only alphanumerics elements are authorized" #~ msgstr "Sólo los elementos alfanuméricos están autorizados" @@ -2905,11 +2794,21 @@ msgstr "" #~ msgid "terse" #~ msgstr "breve" -#~ msgid "Keep in mind that Movim is still under development and will handle many personal details. Its use can potentially endanger your data. Always pay attention to information that you submit." -#~ msgstr "Tenga en cuenta que Movim está todavía en desarrollo y se encargará de muchos datos de carácter personal. Su uso puede potencialmente poner en peligro sus datos. Siempre preste atención a la información que usted envíe." +#~ msgid "" +#~ "Keep in mind that Movim is still under development and will handle many " +#~ "personal details. Its use can potentially endanger your data. Always pay " +#~ "attention to information that you submit." +#~ msgstr "" +#~ "Tenga en cuenta que Movim está todavía en desarrollo y se encargará de " +#~ "muchos datos de carácter personal. Su uso puede potencialmente poner en " +#~ "peligro sus datos. Siempre preste atención a la información que usted envíe." -#~ msgid "Firstly fill in this blank with a brand new account ID, this address will follow you on all the Movim network !" -#~ msgstr "En primer lugar rellene el espacio en blanco con una identificación de marca nueva cuenta, esta dirección le siga en toda la red Movim!" +#~ msgid "" +#~ "Firstly fill in this blank with a brand new account ID, this address will " +#~ "follow you on all the Movim network !" +#~ msgstr "" +#~ "En primer lugar rellene el espacio en blanco con una identificación de marca " +#~ "nueva cuenta, esta dirección le siga en toda la red Movim!" #~ msgid "Wrong ID" #~ msgstr "Identificación errónea" @@ -2917,53 +2816,74 @@ msgstr "" #~ msgid "Edit my Profile" #~ msgstr "Editar mi perfil" +#, php-format #~ msgid "Contacts (%s)" #~ msgstr "Contactos (%s)" +#, php-format #~ msgid "Movim requires the %s extension." #~ msgstr "Movim requiere la extensión %s" #~ msgid "Update your PHP version or contact your server administrator" -#~ msgstr "Actualice su versión de PHP o contacte con el administrador de su servidor" +#~ msgstr "" +#~ "Actualice su versión de PHP o contacte con el administrador de su servidor" +#, php-format #~ msgid "Install the %s package" #~ msgstr "Instale el paquete %s" #~ msgid "Enable read and write rights on Movim's root folder" -#~ msgstr "Habilite los permisos de lectura y escritura en la carpeta raíz de Movim" +#~ msgstr "" +#~ "Habilite los permisos de lectura y escritura en la carpeta raíz de Movim" #~ msgid "Movim's folder must be writable." #~ msgstr "La carpeta de Movim debe tener permisos de escritura" -#~ msgid "Before you enjoy your social network, a few adjustements are required." -#~ msgstr "Antes de empezar a disfrutar de su red social, son necesarios algunos ajustes." +#~ msgid "" +#~ "Before you enjoy your social network, a few adjustements are required." +#~ msgstr "" +#~ "Antes de empezar a disfrutar de su red social, son necesarios algunos " +#~ "ajustes." #~ msgid "Thank you for downloading Movim!" #~ msgstr "¡Gracias por descargar Movim!" +#, php-format #~ msgid "Couldn't create configuration file '%s'." #~ msgstr "No se pudo crear el archivo de configuración '%s'." #~ msgid "Proxy Preferences" #~ msgstr "Preferencias de Proxy" +#, php-format +#~ msgid "This server hosts %s accounts" +#~ msgstr "Este servidor cuenta %s cuentas" + +#, php-format #~ msgid "Cannot load element value '%s'" #~ msgstr "No se puede cargar el valor del elemento '%s'" #~ msgid "Invite this user" #~ msgstr "Invitar a este usuario" +#, php-format #~ msgid "Bosh connection failed with error '%s'" #~ msgstr "Conexión a Bosh con error '%s'" +#, php-format #~ msgid "Database connection failed with error '%s'" #~ msgstr "Conexión de base de datos con error '%s'" +#, php-format #~ msgid "XMPP connection through Bosh failed with error '%s'" #~ msgstr "Conexión a través de XMPP Bosh falló con error '%s'" -#~ msgid "The following requirements were not met. Please make sure they are all satisfied in order to install Movim." -#~ msgstr "Los siguientes requisitos no están disponibles. Por favor, asegure su disponibilidad para poder instalar Movim." +#~ msgid "" +#~ "The following requirements were not met. Please make sure they are all " +#~ "satisfied in order to install Movim." +#~ msgstr "" +#~ "Los siguientes requisitos no están disponibles. Por favor, asegure su " +#~ "disponibilidad para poder instalar Movim." #~ msgid "Username already taken" #~ msgstr "El nombre de usuario ya está en uso" @@ -2974,23 +2894,51 @@ msgstr "" #~ msgid "Could not communicate with the XMPP server" #~ msgstr "No se pudo comunicar con el servidor XMPP" -#~ msgid "Your server doesn't support post publication, you can only read contact's feeds" -#~ msgstr "Su servidor no permite hacer publicaciones, solo puede leer los aportes de sus contactos" +#~ msgid "" +#~ "Your server doesn't support post publication, you can only read contact's " +#~ "feeds" +#~ msgstr "" +#~ "Su servidor no permite hacer publicaciones, solo puede leer los aportes de " +#~ "sus contactos" #~ msgid "What is Movim?" #~ msgstr "¿Qué es Movim?" -#~ msgid "Visit the page %s What is Movim ? %s to know more about the project, its aims and understand how it works." -#~ msgstr "Visite la página %s ¿Qué es Movim? %s para saber más sobre el proyecto, sus objetivos y entender cómo funciona." +#, php-format +#~ msgid "" +#~ "Visit the page %s What is Movim ? %s to know more about the project, its " +#~ "aims and understand how it works." +#~ msgstr "" +#~ "Visite la página %s ¿Qué es Movim? %s para saber más sobre el proyecto, sus " +#~ "objetivos y entender cómo funciona." -#~ msgid "Although Movim is evolving fast, many (many) features are missing. Be patient ;). You can have a look %s at next versions's roadmaps %s to know if the one you want is on its way." -#~ msgstr "Aunque Movim está evolucionando rápidamente, muchas (muchas) características están ausentes. Tenga paciencia ;). Puede echar un vistazo a %s las rutas de las próximas versiones %s para saber si la que usted desea está en camino." +#, php-format +#~ msgid "" +#~ "Although Movim is evolving fast, many (many) features are missing. Be " +#~ "patient ;). You can have a look %s at next versions's roadmaps %s to know if " +#~ "the one you want is on its way." +#~ msgstr "" +#~ "Aunque Movim está evolucionando rápidamente, muchas (muchas) características " +#~ "están ausentes. Tenga paciencia ;). Puede echar un vistazo a %s las rutas de " +#~ "las próximas versiones %s para saber si la que usted desea está en camino." -#~ msgid "Don't forget that Movim is an open source project, a helping hand is always welcome (see %s Can I participate %s)" -#~ msgstr "No olvide que Movim es un proyecto de código abierto, una mano de ayuda siempre es bienvenida (ver %s ¿Puedo participar? %s)" +#, php-format +#~ msgid "" +#~ "Don't forget that Movim is an open source project, a helping hand is always " +#~ "welcome (see %s Can I participate %s)" +#~ msgstr "" +#~ "No olvide que Movim es un proyecto de código abierto, una mano de ayuda " +#~ "siempre es bienvenida (ver %s ¿Puedo participar? %s)" -#~ msgid "Go to the %s to the Frequently Asked Questions %s or come ask your question on the official chatroom %s or via our mailing-list (%s see the dedicated page %s)." -#~ msgstr "Diríjase a las %s Preguntas más Frecuentes %s o venga a hacer su pregunta en el chat oficial %s o a través de nuestra lista de correo (%s ver la página dedicada %s)." +#, php-format +#~ msgid "" +#~ "Go to the %s to the Frequently Asked Questions %s or come ask your question " +#~ "on the official chatroom %s or via our mailing-list (%s see the dedicated " +#~ "page %s)." +#~ msgstr "" +#~ "Diríjase a las %s Preguntas más Frecuentes %s o venga a hacer su pregunta en " +#~ "el chat oficial %s o a través de nuestra lista de correo (%s ver la página " +#~ "dedicada %s)." #~ msgid "The current BOSH URL in invalid" #~ msgstr "La url de BOSH actual no es válida" diff --git a/sources/locales/fa.po b/sources/locales/fa.po index 46584d2..a4ee178 100644 --- a/sources/locales/fa.po +++ b/sources/locales/fa.po @@ -3,2696 +3,2583 @@ # This file is distributed under the same license as the movim package. # FIRST AUTHOR , 2013. # -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/About/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Account/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/AccountNext/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/AdHoc/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/AdminDB/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/AdminMain/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/AdminTest/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Api/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Avatar/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Blog/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Bookmark/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Chat/locales.ini -#. #-#-#-#-# 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 -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Group/locales.ini -#. #-#-#-#-# 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 -#. #-#-#-#-# 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 -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Presence/locales.ini -#. #-#-#-#-# 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 -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Share/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Statistics/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Subscribe/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Syndication/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Upload/locales.ini -#. #-#-#-#-# 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-08-20 15:17+0200\n" +"POT-Creation-Date: 2015-06-08 22:06+0200\n" "PO-Revision-Date: 2014-06-01 23:08+0000\n" "Last-Translator: reza \n" "Language-Team: Persian \n" -"Language: fa\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2015-06-18 21:08+0000\n" "X-Generator: Launchpad (build 17570)\n" +"Language: fa\n" -#: [about]thanks +#: ../cache/locales.php:2 msgid "Thanks" msgstr "" -#: [about]developers +#: ../cache/locales.php:3 msgid "Developers" msgstr "" -#: [about]translators +#: ../cache/locales.php:4 msgid "Translators" msgstr "" -#: [about]software +#: ../cache/locales.php:5 msgid "Software" msgstr "" -#: [about]resources +#: ../cache/locales.php:6 msgid "Resources" msgstr "" -#: [about]api [schema]api [api]title +#: ../cache/locales.php:7 ../cache/locales.php:83 ../cache/locales.php:85 msgid "API" msgstr "" -#: [about]info -msgid "Movim is an XMPP-based communication platform. All the project, except the following software and resources, is under" +#: ../cache/locales.php:8 +msgid "" +"Movim is an XMPP-based communication platform. All the project, except the " +"following software and resources, is under" msgstr "" -#: [account]title +#: ../cache/locales.php:9 msgid "Account" msgstr "" -#: [account]password_change_title -msgid "Change my password" -msgstr "" - -#: [account]password [db]password [credentials]password [form]password -#: [input]password -msgid "Password" -msgstr "" - -#: [account]password_confirmation -msgid "Password confirmation" -msgstr "" - -#: [account]password_changed +#: ../cache/locales.php:10 msgid "The password has been updated" msgstr "" -#: [account]password_not_valid +#: ../cache/locales.php:11 msgid "Please provide a valid password (6 characters minimum)" msgstr "" -#: [account]password_not_same +#: ../cache/locales.php:12 msgid "The provided passwords are not the same" msgstr "" -#: [account]delete_title +#: ../cache/locales.php:13 msgid "Delete my account" msgstr "" -#: [account]delete -msgid "Delete your account" +#: ../cache/locales.php:14 +msgid "" +"You will delete your XMPP account and all the relative information linked to " +"it (profile, contacts and publications)." msgstr "" -#: [account]delete_text -msgid "You will delete your XMPP account and all the relative information linked to it (profile, contacts and publications)." -msgstr "" - -#: [account]delete_text_confirm +#: ../cache/locales.php:15 msgid "Are you sure that you want to delete it ?" msgstr "" -#: [account]gateway_title -msgid "Gateway" -msgstr "" - -#: [create]title [subscribe]title +#: ../cache/locales.php:16 ../cache/locales.php:411 msgid "Create a new account" msgstr "" -#: [create]notfound +#: ../cache/locales.php:17 msgid "No account creation form found on the server" msgstr "" -#: [create]server_on +#: ../cache/locales.php:18 ../cache/locales.php:172 msgid "on" msgstr "" -#: [create]successfull +#: ../cache/locales.php:19 msgid "Your acccount has been successfully registered" msgstr "" -#: [create]loading +#: ../cache/locales.php:20 msgid "Loading" msgstr "" -#: [error]not_acceptable +#: ../cache/locales.php:21 msgid "Not Acceptable" msgstr "" -#: [error]service_unavailable +#: ../cache/locales.php:22 msgid "The registration system of this server is currently unavailable" msgstr "" -#: [oob]about -msgid "This server use an external system for the registration, please click on the following URL." +#: ../cache/locales.php:23 +msgid "" +"This server use an external system for the registration, please click on the " +"following URL." msgstr "" -#: [adhoc]title +#: ../cache/locales.php:24 msgid "Actions" msgstr "" -#: [db]legend [schema]database +#: ../cache/locales.php:25 ../cache/locales.php:82 msgid "Database" msgstr "" -#: [db]connect_error +#: ../cache/locales.php:26 msgid "Modl wasn't able to connect to the database" msgstr "" -#: [db]connect_success +#: ../cache/locales.php:27 msgid "Movim is connected to the database" msgstr "" -#: [db]update +#: ../cache/locales.php:28 msgid "The database need to be updated" msgstr "" -#: [db]up_to_date +#: ../cache/locales.php:29 msgid "Movim database is up to date" msgstr "" -#: [db]type +#: ../cache/locales.php:30 msgid "Database Type" msgstr "" -#: [db]username [credentials]username [input]username +#: ../cache/locales.php:31 ../cache/locales.php:50 ../cache/locales.php:540 msgid "Username" msgstr "" -#: [db]host +#: ../cache/locales.php:32 ../cache/locales.php:51 ../cache/locales.php:282 +#: ../cache/locales.php:541 +msgid "Password" +msgstr "" + +#: ../cache/locales.php:33 msgid "Host" msgstr "" -#: [db]port +#: ../cache/locales.php:34 msgid "Port" msgstr "" -#: [db]name -msgid "Database sName" +#: ../cache/locales.php:35 +msgid "Database Name" msgstr "" -#: [admin]general +#: ../cache/locales.php:36 msgid "General Settings" msgstr "" -#: [general]theme +#: ../cache/locales.php:37 msgid "Theme" msgstr "" -#: [general]language +#: ../cache/locales.php:38 msgid "Default language" msgstr "" -#: [general]log_verbosity +#: ../cache/locales.php:39 +msgid "Environment" +msgstr "" + +#: ../cache/locales.php:40 msgid "Log verbosity" msgstr "" -#: [general]timezone +#: ../cache/locales.php:41 msgid "Server Timezone" msgstr "" -#: [general]limit +#: ../cache/locales.php:42 msgid "User folder size limit (in bytes)" msgstr "" -#: [websocket]title +#: ../cache/locales.php:43 msgid "WebSocket Configuration" msgstr "" -#: [websocket]info +#: ../cache/locales.php:44 msgid "Enter here a valid WebSocket URI in the form" msgstr "" -#: [websocket]label +#: ../cache/locales.php:45 msgid "WebSocket URI" msgstr "" -#: [websocket]save_info -msgid "If you change the URI, please restart the daemon to reload the configuration" +#: ../cache/locales.php:46 +msgid "" +"If you change the URI, please restart the daemon to reload the configuration" msgstr "" -#: [websocket]publics +#: ../cache/locales.php:47 msgid "Public WebSockets" msgstr "" -#: [credentials]title +#: ../cache/locales.php:48 msgid "Administration Credential" msgstr "" -#: [credentials]info +#: ../cache/locales.php:49 msgid "Change the default credentials admin/password" msgstr "" -#: [credentials]re_password +#: ../cache/locales.php:52 msgid "Retype password" msgstr "" -#: [whitelist]title +#: ../cache/locales.php:53 msgid "Whitelist - XMPP Server" msgstr "" -#: [whitelist]info1 -msgid "If you want to specify a list of authorized XMPP servers on your Movim pod and forbid the connection on all the others please put their domain name here, with comma (ex: movim.eu,jabber.fr)" +#: ../cache/locales.php:54 +msgid "" +"If you want to specify a list of authorized XMPP servers on your Movim pod " +"and forbid the connection on all the others please put their domain name " +"here, with comma (ex: movim.eu,jabber.fr)" msgstr "" -#: [whitelist]info2 -msgid "Leave this field blank if you allow the access to all the XMPP accounts." +#: ../cache/locales.php:55 +msgid "" +"Leave this field blank if you allow the access to all the XMPP accounts." msgstr "" -#: [whitelist]label +#: ../cache/locales.php:56 msgid "List of whitelisted XMPP servers" msgstr "" -#: [information]title -msgctxt "[information]title" +#: ../cache/locales.php:57 ../cache/locales.php:61 msgid "Information Message" msgstr "" -#: [information]description +#: ../cache/locales.php:58 msgid "Description" msgstr "" -#: [information]info1 +#: ../cache/locales.php:59 msgid "This message will be displayed on the login page" msgstr "" -#: [information]info2 -msgid "Leave this field blank if you dont want to show any message." +#: ../cache/locales.php:60 +msgid "Leave this field blank if you don't want to show any message." msgstr "" -#: [information]label -msgctxt "[information]label" -msgid "Information Message" -msgstr "" - -#: [log]empty +#: ../cache/locales.php:62 msgid "Empty" msgstr "" -#: [log]syslog +#: ../cache/locales.php:63 msgid "Syslog" msgstr "" -#: [log]syslog_files +#: ../cache/locales.php:64 msgid "Syslog and files" msgstr "" -#: [rewrite]title +#: ../cache/locales.php:65 msgid "URL Rewriting" msgstr "" -#: [rewrite]info +#: ../cache/locales.php:66 msgid "The URL Rewriting can be enabled" msgstr "" -#: [admin]compatibility +#: ../cache/locales.php:67 msgid "General Overview" msgstr "" -#: [compatibility]info -msgid "Movim has found some issues or things that need to be fixed or improved" +#: ../cache/locales.php:68 +msgid "" +"Movim has found some issues or things that need to be fixed or improved" msgstr "" -#: [compatibility]php1 +#: ../cache/locales.php:69 +#, php-format msgid "Update your PHP-Version: %s" msgstr "" -#: [compatibility]php2 +#: ../cache/locales.php:70 msgid "Required: 5.3.0" msgstr "" -#: [compatibility]curl +#: ../cache/locales.php:71 msgid "Install the php5-curl library" msgstr "" -#: [compatibility]imagick +#: ../cache/locales.php:72 msgid "Install the php5-imagick library" msgstr "" -#: [compatibility]gd +#: ../cache/locales.php:73 msgid "Install the php5-gd library" msgstr "" -#: [compatibility]rights -msgid "Read and write rights for the webserver in Movims root directory" +#: ../cache/locales.php:74 +msgid "Read and write rights for the webserver in Movim's root directory" msgstr "" -#: [compatibility]rewrite +#: ../cache/locales.php:75 msgid "The URL Rewriting support is currently disabled" msgstr "" -#: [compatibility]db +#: ../cache/locales.php:76 msgid "The database need to be updated, go to the database panel to fix this" msgstr "" -#: [compatibility]websocket -msgid "WebSocket connection error, check if the Movim Daemon is running and is reachable" +#: ../cache/locales.php:77 +msgid "" +"WebSocket connection error, check if the Movim Daemon is running and is " +"reacheable" msgstr "" -#: [compatibility]xmpp_websocket -msgid "XMPP Websocket connection error, please check the validity of the URL given in the General Configuration" +#: ../cache/locales.php:78 +msgid "" +"XMPP Websocket connection error, please check the validity of the URL given " +"in the General Configuration" msgstr "" -#: [schema]browser +#: ../cache/locales.php:79 msgid "Browser" msgstr "" -#: [schema]movim +#: ../cache/locales.php:80 msgid "Movim Core" msgstr "" -#: [schema]daemon +#: ../cache/locales.php:81 msgid "Movim Daemon" msgstr "" -#: [schema]xmpp +#: ../cache/locales.php:84 msgid "XMPP" msgstr "" -#: [api]info -msgid "Here you can register your pod on the official %sMovim API%s and be listed on %sthe pods page%s." +#: ../cache/locales.php:86 +#, php-format +msgid "" +"Here you can register your pod on the official %sMovim API%s and be listed " +"on %sthe pods page%s." msgstr "" -#: [api]register +#: ../cache/locales.php:87 msgid "Your pod is not registered on the API" msgstr "" -#: [api]registered +#: ../cache/locales.php:88 msgid "Your pod is registered on the API" msgstr "" -#: [api]wait +#: ../cache/locales.php:89 msgid "Your pod is not yet validated" msgstr "" -#: [api]validated +#: ../cache/locales.php:90 msgid "Your pod is validated" msgstr "" -#: [api]unregister -msgid "You asked to be removed from the API, this request will be processed in a couple of hours" +#: ../cache/locales.php:91 +msgid "" +"You asked to be removed from the API, this request will be processed in a " +"couple of hours" msgstr "" -#: [api]conf_updated [config]updated +#: ../cache/locales.php:92 ../cache/locales.php:147 msgid "Configuration updated" msgstr "" -#: [avatar]file +#: ../cache/locales.php:93 msgid "File" msgstr "" -#: [avatar]use_it +#: ../cache/locales.php:94 msgid "Use it" msgstr "" -#: [avatar]webcam +#: ../cache/locales.php:95 msgid "Webcam" msgstr "" -#: [avatar]cheese +#: ../cache/locales.php:96 msgid "Cheese !" msgstr "" -#: [avatar]snapshot +#: ../cache/locales.php:97 msgid "Take a webcam snapshot" msgstr "" -#: [avatar]updated +#: ../cache/locales.php:98 msgid "Avatar Updated" msgstr "" -#: [avatar]not_updated +#: ../cache/locales.php:99 msgid "Avatar Not Updated" msgstr "" -#: [blog]title [feed]title +#: ../cache/locales.php:100 ../cache/locales.php:415 +#, php-format msgid "%s's feed" msgstr "" -#: [blog]empty +#: ../cache/locales.php:101 msgid "This user has not posted anything right now" msgstr "" -#: [title]conferences +#: ../cache/locales.php:102 msgid "Conferences" msgstr "" -#: [title]groups [group]empty_title [menu]groups [page]groups +#: ../cache/locales.php:103 ../cache/locales.php:193 ../cache/locales.php:217 +#: ../cache/locales.php:468 msgid "Groups" msgstr "" -#: [chatroom]add +#: ../cache/locales.php:104 msgid "Add a new Chat Room" msgstr "" -#: [chatroom]id [chatrooms]id +#: ../cache/locales.php:105 ../cache/locales.php:368 msgid "Chat Room ID" msgstr "" -#: [chatroom]name -msgctxt "[chatroom]name" +#: ../cache/locales.php:106 ../cache/locales.php:116 ../cache/locales.php:156 +#: ../cache/locales.php:361 ../cache/locales.php:369 ../cache/locales.php:424 msgid "Name" msgstr "" -#: [chatroom]nickname [general]nickname [chatrooms]nickname +#: ../cache/locales.php:107 ../cache/locales.php:157 ../cache/locales.php:371 +#: ../cache/locales.php:425 msgid "Nickname" msgstr "" -#: [chatroom]autojoin_label +#: ../cache/locales.php:108 msgid "Do you want do join automaticaly this Chat Room ?" msgstr "" -#: [chatroom]bad_id [chatrooms]bad_id +#: ../cache/locales.php:109 ../cache/locales.php:372 msgid "Bad Chatroom ID" msgstr "" -#: [chatroom]empty_name [chatrooms]empty_name +#: ../cache/locales.php:110 ../cache/locales.php:373 msgid "Empty name" msgstr "" -#: [bookmarks]updated +#: ../cache/locales.php:111 ../cache/locales.php:380 msgid "Bookmarks updated" msgstr "" -#: [bookmarks]error -msgid "An error occured :" +#: ../cache/locales.php:112 +msgid "An error occured : " msgstr "" -#: [bookmarks]configure +#: ../cache/locales.php:113 msgid "Configure" msgstr "" -#: [url]add +#: ../cache/locales.php:114 msgid "Add a new URL" msgstr "" -#: [url]url +#: ../cache/locales.php:115 msgid "URL" msgstr "" -#: [url]name -msgctxt "[url]name" -msgid "Name" -msgstr "" - -#: [message]published +#: ../cache/locales.php:117 msgid "Message Published" msgstr "" -#: [message]encrypted +#: ../cache/locales.php:118 ../cache/locales.php:138 msgid "Encrypted message" msgstr "" -#: [message]composing [chats]composing +#: ../cache/locales.php:119 msgid "Composing..." msgstr "" -#: [message]paused [chats]paused +#: ../cache/locales.php:120 msgid "Paused..." msgstr "" -#: [message]gone +#: ../cache/locales.php:121 msgid "Contact gone" msgstr "" -#: [chat]attention +#: ../cache/locales.php:122 +#, php-format msgid "%s needs your attention" msgstr "" -#: [chat]placeholder +#: ../cache/locales.php:123 msgid "Your message here..." msgstr "" -#: [chat]smileys +#: ../cache/locales.php:124 msgid "Smileys" msgstr "" -#: [chat]empty_title [button]chat +#: ../cache/locales.php:125 ../cache/locales.php:139 msgid "Chat" msgstr "" -#: [chat]empty_text +#: ../cache/locales.php:126 msgid "Discuss with your contacts" msgstr "" -#: [chat]frequent [chats]frequent -msgid "Frequent contacts" -msgstr "" - -#: [chatroom]members +#: ../cache/locales.php:127 msgid "Members" msgstr "" -#: [chatroom]connected [chatrooms]connected +#: ../cache/locales.php:128 ../cache/locales.php:376 msgid "Connected to the chatroom" msgstr "" -#: [chatroom]disconnected [chatrooms]disconnected +#: ../cache/locales.php:129 ../cache/locales.php:377 msgid "Disconnected from the chatroom" msgstr "" -#: [chatroom]config [group]configuration [page]configuration +#: ../cache/locales.php:130 ../cache/locales.php:200 ../cache/locales.php:469 msgid "Configuration" msgstr "" -#: [chatroom]config_saved +#: ../cache/locales.php:131 msgid "Configuration saved" msgstr "" -#: [chatroom]subject +#: ../cache/locales.php:132 msgid "Subject" msgstr "" -#: [chatroom]subject_changed +#: ../cache/locales.php:133 msgid "Subject changed" msgstr "" -#: [chats]empty_title -msgid "No chats yet..." +#: ../cache/locales.php:134 +msgid "Open a new conversation by clicking on the plus button bellow" msgstr "" -#: [chats]empty -msgid "Open a new conversation by clicking on the plus button bellow or visit the Contacts page." -msgstr "" - -#: [chats]add +#: ../cache/locales.php:135 msgid "Chat with a contact" msgstr "" -#: [chats]more +#: ../cache/locales.php:136 +msgid "Frequent contacts" +msgstr "" + +#: ../cache/locales.php:137 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 "" - -#: [config]general +#: ../cache/locales.php:140 msgid "General" msgstr "" -#: [config]language +#: ../cache/locales.php:141 msgid "Language" msgstr "" -#: [config]roster +#: ../cache/locales.php:142 msgid "Roster display" msgstr "" -#: [config]roster_show +#: ../cache/locales.php:143 msgid "Show the offline contacts" msgstr "" -#: [config]roster_hide +#: ../cache/locales.php:144 msgid "Hide the offline contacts" msgstr "" -#: [config]appearence +#: ../cache/locales.php:145 msgid "Appearence" msgstr "" -#: [config]info -msgid "This configuration is shared wherever you are connected" +#: ../cache/locales.php:146 +msgid "This configuration is shared wherever you are connected !" msgstr "" -#: [notifications]message +#: ../cache/locales.php:148 msgid "Notify on incoming message" msgstr "" -#: [notifications]desktop +#: ../cache/locales.php:149 msgid "Use desktop notifications" msgstr "" -#: [general]legend [general]general_title +#: ../cache/locales.php:150 +msgid "Data" +msgstr "" + +#: ../cache/locales.php:151 +msgid "Cache" +msgstr "" + +#: ../cache/locales.php:152 ../cache/locales.php:218 ../cache/locales.php:466 +msgid "Contacts" +msgstr "" + +#: ../cache/locales.php:153 ../cache/locales.php:480 +msgid "Posts" +msgstr "" + +#: ../cache/locales.php:154 +msgid "Messages" +msgstr "" + +#: ../cache/locales.php:155 ../cache/locales.php:423 msgid "General Informations" msgstr "" -#: [general]name [public_groups]name [chatrooms]name -msgid "Name" -msgstr "" - -#: [general]date_of_birth +#: ../cache/locales.php:158 ../cache/locales.php:427 msgid "Date of Birth" msgstr "" -#: [general]gender +#: ../cache/locales.php:159 ../cache/locales.php:428 msgid "Gender" msgstr "" -#: [general]marital +#: ../cache/locales.php:160 ../cache/locales.php:429 msgid "Marital Status" msgstr "" -#: [general]email +#: ../cache/locales.php:161 ../cache/locales.php:426 msgid "Email" msgstr "" -#: [general]website +#: ../cache/locales.php:162 ../cache/locales.php:430 msgid "Website" msgstr "" -#: [general]about +#: ../cache/locales.php:163 ../cache/locales.php:431 msgid "About Me" msgstr "" -#: [general]accounts +#: ../cache/locales.php:164 msgid "Other Accounts" msgstr "" -#: [general]tune +#: ../cache/locales.php:165 msgid "Is Listening" msgstr "" -#: [position]legend [position]position_title +#: ../cache/locales.php:166 ../cache/locales.php:432 msgid "Geographic Position" msgstr "" -#: [position]locality +#: ../cache/locales.php:167 ../cache/locales.php:433 msgid "Locality" msgstr "" -#: [position]country +#: ../cache/locales.php:168 ../cache/locales.php:434 msgid "Country" msgstr "" -#: [mood]title +#: ../cache/locales.php:169 msgid "Mood" msgstr "" -#: [mood]im +#: ../cache/locales.php:170 msgid "I'm " msgstr "" -#: [listen]title +#: ../cache/locales.php:171 msgid "Listening" msgstr "" -#: [last]title +#: ../cache/locales.php:173 msgid "Last seen" msgstr "" -#: [client]title +#: ../cache/locales.php:174 msgid "Client Informations" msgstr "" -#: [explore]last_registered +#: ../cache/locales.php:175 msgid "Last registered" msgstr "" -#: [explore]explore +#: ../cache/locales.php:176 msgid "Find some new friends" msgstr "" -#: [edit]title [button]edit +#: ../cache/locales.php:177 ../cache/locales.php:533 msgid "Edit" msgstr "" -#: [edit]alias +#: ../cache/locales.php:178 msgid "Alias" msgstr "" -#: [edit]group +#: ../cache/locales.php:179 msgid "Group" msgstr "" -#: [edit]updated [roster]updated +#: ../cache/locales.php:180 ../cache/locales.php:400 msgid "Contact updated" msgstr "" -#: [delete]title +#: ../cache/locales.php:181 msgid "Are you sure?" msgstr "" -#: [delete]text -msgid "You are going to delete one of your contacts, please confirm your action" +#: ../cache/locales.php:182 +msgid "" +"You are going to delete one of your contacts, please confirm your action" msgstr "" -#: [age]years +#: ../cache/locales.php:183 +#, php-format msgid "%s years" msgstr "" -#: [blog]last +#: ../cache/locales.php:184 msgid "Last public post" msgstr "" -#: [subscription]to -msgid "You can see this contact status" -msgstr "" - -#: [subscription]to_button -msgid "Share my status" -msgstr "" - -#: [subscription]to_text -msgid "But this contact cannot see yours" -msgstr "" - -#: [subscription]from -msgid "You are not subscribed to this contact" -msgstr "" - -#: [subscription]from_button -msgid "Ask to subscribe" -msgstr "" - -#: [subscription]from_text -msgid "But this contact can still see if you are online" -msgstr "" - -#: [subscription]nil -msgid "No subscriptions" -msgstr "" - -#: [subscription]nil_button -msgid "Invite" -msgstr "" - -#: [subscription]nil_text -msgid "This contact is in your contact list but there is no subscriptions between the two accounts" -msgstr "" - -#: [group]subscribe +#: ../cache/locales.php:185 msgid "Subscribe" msgstr "" -#: [group]subscribed +#: ../cache/locales.php:186 msgid "Subscribed" msgstr "" -#: [group]unsubscribe +#: ../cache/locales.php:187 msgid "Unsubscribe" msgstr "" -#: [group]unsubscribe_text +#: ../cache/locales.php:188 msgid "You are going to unsubscribe from this Group" msgstr "" -#: [group]unsubscribed +#: ../cache/locales.php:189 msgid "Unsubscribed" msgstr "" -#: [group]share_label +#: ../cache/locales.php:190 msgid "Make your membership to this group public to your friends" msgstr "" -#: [group]label_label +#: ../cache/locales.php:191 msgid "Give a label for this group" msgstr "" -#: [group]sure +#: ../cache/locales.php:192 msgid "Are you sure ?" msgstr "" -#: [group]empty_text +#: ../cache/locales.php:194 msgid "Discover, follow and share" msgstr "" -#: [group]empty +#: ../cache/locales.php:195 msgid "Something bad happened to this group" msgstr "" -#: [group]config_saved +#: ../cache/locales.php:196 msgid "Group configuration saved" msgstr "" -#: [group]delete_title +#: ../cache/locales.php:197 msgid "Delete the group" msgstr "" -#: [group]delete_text -msgid "You are going to delete the following group. Please confirm your action." +#: ../cache/locales.php:198 +msgid "" +"You are going to delete the following group. Please confirm your action." msgstr "" -#: [group]delete_clean_text -msgid "It seems that this group doesn't exists anymore. Do you want to remove it from your subscriptions?" +#: ../cache/locales.php:199 +msgid "" +"It seems that this group doesn't exists anymore. Do you want to remove it " +"from your subscriptions?" msgstr "" -#: [group]counter -msgid "%s groups on this server" -msgstr "" - -#: [group]subscriptions [statistics]subscriptions +#: ../cache/locales.php:201 ../cache/locales.php:408 msgid "Subscriptions" msgstr "" -#: [group]servers -msgid "Groups servers" -msgstr "" - -#: [group]search_server -msgid "Search for a new server" -msgstr "" - -#: [group]help_info1 -msgid "Groups are the perfect way to share posts about topics that you like with all the other Movim's users." -msgstr "" - -#: [group]help_info2 -msgid "Choose a server and a Group and subscribe to it using the %s button in the header. You can also create a new one using the %s button." -msgstr "" - -#: [group]help_info3 -msgid "Done? You can now publish a new post in the Group by using the %s button." -msgstr "" - -#: [group]help_info4 -msgid "You will find a list of all your subscribed Groups in My Subscriptions and receive instantly all the new incoming posts in the %sNews%s page." -msgstr "" - -#: [groups]empty_title +#: ../cache/locales.php:202 ../cache/locales.php:290 msgid "Hello" msgstr "" -#: [groups]contact_post [hello]contact_post [menu]contact_post +#: ../cache/locales.php:203 ../cache/locales.php:225 ../cache/locales.php:291 msgid "Contact post" msgstr "" -#: [groups]empty_text1 -msgid "You don't have any subscriptions yet, select a group server above to start exploring." +#: ../cache/locales.php:204 +msgid "" +"You don't have any subscriptions yet, select a group server above to start " +"exploring." msgstr "" -#: [groups]empty_text2 +#: ../cache/locales.php:205 msgid "Subscribe to your favorite feeds by bookmarking them." msgstr "" -#: [groups]subscriptions +#: ../cache/locales.php:206 msgid "My Subscriptions" msgstr "" -#: [groups]add +#: ../cache/locales.php:207 msgid "Create a new Group" msgstr "" -#: [groups]name +#: ../cache/locales.php:208 msgid "Group name" msgstr "" -#: [groups]name_example +#: ../cache/locales.php:209 msgid "My Little Pony - Fan Club" msgstr "" -#: [groups]created +#: ../cache/locales.php:210 msgid "Group created successfully" msgstr "" -#: [groups]deleted +#: ../cache/locales.php:211 msgid "Group deleted successfully" msgstr "" -#: [groups]name_error +#: ../cache/locales.php:212 msgid "Please provide a valid group name (4 characters minimum)" msgstr "" -#: [groups]no_creation +#: ../cache/locales.php:213 msgid "You cannot create a new Group on this server" msgstr "" -#: [groups]sub +#: ../cache/locales.php:214 +#, php-format msgid "%s subscribers" msgstr "" -#: [groups]num +#: ../cache/locales.php:215 +#, php-format msgid "%s posts" msgstr "" -#: [groups]disco_error -msgid "This server doesn't exists" -msgstr "" - -#: [menu]all +#: ../cache/locales.php:216 msgid "All" msgstr "" -#: [menu]refresh +#: ../cache/locales.php:219 msgid "Refresh all the streams" msgstr "" -#: [roster]search -msgid "Search in your contacts" -msgstr "" - -#: [hello]active_contacts -msgid "Active contacts" -msgstr "" - -#: [hello]chat -msgid "Go on the Chat page" -msgstr "" - -#: [hello]news [page]news -msgid "News" -msgstr "" - -#: [hello]news_page -msgid "Read all theses articles on the News page" -msgstr "" - -#: [hello]blog_title -msgid "Visit your public blog" -msgstr "" - -#: [hello]blog_text -msgid "See your public posts and share them with all your contacts" -msgstr "" - -#: [hello]share_title -msgid "Universal share button" -msgstr "" - -#: [hello]share_text -msgid "Bookmark or drag and drop the following button in your toolbar and use it on all the pages you want to share on Movim" -msgstr "" - -#: [hello]share_button -msgid "Share on Movim" -msgstr "" - -#: [help]faq -msgid "Frequently Asked Questions" -msgstr "" - -#: [banner]title -msgid "What do the little banners refer to ?" -msgstr "" - -#: [banner]info1 -msgid "Thanks to these five little banners, you can quickly identitfy the level of confdentiality applied to the information you provide." -msgstr "" - -#: [banner]white -msgid "White, only you can see the information" -msgstr "" - -#: [banner]green -msgid "Green, you have chosen some contacts who can see your information" -msgstr "" - -#: [banner]orange -msgid "Orange, all your contact list can see your information" -msgstr "" - -#: [banner]red -msgid "Red, everybody in the XMPP network can see your information" -msgstr "" - -#: [banner]black -msgid "Black, the whole Internet can see your information" -msgstr "" - -#: [wiki]question -msgid "Looking for some documentation ?" -msgstr "" - -#: [wiki]button -msgid "Read the Wiki" -msgstr "" - -#: [ml]question -msgid "Talk with us by email ?" -msgstr "" - -#: [ml]button -msgid "Join the Mailing List" -msgstr "" - -#: [chatroom]question -msgid "Chat with the team ?" -msgstr "" - -#: [chatroom]button -msgid "Join the Chatroom" -msgstr "" - -#: [init]location -msgid "Location node created" -msgstr "" - -#: [init]bookmark -msgid "Bookmark node created" -msgstr "" - -#: [init]vcard4 -msgid "Profile node created" -msgstr "" - -#: [init]avatar -msgid "Avatar node created" -msgstr "" - -#: [init]subscriptions -msgid "Subscriptions node created" -msgstr "" - -#: [init]microblog -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 "" - -#: [error]jid -msgid "Invalid JID" -msgstr "" - -#: [error]empty_challenge -msgid "Empty Challenge from the server" -msgstr "" - -#: [error]dns -msgid "XMPP Domain error, your account is not a correct Jabber ID" -msgstr "" - -#: [error]data_missings -msgid "Some data are missing !" -msgstr "" - -#: [error]wrong_password -msgid "Wrong password" -msgstr "" - -#: [error]internal -msgid "Internal server error" -msgstr "" - -#: [error]session -msgid "Session error" -msgstr "" - -#: [error]account_created -msgid "Account successfully created" -msgstr "" - -#: [error]xmpp_unauthorized -msgctxt "[error]xmpp_unauthorized" -msgid "Your XMPP server is unauthorized" -msgstr "" - -#: [error]mec_error -msgid "The server takes too much time to respond" -msgstr "" - -#: [error]too_old -msgid "Your web browser is too old to use with Movim." -msgstr "" - -#: [error]websocket -msgid "Movim cannot talk with the server, please try again later (Websocket connection error)" -msgstr "" - -#: [error]impossible -msgid "Impossible login" -msgstr "" - -#: [error]title -msgid "Oops!" -msgstr "" - -#: [error]default [visio]unknown_error -msgid "Unknown error" -msgstr "" - -#: [error]login_format -msgid "Invalid username format" -msgstr "" - -#: [error]password_format -msgid "Invalid password format" -msgstr "" - -#: [error]unauthorized -msgctxt "[error]unauthorized" -msgid "Your XMPP server is unauthorized" -msgstr "" - -#: [error]conflict -msgid "A Movim session is already open on an other device" -msgstr "" - -#: [error]wrong_account -msgid "Movim failed to authenticate. You entered wrong data" -msgstr "" - -#: [error]mechanism -msgid "Authentication mechanism not supported by Movim" -msgstr "" - -#: [error]fail_auth -msgid "The XMPP authentification failed" -msgstr "" - -#: [account]title [accounts]accounts_title -msgid "Accounts" -msgstr "" - -#: [form]username -msgid "My address" -msgstr "" - -#: [form]create_one -msgid "Create one !" -msgstr "" - -#: [form]another_account -msgid "Another account" -msgstr "" - -#: [form]no_account -msgid "No account yet ?" -msgstr "" - -#: [form]whitelist.info -msgid "You can login with accounts from theses servers" -msgstr "" - -#: [form]connected -msgid "Connected" -msgstr "" - -#: [form]population -msgid "Population" -msgstr "" - -#: [menu]empty_title -msgid "No news yet..." -msgstr "" - -#: [menu]empty -msgid "Welcome on your news feed, here you will see all the posts published by your contacts and in the groups you have subscribed." -msgstr "" - -#: [menu]refresh -msgid "Refreshing all the streams" -msgstr "" - -#: [menu]public -msgid "This post is public" -msgstr "" - -#: [affiliations]title -msgid "Manage your members" -msgstr "" - -#: [affiliations]get -msgid "Get the members" -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 "" - -#: [notifs]title -msgid "Pending Invitations" -msgstr "" - -#: [notifs]wants_to_talk -msgid "%s wants to talk with you" -msgstr "" - -#: [notifs]manage -msgid "Manage" -msgstr "" - -#: [post]news_feed -msgid "News Feed" -msgstr "" - -#: [post]placeholder -msgid "Discover and register to the groups you are interested in" -msgstr "" - -#: [post]preview [page]preview -msgid "Preview" -msgstr "" - -#: [post]help [page]help -msgid "Help" -msgstr "" - -#: [post]help_more -msgid "More help" -msgstr "" - -#: [post]help_manual -msgid "Markdown syntax manual" -msgstr "" - -#: [post]title -msgid "Title" -msgstr "" - -#: [post]content -msgid "Content" -msgstr "" - -#: [post]link -msgid "Link" -msgstr "" - -#: [post]tags -msgid "Tags" -msgstr "" - -#: [post]valid_url [publish]valid_url -msgid "Please enter a valid url" -msgstr "" - -#: [post]no_content_preview [publish]no_content_preview -msgid "No content to preview" -msgstr "" - -#: [post]no_content [publish]no_content [post]empty -msgid "No content" -msgstr "" - -#: [post]published -msgid "Post published" -msgstr "" - -#: [post]deleted -msgid "Post deleted" -msgstr "" - -#: [post]gallery -msgid "This picture will be added to your gallery" -msgstr "" - -#: [post]hot -msgid "What's Hot" -msgstr "" - -#: [post]hot_text -msgid "Posts recently published in Groups that you are not subscribed (yet)" -msgstr "" - -#: [post]new [publish]new -msgid "New post" -msgstr "" - -#: [post]embed_tip -msgid "You can also use services like Imgur or Flickr to host your picture and paste the link here." -msgstr "" - -#: [post]repost -msgid "This is a re-post from %s" -msgstr "" - -#: [post]repost_profile -msgid "See %s profile" -msgstr "" - -#: [post]public -msgid "Publish this post publicly?" -msgstr "" - -#: [post]blog_add -msgid "Post published on your blog" -msgstr "" - -#: [post]blog_remove -msgid "Post removed from your blog" -msgstr "" - -#: [post]delete_title [post]delete -msgid "Delete this post" -msgstr "" - -#: [post]delete_text -msgid "You are going to delete this post, please confirm your action" -msgstr "" - -#: [post]comments_disabled -msgid "Comments disabled" -msgstr "" - -#: [post]comment_published -msgid "Comment published" -msgstr "" - -#: [status]disconnect -msgid "Disconnect" -msgstr "" - -#: [status]here -msgid "Your status here !" -msgstr "" - -#: [status]updated -msgid "Status updated" -msgstr "" - -#: [status]status -msgid "Status" -msgstr "" - -#: [status]presence -msgid "Presence" -msgstr "" - -#: [status]online -msgid "Online with Movim" -msgstr "" - -#: [publish]title -msgid "Publish" -msgstr "" - -#: [publish]attach -msgid "Add a file or a picture to your post" -msgstr "" - -#: [publish]no_publication -msgid "You cannot publish a post on this Group" -msgstr "" - -#: [publish]form_filled -msgid "Some fields have been filled in. Do you still want to go back and loose their content?" -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 "" - -#: [rooms]empty_text1 -msgid "You don't have any chatroom yet." -msgstr "" - -#: [rooms]empty_text2 -msgid "Add one by clicking on the add button in the header." -msgstr "" - -#: [chatrooms]title -msgid "Chatrooms" -msgstr "" - -#: [chatrooms]name_placeholder -msgid "My Favorite Room" -msgstr "" - -#: [chatrooms]users -msgid "Users in the room" -msgstr "" - -#: [chatrooms]bad_nickname -msgid "Please enter a correct nickname (2 to 40 characters)" -msgstr "" - -#: [room]anonymous_title -msgid "Public chatroom" -msgstr "" - -#: [room]no_room -msgid "Please provide a room address" -msgstr "" - -#: [room]anonymous_text1 -msgid "You are currently logued as an anonymous user." -msgstr "" - -#: [room]anonymous_text2 -msgid "You can join using your own account or create one on the login page by loging out using the cross in the top-right corner." -msgstr "" - -#: [room]anonymous_login -msgid "Login on %s" -msgstr "" - -#: [room]nick -msgid "Your nickname" -msgstr "" - -#: [roster]ungrouped -msgid "Ungrouped" -msgstr "" - -#: [roster]show_disconnected -msgid "Show disconnected contacts" -msgstr "" - -#: [roster]hide_disconnected -msgid "Hide disconnected contacts" -msgstr "" - -#: [roster]show_group -msgid "Show group %s" -msgstr "" - -#: [roster]hide_group -msgid "Hide group %s" -msgstr "" - -#: [roster]jid_error -msgid "Please enter a valid Jabber ID" -msgstr "" - -#: [roster]no_contacts_title -msgid "No contacts ?" -msgstr "" - -#: [roster]no_contacts_text -msgid "You can add one using the + button bellow" -msgstr "" - -#: [roster]show_hide -msgid "Show/Hide" -msgstr "" - -#: [roster]add_contact_info1 -msgid "Enter the Jabber ID of your contact." -msgstr "" - -#: [roster]add_contact_info2 -msgid "Press enter to validate." -msgstr "" - -#: [roster]jid -msgid "JID" -msgstr "" - -#: [roster]results -msgid "Results" -msgstr "" - -#: [roster]added -msgid "Contact added" -msgstr "" - -#: [roster]deleted -msgid "Contact deleted" -msgstr "" - -#: [roster]search +#: ../cache/locales.php:220 ../cache/locales.php:402 msgid "Search" msgstr "" -#: [share]error +#: ../cache/locales.php:221 +msgid "Go on the Chat page" +msgstr "" + +#: ../cache/locales.php:222 +msgid "Read all theses articles on the News page" +msgstr "" + +#: ../cache/locales.php:223 +msgid "Visit your public blog" +msgstr "" + +#: ../cache/locales.php:224 +msgid "See your public posts and share them with all your contacts" +msgstr "" + +#: ../cache/locales.php:226 +msgid "Universal share button" +msgstr "" + +#: ../cache/locales.php:227 +msgid "" +"Bookmark or drag and drop the following button in your toolbar and use it on " +"all the pages you want to share on Movim" +msgstr "" + +#: ../cache/locales.php:228 +msgid "Share on Movim" +msgstr "" + +#: ../cache/locales.php:229 +msgid "Frequently Asked Questions" +msgstr "" + +#: ../cache/locales.php:230 +msgid "What do the little banners refer to ?" +msgstr "" + +#: ../cache/locales.php:231 +msgid "" +"Thanks to these five little banners, you can quickly identitfy the level of " +"confdentiality applied to the information you provide." +msgstr "" + +#: ../cache/locales.php:232 +msgid "White, only you can see the information" +msgstr "" + +#: ../cache/locales.php:233 +msgid "Green, you have chosen some contacts who can see your information" +msgstr "" + +#: ../cache/locales.php:234 +msgid "Orange, all your contact list can see your information" +msgstr "" + +#: ../cache/locales.php:235 +msgid "Red, everybody in the XMPP network can see your information" +msgstr "" + +#: ../cache/locales.php:236 +msgid "Black, the whole Internet can see your information" +msgstr "" + +#: ../cache/locales.php:237 +msgid "Looking for some documentation ?" +msgstr "" + +#: ../cache/locales.php:238 +msgid "Read the Wiki" +msgstr "" + +#: ../cache/locales.php:239 +msgid "Talk with us by email ?" +msgstr "" + +#: ../cache/locales.php:240 +msgid "Join the Mailing List" +msgstr "" + +#: ../cache/locales.php:241 +msgid "Chat with the team ?" +msgstr "" + +#: ../cache/locales.php:242 +msgid "Join the Chatroom" +msgstr "" + +#: ../cache/locales.php:243 +msgid "Location node created" +msgstr "" + +#: ../cache/locales.php:244 +msgid "Bookmark node created" +msgstr "" + +#: ../cache/locales.php:245 +msgid "Profile node created" +msgstr "" + +#: ../cache/locales.php:246 +msgid "Avatar node created" +msgstr "" + +#: ../cache/locales.php:247 +msgid "Subscriptions node created" +msgstr "" + +#: ../cache/locales.php:248 +msgid "Microblog node created" +msgstr "" + +#: ../cache/locales.php:249 +msgid "Location" +msgstr "" + +#: ../cache/locales.php:250 +msgid "Wrong position" +msgstr "" + +#: ../cache/locales.php:251 +msgid "Location updated" +msgstr "" + +#: ../cache/locales.php:252 +msgid "Update my position" +msgstr "" + +#: ../cache/locales.php:253 +msgid "Wrong username" +msgstr "" + +#: ../cache/locales.php:254 +msgid "Invalid JID" +msgstr "" + +#: ../cache/locales.php:255 +msgid "Empty Challenge from the server" +msgstr "" + +#: ../cache/locales.php:256 +msgid "XMPP Domain error, your account is not a correct Jabber ID" +msgstr "" + +#: ../cache/locales.php:257 +msgid "Some data are missing !" +msgstr "" + +#: ../cache/locales.php:258 +msgid "Wrong password" +msgstr "" + +#: ../cache/locales.php:259 +msgid "Internal server error" +msgstr "" + +#: ../cache/locales.php:260 +msgid "Session error" +msgstr "" + +#: ../cache/locales.php:261 +msgid "Account successfully created" +msgstr "" + +#: ../cache/locales.php:262 ../cache/locales.php:271 +msgid "Your XMPP server is unauthorized" +msgstr "" + +#: ../cache/locales.php:263 +msgid "The server takes too much time to respond" +msgstr "" + +#: ../cache/locales.php:264 +msgid "Your web browser is too old to use with Movim." +msgstr "" + +#: ../cache/locales.php:265 +msgid "" +"Movim cannot talk with the server, please try again later (Websocket " +"connection error)" +msgstr "" + +#: ../cache/locales.php:266 +msgid "Impossible login" +msgstr "" + +#: ../cache/locales.php:267 +msgid "Oops!" +msgstr "" + +#: ../cache/locales.php:268 ../cache/locales.php:449 ../cache/locales.php:455 +msgid "Unknown error" +msgstr "" + +#: ../cache/locales.php:269 +msgid "Invalid username format" +msgstr "" + +#: ../cache/locales.php:270 +msgid "Invalid password format" +msgstr "" + +#: ../cache/locales.php:272 +msgid "A Movim session is already open on an other device" +msgstr "" + +#: ../cache/locales.php:273 +msgid "Movim failed to authenticate. You entered wrong data" +msgstr "" + +#: ../cache/locales.php:274 +msgid "Authentication mechanism not supported by Movim" +msgstr "" + +#: ../cache/locales.php:275 +msgid "The XMPP authentification failed" +msgstr "" + +#: ../cache/locales.php:276 +#, php-format +msgid "" +"You can login with Facebook (chat only) using %syour.id@chat.facebook.com%s " +"and your password" +msgstr "" + +#: ../cache/locales.php:277 +#, php-format +msgid "%sGmail accounts are also compatible%s but are not fully supported" +msgstr "" + +#: ../cache/locales.php:278 +msgid "You can login using your favorite Jabber account" +msgstr "" + +#: ../cache/locales.php:279 +msgid "or with our demonstration account" +msgstr "" + +#: ../cache/locales.php:280 ../cache/locales.php:435 +msgid "Accounts" +msgstr "" + +#: ../cache/locales.php:281 +msgid "My address" +msgstr "" + +#: ../cache/locales.php:283 +msgid "Create one !" +msgstr "" + +#: ../cache/locales.php:284 +msgid "No account yet ?" +msgstr "" + +#: ../cache/locales.php:285 +msgid "Another account" +msgstr "" + +#: ../cache/locales.php:286 +msgid "You can login with accounts from theses servers" +msgstr "" + +#: ../cache/locales.php:287 +msgid "Connected" +msgstr "" + +#: ../cache/locales.php:288 +msgid "Population" +msgstr "" + +#: ../cache/locales.php:289 +msgid "Bad nickname (between 4 and 40 characters)" +msgstr "" + +#: ../cache/locales.php:292 +msgid "" +"Welcome on your news feed, here you will see all the posts published in the " +"groups you have subscribed." +msgstr "" + +#: ../cache/locales.php:293 +msgid "Refreshing all the streams" +msgstr "" + +#: ../cache/locales.php:294 +msgid "This post is public" +msgstr "" + +#: ../cache/locales.php:295 +msgid "Manage your members" +msgstr "" + +#: ../cache/locales.php:296 +msgid "Get the members" +msgstr "" + +#: ../cache/locales.php:297 +msgid "Affiliations saved" +msgstr "" + +#: ../cache/locales.php:298 +msgid "Manage your subscriptions" +msgstr "" + +#: ../cache/locales.php:299 +msgid "Manage the subscriptions" +msgstr "" + +#: ../cache/locales.php:300 +msgid "Get the subscriptions" +msgstr "" + +#: ../cache/locales.php:301 +msgid "Subscriptions saved" +msgstr "" + +#: ../cache/locales.php:302 +msgid "Pending Invitations" +msgstr "" + +#: ../cache/locales.php:303 +#, php-format +msgid "%s wants to talk with you" +msgstr "" + +#: ../cache/locales.php:304 +msgid "Manage" +msgstr "" + +#: ../cache/locales.php:305 ../cache/locales.php:338 +msgid "News Feed" +msgstr "" + +#: ../cache/locales.php:306 ../cache/locales.php:339 +msgid "Discover and register to the groups you are interested in" +msgstr "" + +#: ../cache/locales.php:307 ../cache/locales.php:340 ../cache/locales.php:482 +msgid "Preview" +msgstr "" + +#: ../cache/locales.php:308 ../cache/locales.php:341 ../cache/locales.php:478 +msgid "Help" +msgstr "" + +#: ../cache/locales.php:309 ../cache/locales.php:342 +msgid "More help" +msgstr "" + +#: ../cache/locales.php:310 ../cache/locales.php:343 +msgid "Markdown syntax manual" +msgstr "" + +#: ../cache/locales.php:311 ../cache/locales.php:344 ../cache/locales.php:681 +msgid "Title" +msgstr "" + +#: ../cache/locales.php:312 ../cache/locales.php:345 +msgid "Content" +msgstr "" + +#: ../cache/locales.php:313 ../cache/locales.php:346 +msgid "Link" +msgstr "" + +#: ../cache/locales.php:314 ../cache/locales.php:347 +msgid "Tags" +msgstr "" + +#: ../cache/locales.php:315 ../cache/locales.php:348 +msgid "Please enter a valid url" +msgstr "" + +#: ../cache/locales.php:316 ../cache/locales.php:349 +msgid "No content to preview" +msgstr "" + +#: ../cache/locales.php:317 ../cache/locales.php:350 ../cache/locales.php:687 +msgid "No content" +msgstr "" + +#: ../cache/locales.php:318 ../cache/locales.php:351 +msgid "Post published" +msgstr "" + +#: ../cache/locales.php:319 ../cache/locales.php:352 +msgid "Post deleted" +msgstr "" + +#: ../cache/locales.php:320 ../cache/locales.php:353 +msgid "This picture will be added to your gallery" +msgstr "" + +#: ../cache/locales.php:321 ../cache/locales.php:354 +msgid "What's Hot" +msgstr "" + +#: ../cache/locales.php:322 ../cache/locales.php:355 +msgid "New post" +msgstr "" + +#: ../cache/locales.php:323 ../cache/locales.php:357 +msgid "" +"You can also use services like Imgur or Flickr to host your picture and " +"paste the link here." +msgstr "" + +#: ../cache/locales.php:324 +#, php-format +msgid "This is a re-post from %s" +msgstr "" + +#: ../cache/locales.php:325 +#, php-format +msgid "See %s profile" +msgstr "" + +#: ../cache/locales.php:326 +msgid "Publish this post on your public feed?" +msgstr "" + +#: ../cache/locales.php:327 +msgid "Post published on your blog" +msgstr "" + +#: ../cache/locales.php:328 +msgid "Post removed from your blog" +msgstr "" + +#: ../cache/locales.php:329 ../cache/locales.php:701 +msgid "Delete this post" +msgstr "" + +#: ../cache/locales.php:330 +msgid "You are going to delete this post, please confirm your action" +msgstr "" + +#: ../cache/locales.php:331 +msgid "Comments disabled" +msgstr "" + +#: ../cache/locales.php:332 +msgid "Comment published" +msgstr "" + +#: ../cache/locales.php:333 +msgid "Disconnect" +msgstr "" + +#: ../cache/locales.php:334 +msgid "Your status here !" +msgstr "" + +#: ../cache/locales.php:335 +msgid "Status updated" +msgstr "" + +#: ../cache/locales.php:336 +msgid "Status" +msgstr "" + +#: ../cache/locales.php:337 +msgid "Presence" +msgstr "" + +#: ../cache/locales.php:356 +msgid "Publish" +msgstr "" + +#: ../cache/locales.php:358 +msgid "You cannot publish a post on this Group" +msgstr "" + +#: ../cache/locales.php:359 +msgid "" +"Some fields have been filled in. Do you still want to go back and loose " +"their content?" +msgstr "" + +#: ../cache/locales.php:360 +msgid "Shared" +msgstr "" + +#: ../cache/locales.php:362 +#, php-format +msgid "%s has been added to your public groups" +msgstr "" + +#: ../cache/locales.php:363 +#, php-format +msgid "%s has been removed from your public groups" +msgstr "" + +#: ../cache/locales.php:364 +msgid "Add a chatroom" +msgstr "" + +#: ../cache/locales.php:365 +msgid "You don't have any chatroom yet." +msgstr "" + +#: ../cache/locales.php:366 +msgid "Add one by clicking on the add button in the header." +msgstr "" + +#: ../cache/locales.php:367 +msgid "Chatrooms" +msgstr "" + +#: ../cache/locales.php:370 +msgid "My Favorite Room" +msgstr "" + +#: ../cache/locales.php:374 +msgid "Remove a chatroom" +msgstr "" + +#: ../cache/locales.php:375 +msgid "" +"You are going to remove the following chatroom. Please confirm your action." +msgstr "" + +#: ../cache/locales.php:378 +msgid "Users in the room" +msgstr "" + +#: ../cache/locales.php:379 +msgid "Please enter a correct nickname (6 to 40 characters)" +msgstr "" + +#: ../cache/locales.php:381 +msgid "Public chatroom" +msgstr "" + +#: ../cache/locales.php:382 +msgid "Please provide a room address" +msgstr "" + +#: ../cache/locales.php:383 +msgid "You are currently logued as an anonymous user." +msgstr "" + +#: ../cache/locales.php:384 +msgid "" +"You can join using your own account or create one on the login page by " +"loging out using the cross in the top-right corner." +msgstr "" + +#: ../cache/locales.php:385 +#, php-format +msgid "Login on %s" +msgstr "" + +#: ../cache/locales.php:386 +msgid "Your nickname" +msgstr "" + +#: ../cache/locales.php:387 +msgid "Ungrouped" +msgstr "" + +#: ../cache/locales.php:388 +msgid "Show disconnected contacts" +msgstr "" + +#: ../cache/locales.php:389 +msgid "Hide disconnected contacts" +msgstr "" + +#: ../cache/locales.php:390 +#, php-format +msgid "Show group %s" +msgstr "" + +#: ../cache/locales.php:391 +#, php-format +msgid "Hide group %s" +msgstr "" + +#: ../cache/locales.php:392 +msgid "Please enter a valid Jabber ID" +msgstr "" + +#: ../cache/locales.php:393 +msgid "" +"No contacts ? You can add one using the + button bellow or going to the " +"Explore page" +msgstr "" + +#: ../cache/locales.php:394 +msgid "Show/Hide" +msgstr "" + +#: ../cache/locales.php:395 +msgid "Enter the Jabber ID of your contact." +msgstr "" + +#: ../cache/locales.php:396 +msgid "Press enter to validate." +msgstr "" + +#: ../cache/locales.php:397 +msgid "JID" +msgstr "" + +#: ../cache/locales.php:398 +msgid "Results" +msgstr "" + +#: ../cache/locales.php:399 +msgid "Contact added" +msgstr "" + +#: ../cache/locales.php:401 +msgid "Contact deleted" +msgstr "" + +#: ../cache/locales.php:403 msgid "This is not a valid url" msgstr "" -#: [share]success +#: ../cache/locales.php:404 msgid "Sharing the URL" msgstr "" -#: [statistics]title +#: ../cache/locales.php:405 msgid "Statistics" msgstr "" -#: [statistics]since +#: ../cache/locales.php:406 msgid "Since" msgstr "" -#: [statistics]sessions +#: ../cache/locales.php:407 msgid "Sessions" msgstr "" -#: [statistics]monthly_sub +#: ../cache/locales.php:409 msgid "Monthly Subscriptions" msgstr "" -#: [statistics]monthly_sub_cum +#: ../cache/locales.php:410 msgid "Monthly Subscriptions Cumulated" msgstr "" -#: [subscribe]info -msgid "Movim is a decentralized social network, before creating a new account you need to choose a server to register." +#: ../cache/locales.php:412 +msgid "" +"Movim is a decentralized social network, before creating a new account you " +"need to choose a server to register." msgstr "" -#: [subscribe]server_question +#: ../cache/locales.php:413 msgid "Your server here ?" msgstr "" -#: [subscribe]server_contact +#: ../cache/locales.php:414 msgid "Contact us to add yours to the officially supported servers list" msgstr "" -#: [feed]nope +#: ../cache/locales.php:416 msgid "No public feed for this contact" msgstr "" -#: [feed]nope_contact +#: ../cache/locales.php:417 msgid "No contact specified" msgstr "" -#: [upload]title -msgid "Upload a file" -msgstr "" - -#: [upload]choose -msgid "Choose a file to upload" -msgstr "" - -#: [vcard]title [page]profile +#: ../cache/locales.php:418 ../cache/locales.php:473 msgid "Profile" msgstr "" -#: [vcard]updated +#: ../cache/locales.php:419 msgid "Profile Updated" msgstr "" -#: [vcard]not_updated +#: ../cache/locales.php:420 msgid "Profile Not Updated" msgstr "" -#: [vcard]public +#: ../cache/locales.php:421 msgid "Your profile is now public" msgstr "" -#: [vcard]restricted +#: ../cache/locales.php:422 msgid "Your profile is now restricted" msgstr "" -#: [general]nickname -msgctxt "[general]nickname" -msgid "Nickname" -msgstr "" - -#: [accounts]twitter +#: ../cache/locales.php:436 msgid "Twitter" msgstr "" -#: [accounts]skype +#: ../cache/locales.php:437 msgid "Skype" msgstr "" -#: [accounts]yahoo +#: ../cache/locales.php:438 msgid "Yahoo" msgstr "" -#: [accounts]accounts_nickname -msgctxt "[accounts]accounts_nickname" -msgid "Nickname" -msgstr "" - -#: [accounts]accounts_yahoo -msgid "Yahoo Account" -msgstr "" - -#: [privacy]privacy_title +#: ../cache/locales.php:439 msgid "Privacy Level" msgstr "" -#: [privacy]privacy_question +#: ../cache/locales.php:440 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." +#: ../cache/locales.php:441 +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." msgstr "" -#: [save]submit [button]submit -msgid "Submit" -msgstr "" - -#: [save]reset [button]reset -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 +#: ../cache/locales.php:442 msgid "Call" msgstr "" -#: [visio]hang_up +#: ../cache/locales.php:443 msgid "Hang up" msgstr "" -#: [visio]connection +#: ../cache/locales.php:444 msgid "Connection" msgstr "" -#: [global]no_js +#: ../cache/locales.php:445 ../cache/locales.php:451 +msgid "Hung up" +msgstr "" + +#: ../cache/locales.php:446 ../cache/locales.php:452 +msgid "Your contact is busy" +msgstr "" + +#: ../cache/locales.php:447 ../cache/locales.php:453 +msgid "Declined" +msgstr "" + +#: ../cache/locales.php:448 ../cache/locales.php:454 +msgid "Remote application incompatible" +msgstr "" + +#: ../cache/locales.php:450 ../cache/locales.php:456 +msgid "Is calling you" +msgstr "" + +#: ../cache/locales.php:457 msgid "You don't have javascript enabled. Good luck with that." msgstr "" -#: [global]description -msgid "Movim is a kickass distributed social networking platform that protect your privacy an comes with a set of awesome features." +#: ../cache/locales.php:458 +msgid "" +"Movim is a kickass distributed social networking platform that protect your " +"privacy an comes with a set of awesome features." msgstr "" -#: [page]administration +#: ../cache/locales.php:459 msgid "Administration" msgstr "" -#: [page]home +#: ../cache/locales.php:460 msgid "Home" msgstr "" -#: [page]discover +#: ../cache/locales.php:461 msgid "Discover" msgstr "" -#: [page]explore +#: ../cache/locales.php:462 msgid "Explore" msgstr "" -#: [page]account_creation +#: ../cache/locales.php:463 msgid "Account Creation" msgstr "" -#: [page]avatar +#: ../cache/locales.php:464 +msgid "News" +msgstr "" + +#: ../cache/locales.php:465 msgid "Avatar" msgstr "" -#: [page]chats +#: ../cache/locales.php:467 msgid "Chats" msgstr "" -#: [page]server +#: ../cache/locales.php:470 msgid "Server" msgstr "" -#: [page]public_groups +#: ../cache/locales.php:471 msgid "Public Groups" msgstr "" -#: [page]viewer +#: ../cache/locales.php:472 msgid "Viewer" msgstr "" -#: [page]media +#: ../cache/locales.php:474 msgid "Media" msgstr "" -#: [page]blog +#: ../cache/locales.php:475 msgid "Blog" msgstr "" -#: [page]about +#: ../cache/locales.php:476 msgid "About" msgstr "" -#: [page]login +#: ../cache/locales.php:477 msgid "Login" msgstr "" -#: [page]feed +#: ../cache/locales.php:479 msgid "Feed" msgstr "" -#: [page]gallery +#: ../cache/locales.php:481 msgid "Gallery" msgstr "" -#: [page]visio +#: ../cache/locales.php:483 msgid "Visio-conference" msgstr "" -#: [page]pods +#: ../cache/locales.php:484 msgid "Pods" msgstr "" -#: [page]share +#: ../cache/locales.php:485 msgid "Share" msgstr "" -#: [page]room +#: ../cache/locales.php:486 msgid "Room" msgstr "" -#: [error]error +#: ../cache/locales.php:487 +#, php-format msgid "Error: %s" msgstr "" -#: [error]cannot_load_file +#: ../cache/locales.php:488 +#, php-format msgid "Cannot load file '%s'" msgstr "فایل '%s بارگزاری نمی شود" -#: [error]route +#: ../cache/locales.php:489 +#, php-format msgid "Route error, please set all the parameters for the page %s" msgstr "" -#: [error]widget_load_error +#: ../cache/locales.php:490 +#, php-format msgid "Requested widget '%s' doesn't exist." msgstr "" -#: [error]widget_call_error +#: ../cache/locales.php:491 +#, php-format msgid "Requested event '%s' not registered." msgstr "" -#: [error]whoops +#: ../cache/locales.php:492 msgid "Whoops!" msgstr "" -#: [error]media_not_found +#: ../cache/locales.php:493 msgid "It seem that you don't have any pictures here?" msgstr "" -#: [error]media_ask_upload +#: ../cache/locales.php:494 msgid "You can try to upload a couple by going to the Media page" msgstr "" -#: [title]about +#: ../cache/locales.php:495 +#, php-format msgid "%s - About" msgstr "" -#: [title]account +#: ../cache/locales.php:496 +#, php-format msgid "%s - Account" msgstr "" -#: [title]administration +#: ../cache/locales.php:497 +#, php-format msgid "%s - Administration Panel" msgstr "" -#: [title]blog +#: ../cache/locales.php:498 +#, php-format msgid "%s - Blog" msgstr "" -#: [title]configuration +#: ../cache/locales.php:499 +#, php-format msgid "%s - Configuration" msgstr "" -#: [title]discover +#: ../cache/locales.php:500 +#, php-format msgid "%s - Discover" msgstr "" -#: [title]explore +#: ../cache/locales.php:501 +#, php-format msgid "%s - Explore" msgstr "" -#: [title]help +#: ../cache/locales.php:502 +#, php-format msgid "%s - Help Page" msgstr "" -#: [title]login +#: ../cache/locales.php:503 +#, php-format msgid "%s - Login to Movim" msgstr "" -#: [title]main +#: ../cache/locales.php:504 +#, php-format msgid "%s - Welcome to Movim" msgstr "" -#: [title]media +#: ../cache/locales.php:505 +#, php-format msgid "%s - Media" msgstr "" -#: [title]news +#: ../cache/locales.php:506 +#, php-format msgid "%s - News" msgstr "" -#: [title]node_configuration +#: ../cache/locales.php:507 +#, php-format msgid "%s - Group Configuration" msgstr "" -#: [title]node +#: ../cache/locales.php:508 +#, php-format msgid "%s - Group" msgstr "" -#: [title]not_found +#: ../cache/locales.php:509 +#, php-format msgid "%s - 404" msgstr "" -#: [title]profile +#: ../cache/locales.php:510 +#, php-format msgid "%s - Profile" msgstr "" -#: [title]server +#: ../cache/locales.php:511 +#, php-format msgid "%s - Server" msgstr "" -#: [button]validate +#: ../cache/locales.php:512 msgid "Validate" msgstr "" -#: [button]refresh +#: ../cache/locales.php:513 msgid "Refresh" msgstr "" -#: [button]add +#: ../cache/locales.php:514 msgid "Add" msgstr "" -#: [button]delete +#: ../cache/locales.php:515 msgid "Delete" msgstr "" -#: [button]cancel +#: ../cache/locales.php:516 +msgid "Remove" +msgstr "" + +#: ../cache/locales.php:517 msgid "Cancel" msgstr "" -#: [button]close +#: ../cache/locales.php:518 msgid "Close" msgstr "" -#: [button]update +#: ../cache/locales.php:519 msgid "Update" msgstr "" -#: [button]updating +#: ../cache/locales.php:520 msgid "Updating" msgstr "" -#: [button]submitting +#: ../cache/locales.php:521 +msgid "Submit" +msgstr "" + +#: ../cache/locales.php:522 msgid "Submitting" msgstr "" -#: [button]register +#: ../cache/locales.php:523 +msgid "Reset" +msgstr "" + +#: ../cache/locales.php:524 msgid "Register" msgstr "" -#: [button]unregister +#: ../cache/locales.php:525 msgid "Unregister" msgstr "" -#: [button]save +#: ../cache/locales.php:526 msgid "Save" msgstr "" -#: [button]clear +#: ../cache/locales.php:527 msgid "Clear" msgstr "" -#: [button]upload +#: ../cache/locales.php:528 msgid "Upload" msgstr "" -#: [button]come_in +#: ../cache/locales.php:529 msgid "Come in!" msgstr "" -#: [button]connecting +#: ../cache/locales.php:530 msgid "Connecting" msgstr "" -#: [button]bool_yes +#: ../cache/locales.php:531 msgid "Yes" msgstr "" -#: [button]bool_no +#: ../cache/locales.php:532 msgid "No" msgstr "" -#: [button]return +#: ../cache/locales.php:534 msgid "Return" msgstr "" -#: [button]accept +#: ../cache/locales.php:535 msgid "Accept" msgstr "" -#: [button]refuse +#: ../cache/locales.php:536 msgid "Refuse" msgstr "" -#: [button]next +#: ../cache/locales.php:537 msgid "Next" msgstr "" -#: [button]previous +#: ../cache/locales.php:538 msgid "Previous" msgstr "" -#: [step]step +#: ../cache/locales.php:539 +#, php-format msgid "Step %s" msgstr "" -#: [day]title +#: ../cache/locales.php:542 msgid "Day" msgstr "" -#: [day]monday +#: ../cache/locales.php:543 msgid "Monday" msgstr "دو‌شنبه" -#: [day]tuesday +#: ../cache/locales.php:544 msgid "Tuesday" msgstr "سه‌‌شنبه" -#: [day]wednesday +#: ../cache/locales.php:545 msgid "Wednesday" msgstr "چهار‌شنبه" -#: [day]thursday +#: ../cache/locales.php:546 msgid "Thursday" msgstr "پنج‌شنبه" -#: [day]friday +#: ../cache/locales.php:547 msgid "Friday" msgstr "جمعه" -#: [day]saturday +#: ../cache/locales.php:548 msgid "Saturday" msgstr "شنبه" -#: [day]sunday +#: ../cache/locales.php:549 msgid "Sunday" msgstr "" -#: [gender]nil -msgctxt "[gender]nil" +#: ../cache/locales.php:550 ../cache/locales.php:559 msgid "None" msgstr "" -#: [gender]male +#: ../cache/locales.php:551 msgid "Male" msgstr "" -#: [gender]female +#: ../cache/locales.php:552 msgid "Female" msgstr "" -#: [gender]other +#: ../cache/locales.php:553 msgid "Other" msgstr "" -#: [client]bot +#: ../cache/locales.php:554 msgid "Bot" msgstr "" -#: [client]desktop +#: ../cache/locales.php:555 msgid "Desktop" msgstr "" -#: [client]phone +#: ../cache/locales.php:556 msgid "Phone" msgstr "" -#: [client]web +#: ../cache/locales.php:557 msgid "Web" msgstr "" -#: [client]registered +#: ../cache/locales.php:558 msgid "Registered" msgstr "" -#: [marital]nil -msgctxt "[marital]nil" -msgid "None" -msgstr "" - -#: [marital]single +#: ../cache/locales.php:560 msgid "Single" msgstr "" -#: [marital]relationship +#: ../cache/locales.php:561 msgid "In a relationship" msgstr "" -#: [marital]married +#: ../cache/locales.php:562 msgid "Married" msgstr "" -#: [marital]divorced +#: ../cache/locales.php:563 msgid "Divorced" msgstr "" -#: [marital]widowed +#: ../cache/locales.php:564 msgid "Widowed" msgstr "" -#: [marital]cohabiting +#: ../cache/locales.php:565 msgid "Cohabiting" msgstr "" -#: [marital]union +#: ../cache/locales.php:566 msgid "Civil Union" msgstr "" -#: [flag]white +#: ../cache/locales.php:567 msgid "Not shared" msgstr "" -#: [flag]green +#: ../cache/locales.php:568 msgid "Shared with one contact" msgstr "" -#: [flag]orange +#: ../cache/locales.php:569 msgid "Shared with all contacts" msgstr "" -#: [flag]red +#: ../cache/locales.php:570 msgid "Shared with the XMPP network" msgstr "" -#: [flag]black +#: ../cache/locales.php:571 msgid "Shared with the whole Internet" msgstr "" -#: [presence]online +#: ../cache/locales.php:572 msgid "Online" msgstr "" -#: [presence]away +#: ../cache/locales.php:573 msgid "Away" msgstr "" -#: [presence]dnd +#: ../cache/locales.php:574 msgid "Do Not Disturb" msgstr "" -#: [presence]xa +#: ../cache/locales.php:575 msgid "Extended Away" msgstr "" -#: [presence]offline +#: ../cache/locales.php:576 msgid "Offline" msgstr "" -#: [presence]error +#: ../cache/locales.php:577 msgid "Error" msgstr "" -#: [mood]afraid +#: ../cache/locales.php:578 msgid "afraid" msgstr "" -#: [mood]amazed +#: ../cache/locales.php:579 msgid "amazed" msgstr "" -#: [mood]amorous +#: ../cache/locales.php:580 msgid "amorous" msgstr "" -#: [mood]angry +#: ../cache/locales.php:581 msgid "angry" msgstr "" -#: [mood]annoyed +#: ../cache/locales.php:582 msgid "annoyed" msgstr "" -#: [mood]anxious +#: ../cache/locales.php:583 msgid "anxious" msgstr "" -#: [mood]aroused +#: ../cache/locales.php:584 msgid "aroused" msgstr "" -#: [mood]ashamed +#: ../cache/locales.php:585 msgid "ashamed" msgstr "" -#: [mood]bored +#: ../cache/locales.php:586 msgid "bored" msgstr "" -#: [mood]brave +#: ../cache/locales.php:587 msgid "brave" msgstr "" -#: [mood]calm +#: ../cache/locales.php:588 msgid "calm" msgstr "" -#: [mood]cautious +#: ../cache/locales.php:589 msgid "cautious" msgstr "" -#: [mood]cold +#: ../cache/locales.php:590 msgid "cold" msgstr "" -#: [mood]confident +#: ../cache/locales.php:591 msgid "confident" msgstr "" -#: [mood]confused +#: ../cache/locales.php:592 msgid "confused" msgstr "" -#: [mood]contemplative +#: ../cache/locales.php:593 msgid "contemplative" msgstr "" -#: [mood]contented +#: ../cache/locales.php:594 msgid "contented" msgstr "" -#: [mood]cranky +#: ../cache/locales.php:595 msgid "cranky" msgstr "" -#: [mood]crazy +#: ../cache/locales.php:596 msgid "crazy" msgstr "" -#: [mood]creative +#: ../cache/locales.php:597 msgid "creative" msgstr "" -#: [mood]curious +#: ../cache/locales.php:598 msgid "curious" msgstr "" -#: [mood]dejected +#: ../cache/locales.php:599 msgid "dejected" msgstr "" -#: [mood]depressed +#: ../cache/locales.php:600 msgid "depressed" msgstr "" -#: [mood]disappointed +#: ../cache/locales.php:601 msgid "disappointed" msgstr "" -#: [mood]disgusted +#: ../cache/locales.php:602 msgid "disgusted" msgstr "" -#: [mood]dismayed +#: ../cache/locales.php:603 msgid "dismayed" msgstr "" -#: [mood]distracted +#: ../cache/locales.php:604 msgid "distracted" msgstr "" -#: [mood]embarrassed +#: ../cache/locales.php:605 msgid "embarrassed" msgstr "" -#: [mood]envious +#: ../cache/locales.php:606 msgid "envious" msgstr "" -#: [mood]excited +#: ../cache/locales.php:607 msgid "excited" msgstr "" -#: [mood]flirtatious +#: ../cache/locales.php:608 msgid "flirtatious" msgstr "" -#: [mood]frustated +#: ../cache/locales.php:609 msgid "frustated" msgstr "" -#: [mood]grateful +#: ../cache/locales.php:610 msgid "grateful" msgstr "" -#: [mood]grieving +#: ../cache/locales.php:611 msgid "grieving" msgstr "" -#: [mood]grumpy +#: ../cache/locales.php:612 msgid "grumpy" msgstr "" -#: [mood]guilty +#: ../cache/locales.php:613 msgid "guilty" msgstr "" -#: [mood]happy +#: ../cache/locales.php:614 msgid "happy" msgstr "" -#: [mood]hopeful +#: ../cache/locales.php:615 msgid "hopeful" msgstr "" -#: [mood]hot +#: ../cache/locales.php:616 msgid "hot" msgstr "" -#: [mood]humbled +#: ../cache/locales.php:617 msgid "humbled" msgstr "" -#: [mood]humiliated +#: ../cache/locales.php:618 msgid "humiliated" msgstr "" -#: [mood]hungry +#: ../cache/locales.php:619 msgid "hungry" msgstr "" -#: [mood]hurt +#: ../cache/locales.php:620 msgid "hurt" msgstr "" -#: [mood]impressed +#: ../cache/locales.php:621 msgid "impressed" msgstr "" -#: [mood]in_awe +#: ../cache/locales.php:622 msgid "in awe" msgstr "" -#: [mood]in_love +#: ../cache/locales.php:623 msgid "in love" msgstr "" -#: [mood]indignant +#: ../cache/locales.php:624 msgid "indignant" msgstr "" -#: [mood]interested +#: ../cache/locales.php:625 msgid "interested" msgstr "" -#: [mood]intoxicated +#: ../cache/locales.php:626 msgid "intoxicated" msgstr "" -#: [mood]invincible +#: ../cache/locales.php:627 msgid "invincible" msgstr "" -#: [mood]jealous +#: ../cache/locales.php:628 msgid "jealous" msgstr "" -#: [mood]lonely +#: ../cache/locales.php:629 msgid "lonely" msgstr "" -#: [mood]lost +#: ../cache/locales.php:630 msgid "lost" msgstr "" -#: [mood]lucky +#: ../cache/locales.php:631 msgid "lucky" msgstr "" -#: [mood]mean +#: ../cache/locales.php:632 msgid "mean" msgstr "" -#: [mood]moody +#: ../cache/locales.php:633 msgid "moody" msgstr "" -#: [mood]nervous +#: ../cache/locales.php:634 msgid "nervous" msgstr "" -#: [mood]neutral +#: ../cache/locales.php:635 msgid "neutral" msgstr "" -#: [mood]offended +#: ../cache/locales.php:636 msgid "offended" msgstr "" -#: [mood]outraged +#: ../cache/locales.php:637 msgid "outraged" msgstr "" -#: [mood]playful +#: ../cache/locales.php:638 msgid "playful" msgstr "" -#: [mood]proud +#: ../cache/locales.php:639 msgid "proud" msgstr "" -#: [mood]relaxed +#: ../cache/locales.php:640 msgid "relaxed" msgstr "" -#: [mood]relieved +#: ../cache/locales.php:641 msgid "relieved" msgstr "" -#: [mood]restless +#: ../cache/locales.php:642 +msgid "remorseful" +msgstr "" + +#: ../cache/locales.php:643 msgid "restless" msgstr "" -#: [mood]sad +#: ../cache/locales.php:644 msgid "sad" msgstr "" -#: [mood]sarcastic +#: ../cache/locales.php:645 msgid "sarcastic" msgstr "" -#: [mood]satisfied +#: ../cache/locales.php:646 msgid "satisfied" msgstr "" -#: [mood]serious +#: ../cache/locales.php:647 msgid "serious" msgstr "" -#: [mood]shocked +#: ../cache/locales.php:648 msgid "shocked" msgstr "" -#: [mood]shy +#: ../cache/locales.php:649 msgid "shy" msgstr "" -#: [mood]sick +#: ../cache/locales.php:650 msgid "sick" msgstr "" -#: [mood]sleepy +#: ../cache/locales.php:651 msgid "sleepy" msgstr "" -#: [mood]spontaneous +#: ../cache/locales.php:652 msgid "spontaneous" msgstr "" -#: [mood]stressed +#: ../cache/locales.php:653 msgid "stressed" msgstr "" -#: [mood]strong +#: ../cache/locales.php:654 msgid "strong" msgstr "" -#: [mood]surprised +#: ../cache/locales.php:655 msgid "surprised" msgstr "" -#: [mood]thankful +#: ../cache/locales.php:656 msgid "thankful" msgstr "" -#: [mood]thirsty +#: ../cache/locales.php:657 msgid "thirsty" msgstr "" -#: [mood]tired +#: ../cache/locales.php:658 msgid "tired" msgstr "" -#: [mood]undefined +#: ../cache/locales.php:659 msgid "undefined" msgstr "" -#: [mood]weak +#: ../cache/locales.php:660 msgid "weak" msgstr "" -#: [mood]worried +#: ../cache/locales.php:661 msgid "worried" msgstr "" -#: [month]title +#: ../cache/locales.php:662 msgid "Month" msgstr "" -#: [month]january +#: ../cache/locales.php:663 msgid "January" msgstr "ژانویه" -#: [month]february +#: ../cache/locales.php:664 msgid "February" msgstr "فوریه" -#: [month]march +#: ../cache/locales.php:665 msgid "March" msgstr "مارس" -#: [month]april +#: ../cache/locales.php:666 msgid "April" msgstr "آوریل" -#: [month]may +#: ../cache/locales.php:667 msgid "May" msgstr "می" -#: [month]june +#: ../cache/locales.php:668 msgid "June" msgstr "ژوئن" -#: [month]july +#: ../cache/locales.php:669 msgid "July" msgstr "جولای" -#: [month]august +#: ../cache/locales.php:670 msgid "August" msgstr "آگوست" -#: [month]september +#: ../cache/locales.php:671 msgid "September" msgstr "سپتامبر" -#: [month]october +#: ../cache/locales.php:672 msgid "October" msgstr "" -#: [month]november +#: ../cache/locales.php:673 msgid "November" msgstr "" -#: [month]december +#: ../cache/locales.php:674 msgid "December" msgstr "" -#: [year]title +#: ../cache/locales.php:675 msgid "Year" msgstr "" -#: [date]today +#: ../cache/locales.php:676 msgid "Today" msgstr "" -#: [date]tomorrow +#: ../cache/locales.php:677 msgid "Tomorrow" msgstr "" -#: [date]yesterday +#: ../cache/locales.php:678 msgid "Yesterday" msgstr "" -#: [date]ago -msgid "%d days ago" +#: ../cache/locales.php:679 +#, php-format +msgid " %d days ago" msgstr "" -#: [date]day +#: ../cache/locales.php:680 msgid "day" msgstr "" -#: [post]whats_new +#: ../cache/locales.php:682 msgid "What's new ?" msgstr "" -#: [post]place +#: ../cache/locales.php:683 msgid "Place" msgstr "" -#: [post]by +#: ../cache/locales.php:684 msgid "by" msgstr "" -#: [post]geolocalisation +#: ../cache/locales.php:685 msgid "Geolocalisation" msgstr "" -#: [post]email +#: ../cache/locales.php:686 msgid "email" msgstr "" -#: [post]no_comments +#: ../cache/locales.php:688 msgid "No comments yet" msgstr "" -#: [post]no_comments_stream +#: ../cache/locales.php:689 msgid "No comments stream" msgstr "" -#: [post]no_load +#: ../cache/locales.php:690 msgid "Your feed cannot be loaded." msgstr "" -#: [post]older +#: ../cache/locales.php:691 msgid "Get older posts" msgstr "" -#: [post]new_items +#: ../cache/locales.php:692 +#, php-format msgid "%s new items" msgstr "" -#: [post]comment_error +#: ../cache/locales.php:693 msgid "Comment publication error" msgstr "" -#: [post]comments_older +#: ../cache/locales.php:694 msgid "Show the older comments" msgstr "" -#: [post]comments_loading -msgid "Loading comments..." +#: ../cache/locales.php:695 +msgid "Loading comments ..." msgstr "" -#: [post]comments_get +#: ../cache/locales.php:696 msgid "Get the comments" msgstr "" -#: [post]comment_add +#: ../cache/locales.php:697 msgid "Add a comment" msgstr "" -#: [post]share +#: ../cache/locales.php:698 msgid "Share with" msgstr "" -#: [post]share_everyone +#: ../cache/locales.php:699 msgid "Everyone" msgstr "" -#: [post]share_your_contacts +#: ../cache/locales.php:700 msgid "Your contacts" msgstr "" -#: [post]updated +#: ../cache/locales.php:702 msgid "Updated" msgstr "" -#: [post]content_not_found +#: ../cache/locales.php:703 msgid "Content not found" msgstr "" -#: [post]default_title +#: ../cache/locales.php:704 msgid "Contact publication" msgstr "" -#: [post]comments +#: ../cache/locales.php:705 msgid "Comments" msgstr "" -#: [api]error +#: ../cache/locales.php:706 msgid "The API is not reachable, try again later" msgstr "" -#: [field]type_here +#: ../cache/locales.php:707 msgid "Type here" msgstr "" diff --git a/sources/locales/fi.po b/sources/locales/fi.po index 8b319d2..bacfeb3 100644 --- a/sources/locales/fi.po +++ b/sources/locales/fi.po @@ -1,2736 +1,2612 @@ # Finnish translations for Movim package. # This file is distributed under the same license as the Movim package. # This file was translated from CodingTeam at . -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/About/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Account/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/AccountNext/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/AdHoc/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/AdminDB/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/AdminMain/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/AdminTest/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Api/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Avatar/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Blog/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Bookmark/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Chat/locales.ini -#. #-#-#-#-# 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 -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Group/locales.ini -#. #-#-#-#-# 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 -#. #-#-#-#-# 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 -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Presence/locales.ini -#. #-#-#-#-# 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 -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Share/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Statistics/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Subscribe/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Syndication/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Upload/locales.ini -#. #-#-#-#-# 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-08-20 15:17+0200\n" +"POT-Creation-Date: 2015-06-08 22:06+0200\n" "PO-Revision-Date: 2012-07-19 13:34+0000\n" "Last-Translator: Sampo Harjula \n" "Language-Team: LANGUAGE \n" -"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2015-06-18 21:08+0000\n" "X-Generator: Launchpad (build 17570)\n" +"Language: \n" -#: [about]thanks +#: ../cache/locales.php:2 msgid "Thanks" msgstr "" -#: [about]developers +#: ../cache/locales.php:3 msgid "Developers" msgstr "" -#: [about]translators +#: ../cache/locales.php:4 msgid "Translators" msgstr "" -#: [about]software +#: ../cache/locales.php:5 msgid "Software" msgstr "" -#: [about]resources +#: ../cache/locales.php:6 msgid "Resources" msgstr "" -#: [about]api [schema]api [api]title +#: ../cache/locales.php:7 ../cache/locales.php:83 ../cache/locales.php:85 msgid "API" msgstr "" -#: [about]info -msgid "Movim is an XMPP-based communication platform. All the project, except the following software and resources, is under" +#: ../cache/locales.php:8 +msgid "" +"Movim is an XMPP-based communication platform. All the project, except the " +"following software and resources, is under" msgstr "" -#: [account]title +#: ../cache/locales.php:9 msgid "Account" msgstr "" -#: [account]password_change_title -#, fuzzy -msgid "Change my password" -msgstr "Väärä salasana" - -#: [account]password [db]password [credentials]password [form]password -#: [input]password -msgid "Password" -msgstr "Salasana" - -#: [account]password_confirmation -#, fuzzy -msgid "Password confirmation" -msgstr "%s - Konfigurointi" - -#: [account]password_changed +#: ../cache/locales.php:10 msgid "The password has been updated" msgstr "" -#: [account]password_not_valid +#: ../cache/locales.php:11 msgid "Please provide a valid password (6 characters minimum)" msgstr "" -#: [account]password_not_same +#: ../cache/locales.php:12 msgid "The provided passwords are not the same" msgstr "" -#: [account]delete_title +#: ../cache/locales.php:13 msgid "Delete my account" msgstr "" -#: [account]delete -#, fuzzy -msgid "Delete your account" -msgstr "Luo uusi tili" - -#: [account]delete_text -msgid "You will delete your XMPP account and all the relative information linked to it (profile, contacts and publications)." +#: ../cache/locales.php:14 +msgid "" +"You will delete your XMPP account and all the relative information linked to " +"it (profile, contacts and publications)." msgstr "" -#: [account]delete_text_confirm +#: ../cache/locales.php:15 msgid "Are you sure that you want to delete it ?" msgstr "" -#: [account]gateway_title -msgid "Gateway" -msgstr "" - -#: [create]title [subscribe]title +#: ../cache/locales.php:16 ../cache/locales.php:411 msgid "Create a new account" msgstr "Luo uusi tili" -#: [create]notfound +#: ../cache/locales.php:17 msgid "No account creation form found on the server" msgstr "" -#: [create]server_on +#: ../cache/locales.php:18 ../cache/locales.php:172 msgid "on" msgstr "" -#: [create]successfull +#: ../cache/locales.php:19 msgid "Your acccount has been successfully registered" msgstr "" -#: [create]loading +#: ../cache/locales.php:20 msgid "Loading" msgstr "" -#: [error]not_acceptable +#: ../cache/locales.php:21 msgid "Not Acceptable" msgstr "" -#: [error]service_unavailable +#: ../cache/locales.php:22 msgid "The registration system of this server is currently unavailable" msgstr "" -#: [oob]about -msgid "This server use an external system for the registration, please click on the following URL." +#: ../cache/locales.php:23 +msgid "" +"This server use an external system for the registration, please click on the " +"following URL." msgstr "" -#: [adhoc]title +#: ../cache/locales.php:24 msgid "Actions" msgstr "Toimenpiteet" -#: [db]legend [schema]database +#: ../cache/locales.php:25 ../cache/locales.php:82 msgid "Database" msgstr "" -#: [db]connect_error +#: ../cache/locales.php:26 msgid "Modl wasn't able to connect to the database" msgstr "" -#: [db]connect_success +#: ../cache/locales.php:27 msgid "Movim is connected to the database" msgstr "" -#: [db]update +#: ../cache/locales.php:28 msgid "The database need to be updated" msgstr "" -#: [db]up_to_date +#: ../cache/locales.php:29 msgid "Movim database is up to date" msgstr "" -#: [db]type +#: ../cache/locales.php:30 msgid "Database Type" msgstr "" -#: [db]username [credentials]username [input]username +#: ../cache/locales.php:31 ../cache/locales.php:50 ../cache/locales.php:540 msgid "Username" msgstr "" -#: [db]host +#: ../cache/locales.php:32 ../cache/locales.php:51 ../cache/locales.php:282 +#: ../cache/locales.php:541 +msgid "Password" +msgstr "Salasana" + +#: ../cache/locales.php:33 msgid "Host" msgstr "" -#: [db]port +#: ../cache/locales.php:34 msgid "Port" msgstr "" -#: [db]name -#, fuzzy -msgid "Database sName" -msgstr "Tietokanta tunnistettu" +#: ../cache/locales.php:35 +msgid "Database Name" +msgstr "" -#: [admin]general +#: ../cache/locales.php:36 msgid "General Settings" msgstr "" -#: [general]theme +#: ../cache/locales.php:37 msgid "Theme" msgstr "" -#: [general]language +#: ../cache/locales.php:38 msgid "Default language" msgstr "" -#: [general]log_verbosity +#: ../cache/locales.php:39 +msgid "Environment" +msgstr "" + +#: ../cache/locales.php:40 msgid "Log verbosity" msgstr "" -#: [general]timezone +#: ../cache/locales.php:41 msgid "Server Timezone" msgstr "" -#: [general]limit +#: ../cache/locales.php:42 msgid "User folder size limit (in bytes)" msgstr "" -#: [websocket]title +#: ../cache/locales.php:43 msgid "WebSocket Configuration" msgstr "" -#: [websocket]info +#: ../cache/locales.php:44 msgid "Enter here a valid WebSocket URI in the form" msgstr "" -#: [websocket]label +#: ../cache/locales.php:45 msgid "WebSocket URI" msgstr "" -#: [websocket]save_info -msgid "If you change the URI, please restart the daemon to reload the configuration" +#: ../cache/locales.php:46 +msgid "" +"If you change the URI, please restart the daemon to reload the configuration" msgstr "" -#: [websocket]publics +#: ../cache/locales.php:47 msgid "Public WebSockets" msgstr "" -#: [credentials]title +#: ../cache/locales.php:48 msgid "Administration Credential" msgstr "" -#: [credentials]info +#: ../cache/locales.php:49 msgid "Change the default credentials admin/password" msgstr "" -#: [credentials]re_password +#: ../cache/locales.php:52 msgid "Retype password" msgstr "" -#: [whitelist]title +#: ../cache/locales.php:53 msgid "Whitelist - XMPP Server" msgstr "" -#: [whitelist]info1 -msgid "If you want to specify a list of authorized XMPP servers on your Movim pod and forbid the connection on all the others please put their domain name here, with comma (ex: movim.eu,jabber.fr)" +#: ../cache/locales.php:54 +msgid "" +"If you want to specify a list of authorized XMPP servers on your Movim pod " +"and forbid the connection on all the others please put their domain name " +"here, with comma (ex: movim.eu,jabber.fr)" msgstr "" -#: [whitelist]info2 -msgid "Leave this field blank if you allow the access to all the XMPP accounts." +#: ../cache/locales.php:55 +msgid "" +"Leave this field blank if you allow the access to all the XMPP accounts." msgstr "" -#: [whitelist]label +#: ../cache/locales.php:56 msgid "List of whitelisted XMPP servers" msgstr "" -#: [information]title -#, fuzzy -msgctxt "[information]title" +#: ../cache/locales.php:57 ../cache/locales.php:61 msgid "Information Message" -msgstr "Asiakastiedot" +msgstr "" -#: [information]description +#: ../cache/locales.php:58 msgid "Description" msgstr "" -#: [information]info1 +#: ../cache/locales.php:59 msgid "This message will be displayed on the login page" msgstr "" -#: [information]info2 -msgid "Leave this field blank if you dont want to show any message." +#: ../cache/locales.php:60 +msgid "Leave this field blank if you don't want to show any message." msgstr "" -#: [information]label -#, fuzzy -msgctxt "[information]label" -msgid "Information Message" -msgstr "Asiakastiedot" - -#: [log]empty +#: ../cache/locales.php:62 msgid "Empty" msgstr "" -#: [log]syslog +#: ../cache/locales.php:63 msgid "Syslog" msgstr "" -#: [log]syslog_files +#: ../cache/locales.php:64 msgid "Syslog and files" msgstr "" -#: [rewrite]title +#: ../cache/locales.php:65 msgid "URL Rewriting" msgstr "" -#: [rewrite]info +#: ../cache/locales.php:66 msgid "The URL Rewriting can be enabled" msgstr "" -#: [admin]compatibility +#: ../cache/locales.php:67 msgid "General Overview" msgstr "" -#: [compatibility]info -msgid "Movim has found some issues or things that need to be fixed or improved" +#: ../cache/locales.php:68 +msgid "" +"Movim has found some issues or things that need to be fixed or improved" msgstr "" -#: [compatibility]php1 +#: ../cache/locales.php:69 +#, php-format msgid "Update your PHP-Version: %s" msgstr "" -#: [compatibility]php2 +#: ../cache/locales.php:70 msgid "Required: 5.3.0" msgstr "" -#: [compatibility]curl +#: ../cache/locales.php:71 msgid "Install the php5-curl library" msgstr "" -#: [compatibility]imagick +#: ../cache/locales.php:72 msgid "Install the php5-imagick library" msgstr "" -#: [compatibility]gd +#: ../cache/locales.php:73 msgid "Install the php5-gd library" msgstr "" -#: [compatibility]rights -#, fuzzy -msgid "Read and write rights for the webserver in Movims root directory" -msgstr "kirjoitus- ja lukuoikeudet Movim-juurihakemistoon" +#: ../cache/locales.php:74 +msgid "Read and write rights for the webserver in Movim's root directory" +msgstr "" -#: [compatibility]rewrite +#: ../cache/locales.php:75 msgid "The URL Rewriting support is currently disabled" msgstr "" -#: [compatibility]db +#: ../cache/locales.php:76 msgid "The database need to be updated, go to the database panel to fix this" msgstr "" -#: [compatibility]websocket -msgid "WebSocket connection error, check if the Movim Daemon is running and is reachable" +#: ../cache/locales.php:77 +msgid "" +"WebSocket connection error, check if the Movim Daemon is running and is " +"reacheable" msgstr "" -#: [compatibility]xmpp_websocket -msgid "XMPP Websocket connection error, please check the validity of the URL given in the General Configuration" +#: ../cache/locales.php:78 +msgid "" +"XMPP Websocket connection error, please check the validity of the URL given " +"in the General Configuration" msgstr "" -#: [schema]browser +#: ../cache/locales.php:79 msgid "Browser" msgstr "" -#: [schema]movim +#: ../cache/locales.php:80 msgid "Movim Core" msgstr "" -#: [schema]daemon +#: ../cache/locales.php:81 msgid "Movim Daemon" msgstr "" -#: [schema]xmpp +#: ../cache/locales.php:84 msgid "XMPP" msgstr "" -#: [api]info -msgid "Here you can register your pod on the official %sMovim API%s and be listed on %sthe pods page%s." +#: ../cache/locales.php:86 +#, php-format +msgid "" +"Here you can register your pod on the official %sMovim API%s and be listed " +"on %sthe pods page%s." msgstr "" -#: [api]register +#: ../cache/locales.php:87 msgid "Your pod is not registered on the API" msgstr "" -#: [api]registered +#: ../cache/locales.php:88 msgid "Your pod is registered on the API" msgstr "" -#: [api]wait +#: ../cache/locales.php:89 msgid "Your pod is not yet validated" msgstr "" -#: [api]validated +#: ../cache/locales.php:90 msgid "Your pod is validated" msgstr "" -#: [api]unregister -msgid "You asked to be removed from the API, this request will be processed in a couple of hours" +#: ../cache/locales.php:91 +msgid "" +"You asked to be removed from the API, this request will be processed in a " +"couple of hours" msgstr "" -#: [api]conf_updated [config]updated +#: ../cache/locales.php:92 ../cache/locales.php:147 msgid "Configuration updated" msgstr "" -#: [avatar]file +#: ../cache/locales.php:93 msgid "File" msgstr "" -#: [avatar]use_it +#: ../cache/locales.php:94 msgid "Use it" msgstr "" -#: [avatar]webcam +#: ../cache/locales.php:95 msgid "Webcam" msgstr "" -#: [avatar]cheese +#: ../cache/locales.php:96 msgid "Cheese !" msgstr "" -#: [avatar]snapshot +#: ../cache/locales.php:97 msgid "Take a webcam snapshot" msgstr "" -#: [avatar]updated +#: ../cache/locales.php:98 msgid "Avatar Updated" msgstr "" -#: [avatar]not_updated +#: ../cache/locales.php:99 msgid "Avatar Not Updated" msgstr "" -#: [blog]title [feed]title +#: ../cache/locales.php:100 ../cache/locales.php:415 +#, php-format msgid "%s's feed" msgstr "" -#: [blog]empty +#: ../cache/locales.php:101 msgid "This user has not posted anything right now" msgstr "" -#: [title]conferences +#: ../cache/locales.php:102 msgid "Conferences" msgstr "" -#: [title]groups [group]empty_title [menu]groups [page]groups +#: ../cache/locales.php:103 ../cache/locales.php:193 ../cache/locales.php:217 +#: ../cache/locales.php:468 msgid "Groups" msgstr "" -#: [chatroom]add +#: ../cache/locales.php:104 msgid "Add a new Chat Room" msgstr "" -#: [chatroom]id [chatrooms]id +#: ../cache/locales.php:105 ../cache/locales.php:368 msgid "Chat Room ID" msgstr "" -#: [chatroom]name -#, fuzzy -msgctxt "[chatroom]name" +#: ../cache/locales.php:106 ../cache/locales.php:116 ../cache/locales.php:156 +#: ../cache/locales.php:361 ../cache/locales.php:369 ../cache/locales.php:424 msgid "Name" msgstr "Nimi" -#: [chatroom]nickname [general]nickname [chatrooms]nickname +#: ../cache/locales.php:107 ../cache/locales.php:157 ../cache/locales.php:371 +#: ../cache/locales.php:425 msgid "Nickname" msgstr "Lempinimi" -#: [chatroom]autojoin_label +#: ../cache/locales.php:108 msgid "Do you want do join automaticaly this Chat Room ?" msgstr "" -#: [chatroom]bad_id [chatrooms]bad_id +#: ../cache/locales.php:109 ../cache/locales.php:372 msgid "Bad Chatroom ID" msgstr "" -#: [chatroom]empty_name [chatrooms]empty_name +#: ../cache/locales.php:110 ../cache/locales.php:373 msgid "Empty name" msgstr "" -#: [bookmarks]updated +#: ../cache/locales.php:111 ../cache/locales.php:380 msgid "Bookmarks updated" msgstr "" -#: [bookmarks]error -msgid "An error occured :" +#: ../cache/locales.php:112 +msgid "An error occured : " msgstr "" -#: [bookmarks]configure +#: ../cache/locales.php:113 msgid "Configure" msgstr "" -#: [url]add +#: ../cache/locales.php:114 msgid "Add a new URL" msgstr "" -#: [url]url +#: ../cache/locales.php:115 msgid "URL" msgstr "" -#: [url]name -#, fuzzy -msgctxt "[url]name" -msgid "Name" -msgstr "Nimi" - -#: [message]published +#: ../cache/locales.php:117 msgid "Message Published" msgstr "" -#: [message]encrypted +#: ../cache/locales.php:118 ../cache/locales.php:138 msgid "Encrypted message" msgstr "" -#: [message]composing [chats]composing +#: ../cache/locales.php:119 msgid "Composing..." msgstr "Lähetetään" -#: [message]paused [chats]paused +#: ../cache/locales.php:120 msgid "Paused..." msgstr "" -#: [message]gone +#: ../cache/locales.php:121 msgid "Contact gone" msgstr "" -#: [chat]attention +#: ../cache/locales.php:122 +#, php-format msgid "%s needs your attention" msgstr "" -#: [chat]placeholder +#: ../cache/locales.php:123 msgid "Your message here..." msgstr "" -#: [chat]smileys +#: ../cache/locales.php:124 msgid "Smileys" msgstr "" -#: [chat]empty_title [button]chat +#: ../cache/locales.php:125 ../cache/locales.php:139 msgid "Chat" msgstr "Chat" -#: [chat]empty_text +#: ../cache/locales.php:126 msgid "Discuss with your contacts" msgstr "" -#: [chat]frequent [chats]frequent -msgid "Frequent contacts" -msgstr "" - -#: [chatroom]members +#: ../cache/locales.php:127 msgid "Members" msgstr "" -#: [chatroom]connected [chatrooms]connected +#: ../cache/locales.php:128 ../cache/locales.php:376 msgid "Connected to the chatroom" msgstr "" -#: [chatroom]disconnected [chatrooms]disconnected +#: ../cache/locales.php:129 ../cache/locales.php:377 msgid "Disconnected from the chatroom" msgstr "" -#: [chatroom]config [group]configuration [page]configuration +#: ../cache/locales.php:130 ../cache/locales.php:200 ../cache/locales.php:469 msgid "Configuration" msgstr "Asetukset" -#: [chatroom]config_saved +#: ../cache/locales.php:131 msgid "Configuration saved" msgstr "" -#: [chatroom]subject +#: ../cache/locales.php:132 msgid "Subject" msgstr "" -#: [chatroom]subject_changed +#: ../cache/locales.php:133 msgid "Subject changed" msgstr "" -#: [chats]empty_title -msgid "No chats yet..." +#: ../cache/locales.php:134 +msgid "Open a new conversation by clicking on the plus button bellow" msgstr "" -#: [chats]empty -msgid "Open a new conversation by clicking on the plus button bellow or visit the Contacts page." -msgstr "" - -#: [chats]add +#: ../cache/locales.php:135 msgid "Chat with a contact" msgstr "" -#: [chats]more +#: ../cache/locales.php:136 +msgid "Frequent contacts" +msgstr "" + +#: ../cache/locales.php:137 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 "" - -#: [config]general +#: ../cache/locales.php:140 msgid "General" msgstr "" -#: [config]language +#: ../cache/locales.php:141 msgid "Language" msgstr "Kieli" -#: [config]roster +#: ../cache/locales.php:142 msgid "Roster display" msgstr "" -#: [config]roster_show +#: ../cache/locales.php:143 msgid "Show the offline contacts" msgstr "" -#: [config]roster_hide +#: ../cache/locales.php:144 msgid "Hide the offline contacts" msgstr "" -#: [config]appearence +#: ../cache/locales.php:145 msgid "Appearence" msgstr "" -#: [config]info -msgid "This configuration is shared wherever you are connected" +#: ../cache/locales.php:146 +msgid "This configuration is shared wherever you are connected !" msgstr "" -#: [notifications]message +#: ../cache/locales.php:148 msgid "Notify on incoming message" msgstr "" -#: [notifications]desktop +#: ../cache/locales.php:149 msgid "Use desktop notifications" msgstr "" -#: [general]legend [general]general_title +#: ../cache/locales.php:150 +msgid "Data" +msgstr "" + +#: ../cache/locales.php:151 +msgid "Cache" +msgstr "" + +#: ../cache/locales.php:152 ../cache/locales.php:218 ../cache/locales.php:466 +msgid "Contacts" +msgstr "" + +#: ../cache/locales.php:153 ../cache/locales.php:480 +msgid "Posts" +msgstr "" + +#: ../cache/locales.php:154 +msgid "Messages" +msgstr "" + +#: ../cache/locales.php:155 ../cache/locales.php:423 msgid "General Informations" msgstr "Perustiedot" -#: [general]name [public_groups]name [chatrooms]name -msgid "Name" -msgstr "Nimi" - -#: [general]date_of_birth +#: ../cache/locales.php:158 ../cache/locales.php:427 msgid "Date of Birth" msgstr "Syntymäaika" -#: [general]gender +#: ../cache/locales.php:159 ../cache/locales.php:428 msgid "Gender" msgstr "Sukupuoli" -#: [general]marital +#: ../cache/locales.php:160 ../cache/locales.php:429 msgid "Marital Status" msgstr "Siviilisääty" -#: [general]email +#: ../cache/locales.php:161 ../cache/locales.php:426 msgid "Email" msgstr "" -#: [general]website +#: ../cache/locales.php:162 ../cache/locales.php:430 msgid "Website" msgstr "Nettisivu" -#: [general]about +#: ../cache/locales.php:163 ../cache/locales.php:431 msgid "About Me" msgstr "Tietoja minusta" -#: [general]accounts +#: ../cache/locales.php:164 msgid "Other Accounts" msgstr "" -#: [general]tune +#: ../cache/locales.php:165 msgid "Is Listening" msgstr "" -#: [position]legend [position]position_title +#: ../cache/locales.php:166 ../cache/locales.php:432 msgid "Geographic Position" msgstr "" -#: [position]locality +#: ../cache/locales.php:167 ../cache/locales.php:433 msgid "Locality" msgstr "" -#: [position]country +#: ../cache/locales.php:168 ../cache/locales.php:434 msgid "Country" msgstr "" -#: [mood]title +#: ../cache/locales.php:169 msgid "Mood" msgstr "" -#: [mood]im +#: ../cache/locales.php:170 msgid "I'm " msgstr "" -#: [listen]title +#: ../cache/locales.php:171 msgid "Listening" msgstr "" -#: [last]title +#: ../cache/locales.php:173 msgid "Last seen" msgstr "" -#: [client]title +#: ../cache/locales.php:174 msgid "Client Informations" msgstr "Asiakastiedot" -#: [explore]last_registered +#: ../cache/locales.php:175 msgid "Last registered" msgstr "" -#: [explore]explore +#: ../cache/locales.php:176 msgid "Find some new friends" msgstr "" -#: [edit]title [button]edit +#: ../cache/locales.php:177 ../cache/locales.php:533 msgid "Edit" msgstr "" -#: [edit]alias +#: ../cache/locales.php:178 msgid "Alias" msgstr "Alias" -#: [edit]group +#: ../cache/locales.php:179 msgid "Group" msgstr "" -#: [edit]updated [roster]updated +#: ../cache/locales.php:180 ../cache/locales.php:400 msgid "Contact updated" msgstr "" -#: [delete]title +#: ../cache/locales.php:181 msgid "Are you sure?" msgstr "" -#: [delete]text -msgid "You are going to delete one of your contacts, please confirm your action" +#: ../cache/locales.php:182 +msgid "" +"You are going to delete one of your contacts, please confirm your action" msgstr "" -#: [age]years +#: ../cache/locales.php:183 +#, php-format msgid "%s years" msgstr "" -#: [blog]last +#: ../cache/locales.php:184 msgid "Last public post" msgstr "" -#: [subscription]to -#, fuzzy -msgid "You can see this contact status" -msgstr "Poista tämä kontakti" - -#: [subscription]to_button -msgid "Share my status" -msgstr "" - -#: [subscription]to_text -msgid "But this contact cannot see yours" -msgstr "" - -#: [subscription]from -msgid "You are not subscribed to this contact" -msgstr "" - -#: [subscription]from_button -msgid "Ask to subscribe" -msgstr "" - -#: [subscription]from_text -msgid "But this contact can still see if you are online" -msgstr "" - -#: [subscription]nil -msgid "No subscriptions" -msgstr "" - -#: [subscription]nil_button -msgid "Invite" -msgstr "" - -#: [subscription]nil_text -msgid "This contact is in your contact list but there is no subscriptions between the two accounts" -msgstr "" - -#: [group]subscribe +#: ../cache/locales.php:185 msgid "Subscribe" msgstr "" -#: [group]subscribed +#: ../cache/locales.php:186 msgid "Subscribed" msgstr "" -#: [group]unsubscribe +#: ../cache/locales.php:187 msgid "Unsubscribe" msgstr "" -#: [group]unsubscribe_text +#: ../cache/locales.php:188 msgid "You are going to unsubscribe from this Group" msgstr "" -#: [group]unsubscribed +#: ../cache/locales.php:189 msgid "Unsubscribed" msgstr "" -#: [group]share_label +#: ../cache/locales.php:190 msgid "Make your membership to this group public to your friends" msgstr "" -#: [group]label_label +#: ../cache/locales.php:191 msgid "Give a label for this group" msgstr "" -#: [group]sure +#: ../cache/locales.php:192 msgid "Are you sure ?" msgstr "" -#: [group]empty_text +#: ../cache/locales.php:194 msgid "Discover, follow and share" msgstr "" -#: [group]empty +#: ../cache/locales.php:195 msgid "Something bad happened to this group" msgstr "" -#: [group]config_saved +#: ../cache/locales.php:196 msgid "Group configuration saved" msgstr "" -#: [group]delete_title +#: ../cache/locales.php:197 msgid "Delete the group" msgstr "" -#: [group]delete_text -msgid "You are going to delete the following group. Please confirm your action." +#: ../cache/locales.php:198 +msgid "" +"You are going to delete the following group. Please confirm your action." msgstr "" -#: [group]delete_clean_text -msgid "It seems that this group doesn't exists anymore. Do you want to remove it from your subscriptions?" +#: ../cache/locales.php:199 +msgid "" +"It seems that this group doesn't exists anymore. Do you want to remove it " +"from your subscriptions?" msgstr "" -#: [group]counter -msgid "%s groups on this server" -msgstr "" - -#: [group]subscriptions [statistics]subscriptions +#: ../cache/locales.php:201 ../cache/locales.php:408 msgid "Subscriptions" msgstr "" -#: [group]servers -msgid "Groups servers" -msgstr "" - -#: [group]search_server -msgid "Search for a new server" -msgstr "" - -#: [group]help_info1 -msgid "Groups are the perfect way to share posts about topics that you like with all the other Movim's users." -msgstr "" - -#: [group]help_info2 -msgid "Choose a server and a Group and subscribe to it using the %s button in the header. You can also create a new one using the %s button." -msgstr "" - -#: [group]help_info3 -msgid "Done? You can now publish a new post in the Group by using the %s button." -msgstr "" - -#: [group]help_info4 -msgid "You will find a list of all your subscribed Groups in My Subscriptions and receive instantly all the new incoming posts in the %sNews%s page." -msgstr "" - -#: [groups]empty_title +#: ../cache/locales.php:202 ../cache/locales.php:290 msgid "Hello" msgstr "" -#: [groups]contact_post [hello]contact_post [menu]contact_post +#: ../cache/locales.php:203 ../cache/locales.php:225 ../cache/locales.php:291 msgid "Contact post" msgstr "" -#: [groups]empty_text1 -msgid "You don't have any subscriptions yet, select a group server above to start exploring." +#: ../cache/locales.php:204 +msgid "" +"You don't have any subscriptions yet, select a group server above to start " +"exploring." msgstr "" -#: [groups]empty_text2 +#: ../cache/locales.php:205 msgid "Subscribe to your favorite feeds by bookmarking them." msgstr "" -#: [groups]subscriptions +#: ../cache/locales.php:206 msgid "My Subscriptions" msgstr "" -#: [groups]add +#: ../cache/locales.php:207 msgid "Create a new Group" msgstr "" -#: [groups]name +#: ../cache/locales.php:208 msgid "Group name" msgstr "" -#: [groups]name_example +#: ../cache/locales.php:209 msgid "My Little Pony - Fan Club" msgstr "" -#: [groups]created +#: ../cache/locales.php:210 msgid "Group created successfully" msgstr "" -#: [groups]deleted +#: ../cache/locales.php:211 msgid "Group deleted successfully" msgstr "" -#: [groups]name_error +#: ../cache/locales.php:212 msgid "Please provide a valid group name (4 characters minimum)" msgstr "" -#: [groups]no_creation +#: ../cache/locales.php:213 msgid "You cannot create a new Group on this server" msgstr "" -#: [groups]sub +#: ../cache/locales.php:214 +#, php-format msgid "%s subscribers" msgstr "" -#: [groups]num +#: ../cache/locales.php:215 +#, php-format msgid "%s posts" msgstr "" -#: [groups]disco_error -#, fuzzy -msgid "This server doesn't exists" -msgstr "Tämä palvelin ylläpitää %s käyttäjätiliä" - -#: [menu]all +#: ../cache/locales.php:216 msgid "All" msgstr "Kaikki" -#: [menu]refresh +#: ../cache/locales.php:219 msgid "Refresh all the streams" msgstr "" -#: [roster]search -msgid "Search in your contacts" -msgstr "" - -#: [hello]active_contacts -#, fuzzy -msgid "Active contacts" -msgstr "Toimenpiteet" - -#: [hello]chat -msgid "Go on the Chat page" -msgstr "" - -#: [hello]news [page]news -msgid "News" -msgstr "" - -#: [hello]news_page -msgid "Read all theses articles on the News page" -msgstr "" - -#: [hello]blog_title -msgid "Visit your public blog" -msgstr "" - -#: [hello]blog_text -msgid "See your public posts and share them with all your contacts" -msgstr "" - -#: [hello]share_title -msgid "Universal share button" -msgstr "" - -#: [hello]share_text -msgid "Bookmark or drag and drop the following button in your toolbar and use it on all the pages you want to share on Movim" -msgstr "" - -#: [hello]share_button -msgid "Share on Movim" -msgstr "" - -#: [help]faq -msgid "Frequently Asked Questions" -msgstr "" - -#: [banner]title -msgid "What do the little banners refer to ?" -msgstr "Mitä nämä pienet bannerit ovat?" - -#: [banner]info1 -msgid "Thanks to these five little banners, you can quickly identitfy the level of confdentiality applied to the information you provide." -msgstr "Kiitos näiden viiden pienen bannerin, näet yksityisyyden tason jakamallesi tiedolle." - -#: [banner]white -msgid "White, only you can see the information" -msgstr "Valkoinen, vain sinä voit tähdä tämän" - -#: [banner]green -msgid "Green, you have chosen some contacts who can see your information" -msgstr "Vihreä, olet valinnut joitakin kontakteja jotka voivat nähdä tämän" - -#: [banner]orange -msgid "Orange, all your contact list can see your information" -msgstr "Oranssi, kaikki jotka ovat kontaktilistallasi voivat nähdä tämän" - -#: [banner]red -msgid "Red, everybody in the XMPP network can see your information" -msgstr "Punainen, vain ne jotka ovat XMPP verkossa voivat nähdä tämän" - -#: [banner]black -msgid "Black, the whole Internet can see your information" -msgstr "Musta, avoinna kaikille internet käyttäjille" - -#: [wiki]question -msgid "Looking for some documentation ?" -msgstr "" - -#: [wiki]button -msgid "Read the Wiki" -msgstr "" - -#: [ml]question -msgid "Talk with us by email ?" -msgstr "" - -#: [ml]button -msgid "Join the Mailing List" -msgstr "" - -#: [chatroom]question -msgid "Chat with the team ?" -msgstr "" - -#: [chatroom]button -msgid "Join the Chatroom" -msgstr "" - -#: [init]location -msgid "Location node created" -msgstr "" - -#: [init]bookmark -msgid "Bookmark node created" -msgstr "" - -#: [init]vcard4 -msgid "Profile node created" -msgstr "" - -#: [init]avatar -msgid "Avatar node created" -msgstr "" - -#: [init]subscriptions -msgid "Subscriptions node created" -msgstr "" - -#: [init]microblog -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" - -#: [error]jid -msgid "Invalid JID" -msgstr "Väärä JID" - -#: [error]empty_challenge -msgid "Empty Challenge from the server" -msgstr "" - -#: [error]dns -msgid "XMPP Domain error, your account is not a correct Jabber ID" -msgstr "XMPP domain -virhe, käyttäjätilisi ei ollut oikea Jabber ID" - -#: [error]data_missings -msgid "Some data are missing !" -msgstr "Joitain tietoja puuttuu" - -#: [error]wrong_password -msgid "Wrong password" -msgstr "Väärä salasana" - -#: [error]internal -msgid "Internal server error" -msgstr "Sisäinen palvelinvirhe" - -#: [error]session -msgid "Session error" -msgstr "Istuntovirhe" - -#: [error]account_created -msgid "Account successfully created" -msgstr "Käyttäjätili luotiin onnistuneesti" - -#: [error]xmpp_unauthorized -msgctxt "[error]xmpp_unauthorized" -msgid "Your XMPP server is unauthorized" -msgstr "" - -#: [error]mec_error -msgid "The server takes too much time to respond" -msgstr "" - -#: [error]too_old -msgid "Your web browser is too old to use with Movim." -msgstr "Selaimesi on liian vanha Movimille, lataa uudempi" - -#: [error]websocket -msgid "Movim cannot talk with the server, please try again later (Websocket connection error)" -msgstr "" - -#: [error]impossible -msgid "Impossible login" -msgstr "" - -#: [error]title -msgid "Oops!" -msgstr "" - -#: [error]default [visio]unknown_error -msgid "Unknown error" -msgstr "Tuntematon virhe" - -#: [error]login_format -msgid "Invalid username format" -msgstr "" - -#: [error]password_format -msgid "Invalid password format" -msgstr "" - -#: [error]unauthorized -msgctxt "[error]unauthorized" -msgid "Your XMPP server is unauthorized" -msgstr "" - -#: [error]conflict -msgid "A Movim session is already open on an other device" -msgstr "" - -#: [error]wrong_account -msgid "Movim failed to authenticate. You entered wrong data" -msgstr "Movim ei pystynyt todentamaan, annoit väärät tiedot" - -#: [error]mechanism -msgid "Authentication mechanism not supported by Movim" -msgstr "" - -#: [error]fail_auth -msgid "The XMPP authentification failed" -msgstr "XMPP autentikointi epäonnistui" - -#: [account]title [accounts]accounts_title -msgid "Accounts" -msgstr "" - -#: [form]username -msgid "My address" -msgstr "Oma osoite" - -#: [form]create_one -msgid "Create one !" -msgstr "" - -#: [form]another_account -msgid "Another account" -msgstr "" - -#: [form]no_account -msgid "No account yet ?" -msgstr "" - -#: [form]whitelist.info -msgid "You can login with accounts from theses servers" -msgstr "" - -#: [form]connected -msgid "Connected" -msgstr "" - -#: [form]population -msgid "Population" -msgstr "" - -#: [menu]empty_title -msgid "No news yet..." -msgstr "" - -#: [menu]empty -msgid "Welcome on your news feed, here you will see all the posts published by your contacts and in the groups you have subscribed." -msgstr "" - -#: [menu]refresh -msgid "Refreshing all the streams" -msgstr "" - -#: [menu]public -msgid "This post is public" -msgstr "" - -#: [affiliations]title -msgid "Manage your members" -msgstr "" - -#: [affiliations]get -msgid "Get the members" -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 "" - -#: [notifs]title -msgid "Pending Invitations" -msgstr "" - -#: [notifs]wants_to_talk -msgid "%s wants to talk with you" -msgstr "" - -#: [notifs]manage -msgid "Manage" -msgstr "" - -#: [post]news_feed -msgid "News Feed" -msgstr "" - -#: [post]placeholder -msgid "Discover and register to the groups you are interested in" -msgstr "" - -#: [post]preview [page]preview -msgid "Preview" -msgstr "" - -#: [post]help [page]help -msgid "Help" -msgstr "Ohje" - -#: [post]help_more -msgid "More help" -msgstr "" - -#: [post]help_manual -msgid "Markdown syntax manual" -msgstr "" - -#: [post]title -msgid "Title" -msgstr "" - -#: [post]content -msgid "Content" -msgstr "" - -#: [post]link -msgid "Link" -msgstr "" - -#: [post]tags -msgid "Tags" -msgstr "" - -#: [post]valid_url [publish]valid_url -msgid "Please enter a valid url" -msgstr "" - -#: [post]no_content_preview [publish]no_content_preview -msgid "No content to preview" -msgstr "" - -#: [post]no_content [publish]no_content [post]empty -msgid "No content" -msgstr "" - -#: [post]published -msgid "Post published" -msgstr "" - -#: [post]deleted -msgid "Post deleted" -msgstr "" - -#: [post]gallery -msgid "This picture will be added to your gallery" -msgstr "" - -#: [post]hot -msgid "What's Hot" -msgstr "" - -#: [post]hot_text -msgid "Posts recently published in Groups that you are not subscribed (yet)" -msgstr "" - -#: [post]new [publish]new -msgid "New post" -msgstr "" - -#: [post]embed_tip -msgid "You can also use services like Imgur or Flickr to host your picture and paste the link here." -msgstr "" - -#: [post]repost -msgid "This is a re-post from %s" -msgstr "" - -#: [post]repost_profile -msgid "See %s profile" -msgstr "" - -#: [post]public -msgid "Publish this post publicly?" -msgstr "" - -#: [post]blog_add -msgid "Post published on your blog" -msgstr "" - -#: [post]blog_remove -msgid "Post removed from your blog" -msgstr "" - -#: [post]delete_title [post]delete -msgid "Delete this post" -msgstr "" - -#: [post]delete_text -msgid "You are going to delete this post, please confirm your action" -msgstr "" - -#: [post]comments_disabled -msgid "Comments disabled" -msgstr "" - -#: [post]comment_published -msgid "Comment published" -msgstr "" - -#: [status]disconnect -msgid "Disconnect" -msgstr "" - -#: [status]here -msgid "Your status here !" -msgstr "" - -#: [status]updated -msgid "Status updated" -msgstr "" - -#: [status]status -msgid "Status" -msgstr "" - -#: [status]presence -msgid "Presence" -msgstr "" - -#: [status]online -msgid "Online with Movim" -msgstr "" - -#: [publish]title -msgid "Publish" -msgstr "" - -#: [publish]attach -msgid "Add a file or a picture to your post" -msgstr "" - -#: [publish]no_publication -msgid "You cannot publish a post on this Group" -msgstr "" - -#: [publish]form_filled -msgid "Some fields have been filled in. Do you still want to go back and loose their content?" -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 "" - -#: [rooms]empty_text1 -msgid "You don't have any chatroom yet." -msgstr "" - -#: [rooms]empty_text2 -msgid "Add one by clicking on the add button in the header." -msgstr "" - -#: [chatrooms]title -msgid "Chatrooms" -msgstr "" - -#: [chatrooms]name_placeholder -msgid "My Favorite Room" -msgstr "" - -#: [chatrooms]users -msgid "Users in the room" -msgstr "" - -#: [chatrooms]bad_nickname -msgid "Please enter a correct nickname (2 to 40 characters)" -msgstr "" - -#: [room]anonymous_title -msgid "Public chatroom" -msgstr "" - -#: [room]no_room -msgid "Please provide a room address" -msgstr "" - -#: [room]anonymous_text1 -msgid "You are currently logued as an anonymous user." -msgstr "" - -#: [room]anonymous_text2 -msgid "You can join using your own account or create one on the login page by loging out using the cross in the top-right corner." -msgstr "" - -#: [room]anonymous_login -msgid "Login on %s" -msgstr "" - -#: [room]nick -msgid "Your nickname" -msgstr "" - -#: [roster]ungrouped -msgid "Ungrouped" -msgstr "Ryhmittämätön" - -#: [roster]show_disconnected -msgid "Show disconnected contacts" -msgstr "" - -#: [roster]hide_disconnected -msgid "Hide disconnected contacts" -msgstr "" - -#: [roster]show_group -msgid "Show group %s" -msgstr "" - -#: [roster]hide_group -msgid "Hide group %s" -msgstr "" - -#: [roster]jid_error -msgid "Please enter a valid Jabber ID" -msgstr "" - -#: [roster]no_contacts_title -#, fuzzy -msgid "No contacts ?" -msgstr "Kontaktit (%s)" - -#: [roster]no_contacts_text -msgid "You can add one using the + button bellow" -msgstr "" - -#: [roster]show_hide -msgid "Show/Hide" -msgstr "" - -#: [roster]add_contact_info1 -msgid "Enter the Jabber ID of your contact." -msgstr "" - -#: [roster]add_contact_info2 -msgid "Press enter to validate." -msgstr "" - -#: [roster]jid -msgid "JID" -msgstr "" - -#: [roster]results -msgid "Results" -msgstr "" - -#: [roster]added -msgid "Contact added" -msgstr "" - -#: [roster]deleted -msgid "Contact deleted" -msgstr "" - -#: [roster]search +#: ../cache/locales.php:220 ../cache/locales.php:402 msgid "Search" msgstr "" -#: [share]error +#: ../cache/locales.php:221 +msgid "Go on the Chat page" +msgstr "" + +#: ../cache/locales.php:222 +msgid "Read all theses articles on the News page" +msgstr "" + +#: ../cache/locales.php:223 +msgid "Visit your public blog" +msgstr "" + +#: ../cache/locales.php:224 +msgid "See your public posts and share them with all your contacts" +msgstr "" + +#: ../cache/locales.php:226 +msgid "Universal share button" +msgstr "" + +#: ../cache/locales.php:227 +msgid "" +"Bookmark or drag and drop the following button in your toolbar and use it on " +"all the pages you want to share on Movim" +msgstr "" + +#: ../cache/locales.php:228 +msgid "Share on Movim" +msgstr "" + +#: ../cache/locales.php:229 +msgid "Frequently Asked Questions" +msgstr "" + +#: ../cache/locales.php:230 +msgid "What do the little banners refer to ?" +msgstr "Mitä nämä pienet bannerit ovat?" + +#: ../cache/locales.php:231 +msgid "" +"Thanks to these five little banners, you can quickly identitfy the level of " +"confdentiality applied to the information you provide." +msgstr "" +"Kiitos näiden viiden pienen bannerin, näet yksityisyyden tason jakamallesi " +"tiedolle." + +#: ../cache/locales.php:232 +msgid "White, only you can see the information" +msgstr "Valkoinen, vain sinä voit tähdä tämän" + +#: ../cache/locales.php:233 +msgid "Green, you have chosen some contacts who can see your information" +msgstr "Vihreä, olet valinnut joitakin kontakteja jotka voivat nähdä tämän" + +#: ../cache/locales.php:234 +msgid "Orange, all your contact list can see your information" +msgstr "Oranssi, kaikki jotka ovat kontaktilistallasi voivat nähdä tämän" + +#: ../cache/locales.php:235 +msgid "Red, everybody in the XMPP network can see your information" +msgstr "Punainen, vain ne jotka ovat XMPP verkossa voivat nähdä tämän" + +#: ../cache/locales.php:236 +msgid "Black, the whole Internet can see your information" +msgstr "Musta, avoinna kaikille internet käyttäjille" + +#: ../cache/locales.php:237 +msgid "Looking for some documentation ?" +msgstr "" + +#: ../cache/locales.php:238 +msgid "Read the Wiki" +msgstr "" + +#: ../cache/locales.php:239 +msgid "Talk with us by email ?" +msgstr "" + +#: ../cache/locales.php:240 +msgid "Join the Mailing List" +msgstr "" + +#: ../cache/locales.php:241 +msgid "Chat with the team ?" +msgstr "" + +#: ../cache/locales.php:242 +msgid "Join the Chatroom" +msgstr "" + +#: ../cache/locales.php:243 +msgid "Location node created" +msgstr "" + +#: ../cache/locales.php:244 +msgid "Bookmark node created" +msgstr "" + +#: ../cache/locales.php:245 +msgid "Profile node created" +msgstr "" + +#: ../cache/locales.php:246 +msgid "Avatar node created" +msgstr "" + +#: ../cache/locales.php:247 +msgid "Subscriptions node created" +msgstr "" + +#: ../cache/locales.php:248 +msgid "Microblog node created" +msgstr "" + +#: ../cache/locales.php:249 +msgid "Location" +msgstr "" + +#: ../cache/locales.php:250 +msgid "Wrong position" +msgstr "" + +#: ../cache/locales.php:251 +msgid "Location updated" +msgstr "" + +#: ../cache/locales.php:252 +msgid "Update my position" +msgstr "" + +#: ../cache/locales.php:253 +msgid "Wrong username" +msgstr "Väärä käyttäjänimi" + +#: ../cache/locales.php:254 +msgid "Invalid JID" +msgstr "Väärä JID" + +#: ../cache/locales.php:255 +msgid "Empty Challenge from the server" +msgstr "" + +#: ../cache/locales.php:256 +msgid "XMPP Domain error, your account is not a correct Jabber ID" +msgstr "XMPP domain -virhe, käyttäjätilisi ei ollut oikea Jabber ID" + +#: ../cache/locales.php:257 +msgid "Some data are missing !" +msgstr "Joitain tietoja puuttuu" + +#: ../cache/locales.php:258 +msgid "Wrong password" +msgstr "Väärä salasana" + +#: ../cache/locales.php:259 +msgid "Internal server error" +msgstr "Sisäinen palvelinvirhe" + +#: ../cache/locales.php:260 +msgid "Session error" +msgstr "Istuntovirhe" + +#: ../cache/locales.php:261 +msgid "Account successfully created" +msgstr "Käyttäjätili luotiin onnistuneesti" + +#: ../cache/locales.php:262 ../cache/locales.php:271 +msgid "Your XMPP server is unauthorized" +msgstr "" + +#: ../cache/locales.php:263 +msgid "The server takes too much time to respond" +msgstr "" + +#: ../cache/locales.php:264 +msgid "Your web browser is too old to use with Movim." +msgstr "Selaimesi on liian vanha Movimille, lataa uudempi" + +#: ../cache/locales.php:265 +msgid "" +"Movim cannot talk with the server, please try again later (Websocket " +"connection error)" +msgstr "" + +#: ../cache/locales.php:266 +msgid "Impossible login" +msgstr "" + +#: ../cache/locales.php:267 +msgid "Oops!" +msgstr "" + +#: ../cache/locales.php:268 ../cache/locales.php:449 ../cache/locales.php:455 +msgid "Unknown error" +msgstr "Tuntematon virhe" + +#: ../cache/locales.php:269 +msgid "Invalid username format" +msgstr "" + +#: ../cache/locales.php:270 +msgid "Invalid password format" +msgstr "" + +#: ../cache/locales.php:272 +msgid "A Movim session is already open on an other device" +msgstr "" + +#: ../cache/locales.php:273 +msgid "Movim failed to authenticate. You entered wrong data" +msgstr "Movim ei pystynyt todentamaan, annoit väärät tiedot" + +#: ../cache/locales.php:274 +msgid "Authentication mechanism not supported by Movim" +msgstr "" + +#: ../cache/locales.php:275 +msgid "The XMPP authentification failed" +msgstr "XMPP autentikointi epäonnistui" + +#: ../cache/locales.php:276 +#, php-format +msgid "" +"You can login with Facebook (chat only) using %syour.id@chat.facebook.com%s " +"and your password" +msgstr "" + +#: ../cache/locales.php:277 +#, php-format +msgid "%sGmail accounts are also compatible%s but are not fully supported" +msgstr "" + +#: ../cache/locales.php:278 +msgid "You can login using your favorite Jabber account" +msgstr "" + +#: ../cache/locales.php:279 +msgid "or with our demonstration account" +msgstr "" + +#: ../cache/locales.php:280 ../cache/locales.php:435 +msgid "Accounts" +msgstr "" + +#: ../cache/locales.php:281 +msgid "My address" +msgstr "Oma osoite" + +#: ../cache/locales.php:283 +msgid "Create one !" +msgstr "" + +#: ../cache/locales.php:284 +msgid "No account yet ?" +msgstr "" + +#: ../cache/locales.php:285 +msgid "Another account" +msgstr "" + +#: ../cache/locales.php:286 +msgid "You can login with accounts from theses servers" +msgstr "" + +#: ../cache/locales.php:287 +msgid "Connected" +msgstr "" + +#: ../cache/locales.php:288 +msgid "Population" +msgstr "" + +#: ../cache/locales.php:289 +msgid "Bad nickname (between 4 and 40 characters)" +msgstr "" + +#: ../cache/locales.php:292 +msgid "" +"Welcome on your news feed, here you will see all the posts published in the " +"groups you have subscribed." +msgstr "" + +#: ../cache/locales.php:293 +msgid "Refreshing all the streams" +msgstr "" + +#: ../cache/locales.php:294 +msgid "This post is public" +msgstr "" + +#: ../cache/locales.php:295 +msgid "Manage your members" +msgstr "" + +#: ../cache/locales.php:296 +msgid "Get the members" +msgstr "" + +#: ../cache/locales.php:297 +msgid "Affiliations saved" +msgstr "" + +#: ../cache/locales.php:298 +msgid "Manage your subscriptions" +msgstr "" + +#: ../cache/locales.php:299 +msgid "Manage the subscriptions" +msgstr "" + +#: ../cache/locales.php:300 +msgid "Get the subscriptions" +msgstr "" + +#: ../cache/locales.php:301 +msgid "Subscriptions saved" +msgstr "" + +#: ../cache/locales.php:302 +msgid "Pending Invitations" +msgstr "" + +#: ../cache/locales.php:303 +#, php-format +msgid "%s wants to talk with you" +msgstr "" + +#: ../cache/locales.php:304 +msgid "Manage" +msgstr "" + +#: ../cache/locales.php:305 ../cache/locales.php:338 +msgid "News Feed" +msgstr "" + +#: ../cache/locales.php:306 ../cache/locales.php:339 +msgid "Discover and register to the groups you are interested in" +msgstr "" + +#: ../cache/locales.php:307 ../cache/locales.php:340 ../cache/locales.php:482 +msgid "Preview" +msgstr "" + +#: ../cache/locales.php:308 ../cache/locales.php:341 ../cache/locales.php:478 +msgid "Help" +msgstr "Ohje" + +#: ../cache/locales.php:309 ../cache/locales.php:342 +msgid "More help" +msgstr "" + +#: ../cache/locales.php:310 ../cache/locales.php:343 +msgid "Markdown syntax manual" +msgstr "" + +#: ../cache/locales.php:311 ../cache/locales.php:344 ../cache/locales.php:681 +msgid "Title" +msgstr "" + +#: ../cache/locales.php:312 ../cache/locales.php:345 +msgid "Content" +msgstr "" + +#: ../cache/locales.php:313 ../cache/locales.php:346 +msgid "Link" +msgstr "" + +#: ../cache/locales.php:314 ../cache/locales.php:347 +msgid "Tags" +msgstr "" + +#: ../cache/locales.php:315 ../cache/locales.php:348 +msgid "Please enter a valid url" +msgstr "" + +#: ../cache/locales.php:316 ../cache/locales.php:349 +msgid "No content to preview" +msgstr "" + +#: ../cache/locales.php:317 ../cache/locales.php:350 ../cache/locales.php:687 +msgid "No content" +msgstr "" + +#: ../cache/locales.php:318 ../cache/locales.php:351 +msgid "Post published" +msgstr "" + +#: ../cache/locales.php:319 ../cache/locales.php:352 +msgid "Post deleted" +msgstr "" + +#: ../cache/locales.php:320 ../cache/locales.php:353 +msgid "This picture will be added to your gallery" +msgstr "" + +#: ../cache/locales.php:321 ../cache/locales.php:354 +msgid "What's Hot" +msgstr "" + +#: ../cache/locales.php:322 ../cache/locales.php:355 +msgid "New post" +msgstr "" + +#: ../cache/locales.php:323 ../cache/locales.php:357 +msgid "" +"You can also use services like Imgur or Flickr to host your picture and " +"paste the link here." +msgstr "" + +#: ../cache/locales.php:324 +#, php-format +msgid "This is a re-post from %s" +msgstr "" + +#: ../cache/locales.php:325 +#, php-format +msgid "See %s profile" +msgstr "" + +#: ../cache/locales.php:326 +msgid "Publish this post on your public feed?" +msgstr "" + +#: ../cache/locales.php:327 +msgid "Post published on your blog" +msgstr "" + +#: ../cache/locales.php:328 +msgid "Post removed from your blog" +msgstr "" + +#: ../cache/locales.php:329 ../cache/locales.php:701 +msgid "Delete this post" +msgstr "" + +#: ../cache/locales.php:330 +msgid "You are going to delete this post, please confirm your action" +msgstr "" + +#: ../cache/locales.php:331 +msgid "Comments disabled" +msgstr "" + +#: ../cache/locales.php:332 +msgid "Comment published" +msgstr "" + +#: ../cache/locales.php:333 +msgid "Disconnect" +msgstr "" + +#: ../cache/locales.php:334 +msgid "Your status here !" +msgstr "" + +#: ../cache/locales.php:335 +msgid "Status updated" +msgstr "" + +#: ../cache/locales.php:336 +msgid "Status" +msgstr "" + +#: ../cache/locales.php:337 +msgid "Presence" +msgstr "" + +#: ../cache/locales.php:356 +msgid "Publish" +msgstr "" + +#: ../cache/locales.php:358 +msgid "You cannot publish a post on this Group" +msgstr "" + +#: ../cache/locales.php:359 +msgid "" +"Some fields have been filled in. Do you still want to go back and loose " +"their content?" +msgstr "" + +#: ../cache/locales.php:360 +msgid "Shared" +msgstr "" + +#: ../cache/locales.php:362 +#, php-format +msgid "%s has been added to your public groups" +msgstr "" + +#: ../cache/locales.php:363 +#, php-format +msgid "%s has been removed from your public groups" +msgstr "" + +#: ../cache/locales.php:364 +msgid "Add a chatroom" +msgstr "" + +#: ../cache/locales.php:365 +msgid "You don't have any chatroom yet." +msgstr "" + +#: ../cache/locales.php:366 +msgid "Add one by clicking on the add button in the header." +msgstr "" + +#: ../cache/locales.php:367 +msgid "Chatrooms" +msgstr "" + +#: ../cache/locales.php:370 +msgid "My Favorite Room" +msgstr "" + +#: ../cache/locales.php:374 +msgid "Remove a chatroom" +msgstr "" + +#: ../cache/locales.php:375 +msgid "" +"You are going to remove the following chatroom. Please confirm your action." +msgstr "" + +#: ../cache/locales.php:378 +msgid "Users in the room" +msgstr "" + +#: ../cache/locales.php:379 +msgid "Please enter a correct nickname (6 to 40 characters)" +msgstr "" + +#: ../cache/locales.php:381 +msgid "Public chatroom" +msgstr "" + +#: ../cache/locales.php:382 +msgid "Please provide a room address" +msgstr "" + +#: ../cache/locales.php:383 +msgid "You are currently logued as an anonymous user." +msgstr "" + +#: ../cache/locales.php:384 +msgid "" +"You can join using your own account or create one on the login page by " +"loging out using the cross in the top-right corner." +msgstr "" + +#: ../cache/locales.php:385 +#, php-format +msgid "Login on %s" +msgstr "" + +#: ../cache/locales.php:386 +msgid "Your nickname" +msgstr "" + +#: ../cache/locales.php:387 +msgid "Ungrouped" +msgstr "Ryhmittämätön" + +#: ../cache/locales.php:388 +msgid "Show disconnected contacts" +msgstr "" + +#: ../cache/locales.php:389 +msgid "Hide disconnected contacts" +msgstr "" + +#: ../cache/locales.php:390 +#, php-format +msgid "Show group %s" +msgstr "" + +#: ../cache/locales.php:391 +#, php-format +msgid "Hide group %s" +msgstr "" + +#: ../cache/locales.php:392 +msgid "Please enter a valid Jabber ID" +msgstr "" + +#: ../cache/locales.php:393 +msgid "" +"No contacts ? You can add one using the + button bellow or going to the " +"Explore page" +msgstr "" + +#: ../cache/locales.php:394 +msgid "Show/Hide" +msgstr "" + +#: ../cache/locales.php:395 +msgid "Enter the Jabber ID of your contact." +msgstr "" + +#: ../cache/locales.php:396 +msgid "Press enter to validate." +msgstr "" + +#: ../cache/locales.php:397 +msgid "JID" +msgstr "" + +#: ../cache/locales.php:398 +msgid "Results" +msgstr "" + +#: ../cache/locales.php:399 +msgid "Contact added" +msgstr "" + +#: ../cache/locales.php:401 +msgid "Contact deleted" +msgstr "" + +#: ../cache/locales.php:403 msgid "This is not a valid url" msgstr "" -#: [share]success +#: ../cache/locales.php:404 msgid "Sharing the URL" msgstr "" -#: [statistics]title +#: ../cache/locales.php:405 msgid "Statistics" msgstr "" -#: [statistics]since +#: ../cache/locales.php:406 msgid "Since" msgstr "" -#: [statistics]sessions +#: ../cache/locales.php:407 msgid "Sessions" msgstr "" -#: [statistics]monthly_sub +#: ../cache/locales.php:409 msgid "Monthly Subscriptions" msgstr "" -#: [statistics]monthly_sub_cum +#: ../cache/locales.php:410 msgid "Monthly Subscriptions Cumulated" msgstr "" -#: [subscribe]info -msgid "Movim is a decentralized social network, before creating a new account you need to choose a server to register." +#: ../cache/locales.php:412 +msgid "" +"Movim is a decentralized social network, before creating a new account you " +"need to choose a server to register." msgstr "" -#: [subscribe]server_question +#: ../cache/locales.php:413 msgid "Your server here ?" msgstr "" -#: [subscribe]server_contact +#: ../cache/locales.php:414 msgid "Contact us to add yours to the officially supported servers list" msgstr "" -#: [feed]nope +#: ../cache/locales.php:416 msgid "No public feed for this contact" msgstr "" -#: [feed]nope_contact +#: ../cache/locales.php:417 msgid "No contact specified" msgstr "" -#: [upload]title -msgid "Upload a file" -msgstr "" - -#: [upload]choose -msgid "Choose a file to upload" -msgstr "" - -#: [vcard]title [page]profile +#: ../cache/locales.php:418 ../cache/locales.php:473 msgid "Profile" msgstr "Profiili" -#: [vcard]updated +#: ../cache/locales.php:419 msgid "Profile Updated" msgstr "" -#: [vcard]not_updated +#: ../cache/locales.php:420 msgid "Profile Not Updated" msgstr "" -#: [vcard]public +#: ../cache/locales.php:421 msgid "Your profile is now public" msgstr "" -#: [vcard]restricted +#: ../cache/locales.php:422 msgid "Your profile is now restricted" msgstr "" -#: [general]nickname -#, fuzzy -msgctxt "[general]nickname" -msgid "Nickname" -msgstr "Lempinimi" - -#: [accounts]twitter +#: ../cache/locales.php:436 msgid "Twitter" msgstr "" -#: [accounts]skype +#: ../cache/locales.php:437 msgid "Skype" msgstr "" -#: [accounts]yahoo +#: ../cache/locales.php:438 msgid "Yahoo" msgstr "" -#: [accounts]accounts_nickname -#, fuzzy -msgctxt "[accounts]accounts_nickname" -msgid "Nickname" -msgstr "Lempinimi" - -#: [accounts]accounts_yahoo -msgid "Yahoo Account" -msgstr "" - -#: [privacy]privacy_title +#: ../cache/locales.php:439 msgid "Privacy Level" msgstr "" -#: [privacy]privacy_question +#: ../cache/locales.php:440 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." +#: ../cache/locales.php:441 +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." msgstr "" -#: [save]submit [button]submit -msgid "Submit" -msgstr "Lähetä" - -#: [save]reset [button]reset -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 +#: ../cache/locales.php:442 msgid "Call" msgstr "" -#: [visio]hang_up +#: ../cache/locales.php:443 msgid "Hang up" msgstr "" -#: [visio]connection +#: ../cache/locales.php:444 msgid "Connection" msgstr "" -#: [global]no_js +#: ../cache/locales.php:445 ../cache/locales.php:451 +msgid "Hung up" +msgstr "" + +#: ../cache/locales.php:446 ../cache/locales.php:452 +msgid "Your contact is busy" +msgstr "" + +#: ../cache/locales.php:447 ../cache/locales.php:453 +msgid "Declined" +msgstr "" + +#: ../cache/locales.php:448 ../cache/locales.php:454 +msgid "Remote application incompatible" +msgstr "" + +#: ../cache/locales.php:450 ../cache/locales.php:456 +msgid "Is calling you" +msgstr "" + +#: ../cache/locales.php:457 msgid "You don't have javascript enabled. Good luck with that." msgstr "" -#: [global]description -msgid "Movim is a kickass distributed social networking platform that protect your privacy an comes with a set of awesome features." +#: ../cache/locales.php:458 +msgid "" +"Movim is a kickass distributed social networking platform that protect your " +"privacy an comes with a set of awesome features." msgstr "" -#: [page]administration +#: ../cache/locales.php:459 msgid "Administration" msgstr "" -#: [page]home +#: ../cache/locales.php:460 msgid "Home" msgstr "Etusivu" -#: [page]discover +#: ../cache/locales.php:461 msgid "Discover" msgstr "" -#: [page]explore +#: ../cache/locales.php:462 msgid "Explore" msgstr "" -#: [page]account_creation +#: ../cache/locales.php:463 msgid "Account Creation" msgstr "Käyttäjätilin luominen" -#: [page]avatar +#: ../cache/locales.php:464 +msgid "News" +msgstr "" + +#: ../cache/locales.php:465 msgid "Avatar" msgstr "Avatar" -#: [page]chats +#: ../cache/locales.php:467 msgid "Chats" msgstr "" -#: [page]server +#: ../cache/locales.php:470 msgid "Server" msgstr "" -#: [page]public_groups +#: ../cache/locales.php:471 msgid "Public Groups" msgstr "" -#: [page]viewer +#: ../cache/locales.php:472 msgid "Viewer" msgstr "" -#: [page]media +#: ../cache/locales.php:474 msgid "Media" msgstr "" -#: [page]blog +#: ../cache/locales.php:475 msgid "Blog" msgstr "" -#: [page]about +#: ../cache/locales.php:476 msgid "About" msgstr "" -#: [page]login +#: ../cache/locales.php:477 msgid "Login" msgstr "" -#: [page]feed +#: ../cache/locales.php:479 msgid "Feed" msgstr "Syöte" -#: [page]gallery +#: ../cache/locales.php:481 msgid "Gallery" msgstr "" -#: [page]visio +#: ../cache/locales.php:483 msgid "Visio-conference" msgstr "" -#: [page]pods +#: ../cache/locales.php:484 msgid "Pods" msgstr "" -#: [page]share +#: ../cache/locales.php:485 msgid "Share" msgstr "" -#: [page]room +#: ../cache/locales.php:486 msgid "Room" msgstr "" -#: [error]error +#: ../cache/locales.php:487 +#, php-format msgid "Error: %s" msgstr "Virhe: %s" -#: [error]cannot_load_file +#: ../cache/locales.php:488 +#, php-format msgid "Cannot load file '%s'" msgstr "Ei voi ladata tiedostoa '%s'" -#: [error]route +#: ../cache/locales.php:489 +#, php-format msgid "Route error, please set all the parameters for the page %s" msgstr "" -#: [error]widget_load_error +#: ../cache/locales.php:490 +#, php-format msgid "Requested widget '%s' doesn't exist." msgstr "" -#: [error]widget_call_error +#: ../cache/locales.php:491 +#, php-format msgid "Requested event '%s' not registered." msgstr "" -#: [error]whoops +#: ../cache/locales.php:492 msgid "Whoops!" msgstr "" -#: [error]media_not_found +#: ../cache/locales.php:493 msgid "It seem that you don't have any pictures here?" msgstr "" -#: [error]media_ask_upload +#: ../cache/locales.php:494 msgid "You can try to upload a couple by going to the Media page" msgstr "" -#: [title]about +#: ../cache/locales.php:495 +#, php-format msgid "%s - About" msgstr "" -#: [title]account +#: ../cache/locales.php:496 +#, php-format msgid "%s - Account" msgstr "" -#: [title]administration +#: ../cache/locales.php:497 +#, php-format msgid "%s - Administration Panel" msgstr "" -#: [title]blog +#: ../cache/locales.php:498 +#, php-format msgid "%s - Blog" msgstr "" -#: [title]configuration +#: ../cache/locales.php:499 +#, php-format msgid "%s - Configuration" msgstr "%s - Konfigurointi" -#: [title]discover +#: ../cache/locales.php:500 +#, php-format msgid "%s - Discover" msgstr "" -#: [title]explore +#: ../cache/locales.php:501 +#, php-format msgid "%s - Explore" msgstr "" -#: [title]help +#: ../cache/locales.php:502 +#, php-format msgid "%s - Help Page" msgstr "%s - Ohjesivu" -#: [title]login +#: ../cache/locales.php:503 +#, php-format msgid "%s - Login to Movim" msgstr "%s - Kirjaudu Movimiin" -#: [title]main +#: ../cache/locales.php:504 +#, php-format msgid "%s - Welcome to Movim" msgstr "%s - Tervetuloa käyttämään Movimia" -#: [title]media +#: ../cache/locales.php:505 +#, php-format msgid "%s - Media" msgstr "" -#: [title]news +#: ../cache/locales.php:506 +#, php-format msgid "%s - News" msgstr "" -#: [title]node_configuration +#: ../cache/locales.php:507 +#, php-format msgid "%s - Group Configuration" msgstr "" -#: [title]node +#: ../cache/locales.php:508 +#, php-format msgid "%s - Group" msgstr "" -#: [title]not_found +#: ../cache/locales.php:509 +#, php-format msgid "%s - 404" msgstr "" -#: [title]profile +#: ../cache/locales.php:510 +#, php-format msgid "%s - Profile" msgstr "%s - Profiili" -#: [title]server +#: ../cache/locales.php:511 +#, php-format msgid "%s - Server" msgstr "" -#: [button]validate +#: ../cache/locales.php:512 msgid "Validate" msgstr "" -#: [button]refresh +#: ../cache/locales.php:513 msgid "Refresh" msgstr "" -#: [button]add +#: ../cache/locales.php:514 msgid "Add" msgstr "Lisää uusi" -#: [button]delete +#: ../cache/locales.php:515 msgid "Delete" msgstr "" -#: [button]cancel +#: ../cache/locales.php:516 +msgid "Remove" +msgstr "" + +#: ../cache/locales.php:517 msgid "Cancel" msgstr "Peruuta" -#: [button]close +#: ../cache/locales.php:518 msgid "Close" msgstr "" -#: [button]update +#: ../cache/locales.php:519 msgid "Update" msgstr "" -#: [button]updating +#: ../cache/locales.php:520 msgid "Updating" msgstr "" -#: [button]submitting +#: ../cache/locales.php:521 +msgid "Submit" +msgstr "Lähetä" + +#: ../cache/locales.php:522 msgid "Submitting" msgstr "Lähetetään" -#: [button]register +#: ../cache/locales.php:523 +msgid "Reset" +msgstr "Nollaa" + +#: ../cache/locales.php:524 msgid "Register" msgstr "" -#: [button]unregister +#: ../cache/locales.php:525 msgid "Unregister" msgstr "" -#: [button]save +#: ../cache/locales.php:526 msgid "Save" msgstr "" -#: [button]clear +#: ../cache/locales.php:527 msgid "Clear" msgstr "" -#: [button]upload +#: ../cache/locales.php:528 msgid "Upload" msgstr "" -#: [button]come_in +#: ../cache/locales.php:529 msgid "Come in!" msgstr "Tule sisään!" -#: [button]connecting +#: ../cache/locales.php:530 msgid "Connecting" msgstr "" -#: [button]bool_yes +#: ../cache/locales.php:531 msgid "Yes" msgstr "Kyllä" -#: [button]bool_no +#: ../cache/locales.php:532 msgid "No" msgstr "Ei" -#: [button]return +#: ../cache/locales.php:534 msgid "Return" msgstr "" -#: [button]accept +#: ../cache/locales.php:535 msgid "Accept" msgstr "Hyväksy" -#: [button]refuse +#: ../cache/locales.php:536 msgid "Refuse" msgstr "" -#: [button]next +#: ../cache/locales.php:537 msgid "Next" msgstr "" -#: [button]previous +#: ../cache/locales.php:538 msgid "Previous" msgstr "" -#: [step]step +#: ../cache/locales.php:539 +#, php-format msgid "Step %s" msgstr "" -#: [day]title +#: ../cache/locales.php:542 msgid "Day" msgstr "Päivä" -#: [day]monday +#: ../cache/locales.php:543 msgid "Monday" msgstr "Maanantai" -#: [day]tuesday +#: ../cache/locales.php:544 msgid "Tuesday" msgstr "Tiistai" -#: [day]wednesday +#: ../cache/locales.php:545 msgid "Wednesday" msgstr "Keskiviikko" -#: [day]thursday +#: ../cache/locales.php:546 msgid "Thursday" msgstr "Torstai" -#: [day]friday +#: ../cache/locales.php:547 msgid "Friday" msgstr "Perjantai" -#: [day]saturday +#: ../cache/locales.php:548 msgid "Saturday" msgstr "Launtai" -#: [day]sunday +#: ../cache/locales.php:549 msgid "Sunday" msgstr "" -#: [gender]nil -#, fuzzy -msgctxt "[gender]nil" +#: ../cache/locales.php:550 ../cache/locales.php:559 msgid "None" msgstr "Ei mitään" -#: [gender]male +#: ../cache/locales.php:551 msgid "Male" msgstr "Mies" -#: [gender]female +#: ../cache/locales.php:552 msgid "Female" msgstr "Nainen" -#: [gender]other +#: ../cache/locales.php:553 msgid "Other" msgstr "Muu" -#: [client]bot +#: ../cache/locales.php:554 msgid "Bot" msgstr "Botti" -#: [client]desktop +#: ../cache/locales.php:555 msgid "Desktop" msgstr "Työpöytä" -#: [client]phone +#: ../cache/locales.php:556 msgid "Phone" msgstr "Puhelin" -#: [client]web +#: ../cache/locales.php:557 msgid "Web" msgstr "" -#: [client]registered +#: ../cache/locales.php:558 msgid "Registered" msgstr "" -#: [marital]nil -#, fuzzy -msgctxt "[marital]nil" -msgid "None" -msgstr "Ei mitään" - -#: [marital]single +#: ../cache/locales.php:560 msgid "Single" msgstr "Sinkku" -#: [marital]relationship +#: ../cache/locales.php:561 msgid "In a relationship" msgstr "Parisuhteessa" -#: [marital]married +#: ../cache/locales.php:562 msgid "Married" msgstr "Naimisissa" -#: [marital]divorced +#: ../cache/locales.php:563 msgid "Divorced" msgstr "Eronnut" -#: [marital]widowed +#: ../cache/locales.php:564 msgid "Widowed" msgstr "Leski" -#: [marital]cohabiting +#: ../cache/locales.php:565 msgid "Cohabiting" msgstr "Avoliitossa" -#: [marital]union +#: ../cache/locales.php:566 msgid "Civil Union" msgstr "Rekisteröity parisuhde" -#: [flag]white +#: ../cache/locales.php:567 msgid "Not shared" msgstr "" -#: [flag]green +#: ../cache/locales.php:568 msgid "Shared with one contact" msgstr "" -#: [flag]orange +#: ../cache/locales.php:569 msgid "Shared with all contacts" msgstr "" -#: [flag]red +#: ../cache/locales.php:570 msgid "Shared with the XMPP network" msgstr "" -#: [flag]black +#: ../cache/locales.php:571 msgid "Shared with the whole Internet" msgstr "" -#: [presence]online +#: ../cache/locales.php:572 msgid "Online" msgstr "Paikalla" -#: [presence]away +#: ../cache/locales.php:573 msgid "Away" msgstr "Poissa" -#: [presence]dnd +#: ../cache/locales.php:574 msgid "Do Not Disturb" msgstr "Älä häiritse" -#: [presence]xa +#: ../cache/locales.php:575 msgid "Extended Away" msgstr "Laajennettu poissaolo" -#: [presence]offline +#: ../cache/locales.php:576 msgid "Offline" msgstr "Poissa verkosta" -#: [presence]error +#: ../cache/locales.php:577 msgid "Error" msgstr "" -#: [mood]afraid +#: ../cache/locales.php:578 msgid "afraid" msgstr "" -#: [mood]amazed +#: ../cache/locales.php:579 msgid "amazed" msgstr "" -#: [mood]amorous +#: ../cache/locales.php:580 msgid "amorous" msgstr "" -#: [mood]angry +#: ../cache/locales.php:581 msgid "angry" msgstr "" -#: [mood]annoyed +#: ../cache/locales.php:582 msgid "annoyed" msgstr "" -#: [mood]anxious +#: ../cache/locales.php:583 msgid "anxious" msgstr "" -#: [mood]aroused +#: ../cache/locales.php:584 msgid "aroused" msgstr "" -#: [mood]ashamed +#: ../cache/locales.php:585 msgid "ashamed" msgstr "" -#: [mood]bored +#: ../cache/locales.php:586 msgid "bored" msgstr "" -#: [mood]brave +#: ../cache/locales.php:587 msgid "brave" msgstr "" -#: [mood]calm +#: ../cache/locales.php:588 msgid "calm" msgstr "" -#: [mood]cautious +#: ../cache/locales.php:589 msgid "cautious" msgstr "" -#: [mood]cold +#: ../cache/locales.php:590 msgid "cold" msgstr "" -#: [mood]confident +#: ../cache/locales.php:591 msgid "confident" msgstr "" -#: [mood]confused +#: ../cache/locales.php:592 msgid "confused" msgstr "" -#: [mood]contemplative +#: ../cache/locales.php:593 msgid "contemplative" msgstr "" -#: [mood]contented +#: ../cache/locales.php:594 msgid "contented" msgstr "" -#: [mood]cranky +#: ../cache/locales.php:595 msgid "cranky" msgstr "" -#: [mood]crazy +#: ../cache/locales.php:596 msgid "crazy" msgstr "" -#: [mood]creative +#: ../cache/locales.php:597 msgid "creative" msgstr "" -#: [mood]curious +#: ../cache/locales.php:598 msgid "curious" msgstr "" -#: [mood]dejected +#: ../cache/locales.php:599 msgid "dejected" msgstr "" -#: [mood]depressed +#: ../cache/locales.php:600 msgid "depressed" msgstr "" -#: [mood]disappointed +#: ../cache/locales.php:601 msgid "disappointed" msgstr "" -#: [mood]disgusted +#: ../cache/locales.php:602 msgid "disgusted" msgstr "" -#: [mood]dismayed +#: ../cache/locales.php:603 msgid "dismayed" msgstr "" -#: [mood]distracted +#: ../cache/locales.php:604 msgid "distracted" msgstr "" -#: [mood]embarrassed +#: ../cache/locales.php:605 msgid "embarrassed" msgstr "" -#: [mood]envious +#: ../cache/locales.php:606 msgid "envious" msgstr "" -#: [mood]excited +#: ../cache/locales.php:607 msgid "excited" msgstr "" -#: [mood]flirtatious +#: ../cache/locales.php:608 msgid "flirtatious" msgstr "" -#: [mood]frustated +#: ../cache/locales.php:609 msgid "frustated" msgstr "" -#: [mood]grateful +#: ../cache/locales.php:610 msgid "grateful" msgstr "" -#: [mood]grieving +#: ../cache/locales.php:611 msgid "grieving" msgstr "" -#: [mood]grumpy +#: ../cache/locales.php:612 msgid "grumpy" msgstr "" -#: [mood]guilty +#: ../cache/locales.php:613 msgid "guilty" msgstr "" -#: [mood]happy +#: ../cache/locales.php:614 msgid "happy" msgstr "" -#: [mood]hopeful +#: ../cache/locales.php:615 msgid "hopeful" msgstr "" -#: [mood]hot +#: ../cache/locales.php:616 msgid "hot" msgstr "" -#: [mood]humbled +#: ../cache/locales.php:617 msgid "humbled" msgstr "" -#: [mood]humiliated +#: ../cache/locales.php:618 msgid "humiliated" msgstr "" -#: [mood]hungry +#: ../cache/locales.php:619 msgid "hungry" msgstr "" -#: [mood]hurt +#: ../cache/locales.php:620 msgid "hurt" msgstr "" -#: [mood]impressed +#: ../cache/locales.php:621 msgid "impressed" msgstr "" -#: [mood]in_awe +#: ../cache/locales.php:622 msgid "in awe" msgstr "" -#: [mood]in_love +#: ../cache/locales.php:623 msgid "in love" msgstr "" -#: [mood]indignant +#: ../cache/locales.php:624 msgid "indignant" msgstr "" -#: [mood]interested +#: ../cache/locales.php:625 msgid "interested" msgstr "" -#: [mood]intoxicated +#: ../cache/locales.php:626 msgid "intoxicated" msgstr "" -#: [mood]invincible +#: ../cache/locales.php:627 msgid "invincible" msgstr "" -#: [mood]jealous +#: ../cache/locales.php:628 msgid "jealous" msgstr "" -#: [mood]lonely +#: ../cache/locales.php:629 msgid "lonely" msgstr "" -#: [mood]lost +#: ../cache/locales.php:630 msgid "lost" msgstr "" -#: [mood]lucky +#: ../cache/locales.php:631 msgid "lucky" msgstr "" -#: [mood]mean +#: ../cache/locales.php:632 msgid "mean" msgstr "" -#: [mood]moody +#: ../cache/locales.php:633 msgid "moody" msgstr "" -#: [mood]nervous +#: ../cache/locales.php:634 msgid "nervous" msgstr "" -#: [mood]neutral +#: ../cache/locales.php:635 msgid "neutral" msgstr "" -#: [mood]offended +#: ../cache/locales.php:636 msgid "offended" msgstr "" -#: [mood]outraged +#: ../cache/locales.php:637 msgid "outraged" msgstr "" -#: [mood]playful +#: ../cache/locales.php:638 msgid "playful" msgstr "" -#: [mood]proud +#: ../cache/locales.php:639 msgid "proud" msgstr "" -#: [mood]relaxed +#: ../cache/locales.php:640 msgid "relaxed" msgstr "" -#: [mood]relieved +#: ../cache/locales.php:641 msgid "relieved" msgstr "" -#: [mood]restless +#: ../cache/locales.php:642 +msgid "remorseful" +msgstr "" + +#: ../cache/locales.php:643 msgid "restless" msgstr "" -#: [mood]sad +#: ../cache/locales.php:644 msgid "sad" msgstr "" -#: [mood]sarcastic +#: ../cache/locales.php:645 msgid "sarcastic" msgstr "" -#: [mood]satisfied +#: ../cache/locales.php:646 msgid "satisfied" msgstr "" -#: [mood]serious +#: ../cache/locales.php:647 msgid "serious" msgstr "" -#: [mood]shocked +#: ../cache/locales.php:648 msgid "shocked" msgstr "" -#: [mood]shy +#: ../cache/locales.php:649 msgid "shy" msgstr "" -#: [mood]sick +#: ../cache/locales.php:650 msgid "sick" msgstr "" -#: [mood]sleepy +#: ../cache/locales.php:651 msgid "sleepy" msgstr "" -#: [mood]spontaneous +#: ../cache/locales.php:652 msgid "spontaneous" msgstr "" -#: [mood]stressed +#: ../cache/locales.php:653 msgid "stressed" msgstr "" -#: [mood]strong +#: ../cache/locales.php:654 msgid "strong" msgstr "" -#: [mood]surprised +#: ../cache/locales.php:655 msgid "surprised" msgstr "" -#: [mood]thankful +#: ../cache/locales.php:656 msgid "thankful" msgstr "" -#: [mood]thirsty +#: ../cache/locales.php:657 msgid "thirsty" msgstr "" -#: [mood]tired +#: ../cache/locales.php:658 msgid "tired" msgstr "" -#: [mood]undefined +#: ../cache/locales.php:659 msgid "undefined" msgstr "" -#: [mood]weak +#: ../cache/locales.php:660 msgid "weak" msgstr "" -#: [mood]worried +#: ../cache/locales.php:661 msgid "worried" msgstr "" -#: [month]title +#: ../cache/locales.php:662 msgid "Month" msgstr "Kuukausi" -#: [month]january +#: ../cache/locales.php:663 msgid "January" msgstr "Tammikuu" -#: [month]february +#: ../cache/locales.php:664 msgid "February" msgstr "Helmikuu" -#: [month]march +#: ../cache/locales.php:665 msgid "March" msgstr "Maaliskuu" -#: [month]april +#: ../cache/locales.php:666 msgid "April" msgstr "Huhtikuu" -#: [month]may +#: ../cache/locales.php:667 msgid "May" msgstr "Toukokuu" -#: [month]june +#: ../cache/locales.php:668 msgid "June" msgstr "Kesäkuu" -#: [month]july +#: ../cache/locales.php:669 msgid "July" msgstr "Heinäkuu" -#: [month]august +#: ../cache/locales.php:670 msgid "August" msgstr "Elokuu" -#: [month]september +#: ../cache/locales.php:671 msgid "September" msgstr "Syyskuu" -#: [month]october +#: ../cache/locales.php:672 msgid "October" msgstr "Lokakuu" -#: [month]november +#: ../cache/locales.php:673 msgid "November" msgstr "Marraskuu" -#: [month]december +#: ../cache/locales.php:674 msgid "December" msgstr "Joulukuu" -#: [year]title +#: ../cache/locales.php:675 msgid "Year" msgstr "Vuosi" -#: [date]today +#: ../cache/locales.php:676 msgid "Today" msgstr "Tänään" -#: [date]tomorrow +#: ../cache/locales.php:677 msgid "Tomorrow" msgstr "Huomenna" -#: [date]yesterday +#: ../cache/locales.php:678 msgid "Yesterday" msgstr "Eilen" -#: [date]ago -#, fuzzy -msgid "%d days ago" +#: ../cache/locales.php:679 +#, php-format +msgid " %d days ago" msgstr " %d päivää sitten" -#: [date]day +#: ../cache/locales.php:680 msgid "day" msgstr "päivä" -#: [post]whats_new +#: ../cache/locales.php:682 msgid "What's new ?" msgstr "" -#: [post]place +#: ../cache/locales.php:683 msgid "Place" msgstr "" -#: [post]by +#: ../cache/locales.php:684 msgid "by" msgstr "" -#: [post]geolocalisation +#: ../cache/locales.php:685 msgid "Geolocalisation" msgstr "" -#: [post]email +#: ../cache/locales.php:686 msgid "email" msgstr "" -#: [post]no_comments +#: ../cache/locales.php:688 msgid "No comments yet" msgstr "" -#: [post]no_comments_stream +#: ../cache/locales.php:689 msgid "No comments stream" msgstr "" -#: [post]no_load +#: ../cache/locales.php:690 msgid "Your feed cannot be loaded." msgstr "Syötettäsi ei voitu ladata" -#: [post]older +#: ../cache/locales.php:691 msgid "Get older posts" msgstr "Hae vanhat postaukset" -#: [post]new_items +#: ../cache/locales.php:692 +#, php-format msgid "%s new items" msgstr "" -#: [post]comment_error +#: ../cache/locales.php:693 msgid "Comment publication error" msgstr "" -#: [post]comments_older +#: ../cache/locales.php:694 msgid "Show the older comments" msgstr "" -#: [post]comments_loading -#, fuzzy -msgid "Loading comments..." -msgstr "Ladataan sinun syötteitä ..." +#: ../cache/locales.php:695 +msgid "Loading comments ..." +msgstr "" -#: [post]comments_get +#: ../cache/locales.php:696 msgid "Get the comments" msgstr "" -#: [post]comment_add +#: ../cache/locales.php:697 msgid "Add a comment" msgstr "" -#: [post]share +#: ../cache/locales.php:698 msgid "Share with" msgstr "" -#: [post]share_everyone +#: ../cache/locales.php:699 msgid "Everyone" msgstr "" -#: [post]share_your_contacts +#: ../cache/locales.php:700 msgid "Your contacts" msgstr "" -#: [post]updated +#: ../cache/locales.php:702 msgid "Updated" msgstr "" -#: [post]content_not_found +#: ../cache/locales.php:703 msgid "Content not found" msgstr "" -#: [post]default_title +#: ../cache/locales.php:704 msgid "Contact publication" msgstr "" -#: [post]comments +#: ../cache/locales.php:705 msgid "Comments" msgstr "" -#: [api]error +#: ../cache/locales.php:706 msgid "The API is not reachable, try again later" msgstr "" -#: [field]type_here +#: ../cache/locales.php:707 msgid "Type here" msgstr "" #~ msgid "PHP version mismatch. Movim requires PHP 5.3 minimum." #~ msgstr "PHP versio ei yhteensopiva. Movim vaatii vähintään PHP 5.3:n" +#, php-format #~ msgid "Movim requires the %s extension." #~ msgstr "Movim vaatii %s laajennuksen." #~ msgid "Movim's folder must be writable." #~ msgstr "Movim -kansioon täytyy olla kirjoitusoikeudet" +#, php-format #~ msgid "Couldn't create configuration file '%s'." #~ msgstr "Ei voitu luoda asetustiedostoa '%s'" #~ msgid "Compatibility Test" #~ msgstr "Yhteensopivuustesti" -#~ msgid "The following requirements were not met. Please make sure they are all satisfied in order to install Movim." -#~ msgstr "Seuraavia vaatimuksia ei voitu täyttää. Varmista että kaikki vaatimukset täytetty että voit asentaa Movimin." +#~ msgid "" +#~ "The following requirements were not met. Please make sure they are all " +#~ "satisfied in order to install Movim." +#~ msgstr "" +#~ "Seuraavia vaatimuksia ei voitu täyttää. Varmista että kaikki vaatimukset " +#~ "täytetty että voit asentaa Movimin." #~ msgid "User not logged in." #~ msgstr "Käyttäjä ei ole kirjautunut sisään." @@ -2738,15 +2614,21 @@ msgstr "" #~ msgid "JID not provided." #~ msgstr "JID ei määritetty." +#, php-format #~ msgid "jid '%s' is incorrect" #~ msgstr "jid '%s' on väärin" +#, php-format #~ msgid "Cannot open log file '%s'" #~ msgstr "Ei voi avata lokitiedostoa '%s'" +#, php-format #~ msgid "%s - Account Creation" #~ msgstr "%s - Tilin luominen" +#~ msgid "Remove this contact" +#~ msgstr "Poista tämä kontakti" + #~ msgid "Debug console" #~ msgstr "Debug konsoli" @@ -2762,6 +2644,7 @@ msgstr "" #~ msgid "Loading the contact feed ..." #~ msgstr "Ladataan kontaktit-feediä" +#, php-format #~ msgid "Install the %s package" #~ msgstr "Asenna %s paketti" @@ -2771,21 +2654,35 @@ msgstr "" #~ msgid "Actual version : " #~ msgstr "Nykyinen versio: " +#, php-format #~ msgid "Install %s and %s packages" #~ msgstr "Asenna %s ja %s paketit" #~ msgid "Update your PHP version or contact your server administrator" #~ msgstr "Päivitä PHP versiosi tai ota yhteys palvelimen ylläpitäjään" -#~ msgid "Keep in mind that Movim is still under development and will handle many personal details. Its use can potentially endanger your data. Always pay attention to information that you submit." -#~ msgstr "Muista että Movim on yhä työn alla ja ylläpitää henkilökohtaisia tietoja. Käyttö vielä tässä vaiheessa voi joissain tapauksissa vaarantaa yksityisyyden. Ole huolellinen jakaessasi tietoja." +#~ msgid "Enable read and write rights on Movim's root folder" +#~ msgstr "kirjoitus- ja lukuoikeudet Movim-juurihakemistoon" -#~ msgid "Before you enjoy your social network, a few adjustements are required." -#~ msgstr "Ennen kuin voit nauttia sosiaalisesta verkosta, tarvitaan vielä vähän säätämistä" +#~ msgid "" +#~ "Keep in mind that Movim is still under development and will handle many " +#~ "personal details. Its use can potentially endanger your data. Always pay " +#~ "attention to information that you submit." +#~ msgstr "" +#~ "Muista että Movim on yhä työn alla ja ylläpitää henkilökohtaisia tietoja. " +#~ "Käyttö vielä tässä vaiheessa voi joissain tapauksissa vaarantaa " +#~ "yksityisyyden. Ole huolellinen jakaessasi tietoja." + +#~ msgid "" +#~ "Before you enjoy your social network, a few adjustements are required." +#~ msgstr "" +#~ "Ennen kuin voit nauttia sosiaalisesta verkosta, tarvitaan vielä vähän " +#~ "säätämistä" #~ msgid "Thank you for downloading Movim!" #~ msgstr "Kiitos että latasit Movimin!" +#, php-format #~ msgid "Couldn't create directory '%s'." #~ msgstr "Kansiota '%s' ei voitu luoda" @@ -2816,6 +2713,10 @@ msgstr "" #~ msgid "Success !" #~ msgstr "Onnistui!" +#~ msgid "Database Detected" +#~ msgstr "Tietokanta tunnistettu" + +#, php-format #~ msgid "Please remove the %s folder in order to complete the installation" #~ msgstr "Poista %s kansio että voit saattaa asennuksen loppuun" @@ -2825,6 +2726,7 @@ msgstr "" #~ msgid "Connecting..." #~ msgstr "Yhdistetään..." +#, php-format #~ msgid "%s - Add An Account" #~ msgstr "%s - Lisää käyttäjätili" @@ -2849,8 +2751,12 @@ msgstr "" #~ msgid "Username already taken" #~ msgstr "Käyttäjänimi on jo käytössä" -#~ msgid "Firstly fill in this blank with a brand new account ID, this address will follow you on all the Movim network !" -#~ msgstr "Ensiksi anna uusi tilin ID-tunniste, tämä tunniste on sinun käytössä koko Movim verkossa." +#~ msgid "" +#~ "Firstly fill in this blank with a brand new account ID, this address will " +#~ "follow you on all the Movim network !" +#~ msgstr "" +#~ "Ensiksi anna uusi tilin ID-tunniste, tämä tunniste on sinun käytössä koko " +#~ "Movim verkossa." #~ msgid "Make sure your password is safe :" #~ msgstr "Pidä huolta että salasanasi on turvallinen:" @@ -2868,7 +2774,8 @@ msgstr "" #~ msgstr "Luo" #~ msgid "A capital letter, a digit and a special character are recommended" -#~ msgstr "Suositellaan käyttämään iso kirjainta, numeroa ja/tai erikoismerkkiä." +#~ msgstr "" +#~ "Suositellaan käyttämään iso kirjainta, numeroa ja/tai erikoismerkkiä." #~ msgid "8 characters" #~ msgstr "8 merkkiä" @@ -2882,11 +2789,17 @@ msgstr "" #~ msgid "Address" #~ msgstr "Osoite" +#~ msgid "Loading your feed ..." +#~ msgstr "Ladataan sinun syötteitä ..." + #~ msgid "Client Type" #~ msgstr "Asiakasohjelma" -#~ msgid "Your server doesn't support post publication, you can only read contact's feeds" -#~ msgstr "Palvelimesi ei tue postauksen julakisua, voit vain lukea kontaktisi syötteet" +#~ msgid "" +#~ "Your server doesn't support post publication, you can only read contact's " +#~ "feeds" +#~ msgstr "" +#~ "Palvelimesi ei tue postauksen julakisua, voit vain lukea kontaktisi syötteet" #~ msgid "My Posts" #~ msgstr "Minun postaukset" @@ -2897,6 +2810,7 @@ msgstr "" #~ msgid "talkative" #~ msgstr "puhelias" +#, php-format #~ msgid "You can now access your shiny Movim instance %sJump In !%s" #~ msgstr "Voi nyt mennä uudenkarheaan Movim instanssiisi %s hyppää sisään %s" @@ -2906,11 +2820,27 @@ msgstr "" #~ msgid "The current BOSH URL in invalid" #~ msgstr "Nykyinen BOSH url on epäkelpo" -#~ msgid "Although Movim is evolving fast, many (many) features are missing. Be patient ;). You can have a look %s at next versions's roadmaps %s to know if the one you want is on its way." -#~ msgstr "Vaikka Movim kehittyy nopeasti, useat ominaisuudet saattavat vielä olla puutteellisia. Ole kärsivällinen ;) Voit katsoa jo etukäteen %s tulevien versioiden ominaisuuksia %s." +#, php-format +#~ msgid "" +#~ "Although Movim is evolving fast, many (many) features are missing. Be " +#~ "patient ;). You can have a look %s at next versions's roadmaps %s to know if " +#~ "the one you want is on its way." +#~ msgstr "" +#~ "Vaikka Movim kehittyy nopeasti, useat ominaisuudet saattavat vielä olla " +#~ "puutteellisia. Ole kärsivällinen ;) Voit katsoa jo etukäteen %s tulevien " +#~ "versioiden ominaisuuksia %s." -#~ msgid "Don't forget that Movim is an open source project, a helping hand is always welcome (see %s Can I participate %s)" -#~ msgstr "Movim on avoimen lähdekoodin projekti, auttavat kädet ovat aina tervetulleita (katso %s Miten voin osallistua %s)" +#, php-format +#~ msgid "" +#~ "Don't forget that Movim is an open source project, a helping hand is always " +#~ "welcome (see %s Can I participate %s)" +#~ msgstr "" +#~ "Movim on avoimen lähdekoodin projekti, auttavat kädet ovat aina " +#~ "tervetulleita (katso %s Miten voin osallistua %s)" + +#, php-format +#~ msgid "Contacts (%s)" +#~ msgstr "Kontaktit (%s)" #~ msgid "No profile yet ?" #~ msgstr "Ei vielä käyttäjätunnusta?" @@ -2930,18 +2860,42 @@ msgstr "" #~ msgid "Follow" #~ msgstr "Seuraa" -#~ msgid "Some features are missing/I can't do everything I used to do on other social networks" -#~ msgstr "Joitain ominaisuuksia puuttuu / en voi tehdä kaikkea mitä muissa sosiaalisissa verkoissa" +#~ msgid "" +#~ "Some features are missing/I can't do everything I used to do on other social " +#~ "networks" +#~ msgstr "" +#~ "Joitain ominaisuuksia puuttuu / en voi tehdä kaikkea mitä muissa " +#~ "sosiaalisissa verkoissa" -#~ msgid "Visit the page %s What is Movim ? %s to know more about the project, its aims and understand how it works." -#~ msgstr "Vieraile %s Mikä Movim on? %s sivulla saadaksesi tietoa projektista, tavoitteista ja ymmärtääksesi sen toimintaa." +#, php-format +#~ msgid "" +#~ "Visit the page %s What is Movim ? %s to know more about the project, its " +#~ "aims and understand how it works." +#~ msgstr "" +#~ "Vieraile %s Mikä Movim on? %s sivulla saadaksesi tietoa projektista, " +#~ "tavoitteista ja ymmärtääksesi sen toimintaa." -#~ msgid "Go to the %s to the Frequently Asked Questions %s or come ask your question on the official chatroom %s or via our mailing-list (%s see the dedicated page %s)." -#~ msgstr "Vieräile %s Usein Kysytyissä Kysymyksissä (FAQ/UKK) %s tai kysy meidän virallisessa chatissa tai %s tai meidän postituslistalla (%s katso sivu%s)." +#, php-format +#~ msgid "" +#~ "Go to the %s to the Frequently Asked Questions %s or come ask your question " +#~ "on the official chatroom %s or via our mailing-list (%s see the dedicated " +#~ "page %s)." +#~ msgstr "" +#~ "Vieräile %s Usein Kysytyissä Kysymyksissä (FAQ/UKK) %s tai kysy meidän " +#~ "virallisessa chatissa tai %s tai meidän postituslistalla (%s katso sivu%s)." -#~ msgid "Some errors were detected. Please correct them for the installation to proceed." -#~ msgstr "Joitain virheitä huomattiin, ole hyvä ja korjaa virheet että voidaan jatkaa asentamista." +#~ msgid "" +#~ "Some errors were detected. Please correct them for the installation to " +#~ "proceed." +#~ msgstr "" +#~ "Joitain virheitä huomattiin, ole hyvä ja korjaa virheet että voidaan jatkaa " +#~ "asentamista." +#, php-format +#~ msgid "This server hosts %s accounts" +#~ msgstr "Tämä palvelin ylläpitää %s käyttäjätiliä" + +#, php-format #~ msgid "Cannot load element value '%s'" #~ msgstr "Ei voi ladata elementin arvoa '%s'" @@ -2951,9 +2905,11 @@ msgstr "" #~ msgid "What is Movim?" #~ msgstr "Mikä Movim on?" +#, php-format #~ msgid "XMPP connection through Bosh failed with error '%s'" #~ msgstr "XMPP yhteys Boshin kautta epäonnistui, virhekoodi '%s'" +#, php-format #~ msgid "Database connection failed with error '%s'" #~ msgstr "Yhteys tietokantaan epäonnistui, virhekoodi '%s'" @@ -2963,5 +2919,6 @@ msgstr "" #~ msgid "Valid Bosh" #~ msgstr "Validi Bosh-yhteys" +#, php-format #~ msgid "Bosh connection failed with error '%s'" #~ msgstr "Bosh yhteys epäonnistui, virhekoodi '%s'" diff --git a/sources/locales/fr.po b/sources/locales/fr.po index 6c6142a..270947e 100644 --- a/sources/locales/fr.po +++ b/sources/locales/fr.po @@ -1,2776 +1,2662 @@ # French translations for Movim Website package. # This file is distributed under the same license as the Movim Website package. # This file was translated from CodingTeam at . -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/About/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Account/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/AccountNext/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/AdHoc/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/AdminDB/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/AdminMain/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/AdminTest/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Api/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Avatar/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Blog/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Bookmark/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Chat/locales.ini -#. #-#-#-#-# 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 -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Group/locales.ini -#. #-#-#-#-# 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 -#. #-#-#-#-# 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 -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Presence/locales.ini -#. #-#-#-#-# 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 -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Share/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Statistics/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Subscribe/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Syndication/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Upload/locales.ini -#. #-#-#-#-# 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 Website\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-08-20 15:17+0200\n" +"POT-Creation-Date: 2015-06-08 22:06+0200\n" "PO-Revision-Date: 2015-06-10 08:09+0000\n" "Last-Translator: Axelos \n" "Language-Team: \n" -"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2015-06-18 21:08+0000\n" "X-Generator: Launchpad (build 17570)\n" +"Language: \n" -#: [about]thanks +#: ../cache/locales.php:2 msgid "Thanks" msgstr "Remerciements" -#: [about]developers +#: ../cache/locales.php:3 msgid "Developers" msgstr "Développeurs" -#: [about]translators +#: ../cache/locales.php:4 msgid "Translators" msgstr "Traducteurs" -#: [about]software +#: ../cache/locales.php:5 msgid "Software" msgstr "Logiciels" -#: [about]resources +#: ../cache/locales.php:6 msgid "Resources" msgstr "Ressources" -#: [about]api [schema]api [api]title +#: ../cache/locales.php:7 ../cache/locales.php:83 ../cache/locales.php:85 msgid "API" msgstr "API" -#: [about]info -msgid "Movim is an XMPP-based communication platform. All the project, except the following software and resources, is under" -msgstr "Movim est une plateforme de communication construite sur XMPP. L’intégralité du projet, à l’exception des ressources et logiciels suivants, est sous la licence" +#: ../cache/locales.php:8 +msgid "" +"Movim is an XMPP-based communication platform. All the project, except the " +"following software and resources, is under" +msgstr "" +"Movim est une plateforme de communication construite sur XMPP. L’intégralité " +"du projet, à l’exception des ressources et logiciels suivants, est sous la " +"licence" -#: [account]title +#: ../cache/locales.php:9 msgid "Account" msgstr "Compte" -#: [account]password_change_title -#, fuzzy -msgid "Change my password" -msgstr "Mot de passe incorrect" - -#: [account]password [db]password [credentials]password [form]password -#: [input]password -msgid "Password" -msgstr "Mot de passe" - -#: [account]password_confirmation -#, fuzzy -msgid "Password confirmation" -msgstr "%s – Configuration" - -#: [account]password_changed +#: ../cache/locales.php:10 msgid "The password has been updated" msgstr "Le mot de passe a été mis à jour" -#: [account]password_not_valid +#: ../cache/locales.php:11 msgid "Please provide a valid password (6 characters minimum)" msgstr "Veuillez entrer un mot de passe valide (6 lettres minimum)" -#: [account]password_not_same +#: ../cache/locales.php:12 msgid "The provided passwords are not the same" msgstr "Les mot de passes renseignés ne sont pas identiques" -#: [account]delete_title +#: ../cache/locales.php:13 msgid "Delete my account" msgstr "Supprimer mon compte" -#: [account]delete -#, fuzzy -msgid "Delete your account" -msgstr "Supprimer mon compte" +#: ../cache/locales.php:14 +msgid "" +"You will delete your XMPP account and all the relative information linked to " +"it (profile, contacts and publications)." +msgstr "" +"Vous allez supprimer votre compte XMPP ainsi que l'ensemble des informations " +"liés à celui-ci (profil, contacts et billets)." -#: [account]delete_text -msgid "You will delete your XMPP account and all the relative information linked to it (profile, contacts and publications)." -msgstr "Vous allez supprimer votre compte XMPP ainsi que l'ensemble des informations liés à celui-ci (profil, contacts et billets)." - -#: [account]delete_text_confirm +#: ../cache/locales.php:15 msgid "Are you sure that you want to delete it ?" msgstr "Êtes-vous sûr de vouloir le supprimer?" -#: [account]gateway_title -msgid "Gateway" -msgstr "" - -#: [create]title [subscribe]title +#: ../cache/locales.php:16 ../cache/locales.php:411 msgid "Create a new account" msgstr "Créer un nouveau compte" -#: [create]notfound +#: ../cache/locales.php:17 msgid "No account creation form found on the server" msgstr "Aucun formulaire de création de compte n’a été trouvé sur le serveur" -#: [create]server_on +#: ../cache/locales.php:18 ../cache/locales.php:172 msgid "on" msgstr "sur" -#: [create]successfull +#: ../cache/locales.php:19 msgid "Your acccount has been successfully registered" msgstr "Votre compte a été correctement enregistré" -#: [create]loading +#: ../cache/locales.php:20 msgid "Loading" msgstr "Chargement en cours" -#: [error]not_acceptable +#: ../cache/locales.php:21 msgid "Not Acceptable" msgstr "Non acceptable" -#: [error]service_unavailable +#: ../cache/locales.php:22 msgid "The registration system of this server is currently unavailable" -msgstr "Le système d’enregistrement de ce serveur est actuellement indisponible" +msgstr "" +"Le système d’enregistrement de ce serveur est actuellement indisponible" -#: [oob]about -msgid "This server use an external system for the registration, please click on the following URL." -msgstr "Ce serveur utilise un service externe pour enregistrer les nouveaux utilisateurs, veuillez s’il vous plaît cliquer sur le lien suivant." +#: ../cache/locales.php:23 +msgid "" +"This server use an external system for the registration, please click on the " +"following URL." +msgstr "" +"Ce serveur utilise un service externe pour enregistrer les nouveaux " +"utilisateurs, veuillez s’il vous plaît cliquer sur le lien suivant." -#: [adhoc]title +#: ../cache/locales.php:24 msgid "Actions" msgstr "Actions" -#: [db]legend [schema]database +#: ../cache/locales.php:25 ../cache/locales.php:82 msgid "Database" msgstr "Base de données" -#: [db]connect_error +#: ../cache/locales.php:26 msgid "Modl wasn't able to connect to the database" msgstr "Modl n’a pas été en mesure de se connecter à la base de données" -#: [db]connect_success +#: ../cache/locales.php:27 msgid "Movim is connected to the database" msgstr "Movim est connecté à la base de données" -#: [db]update +#: ../cache/locales.php:28 msgid "The database need to be updated" msgstr "La base de données doit être mise à jour" -#: [db]up_to_date +#: ../cache/locales.php:29 msgid "Movim database is up to date" msgstr "La base de donnée est à jour" -#: [db]type +#: ../cache/locales.php:30 msgid "Database Type" msgstr "Type de base de données" -#: [db]username [credentials]username [input]username +#: ../cache/locales.php:31 ../cache/locales.php:50 ../cache/locales.php:540 msgid "Username" msgstr "Identifiant" -#: [db]host +#: ../cache/locales.php:32 ../cache/locales.php:51 ../cache/locales.php:282 +#: ../cache/locales.php:541 +msgid "Password" +msgstr "Mot de passe" + +#: ../cache/locales.php:33 msgid "Host" msgstr "Hôte" -#: [db]port +#: ../cache/locales.php:34 msgid "Port" msgstr "Port" -#: [db]name -#, fuzzy -msgid "Database sName" +#: ../cache/locales.php:35 +msgid "Database Name" msgstr "Nom de la base de données" -#: [admin]general +#: ../cache/locales.php:36 msgid "General Settings" msgstr "Paramètres généraux" -#: [general]theme +#: ../cache/locales.php:37 msgid "Theme" msgstr "Thème" -#: [general]language +#: ../cache/locales.php:38 msgid "Default language" msgstr "Langue par défaut" -#: [general]log_verbosity +#: ../cache/locales.php:39 +msgid "Environment" +msgstr "Environnement" + +#: ../cache/locales.php:40 msgid "Log verbosity" msgstr "Niveau de détail des journaux" -#: [general]timezone +#: ../cache/locales.php:41 msgid "Server Timezone" msgstr "Fuseau horaire du serveur" -#: [general]limit +#: ../cache/locales.php:42 msgid "User folder size limit (in bytes)" msgstr "Taille limite du dossier des utilisateurs (en octets)" -#: [websocket]title +#: ../cache/locales.php:43 msgid "WebSocket Configuration" msgstr "Configuration du WebSocket" -#: [websocket]info +#: ../cache/locales.php:44 msgid "Enter here a valid WebSocket URI in the form" msgstr "Veuillez saisir une URI WebSocket valide dans le formulaire" -#: [websocket]label +#: ../cache/locales.php:45 msgid "WebSocket URI" msgstr "URI du WebSocket" -#: [websocket]save_info -msgid "If you change the URI, please restart the daemon to reload the configuration" -msgstr "Si vous changez l’URI, veuillez relancer le démon afin de prendre en compte la configuration" +#: ../cache/locales.php:46 +msgid "" +"If you change the URI, please restart the daemon to reload the configuration" +msgstr "" +"Si vous changez l’URI, veuillez relancer le démon afin de prendre en compte " +"la configuration" -#: [websocket]publics +#: ../cache/locales.php:47 msgid "Public WebSockets" msgstr "WebSockets publics" -#: [credentials]title +#: ../cache/locales.php:48 msgid "Administration Credential" msgstr "Identification de l’administrateur" -#: [credentials]info +#: ../cache/locales.php:49 msgid "Change the default credentials admin/password" msgstr "Modifiez les paramètres d’identification admin / password" -#: [credentials]re_password +#: ../cache/locales.php:52 msgid "Retype password" msgstr "Ressaisissez le mot de passe" -#: [whitelist]title +#: ../cache/locales.php:53 msgid "Whitelist - XMPP Server" msgstr "Serveurs XMPP : Liste blanche" -#: [whitelist]info1 -msgid "If you want to specify a list of authorized XMPP servers on your Movim pod and forbid the connection on all the others please put their domain name here, with comma (ex: movim.eu,jabber.fr)" -msgstr "Si vous souhaitez établir une liste de serveurs XMPP autorisés sur votre pod Movim et interdire la connexion à tous les autres, veuillez saisir la liste de leurs noms de domaine, séparés par une virgule (ex : movim.eu, jabber.fr)." +#: ../cache/locales.php:54 +msgid "" +"If you want to specify a list of authorized XMPP servers on your Movim pod " +"and forbid the connection on all the others please put their domain name " +"here, with comma (ex: movim.eu,jabber.fr)" +msgstr "" +"Si vous souhaitez établir une liste de serveurs XMPP autorisés sur votre pod " +"Movim et interdire la connexion à tous les autres, veuillez saisir la liste " +"de leurs noms de domaine, séparés par une virgule (ex : movim.eu, jabber.fr)." -#: [whitelist]info2 -msgid "Leave this field blank if you allow the access to all the XMPP accounts." -msgstr "Laissez ce champ vide si vous souhaitez autoriser la connexion à tous les comptes XMPP." +#: ../cache/locales.php:55 +msgid "" +"Leave this field blank if you allow the access to all the XMPP accounts." +msgstr "" +"Laissez ce champ vide si vous souhaitez autoriser la connexion à tous les " +"comptes XMPP." -#: [whitelist]label +#: ../cache/locales.php:56 msgid "List of whitelisted XMPP servers" msgstr "Liste blanche des serveurs XMPP" -#: [information]title -#, fuzzy -msgctxt "[information]title" +#: ../cache/locales.php:57 ../cache/locales.php:61 msgid "Information Message" msgstr "Message d’information" -#: [information]description +#: ../cache/locales.php:58 msgid "Description" msgstr "Description" -#: [information]info1 +#: ../cache/locales.php:59 msgid "This message will be displayed on the login page" msgstr "Ce message sera affiché sur la page de connexion." -#: [information]info2 -#, fuzzy -msgid "Leave this field blank if you dont want to show any message." +#: ../cache/locales.php:60 +msgid "Leave this field blank if you don't want to show any message." msgstr "Laissez ce champ vide si vous ne voulez afficher aucun message." -#: [information]label -#, fuzzy -msgctxt "[information]label" -msgid "Information Message" -msgstr "Message d’information" - -#: [log]empty +#: ../cache/locales.php:62 msgid "Empty" msgstr "Vide" -#: [log]syslog +#: ../cache/locales.php:63 msgid "Syslog" msgstr "Journal système (syslog)" -#: [log]syslog_files +#: ../cache/locales.php:64 msgid "Syslog and files" msgstr "Journal système et fichiers" -#: [rewrite]title +#: ../cache/locales.php:65 msgid "URL Rewriting" msgstr "Réécriture d'URL" -#: [rewrite]info +#: ../cache/locales.php:66 msgid "The URL Rewriting can be enabled" msgstr "La réécriture d'URL peut être activée" -#: [admin]compatibility +#: ../cache/locales.php:67 msgid "General Overview" msgstr "Aperçu général" -#: [compatibility]info -msgid "Movim has found some issues or things that need to be fixed or improved" -msgstr "Movim a rencontré des problèmes ou des choses qui doivent être corrigés ou améliorés" +#: ../cache/locales.php:68 +msgid "" +"Movim has found some issues or things that need to be fixed or improved" +msgstr "" +"Movim a rencontré des problèmes ou des choses qui doivent être corrigés ou " +"améliorés" -#: [compatibility]php1 +#: ../cache/locales.php:69 +#, php-format msgid "Update your PHP-Version: %s" msgstr "Mettez à jour votre version de PHP : %s" -#: [compatibility]php2 +#: ../cache/locales.php:70 msgid "Required: 5.3.0" msgstr "Requis : 5.3.0" -#: [compatibility]curl +#: ../cache/locales.php:71 msgid "Install the php5-curl library" msgstr "Installer la bibliothèque php5-curl" -#: [compatibility]imagick +#: ../cache/locales.php:72 msgid "Install the php5-imagick library" msgstr "Installez la bibliothèque php5-imagick" -#: [compatibility]gd +#: ../cache/locales.php:73 msgid "Install the php5-gd library" msgstr "Installez la librairie php5-gd" -#: [compatibility]rights -#, fuzzy -msgid "Read and write rights for the webserver in Movims root directory" -msgstr "Droits de lecture et d’écriture pour le serveur web dans le dossier racine de Movim" +#: ../cache/locales.php:74 +msgid "Read and write rights for the webserver in Movim's root directory" +msgstr "" +"Droits de lecture et d’écriture pour le serveur web dans le dossier racine " +"de Movim" -#: [compatibility]rewrite +#: ../cache/locales.php:75 msgid "The URL Rewriting support is currently disabled" -msgstr "Le support des URI simplifiées (URL Rewriting) est actuellement désactivé" +msgstr "" +"Le support des URI simplifiées (URL Rewriting) est actuellement désactivé" -#: [compatibility]db +#: ../cache/locales.php:76 msgid "The database need to be updated, go to the database panel to fix this" -msgstr "La base de données doit être mise à jour, allez dans son panneau pour résoudre ce problème" +msgstr "" +"La base de données doit être mise à jour, allez dans son panneau pour " +"résoudre ce problème" -#: [compatibility]websocket -msgid "WebSocket connection error, check if the Movim Daemon is running and is reachable" +#: ../cache/locales.php:77 +msgid "" +"WebSocket connection error, check if the Movim Daemon is running and is " +"reacheable" msgstr "" -#: [compatibility]xmpp_websocket -msgid "XMPP Websocket connection error, please check the validity of the URL given in the General Configuration" -msgstr "Erreur de connexion XMPP Websocket, s'il vous plaît vérifier la validité de l'URL donnée dans la configuration générale" +#: ../cache/locales.php:78 +msgid "" +"XMPP Websocket connection error, please check the validity of the URL given " +"in the General Configuration" +msgstr "" +"Erreur de connexion XMPP Websocket, s'il vous plaît vérifier la validité de " +"l'URL donnée dans la configuration générale" -#: [schema]browser +#: ../cache/locales.php:79 msgid "Browser" msgstr "Navigateur" -#: [schema]movim +#: ../cache/locales.php:80 msgid "Movim Core" msgstr "" -#: [schema]daemon +#: ../cache/locales.php:81 msgid "Movim Daemon" msgstr "Démon Movim" -#: [schema]xmpp +#: ../cache/locales.php:84 msgid "XMPP" msgstr "XMPP" -#: [api]info -msgid "Here you can register your pod on the official %sMovim API%s and be listed on %sthe pods page%s." -msgstr "Vous pouvez enregistrer ici votre pod sur %sl’API officielle%s et être listé sur %sla page des pods%s." +#: ../cache/locales.php:86 +#, php-format +msgid "" +"Here you can register your pod on the official %sMovim API%s and be listed " +"on %sthe pods page%s." +msgstr "" +"Vous pouvez enregistrer ici votre pod sur %sl’API officielle%s et être listé " +"sur %sla page des pods%s." -#: [api]register +#: ../cache/locales.php:87 msgid "Your pod is not registered on the API" msgstr "Votre pod n’est pas enregistré sur l’API" -#: [api]registered +#: ../cache/locales.php:88 msgid "Your pod is registered on the API" msgstr "Votre pod est enregistré sur l’API" -#: [api]wait +#: ../cache/locales.php:89 msgid "Your pod is not yet validated" msgstr "Votre pod n’est pas encore validé" -#: [api]validated +#: ../cache/locales.php:90 msgid "Your pod is validated" msgstr "Votre pod est validé" -#: [api]unregister -msgid "You asked to be removed from the API, this request will be processed in a couple of hours" -msgstr "Votre demande de désinscription a été prise en compte, elle sera effective dans quelques heures" +#: ../cache/locales.php:91 +msgid "" +"You asked to be removed from the API, this request will be processed in a " +"couple of hours" +msgstr "" +"Votre demande de désinscription a été prise en compte, elle sera effective " +"dans quelques heures" -#: [api]conf_updated [config]updated +#: ../cache/locales.php:92 ../cache/locales.php:147 msgid "Configuration updated" msgstr "Configuration mise à jour" -#: [avatar]file +#: ../cache/locales.php:93 msgid "File" msgstr "Fichier" -#: [avatar]use_it +#: ../cache/locales.php:94 msgid "Use it" msgstr "Utiliser" -#: [avatar]webcam +#: ../cache/locales.php:95 msgid "Webcam" msgstr "Caméra" -#: [avatar]cheese +#: ../cache/locales.php:96 msgid "Cheese !" msgstr "Souriez !" -#: [avatar]snapshot +#: ../cache/locales.php:97 msgid "Take a webcam snapshot" msgstr "Prendre une photo avec votre webcam" -#: [avatar]updated +#: ../cache/locales.php:98 msgid "Avatar Updated" msgstr "Avatar mis à jour" -#: [avatar]not_updated +#: ../cache/locales.php:99 msgid "Avatar Not Updated" msgstr "Avatar non mis à jour" -#: [blog]title [feed]title +#: ../cache/locales.php:100 ../cache/locales.php:415 +#, php-format msgid "%s's feed" msgstr "Flux de %s" -#: [blog]empty +#: ../cache/locales.php:101 msgid "This user has not posted anything right now" msgstr "Cet utilisateur n'a rien publié pour le moment" -#: [title]conferences +#: ../cache/locales.php:102 msgid "Conferences" msgstr "Conférences" -#: [title]groups [group]empty_title [menu]groups [page]groups +#: ../cache/locales.php:103 ../cache/locales.php:193 ../cache/locales.php:217 +#: ../cache/locales.php:468 msgid "Groups" msgstr "Groupes" -#: [chatroom]add +#: ../cache/locales.php:104 msgid "Add a new Chat Room" msgstr "Ajouter un nouveau salon" -#: [chatroom]id [chatrooms]id +#: ../cache/locales.php:105 ../cache/locales.php:368 msgid "Chat Room ID" msgstr "Identifiant du salon" -#: [chatroom]name -#, fuzzy -msgctxt "[chatroom]name" +#: ../cache/locales.php:106 ../cache/locales.php:116 ../cache/locales.php:156 +#: ../cache/locales.php:361 ../cache/locales.php:369 ../cache/locales.php:424 msgid "Name" msgstr "Nom" -#: [chatroom]nickname [general]nickname [chatrooms]nickname +#: ../cache/locales.php:107 ../cache/locales.php:157 ../cache/locales.php:371 +#: ../cache/locales.php:425 msgid "Nickname" msgstr "Pseudonyme" -#: [chatroom]autojoin_label +#: ../cache/locales.php:108 msgid "Do you want do join automaticaly this Chat Room ?" msgstr "Voulez vous rejoindre automatiquement ce salon ?" -#: [chatroom]bad_id [chatrooms]bad_id +#: ../cache/locales.php:109 ../cache/locales.php:372 msgid "Bad Chatroom ID" msgstr "Mauvais identifiant de salon de discussion" -#: [chatroom]empty_name [chatrooms]empty_name +#: ../cache/locales.php:110 ../cache/locales.php:373 msgid "Empty name" msgstr "Nom vide" -#: [bookmarks]updated +#: ../cache/locales.php:111 ../cache/locales.php:380 msgid "Bookmarks updated" msgstr "Signets mis à jour" -#: [bookmarks]error -#, fuzzy -msgid "An error occured :" +#: ../cache/locales.php:112 +msgid "An error occured : " msgstr "Une erreur s’est produite : " -#: [bookmarks]configure +#: ../cache/locales.php:113 msgid "Configure" msgstr "Configurer" -#: [url]add +#: ../cache/locales.php:114 msgid "Add a new URL" msgstr "Ajouter un nouveau lien" -#: [url]url +#: ../cache/locales.php:115 msgid "URL" msgstr "URL" -#: [url]name -#, fuzzy -msgctxt "[url]name" -msgid "Name" -msgstr "Nom" - -#: [message]published +#: ../cache/locales.php:117 msgid "Message Published" msgstr "Message publié" -#: [message]encrypted +#: ../cache/locales.php:118 ../cache/locales.php:138 msgid "Encrypted message" msgstr "Message chiffré" -#: [message]composing [chats]composing +#: ../cache/locales.php:119 msgid "Composing..." msgstr "Rédige..." -#: [message]paused [chats]paused +#: ../cache/locales.php:120 msgid "Paused..." msgstr "En pause…" -#: [message]gone +#: ../cache/locales.php:121 msgid "Contact gone" msgstr "Le contact est absent pour le moment" -#: [chat]attention +#: ../cache/locales.php:122 +#, php-format msgid "%s needs your attention" msgstr "%s a besoin de votre attention" -#: [chat]placeholder +#: ../cache/locales.php:123 msgid "Your message here..." msgstr "Votre message ici…" -#: [chat]smileys +#: ../cache/locales.php:124 msgid "Smileys" msgstr "Émoticônes" -#: [chat]empty_title [button]chat +#: ../cache/locales.php:125 ../cache/locales.php:139 msgid "Chat" msgstr "Clavardage" -#: [chat]empty_text +#: ../cache/locales.php:126 msgid "Discuss with your contacts" msgstr "Discuter avec vos contacts" -#: [chat]frequent [chats]frequent -msgid "Frequent contacts" -msgstr "Contacts fréquent" - -#: [chatroom]members +#: ../cache/locales.php:127 msgid "Members" msgstr "Membres" -#: [chatroom]connected [chatrooms]connected +#: ../cache/locales.php:128 ../cache/locales.php:376 msgid "Connected to the chatroom" msgstr "Connecté au salon" -#: [chatroom]disconnected [chatrooms]disconnected +#: ../cache/locales.php:129 ../cache/locales.php:377 msgid "Disconnected from the chatroom" msgstr "Déconnecté du salon" -#: [chatroom]config [group]configuration [page]configuration +#: ../cache/locales.php:130 ../cache/locales.php:200 ../cache/locales.php:469 msgid "Configuration" msgstr "Configuration" -#: [chatroom]config_saved +#: ../cache/locales.php:131 msgid "Configuration saved" msgstr "Configuration enregistrée" -#: [chatroom]subject +#: ../cache/locales.php:132 msgid "Subject" msgstr "Sujet" -#: [chatroom]subject_changed +#: ../cache/locales.php:133 msgid "Subject changed" msgstr "Sujet mis à jour" -#: [chats]empty_title -#, fuzzy -msgid "No chats yet..." -msgstr "Pas de commentaires pour le moment" +#: ../cache/locales.php:134 +msgid "Open a new conversation by clicking on the plus button bellow" +msgstr "" +"Commencez une nouvelle conversation en cliquant sur le bouton plus ci-dessous" -#: [chats]empty -#, fuzzy -msgid "Open a new conversation by clicking on the plus button bellow or visit the Contacts page." -msgstr "Commencez une nouvelle conversation en cliquant sur le bouton plus ci-dessous" - -#: [chats]add +#: ../cache/locales.php:135 msgid "Chat with a contact" msgstr "Discuter avec un contact" -#: [chats]more +#: ../cache/locales.php:136 +msgid "Frequent contacts" +msgstr "Contacts fréquent" + +#: ../cache/locales.php:137 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" - -#: [config]general +#: ../cache/locales.php:140 msgid "General" msgstr "Paramètres généraux" -#: [config]language +#: ../cache/locales.php:141 msgid "Language" msgstr "Langue" -#: [config]roster +#: ../cache/locales.php:142 msgid "Roster display" msgstr "Affichage de la liste de contact" -#: [config]roster_show +#: ../cache/locales.php:143 msgid "Show the offline contacts" msgstr "Afficher les contacts hors ligne" -#: [config]roster_hide +#: ../cache/locales.php:144 msgid "Hide the offline contacts" msgstr "Cacher les contacts hors ligne" -#: [config]appearence +#: ../cache/locales.php:145 msgid "Appearence" msgstr "Apparence" -#: [config]info -#, fuzzy -msgid "This configuration is shared wherever you are connected" +#: ../cache/locales.php:146 +msgid "This configuration is shared wherever you are connected !" msgstr "Cette configuration est partagée partout où vous vous connectez !" -#: [notifications]message +#: ../cache/locales.php:148 msgid "Notify on incoming message" msgstr "Notifier lors d’un message entrant" -#: [notifications]desktop +#: ../cache/locales.php:149 msgid "Use desktop notifications" msgstr "Utiliser les notifications bureau" -#: [general]legend [general]general_title +#: ../cache/locales.php:150 +msgid "Data" +msgstr "Données" + +#: ../cache/locales.php:151 +msgid "Cache" +msgstr "Cache" + +#: ../cache/locales.php:152 ../cache/locales.php:218 ../cache/locales.php:466 +msgid "Contacts" +msgstr "Contacts" + +#: ../cache/locales.php:153 ../cache/locales.php:480 +msgid "Posts" +msgstr "Billets" + +#: ../cache/locales.php:154 +msgid "Messages" +msgstr "Messages" + +#: ../cache/locales.php:155 ../cache/locales.php:423 msgid "General Informations" msgstr "Informations générales" -#: [general]name [public_groups]name [chatrooms]name -msgid "Name" -msgstr "Nom" - -#: [general]date_of_birth +#: ../cache/locales.php:158 ../cache/locales.php:427 msgid "Date of Birth" msgstr "Date de naissance" -#: [general]gender +#: ../cache/locales.php:159 ../cache/locales.php:428 msgid "Gender" msgstr "Sexe" -#: [general]marital +#: ../cache/locales.php:160 ../cache/locales.php:429 msgid "Marital Status" msgstr "Situation familiale" -#: [general]email +#: ../cache/locales.php:161 ../cache/locales.php:426 msgid "Email" msgstr "Courriel" -#: [general]website +#: ../cache/locales.php:162 ../cache/locales.php:430 msgid "Website" msgstr "Site web" -#: [general]about +#: ../cache/locales.php:163 ../cache/locales.php:431 msgid "About Me" msgstr "À propos de moi" -#: [general]accounts +#: ../cache/locales.php:164 msgid "Other Accounts" msgstr "Autres comptes" -#: [general]tune +#: ../cache/locales.php:165 msgid "Is Listening" msgstr "En écoute" -#: [position]legend [position]position_title +#: ../cache/locales.php:166 ../cache/locales.php:432 msgid "Geographic Position" msgstr "Position géographique" -#: [position]locality +#: ../cache/locales.php:167 ../cache/locales.php:433 msgid "Locality" msgstr "Ville" -#: [position]country +#: ../cache/locales.php:168 ../cache/locales.php:434 msgid "Country" msgstr "Pays" -#: [mood]title +#: ../cache/locales.php:169 msgid "Mood" msgstr "Humeur" -#: [mood]im +#: ../cache/locales.php:170 msgid "I'm " msgstr "Je suis " -#: [listen]title +#: ../cache/locales.php:171 msgid "Listening" msgstr "En écoute" -#: [last]title +#: ../cache/locales.php:173 msgid "Last seen" msgstr "Dernière apparition" -#: [client]title +#: ../cache/locales.php:174 msgid "Client Informations" msgstr "Informations sur le client" -#: [explore]last_registered +#: ../cache/locales.php:175 msgid "Last registered" msgstr "Dernier enregistré" -#: [explore]explore +#: ../cache/locales.php:176 msgid "Find some new friends" msgstr "Cherche de nouveaux amis" -#: [edit]title [button]edit +#: ../cache/locales.php:177 ../cache/locales.php:533 msgid "Edit" msgstr "Modifier" -#: [edit]alias +#: ../cache/locales.php:178 msgid "Alias" msgstr "Alias" -#: [edit]group +#: ../cache/locales.php:179 msgid "Group" msgstr "Groupe" -#: [edit]updated [roster]updated +#: ../cache/locales.php:180 ../cache/locales.php:400 msgid "Contact updated" msgstr "Contact mis à jour" -#: [delete]title +#: ../cache/locales.php:181 msgid "Are you sure?" msgstr "Êtes-vous sûr ?" -#: [delete]text -msgid "You are going to delete one of your contacts, please confirm your action" -msgstr "Vous allez supprimer l’un de vos contacts, confirmez s’il vous plaît." +#: ../cache/locales.php:182 +msgid "" +"You are going to delete one of your contacts, please confirm your action" +msgstr "" +"Vous allez supprimer l’un de vos contacts, confirmez s’il vous plaît." -#: [age]years +#: ../cache/locales.php:183 +#, php-format msgid "%s years" msgstr "%s ans" -#: [blog]last +#: ../cache/locales.php:184 msgid "Last public post" msgstr "Derniers billets public" -#: [subscription]to -#, fuzzy -msgid "You can see this contact status" -msgstr "Pas de flux public pour ce contact" - -#: [subscription]to_button -msgid "Share my status" -msgstr "" - -#: [subscription]to_text -msgid "But this contact cannot see yours" -msgstr "" - -#: [subscription]from -#, fuzzy -msgid "You are not subscribed to this contact" -msgstr "Vous allez vous désinscrire de ce Groupe." - -#: [subscription]from_button -#, fuzzy -msgid "Ask to subscribe" -msgstr "%s souscrits" - -#: [subscription]from_text -msgid "But this contact can still see if you are online" -msgstr "" - -#: [subscription]nil -#, fuzzy -msgid "No subscriptions" -msgstr "Abonnements" - -#: [subscription]nil_button -msgid "Invite" -msgstr "" - -#: [subscription]nil_text -msgid "This contact is in your contact list but there is no subscriptions between the two accounts" -msgstr "" - -#: [group]subscribe +#: ../cache/locales.php:185 msgid "Subscribe" msgstr "S’abonner" -#: [group]subscribed +#: ../cache/locales.php:186 msgid "Subscribed" msgstr "Abonné" -#: [group]unsubscribe +#: ../cache/locales.php:187 msgid "Unsubscribe" msgstr "Se désabonner" -#: [group]unsubscribe_text +#: ../cache/locales.php:188 msgid "You are going to unsubscribe from this Group" msgstr "Vous allez vous désinscrire de ce Groupe." -#: [group]unsubscribed +#: ../cache/locales.php:189 msgid "Unsubscribed" msgstr "Désinscrit(e)" -#: [group]share_label +#: ../cache/locales.php:190 msgid "Make your membership to this group public to your friends" msgstr "Partagez votre adhésion à ce groupe avec vos amis" -#: [group]label_label +#: ../cache/locales.php:191 msgid "Give a label for this group" msgstr "Donnez un nom personnalisé pour ce Groupe" -#: [group]sure +#: ../cache/locales.php:192 msgid "Are you sure ?" msgstr "Êtes-vous sûr ?" -#: [group]empty_text +#: ../cache/locales.php:194 msgid "Discover, follow and share" msgstr "Découvrire, suivre et partager" -#: [group]empty +#: ../cache/locales.php:195 msgid "Something bad happened to this group" msgstr "Ce groupe ne semble pas disponible pour le moment" -#: [group]config_saved +#: ../cache/locales.php:196 msgid "Group configuration saved" msgstr "Configuration du groupe sauvegardée" -#: [group]delete_title +#: ../cache/locales.php:197 msgid "Delete the group" msgstr "Supprimer ce groupe" -#: [group]delete_text -msgid "You are going to delete the following group. Please confirm your action." +#: ../cache/locales.php:198 +msgid "" +"You are going to delete the following group. Please confirm your action." msgstr "Vous allez supprimer ce groupe. Veuillez confirmer votre action." -#: [group]delete_clean_text -msgid "It seems that this group doesn't exists anymore. Do you want to remove it from your subscriptions?" -msgstr "Il semblerait que que groupe n'existe plus. Souhaitez-vous le supprimer de vos favoris?" - -#: [group]counter -msgid "%s groups on this server" +#: ../cache/locales.php:199 +msgid "" +"It seems that this group doesn't exists anymore. Do you want to remove it " +"from your subscriptions?" msgstr "" +"Il semblerait que que groupe n'existe plus. Souhaitez-vous le supprimer de " +"vos favoris?" -#: [group]subscriptions [statistics]subscriptions +#: ../cache/locales.php:201 ../cache/locales.php:408 msgid "Subscriptions" msgstr "Abonnements" -#: [group]servers -#, fuzzy -msgid "Groups servers" -msgstr "Groupes" - -#: [group]search_server -msgid "Search for a new server" -msgstr "" - -#: [group]help_info1 -msgid "Groups are the perfect way to share posts about topics that you like with all the other Movim's users." -msgstr "" - -#: [group]help_info2 -msgid "Choose a server and a Group and subscribe to it using the %s button in the header. You can also create a new one using the %s button." -msgstr "" - -#: [group]help_info3 -msgid "Done? You can now publish a new post in the Group by using the %s button." -msgstr "" - -#: [group]help_info4 -msgid "You will find a list of all your subscribed Groups in My Subscriptions and receive instantly all the new incoming posts in the %sNews%s page." -msgstr "" - -#: [groups]empty_title +#: ../cache/locales.php:202 ../cache/locales.php:290 msgid "Hello" msgstr "Salut" -#: [groups]contact_post [hello]contact_post [menu]contact_post +#: ../cache/locales.php:203 ../cache/locales.php:225 ../cache/locales.php:291 msgid "Contact post" msgstr "Billet d’un contact" -#: [groups]empty_text1 -msgid "You don't have any subscriptions yet, select a group server above to start exploring." -msgstr "Vous n'avez souscrit à aucun groupe pour le moment, choisissez un serveur de groupes ci-dessous et commencer à explorer." +#: ../cache/locales.php:204 +msgid "" +"You don't have any subscriptions yet, select a group server above to start " +"exploring." +msgstr "" +"Vous n'avez souscrit à aucun groupe pour le moment, choisissez un serveur de " +"groupes ci-dessous et commencer à explorer." -#: [groups]empty_text2 +#: ../cache/locales.php:205 msgid "Subscribe to your favorite feeds by bookmarking them." msgstr "Souscrivez à vos groupes favorits en les mettant en favoris." -#: [groups]subscriptions +#: ../cache/locales.php:206 msgid "My Subscriptions" msgstr "Mes Souscriptions" -#: [groups]add +#: ../cache/locales.php:207 msgid "Create a new Group" msgstr "Créer un nouveau Groupe" -#: [groups]name +#: ../cache/locales.php:208 msgid "Group name" msgstr "Nom du Groupe" -#: [groups]name_example +#: ../cache/locales.php:209 msgid "My Little Pony - Fan Club" msgstr "Mon Petit Poney – Fan-club" -#: [groups]created +#: ../cache/locales.php:210 msgid "Group created successfully" msgstr "Groupe créé avec succès" -#: [groups]deleted +#: ../cache/locales.php:211 msgid "Group deleted successfully" msgstr "Groupe supprimé avec succès" -#: [groups]name_error +#: ../cache/locales.php:212 msgid "Please provide a valid group name (4 characters minimum)" msgstr "" -#: [groups]no_creation +#: ../cache/locales.php:213 msgid "You cannot create a new Group on this server" msgstr "" -#: [groups]sub +#: ../cache/locales.php:214 +#, php-format msgid "%s subscribers" msgstr "%s souscrits" -#: [groups]num +#: ../cache/locales.php:215 +#, php-format msgid "%s posts" msgstr "%s billets" -#: [groups]disco_error -#, fuzzy -msgid "This server doesn't exists" -msgstr "Ce serveur héberge %s comptes" - -#: [menu]all +#: ../cache/locales.php:216 msgid "All" msgstr "Tous" -#: [menu]refresh +#: ../cache/locales.php:219 msgid "Refresh all the streams" msgstr "Rafraîchir tous les flux" -#: [roster]search -#, fuzzy -msgid "Search in your contacts" -msgstr "Discuter avec vos contacts" - -#: [hello]active_contacts -#, fuzzy -msgid "Active contacts" -msgstr "Vos contacts" - -#: [hello]chat -msgid "Go on the Chat page" -msgstr "Aller sur la page Discussions" - -#: [hello]news [page]news -msgid "News" -msgstr "Actualité" - -#: [hello]news_page -msgid "Read all theses articles on the News page" -msgstr "Lire tous ces articles sur la page Actualité" - -#: [hello]blog_title -msgid "Visit your public blog" -msgstr "Aller sur votre blog publique" - -#: [hello]blog_text -msgid "See your public posts and share them with all your contacts" -msgstr "Voir vos billets publics et les partager avec tous vos contacts" - -#: [hello]share_title -msgid "Universal share button" -msgstr "Bouton partager universel." - -#: [hello]share_text -msgid "Bookmark or drag and drop the following button in your toolbar and use it on all the pages you want to share on Movim" -msgstr "Cliquez-déposez ou mettez en favoris dans votre navigateur le bouton suivant et utilisez le sur toutes les pages que vous voulez partager sur Movim" - -#: [hello]share_button -msgid "Share on Movim" -msgstr "Partager sur Movim" - -#: [help]faq -msgid "Frequently Asked Questions" -msgstr "Foire aux questions" - -#: [banner]title -msgid "What do the little banners refer to ?" -msgstr "À quoi correspondent les petits fanions de l’interface ?" - -#: [banner]info1 -msgid "Thanks to these five little banners, you can quickly identitfy the level of confdentiality applied to the information you provide." -msgstr "Ces 5 petits fanions vous permettent, en un coup d’œil, de connaitre la confidentialité des données que vous publiez." - -#: [banner]white -msgid "White, only you can see the information" -msgstr "Blanc, les données ne sont visibles que par vous-même" - -#: [banner]green -msgid "Green, you have chosen some contacts who can see your information" -msgstr "Vert, les données ne sont visibles que par les contacts choisis" - -#: [banner]orange -msgid "Orange, all your contact list can see your information" -msgstr "Orange, les données sont visibles par toute votre liste de contacts" - -#: [banner]red -msgid "Red, everybody in the XMPP network can see your information" -msgstr "Rouge, les données sont visibles par tout le monde au sein du réseau XMPP" - -#: [banner]black -msgid "Black, the whole Internet can see your information" -msgstr "Noir, les données sont visibles par tout le monde sur internet" - -#: [wiki]question -msgid "Looking for some documentation ?" -msgstr "Vous cherchez de la documentation?" - -#: [wiki]button -msgid "Read the Wiki" -msgstr "Lisez le wiki" - -#: [ml]question -msgid "Talk with us by email ?" -msgstr "Nous contacter par courriel ?" - -#: [ml]button -msgid "Join the Mailing List" -msgstr "Rejoindre la Mailing-list" - -#: [chatroom]question -msgid "Chat with the team ?" -msgstr "Discuter avec l’équipe ?" - -#: [chatroom]button -msgid "Join the Chatroom" -msgstr "Rejoindre le salon de discussion" - -#: [init]location -msgid "Location node created" -msgstr "Nœud de géolocalisation créé" - -#: [init]bookmark -msgid "Bookmark node created" -msgstr "Nœud des signets créé" - -#: [init]vcard4 -msgid "Profile node created" -msgstr "Nœud du profil créé" - -#: [init]avatar -msgid "Avatar node created" -msgstr "Nœud de l’avatar créé" - -#: [init]subscriptions -msgid "Subscriptions node created" -msgstr "Nœud des abonnements créé" - -#: [init]microblog -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 "" - -#: [error]username -msgid "Wrong username" -msgstr "Nom d’utilisateur incorrect" - -#: [error]jid -msgid "Invalid JID" -msgstr "Identifiant Jabber incorrect" - -#: [error]empty_challenge -msgid "Empty Challenge from the server" -msgstr "La paquet Challenge du serveur est vide" - -#: [error]dns -msgid "XMPP Domain error, your account is not a correct Jabber ID" -msgstr "Erreur de domaine XMPP, votre compte n’est pas un identifiant Jabber correct" - -#: [error]data_missings -msgid "Some data are missing !" -msgstr "Il manque des informations !" - -#: [error]wrong_password -msgid "Wrong password" -msgstr "Mot de passe incorrect" - -#: [error]internal -msgid "Internal server error" -msgstr "Erreur interne du serveur" - -#: [error]session -msgid "Session error" -msgstr "Erreur de session" - -#: [error]account_created -msgid "Account successfully created" -msgstr "Compte créé avec succès" - -#: [error]xmpp_unauthorized -#, fuzzy -msgctxt "[error]xmpp_unauthorized" -msgid "Your XMPP server is unauthorized" -msgstr "Votre compte XMPP n’est pas autorisé à se connecter" - -#: [error]mec_error -msgid "The server takes too much time to respond" -msgstr "Le serveur met trop de temps à répondre" - -#: [error]too_old -msgid "Your web browser is too old to use with Movim." -msgstr "Votre navigateur est trop vieux pour prendre en charge Movim" - -#: [error]websocket -msgid "Movim cannot talk with the server, please try again later (Websocket connection error)" -msgstr "Movim ne peut pas communiquer avec le serveur, veuillez réessayer plus tard (erreur de connexion WebSocket)" - -#: [error]impossible -msgid "Impossible login" -msgstr "Authentification impossible" - -#: [error]title -msgid "Oops!" -msgstr "Oups !" - -#: [error]default [visio]unknown_error -msgid "Unknown error" -msgstr "Erreur inconnue" - -#: [error]login_format -msgid "Invalid username format" -msgstr "Le format de l'identifiant n'est pas correct" - -#: [error]password_format -msgid "Invalid password format" -msgstr "Mot de passe non valide" - -#: [error]unauthorized -#, fuzzy -msgctxt "[error]unauthorized" -msgid "Your XMPP server is unauthorized" -msgstr "Votre compte XMPP n’est pas autorisé à se connecter" - -#: [error]conflict -msgid "A Movim session is already open on an other device" -msgstr "Une session Movim est déjà ouverte sur un autre ordinateur." - -#: [error]wrong_account -msgid "Movim failed to authenticate. You entered wrong data" -msgstr "Movim n’a pas pu vous authentifier. Vous avez entré des données erronées." - -#: [error]mechanism -msgid "Authentication mechanism not supported by Movim" -msgstr "Le mécanisme d’authentification n’est pas supporté par Movim" - -#: [error]fail_auth -msgid "The XMPP authentification failed" -msgstr "L’authentification au serveur XMPP a échoué" - -#: [account]title [accounts]accounts_title -msgid "Accounts" -msgstr "Comptes" - -#: [form]username -msgid "My address" -msgstr "Mon adresse" - -#: [form]create_one -msgid "Create one !" -msgstr "Créez-en un !" - -#: [form]another_account -msgid "Another account" -msgstr "Autre compte" - -#: [form]no_account -msgid "No account yet ?" -msgstr "Pas encore de compte ?" - -#: [form]whitelist.info -msgid "You can login with accounts from theses servers" -msgstr "Vous pouvez vous authentifier avec des comptes venant des serveurs suivants" - -#: [form]connected -msgid "Connected" -msgstr "Connecté" - -#: [form]population -msgid "Population" -msgstr "Population" - -#: [menu]empty_title -#, fuzzy -msgid "No news yet..." -msgstr "Pas de commentaires pour le moment" - -#: [menu]empty -#, fuzzy -msgid "Welcome on your news feed, here you will see all the posts published by your contacts and in the groups you have subscribed." -msgstr "Bienvenue sur flux d’actualité, ici vous verrez tous les billets publiés dans les groupes auxquels vous vous êtes abonnés." - -#: [menu]refresh -msgid "Refreshing all the streams" -msgstr "Rafraîchir tous les flux" - -#: [menu]public -msgid "This post is public" -msgstr "Ce billet est public" - -#: [affiliations]title -msgid "Manage your members" -msgstr "Gérer vos membres" - -#: [affiliations]get -msgid "Get the members" -msgstr "Récupérer les membres" - -#: [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" - -#: [notifs]title -msgid "Pending Invitations" -msgstr "Invitations en attente" - -#: [notifs]wants_to_talk -msgid "%s wants to talk with you" -msgstr "%s veut parler avec vous" - -#: [notifs]manage -msgid "Manage" -msgstr "Gérer" - -#: [post]news_feed -msgid "News Feed" -msgstr "Fil d’actualité" - -#: [post]placeholder -msgid "Discover and register to the groups you are interested in" -msgstr "Découvrez et rejoignez les groupes qui vous intéressent" - -#: [post]preview [page]preview -msgid "Preview" -msgstr "Aperçu" - -#: [post]help [page]help -msgid "Help" -msgstr "Aide" - -#: [post]help_more -msgid "More help" -msgstr "Aide supplémentaire" - -#: [post]help_manual -msgid "Markdown syntax manual" -msgstr "Manuel d'utilisation de la syntaxe Markdown" - -#: [post]title -msgid "Title" -msgstr "Titre" - -#: [post]content -msgid "Content" -msgstr "Contenu" - -#: [post]link -msgid "Link" -msgstr "Lien" - -#: [post]tags -msgid "Tags" -msgstr "Étiquettes" - -#: [post]valid_url [publish]valid_url -msgid "Please enter a valid url" -msgstr "Veuillez entrer une URL valide" - -#: [post]no_content_preview [publish]no_content_preview -msgid "No content to preview" -msgstr "Pas de contenu à afficher" - -#: [post]no_content [publish]no_content [post]empty -msgid "No content" -msgstr "Aucun contenu" - -#: [post]published -msgid "Post published" -msgstr "Bilet publié" - -#: [post]deleted -msgid "Post deleted" -msgstr "Billet effacé" - -#: [post]gallery -msgid "This picture will be added to your gallery" -msgstr "Cette image va être ajoutée à votre galerie" - -#: [post]hot -msgid "What's Hot" -msgstr "Quoi de neuf" - -#: [post]hot_text -msgid "Posts recently published in Groups that you are not subscribed (yet)" -msgstr "" - -#: [post]new [publish]new -msgid "New post" -msgstr "Nouveau billet" - -#: [post]embed_tip -msgid "You can also use services like Imgur or Flickr to host your picture and paste the link here." -msgstr "Vous pouvez également utiliser des services comme Imgur ou Flickr pour héberger vos images et coller le lien résultant ici." - -#: [post]repost -msgid "This is a re-post from %s" -msgstr "" - -#: [post]repost_profile -msgid "See %s profile" -msgstr "" - -#: [post]public -#, fuzzy -msgid "Publish this post publicly?" -msgstr "Publier ce billet sur votre flux public?" - -#: [post]blog_add -msgid "Post published on your blog" -msgstr "Billet publié sur votre blog" - -#: [post]blog_remove -msgid "Post removed from your blog" -msgstr "Billet retiré de votre blog" - -#: [post]delete_title [post]delete -msgid "Delete this post" -msgstr "Supprimer ce billet" - -#: [post]delete_text -msgid "You are going to delete this post, please confirm your action" -msgstr "Vous allez supprimer ce billet, veuillez confirmer votre action." - -#: [post]comments_disabled -msgid "Comments disabled" -msgstr "Commentaires désactivés." - -#: [post]comment_published -msgid "Comment published" -msgstr "Commentaire publié." - -#: [status]disconnect -msgid "Disconnect" -msgstr "Se déconnecter" - -#: [status]here -msgid "Your status here !" -msgstr "Votre statut ici !" - -#: [status]updated -msgid "Status updated" -msgstr "Statut mis à jour" - -#: [status]status -msgid "Status" -msgstr "Statut" - -#: [status]presence -msgid "Presence" -msgstr "Présence" - -#: [status]online -msgid "Online with Movim" -msgstr "" - -#: [publish]title -msgid "Publish" -msgstr "" - -#: [publish]attach -msgid "Add a file or a picture to your post" -msgstr "" - -#: [publish]no_publication -msgid "You cannot publish a post on this Group" -msgstr "" - -#: [publish]form_filled -msgid "Some fields have been filled in. Do you still want to go back and loose their content?" -msgstr "" - -#: [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" - -#: [rooms]empty_text1 -msgid "You don't have any chatroom yet." -msgstr "Vous n'avez pas encore de salon de discussions." - -#: [rooms]empty_text2 -msgid "Add one by clicking on the add button in the header." -msgstr "Ajoutez en un en cliquant sur le bouton plus dans l'entête." - -#: [chatrooms]title -msgid "Chatrooms" -msgstr "Salons de discussion" - -#: [chatrooms]name_placeholder -msgid "My Favorite Room" -msgstr "Mon salon préféré" - -#: [chatrooms]users -msgid "Users in the room" -msgstr "Utilisateurs du salon" - -#: [chatrooms]bad_nickname -msgid "Please enter a correct nickname (2 to 40 characters)" -msgstr "" - -#: [room]anonymous_title -msgid "Public chatroom" -msgstr "" - -#: [room]no_room -msgid "Please provide a room address" -msgstr "" - -#: [room]anonymous_text1 -msgid "You are currently logued as an anonymous user." -msgstr "" - -#: [room]anonymous_text2 -msgid "You can join using your own account or create one on the login page by loging out using the cross in the top-right corner." -msgstr "" - -#: [room]anonymous_login -msgid "Login on %s" -msgstr "" - -#: [room]nick -msgid "Your nickname" -msgstr "" - -#: [roster]ungrouped -msgid "Ungrouped" -msgstr "Dégroupé" - -#: [roster]show_disconnected -msgid "Show disconnected contacts" -msgstr "Afficher les contacts déconnectés" - -#: [roster]hide_disconnected -msgid "Hide disconnected contacts" -msgstr "Masquer les contacts déconnectés" - -#: [roster]show_group -msgid "Show group %s" -msgstr "Groupe %s affiché" - -#: [roster]hide_group -msgid "Hide group %s" -msgstr "Groupe %s caché" - -#: [roster]jid_error -msgid "Please enter a valid Jabber ID" -msgstr "Veuillez entrer un identifiant Jabber valide" - -#: [roster]no_contacts_title -#, fuzzy -msgid "No contacts ?" -msgstr "Vos contacts" - -#: [roster]no_contacts_text -#, fuzzy -msgid "You can add one using the + button bellow" -msgstr "Pas de contacts ? Vous pouvez en ajouter un en cliquant sur le bouton + ci-dessous ou aller sur la page Explorer" - -#: [roster]show_hide -msgid "Show/Hide" -msgstr "Afficher / Masquer" - -#: [roster]add_contact_info1 -msgid "Enter the Jabber ID of your contact." -msgstr "Entrez l’identifiant Jabber de votre contact." - -#: [roster]add_contact_info2 -msgid "Press enter to validate." -msgstr "Appuyez sur entrer pour valider." - -#: [roster]jid -msgid "JID" -msgstr "Identifiant Jabber" - -#: [roster]results -msgid "Results" -msgstr "Résultats" - -#: [roster]added -msgid "Contact added" -msgstr "Contact ajouté" - -#: [roster]deleted -msgid "Contact deleted" -msgstr "Contact supprimé" - -#: [roster]search +#: ../cache/locales.php:220 ../cache/locales.php:402 msgid "Search" msgstr "Rechercher" -#: [share]error +#: ../cache/locales.php:221 +msgid "Go on the Chat page" +msgstr "Aller sur la page Discussions" + +#: ../cache/locales.php:222 +msgid "Read all theses articles on the News page" +msgstr "Lire tous ces articles sur la page Actualité" + +#: ../cache/locales.php:223 +msgid "Visit your public blog" +msgstr "Aller sur votre blog publique" + +#: ../cache/locales.php:224 +msgid "See your public posts and share them with all your contacts" +msgstr "Voir vos billets publics et les partager avec tous vos contacts" + +#: ../cache/locales.php:226 +msgid "Universal share button" +msgstr "Bouton partager universel." + +#: ../cache/locales.php:227 +msgid "" +"Bookmark or drag and drop the following button in your toolbar and use it on " +"all the pages you want to share on Movim" +msgstr "" +"Cliquez-déposez ou mettez en favoris dans votre navigateur le bouton suivant " +"et utilisez le sur toutes les pages que vous voulez partager sur Movim" + +#: ../cache/locales.php:228 +msgid "Share on Movim" +msgstr "Partager sur Movim" + +#: ../cache/locales.php:229 +msgid "Frequently Asked Questions" +msgstr "Foire aux questions" + +#: ../cache/locales.php:230 +msgid "What do the little banners refer to ?" +msgstr "À quoi correspondent les petits fanions de l’interface ?" + +#: ../cache/locales.php:231 +msgid "" +"Thanks to these five little banners, you can quickly identitfy the level of " +"confdentiality applied to the information you provide." +msgstr "" +"Ces 5 petits fanions vous permettent, en un coup d’œil, de connaitre la " +"confidentialité des données que vous publiez." + +#: ../cache/locales.php:232 +msgid "White, only you can see the information" +msgstr "Blanc, les données ne sont visibles que par vous-même" + +#: ../cache/locales.php:233 +msgid "Green, you have chosen some contacts who can see your information" +msgstr "Vert, les données ne sont visibles que par les contacts choisis" + +#: ../cache/locales.php:234 +msgid "Orange, all your contact list can see your information" +msgstr "Orange, les données sont visibles par toute votre liste de contacts" + +#: ../cache/locales.php:235 +msgid "Red, everybody in the XMPP network can see your information" +msgstr "" +"Rouge, les données sont visibles par tout le monde au sein du réseau XMPP" + +#: ../cache/locales.php:236 +msgid "Black, the whole Internet can see your information" +msgstr "Noir, les données sont visibles par tout le monde sur internet" + +#: ../cache/locales.php:237 +msgid "Looking for some documentation ?" +msgstr "Vous cherchez de la documentation?" + +#: ../cache/locales.php:238 +msgid "Read the Wiki" +msgstr "Lisez le wiki" + +#: ../cache/locales.php:239 +msgid "Talk with us by email ?" +msgstr "Nous contacter par courriel ?" + +#: ../cache/locales.php:240 +msgid "Join the Mailing List" +msgstr "Rejoindre la Mailing-list" + +#: ../cache/locales.php:241 +msgid "Chat with the team ?" +msgstr "Discuter avec l’équipe ?" + +#: ../cache/locales.php:242 +msgid "Join the Chatroom" +msgstr "Rejoindre le salon de discussion" + +#: ../cache/locales.php:243 +msgid "Location node created" +msgstr "Nœud de géolocalisation créé" + +#: ../cache/locales.php:244 +msgid "Bookmark node created" +msgstr "Nœud des signets créé" + +#: ../cache/locales.php:245 +msgid "Profile node created" +msgstr "Nœud du profil créé" + +#: ../cache/locales.php:246 +msgid "Avatar node created" +msgstr "Nœud de l’avatar créé" + +#: ../cache/locales.php:247 +msgid "Subscriptions node created" +msgstr "Nœud des abonnements créé" + +#: ../cache/locales.php:248 +msgid "Microblog node created" +msgstr "Nœud du microblog créé" + +#: ../cache/locales.php:249 +msgid "Location" +msgstr "Position" + +#: ../cache/locales.php:250 +msgid "Wrong position" +msgstr "Mauvaise position" + +#: ../cache/locales.php:251 +msgid "Location updated" +msgstr "Position géographique mise à jour" + +#: ../cache/locales.php:252 +msgid "Update my position" +msgstr "Mettre à jour ma position" + +#: ../cache/locales.php:253 +msgid "Wrong username" +msgstr "Nom d’utilisateur incorrect" + +#: ../cache/locales.php:254 +msgid "Invalid JID" +msgstr "Identifiant Jabber incorrect" + +#: ../cache/locales.php:255 +msgid "Empty Challenge from the server" +msgstr "La paquet Challenge du serveur est vide" + +#: ../cache/locales.php:256 +msgid "XMPP Domain error, your account is not a correct Jabber ID" +msgstr "" +"Erreur de domaine XMPP, votre compte n’est pas un identifiant Jabber correct" + +#: ../cache/locales.php:257 +msgid "Some data are missing !" +msgstr "Il manque des informations !" + +#: ../cache/locales.php:258 +msgid "Wrong password" +msgstr "Mot de passe incorrect" + +#: ../cache/locales.php:259 +msgid "Internal server error" +msgstr "Erreur interne du serveur" + +#: ../cache/locales.php:260 +msgid "Session error" +msgstr "Erreur de session" + +#: ../cache/locales.php:261 +msgid "Account successfully created" +msgstr "Compte créé avec succès" + +#: ../cache/locales.php:262 ../cache/locales.php:271 +msgid "Your XMPP server is unauthorized" +msgstr "Votre compte XMPP n’est pas autorisé à se connecter" + +#: ../cache/locales.php:263 +msgid "The server takes too much time to respond" +msgstr "Le serveur met trop de temps à répondre" + +#: ../cache/locales.php:264 +msgid "Your web browser is too old to use with Movim." +msgstr "Votre navigateur est trop vieux pour prendre en charge Movim" + +#: ../cache/locales.php:265 +msgid "" +"Movim cannot talk with the server, please try again later (Websocket " +"connection error)" +msgstr "" +"Movim ne peut pas communiquer avec le serveur, veuillez réessayer plus tard " +"(erreur de connexion WebSocket)" + +#: ../cache/locales.php:266 +msgid "Impossible login" +msgstr "Authentification impossible" + +#: ../cache/locales.php:267 +msgid "Oops!" +msgstr "Oups !" + +#: ../cache/locales.php:268 ../cache/locales.php:449 ../cache/locales.php:455 +msgid "Unknown error" +msgstr "Erreur inconnue" + +#: ../cache/locales.php:269 +msgid "Invalid username format" +msgstr "Le format de l'identifiant n'est pas correct" + +#: ../cache/locales.php:270 +msgid "Invalid password format" +msgstr "Mot de passe non valide" + +#: ../cache/locales.php:272 +msgid "A Movim session is already open on an other device" +msgstr "Une session Movim est déjà ouverte sur un autre ordinateur." + +#: ../cache/locales.php:273 +msgid "Movim failed to authenticate. You entered wrong data" +msgstr "" +"Movim n’a pas pu vous authentifier. Vous avez entré des données erronées." + +#: ../cache/locales.php:274 +msgid "Authentication mechanism not supported by Movim" +msgstr "Le mécanisme d’authentification n’est pas supporté par Movim" + +#: ../cache/locales.php:275 +msgid "The XMPP authentification failed" +msgstr "L’authentification au serveur XMPP a échoué" + +#: ../cache/locales.php:276 +#, php-format +msgid "" +"You can login with Facebook (chat only) using %syour.id@chat.facebook.com%s " +"and your password" +msgstr "" +"Vous pouvez vous connecter avec Facebook (messagerie instantanée uniquement) " +"en entrant %svotre.id@chat.facebook.com%s et votre mot de passe" + +#: ../cache/locales.php:277 +#, php-format +msgid "%sGmail accounts are also compatible%s but are not fully supported" +msgstr "" +"%sLes comptes Gmail sont aussi compatibles%s mais ne sont pas complètement " +"pris en charge" + +#: ../cache/locales.php:278 +msgid "You can login using your favorite Jabber account" +msgstr "Vous pouvez vous connecter avec votre compte Jabber favori" + +#: ../cache/locales.php:279 +msgid "or with our demonstration account" +msgstr "ou avec notre compte de démonstration" + +#: ../cache/locales.php:280 ../cache/locales.php:435 +msgid "Accounts" +msgstr "Comptes" + +#: ../cache/locales.php:281 +msgid "My address" +msgstr "Mon adresse" + +#: ../cache/locales.php:283 +msgid "Create one !" +msgstr "Créez-en un !" + +#: ../cache/locales.php:284 +msgid "No account yet ?" +msgstr "Pas encore de compte ?" + +#: ../cache/locales.php:285 +msgid "Another account" +msgstr "Autre compte" + +#: ../cache/locales.php:286 +msgid "You can login with accounts from theses servers" +msgstr "" +"Vous pouvez vous authentifier avec des comptes venant des serveurs suivants" + +#: ../cache/locales.php:287 +msgid "Connected" +msgstr "Connecté" + +#: ../cache/locales.php:288 +msgid "Population" +msgstr "Population" + +#: ../cache/locales.php:289 +msgid "Bad nickname (between 4 and 40 characters)" +msgstr "" + +#: ../cache/locales.php:292 +msgid "" +"Welcome on your news feed, here you will see all the posts published in the " +"groups you have subscribed." +msgstr "" +"Bienvenue sur flux d’actualité, ici vous verrez tous les billets publiés " +"dans les groupes auxquels vous vous êtes abonnés." + +#: ../cache/locales.php:293 +msgid "Refreshing all the streams" +msgstr "Rafraîchir tous les flux" + +#: ../cache/locales.php:294 +msgid "This post is public" +msgstr "Ce billet est public" + +#: ../cache/locales.php:295 +msgid "Manage your members" +msgstr "Gérer vos membres" + +#: ../cache/locales.php:296 +msgid "Get the members" +msgstr "Récupérer les membres" + +#: ../cache/locales.php:297 +msgid "Affiliations saved" +msgstr "Affiliations sauvegardées" + +#: ../cache/locales.php:298 +msgid "Manage your subscriptions" +msgstr "Gérer vos abonnements" + +#: ../cache/locales.php:299 +msgid "Manage the subscriptions" +msgstr "Gérer les abonnements" + +#: ../cache/locales.php:300 +msgid "Get the subscriptions" +msgstr "Récupérer les abonnements" + +#: ../cache/locales.php:301 +msgid "Subscriptions saved" +msgstr "Abonnements sauvegardés" + +#: ../cache/locales.php:302 +msgid "Pending Invitations" +msgstr "Invitations en attente" + +#: ../cache/locales.php:303 +#, php-format +msgid "%s wants to talk with you" +msgstr "%s veut parler avec vous" + +#: ../cache/locales.php:304 +msgid "Manage" +msgstr "Gérer" + +#: ../cache/locales.php:305 ../cache/locales.php:338 +msgid "News Feed" +msgstr "Fil d’actualité" + +#: ../cache/locales.php:306 ../cache/locales.php:339 +msgid "Discover and register to the groups you are interested in" +msgstr "Découvrez et rejoignez les groupes qui vous intéressent" + +#: ../cache/locales.php:307 ../cache/locales.php:340 ../cache/locales.php:482 +msgid "Preview" +msgstr "Aperçu" + +#: ../cache/locales.php:308 ../cache/locales.php:341 ../cache/locales.php:478 +msgid "Help" +msgstr "Aide" + +#: ../cache/locales.php:309 ../cache/locales.php:342 +msgid "More help" +msgstr "Aide supplémentaire" + +#: ../cache/locales.php:310 ../cache/locales.php:343 +msgid "Markdown syntax manual" +msgstr "Manuel d'utilisation de la syntaxe Markdown" + +#: ../cache/locales.php:311 ../cache/locales.php:344 ../cache/locales.php:681 +msgid "Title" +msgstr "Titre" + +#: ../cache/locales.php:312 ../cache/locales.php:345 +msgid "Content" +msgstr "Contenu" + +#: ../cache/locales.php:313 ../cache/locales.php:346 +msgid "Link" +msgstr "Lien" + +#: ../cache/locales.php:314 ../cache/locales.php:347 +msgid "Tags" +msgstr "Étiquettes" + +#: ../cache/locales.php:315 ../cache/locales.php:348 +msgid "Please enter a valid url" +msgstr "Veuillez entrer une URL valide" + +#: ../cache/locales.php:316 ../cache/locales.php:349 +msgid "No content to preview" +msgstr "Pas de contenu à afficher" + +#: ../cache/locales.php:317 ../cache/locales.php:350 ../cache/locales.php:687 +msgid "No content" +msgstr "Aucun contenu" + +#: ../cache/locales.php:318 ../cache/locales.php:351 +msgid "Post published" +msgstr "Bilet publié" + +#: ../cache/locales.php:319 ../cache/locales.php:352 +msgid "Post deleted" +msgstr "Billet effacé" + +#: ../cache/locales.php:320 ../cache/locales.php:353 +msgid "This picture will be added to your gallery" +msgstr "Cette image va être ajoutée à votre galerie" + +#: ../cache/locales.php:321 ../cache/locales.php:354 +msgid "What's Hot" +msgstr "Quoi de neuf" + +#: ../cache/locales.php:322 ../cache/locales.php:355 +msgid "New post" +msgstr "Nouveau billet" + +#: ../cache/locales.php:323 ../cache/locales.php:357 +msgid "" +"You can also use services like Imgur or Flickr to host your picture and " +"paste the link here." +msgstr "" +"Vous pouvez également utiliser des services comme Imgur ou Flickr pour " +"héberger vos images et coller le lien résultant ici." + +#: ../cache/locales.php:324 +#, php-format +msgid "This is a re-post from %s" +msgstr "" + +#: ../cache/locales.php:325 +#, php-format +msgid "See %s profile" +msgstr "" + +#: ../cache/locales.php:326 +msgid "Publish this post on your public feed?" +msgstr "Publier ce billet sur votre flux public?" + +#: ../cache/locales.php:327 +msgid "Post published on your blog" +msgstr "Billet publié sur votre blog" + +#: ../cache/locales.php:328 +msgid "Post removed from your blog" +msgstr "Billet retiré de votre blog" + +#: ../cache/locales.php:329 ../cache/locales.php:701 +msgid "Delete this post" +msgstr "Supprimer ce billet" + +#: ../cache/locales.php:330 +msgid "You are going to delete this post, please confirm your action" +msgstr "Vous allez supprimer ce billet, veuillez confirmer votre action." + +#: ../cache/locales.php:331 +msgid "Comments disabled" +msgstr "Commentaires désactivés." + +#: ../cache/locales.php:332 +msgid "Comment published" +msgstr "Commentaire publié." + +#: ../cache/locales.php:333 +msgid "Disconnect" +msgstr "Se déconnecter" + +#: ../cache/locales.php:334 +msgid "Your status here !" +msgstr "Votre statut ici !" + +#: ../cache/locales.php:335 +msgid "Status updated" +msgstr "Statut mis à jour" + +#: ../cache/locales.php:336 +msgid "Status" +msgstr "Statut" + +#: ../cache/locales.php:337 +msgid "Presence" +msgstr "Présence" + +#: ../cache/locales.php:356 +msgid "Publish" +msgstr "" + +#: ../cache/locales.php:358 +msgid "You cannot publish a post on this Group" +msgstr "" + +#: ../cache/locales.php:359 +msgid "" +"Some fields have been filled in. Do you still want to go back and loose " +"their content?" +msgstr "" + +#: ../cache/locales.php:360 +msgid "Shared" +msgstr "Partagé" + +#: ../cache/locales.php:362 +#, php-format +msgid "%s has been added to your public groups" +msgstr "%s a été ajouté à vos groupes publics" + +#: ../cache/locales.php:363 +#, php-format +msgid "%s has been removed from your public groups" +msgstr "%s a été supprimé de vos groupes publics" + +#: ../cache/locales.php:364 +msgid "Add a chatroom" +msgstr "Ajouter un salon de discussion" + +#: ../cache/locales.php:365 +msgid "You don't have any chatroom yet." +msgstr "Vous n'avez pas encore de salon de discussions." + +#: ../cache/locales.php:366 +msgid "Add one by clicking on the add button in the header." +msgstr "Ajoutez en un en cliquant sur le bouton plus dans l'entête." + +#: ../cache/locales.php:367 +msgid "Chatrooms" +msgstr "Salons de discussion" + +#: ../cache/locales.php:370 +msgid "My Favorite Room" +msgstr "Mon salon préféré" + +#: ../cache/locales.php:374 +msgid "Remove a chatroom" +msgstr "Enlever un salon de discussion" + +#: ../cache/locales.php:375 +msgid "" +"You are going to remove the following chatroom. Please confirm your action." +msgstr "" +"Vous allez supprimer le salon de discussion suivant de vos signets. " +"Confirmez s’il vous plaît." + +#: ../cache/locales.php:378 +msgid "Users in the room" +msgstr "Utilisateurs du salon" + +#: ../cache/locales.php:379 +msgid "Please enter a correct nickname (6 to 40 characters)" +msgstr "" + +#: ../cache/locales.php:381 +msgid "Public chatroom" +msgstr "" + +#: ../cache/locales.php:382 +msgid "Please provide a room address" +msgstr "" + +#: ../cache/locales.php:383 +msgid "You are currently logued as an anonymous user." +msgstr "" + +#: ../cache/locales.php:384 +msgid "" +"You can join using your own account or create one on the login page by " +"loging out using the cross in the top-right corner." +msgstr "" + +#: ../cache/locales.php:385 +#, php-format +msgid "Login on %s" +msgstr "" + +#: ../cache/locales.php:386 +msgid "Your nickname" +msgstr "" + +#: ../cache/locales.php:387 +msgid "Ungrouped" +msgstr "Dégroupé" + +#: ../cache/locales.php:388 +msgid "Show disconnected contacts" +msgstr "Afficher les contacts déconnectés" + +#: ../cache/locales.php:389 +msgid "Hide disconnected contacts" +msgstr "Masquer les contacts déconnectés" + +#: ../cache/locales.php:390 +#, php-format +msgid "Show group %s" +msgstr "Groupe %s affiché" + +#: ../cache/locales.php:391 +#, php-format +msgid "Hide group %s" +msgstr "Groupe %s caché" + +#: ../cache/locales.php:392 +msgid "Please enter a valid Jabber ID" +msgstr "Veuillez entrer un identifiant Jabber valide" + +#: ../cache/locales.php:393 +msgid "" +"No contacts ? You can add one using the + button bellow or going to the " +"Explore page" +msgstr "" +"Pas de contacts ? Vous pouvez en ajouter un en cliquant sur le bouton + ci-" +"dessous ou aller sur la page Explorer" + +#: ../cache/locales.php:394 +msgid "Show/Hide" +msgstr "Afficher / Masquer" + +#: ../cache/locales.php:395 +msgid "Enter the Jabber ID of your contact." +msgstr "Entrez l’identifiant Jabber de votre contact." + +#: ../cache/locales.php:396 +msgid "Press enter to validate." +msgstr "Appuyez sur entrer pour valider." + +#: ../cache/locales.php:397 +msgid "JID" +msgstr "Identifiant Jabber" + +#: ../cache/locales.php:398 +msgid "Results" +msgstr "Résultats" + +#: ../cache/locales.php:399 +msgid "Contact added" +msgstr "Contact ajouté" + +#: ../cache/locales.php:401 +msgid "Contact deleted" +msgstr "Contact supprimé" + +#: ../cache/locales.php:403 msgid "This is not a valid url" msgstr "Cette URL n'est pas valide" -#: [share]success +#: ../cache/locales.php:404 msgid "Sharing the URL" msgstr "Partage de l'URL" -#: [statistics]title +#: ../cache/locales.php:405 msgid "Statistics" msgstr "Statistiques" -#: [statistics]since +#: ../cache/locales.php:406 msgid "Since" msgstr "Depuis" -#: [statistics]sessions +#: ../cache/locales.php:407 msgid "Sessions" msgstr "Sessions" -#: [statistics]monthly_sub +#: ../cache/locales.php:409 msgid "Monthly Subscriptions" msgstr "Souscriptions par mois" -#: [statistics]monthly_sub_cum +#: ../cache/locales.php:410 msgid "Monthly Subscriptions Cumulated" msgstr "Souscriptions par mois cumulés" -#: [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." +#: ../cache/locales.php:412 +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." -#: [subscribe]server_question +#: ../cache/locales.php:413 msgid "Your server here ?" msgstr "Votre serveur ici ?" -#: [subscribe]server_contact +#: ../cache/locales.php:414 msgid "Contact us to add yours to the officially supported servers list" -msgstr "Contactez-nous pour ajouter le vôtre à la liste des serveurs officiellement pris en charge" +msgstr "" +"Contactez-nous pour ajouter le vôtre à la liste des serveurs officiellement " +"pris en charge" -#: [feed]nope +#: ../cache/locales.php:416 msgid "No public feed for this contact" msgstr "Pas de flux public pour ce contact" -#: [feed]nope_contact +#: ../cache/locales.php:417 msgid "No contact specified" msgstr "Aucun contact indiqué" -#: [upload]title -#, fuzzy -msgid "Upload a file" -msgstr "Téléverser" - -#: [upload]choose -msgid "Choose a file to upload" -msgstr "" - -#: [vcard]title [page]profile +#: ../cache/locales.php:418 ../cache/locales.php:473 msgid "Profile" msgstr "Profil" -#: [vcard]updated +#: ../cache/locales.php:419 msgid "Profile Updated" msgstr "Profil mis à jour" -#: [vcard]not_updated +#: ../cache/locales.php:420 msgid "Profile Not Updated" msgstr "Profil non mis à jour" -#: [vcard]public +#: ../cache/locales.php:421 msgid "Your profile is now public" msgstr "Votre profil est maintenant public" -#: [vcard]restricted +#: ../cache/locales.php:422 msgid "Your profile is now restricted" msgstr "Votre profil est maintenant restreint" -#: [general]nickname -#, fuzzy -msgctxt "[general]nickname" -msgid "Nickname" -msgstr "Pseudonyme" - -#: [accounts]twitter +#: ../cache/locales.php:436 msgid "Twitter" msgstr "Twitter" -#: [accounts]skype +#: ../cache/locales.php:437 msgid "Skype" msgstr "Skype" -#: [accounts]yahoo +#: ../cache/locales.php:438 msgid "Yahoo" msgstr "Yahoo" -#: [accounts]accounts_nickname -#, fuzzy -msgctxt "[accounts]accounts_nickname" -msgid "Nickname" -msgstr "Pseudonyme" - -#: [accounts]accounts_yahoo -#, fuzzy -msgid "Yahoo Account" -msgstr "Compte" - -#: [privacy]privacy_title +#: ../cache/locales.php:439 msgid "Privacy Level" msgstr "Niveau de confidentialité" -#: [privacy]privacy_question +#: ../cache/locales.php:440 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." -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." +#: ../cache/locales.php:441 +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." +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 -msgid "Submit" -msgstr "Envoyer" - -#: [save]reset [button]reset -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 +#: ../cache/locales.php:442 msgid "Call" msgstr "Appeler" -#: [visio]hang_up +#: ../cache/locales.php:443 msgid "Hang up" msgstr "Raccrocher" -#: [visio]connection +#: ../cache/locales.php:444 msgid "Connection" msgstr "Connexion" -#: [global]no_js +#: ../cache/locales.php:445 ../cache/locales.php:451 +msgid "Hung up" +msgstr "Fin d'appel" + +#: ../cache/locales.php:446 ../cache/locales.php:452 +msgid "Your contact is busy" +msgstr "Votre contact est occupé" + +#: ../cache/locales.php:447 ../cache/locales.php:453 +msgid "Declined" +msgstr "Rejeté" + +#: ../cache/locales.php:448 ../cache/locales.php:454 +msgid "Remote application incompatible" +msgstr "L’application distante est incompatible" + +#: ../cache/locales.php:450 ../cache/locales.php:456 +msgid "Is calling you" +msgstr "Vous appelle" + +#: ../cache/locales.php:457 msgid "You don't have javascript enabled. Good luck with that." msgstr "JavaScript est désactivé sur votre navigateur." -#: [global]description -msgid "Movim is a kickass distributed social networking platform that protect your privacy an comes with a set of awesome features." -msgstr "Movim est un réseau social innovant et distribué protégeant votre vie privée et apportant plein de fonctionnalités toutes plus géniales les unes que les autres." +#: ../cache/locales.php:458 +msgid "" +"Movim is a kickass distributed social networking platform that protect your " +"privacy an comes with a set of awesome features." +msgstr "" +"Movim est un réseau social innovant et distribué protégeant votre vie privée " +"et apportant plein de fonctionnalités toutes plus géniales les unes que les " +"autres." -#: [page]administration +#: ../cache/locales.php:459 msgid "Administration" msgstr "Administration" -#: [page]home +#: ../cache/locales.php:460 msgid "Home" msgstr "Accueil" -#: [page]discover +#: ../cache/locales.php:461 msgid "Discover" msgstr "Découvrir" -#: [page]explore +#: ../cache/locales.php:462 msgid "Explore" msgstr "Explorer" -#: [page]account_creation +#: ../cache/locales.php:463 msgid "Account Creation" msgstr "Création de compte" -#: [page]avatar +#: ../cache/locales.php:464 +msgid "News" +msgstr "Actualité" + +#: ../cache/locales.php:465 msgid "Avatar" msgstr "Avatar" -#: [page]chats +#: ../cache/locales.php:467 msgid "Chats" msgstr "Discussions" -#: [page]server +#: ../cache/locales.php:470 msgid "Server" msgstr "Serveur" -#: [page]public_groups +#: ../cache/locales.php:471 msgid "Public Groups" msgstr "Groupes publics" -#: [page]viewer +#: ../cache/locales.php:472 msgid "Viewer" msgstr "Visionneuse" -#: [page]media +#: ../cache/locales.php:474 msgid "Media" msgstr "Médias" -#: [page]blog +#: ../cache/locales.php:475 msgid "Blog" msgstr "Blog" -#: [page]about +#: ../cache/locales.php:476 msgid "About" msgstr "À propos" -#: [page]login +#: ../cache/locales.php:477 msgid "Login" msgstr "Connexion" -#: [page]feed +#: ../cache/locales.php:479 msgid "Feed" msgstr "Flux" -#: [page]gallery +#: ../cache/locales.php:481 msgid "Gallery" msgstr "Galerie" -#: [page]visio +#: ../cache/locales.php:483 msgid "Visio-conference" msgstr "Vidéoconférence" -#: [page]pods +#: ../cache/locales.php:484 msgid "Pods" msgstr "Pods" -#: [page]share +#: ../cache/locales.php:485 msgid "Share" msgstr "Partager" -#: [page]room +#: ../cache/locales.php:486 msgid "Room" msgstr "" -#: [error]error +#: ../cache/locales.php:487 +#, php-format msgid "Error: %s" msgstr "Erreur : %s" -#: [error]cannot_load_file +#: ../cache/locales.php:488 +#, php-format msgid "Cannot load file '%s'" msgstr "Le fichier « %s » n’est pas accessible" -#: [error]route +#: ../cache/locales.php:489 +#, php-format msgid "Route error, please set all the parameters for the page %s" -msgstr "Erreur de chemin, veuillez configurer tous les paramètres de la page %s" +msgstr "" +"Erreur de chemin, veuillez configurer tous les paramètres de la page %s" -#: [error]widget_load_error +#: ../cache/locales.php:490 +#, php-format msgid "Requested widget '%s' doesn't exist." msgstr "Le widget '%s' demandé n’existe pas." -#: [error]widget_call_error +#: ../cache/locales.php:491 +#, php-format msgid "Requested event '%s' not registered." msgstr "L’évènement '%s' n’est pas enregistré." -#: [error]whoops +#: ../cache/locales.php:492 msgid "Whoops!" msgstr "Oups !" -#: [error]media_not_found +#: ../cache/locales.php:493 msgid "It seem that you don't have any pictures here?" msgstr "Il semblerait que vous n’avez aucune image ici ?" -#: [error]media_ask_upload +#: ../cache/locales.php:494 msgid "You can try to upload a couple by going to the Media page" msgstr "Vous pouvez essayer d’en envoyer via la page Médias" -#: [title]about +#: ../cache/locales.php:495 +#, php-format msgid "%s - About" msgstr "%s – À propos" -#: [title]account +#: ../cache/locales.php:496 +#, php-format msgid "%s - Account" msgstr "%s – Compte" -#: [title]administration +#: ../cache/locales.php:497 +#, php-format msgid "%s - Administration Panel" msgstr "%s – Panneau d’administration" -#: [title]blog +#: ../cache/locales.php:498 +#, php-format msgid "%s - Blog" msgstr "%s – Blog" -#: [title]configuration +#: ../cache/locales.php:499 +#, php-format msgid "%s - Configuration" msgstr "%s – Configuration" -#: [title]discover +#: ../cache/locales.php:500 +#, php-format msgid "%s - Discover" msgstr "%s – Découvrir" -#: [title]explore +#: ../cache/locales.php:501 +#, php-format msgid "%s - Explore" msgstr "%s – Explorer" -#: [title]help +#: ../cache/locales.php:502 +#, php-format msgid "%s - Help Page" msgstr "%s – Page d’aide" -#: [title]login +#: ../cache/locales.php:503 +#, php-format msgid "%s - Login to Movim" msgstr "%s – Connexion à Movim" -#: [title]main +#: ../cache/locales.php:504 +#, php-format msgid "%s - Welcome to Movim" msgstr "%s – Bienvenue sur Movim" -#: [title]media +#: ../cache/locales.php:505 +#, php-format msgid "%s - Media" msgstr "%s – Médias" -#: [title]news +#: ../cache/locales.php:506 +#, php-format msgid "%s - News" msgstr "%s – Actualités" -#: [title]node_configuration +#: ../cache/locales.php:507 +#, php-format msgid "%s - Group Configuration" msgstr "%s – Configuration du groupe" -#: [title]node +#: ../cache/locales.php:508 +#, php-format msgid "%s - Group" msgstr "%s – Groupe" -#: [title]not_found +#: ../cache/locales.php:509 +#, php-format msgid "%s - 404" msgstr "%s – 404" -#: [title]profile +#: ../cache/locales.php:510 +#, php-format msgid "%s - Profile" msgstr "%s – Profil" -#: [title]server +#: ../cache/locales.php:511 +#, php-format msgid "%s - Server" msgstr "%s – Serveur" -#: [button]validate +#: ../cache/locales.php:512 msgid "Validate" msgstr "Valider" -#: [button]refresh +#: ../cache/locales.php:513 msgid "Refresh" msgstr "Rafraîchir" -#: [button]add +#: ../cache/locales.php:514 msgid "Add" msgstr "Ajouter" -#: [button]delete +#: ../cache/locales.php:515 msgid "Delete" msgstr "Supprimer" -#: [button]cancel +#: ../cache/locales.php:516 +msgid "Remove" +msgstr "Retirer" + +#: ../cache/locales.php:517 msgid "Cancel" msgstr "Annuler" -#: [button]close +#: ../cache/locales.php:518 msgid "Close" msgstr "Fermer" -#: [button]update +#: ../cache/locales.php:519 msgid "Update" msgstr "Mettre à jour" -#: [button]updating +#: ../cache/locales.php:520 msgid "Updating" msgstr "Actualisation" -#: [button]submitting +#: ../cache/locales.php:521 +msgid "Submit" +msgstr "Envoyer" + +#: ../cache/locales.php:522 msgid "Submitting" msgstr "Envoi" -#: [button]register +#: ../cache/locales.php:523 +msgid "Reset" +msgstr "Réinitialiser" + +#: ../cache/locales.php:524 msgid "Register" msgstr "S’inscrire" -#: [button]unregister +#: ../cache/locales.php:525 msgid "Unregister" msgstr "Se désinscrire" -#: [button]save +#: ../cache/locales.php:526 msgid "Save" msgstr "Sauvegarder" -#: [button]clear +#: ../cache/locales.php:527 msgid "Clear" msgstr "Vider" -#: [button]upload +#: ../cache/locales.php:528 msgid "Upload" msgstr "Téléverser" -#: [button]come_in +#: ../cache/locales.php:529 msgid "Come in!" msgstr "Entrez !" -#: [button]connecting +#: ../cache/locales.php:530 msgid "Connecting" msgstr "Connexion" -#: [button]bool_yes +#: ../cache/locales.php:531 msgid "Yes" msgstr "Oui" -#: [button]bool_no +#: ../cache/locales.php:532 msgid "No" msgstr "Non" -#: [button]return +#: ../cache/locales.php:534 msgid "Return" msgstr "Retour" -#: [button]accept +#: ../cache/locales.php:535 msgid "Accept" msgstr "Accepter" -#: [button]refuse +#: ../cache/locales.php:536 msgid "Refuse" msgstr "Refuser" -#: [button]next +#: ../cache/locales.php:537 msgid "Next" msgstr "Suivant" -#: [button]previous +#: ../cache/locales.php:538 msgid "Previous" msgstr "Précédent" -#: [step]step +#: ../cache/locales.php:539 +#, php-format msgid "Step %s" msgstr "Étape %s" -#: [day]title +#: ../cache/locales.php:542 msgid "Day" msgstr "Jour" -#: [day]monday +#: ../cache/locales.php:543 msgid "Monday" msgstr "Lundi" -#: [day]tuesday +#: ../cache/locales.php:544 msgid "Tuesday" msgstr "Mardi" -#: [day]wednesday +#: ../cache/locales.php:545 msgid "Wednesday" msgstr "Mercredi" -#: [day]thursday +#: ../cache/locales.php:546 msgid "Thursday" msgstr "Jeudi" -#: [day]friday +#: ../cache/locales.php:547 msgid "Friday" msgstr "Vendredi" -#: [day]saturday +#: ../cache/locales.php:548 msgid "Saturday" msgstr "Samedi" -#: [day]sunday +#: ../cache/locales.php:549 msgid "Sunday" msgstr "Dimanche" -#: [gender]nil -#, fuzzy -msgctxt "[gender]nil" +#: ../cache/locales.php:550 ../cache/locales.php:559 msgid "None" msgstr "Aucun" -#: [gender]male +#: ../cache/locales.php:551 msgid "Male" msgstr "Homme" -#: [gender]female +#: ../cache/locales.php:552 msgid "Female" msgstr "Femme" -#: [gender]other +#: ../cache/locales.php:553 msgid "Other" msgstr "Autre" -#: [client]bot +#: ../cache/locales.php:554 msgid "Bot" msgstr "Robot" -#: [client]desktop +#: ../cache/locales.php:555 msgid "Desktop" msgstr "Bureau" -#: [client]phone +#: ../cache/locales.php:556 msgid "Phone" msgstr "Téléphone" -#: [client]web +#: ../cache/locales.php:557 msgid "Web" msgstr "Web" -#: [client]registered +#: ../cache/locales.php:558 msgid "Registered" msgstr "Inscrit" -#: [marital]nil -#, fuzzy -msgctxt "[marital]nil" -msgid "None" -msgstr "Aucun" - -#: [marital]single +#: ../cache/locales.php:560 msgid "Single" msgstr "Célibataire" -#: [marital]relationship +#: ../cache/locales.php:561 msgid "In a relationship" msgstr "En couple" -#: [marital]married +#: ../cache/locales.php:562 msgid "Married" msgstr "Marié(e)" -#: [marital]divorced +#: ../cache/locales.php:563 msgid "Divorced" msgstr "Divorcé(e)" -#: [marital]widowed +#: ../cache/locales.php:564 msgid "Widowed" msgstr "Veuf(ve)" -#: [marital]cohabiting +#: ../cache/locales.php:565 msgid "Cohabiting" msgstr "En concubinage" -#: [marital]union +#: ../cache/locales.php:566 msgid "Civil Union" msgstr "Union civile" -#: [flag]white +#: ../cache/locales.php:567 msgid "Not shared" msgstr "Non partagé" -#: [flag]green +#: ../cache/locales.php:568 msgid "Shared with one contact" msgstr "Partagé avec un contact" -#: [flag]orange +#: ../cache/locales.php:569 msgid "Shared with all contacts" msgstr "Partagé avec tous les contacts" -#: [flag]red +#: ../cache/locales.php:570 msgid "Shared with the XMPP network" msgstr "Partagé avec le réseau XMPP" -#: [flag]black +#: ../cache/locales.php:571 msgid "Shared with the whole Internet" msgstr "Partagé avec tout Internet" -#: [presence]online +#: ../cache/locales.php:572 msgid "Online" msgstr "En ligne" -#: [presence]away +#: ../cache/locales.php:573 msgid "Away" msgstr "Absent(e)" -#: [presence]dnd +#: ../cache/locales.php:574 msgid "Do Not Disturb" msgstr "Ne pas déranger" -#: [presence]xa +#: ../cache/locales.php:575 msgid "Extended Away" msgstr "Absence prolongée" -#: [presence]offline +#: ../cache/locales.php:576 msgid "Offline" msgstr "Hors ligne" -#: [presence]error +#: ../cache/locales.php:577 msgid "Error" msgstr "Erreur" -#: [mood]afraid +#: ../cache/locales.php:578 msgid "afraid" msgstr "appeuré(e)" -#: [mood]amazed +#: ../cache/locales.php:579 msgid "amazed" msgstr "stupéfait(e)" -#: [mood]amorous +#: ../cache/locales.php:580 msgid "amorous" msgstr "amoureux(se)" -#: [mood]angry +#: ../cache/locales.php:581 msgid "angry" msgstr "fâché(e)" -#: [mood]annoyed +#: ../cache/locales.php:582 msgid "annoyed" msgstr "contrarié(e)" -#: [mood]anxious +#: ../cache/locales.php:583 msgid "anxious" msgstr "anxieux(se)" -#: [mood]aroused +#: ../cache/locales.php:584 msgid "aroused" msgstr "agité(e)" -#: [mood]ashamed +#: ../cache/locales.php:585 msgid "ashamed" msgstr "honteux(se)" -#: [mood]bored +#: ../cache/locales.php:586 msgid "bored" msgstr "lassé(e)" -#: [mood]brave +#: ../cache/locales.php:587 msgid "brave" msgstr "courageux(se)" -#: [mood]calm +#: ../cache/locales.php:588 msgid "calm" msgstr "calme" -#: [mood]cautious +#: ../cache/locales.php:589 msgid "cautious" msgstr "prudent(e)" -#: [mood]cold +#: ../cache/locales.php:590 msgid "cold" msgstr "frileux(se)" -#: [mood]confident +#: ../cache/locales.php:591 msgid "confident" msgstr "confiant(e)" -#: [mood]confused +#: ../cache/locales.php:592 msgid "confused" msgstr "désorienté(e)" -#: [mood]contemplative +#: ../cache/locales.php:593 msgid "contemplative" msgstr "contemplatif(ve)" -#: [mood]contented +#: ../cache/locales.php:594 msgid "contented" msgstr "satisfait(e)" -#: [mood]cranky +#: ../cache/locales.php:595 msgid "cranky" msgstr "grincheux(se)" -#: [mood]crazy +#: ../cache/locales.php:596 msgid "crazy" msgstr "fou(folle)" -#: [mood]creative +#: ../cache/locales.php:597 msgid "creative" msgstr "créatif(ve)" -#: [mood]curious +#: ../cache/locales.php:598 msgid "curious" msgstr "curieux(se)" -#: [mood]dejected +#: ../cache/locales.php:599 msgid "dejected" msgstr "abattu(e)" -#: [mood]depressed +#: ../cache/locales.php:600 msgid "depressed" msgstr "déprimé(e)" -#: [mood]disappointed +#: ../cache/locales.php:601 msgid "disappointed" msgstr "déçu(e)" -#: [mood]disgusted +#: ../cache/locales.php:602 msgid "disgusted" msgstr "dégouté(e)" -#: [mood]dismayed +#: ../cache/locales.php:603 msgid "dismayed" msgstr "consterné(e)" -#: [mood]distracted +#: ../cache/locales.php:604 msgid "distracted" msgstr "distrait(e)" -#: [mood]embarrassed +#: ../cache/locales.php:605 msgid "embarrassed" msgstr "embarrassé(e)" -#: [mood]envious +#: ../cache/locales.php:606 msgid "envious" msgstr "envieux(se)" -#: [mood]excited +#: ../cache/locales.php:607 msgid "excited" msgstr "excité(e)" -#: [mood]flirtatious +#: ../cache/locales.php:608 msgid "flirtatious" msgstr "charmeur(se)" -#: [mood]frustated +#: ../cache/locales.php:609 msgid "frustated" msgstr "frustré(e)" -#: [mood]grateful +#: ../cache/locales.php:610 msgid "grateful" msgstr "reconnaissant(e)" -#: [mood]grieving +#: ../cache/locales.php:611 msgid "grieving" msgstr "endeuillé(e)" -#: [mood]grumpy +#: ../cache/locales.php:612 msgid "grumpy" msgstr "ronchon(ne)" -#: [mood]guilty +#: ../cache/locales.php:613 msgid "guilty" msgstr "coupable" -#: [mood]happy +#: ../cache/locales.php:614 msgid "happy" msgstr "heureux(se)" -#: [mood]hopeful +#: ../cache/locales.php:615 msgid "hopeful" msgstr "optimiste" -#: [mood]hot +#: ../cache/locales.php:616 msgid "hot" msgstr "chaud" -#: [mood]humbled +#: ../cache/locales.php:617 msgid "humbled" msgstr "humble" -#: [mood]humiliated +#: ../cache/locales.php:618 msgid "humiliated" msgstr "humilié(e)" -#: [mood]hungry +#: ../cache/locales.php:619 msgid "hungry" msgstr "affamé(e)" -#: [mood]hurt +#: ../cache/locales.php:620 msgid "hurt" msgstr "blessé(e)" -#: [mood]impressed +#: ../cache/locales.php:621 msgid "impressed" msgstr "impressionné(e)" -#: [mood]in_awe +#: ../cache/locales.php:622 msgid "in awe" msgstr "admiratif(ve)" -#: [mood]in_love +#: ../cache/locales.php:623 msgid "in love" msgstr "amoureux(se)" -#: [mood]indignant +#: ../cache/locales.php:624 msgid "indignant" msgstr "indigné(e)" -#: [mood]interested +#: ../cache/locales.php:625 msgid "interested" msgstr "intéressé(e)" -#: [mood]intoxicated +#: ../cache/locales.php:626 msgid "intoxicated" msgstr "intoxiqué(e)" -#: [mood]invincible +#: ../cache/locales.php:627 msgid "invincible" msgstr "invincible" -#: [mood]jealous +#: ../cache/locales.php:628 msgid "jealous" msgstr "jaloux(se)" -#: [mood]lonely +#: ../cache/locales.php:629 msgid "lonely" msgstr "seul(e)" -#: [mood]lost +#: ../cache/locales.php:630 msgid "lost" msgstr "perdu(e)" -#: [mood]lucky +#: ../cache/locales.php:631 msgid "lucky" msgstr "chanceux(se)" -#: [mood]mean +#: ../cache/locales.php:632 msgid "mean" msgstr "méchant(e)" -#: [mood]moody +#: ../cache/locales.php:633 msgid "moody" msgstr "maussade" -#: [mood]nervous +#: ../cache/locales.php:634 msgid "nervous" msgstr "nerveux(se)" -#: [mood]neutral +#: ../cache/locales.php:635 msgid "neutral" msgstr "neutre" -#: [mood]offended +#: ../cache/locales.php:636 msgid "offended" msgstr "offensé(e)" -#: [mood]outraged +#: ../cache/locales.php:637 msgid "outraged" msgstr "outré(e)" -#: [mood]playful +#: ../cache/locales.php:638 msgid "playful" msgstr "joueur(se)" -#: [mood]proud +#: ../cache/locales.php:639 msgid "proud" msgstr "fier(ère)" -#: [mood]relaxed +#: ../cache/locales.php:640 msgid "relaxed" msgstr "relaxé(e)" -#: [mood]relieved +#: ../cache/locales.php:641 msgid "relieved" msgstr "soulagé(e)" -#: [mood]restless +#: ../cache/locales.php:642 +msgid "remorseful" +msgstr "plein de remords" + +#: ../cache/locales.php:643 msgid "restless" msgstr "impatient(e)" -#: [mood]sad +#: ../cache/locales.php:644 msgid "sad" msgstr "triste" -#: [mood]sarcastic +#: ../cache/locales.php:645 msgid "sarcastic" msgstr "sarcastique" -#: [mood]satisfied +#: ../cache/locales.php:646 msgid "satisfied" msgstr "satisfait(e)" -#: [mood]serious +#: ../cache/locales.php:647 msgid "serious" msgstr "sérieux(se)" -#: [mood]shocked +#: ../cache/locales.php:648 msgid "shocked" msgstr "choqué(e)" -#: [mood]shy +#: ../cache/locales.php:649 msgid "shy" msgstr "timide" -#: [mood]sick +#: ../cache/locales.php:650 msgid "sick" msgstr "malade" -#: [mood]sleepy +#: ../cache/locales.php:651 msgid "sleepy" msgstr "somnolent(e)" -#: [mood]spontaneous +#: ../cache/locales.php:652 msgid "spontaneous" msgstr "spontané(e)" -#: [mood]stressed +#: ../cache/locales.php:653 msgid "stressed" msgstr "stressé(e)" -#: [mood]strong +#: ../cache/locales.php:654 msgid "strong" msgstr "fort(e)" -#: [mood]surprised +#: ../cache/locales.php:655 msgid "surprised" msgstr "surpris(e)" -#: [mood]thankful +#: ../cache/locales.php:656 msgid "thankful" msgstr "reconnaissant(e)" -#: [mood]thirsty +#: ../cache/locales.php:657 msgid "thirsty" msgstr "assoiffé(e)" -#: [mood]tired +#: ../cache/locales.php:658 msgid "tired" msgstr "fatigué(e)" -#: [mood]undefined +#: ../cache/locales.php:659 msgid "undefined" msgstr "indéfini" -#: [mood]weak +#: ../cache/locales.php:660 msgid "weak" msgstr "faible" -#: [mood]worried +#: ../cache/locales.php:661 msgid "worried" msgstr "inquiet(ète)" -#: [month]title +#: ../cache/locales.php:662 msgid "Month" msgstr "Mois" -#: [month]january +#: ../cache/locales.php:663 msgid "January" msgstr "Janvier" -#: [month]february +#: ../cache/locales.php:664 msgid "February" msgstr "Février" -#: [month]march +#: ../cache/locales.php:665 msgid "March" msgstr "Mars" -#: [month]april +#: ../cache/locales.php:666 msgid "April" msgstr "Avril" -#: [month]may +#: ../cache/locales.php:667 msgid "May" msgstr "Mai" -#: [month]june +#: ../cache/locales.php:668 msgid "June" msgstr "Juin" -#: [month]july +#: ../cache/locales.php:669 msgid "July" msgstr "Juillet" -#: [month]august +#: ../cache/locales.php:670 msgid "August" msgstr "Août" -#: [month]september +#: ../cache/locales.php:671 msgid "September" msgstr "Septembre" -#: [month]october +#: ../cache/locales.php:672 msgid "October" msgstr "Octobre" -#: [month]november +#: ../cache/locales.php:673 msgid "November" msgstr "Novembre" -#: [month]december +#: ../cache/locales.php:674 msgid "December" msgstr "Décembre" -#: [year]title +#: ../cache/locales.php:675 msgid "Year" msgstr "Année" -#: [date]today +#: ../cache/locales.php:676 msgid "Today" msgstr "Aujourd’hui" -#: [date]tomorrow +#: ../cache/locales.php:677 msgid "Tomorrow" msgstr "Demain" -#: [date]yesterday +#: ../cache/locales.php:678 msgid "Yesterday" msgstr "Hier" -#: [date]ago -#, fuzzy -msgid "%d days ago" +#: ../cache/locales.php:679 +#, php-format +msgid " %d days ago" msgstr " Il y a %d jours" -#: [date]day +#: ../cache/locales.php:680 msgid "day" msgstr "jour" -#: [post]whats_new +#: ../cache/locales.php:682 msgid "What's new ?" msgstr "Quoi de neuf ?" -#: [post]place +#: ../cache/locales.php:683 msgid "Place" msgstr "Lieu" -#: [post]by +#: ../cache/locales.php:684 msgid "by" msgstr "par" -#: [post]geolocalisation +#: ../cache/locales.php:685 msgid "Geolocalisation" msgstr "Géolocalisation" -#: [post]email +#: ../cache/locales.php:686 msgid "email" msgstr "courriel" -#: [post]no_comments +#: ../cache/locales.php:688 msgid "No comments yet" msgstr "Pas de commentaires pour le moment" -#: [post]no_comments_stream +#: ../cache/locales.php:689 msgid "No comments stream" msgstr "Pas de flux de commentaires" -#: [post]no_load +#: ../cache/locales.php:690 msgid "Your feed cannot be loaded." msgstr "Votre flux n’est pas accessible." -#: [post]older +#: ../cache/locales.php:691 msgid "Get older posts" msgstr "Récupérer les anciens billets" -#: [post]new_items +#: ../cache/locales.php:692 +#, php-format msgid "%s new items" msgstr "%s nouveaux billets" -#: [post]comment_error +#: ../cache/locales.php:693 msgid "Comment publication error" msgstr "Erreur à la publication du commentaire" -#: [post]comments_older +#: ../cache/locales.php:694 msgid "Show the older comments" msgstr "Afficher les commentaires plus anciens" -#: [post]comments_loading -#, fuzzy -msgid "Loading comments..." +#: ../cache/locales.php:695 +msgid "Loading comments ..." msgstr "Chargement des commentaires…" -#: [post]comments_get +#: ../cache/locales.php:696 msgid "Get the comments" msgstr "Récupérer les commentaires" -#: [post]comment_add +#: ../cache/locales.php:697 msgid "Add a comment" msgstr "Commenter" -#: [post]share +#: ../cache/locales.php:698 msgid "Share with" msgstr "Partager avec" -#: [post]share_everyone +#: ../cache/locales.php:699 msgid "Everyone" msgstr "Tout le monde" -#: [post]share_your_contacts +#: ../cache/locales.php:700 msgid "Your contacts" msgstr "Vos contacts" -#: [post]updated +#: ../cache/locales.php:702 msgid "Updated" msgstr "Mis à jour" -#: [post]content_not_found +#: ../cache/locales.php:703 msgid "Content not found" msgstr "Contenu introuvable" -#: [post]default_title +#: ../cache/locales.php:704 msgid "Contact publication" msgstr "Billet d’un contact" -#: [post]comments +#: ../cache/locales.php:705 msgid "Comments" msgstr "Commentaires" -#: [api]error +#: ../cache/locales.php:706 msgid "The API is not reachable, try again later" msgstr "L’API est indisponible pour le moment, réessayez plus tard." -#: [field]type_here +#: ../cache/locales.php:707 msgid "Type here" msgstr "Rédigez votre message ici" -#~ msgid "Environment" -#~ msgstr "Environnement" - -#~ msgid "You can login with Facebook (chat only) using %syour.id@chat.facebook.com%s and your password" -#~ msgstr "Vous pouvez vous connecter avec Facebook (messagerie instantanée uniquement) en entrant %svotre.id@chat.facebook.com%s et votre mot de passe" - -#~ msgid "%sGmail accounts are also compatible%s but are not fully supported" -#~ msgstr "%sLes comptes Gmail sont aussi compatibles%s mais ne sont pas complètement pris en charge" - -#~ msgid "You can login using your favorite Jabber account" -#~ msgstr "Vous pouvez vous connecter avec votre compte Jabber favori" - -#~ msgid "or with our demonstration account" -#~ msgstr "ou avec notre compte de démonstration" - -#~ msgid "%s has been removed from your public groups" -#~ msgstr "%s a été supprimé de vos groupes publics" - -#~ msgid "Remove a chatroom" -#~ msgstr "Enlever un salon de discussion" - -#~ msgid "You are going to remove the following chatroom. Please confirm your action." -#~ msgstr "Vous allez supprimer le salon de discussion suivant de vos signets. Confirmez s’il vous plaît." - -#~ msgid "Remote application incompatible" -#~ msgstr "L’application distante est incompatible" - -#~ msgid "Remove" -#~ msgstr "Retirer" - -#~ msgid "remorseful" -#~ msgstr "plein de remords" - #~ msgid "Movim's folder must be writable." #~ msgstr "Le dossier racine de Movim doit être accessible en écriture." +#, php-format #~ msgid "Couldn't create directory '%s'." #~ msgstr "La création du répertoire '%s' est impossible." +#, php-format #~ msgid "Couldn't create configuration file '%s'." #~ msgstr "La création du fichier de configuration '%s' est impossible." @@ -2783,12 +2669,15 @@ msgstr "Rédigez votre message ici" #~ msgid "JID not provided." #~ msgstr "JID indisponible." +#, php-format #~ msgid "jid '%s' is incorrect" #~ msgstr "Le JID '%s' n'est pas valide" +#, php-format #~ msgid "Cannot open log file '%s'" #~ msgstr "Le journal '%s' ne peut être ouvert" +#, php-format #~ msgid "%s - Account Creation" #~ msgstr "%s - Création de compte" @@ -2816,15 +2705,20 @@ msgstr "Rédigez votre message ici" #~ msgid "Actual version : " #~ msgstr "Version actuelle : " +#, php-format #~ msgid "Install %s and %s packages" #~ msgstr "Veuillez installer les paquets %s et %s" #~ msgid "Update your PHP version or contact your server administrator" -#~ msgstr "Mettez à jour votre version de PHP ou contactez l'administrateur de votre serveur" +#~ msgstr "" +#~ "Mettez à jour votre version de PHP ou contactez l'administrateur de votre " +#~ "serveur" #~ msgid "Enable read and write rights on Movim's root folder" -#~ msgstr "Activez les droits de lecture et d'écriture sur le dossier racine de Movim" +#~ msgstr "" +#~ "Activez les droits de lecture et d'écriture sur le dossier racine de Movim" +#, php-format #~ msgid "Please remove the %s folder in order to complete the installation" #~ msgstr "Veuillez supprimer le dossier %s pour terminer l'installation" @@ -2852,15 +2746,24 @@ msgstr "Rédigez votre message ici" #~ msgid "Database Detected" #~ msgstr "Base de données détectée" +#, php-format #~ msgid "Movim requires the %s extension." #~ msgstr "Movim a besoin de l'extension %s." -#~ msgid "The following requirements were not met. Please make sure they are all satisfied in order to install Movim." -#~ msgstr "Les dépendances ci-dessous ne sont pas satisfaites. Assurez-vous qu'elles le soient afin d'installer Movim." +#~ msgid "" +#~ "The following requirements were not met. Please make sure they are all " +#~ "satisfied in order to install Movim." +#~ msgstr "" +#~ "Les dépendances ci-dessous ne sont pas satisfaites. Assurez-vous qu'elles le " +#~ "soient afin d'installer Movim." +#, php-format #~ msgid "You can now access your shiny Movim instance %sJump In !%s" -#~ msgstr "Vous pouvez maintenant accéder à votre version fraîchement installée de Movim %sAllons y !%s" +#~ msgstr "" +#~ "Vous pouvez maintenant accéder à votre version fraîchement installée de " +#~ "Movim %sAllons y !%s" +#, php-format #~ msgid "Install the %s package" #~ msgstr "Installer le paquet %s" @@ -2901,7 +2804,9 @@ msgstr "Rédigez votre message ici" #~ msgstr "Créer ma vCard" #~ msgid "A capital letter, a digit and a special character are recommended" -#~ msgstr "Un bon mot de passe est composé d'au moins une majuscule, un chiffre et un caractère spécial" +#~ msgstr "" +#~ "Un bon mot de passe est composé d'au moins une majuscule, un chiffre et un " +#~ "caractère spécial" #~ msgid "8 characters" #~ msgstr "8 caractères" @@ -2912,9 +2817,14 @@ msgstr "Rédigez votre message ici" #~ msgid "Address" #~ msgstr "Adresse" -#~ msgid "Firstly fill in this blank with a brand new account ID, this address will follow you on all the Movim network !" -#~ msgstr "Tout d'abord remplir ce vide avec un ID de tout nouveau compte, cette adresse vous suivra sur tout le réseau Movim !" +#~ msgid "" +#~ "Firstly fill in this blank with a brand new account ID, this address will " +#~ "follow you on all the Movim network !" +#~ msgstr "" +#~ "Tout d'abord remplir ce vide avec un ID de tout nouveau compte, cette " +#~ "adresse vous suivra sur tout le réseau Movim !" +#, php-format #~ msgid "%s - Add An Account" #~ msgstr "%s - Ajouter Un Compte" @@ -2927,11 +2837,16 @@ msgstr "Rédigez votre message ici" #~ msgid "Client Type" #~ msgstr "Type de Client" +#, php-format #~ msgid "Contacts (%s)" #~ msgstr "Contacts (%s)" -#~ msgid "Your server doesn't support post publication, you can only read contact's feeds" -#~ msgstr "Votre serveur ne gère pas la publication des billets, vous ne pouvez que lire les flux de vos contacts." +#~ msgid "" +#~ "Your server doesn't support post publication, you can only read contact's " +#~ "feeds" +#~ msgstr "" +#~ "Votre serveur ne gère pas la publication des billets, vous ne pouvez que " +#~ "lire les flux de vos contacts." #~ msgid "No profile yet ?" #~ msgstr "Pas encore de profil ?" @@ -2940,7 +2855,9 @@ msgstr "Rédigez votre message ici" #~ msgstr "Modifier mon profil" #~ msgid "PHP version mismatch. Movim requires PHP 5.3 minimum." -#~ msgstr "La version de PHP ne correspond pas. Movim nécessite la version 5.3 au minimum." +#~ msgstr "" +#~ "La version de PHP ne correspond pas. Movim nécessite la version 5.3 au " +#~ "minimum." #~ msgid "normal" #~ msgstr "standard" @@ -2951,11 +2868,20 @@ msgstr "Rédigez votre message ici" #~ msgid "empty" #~ msgstr "vide" -#~ msgid "Keep in mind that Movim is still under development and will handle many personal details. Its use can potentially endanger your data. Always pay attention to information that you submit." -#~ msgstr "Gardez à l'esprit que Movim est encore en développement et va manipuler des informations personnelles. Son utilisation peut donc les mettre en danger. Faites donc toujours attention aux informations que vous envoyez." +#~ msgid "" +#~ "Keep in mind that Movim is still under development and will handle many " +#~ "personal details. Its use can potentially endanger your data. Always pay " +#~ "attention to information that you submit." +#~ msgstr "" +#~ "Gardez à l'esprit que Movim est encore en développement et va manipuler des " +#~ "informations personnelles. Son utilisation peut donc les mettre en danger. " +#~ "Faites donc toujours attention aux informations que vous envoyez." -#~ msgid "Before you enjoy your social network, a few adjustements are required." -#~ msgstr "Avant que vous utilisiez votre réseau social, quelques ajustements sont nécessaires." +#~ msgid "" +#~ "Before you enjoy your social network, a few adjustements are required." +#~ msgstr "" +#~ "Avant que vous utilisiez votre réseau social, quelques ajustements sont " +#~ "nécessaires." #~ msgid "ultimate" #~ msgstr "complet" @@ -2963,14 +2889,34 @@ msgstr "Rédigez votre message ici" #~ msgid "talkative" #~ msgstr "bavard" -#~ msgid "Although Movim is evolving fast, many (many) features are missing. Be patient ;). You can have a look %s at next versions's roadmaps %s to know if the one you want is on its way." -#~ msgstr "Même si Movim avance vite, il manque encore de (très) nombreuses fonctionnalités. Soyez patient ;). Vous pouvez aller jeter un œil aux %s feuilles de routes des prochaines version %s pour voir si celle-ci n'est pas déjà prévue." +#, php-format +#~ msgid "" +#~ "Although Movim is evolving fast, many (many) features are missing. Be " +#~ "patient ;). You can have a look %s at next versions's roadmaps %s to know if " +#~ "the one you want is on its way." +#~ msgstr "" +#~ "Même si Movim avance vite, il manque encore de (très) nombreuses " +#~ "fonctionnalités. Soyez patient ;). Vous pouvez aller jeter un œil aux %s " +#~ "feuilles de routes des prochaines version %s pour voir si celle-ci n'est pas " +#~ "déjà prévue." -#~ msgid "Go to the %s to the Frequently Asked Questions %s or come ask your question on the official chatroom %s or via our mailing-list (%s see the dedicated page %s)." -#~ msgstr "Allez jeter un oeil %s à la Foire aux Questions %s ou venez nous la poser directement sur le salon officiel %s ou sur la mailing-list (%s voir la page dédiée %s)." +#, php-format +#~ msgid "" +#~ "Go to the %s to the Frequently Asked Questions %s or come ask your question " +#~ "on the official chatroom %s or via our mailing-list (%s see the dedicated " +#~ "page %s)." +#~ msgstr "" +#~ "Allez jeter un oeil %s à la Foire aux Questions %s ou venez nous la poser " +#~ "directement sur le salon officiel %s ou sur la mailing-list (%s voir la page " +#~ "dédiée %s)." -#~ msgid "Don't forget that Movim is an open source project, a helping hand is always welcome (see %s Can I participate %s)" -#~ msgstr "Et n'oubliez pas que Movim est un logiciel libre, un petit coup de main est toujours le bienvenu (voir la page %s Puis-je participer %s)." +#, php-format +#~ msgid "" +#~ "Don't forget that Movim is an open source project, a helping hand is always " +#~ "welcome (see %s Can I participate %s)" +#~ msgstr "" +#~ "Et n'oubliez pas que Movim est un logiciel libre, un petit coup de main est " +#~ "toujours le bienvenu (voir la page %s Puis-je participer %s)." #~ msgid "Link my current account" #~ msgstr "Lier mon compte actuel" @@ -2978,15 +2924,22 @@ msgstr "Rédigez votre message ici" #~ msgid "Connecting..." #~ msgstr "Connexion…" +#, php-format +#~ msgid "This server hosts %s accounts" +#~ msgstr "Ce serveur héberge %s comptes" + #~ msgid "Invite this user" #~ msgstr "Inviter cet utilisateur" +#, php-format #~ msgid "Bosh connection failed with error '%s'" #~ msgstr "La connection Bosh a échoué avec l'erreur '%s'" +#, php-format #~ msgid "Database connection failed with error '%s'" #~ msgstr "La connexion à la base de données à échoué avec l'erreur '%s'" +#, php-format #~ msgid "XMPP connection through Bosh failed with error '%s'" #~ msgstr "La connection XMPP à travers Bosh a échoué avec l'erreur '%s'" @@ -2996,9 +2949,14 @@ msgstr "Rédigez votre message ici" #~ msgid "Thank you for downloading Movim!" #~ msgstr "Merci d'avoir téléchargé Movim !" -#~ msgid "Some errors were detected. Please correct them for the installation to proceed." -#~ msgstr "Des erreurs ont été détectées. Veuillez les corriger pour terminer correctement l'installation." +#~ msgid "" +#~ "Some errors were detected. Please correct them for the installation to " +#~ "proceed." +#~ msgstr "" +#~ "Des erreurs ont été détectées. Veuillez les corriger pour terminer " +#~ "correctement l'installation." +#, php-format #~ msgid "Cannot load element value '%s'" #~ msgstr "Impossible de charger la valeur de l'élément « %s »" @@ -3017,11 +2975,20 @@ msgstr "Rédigez votre message ici" #~ msgid "I can't find the answer to my question here" #~ msgstr "Ma question n’est pas listée ici" -#~ msgid "Visit the page %s What is Movim ? %s to know more about the project, its aims and understand how it works." -#~ msgstr "Visitez la page %s Qu’est-ce que Movim ? %s pour en savoir plus le projet, ses buts et comprendre son fonctionnement." +#, php-format +#~ msgid "" +#~ "Visit the page %s What is Movim ? %s to know more about the project, its " +#~ "aims and understand how it works." +#~ msgstr "" +#~ "Visitez la page %s Qu’est-ce que Movim ? %s pour en savoir plus le projet, " +#~ "ses buts et comprendre son fonctionnement." -#~ msgid "Some features are missing/I can't do everything I used to do on other social networks" -#~ msgstr "Il manque des fonctionnalités / Je n’arrive pas à faire ce que je faisais sur les autres réseaux sociaux" +#~ msgid "" +#~ "Some features are missing/I can't do everything I used to do on other social " +#~ "networks" +#~ msgstr "" +#~ "Il manque des fonctionnalités / Je n’arrive pas à faire ce que je faisais " +#~ "sur les autres réseaux sociaux" #~ msgid "Could not communicate with the XMPP server" #~ msgstr "Erreur de communication avec le serveur XMPP" diff --git a/sources/locales/gl.po b/sources/locales/gl.po index d717394..60b8f0e 100644 --- a/sources/locales/gl.po +++ b/sources/locales/gl.po @@ -1,2705 +1,2592 @@ # Galician translations for Movim package. # This file is distributed under the same license as the Movim package. # This file was translated from CodingTeam at . -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/About/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Account/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/AccountNext/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/AdHoc/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/AdminDB/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/AdminMain/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/AdminTest/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Api/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Avatar/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Blog/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Bookmark/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Chat/locales.ini -#. #-#-#-#-# 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 -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Group/locales.ini -#. #-#-#-#-# 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 -#. #-#-#-#-# 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 -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Presence/locales.ini -#. #-#-#-#-# 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 -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Share/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Statistics/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Subscribe/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Syndication/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Upload/locales.ini -#. #-#-#-#-# 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-08-20 15:17+0200\n" +"POT-Creation-Date: 2015-06-08 22:06+0200\n" "PO-Revision-Date: 2014-06-01 23:06+0000\n" "Last-Translator: Daniel-san \n" "Language-Team: LANGUAGE \n" -"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2015-06-18 21:08+0000\n" "X-Generator: Launchpad (build 17570)\n" +"Language: \n" -#: [about]thanks +#: ../cache/locales.php:2 msgid "Thanks" msgstr "" -#: [about]developers +#: ../cache/locales.php:3 msgid "Developers" msgstr "" -#: [about]translators +#: ../cache/locales.php:4 msgid "Translators" msgstr "" -#: [about]software +#: ../cache/locales.php:5 msgid "Software" msgstr "" -#: [about]resources +#: ../cache/locales.php:6 msgid "Resources" msgstr "" -#: [about]api [schema]api [api]title +#: ../cache/locales.php:7 ../cache/locales.php:83 ../cache/locales.php:85 msgid "API" msgstr "" -#: [about]info -msgid "Movim is an XMPP-based communication platform. All the project, except the following software and resources, is under" +#: ../cache/locales.php:8 +msgid "" +"Movim is an XMPP-based communication platform. All the project, except the " +"following software and resources, is under" msgstr "" -#: [account]title +#: ../cache/locales.php:9 msgid "Account" msgstr "" -#: [account]password_change_title -#, fuzzy -msgid "Change my password" -msgstr "Contrasinal incorrecta" - -#: [account]password [db]password [credentials]password [form]password -#: [input]password -msgid "Password" -msgstr "Contrasinal" - -#: [account]password_confirmation -#, fuzzy -msgid "Password confirmation" -msgstr "Configuración de %s" - -#: [account]password_changed +#: ../cache/locales.php:10 msgid "The password has been updated" msgstr "" -#: [account]password_not_valid +#: ../cache/locales.php:11 msgid "Please provide a valid password (6 characters minimum)" msgstr "" -#: [account]password_not_same +#: ../cache/locales.php:12 msgid "The provided passwords are not the same" msgstr "" -#: [account]delete_title +#: ../cache/locales.php:13 msgid "Delete my account" msgstr "" -#: [account]delete -msgid "Delete your account" +#: ../cache/locales.php:14 +msgid "" +"You will delete your XMPP account and all the relative information linked to " +"it (profile, contacts and publications)." msgstr "" -#: [account]delete_text -msgid "You will delete your XMPP account and all the relative information linked to it (profile, contacts and publications)." -msgstr "" - -#: [account]delete_text_confirm +#: ../cache/locales.php:15 msgid "Are you sure that you want to delete it ?" msgstr "" -#: [account]gateway_title -msgid "Gateway" -msgstr "" - -#: [create]title [subscribe]title +#: ../cache/locales.php:16 ../cache/locales.php:411 msgid "Create a new account" msgstr "" -#: [create]notfound +#: ../cache/locales.php:17 msgid "No account creation form found on the server" msgstr "" -#: [create]server_on +#: ../cache/locales.php:18 ../cache/locales.php:172 msgid "on" msgstr "" -#: [create]successfull +#: ../cache/locales.php:19 msgid "Your acccount has been successfully registered" msgstr "" -#: [create]loading +#: ../cache/locales.php:20 msgid "Loading" msgstr "" -#: [error]not_acceptable +#: ../cache/locales.php:21 msgid "Not Acceptable" msgstr "" -#: [error]service_unavailable +#: ../cache/locales.php:22 msgid "The registration system of this server is currently unavailable" msgstr "" -#: [oob]about -msgid "This server use an external system for the registration, please click on the following URL." +#: ../cache/locales.php:23 +msgid "" +"This server use an external system for the registration, please click on the " +"following URL." msgstr "" -#: [adhoc]title +#: ../cache/locales.php:24 msgid "Actions" msgstr "" -#: [db]legend [schema]database +#: ../cache/locales.php:25 ../cache/locales.php:82 msgid "Database" msgstr "" -#: [db]connect_error +#: ../cache/locales.php:26 msgid "Modl wasn't able to connect to the database" msgstr "" -#: [db]connect_success +#: ../cache/locales.php:27 msgid "Movim is connected to the database" msgstr "" -#: [db]update +#: ../cache/locales.php:28 msgid "The database need to be updated" msgstr "" -#: [db]up_to_date +#: ../cache/locales.php:29 msgid "Movim database is up to date" msgstr "" -#: [db]type +#: ../cache/locales.php:30 msgid "Database Type" msgstr "" -#: [db]username [credentials]username [input]username +#: ../cache/locales.php:31 ../cache/locales.php:50 ../cache/locales.php:540 msgid "Username" msgstr "" -#: [db]host +#: ../cache/locales.php:32 ../cache/locales.php:51 ../cache/locales.php:282 +#: ../cache/locales.php:541 +msgid "Password" +msgstr "Contrasinal" + +#: ../cache/locales.php:33 msgid "Host" msgstr "" -#: [db]port +#: ../cache/locales.php:34 msgid "Port" msgstr "" -#: [db]name -msgid "Database sName" +#: ../cache/locales.php:35 +msgid "Database Name" msgstr "" -#: [admin]general +#: ../cache/locales.php:36 msgid "General Settings" msgstr "" -#: [general]theme +#: ../cache/locales.php:37 msgid "Theme" msgstr "" -#: [general]language +#: ../cache/locales.php:38 msgid "Default language" msgstr "" -#: [general]log_verbosity +#: ../cache/locales.php:39 +msgid "Environment" +msgstr "" + +#: ../cache/locales.php:40 msgid "Log verbosity" msgstr "" -#: [general]timezone +#: ../cache/locales.php:41 msgid "Server Timezone" msgstr "" -#: [general]limit +#: ../cache/locales.php:42 msgid "User folder size limit (in bytes)" msgstr "" -#: [websocket]title +#: ../cache/locales.php:43 msgid "WebSocket Configuration" msgstr "" -#: [websocket]info +#: ../cache/locales.php:44 msgid "Enter here a valid WebSocket URI in the form" msgstr "" -#: [websocket]label +#: ../cache/locales.php:45 msgid "WebSocket URI" msgstr "" -#: [websocket]save_info -msgid "If you change the URI, please restart the daemon to reload the configuration" +#: ../cache/locales.php:46 +msgid "" +"If you change the URI, please restart the daemon to reload the configuration" msgstr "" -#: [websocket]publics +#: ../cache/locales.php:47 msgid "Public WebSockets" msgstr "" -#: [credentials]title +#: ../cache/locales.php:48 msgid "Administration Credential" msgstr "" -#: [credentials]info +#: ../cache/locales.php:49 msgid "Change the default credentials admin/password" msgstr "" -#: [credentials]re_password +#: ../cache/locales.php:52 msgid "Retype password" msgstr "" -#: [whitelist]title +#: ../cache/locales.php:53 msgid "Whitelist - XMPP Server" msgstr "" -#: [whitelist]info1 -msgid "If you want to specify a list of authorized XMPP servers on your Movim pod and forbid the connection on all the others please put their domain name here, with comma (ex: movim.eu,jabber.fr)" +#: ../cache/locales.php:54 +msgid "" +"If you want to specify a list of authorized XMPP servers on your Movim pod " +"and forbid the connection on all the others please put their domain name " +"here, with comma (ex: movim.eu,jabber.fr)" msgstr "" -#: [whitelist]info2 -msgid "Leave this field blank if you allow the access to all the XMPP accounts." +#: ../cache/locales.php:55 +msgid "" +"Leave this field blank if you allow the access to all the XMPP accounts." msgstr "" -#: [whitelist]label +#: ../cache/locales.php:56 msgid "List of whitelisted XMPP servers" msgstr "" -#: [information]title -msgctxt "[information]title" +#: ../cache/locales.php:57 ../cache/locales.php:61 msgid "Information Message" msgstr "" -#: [information]description +#: ../cache/locales.php:58 msgid "Description" msgstr "" -#: [information]info1 +#: ../cache/locales.php:59 msgid "This message will be displayed on the login page" msgstr "" -#: [information]info2 -msgid "Leave this field blank if you dont want to show any message." +#: ../cache/locales.php:60 +msgid "Leave this field blank if you don't want to show any message." msgstr "" -#: [information]label -msgctxt "[information]label" -msgid "Information Message" -msgstr "" - -#: [log]empty +#: ../cache/locales.php:62 msgid "Empty" msgstr "" -#: [log]syslog +#: ../cache/locales.php:63 msgid "Syslog" msgstr "" -#: [log]syslog_files +#: ../cache/locales.php:64 msgid "Syslog and files" msgstr "" -#: [rewrite]title +#: ../cache/locales.php:65 msgid "URL Rewriting" msgstr "" -#: [rewrite]info +#: ../cache/locales.php:66 msgid "The URL Rewriting can be enabled" msgstr "" -#: [admin]compatibility +#: ../cache/locales.php:67 msgid "General Overview" msgstr "" -#: [compatibility]info -msgid "Movim has found some issues or things that need to be fixed or improved" +#: ../cache/locales.php:68 +msgid "" +"Movim has found some issues or things that need to be fixed or improved" msgstr "" -#: [compatibility]php1 +#: ../cache/locales.php:69 +#, php-format msgid "Update your PHP-Version: %s" msgstr "" -#: [compatibility]php2 +#: ../cache/locales.php:70 msgid "Required: 5.3.0" msgstr "" -#: [compatibility]curl +#: ../cache/locales.php:71 msgid "Install the php5-curl library" msgstr "" -#: [compatibility]imagick +#: ../cache/locales.php:72 msgid "Install the php5-imagick library" msgstr "" -#: [compatibility]gd +#: ../cache/locales.php:73 msgid "Install the php5-gd library" msgstr "" -#: [compatibility]rights -msgid "Read and write rights for the webserver in Movims root directory" +#: ../cache/locales.php:74 +msgid "Read and write rights for the webserver in Movim's root directory" msgstr "" -#: [compatibility]rewrite +#: ../cache/locales.php:75 msgid "The URL Rewriting support is currently disabled" msgstr "" -#: [compatibility]db +#: ../cache/locales.php:76 msgid "The database need to be updated, go to the database panel to fix this" msgstr "" -#: [compatibility]websocket -msgid "WebSocket connection error, check if the Movim Daemon is running and is reachable" +#: ../cache/locales.php:77 +msgid "" +"WebSocket connection error, check if the Movim Daemon is running and is " +"reacheable" msgstr "" -#: [compatibility]xmpp_websocket -msgid "XMPP Websocket connection error, please check the validity of the URL given in the General Configuration" +#: ../cache/locales.php:78 +msgid "" +"XMPP Websocket connection error, please check the validity of the URL given " +"in the General Configuration" msgstr "" -#: [schema]browser +#: ../cache/locales.php:79 msgid "Browser" msgstr "" -#: [schema]movim +#: ../cache/locales.php:80 msgid "Movim Core" msgstr "" -#: [schema]daemon +#: ../cache/locales.php:81 msgid "Movim Daemon" msgstr "" -#: [schema]xmpp +#: ../cache/locales.php:84 msgid "XMPP" msgstr "" -#: [api]info -msgid "Here you can register your pod on the official %sMovim API%s and be listed on %sthe pods page%s." +#: ../cache/locales.php:86 +#, php-format +msgid "" +"Here you can register your pod on the official %sMovim API%s and be listed " +"on %sthe pods page%s." msgstr "" -#: [api]register +#: ../cache/locales.php:87 msgid "Your pod is not registered on the API" msgstr "" -#: [api]registered +#: ../cache/locales.php:88 msgid "Your pod is registered on the API" msgstr "" -#: [api]wait +#: ../cache/locales.php:89 msgid "Your pod is not yet validated" msgstr "" -#: [api]validated +#: ../cache/locales.php:90 msgid "Your pod is validated" msgstr "" -#: [api]unregister -msgid "You asked to be removed from the API, this request will be processed in a couple of hours" +#: ../cache/locales.php:91 +msgid "" +"You asked to be removed from the API, this request will be processed in a " +"couple of hours" msgstr "" -#: [api]conf_updated [config]updated +#: ../cache/locales.php:92 ../cache/locales.php:147 msgid "Configuration updated" msgstr "" -#: [avatar]file +#: ../cache/locales.php:93 msgid "File" msgstr "" -#: [avatar]use_it +#: ../cache/locales.php:94 msgid "Use it" msgstr "" -#: [avatar]webcam +#: ../cache/locales.php:95 msgid "Webcam" msgstr "" -#: [avatar]cheese +#: ../cache/locales.php:96 msgid "Cheese !" msgstr "" -#: [avatar]snapshot +#: ../cache/locales.php:97 msgid "Take a webcam snapshot" msgstr "" -#: [avatar]updated +#: ../cache/locales.php:98 msgid "Avatar Updated" msgstr "" -#: [avatar]not_updated +#: ../cache/locales.php:99 msgid "Avatar Not Updated" msgstr "" -#: [blog]title [feed]title +#: ../cache/locales.php:100 ../cache/locales.php:415 +#, php-format msgid "%s's feed" msgstr "" -#: [blog]empty +#: ../cache/locales.php:101 msgid "This user has not posted anything right now" msgstr "" -#: [title]conferences +#: ../cache/locales.php:102 msgid "Conferences" msgstr "" -#: [title]groups [group]empty_title [menu]groups [page]groups +#: ../cache/locales.php:103 ../cache/locales.php:193 ../cache/locales.php:217 +#: ../cache/locales.php:468 msgid "Groups" msgstr "" -#: [chatroom]add +#: ../cache/locales.php:104 msgid "Add a new Chat Room" msgstr "" -#: [chatroom]id [chatrooms]id +#: ../cache/locales.php:105 ../cache/locales.php:368 msgid "Chat Room ID" msgstr "" -#: [chatroom]name -msgctxt "[chatroom]name" +#: ../cache/locales.php:106 ../cache/locales.php:116 ../cache/locales.php:156 +#: ../cache/locales.php:361 ../cache/locales.php:369 ../cache/locales.php:424 msgid "Name" msgstr "" -#: [chatroom]nickname [general]nickname [chatrooms]nickname +#: ../cache/locales.php:107 ../cache/locales.php:157 ../cache/locales.php:371 +#: ../cache/locales.php:425 msgid "Nickname" msgstr "" -#: [chatroom]autojoin_label +#: ../cache/locales.php:108 msgid "Do you want do join automaticaly this Chat Room ?" msgstr "" -#: [chatroom]bad_id [chatrooms]bad_id +#: ../cache/locales.php:109 ../cache/locales.php:372 msgid "Bad Chatroom ID" msgstr "" -#: [chatroom]empty_name [chatrooms]empty_name +#: ../cache/locales.php:110 ../cache/locales.php:373 msgid "Empty name" msgstr "" -#: [bookmarks]updated +#: ../cache/locales.php:111 ../cache/locales.php:380 msgid "Bookmarks updated" msgstr "" -#: [bookmarks]error -msgid "An error occured :" +#: ../cache/locales.php:112 +msgid "An error occured : " msgstr "" -#: [bookmarks]configure +#: ../cache/locales.php:113 msgid "Configure" msgstr "" -#: [url]add +#: ../cache/locales.php:114 msgid "Add a new URL" msgstr "" -#: [url]url +#: ../cache/locales.php:115 msgid "URL" msgstr "" -#: [url]name -msgctxt "[url]name" -msgid "Name" -msgstr "" - -#: [message]published +#: ../cache/locales.php:117 msgid "Message Published" msgstr "" -#: [message]encrypted +#: ../cache/locales.php:118 ../cache/locales.php:138 msgid "Encrypted message" msgstr "" -#: [message]composing [chats]composing +#: ../cache/locales.php:119 msgid "Composing..." msgstr "" -#: [message]paused [chats]paused +#: ../cache/locales.php:120 msgid "Paused..." msgstr "" -#: [message]gone +#: ../cache/locales.php:121 msgid "Contact gone" msgstr "" -#: [chat]attention +#: ../cache/locales.php:122 +#, php-format msgid "%s needs your attention" msgstr "" -#: [chat]placeholder +#: ../cache/locales.php:123 msgid "Your message here..." msgstr "" -#: [chat]smileys +#: ../cache/locales.php:124 msgid "Smileys" msgstr "" -#: [chat]empty_title [button]chat +#: ../cache/locales.php:125 ../cache/locales.php:139 msgid "Chat" msgstr "Chat" -#: [chat]empty_text +#: ../cache/locales.php:126 msgid "Discuss with your contacts" msgstr "" -#: [chat]frequent [chats]frequent -msgid "Frequent contacts" -msgstr "" - -#: [chatroom]members +#: ../cache/locales.php:127 msgid "Members" msgstr "" -#: [chatroom]connected [chatrooms]connected +#: ../cache/locales.php:128 ../cache/locales.php:376 msgid "Connected to the chatroom" msgstr "" -#: [chatroom]disconnected [chatrooms]disconnected +#: ../cache/locales.php:129 ../cache/locales.php:377 msgid "Disconnected from the chatroom" msgstr "" -#: [chatroom]config [group]configuration [page]configuration +#: ../cache/locales.php:130 ../cache/locales.php:200 ../cache/locales.php:469 msgid "Configuration" msgstr "Configuración" -#: [chatroom]config_saved +#: ../cache/locales.php:131 msgid "Configuration saved" msgstr "" -#: [chatroom]subject +#: ../cache/locales.php:132 msgid "Subject" msgstr "" -#: [chatroom]subject_changed +#: ../cache/locales.php:133 msgid "Subject changed" msgstr "" -#: [chats]empty_title -msgid "No chats yet..." +#: ../cache/locales.php:134 +msgid "Open a new conversation by clicking on the plus button bellow" msgstr "" -#: [chats]empty -msgid "Open a new conversation by clicking on the plus button bellow or visit the Contacts page." -msgstr "" - -#: [chats]add +#: ../cache/locales.php:135 msgid "Chat with a contact" msgstr "" -#: [chats]more +#: ../cache/locales.php:136 +msgid "Frequent contacts" +msgstr "" + +#: ../cache/locales.php:137 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 "" - -#: [config]general +#: ../cache/locales.php:140 msgid "General" msgstr "" -#: [config]language +#: ../cache/locales.php:141 msgid "Language" msgstr "Linguaxe" -#: [config]roster +#: ../cache/locales.php:142 msgid "Roster display" msgstr "" -#: [config]roster_show +#: ../cache/locales.php:143 msgid "Show the offline contacts" msgstr "" -#: [config]roster_hide +#: ../cache/locales.php:144 msgid "Hide the offline contacts" msgstr "" -#: [config]appearence +#: ../cache/locales.php:145 msgid "Appearence" msgstr "" -#: [config]info -msgid "This configuration is shared wherever you are connected" +#: ../cache/locales.php:146 +msgid "This configuration is shared wherever you are connected !" msgstr "" -#: [notifications]message +#: ../cache/locales.php:148 msgid "Notify on incoming message" msgstr "" -#: [notifications]desktop +#: ../cache/locales.php:149 msgid "Use desktop notifications" msgstr "" -#: [general]legend [general]general_title +#: ../cache/locales.php:150 +msgid "Data" +msgstr "" + +#: ../cache/locales.php:151 +msgid "Cache" +msgstr "" + +#: ../cache/locales.php:152 ../cache/locales.php:218 ../cache/locales.php:466 +msgid "Contacts" +msgstr "" + +#: ../cache/locales.php:153 ../cache/locales.php:480 +msgid "Posts" +msgstr "" + +#: ../cache/locales.php:154 +msgid "Messages" +msgstr "" + +#: ../cache/locales.php:155 ../cache/locales.php:423 msgid "General Informations" msgstr "" -#: [general]name [public_groups]name [chatrooms]name -msgid "Name" -msgstr "" - -#: [general]date_of_birth +#: ../cache/locales.php:158 ../cache/locales.php:427 msgid "Date of Birth" msgstr "" -#: [general]gender +#: ../cache/locales.php:159 ../cache/locales.php:428 msgid "Gender" msgstr "" -#: [general]marital +#: ../cache/locales.php:160 ../cache/locales.php:429 msgid "Marital Status" msgstr "" -#: [general]email +#: ../cache/locales.php:161 ../cache/locales.php:426 msgid "Email" msgstr "" -#: [general]website +#: ../cache/locales.php:162 ../cache/locales.php:430 msgid "Website" msgstr "" -#: [general]about +#: ../cache/locales.php:163 ../cache/locales.php:431 msgid "About Me" msgstr "" -#: [general]accounts +#: ../cache/locales.php:164 msgid "Other Accounts" msgstr "" -#: [general]tune +#: ../cache/locales.php:165 msgid "Is Listening" msgstr "" -#: [position]legend [position]position_title +#: ../cache/locales.php:166 ../cache/locales.php:432 msgid "Geographic Position" msgstr "" -#: [position]locality +#: ../cache/locales.php:167 ../cache/locales.php:433 msgid "Locality" msgstr "" -#: [position]country +#: ../cache/locales.php:168 ../cache/locales.php:434 msgid "Country" msgstr "" -#: [mood]title +#: ../cache/locales.php:169 msgid "Mood" msgstr "" -#: [mood]im +#: ../cache/locales.php:170 msgid "I'm " msgstr "" -#: [listen]title +#: ../cache/locales.php:171 msgid "Listening" msgstr "" -#: [last]title +#: ../cache/locales.php:173 msgid "Last seen" msgstr "" -#: [client]title +#: ../cache/locales.php:174 msgid "Client Informations" msgstr "" -#: [explore]last_registered +#: ../cache/locales.php:175 msgid "Last registered" msgstr "" -#: [explore]explore +#: ../cache/locales.php:176 msgid "Find some new friends" msgstr "" -#: [edit]title [button]edit +#: ../cache/locales.php:177 ../cache/locales.php:533 msgid "Edit" msgstr "" -#: [edit]alias +#: ../cache/locales.php:178 msgid "Alias" msgstr "" -#: [edit]group +#: ../cache/locales.php:179 msgid "Group" msgstr "" -#: [edit]updated [roster]updated +#: ../cache/locales.php:180 ../cache/locales.php:400 msgid "Contact updated" msgstr "" -#: [delete]title +#: ../cache/locales.php:181 msgid "Are you sure?" msgstr "" -#: [delete]text -msgid "You are going to delete one of your contacts, please confirm your action" +#: ../cache/locales.php:182 +msgid "" +"You are going to delete one of your contacts, please confirm your action" msgstr "" -#: [age]years +#: ../cache/locales.php:183 +#, php-format msgid "%s years" msgstr "" -#: [blog]last +#: ../cache/locales.php:184 msgid "Last public post" msgstr "" -#: [subscription]to -msgid "You can see this contact status" -msgstr "" - -#: [subscription]to_button -msgid "Share my status" -msgstr "" - -#: [subscription]to_text -msgid "But this contact cannot see yours" -msgstr "" - -#: [subscription]from -msgid "You are not subscribed to this contact" -msgstr "" - -#: [subscription]from_button -msgid "Ask to subscribe" -msgstr "" - -#: [subscription]from_text -msgid "But this contact can still see if you are online" -msgstr "" - -#: [subscription]nil -msgid "No subscriptions" -msgstr "" - -#: [subscription]nil_button -msgid "Invite" -msgstr "" - -#: [subscription]nil_text -msgid "This contact is in your contact list but there is no subscriptions between the two accounts" -msgstr "" - -#: [group]subscribe +#: ../cache/locales.php:185 msgid "Subscribe" msgstr "" -#: [group]subscribed +#: ../cache/locales.php:186 msgid "Subscribed" msgstr "" -#: [group]unsubscribe +#: ../cache/locales.php:187 msgid "Unsubscribe" msgstr "" -#: [group]unsubscribe_text +#: ../cache/locales.php:188 msgid "You are going to unsubscribe from this Group" msgstr "" -#: [group]unsubscribed +#: ../cache/locales.php:189 msgid "Unsubscribed" msgstr "" -#: [group]share_label +#: ../cache/locales.php:190 msgid "Make your membership to this group public to your friends" msgstr "" -#: [group]label_label +#: ../cache/locales.php:191 msgid "Give a label for this group" msgstr "" -#: [group]sure +#: ../cache/locales.php:192 msgid "Are you sure ?" msgstr "" -#: [group]empty_text +#: ../cache/locales.php:194 msgid "Discover, follow and share" msgstr "" -#: [group]empty +#: ../cache/locales.php:195 msgid "Something bad happened to this group" msgstr "" -#: [group]config_saved +#: ../cache/locales.php:196 msgid "Group configuration saved" msgstr "" -#: [group]delete_title +#: ../cache/locales.php:197 msgid "Delete the group" msgstr "" -#: [group]delete_text -msgid "You are going to delete the following group. Please confirm your action." +#: ../cache/locales.php:198 +msgid "" +"You are going to delete the following group. Please confirm your action." msgstr "" -#: [group]delete_clean_text -msgid "It seems that this group doesn't exists anymore. Do you want to remove it from your subscriptions?" +#: ../cache/locales.php:199 +msgid "" +"It seems that this group doesn't exists anymore. Do you want to remove it " +"from your subscriptions?" msgstr "" -#: [group]counter -msgid "%s groups on this server" -msgstr "" - -#: [group]subscriptions [statistics]subscriptions +#: ../cache/locales.php:201 ../cache/locales.php:408 msgid "Subscriptions" msgstr "" -#: [group]servers -msgid "Groups servers" -msgstr "" - -#: [group]search_server -msgid "Search for a new server" -msgstr "" - -#: [group]help_info1 -msgid "Groups are the perfect way to share posts about topics that you like with all the other Movim's users." -msgstr "" - -#: [group]help_info2 -msgid "Choose a server and a Group and subscribe to it using the %s button in the header. You can also create a new one using the %s button." -msgstr "" - -#: [group]help_info3 -msgid "Done? You can now publish a new post in the Group by using the %s button." -msgstr "" - -#: [group]help_info4 -msgid "You will find a list of all your subscribed Groups in My Subscriptions and receive instantly all the new incoming posts in the %sNews%s page." -msgstr "" - -#: [groups]empty_title +#: ../cache/locales.php:202 ../cache/locales.php:290 msgid "Hello" msgstr "" -#: [groups]contact_post [hello]contact_post [menu]contact_post +#: ../cache/locales.php:203 ../cache/locales.php:225 ../cache/locales.php:291 msgid "Contact post" msgstr "" -#: [groups]empty_text1 -msgid "You don't have any subscriptions yet, select a group server above to start exploring." +#: ../cache/locales.php:204 +msgid "" +"You don't have any subscriptions yet, select a group server above to start " +"exploring." msgstr "" -#: [groups]empty_text2 +#: ../cache/locales.php:205 msgid "Subscribe to your favorite feeds by bookmarking them." msgstr "" -#: [groups]subscriptions +#: ../cache/locales.php:206 msgid "My Subscriptions" msgstr "" -#: [groups]add +#: ../cache/locales.php:207 msgid "Create a new Group" msgstr "" -#: [groups]name +#: ../cache/locales.php:208 msgid "Group name" msgstr "" -#: [groups]name_example +#: ../cache/locales.php:209 msgid "My Little Pony - Fan Club" msgstr "" -#: [groups]created +#: ../cache/locales.php:210 msgid "Group created successfully" msgstr "" -#: [groups]deleted +#: ../cache/locales.php:211 msgid "Group deleted successfully" msgstr "" -#: [groups]name_error +#: ../cache/locales.php:212 msgid "Please provide a valid group name (4 characters minimum)" msgstr "" -#: [groups]no_creation +#: ../cache/locales.php:213 msgid "You cannot create a new Group on this server" msgstr "" -#: [groups]sub +#: ../cache/locales.php:214 +#, php-format msgid "%s subscribers" msgstr "" -#: [groups]num +#: ../cache/locales.php:215 +#, php-format msgid "%s posts" msgstr "" -#: [groups]disco_error -msgid "This server doesn't exists" -msgstr "" - -#: [menu]all +#: ../cache/locales.php:216 msgid "All" msgstr "" -#: [menu]refresh +#: ../cache/locales.php:219 msgid "Refresh all the streams" msgstr "" -#: [roster]search -msgid "Search in your contacts" -msgstr "" - -#: [hello]active_contacts -msgid "Active contacts" -msgstr "" - -#: [hello]chat -msgid "Go on the Chat page" -msgstr "" - -#: [hello]news [page]news -msgid "News" -msgstr "" - -#: [hello]news_page -msgid "Read all theses articles on the News page" -msgstr "" - -#: [hello]blog_title -msgid "Visit your public blog" -msgstr "" - -#: [hello]blog_text -msgid "See your public posts and share them with all your contacts" -msgstr "" - -#: [hello]share_title -msgid "Universal share button" -msgstr "" - -#: [hello]share_text -msgid "Bookmark or drag and drop the following button in your toolbar and use it on all the pages you want to share on Movim" -msgstr "" - -#: [hello]share_button -msgid "Share on Movim" -msgstr "" - -#: [help]faq -msgid "Frequently Asked Questions" -msgstr "" - -#: [banner]title -msgid "What do the little banners refer to ?" -msgstr "" - -#: [banner]info1 -msgid "Thanks to these five little banners, you can quickly identitfy the level of confdentiality applied to the information you provide." -msgstr "" - -#: [banner]white -msgid "White, only you can see the information" -msgstr "" - -#: [banner]green -msgid "Green, you have chosen some contacts who can see your information" -msgstr "" - -#: [banner]orange -msgid "Orange, all your contact list can see your information" -msgstr "" - -#: [banner]red -msgid "Red, everybody in the XMPP network can see your information" -msgstr "" - -#: [banner]black -msgid "Black, the whole Internet can see your information" -msgstr "" - -#: [wiki]question -msgid "Looking for some documentation ?" -msgstr "" - -#: [wiki]button -msgid "Read the Wiki" -msgstr "" - -#: [ml]question -msgid "Talk with us by email ?" -msgstr "" - -#: [ml]button -msgid "Join the Mailing List" -msgstr "" - -#: [chatroom]question -msgid "Chat with the team ?" -msgstr "" - -#: [chatroom]button -msgid "Join the Chatroom" -msgstr "" - -#: [init]location -msgid "Location node created" -msgstr "" - -#: [init]bookmark -msgid "Bookmark node created" -msgstr "" - -#: [init]vcard4 -msgid "Profile node created" -msgstr "" - -#: [init]avatar -msgid "Avatar node created" -msgstr "" - -#: [init]subscriptions -msgid "Subscriptions node created" -msgstr "" - -#: [init]microblog -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 "" - -#: [error]jid -msgid "Invalid JID" -msgstr "" - -#: [error]empty_challenge -msgid "Empty Challenge from the server" -msgstr "" - -#: [error]dns -msgid "XMPP Domain error, your account is not a correct Jabber ID" -msgstr "" - -#: [error]data_missings -msgid "Some data are missing !" -msgstr "" - -#: [error]wrong_password -msgid "Wrong password" -msgstr "Contrasinal incorrecta" - -#: [error]internal -msgid "Internal server error" -msgstr "" - -#: [error]session -msgid "Session error" -msgstr "" - -#: [error]account_created -msgid "Account successfully created" -msgstr "" - -#: [error]xmpp_unauthorized -msgctxt "[error]xmpp_unauthorized" -msgid "Your XMPP server is unauthorized" -msgstr "" - -#: [error]mec_error -msgid "The server takes too much time to respond" -msgstr "" - -#: [error]too_old -msgid "Your web browser is too old to use with Movim." -msgstr "" - -#: [error]websocket -msgid "Movim cannot talk with the server, please try again later (Websocket connection error)" -msgstr "" - -#: [error]impossible -msgid "Impossible login" -msgstr "" - -#: [error]title -msgid "Oops!" -msgstr "" - -#: [error]default [visio]unknown_error -msgid "Unknown error" -msgstr "" - -#: [error]login_format -msgid "Invalid username format" -msgstr "" - -#: [error]password_format -msgid "Invalid password format" -msgstr "" - -#: [error]unauthorized -msgctxt "[error]unauthorized" -msgid "Your XMPP server is unauthorized" -msgstr "" - -#: [error]conflict -msgid "A Movim session is already open on an other device" -msgstr "" - -#: [error]wrong_account -msgid "Movim failed to authenticate. You entered wrong data" -msgstr "" - -#: [error]mechanism -msgid "Authentication mechanism not supported by Movim" -msgstr "" - -#: [error]fail_auth -msgid "The XMPP authentification failed" -msgstr "" - -#: [account]title [accounts]accounts_title -msgid "Accounts" -msgstr "" - -#: [form]username -msgid "My address" -msgstr "Meu Enderezo" - -#: [form]create_one -msgid "Create one !" -msgstr "" - -#: [form]another_account -msgid "Another account" -msgstr "" - -#: [form]no_account -msgid "No account yet ?" -msgstr "" - -#: [form]whitelist.info -msgid "You can login with accounts from theses servers" -msgstr "" - -#: [form]connected -msgid "Connected" -msgstr "" - -#: [form]population -msgid "Population" -msgstr "" - -#: [menu]empty_title -msgid "No news yet..." -msgstr "" - -#: [menu]empty -msgid "Welcome on your news feed, here you will see all the posts published by your contacts and in the groups you have subscribed." -msgstr "" - -#: [menu]refresh -msgid "Refreshing all the streams" -msgstr "" - -#: [menu]public -msgid "This post is public" -msgstr "" - -#: [affiliations]title -msgid "Manage your members" -msgstr "" - -#: [affiliations]get -msgid "Get the members" -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 "" - -#: [notifs]title -msgid "Pending Invitations" -msgstr "" - -#: [notifs]wants_to_talk -msgid "%s wants to talk with you" -msgstr "" - -#: [notifs]manage -msgid "Manage" -msgstr "" - -#: [post]news_feed -msgid "News Feed" -msgstr "" - -#: [post]placeholder -msgid "Discover and register to the groups you are interested in" -msgstr "" - -#: [post]preview [page]preview -msgid "Preview" -msgstr "" - -#: [post]help [page]help -msgid "Help" -msgstr "" - -#: [post]help_more -msgid "More help" -msgstr "" - -#: [post]help_manual -msgid "Markdown syntax manual" -msgstr "" - -#: [post]title -msgid "Title" -msgstr "" - -#: [post]content -msgid "Content" -msgstr "" - -#: [post]link -msgid "Link" -msgstr "" - -#: [post]tags -msgid "Tags" -msgstr "" - -#: [post]valid_url [publish]valid_url -msgid "Please enter a valid url" -msgstr "" - -#: [post]no_content_preview [publish]no_content_preview -msgid "No content to preview" -msgstr "" - -#: [post]no_content [publish]no_content [post]empty -msgid "No content" -msgstr "" - -#: [post]published -msgid "Post published" -msgstr "" - -#: [post]deleted -msgid "Post deleted" -msgstr "" - -#: [post]gallery -msgid "This picture will be added to your gallery" -msgstr "" - -#: [post]hot -msgid "What's Hot" -msgstr "" - -#: [post]hot_text -msgid "Posts recently published in Groups that you are not subscribed (yet)" -msgstr "" - -#: [post]new [publish]new -msgid "New post" -msgstr "" - -#: [post]embed_tip -msgid "You can also use services like Imgur or Flickr to host your picture and paste the link here." -msgstr "" - -#: [post]repost -msgid "This is a re-post from %s" -msgstr "" - -#: [post]repost_profile -msgid "See %s profile" -msgstr "" - -#: [post]public -msgid "Publish this post publicly?" -msgstr "" - -#: [post]blog_add -msgid "Post published on your blog" -msgstr "" - -#: [post]blog_remove -msgid "Post removed from your blog" -msgstr "" - -#: [post]delete_title [post]delete -msgid "Delete this post" -msgstr "" - -#: [post]delete_text -msgid "You are going to delete this post, please confirm your action" -msgstr "" - -#: [post]comments_disabled -msgid "Comments disabled" -msgstr "" - -#: [post]comment_published -msgid "Comment published" -msgstr "" - -#: [status]disconnect -msgid "Disconnect" -msgstr "" - -#: [status]here -msgid "Your status here !" -msgstr "" - -#: [status]updated -msgid "Status updated" -msgstr "" - -#: [status]status -msgid "Status" -msgstr "" - -#: [status]presence -msgid "Presence" -msgstr "" - -#: [status]online -msgid "Online with Movim" -msgstr "" - -#: [publish]title -msgid "Publish" -msgstr "" - -#: [publish]attach -msgid "Add a file or a picture to your post" -msgstr "" - -#: [publish]no_publication -msgid "You cannot publish a post on this Group" -msgstr "" - -#: [publish]form_filled -msgid "Some fields have been filled in. Do you still want to go back and loose their content?" -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 "" - -#: [rooms]empty_text1 -msgid "You don't have any chatroom yet." -msgstr "" - -#: [rooms]empty_text2 -msgid "Add one by clicking on the add button in the header." -msgstr "" - -#: [chatrooms]title -msgid "Chatrooms" -msgstr "" - -#: [chatrooms]name_placeholder -msgid "My Favorite Room" -msgstr "" - -#: [chatrooms]users -msgid "Users in the room" -msgstr "" - -#: [chatrooms]bad_nickname -msgid "Please enter a correct nickname (2 to 40 characters)" -msgstr "" - -#: [room]anonymous_title -msgid "Public chatroom" -msgstr "" - -#: [room]no_room -msgid "Please provide a room address" -msgstr "" - -#: [room]anonymous_text1 -msgid "You are currently logued as an anonymous user." -msgstr "" - -#: [room]anonymous_text2 -msgid "You can join using your own account or create one on the login page by loging out using the cross in the top-right corner." -msgstr "" - -#: [room]anonymous_login -msgid "Login on %s" -msgstr "" - -#: [room]nick -msgid "Your nickname" -msgstr "" - -#: [roster]ungrouped -msgid "Ungrouped" -msgstr "" - -#: [roster]show_disconnected -msgid "Show disconnected contacts" -msgstr "" - -#: [roster]hide_disconnected -msgid "Hide disconnected contacts" -msgstr "" - -#: [roster]show_group -msgid "Show group %s" -msgstr "" - -#: [roster]hide_group -msgid "Hide group %s" -msgstr "" - -#: [roster]jid_error -msgid "Please enter a valid Jabber ID" -msgstr "" - -#: [roster]no_contacts_title -msgid "No contacts ?" -msgstr "" - -#: [roster]no_contacts_text -msgid "You can add one using the + button bellow" -msgstr "" - -#: [roster]show_hide -msgid "Show/Hide" -msgstr "" - -#: [roster]add_contact_info1 -msgid "Enter the Jabber ID of your contact." -msgstr "" - -#: [roster]add_contact_info2 -msgid "Press enter to validate." -msgstr "" - -#: [roster]jid -msgid "JID" -msgstr "" - -#: [roster]results -msgid "Results" -msgstr "" - -#: [roster]added -msgid "Contact added" -msgstr "" - -#: [roster]deleted -msgid "Contact deleted" -msgstr "" - -#: [roster]search +#: ../cache/locales.php:220 ../cache/locales.php:402 msgid "Search" msgstr "" -#: [share]error +#: ../cache/locales.php:221 +msgid "Go on the Chat page" +msgstr "" + +#: ../cache/locales.php:222 +msgid "Read all theses articles on the News page" +msgstr "" + +#: ../cache/locales.php:223 +msgid "Visit your public blog" +msgstr "" + +#: ../cache/locales.php:224 +msgid "See your public posts and share them with all your contacts" +msgstr "" + +#: ../cache/locales.php:226 +msgid "Universal share button" +msgstr "" + +#: ../cache/locales.php:227 +msgid "" +"Bookmark or drag and drop the following button in your toolbar and use it on " +"all the pages you want to share on Movim" +msgstr "" + +#: ../cache/locales.php:228 +msgid "Share on Movim" +msgstr "" + +#: ../cache/locales.php:229 +msgid "Frequently Asked Questions" +msgstr "" + +#: ../cache/locales.php:230 +msgid "What do the little banners refer to ?" +msgstr "" + +#: ../cache/locales.php:231 +msgid "" +"Thanks to these five little banners, you can quickly identitfy the level of " +"confdentiality applied to the information you provide." +msgstr "" + +#: ../cache/locales.php:232 +msgid "White, only you can see the information" +msgstr "" + +#: ../cache/locales.php:233 +msgid "Green, you have chosen some contacts who can see your information" +msgstr "" + +#: ../cache/locales.php:234 +msgid "Orange, all your contact list can see your information" +msgstr "" + +#: ../cache/locales.php:235 +msgid "Red, everybody in the XMPP network can see your information" +msgstr "" + +#: ../cache/locales.php:236 +msgid "Black, the whole Internet can see your information" +msgstr "" + +#: ../cache/locales.php:237 +msgid "Looking for some documentation ?" +msgstr "" + +#: ../cache/locales.php:238 +msgid "Read the Wiki" +msgstr "" + +#: ../cache/locales.php:239 +msgid "Talk with us by email ?" +msgstr "" + +#: ../cache/locales.php:240 +msgid "Join the Mailing List" +msgstr "" + +#: ../cache/locales.php:241 +msgid "Chat with the team ?" +msgstr "" + +#: ../cache/locales.php:242 +msgid "Join the Chatroom" +msgstr "" + +#: ../cache/locales.php:243 +msgid "Location node created" +msgstr "" + +#: ../cache/locales.php:244 +msgid "Bookmark node created" +msgstr "" + +#: ../cache/locales.php:245 +msgid "Profile node created" +msgstr "" + +#: ../cache/locales.php:246 +msgid "Avatar node created" +msgstr "" + +#: ../cache/locales.php:247 +msgid "Subscriptions node created" +msgstr "" + +#: ../cache/locales.php:248 +msgid "Microblog node created" +msgstr "" + +#: ../cache/locales.php:249 +msgid "Location" +msgstr "" + +#: ../cache/locales.php:250 +msgid "Wrong position" +msgstr "" + +#: ../cache/locales.php:251 +msgid "Location updated" +msgstr "" + +#: ../cache/locales.php:252 +msgid "Update my position" +msgstr "" + +#: ../cache/locales.php:253 +msgid "Wrong username" +msgstr "" + +#: ../cache/locales.php:254 +msgid "Invalid JID" +msgstr "" + +#: ../cache/locales.php:255 +msgid "Empty Challenge from the server" +msgstr "" + +#: ../cache/locales.php:256 +msgid "XMPP Domain error, your account is not a correct Jabber ID" +msgstr "" + +#: ../cache/locales.php:257 +msgid "Some data are missing !" +msgstr "" + +#: ../cache/locales.php:258 +msgid "Wrong password" +msgstr "Contrasinal incorrecta" + +#: ../cache/locales.php:259 +msgid "Internal server error" +msgstr "" + +#: ../cache/locales.php:260 +msgid "Session error" +msgstr "" + +#: ../cache/locales.php:261 +msgid "Account successfully created" +msgstr "" + +#: ../cache/locales.php:262 ../cache/locales.php:271 +msgid "Your XMPP server is unauthorized" +msgstr "" + +#: ../cache/locales.php:263 +msgid "The server takes too much time to respond" +msgstr "" + +#: ../cache/locales.php:264 +msgid "Your web browser is too old to use with Movim." +msgstr "" + +#: ../cache/locales.php:265 +msgid "" +"Movim cannot talk with the server, please try again later (Websocket " +"connection error)" +msgstr "" + +#: ../cache/locales.php:266 +msgid "Impossible login" +msgstr "" + +#: ../cache/locales.php:267 +msgid "Oops!" +msgstr "" + +#: ../cache/locales.php:268 ../cache/locales.php:449 ../cache/locales.php:455 +msgid "Unknown error" +msgstr "" + +#: ../cache/locales.php:269 +msgid "Invalid username format" +msgstr "" + +#: ../cache/locales.php:270 +msgid "Invalid password format" +msgstr "" + +#: ../cache/locales.php:272 +msgid "A Movim session is already open on an other device" +msgstr "" + +#: ../cache/locales.php:273 +msgid "Movim failed to authenticate. You entered wrong data" +msgstr "" + +#: ../cache/locales.php:274 +msgid "Authentication mechanism not supported by Movim" +msgstr "" + +#: ../cache/locales.php:275 +msgid "The XMPP authentification failed" +msgstr "" + +#: ../cache/locales.php:276 +#, php-format +msgid "" +"You can login with Facebook (chat only) using %syour.id@chat.facebook.com%s " +"and your password" +msgstr "" + +#: ../cache/locales.php:277 +#, php-format +msgid "%sGmail accounts are also compatible%s but are not fully supported" +msgstr "" + +#: ../cache/locales.php:278 +msgid "You can login using your favorite Jabber account" +msgstr "" + +#: ../cache/locales.php:279 +msgid "or with our demonstration account" +msgstr "" + +#: ../cache/locales.php:280 ../cache/locales.php:435 +msgid "Accounts" +msgstr "" + +#: ../cache/locales.php:281 +msgid "My address" +msgstr "Meu Enderezo" + +#: ../cache/locales.php:283 +msgid "Create one !" +msgstr "" + +#: ../cache/locales.php:284 +msgid "No account yet ?" +msgstr "" + +#: ../cache/locales.php:285 +msgid "Another account" +msgstr "" + +#: ../cache/locales.php:286 +msgid "You can login with accounts from theses servers" +msgstr "" + +#: ../cache/locales.php:287 +msgid "Connected" +msgstr "" + +#: ../cache/locales.php:288 +msgid "Population" +msgstr "" + +#: ../cache/locales.php:289 +msgid "Bad nickname (between 4 and 40 characters)" +msgstr "" + +#: ../cache/locales.php:292 +msgid "" +"Welcome on your news feed, here you will see all the posts published in the " +"groups you have subscribed." +msgstr "" + +#: ../cache/locales.php:293 +msgid "Refreshing all the streams" +msgstr "" + +#: ../cache/locales.php:294 +msgid "This post is public" +msgstr "" + +#: ../cache/locales.php:295 +msgid "Manage your members" +msgstr "" + +#: ../cache/locales.php:296 +msgid "Get the members" +msgstr "" + +#: ../cache/locales.php:297 +msgid "Affiliations saved" +msgstr "" + +#: ../cache/locales.php:298 +msgid "Manage your subscriptions" +msgstr "" + +#: ../cache/locales.php:299 +msgid "Manage the subscriptions" +msgstr "" + +#: ../cache/locales.php:300 +msgid "Get the subscriptions" +msgstr "" + +#: ../cache/locales.php:301 +msgid "Subscriptions saved" +msgstr "" + +#: ../cache/locales.php:302 +msgid "Pending Invitations" +msgstr "" + +#: ../cache/locales.php:303 +#, php-format +msgid "%s wants to talk with you" +msgstr "" + +#: ../cache/locales.php:304 +msgid "Manage" +msgstr "" + +#: ../cache/locales.php:305 ../cache/locales.php:338 +msgid "News Feed" +msgstr "" + +#: ../cache/locales.php:306 ../cache/locales.php:339 +msgid "Discover and register to the groups you are interested in" +msgstr "" + +#: ../cache/locales.php:307 ../cache/locales.php:340 ../cache/locales.php:482 +msgid "Preview" +msgstr "" + +#: ../cache/locales.php:308 ../cache/locales.php:341 ../cache/locales.php:478 +msgid "Help" +msgstr "" + +#: ../cache/locales.php:309 ../cache/locales.php:342 +msgid "More help" +msgstr "" + +#: ../cache/locales.php:310 ../cache/locales.php:343 +msgid "Markdown syntax manual" +msgstr "" + +#: ../cache/locales.php:311 ../cache/locales.php:344 ../cache/locales.php:681 +msgid "Title" +msgstr "" + +#: ../cache/locales.php:312 ../cache/locales.php:345 +msgid "Content" +msgstr "" + +#: ../cache/locales.php:313 ../cache/locales.php:346 +msgid "Link" +msgstr "" + +#: ../cache/locales.php:314 ../cache/locales.php:347 +msgid "Tags" +msgstr "" + +#: ../cache/locales.php:315 ../cache/locales.php:348 +msgid "Please enter a valid url" +msgstr "" + +#: ../cache/locales.php:316 ../cache/locales.php:349 +msgid "No content to preview" +msgstr "" + +#: ../cache/locales.php:317 ../cache/locales.php:350 ../cache/locales.php:687 +msgid "No content" +msgstr "" + +#: ../cache/locales.php:318 ../cache/locales.php:351 +msgid "Post published" +msgstr "" + +#: ../cache/locales.php:319 ../cache/locales.php:352 +msgid "Post deleted" +msgstr "" + +#: ../cache/locales.php:320 ../cache/locales.php:353 +msgid "This picture will be added to your gallery" +msgstr "" + +#: ../cache/locales.php:321 ../cache/locales.php:354 +msgid "What's Hot" +msgstr "" + +#: ../cache/locales.php:322 ../cache/locales.php:355 +msgid "New post" +msgstr "" + +#: ../cache/locales.php:323 ../cache/locales.php:357 +msgid "" +"You can also use services like Imgur or Flickr to host your picture and " +"paste the link here." +msgstr "" + +#: ../cache/locales.php:324 +#, php-format +msgid "This is a re-post from %s" +msgstr "" + +#: ../cache/locales.php:325 +#, php-format +msgid "See %s profile" +msgstr "" + +#: ../cache/locales.php:326 +msgid "Publish this post on your public feed?" +msgstr "" + +#: ../cache/locales.php:327 +msgid "Post published on your blog" +msgstr "" + +#: ../cache/locales.php:328 +msgid "Post removed from your blog" +msgstr "" + +#: ../cache/locales.php:329 ../cache/locales.php:701 +msgid "Delete this post" +msgstr "" + +#: ../cache/locales.php:330 +msgid "You are going to delete this post, please confirm your action" +msgstr "" + +#: ../cache/locales.php:331 +msgid "Comments disabled" +msgstr "" + +#: ../cache/locales.php:332 +msgid "Comment published" +msgstr "" + +#: ../cache/locales.php:333 +msgid "Disconnect" +msgstr "" + +#: ../cache/locales.php:334 +msgid "Your status here !" +msgstr "" + +#: ../cache/locales.php:335 +msgid "Status updated" +msgstr "" + +#: ../cache/locales.php:336 +msgid "Status" +msgstr "" + +#: ../cache/locales.php:337 +msgid "Presence" +msgstr "" + +#: ../cache/locales.php:356 +msgid "Publish" +msgstr "" + +#: ../cache/locales.php:358 +msgid "You cannot publish a post on this Group" +msgstr "" + +#: ../cache/locales.php:359 +msgid "" +"Some fields have been filled in. Do you still want to go back and loose " +"their content?" +msgstr "" + +#: ../cache/locales.php:360 +msgid "Shared" +msgstr "" + +#: ../cache/locales.php:362 +#, php-format +msgid "%s has been added to your public groups" +msgstr "" + +#: ../cache/locales.php:363 +#, php-format +msgid "%s has been removed from your public groups" +msgstr "" + +#: ../cache/locales.php:364 +msgid "Add a chatroom" +msgstr "" + +#: ../cache/locales.php:365 +msgid "You don't have any chatroom yet." +msgstr "" + +#: ../cache/locales.php:366 +msgid "Add one by clicking on the add button in the header." +msgstr "" + +#: ../cache/locales.php:367 +msgid "Chatrooms" +msgstr "" + +#: ../cache/locales.php:370 +msgid "My Favorite Room" +msgstr "" + +#: ../cache/locales.php:374 +msgid "Remove a chatroom" +msgstr "" + +#: ../cache/locales.php:375 +msgid "" +"You are going to remove the following chatroom. Please confirm your action." +msgstr "" + +#: ../cache/locales.php:378 +msgid "Users in the room" +msgstr "" + +#: ../cache/locales.php:379 +msgid "Please enter a correct nickname (6 to 40 characters)" +msgstr "" + +#: ../cache/locales.php:381 +msgid "Public chatroom" +msgstr "" + +#: ../cache/locales.php:382 +msgid "Please provide a room address" +msgstr "" + +#: ../cache/locales.php:383 +msgid "You are currently logued as an anonymous user." +msgstr "" + +#: ../cache/locales.php:384 +msgid "" +"You can join using your own account or create one on the login page by " +"loging out using the cross in the top-right corner." +msgstr "" + +#: ../cache/locales.php:385 +#, php-format +msgid "Login on %s" +msgstr "" + +#: ../cache/locales.php:386 +msgid "Your nickname" +msgstr "" + +#: ../cache/locales.php:387 +msgid "Ungrouped" +msgstr "" + +#: ../cache/locales.php:388 +msgid "Show disconnected contacts" +msgstr "" + +#: ../cache/locales.php:389 +msgid "Hide disconnected contacts" +msgstr "" + +#: ../cache/locales.php:390 +#, php-format +msgid "Show group %s" +msgstr "" + +#: ../cache/locales.php:391 +#, php-format +msgid "Hide group %s" +msgstr "" + +#: ../cache/locales.php:392 +msgid "Please enter a valid Jabber ID" +msgstr "" + +#: ../cache/locales.php:393 +msgid "" +"No contacts ? You can add one using the + button bellow or going to the " +"Explore page" +msgstr "" + +#: ../cache/locales.php:394 +msgid "Show/Hide" +msgstr "" + +#: ../cache/locales.php:395 +msgid "Enter the Jabber ID of your contact." +msgstr "" + +#: ../cache/locales.php:396 +msgid "Press enter to validate." +msgstr "" + +#: ../cache/locales.php:397 +msgid "JID" +msgstr "" + +#: ../cache/locales.php:398 +msgid "Results" +msgstr "" + +#: ../cache/locales.php:399 +msgid "Contact added" +msgstr "" + +#: ../cache/locales.php:401 +msgid "Contact deleted" +msgstr "" + +#: ../cache/locales.php:403 msgid "This is not a valid url" msgstr "" -#: [share]success +#: ../cache/locales.php:404 msgid "Sharing the URL" msgstr "" -#: [statistics]title +#: ../cache/locales.php:405 msgid "Statistics" msgstr "" -#: [statistics]since +#: ../cache/locales.php:406 msgid "Since" msgstr "" -#: [statistics]sessions +#: ../cache/locales.php:407 msgid "Sessions" msgstr "" -#: [statistics]monthly_sub +#: ../cache/locales.php:409 msgid "Monthly Subscriptions" msgstr "" -#: [statistics]monthly_sub_cum +#: ../cache/locales.php:410 msgid "Monthly Subscriptions Cumulated" msgstr "" -#: [subscribe]info -msgid "Movim is a decentralized social network, before creating a new account you need to choose a server to register." +#: ../cache/locales.php:412 +msgid "" +"Movim is a decentralized social network, before creating a new account you " +"need to choose a server to register." msgstr "" -#: [subscribe]server_question +#: ../cache/locales.php:413 msgid "Your server here ?" msgstr "" -#: [subscribe]server_contact +#: ../cache/locales.php:414 msgid "Contact us to add yours to the officially supported servers list" msgstr "" -#: [feed]nope +#: ../cache/locales.php:416 msgid "No public feed for this contact" msgstr "" -#: [feed]nope_contact +#: ../cache/locales.php:417 msgid "No contact specified" msgstr "" -#: [upload]title -msgid "Upload a file" -msgstr "" - -#: [upload]choose -msgid "Choose a file to upload" -msgstr "" - -#: [vcard]title [page]profile +#: ../cache/locales.php:418 ../cache/locales.php:473 msgid "Profile" msgstr "" -#: [vcard]updated +#: ../cache/locales.php:419 msgid "Profile Updated" msgstr "" -#: [vcard]not_updated +#: ../cache/locales.php:420 msgid "Profile Not Updated" msgstr "" -#: [vcard]public +#: ../cache/locales.php:421 msgid "Your profile is now public" msgstr "" -#: [vcard]restricted +#: ../cache/locales.php:422 msgid "Your profile is now restricted" msgstr "" -#: [general]nickname -msgctxt "[general]nickname" -msgid "Nickname" -msgstr "" - -#: [accounts]twitter +#: ../cache/locales.php:436 msgid "Twitter" msgstr "" -#: [accounts]skype +#: ../cache/locales.php:437 msgid "Skype" msgstr "" -#: [accounts]yahoo +#: ../cache/locales.php:438 msgid "Yahoo" msgstr "" -#: [accounts]accounts_nickname -msgctxt "[accounts]accounts_nickname" -msgid "Nickname" -msgstr "" - -#: [accounts]accounts_yahoo -msgid "Yahoo Account" -msgstr "" - -#: [privacy]privacy_title +#: ../cache/locales.php:439 msgid "Privacy Level" msgstr "" -#: [privacy]privacy_question +#: ../cache/locales.php:440 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." +#: ../cache/locales.php:441 +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." msgstr "" -#: [save]submit [button]submit -msgid "Submit" -msgstr "Enviar" - -#: [save]reset [button]reset -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 +#: ../cache/locales.php:442 msgid "Call" msgstr "" -#: [visio]hang_up +#: ../cache/locales.php:443 msgid "Hang up" msgstr "" -#: [visio]connection +#: ../cache/locales.php:444 msgid "Connection" msgstr "" -#: [global]no_js +#: ../cache/locales.php:445 ../cache/locales.php:451 +msgid "Hung up" +msgstr "" + +#: ../cache/locales.php:446 ../cache/locales.php:452 +msgid "Your contact is busy" +msgstr "" + +#: ../cache/locales.php:447 ../cache/locales.php:453 +msgid "Declined" +msgstr "" + +#: ../cache/locales.php:448 ../cache/locales.php:454 +msgid "Remote application incompatible" +msgstr "" + +#: ../cache/locales.php:450 ../cache/locales.php:456 +msgid "Is calling you" +msgstr "" + +#: ../cache/locales.php:457 msgid "You don't have javascript enabled. Good luck with that." msgstr "" -#: [global]description -msgid "Movim is a kickass distributed social networking platform that protect your privacy an comes with a set of awesome features." +#: ../cache/locales.php:458 +msgid "" +"Movim is a kickass distributed social networking platform that protect your " +"privacy an comes with a set of awesome features." msgstr "" -#: [page]administration +#: ../cache/locales.php:459 msgid "Administration" msgstr "" -#: [page]home +#: ../cache/locales.php:460 msgid "Home" msgstr "Inicio" -#: [page]discover +#: ../cache/locales.php:461 msgid "Discover" msgstr "" -#: [page]explore +#: ../cache/locales.php:462 msgid "Explore" msgstr "" -#: [page]account_creation +#: ../cache/locales.php:463 msgid "Account Creation" msgstr "Creación dunha Conta" -#: [page]avatar +#: ../cache/locales.php:464 +msgid "News" +msgstr "" + +#: ../cache/locales.php:465 msgid "Avatar" msgstr "" -#: [page]chats +#: ../cache/locales.php:467 msgid "Chats" msgstr "" -#: [page]server +#: ../cache/locales.php:470 msgid "Server" msgstr "" -#: [page]public_groups +#: ../cache/locales.php:471 msgid "Public Groups" msgstr "" -#: [page]viewer +#: ../cache/locales.php:472 msgid "Viewer" msgstr "" -#: [page]media +#: ../cache/locales.php:474 msgid "Media" msgstr "" -#: [page]blog +#: ../cache/locales.php:475 msgid "Blog" msgstr "" -#: [page]about +#: ../cache/locales.php:476 msgid "About" msgstr "" -#: [page]login +#: ../cache/locales.php:477 msgid "Login" msgstr "" -#: [page]feed +#: ../cache/locales.php:479 msgid "Feed" msgstr "" -#: [page]gallery +#: ../cache/locales.php:481 msgid "Gallery" msgstr "" -#: [page]visio +#: ../cache/locales.php:483 msgid "Visio-conference" msgstr "" -#: [page]pods +#: ../cache/locales.php:484 msgid "Pods" msgstr "" -#: [page]share +#: ../cache/locales.php:485 msgid "Share" msgstr "" -#: [page]room +#: ../cache/locales.php:486 msgid "Room" msgstr "" -#: [error]error +#: ../cache/locales.php:487 +#, php-format msgid "Error: %s" msgstr "" -#: [error]cannot_load_file +#: ../cache/locales.php:488 +#, php-format msgid "Cannot load file '%s'" msgstr "Non pode cargarse o arquivo '%s'" -#: [error]route +#: ../cache/locales.php:489 +#, php-format msgid "Route error, please set all the parameters for the page %s" -msgstr "Erro de ruta, por favor, coloque todos os parámetros para a páxina %s" +msgstr "" +"Erro de ruta, por favor, coloque todos os parámetros para a páxina %s" -#: [error]widget_load_error +#: ../cache/locales.php:490 +#, php-format msgid "Requested widget '%s' doesn't exist." msgstr "" -#: [error]widget_call_error +#: ../cache/locales.php:491 +#, php-format msgid "Requested event '%s' not registered." msgstr "" -#: [error]whoops +#: ../cache/locales.php:492 msgid "Whoops!" msgstr "" -#: [error]media_not_found +#: ../cache/locales.php:493 msgid "It seem that you don't have any pictures here?" msgstr "" -#: [error]media_ask_upload +#: ../cache/locales.php:494 msgid "You can try to upload a couple by going to the Media page" msgstr "" -#: [title]about +#: ../cache/locales.php:495 +#, php-format msgid "%s - About" msgstr "" -#: [title]account +#: ../cache/locales.php:496 +#, php-format msgid "%s - Account" msgstr "" -#: [title]administration +#: ../cache/locales.php:497 +#, php-format msgid "%s - Administration Panel" msgstr "" -#: [title]blog +#: ../cache/locales.php:498 +#, php-format msgid "%s - Blog" msgstr "" -#: [title]configuration +#: ../cache/locales.php:499 +#, php-format msgid "%s - Configuration" msgstr "Configuración de %s" -#: [title]discover +#: ../cache/locales.php:500 +#, php-format msgid "%s - Discover" msgstr "" -#: [title]explore +#: ../cache/locales.php:501 +#, php-format msgid "%s - Explore" msgstr "" -#: [title]help +#: ../cache/locales.php:502 +#, php-format msgid "%s - Help Page" msgstr "" -#: [title]login +#: ../cache/locales.php:503 +#, php-format msgid "%s - Login to Movim" msgstr "%s - Iniciar a MOVIM" -#: [title]main +#: ../cache/locales.php:504 +#, php-format msgid "%s - Welcome to Movim" msgstr "%s - Benvindo ao MOVIM" -#: [title]media +#: ../cache/locales.php:505 +#, php-format msgid "%s - Media" msgstr "" -#: [title]news +#: ../cache/locales.php:506 +#, php-format msgid "%s - News" msgstr "" -#: [title]node_configuration +#: ../cache/locales.php:507 +#, php-format msgid "%s - Group Configuration" msgstr "" -#: [title]node +#: ../cache/locales.php:508 +#, php-format msgid "%s - Group" msgstr "" -#: [title]not_found +#: ../cache/locales.php:509 +#, php-format msgid "%s - 404" msgstr "" -#: [title]profile +#: ../cache/locales.php:510 +#, php-format msgid "%s - Profile" msgstr "" -#: [title]server +#: ../cache/locales.php:511 +#, php-format msgid "%s - Server" msgstr "" -#: [button]validate +#: ../cache/locales.php:512 msgid "Validate" msgstr "" -#: [button]refresh +#: ../cache/locales.php:513 msgid "Refresh" msgstr "" -#: [button]add +#: ../cache/locales.php:514 msgid "Add" msgstr "" -#: [button]delete +#: ../cache/locales.php:515 msgid "Delete" msgstr "" -#: [button]cancel +#: ../cache/locales.php:516 +msgid "Remove" +msgstr "" + +#: ../cache/locales.php:517 msgid "Cancel" msgstr "" -#: [button]close +#: ../cache/locales.php:518 msgid "Close" msgstr "" -#: [button]update +#: ../cache/locales.php:519 msgid "Update" msgstr "" -#: [button]updating +#: ../cache/locales.php:520 msgid "Updating" msgstr "" -#: [button]submitting +#: ../cache/locales.php:521 +msgid "Submit" +msgstr "Enviar" + +#: ../cache/locales.php:522 msgid "Submitting" msgstr "" -#: [button]register +#: ../cache/locales.php:523 +msgid "Reset" +msgstr "Restablecer" + +#: ../cache/locales.php:524 msgid "Register" msgstr "" -#: [button]unregister +#: ../cache/locales.php:525 msgid "Unregister" msgstr "" -#: [button]save +#: ../cache/locales.php:526 msgid "Save" msgstr "" -#: [button]clear +#: ../cache/locales.php:527 msgid "Clear" msgstr "" -#: [button]upload +#: ../cache/locales.php:528 msgid "Upload" msgstr "" -#: [button]come_in +#: ../cache/locales.php:529 msgid "Come in!" msgstr "Entra!" -#: [button]connecting +#: ../cache/locales.php:530 msgid "Connecting" msgstr "" -#: [button]bool_yes +#: ../cache/locales.php:531 msgid "Yes" msgstr "" -#: [button]bool_no +#: ../cache/locales.php:532 msgid "No" msgstr "" -#: [button]return +#: ../cache/locales.php:534 msgid "Return" msgstr "" -#: [button]accept +#: ../cache/locales.php:535 msgid "Accept" msgstr "" -#: [button]refuse +#: ../cache/locales.php:536 msgid "Refuse" msgstr "" -#: [button]next +#: ../cache/locales.php:537 msgid "Next" msgstr "" -#: [button]previous +#: ../cache/locales.php:538 msgid "Previous" msgstr "" -#: [step]step +#: ../cache/locales.php:539 +#, php-format msgid "Step %s" msgstr "" -#: [day]title +#: ../cache/locales.php:542 msgid "Day" msgstr "" -#: [day]monday +#: ../cache/locales.php:543 msgid "Monday" msgstr "Luns" -#: [day]tuesday +#: ../cache/locales.php:544 msgid "Tuesday" msgstr "Martes" -#: [day]wednesday +#: ../cache/locales.php:545 msgid "Wednesday" msgstr "Mércores" -#: [day]thursday +#: ../cache/locales.php:546 msgid "Thursday" msgstr "Xoves" -#: [day]friday +#: ../cache/locales.php:547 msgid "Friday" msgstr "Venres" -#: [day]saturday +#: ../cache/locales.php:548 msgid "Saturday" msgstr "Sábado" -#: [day]sunday +#: ../cache/locales.php:549 msgid "Sunday" msgstr "" -#: [gender]nil -msgctxt "[gender]nil" +#: ../cache/locales.php:550 ../cache/locales.php:559 msgid "None" msgstr "" -#: [gender]male +#: ../cache/locales.php:551 msgid "Male" msgstr "" -#: [gender]female +#: ../cache/locales.php:552 msgid "Female" msgstr "" -#: [gender]other +#: ../cache/locales.php:553 msgid "Other" msgstr "" -#: [client]bot +#: ../cache/locales.php:554 msgid "Bot" msgstr "" -#: [client]desktop +#: ../cache/locales.php:555 msgid "Desktop" msgstr "" -#: [client]phone +#: ../cache/locales.php:556 msgid "Phone" msgstr "" -#: [client]web +#: ../cache/locales.php:557 msgid "Web" msgstr "" -#: [client]registered +#: ../cache/locales.php:558 msgid "Registered" msgstr "" -#: [marital]nil -msgctxt "[marital]nil" -msgid "None" -msgstr "" - -#: [marital]single +#: ../cache/locales.php:560 msgid "Single" msgstr "" -#: [marital]relationship +#: ../cache/locales.php:561 msgid "In a relationship" msgstr "" -#: [marital]married +#: ../cache/locales.php:562 msgid "Married" msgstr "" -#: [marital]divorced +#: ../cache/locales.php:563 msgid "Divorced" msgstr "" -#: [marital]widowed +#: ../cache/locales.php:564 msgid "Widowed" msgstr "" -#: [marital]cohabiting +#: ../cache/locales.php:565 msgid "Cohabiting" msgstr "" -#: [marital]union +#: ../cache/locales.php:566 msgid "Civil Union" msgstr "" -#: [flag]white +#: ../cache/locales.php:567 msgid "Not shared" msgstr "" -#: [flag]green +#: ../cache/locales.php:568 msgid "Shared with one contact" msgstr "" -#: [flag]orange +#: ../cache/locales.php:569 msgid "Shared with all contacts" msgstr "" -#: [flag]red +#: ../cache/locales.php:570 msgid "Shared with the XMPP network" msgstr "" -#: [flag]black +#: ../cache/locales.php:571 msgid "Shared with the whole Internet" msgstr "" -#: [presence]online +#: ../cache/locales.php:572 msgid "Online" msgstr "" -#: [presence]away +#: ../cache/locales.php:573 msgid "Away" msgstr "Fóra" -#: [presence]dnd +#: ../cache/locales.php:574 msgid "Do Not Disturb" msgstr "" -#: [presence]xa +#: ../cache/locales.php:575 msgid "Extended Away" msgstr "" -#: [presence]offline +#: ../cache/locales.php:576 msgid "Offline" msgstr "" -#: [presence]error +#: ../cache/locales.php:577 msgid "Error" msgstr "" -#: [mood]afraid +#: ../cache/locales.php:578 msgid "afraid" msgstr "" -#: [mood]amazed +#: ../cache/locales.php:579 msgid "amazed" msgstr "" -#: [mood]amorous +#: ../cache/locales.php:580 msgid "amorous" msgstr "" -#: [mood]angry +#: ../cache/locales.php:581 msgid "angry" msgstr "" -#: [mood]annoyed +#: ../cache/locales.php:582 msgid "annoyed" msgstr "" -#: [mood]anxious +#: ../cache/locales.php:583 msgid "anxious" msgstr "" -#: [mood]aroused +#: ../cache/locales.php:584 msgid "aroused" msgstr "" -#: [mood]ashamed +#: ../cache/locales.php:585 msgid "ashamed" msgstr "" -#: [mood]bored +#: ../cache/locales.php:586 msgid "bored" msgstr "" -#: [mood]brave +#: ../cache/locales.php:587 msgid "brave" msgstr "" -#: [mood]calm +#: ../cache/locales.php:588 msgid "calm" msgstr "" -#: [mood]cautious +#: ../cache/locales.php:589 msgid "cautious" msgstr "" -#: [mood]cold +#: ../cache/locales.php:590 msgid "cold" msgstr "" -#: [mood]confident +#: ../cache/locales.php:591 msgid "confident" msgstr "" -#: [mood]confused +#: ../cache/locales.php:592 msgid "confused" msgstr "" -#: [mood]contemplative +#: ../cache/locales.php:593 msgid "contemplative" msgstr "" -#: [mood]contented +#: ../cache/locales.php:594 msgid "contented" msgstr "" -#: [mood]cranky +#: ../cache/locales.php:595 msgid "cranky" msgstr "" -#: [mood]crazy +#: ../cache/locales.php:596 msgid "crazy" msgstr "" -#: [mood]creative +#: ../cache/locales.php:597 msgid "creative" msgstr "" -#: [mood]curious +#: ../cache/locales.php:598 msgid "curious" msgstr "" -#: [mood]dejected +#: ../cache/locales.php:599 msgid "dejected" msgstr "" -#: [mood]depressed +#: ../cache/locales.php:600 msgid "depressed" msgstr "" -#: [mood]disappointed +#: ../cache/locales.php:601 msgid "disappointed" msgstr "" -#: [mood]disgusted +#: ../cache/locales.php:602 msgid "disgusted" msgstr "" -#: [mood]dismayed +#: ../cache/locales.php:603 msgid "dismayed" msgstr "" -#: [mood]distracted +#: ../cache/locales.php:604 msgid "distracted" msgstr "" -#: [mood]embarrassed +#: ../cache/locales.php:605 msgid "embarrassed" msgstr "" -#: [mood]envious +#: ../cache/locales.php:606 msgid "envious" msgstr "" -#: [mood]excited +#: ../cache/locales.php:607 msgid "excited" msgstr "" -#: [mood]flirtatious +#: ../cache/locales.php:608 msgid "flirtatious" msgstr "" -#: [mood]frustated +#: ../cache/locales.php:609 msgid "frustated" msgstr "" -#: [mood]grateful +#: ../cache/locales.php:610 msgid "grateful" msgstr "" -#: [mood]grieving +#: ../cache/locales.php:611 msgid "grieving" msgstr "" -#: [mood]grumpy +#: ../cache/locales.php:612 msgid "grumpy" msgstr "" -#: [mood]guilty +#: ../cache/locales.php:613 msgid "guilty" msgstr "" -#: [mood]happy +#: ../cache/locales.php:614 msgid "happy" msgstr "" -#: [mood]hopeful +#: ../cache/locales.php:615 msgid "hopeful" msgstr "" -#: [mood]hot +#: ../cache/locales.php:616 msgid "hot" msgstr "" -#: [mood]humbled +#: ../cache/locales.php:617 msgid "humbled" msgstr "" -#: [mood]humiliated +#: ../cache/locales.php:618 msgid "humiliated" msgstr "" -#: [mood]hungry +#: ../cache/locales.php:619 msgid "hungry" msgstr "" -#: [mood]hurt +#: ../cache/locales.php:620 msgid "hurt" msgstr "" -#: [mood]impressed +#: ../cache/locales.php:621 msgid "impressed" msgstr "" -#: [mood]in_awe +#: ../cache/locales.php:622 msgid "in awe" msgstr "" -#: [mood]in_love +#: ../cache/locales.php:623 msgid "in love" msgstr "" -#: [mood]indignant +#: ../cache/locales.php:624 msgid "indignant" msgstr "" -#: [mood]interested +#: ../cache/locales.php:625 msgid "interested" msgstr "" -#: [mood]intoxicated +#: ../cache/locales.php:626 msgid "intoxicated" msgstr "" -#: [mood]invincible +#: ../cache/locales.php:627 msgid "invincible" msgstr "" -#: [mood]jealous +#: ../cache/locales.php:628 msgid "jealous" msgstr "" -#: [mood]lonely +#: ../cache/locales.php:629 msgid "lonely" msgstr "" -#: [mood]lost +#: ../cache/locales.php:630 msgid "lost" msgstr "" -#: [mood]lucky +#: ../cache/locales.php:631 msgid "lucky" msgstr "" -#: [mood]mean +#: ../cache/locales.php:632 msgid "mean" msgstr "" -#: [mood]moody +#: ../cache/locales.php:633 msgid "moody" msgstr "" -#: [mood]nervous +#: ../cache/locales.php:634 msgid "nervous" msgstr "" -#: [mood]neutral +#: ../cache/locales.php:635 msgid "neutral" msgstr "" -#: [mood]offended +#: ../cache/locales.php:636 msgid "offended" msgstr "" -#: [mood]outraged +#: ../cache/locales.php:637 msgid "outraged" msgstr "" -#: [mood]playful +#: ../cache/locales.php:638 msgid "playful" msgstr "" -#: [mood]proud +#: ../cache/locales.php:639 msgid "proud" msgstr "" -#: [mood]relaxed +#: ../cache/locales.php:640 msgid "relaxed" msgstr "" -#: [mood]relieved +#: ../cache/locales.php:641 msgid "relieved" msgstr "" -#: [mood]restless +#: ../cache/locales.php:642 +msgid "remorseful" +msgstr "" + +#: ../cache/locales.php:643 msgid "restless" msgstr "" -#: [mood]sad +#: ../cache/locales.php:644 msgid "sad" msgstr "" -#: [mood]sarcastic +#: ../cache/locales.php:645 msgid "sarcastic" msgstr "" -#: [mood]satisfied +#: ../cache/locales.php:646 msgid "satisfied" msgstr "" -#: [mood]serious +#: ../cache/locales.php:647 msgid "serious" msgstr "" -#: [mood]shocked +#: ../cache/locales.php:648 msgid "shocked" msgstr "" -#: [mood]shy +#: ../cache/locales.php:649 msgid "shy" msgstr "" -#: [mood]sick +#: ../cache/locales.php:650 msgid "sick" msgstr "" -#: [mood]sleepy +#: ../cache/locales.php:651 msgid "sleepy" msgstr "" -#: [mood]spontaneous +#: ../cache/locales.php:652 msgid "spontaneous" msgstr "" -#: [mood]stressed +#: ../cache/locales.php:653 msgid "stressed" msgstr "" -#: [mood]strong +#: ../cache/locales.php:654 msgid "strong" msgstr "" -#: [mood]surprised +#: ../cache/locales.php:655 msgid "surprised" msgstr "" -#: [mood]thankful +#: ../cache/locales.php:656 msgid "thankful" msgstr "" -#: [mood]thirsty +#: ../cache/locales.php:657 msgid "thirsty" msgstr "" -#: [mood]tired +#: ../cache/locales.php:658 msgid "tired" msgstr "" -#: [mood]undefined +#: ../cache/locales.php:659 msgid "undefined" msgstr "" -#: [mood]weak +#: ../cache/locales.php:660 msgid "weak" msgstr "" -#: [mood]worried +#: ../cache/locales.php:661 msgid "worried" msgstr "" -#: [month]title +#: ../cache/locales.php:662 msgid "Month" msgstr "" -#: [month]january +#: ../cache/locales.php:663 msgid "January" msgstr "Xaneiro" -#: [month]february +#: ../cache/locales.php:664 msgid "February" msgstr "Febreiro" -#: [month]march +#: ../cache/locales.php:665 msgid "March" msgstr "Marzo" -#: [month]april +#: ../cache/locales.php:666 msgid "April" msgstr "Abril" -#: [month]may +#: ../cache/locales.php:667 msgid "May" msgstr "Maio" -#: [month]june +#: ../cache/locales.php:668 msgid "June" msgstr "Xuño" -#: [month]july +#: ../cache/locales.php:669 msgid "July" msgstr "" -#: [month]august +#: ../cache/locales.php:670 msgid "August" msgstr "" -#: [month]september +#: ../cache/locales.php:671 msgid "September" msgstr "" -#: [month]october +#: ../cache/locales.php:672 msgid "October" msgstr "" -#: [month]november +#: ../cache/locales.php:673 msgid "November" msgstr "" -#: [month]december +#: ../cache/locales.php:674 msgid "December" msgstr "" -#: [year]title +#: ../cache/locales.php:675 msgid "Year" msgstr "" -#: [date]today +#: ../cache/locales.php:676 msgid "Today" msgstr "" -#: [date]tomorrow +#: ../cache/locales.php:677 msgid "Tomorrow" msgstr "" -#: [date]yesterday +#: ../cache/locales.php:678 msgid "Yesterday" msgstr "" -#: [date]ago -msgid "%d days ago" +#: ../cache/locales.php:679 +#, php-format +msgid " %d days ago" msgstr "" -#: [date]day +#: ../cache/locales.php:680 msgid "day" msgstr "" -#: [post]whats_new +#: ../cache/locales.php:682 msgid "What's new ?" msgstr "" -#: [post]place +#: ../cache/locales.php:683 msgid "Place" msgstr "" -#: [post]by +#: ../cache/locales.php:684 msgid "by" msgstr "" -#: [post]geolocalisation +#: ../cache/locales.php:685 msgid "Geolocalisation" msgstr "" -#: [post]email +#: ../cache/locales.php:686 msgid "email" msgstr "" -#: [post]no_comments +#: ../cache/locales.php:688 msgid "No comments yet" msgstr "" -#: [post]no_comments_stream +#: ../cache/locales.php:689 msgid "No comments stream" msgstr "" -#: [post]no_load +#: ../cache/locales.php:690 msgid "Your feed cannot be loaded." msgstr "" -#: [post]older +#: ../cache/locales.php:691 msgid "Get older posts" msgstr "" -#: [post]new_items +#: ../cache/locales.php:692 +#, php-format msgid "%s new items" msgstr "" -#: [post]comment_error +#: ../cache/locales.php:693 msgid "Comment publication error" msgstr "" -#: [post]comments_older +#: ../cache/locales.php:694 msgid "Show the older comments" msgstr "" -#: [post]comments_loading -msgid "Loading comments..." +#: ../cache/locales.php:695 +msgid "Loading comments ..." msgstr "" -#: [post]comments_get +#: ../cache/locales.php:696 msgid "Get the comments" msgstr "" -#: [post]comment_add +#: ../cache/locales.php:697 msgid "Add a comment" msgstr "" -#: [post]share +#: ../cache/locales.php:698 msgid "Share with" msgstr "" -#: [post]share_everyone +#: ../cache/locales.php:699 msgid "Everyone" msgstr "" -#: [post]share_your_contacts +#: ../cache/locales.php:700 msgid "Your contacts" msgstr "" -#: [post]updated +#: ../cache/locales.php:702 msgid "Updated" msgstr "" -#: [post]content_not_found +#: ../cache/locales.php:703 msgid "Content not found" msgstr "" -#: [post]default_title +#: ../cache/locales.php:704 msgid "Contact publication" msgstr "" -#: [post]comments +#: ../cache/locales.php:705 msgid "Comments" msgstr "" -#: [api]error +#: ../cache/locales.php:706 msgid "The API is not reachable, try again later" msgstr "" -#: [field]type_here +#: ../cache/locales.php:707 msgid "Type here" msgstr "" #~ msgid "Logout" #~ msgstr "Saír" +#, php-format #~ msgid "%s - Account Creation" #~ msgstr "Creación de Conta %s" @@ -2709,6 +2596,7 @@ msgstr "" #~ msgid "PHP version mismatch. Movim requires PHP 5.3 minimum." #~ msgstr "Incompatibilidade de versión PHP. Movim require PHP mínimo 5.3." +#, php-format #~ msgid "Movim requires the %s extension." #~ msgstr "Movim require a extensión %s." diff --git a/sources/locales/he.po b/sources/locales/he.po index 1ae6a49..ff0c89b 100644 --- a/sources/locales/he.po +++ b/sources/locales/he.po @@ -3,2784 +3,2628 @@ # This file is distributed under the same license as the movim package. # Isratine Citizen , 2012. # -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/About/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Account/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/AccountNext/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/AdHoc/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/AdminDB/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/AdminMain/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/AdminTest/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Api/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Avatar/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Blog/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Bookmark/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Chat/locales.ini -#. #-#-#-#-# 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 -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Group/locales.ini -#. #-#-#-#-# 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 -#. #-#-#-#-# 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 -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Presence/locales.ini -#. #-#-#-#-# 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 -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Share/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Statistics/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Subscribe/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Syndication/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Upload/locales.ini -#. #-#-#-#-# 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-08-20 15:17+0200\n" +"POT-Creation-Date: 2015-06-08 22:06+0200\n" "PO-Revision-Date: 2015-06-09 12:19+0000\n" "Last-Translator: GenghisKhan \n" "Language-Team: Rahut \n" -"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2015-06-18 21:08+0000\n" "X-Generator: Launchpad (build 17570)\n" +"Language: \n" "X-Poedit-Language: Hebrew\n" -#: [about]thanks +#: ../cache/locales.php:2 msgid "Thanks" msgstr "תודות" -#: [about]developers +#: ../cache/locales.php:3 msgid "Developers" msgstr "מפתחים" -#: [about]translators +#: ../cache/locales.php:4 msgid "Translators" msgstr "מתרגמים" -#: [about]software +#: ../cache/locales.php:5 msgid "Software" msgstr "תוכנה" -#: [about]resources +#: ../cache/locales.php:6 msgid "Resources" msgstr "מקורות" -#: [about]api [schema]api [api]title +#: ../cache/locales.php:7 ../cache/locales.php:83 ../cache/locales.php:85 msgid "API" msgstr "API" -#: [about]info -msgid "Movim is an XMPP-based communication platform. All the project, except the following software and resources, is under" -msgstr "Movim הינו פלטפורמת תקשורת מבוססת XMPP. כל הפרויקט, למעט התכנות והמקורות הבאים, רשוי תחת" +#: ../cache/locales.php:8 +msgid "" +"Movim is an XMPP-based communication platform. All the project, except the " +"following software and resources, is under" +msgstr "" +"Movim הינו פלטפורמת תקשורת מבוססת XMPP. כל הפרויקט, למעט התכנות והמקורות " +"הבאים, רשוי תחת" -#: [account]title +#: ../cache/locales.php:9 msgid "Account" msgstr "" -#: [account]password_change_title -#, fuzzy -msgid "Change my password" -msgstr "סיסמה שגויה" - -#: [account]password [db]password [credentials]password [form]password -#: [input]password -msgid "Password" -msgstr "סיסמה" - -#: [account]password_confirmation -#, fuzzy -msgid "Password confirmation" -msgstr "‏‏%s - תצורה" - -#: [account]password_changed +#: ../cache/locales.php:10 msgid "The password has been updated" msgstr "" -#: [account]password_not_valid +#: ../cache/locales.php:11 msgid "Please provide a valid password (6 characters minimum)" msgstr "" -#: [account]password_not_same +#: ../cache/locales.php:12 msgid "The provided passwords are not the same" msgstr "" -#: [account]delete_title +#: ../cache/locales.php:13 msgid "Delete my account" msgstr "" -#: [account]delete -#, fuzzy -msgid "Delete your account" -msgstr "חשבון אחר" - -#: [account]delete_text -msgid "You will delete your XMPP account and all the relative information linked to it (profile, contacts and publications)." +#: ../cache/locales.php:14 +msgid "" +"You will delete your XMPP account and all the relative information linked to " +"it (profile, contacts and publications)." msgstr "" -#: [account]delete_text_confirm +#: ../cache/locales.php:15 msgid "Are you sure that you want to delete it ?" msgstr "" -#: [account]gateway_title -msgid "Gateway" -msgstr "" - -#: [create]title [subscribe]title +#: ../cache/locales.php:16 ../cache/locales.php:411 msgid "Create a new account" msgstr "יצירת חשבון חדש" -#: [create]notfound +#: ../cache/locales.php:17 msgid "No account creation form found on the server" msgstr "לא נמצא טופס יצירת חשבון על השרת" -#: [create]server_on +#: ../cache/locales.php:18 ../cache/locales.php:172 msgid "on" msgstr "ביום" -#: [create]successfull +#: ../cache/locales.php:19 msgid "Your acccount has been successfully registered" msgstr "חשבונך נרשם בהצלחה" -#: [create]loading +#: ../cache/locales.php:20 msgid "Loading" msgstr "כעת טוען" -#: [error]not_acceptable +#: ../cache/locales.php:21 msgid "Not Acceptable" msgstr "לא קביל" -#: [error]service_unavailable +#: ../cache/locales.php:22 msgid "The registration system of this server is currently unavailable" msgstr "מערכת הרשמה בשרת זה איננה זמינה בעת זו" -#: [oob]about -msgid "This server use an external system for the registration, please click on the following URL." +#: ../cache/locales.php:23 +msgid "" +"This server use an external system for the registration, please click on the " +"following URL." msgstr "" -#: [adhoc]title +#: ../cache/locales.php:24 msgid "Actions" msgstr "פעולות" -#: [db]legend [schema]database +#: ../cache/locales.php:25 ../cache/locales.php:82 msgid "Database" msgstr "מסד נתונים" -#: [db]connect_error +#: ../cache/locales.php:26 msgid "Modl wasn't able to connect to the database" msgstr "Modl לא היה מסוגל להתחבר אל מסד נתונים" -#: [db]connect_success +#: ../cache/locales.php:27 msgid "Movim is connected to the database" msgstr "Movim הינו מחובר אל מסד נתונים" -#: [db]update +#: ../cache/locales.php:28 msgid "The database need to be updated" msgstr "על מסד נתונים להתעדכן" -#: [db]up_to_date +#: ../cache/locales.php:29 msgid "Movim database is up to date" msgstr "מסד נתונים Movim הינו עדכני" -#: [db]type +#: ../cache/locales.php:30 msgid "Database Type" msgstr "טיפוס מסד נתונים" -#: [db]username [credentials]username [input]username +#: ../cache/locales.php:31 ../cache/locales.php:50 ../cache/locales.php:540 msgid "Username" msgstr "שם משתמש" -#: [db]host +#: ../cache/locales.php:32 ../cache/locales.php:51 ../cache/locales.php:282 +#: ../cache/locales.php:541 +msgid "Password" +msgstr "סיסמה" + +#: ../cache/locales.php:33 msgid "Host" msgstr "מארח" -#: [db]port +#: ../cache/locales.php:34 msgid "Port" msgstr "פורט" -#: [db]name -#, fuzzy -msgid "Database sName" +#: ../cache/locales.php:35 +msgid "Database Name" msgstr "שם מסד נתונים" -#: [admin]general +#: ../cache/locales.php:36 msgid "General Settings" msgstr "הגדרות כלליות" -#: [general]theme +#: ../cache/locales.php:37 msgid "Theme" msgstr "מוטיב" -#: [general]language +#: ../cache/locales.php:38 msgid "Default language" msgstr "שפה משתמטת" -#: [general]log_verbosity +#: ../cache/locales.php:39 +msgid "Environment" +msgstr "סביבה" + +#: ../cache/locales.php:40 msgid "Log verbosity" msgstr "גיבוב רשומת יומן" -#: [general]timezone +#: ../cache/locales.php:41 msgid "Server Timezone" msgstr "אזור זמן שרת" -#: [general]limit +#: ../cache/locales.php:42 msgid "User folder size limit (in bytes)" msgstr "מגבלת גודל תיקיית משתמש (בתים)" -#: [websocket]title +#: ../cache/locales.php:43 msgid "WebSocket Configuration" msgstr "תצורת WebSocket" -#: [websocket]info +#: ../cache/locales.php:44 msgid "Enter here a valid WebSocket URI in the form" msgstr "" -#: [websocket]label +#: ../cache/locales.php:45 msgid "WebSocket URI" msgstr "" -#: [websocket]save_info -msgid "If you change the URI, please restart the daemon to reload the configuration" +#: ../cache/locales.php:46 +msgid "" +"If you change the URI, please restart the daemon to reload the configuration" msgstr "" -#: [websocket]publics +#: ../cache/locales.php:47 msgid "Public WebSockets" msgstr "WebSocket פומבי" -#: [credentials]title +#: ../cache/locales.php:48 msgid "Administration Credential" msgstr "נתוני התחברות מנהל" -#: [credentials]info +#: ../cache/locales.php:49 msgid "Change the default credentials admin/password" msgstr "שנה נתוני התחברות מנהל/סיסמה" -#: [credentials]re_password +#: ../cache/locales.php:52 msgid "Retype password" msgstr "הקלד סיסמה מחדש" -#: [whitelist]title +#: ../cache/locales.php:53 msgid "Whitelist - XMPP Server" msgstr "רשימה לבנה - שרת XMPP" -#: [whitelist]info1 -msgid "If you want to specify a list of authorized XMPP servers on your Movim pod and forbid the connection on all the others please put their domain name here, with comma (ex: movim.eu,jabber.fr)" -msgstr "אם ברצונך לציין רשימה של שרתי XMPP מורשים בשרת Movim שלך ולאסור את החיבור בכל האחרים אנא השם כאן את שם המתחם שלהם, עם פסיק (דוגמא: movim.eu,jabber.fr)" +#: ../cache/locales.php:54 +msgid "" +"If you want to specify a list of authorized XMPP servers on your Movim pod " +"and forbid the connection on all the others please put their domain name " +"here, with comma (ex: movim.eu,jabber.fr)" +msgstr "" +"אם ברצונך לציין רשימה של שרתי XMPP מורשים בשרת Movim שלך ולאסור את החיבור " +"בכל האחרים אנא השם כאן את שם המתחם שלהם, עם פסיק (דוגמא: movim.eu,jabber.fr)" -#: [whitelist]info2 -msgid "Leave this field blank if you allow the access to all the XMPP accounts." +#: ../cache/locales.php:55 +msgid "" +"Leave this field blank if you allow the access to all the XMPP accounts." msgstr "השאר את שדה זה ריק אם ברצונך להתיר גישה אל כל החשבונות של XMPP." -#: [whitelist]label +#: ../cache/locales.php:56 msgid "List of whitelisted XMPP servers" msgstr "רשימה של שרתי XMPP שמצויים תחת רשימה לבנה" -#: [information]title -#, fuzzy -msgctxt "[information]title" +#: ../cache/locales.php:57 ../cache/locales.php:61 msgid "Information Message" msgstr "הודעת מידע" -#: [information]description +#: ../cache/locales.php:58 msgid "Description" msgstr "תיאור" -#: [information]info1 +#: ../cache/locales.php:59 msgid "This message will be displayed on the login page" msgstr "הודעה זו תוצג בעמוד הכניסה" -#: [information]info2 -#, fuzzy -msgid "Leave this field blank if you dont want to show any message." +#: ../cache/locales.php:60 +msgid "Leave this field blank if you don't want to show any message." msgstr "השאר את שדה זה ריק אם אין ברצונך להציג כל הודעה שהיא." -#: [information]label -#, fuzzy -msgctxt "[information]label" -msgid "Information Message" -msgstr "הודעת מידע" - -#: [log]empty +#: ../cache/locales.php:62 msgid "Empty" msgstr "ריק" -#: [log]syslog +#: ../cache/locales.php:63 msgid "Syslog" msgstr "יומן מערכת" -#: [log]syslog_files +#: ../cache/locales.php:64 msgid "Syslog and files" msgstr "יומן מערכת וקבצים" -#: [rewrite]title +#: ../cache/locales.php:65 msgid "URL Rewriting" msgstr "" -#: [rewrite]info +#: ../cache/locales.php:66 msgid "The URL Rewriting can be enabled" msgstr "" -#: [admin]compatibility +#: ../cache/locales.php:67 msgid "General Overview" msgstr "סקירה כללית" -#: [compatibility]info -msgid "Movim has found some issues or things that need to be fixed or improved" +#: ../cache/locales.php:68 +msgid "" +"Movim has found some issues or things that need to be fixed or improved" msgstr "" -#: [compatibility]php1 +#: ../cache/locales.php:69 +#, php-format msgid "Update your PHP-Version: %s" msgstr "עדכן גרסת PHP שלך: %s" -#: [compatibility]php2 +#: ../cache/locales.php:70 msgid "Required: 5.3.0" msgstr "צריך: 5.3.0" -#: [compatibility]curl +#: ../cache/locales.php:71 msgid "Install the php5-curl library" msgstr "התקן את הספרייה php5-curl" -#: [compatibility]imagick +#: ../cache/locales.php:72 msgid "Install the php5-imagick library" msgstr "" -#: [compatibility]gd +#: ../cache/locales.php:73 msgid "Install the php5-gd library" msgstr "" -#: [compatibility]rights -#, fuzzy -msgid "Read and write rights for the webserver in Movims root directory" +#: ../cache/locales.php:74 +msgid "Read and write rights for the webserver in Movim's root directory" msgstr "הרשאות קריאה וכתיבה עבור שרת הרשת במדור השורש (root) של Movim" -#: [compatibility]rewrite +#: ../cache/locales.php:75 msgid "The URL Rewriting support is currently disabled" msgstr "" -#: [compatibility]db +#: ../cache/locales.php:76 msgid "The database need to be updated, go to the database panel to fix this" msgstr "" -#: [compatibility]websocket -msgid "WebSocket connection error, check if the Movim Daemon is running and is reachable" +#: ../cache/locales.php:77 +msgid "" +"WebSocket connection error, check if the Movim Daemon is running and is " +"reacheable" msgstr "" -#: [compatibility]xmpp_websocket -msgid "XMPP Websocket connection error, please check the validity of the URL given in the General Configuration" +#: ../cache/locales.php:78 +msgid "" +"XMPP Websocket connection error, please check the validity of the URL given " +"in the General Configuration" msgstr "" -#: [schema]browser +#: ../cache/locales.php:79 msgid "Browser" msgstr "" -#: [schema]movim +#: ../cache/locales.php:80 msgid "Movim Core" msgstr "" -#: [schema]daemon +#: ../cache/locales.php:81 msgid "Movim Daemon" msgstr "" -#: [schema]xmpp +#: ../cache/locales.php:84 msgid "XMPP" msgstr "" -#: [api]info -msgid "Here you can register your pod on the official %sMovim API%s and be listed on %sthe pods page%s." -msgstr "באפשרותך לרשום כאן את השרת שלך בתוך %sMovim API%s הרשמי בו יהיה מנוי בתוך %sעמוד השרתים%s." +#: ../cache/locales.php:86 +#, php-format +msgid "" +"Here you can register your pod on the official %sMovim API%s and be listed " +"on %sthe pods page%s." +msgstr "" +"באפשרותך לרשום כאן את השרת שלך בתוך %sMovim API%s הרשמי בו יהיה מנוי בתוך " +"%sעמוד השרתים%s." -#: [api]register +#: ../cache/locales.php:87 msgid "Your pod is not registered on the API" msgstr "השרת שלך אינו רשום API" -#: [api]registered +#: ../cache/locales.php:88 msgid "Your pod is registered on the API" msgstr "השרת שלך הינו רשום API" -#: [api]wait +#: ../cache/locales.php:89 msgid "Your pod is not yet validated" msgstr "השרת שלך עדיין לא קיבל תוקף" -#: [api]validated +#: ../cache/locales.php:90 msgid "Your pod is validated" msgstr "השרת שלך הינו תקף" -#: [api]unregister -msgid "You asked to be removed from the API, this request will be processed in a couple of hours" +#: ../cache/locales.php:91 +msgid "" +"You asked to be removed from the API, this request will be processed in a " +"couple of hours" msgstr "" -#: [api]conf_updated [config]updated +#: ../cache/locales.php:92 ../cache/locales.php:147 msgid "Configuration updated" msgstr "תצורה עודכנה" -#: [avatar]file +#: ../cache/locales.php:93 msgid "File" msgstr "" -#: [avatar]use_it +#: ../cache/locales.php:94 msgid "Use it" msgstr "" -#: [avatar]webcam +#: ../cache/locales.php:95 msgid "Webcam" msgstr "מצלמת רשת" -#: [avatar]cheese +#: ../cache/locales.php:96 msgid "Cheese !" msgstr "חייכו !" -#: [avatar]snapshot +#: ../cache/locales.php:97 msgid "Take a webcam snapshot" msgstr "קח תצלום בזק מתוך מצלמת רשת" -#: [avatar]updated +#: ../cache/locales.php:98 msgid "Avatar Updated" msgstr "אווטאר עודכן" -#: [avatar]not_updated +#: ../cache/locales.php:99 msgid "Avatar Not Updated" msgstr "אווטאר לא מעודכן" -#: [blog]title [feed]title +#: ../cache/locales.php:100 ../cache/locales.php:415 +#, php-format msgid "%s's feed" msgstr "הערוץ של %s" -#: [blog]empty +#: ../cache/locales.php:101 msgid "This user has not posted anything right now" msgstr "" -#: [title]conferences +#: ../cache/locales.php:102 msgid "Conferences" msgstr "ועידות" -#: [title]groups [group]empty_title [menu]groups [page]groups +#: ../cache/locales.php:103 ../cache/locales.php:193 ../cache/locales.php:217 +#: ../cache/locales.php:468 msgid "Groups" msgstr "קבוצות" -#: [chatroom]add +#: ../cache/locales.php:104 msgid "Add a new Chat Room" msgstr "הוסף חדר שיחה חדש" -#: [chatroom]id [chatrooms]id +#: ../cache/locales.php:105 ../cache/locales.php:368 msgid "Chat Room ID" msgstr "מזהה חדר שיחה" -#: [chatroom]name -#, fuzzy -msgctxt "[chatroom]name" +#: ../cache/locales.php:106 ../cache/locales.php:116 ../cache/locales.php:156 +#: ../cache/locales.php:361 ../cache/locales.php:369 ../cache/locales.php:424 msgid "Name" msgstr "שם" -#: [chatroom]nickname [general]nickname [chatrooms]nickname +#: ../cache/locales.php:107 ../cache/locales.php:157 ../cache/locales.php:371 +#: ../cache/locales.php:425 msgid "Nickname" msgstr "שם כינוי" -#: [chatroom]autojoin_label +#: ../cache/locales.php:108 msgid "Do you want do join automaticaly this Chat Room ?" msgstr "האם ברצונך להצטרף אוטומטית אל שיחת חדר זו ?" -#: [chatroom]bad_id [chatrooms]bad_id +#: ../cache/locales.php:109 ../cache/locales.php:372 msgid "Bad Chatroom ID" msgstr "מזהה חדר שיחה רע" -#: [chatroom]empty_name [chatrooms]empty_name +#: ../cache/locales.php:110 ../cache/locales.php:373 msgid "Empty name" msgstr "שם ריק" -#: [bookmarks]updated +#: ../cache/locales.php:111 ../cache/locales.php:380 msgid "Bookmarks updated" msgstr "סימניות עודכנו" -#: [bookmarks]error -#, fuzzy -msgid "An error occured :" +#: ../cache/locales.php:112 +msgid "An error occured : " msgstr "ארעה שגיאה : " -#: [bookmarks]configure +#: ../cache/locales.php:113 msgid "Configure" msgstr "הגדר" -#: [url]add +#: ../cache/locales.php:114 msgid "Add a new URL" msgstr "הוסף URL חדש" -#: [url]url +#: ../cache/locales.php:115 msgid "URL" msgstr "URL" -#: [url]name -#, fuzzy -msgctxt "[url]name" -msgid "Name" -msgstr "שם" - -#: [message]published +#: ../cache/locales.php:117 msgid "Message Published" msgstr "הודעה פורסמה" -#: [message]encrypted +#: ../cache/locales.php:118 ../cache/locales.php:138 msgid "Encrypted message" msgstr "הודעה מוצפנת" -#: [message]composing [chats]composing +#: ../cache/locales.php:119 msgid "Composing..." msgstr "מלחין כעת..." -#: [message]paused [chats]paused +#: ../cache/locales.php:120 msgid "Paused..." msgstr "מושהה..." -#: [message]gone +#: ../cache/locales.php:121 msgid "Contact gone" msgstr "" -#: [chat]attention +#: ../cache/locales.php:122 +#, php-format msgid "%s needs your attention" msgstr "%s רוצה את צומת ליבך" -#: [chat]placeholder +#: ../cache/locales.php:123 msgid "Your message here..." msgstr "הודעתך כאן..." -#: [chat]smileys +#: ../cache/locales.php:124 msgid "Smileys" msgstr "סמיילים" -#: [chat]empty_title [button]chat +#: ../cache/locales.php:125 ../cache/locales.php:139 msgid "Chat" msgstr "שיחה" -#: [chat]empty_text +#: ../cache/locales.php:126 msgid "Discuss with your contacts" msgstr "שוחח עם האנשי קשר שלך" -#: [chat]frequent [chats]frequent -msgid "Frequent contacts" -msgstr "" - -#: [chatroom]members +#: ../cache/locales.php:127 msgid "Members" msgstr "" -#: [chatroom]connected [chatrooms]connected +#: ../cache/locales.php:128 ../cache/locales.php:376 msgid "Connected to the chatroom" msgstr "מחובר אל שיחת קבוצה" -#: [chatroom]disconnected [chatrooms]disconnected +#: ../cache/locales.php:129 ../cache/locales.php:377 msgid "Disconnected from the chatroom" msgstr "מנותק מתוך שיחת הקבוצה" -#: [chatroom]config [group]configuration [page]configuration +#: ../cache/locales.php:130 ../cache/locales.php:200 ../cache/locales.php:469 msgid "Configuration" msgstr "תצורה" -#: [chatroom]config_saved +#: ../cache/locales.php:131 msgid "Configuration saved" msgstr "" -#: [chatroom]subject +#: ../cache/locales.php:132 msgid "Subject" msgstr "" -#: [chatroom]subject_changed +#: ../cache/locales.php:133 msgid "Subject changed" msgstr "" -#: [chats]empty_title -msgid "No chats yet..." +#: ../cache/locales.php:134 +msgid "Open a new conversation by clicking on the plus button bellow" msgstr "" -#: [chats]empty -msgid "Open a new conversation by clicking on the plus button bellow or visit the Contacts page." -msgstr "" - -#: [chats]add +#: ../cache/locales.php:135 msgid "Chat with a contact" msgstr "שיח עם איש קשר" -#: [chats]more +#: ../cache/locales.php:136 +msgid "Frequent contacts" +msgstr "" + +#: ../cache/locales.php:137 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 "הודעות" - -#: [config]general +#: ../cache/locales.php:140 msgid "General" msgstr "כללי" -#: [config]language +#: ../cache/locales.php:141 msgid "Language" msgstr "שפה" -#: [config]roster +#: ../cache/locales.php:142 msgid "Roster display" msgstr "" -#: [config]roster_show +#: ../cache/locales.php:143 msgid "Show the offline contacts" msgstr "" -#: [config]roster_hide +#: ../cache/locales.php:144 msgid "Hide the offline contacts" msgstr "" -#: [config]appearence +#: ../cache/locales.php:145 msgid "Appearence" msgstr "חזות" -#: [config]info -#, fuzzy -msgid "This configuration is shared wherever you are connected" +#: ../cache/locales.php:146 +msgid "This configuration is shared wherever you are connected !" msgstr "תצורה זו משותפת כבל מקום בו אנו מחוברים !" -#: [notifications]message +#: ../cache/locales.php:148 msgid "Notify on incoming message" msgstr "התראה בעת הודעה נכנסת" -#: [notifications]desktop +#: ../cache/locales.php:149 msgid "Use desktop notifications" msgstr "השתמש בהתראות שולחן עבודה" +#: ../cache/locales.php:150 +msgid "Data" +msgstr "נתונים" + +#: ../cache/locales.php:151 +msgid "Cache" +msgstr "מטמון" + +#: ../cache/locales.php:152 ../cache/locales.php:218 ../cache/locales.php:466 +msgid "Contacts" +msgstr "אנשי קשר" + +#: ../cache/locales.php:153 ../cache/locales.php:480 +msgid "Posts" +msgstr "פרסומים" + +#: ../cache/locales.php:154 +msgid "Messages" +msgstr "הודעות" + # BUG: Information(s) -#: [general]legend [general]general_title +#: ../cache/locales.php:155 ../cache/locales.php:423 msgid "General Informations" msgstr "מידע כללי" -#: [general]name [public_groups]name [chatrooms]name -msgid "Name" -msgstr "שם" - -#: [general]date_of_birth +#: ../cache/locales.php:158 ../cache/locales.php:427 msgid "Date of Birth" msgstr "תאריך לידה" -#: [general]gender +#: ../cache/locales.php:159 ../cache/locales.php:428 msgid "Gender" msgstr "מין" -#: [general]marital +#: ../cache/locales.php:160 ../cache/locales.php:429 msgid "Marital Status" msgstr "מצב משפחתי" -#: [general]email +#: ../cache/locales.php:161 ../cache/locales.php:426 msgid "Email" msgstr "דוא״ל" -#: [general]website +#: ../cache/locales.php:162 ../cache/locales.php:430 msgid "Website" msgstr "אתר רשת" -#: [general]about +#: ../cache/locales.php:163 ../cache/locales.php:431 msgid "About Me" msgstr "אודותיי" -#: [general]accounts +#: ../cache/locales.php:164 msgid "Other Accounts" msgstr "חשבונות אחרים" -#: [general]tune +#: ../cache/locales.php:165 msgid "Is Listening" msgstr "" -#: [position]legend [position]position_title +#: ../cache/locales.php:166 ../cache/locales.php:432 msgid "Geographic Position" msgstr "מיקום גאוגרפי" -#: [position]locality +#: ../cache/locales.php:167 ../cache/locales.php:433 msgid "Locality" msgstr "מקומיות" -#: [position]country +#: ../cache/locales.php:168 ../cache/locales.php:434 msgid "Country" msgstr "ארץ" -#: [mood]title +#: ../cache/locales.php:169 msgid "Mood" msgstr "מצב רוח" -#: [mood]im +#: ../cache/locales.php:170 msgid "I'm " msgstr "אני " -#: [listen]title +#: ../cache/locales.php:171 msgid "Listening" msgstr "מאזין כעת" -#: [last]title +#: ../cache/locales.php:173 msgid "Last seen" msgstr "נראה לאחרונה" -#: [client]title +#: ../cache/locales.php:174 msgid "Client Informations" msgstr "מידע לקוח" -#: [explore]last_registered +#: ../cache/locales.php:175 msgid "Last registered" msgstr "נרשמו לאחרונה" -#: [explore]explore +#: ../cache/locales.php:176 msgid "Find some new friends" msgstr "" -#: [edit]title [button]edit +#: ../cache/locales.php:177 ../cache/locales.php:533 msgid "Edit" msgstr "ערוך" -#: [edit]alias +#: ../cache/locales.php:178 msgid "Alias" msgstr "כינוי" -#: [edit]group +#: ../cache/locales.php:179 msgid "Group" msgstr "קבוצה" -#: [edit]updated [roster]updated +#: ../cache/locales.php:180 ../cache/locales.php:400 msgid "Contact updated" msgstr "איש קשר עודכן" -#: [delete]title +#: ../cache/locales.php:181 msgid "Are you sure?" msgstr "האם אתה בטוח?" -#: [delete]text -msgid "You are going to delete one of your contacts, please confirm your action" +#: ../cache/locales.php:182 +msgid "" +"You are going to delete one of your contacts, please confirm your action" msgstr "" -#: [age]years +#: ../cache/locales.php:183 +#, php-format msgid "%s years" msgstr "" -#: [blog]last +#: ../cache/locales.php:184 msgid "Last public post" msgstr "" -#: [subscription]to -#, fuzzy -msgid "You can see this contact status" -msgstr "אין ערוץ פומבי עבור איש קשר זה" - -#: [subscription]to_button -msgid "Share my status" -msgstr "" - -#: [subscription]to_text -msgid "But this contact cannot see yours" -msgstr "" - -#: [subscription]from -#, fuzzy -msgid "You are not subscribed to this contact" -msgstr "אין ערוץ פומבי עבור איש קשר זה" - -#: [subscription]from_button -#, fuzzy -msgid "Ask to subscribe" -msgstr "בטל הרשמה" - -#: [subscription]from_text -msgid "But this contact can still see if you are online" -msgstr "" - -#: [subscription]nil -#, fuzzy -msgid "No subscriptions" -msgstr "הרשמות" - -#: [subscription]nil_button -msgid "Invite" -msgstr "" - -#: [subscription]nil_text -msgid "This contact is in your contact list but there is no subscriptions between the two accounts" -msgstr "" - -#: [group]subscribe +#: ../cache/locales.php:185 msgid "Subscribe" msgstr "הירשם" -#: [group]subscribed +#: ../cache/locales.php:186 msgid "Subscribed" msgstr "מנוי" -#: [group]unsubscribe +#: ../cache/locales.php:187 msgid "Unsubscribe" msgstr "בטל הרשמה" -#: [group]unsubscribe_text +#: ../cache/locales.php:188 msgid "You are going to unsubscribe from this Group" msgstr "" -#: [group]unsubscribed +#: ../cache/locales.php:189 msgid "Unsubscribed" msgstr "" -#: [group]share_label +#: ../cache/locales.php:190 msgid "Make your membership to this group public to your friends" msgstr "" -#: [group]label_label +#: ../cache/locales.php:191 msgid "Give a label for this group" msgstr "" -#: [group]sure +#: ../cache/locales.php:192 msgid "Are you sure ?" msgstr "האם אתה בטוח ?" -#: [group]empty_text +#: ../cache/locales.php:194 msgid "Discover, follow and share" msgstr "" -#: [group]empty +#: ../cache/locales.php:195 msgid "Something bad happened to this group" msgstr "" -#: [group]config_saved +#: ../cache/locales.php:196 msgid "Group configuration saved" msgstr "תצורת קבוצה נשמרה" -#: [group]delete_title +#: ../cache/locales.php:197 msgid "Delete the group" msgstr "" -#: [group]delete_text -msgid "You are going to delete the following group. Please confirm your action." +#: ../cache/locales.php:198 +msgid "" +"You are going to delete the following group. Please confirm your action." msgstr "" -#: [group]delete_clean_text -msgid "It seems that this group doesn't exists anymore. Do you want to remove it from your subscriptions?" +#: ../cache/locales.php:199 +msgid "" +"It seems that this group doesn't exists anymore. Do you want to remove it " +"from your subscriptions?" msgstr "" -#: [group]counter -msgid "%s groups on this server" -msgstr "" - -#: [group]subscriptions [statistics]subscriptions +#: ../cache/locales.php:201 ../cache/locales.php:408 msgid "Subscriptions" msgstr "הרשמות" -#: [group]servers -#, fuzzy -msgid "Groups servers" -msgstr "קבוצות" - -#: [group]search_server -msgid "Search for a new server" -msgstr "" - -#: [group]help_info1 -msgid "Groups are the perfect way to share posts about topics that you like with all the other Movim's users." -msgstr "" - -#: [group]help_info2 -msgid "Choose a server and a Group and subscribe to it using the %s button in the header. You can also create a new one using the %s button." -msgstr "" - -#: [group]help_info3 -msgid "Done? You can now publish a new post in the Group by using the %s button." -msgstr "" - -#: [group]help_info4 -msgid "You will find a list of all your subscribed Groups in My Subscriptions and receive instantly all the new incoming posts in the %sNews%s page." -msgstr "" - -#: [groups]empty_title +#: ../cache/locales.php:202 ../cache/locales.php:290 msgid "Hello" msgstr "שלום" -#: [groups]contact_post [hello]contact_post [menu]contact_post +#: ../cache/locales.php:203 ../cache/locales.php:225 ../cache/locales.php:291 msgid "Contact post" msgstr "פרסום איש קשר" -#: [groups]empty_text1 -msgid "You don't have any subscriptions yet, select a group server above to start exploring." +#: ../cache/locales.php:204 +msgid "" +"You don't have any subscriptions yet, select a group server above to start " +"exploring." msgstr "" -#: [groups]empty_text2 +#: ../cache/locales.php:205 msgid "Subscribe to your favorite feeds by bookmarking them." msgstr "" -#: [groups]subscriptions +#: ../cache/locales.php:206 msgid "My Subscriptions" msgstr "" -#: [groups]add +#: ../cache/locales.php:207 msgid "Create a new Group" msgstr "" -#: [groups]name +#: ../cache/locales.php:208 msgid "Group name" msgstr "" -#: [groups]name_example +#: ../cache/locales.php:209 msgid "My Little Pony - Fan Club" msgstr "אין כמו אבא שבעולם - מועדון מעריצים" -#: [groups]created +#: ../cache/locales.php:210 msgid "Group created successfully" msgstr "" -#: [groups]deleted +#: ../cache/locales.php:211 msgid "Group deleted successfully" msgstr "" -#: [groups]name_error +#: ../cache/locales.php:212 msgid "Please provide a valid group name (4 characters minimum)" msgstr "" -#: [groups]no_creation +#: ../cache/locales.php:213 msgid "You cannot create a new Group on this server" msgstr "" -#: [groups]sub +#: ../cache/locales.php:214 +#, php-format msgid "%s subscribers" msgstr "" -#: [groups]num +#: ../cache/locales.php:215 +#, php-format msgid "%s posts" msgstr "" -#: [groups]disco_error -#, fuzzy -msgid "This server doesn't exists" -msgstr "שרת זה מארח %s חשבונות" - -#: [menu]all +#: ../cache/locales.php:216 msgid "All" msgstr "הכל" -#: [menu]refresh +#: ../cache/locales.php:219 msgid "Refresh all the streams" msgstr "רענון של כל הזרמים" -#: [roster]search -#, fuzzy -msgid "Search in your contacts" -msgstr "שוחח עם האנשי קשר שלך" +#: ../cache/locales.php:220 ../cache/locales.php:402 +msgid "Search" +msgstr "חיפוש" -#: [hello]active_contacts -#, fuzzy -msgid "Active contacts" -msgstr "אנשי הקשר שלך" - -#: [hello]chat +#: ../cache/locales.php:221 msgid "Go on the Chat page" msgstr "" -#: [hello]news [page]news -msgid "News" -msgstr "חדשות" - -#: [hello]news_page +#: ../cache/locales.php:222 msgid "Read all theses articles on the News page" msgstr "" -#: [hello]blog_title +#: ../cache/locales.php:223 msgid "Visit your public blog" msgstr "" -#: [hello]blog_text +#: ../cache/locales.php:224 msgid "See your public posts and share them with all your contacts" msgstr "" -#: [hello]share_title +#: ../cache/locales.php:226 msgid "Universal share button" msgstr "" -#: [hello]share_text -msgid "Bookmark or drag and drop the following button in your toolbar and use it on all the pages you want to share on Movim" +#: ../cache/locales.php:227 +msgid "" +"Bookmark or drag and drop the following button in your toolbar and use it on " +"all the pages you want to share on Movim" msgstr "" -#: [hello]share_button +#: ../cache/locales.php:228 msgid "Share on Movim" msgstr "" -#: [help]faq +#: ../cache/locales.php:229 msgid "Frequently Asked Questions" msgstr "שאלות נפוצות" -#: [banner]title +#: ../cache/locales.php:230 msgid "What do the little banners refer to ?" msgstr "מה כרזות קטנות אלו מייחסות ?" -#: [banner]info1 -msgid "Thanks to these five little banners, you can quickly identitfy the level of confdentiality applied to the information you provide." -msgstr "הודות לחמשת כרזות אלו, באפשרותך לברר במהירות את רמת החיסיון שחלה על המידע אותו בחרת לספק." +#: ../cache/locales.php:231 +msgid "" +"Thanks to these five little banners, you can quickly identitfy the level of " +"confdentiality applied to the information you provide." +msgstr "" +"הודות לחמשת כרזות אלו, באפשרותך לברר במהירות את רמת החיסיון שחלה על המידע " +"אותו בחרת לספק." -#: [banner]white +#: ../cache/locales.php:232 msgid "White, only you can see the information" msgstr "לבן, רק לך האפשרות לראות את המידע" -#: [banner]green +#: ../cache/locales.php:233 msgid "Green, you have chosen some contacts who can see your information" msgstr "ירוק, בחרת אנשי קשר מסוימים אשר יכולים לראות את המידע שלך" # רשימת אישי־הקשר -#: [banner]orange +#: ../cache/locales.php:234 msgid "Orange, all your contact list can see your information" msgstr "כתום, כל רשימת הקשר שלך יכולה לראות את המידע שלך" -#: [banner]red +#: ../cache/locales.php:235 msgid "Red, everybody in the XMPP network can see your information" msgstr "אדום, כל אחד ברשת התקשורת XMPP יכול לראות את המידע שלך" # כל האינטרנט יכול לראות -#: [banner]black +#: ../cache/locales.php:236 msgid "Black, the whole Internet can see your information" msgstr "שחור, כל המרשתת יכולה לראות את המידע שלך" -#: [wiki]question +#: ../cache/locales.php:237 msgid "Looking for some documentation ?" msgstr "מחפשים תיעוד ?" -#: [wiki]button +#: ../cache/locales.php:238 msgid "Read the Wiki" msgstr "קרא את הויקי" -#: [ml]question +#: ../cache/locales.php:239 msgid "Talk with us by email ?" msgstr "שוחח עמנו באמצעות דוא״ל ?" -#: [ml]button +#: ../cache/locales.php:240 msgid "Join the Mailing List" msgstr "הצטרף לרשימת דיוור" -#: [chatroom]question +#: ../cache/locales.php:241 msgid "Chat with the team ?" msgstr "שיחה עם הצוות ?" -#: [chatroom]button +#: ../cache/locales.php:242 msgid "Join the Chatroom" msgstr "הצטרף לשיחת קבוצה" -#: [init]location +#: ../cache/locales.php:243 msgid "Location node created" msgstr "צומת מיקום נוצר" -#: [init]bookmark +#: ../cache/locales.php:244 msgid "Bookmark node created" msgstr "צומת סימנייה נוצר" -#: [init]vcard4 +#: ../cache/locales.php:245 msgid "Profile node created" msgstr "צומת דיוקן נוצר" -#: [init]avatar +#: ../cache/locales.php:246 msgid "Avatar node created" msgstr "צומת אווטאר נוצר" -#: [init]subscriptions +#: ../cache/locales.php:247 msgid "Subscriptions node created" msgstr "צומת הרשמות נוצר" -#: [init]microblog +#: ../cache/locales.php:248 msgid "Microblog node created" msgstr "צומת מיקרו-בלוג נוצר" -#: [location]title +#: ../cache/locales.php:249 msgid "Location" msgstr "מיקום" -#: [location]wrong_postition +#: ../cache/locales.php:250 msgid "Wrong position" msgstr "מיקום שגוי" -#: [location]updated +#: ../cache/locales.php:251 msgid "Location updated" msgstr "מיקום עודכן" -#: [location]update +#: ../cache/locales.php:252 msgid "Update my position" msgstr "עדכן את המיקום שלי" -#: [login_anonymous]bad_username -msgid "Bad nickname (between 4 and 40 characters)" -msgstr "" - -#: [error]username +#: ../cache/locales.php:253 msgid "Wrong username" msgstr "שם משתמש שגוי" # כתובת JID שגויה -#: [error]jid +#: ../cache/locales.php:254 msgid "Invalid JID" msgstr "‫JID שגויה" -#: [error]empty_challenge +#: ../cache/locales.php:255 msgid "Empty Challenge from the server" msgstr "רוקן הזמנה מן השרת" -#: [error]dns +#: ../cache/locales.php:256 msgid "XMPP Domain error, your account is not a correct Jabber ID" msgstr "שגיאת מתחם XMPP, חשבונך אינו כתובת JID תקינה" -#: [error]data_missings +#: ../cache/locales.php:257 msgid "Some data are missing !" msgstr "חסר מידע מסוים !" -#: [error]wrong_password +#: ../cache/locales.php:258 msgid "Wrong password" msgstr "סיסמה שגויה" -#: [error]internal +#: ../cache/locales.php:259 msgid "Internal server error" msgstr "שגיאת שרת פנימית" -#: [error]session +#: ../cache/locales.php:260 msgid "Session error" msgstr "שגיאת סשן" -#: [error]account_created +#: ../cache/locales.php:261 msgid "Account successfully created" msgstr "חשבון נוצר בהצלחה" -#: [error]xmpp_unauthorized -#, fuzzy -msgctxt "[error]xmpp_unauthorized" +#: ../cache/locales.php:262 ../cache/locales.php:271 msgid "Your XMPP server is unauthorized" msgstr "השרת של XMPP שלך אינו מורשה" -#: [error]mec_error +#: ../cache/locales.php:263 msgid "The server takes too much time to respond" msgstr "לשרת לוקח יותר מדי זמן להגיב" -#: [error]too_old +#: ../cache/locales.php:264 msgid "Your web browser is too old to use with Movim." msgstr "דפדפן הרשת שלך הינו ישן מידי בכדי לעשות שימוש עם Movim." -#: [error]websocket -msgid "Movim cannot talk with the server, please try again later (Websocket connection error)" +#: ../cache/locales.php:265 +msgid "" +"Movim cannot talk with the server, please try again later (Websocket " +"connection error)" msgstr "" -#: [error]impossible +#: ../cache/locales.php:266 msgid "Impossible login" msgstr "" -#: [error]title +#: ../cache/locales.php:267 msgid "Oops!" msgstr "אופס!" -#: [error]default [visio]unknown_error +#: ../cache/locales.php:268 ../cache/locales.php:449 ../cache/locales.php:455 msgid "Unknown error" msgstr "שגיאה לא ידועה" -#: [error]login_format +#: ../cache/locales.php:269 msgid "Invalid username format" msgstr "" -#: [error]password_format +#: ../cache/locales.php:270 msgid "Invalid password format" msgstr "" -#: [error]unauthorized -#, fuzzy -msgctxt "[error]unauthorized" -msgid "Your XMPP server is unauthorized" -msgstr "השרת של XMPP שלך אינו מורשה" - -#: [error]conflict +#: ../cache/locales.php:272 msgid "A Movim session is already open on an other device" msgstr "" -#: [error]wrong_account +#: ../cache/locales.php:273 msgid "Movim failed to authenticate. You entered wrong data" msgstr "‫Movim נכשלה לאמת. הזנת מידע שגוי" -#: [error]mechanism +#: ../cache/locales.php:274 msgid "Authentication mechanism not supported by Movim" msgstr "מנגנון אימות לא נתמך על ידי Movim" # typo: authentication -#: [error]fail_auth +#: ../cache/locales.php:275 msgid "The XMPP authentification failed" msgstr "אימות XMPP נכשל" -#: [account]title [accounts]accounts_title +#: ../cache/locales.php:276 +#, php-format +msgid "" +"You can login with Facebook (chat only) using %syour.id@chat.facebook.com%s " +"and your password" +msgstr "" +"באפשרותך להתחבר עם Facebook (צ׳אט בלבד) באמצעות " +"%syour.id@chat.facebook.com%s וסיסמה" + +#: ../cache/locales.php:277 +#, php-format +msgid "%sGmail accounts are also compatible%s but are not fully supported" +msgstr "%sחשבונות Gmail מתאימים גם כן%s אך אינם נתמכים באופן מלא" + +#: ../cache/locales.php:278 +msgid "You can login using your favorite Jabber account" +msgstr "באפשרותך להתחבר באמצעות חשבון Jabber המועדף עליך" + +#: ../cache/locales.php:279 +msgid "or with our demonstration account" +msgstr "או בעזרת חשבון ניסיון שלנו" + +#: ../cache/locales.php:280 ../cache/locales.php:435 msgid "Accounts" msgstr "חשבונות" -#: [form]username +#: ../cache/locales.php:281 msgid "My address" msgstr "כתובת" -#: [form]create_one +#: ../cache/locales.php:283 msgid "Create one !" msgstr "צור חשבון !" -#: [form]another_account -msgid "Another account" -msgstr "חשבון אחר" - -#: [form]no_account +#: ../cache/locales.php:284 msgid "No account yet ?" msgstr "אין חשבון עדיין ?" -#: [form]whitelist.info +#: ../cache/locales.php:285 +msgid "Another account" +msgstr "חשבון אחר" + +#: ../cache/locales.php:286 msgid "You can login with accounts from theses servers" msgstr "" -#: [form]connected +#: ../cache/locales.php:287 msgid "Connected" msgstr "מחובר" -#: [form]population +#: ../cache/locales.php:288 msgid "Population" msgstr "אוכלוסיה" -#: [menu]empty_title -msgid "No news yet..." +#: ../cache/locales.php:289 +msgid "Bad nickname (between 4 and 40 characters)" msgstr "" -#: [menu]empty -msgid "Welcome on your news feed, here you will see all the posts published by your contacts and in the groups you have subscribed." +#: ../cache/locales.php:292 +msgid "" +"Welcome on your news feed, here you will see all the posts published in the " +"groups you have subscribed." msgstr "" -#: [menu]refresh +#: ../cache/locales.php:293 msgid "Refreshing all the streams" msgstr "רענון של כל הזרמים" -#: [menu]public +#: ../cache/locales.php:294 msgid "This post is public" msgstr "" -#: [affiliations]title +#: ../cache/locales.php:295 msgid "Manage your members" msgstr "נהל את חבריך" -#: [affiliations]get +#: ../cache/locales.php:296 msgid "Get the members" msgstr "השג את החברים" -#: [affiliations]saved +#: ../cache/locales.php:297 msgid "Affiliations saved" msgstr "סינופים נשמרו" -#: [subscriptions]title +#: ../cache/locales.php:298 msgid "Manage your subscriptions" msgstr "נהל את ההרשמות שלך" -#: [subscriptions]info +#: ../cache/locales.php:299 msgid "Manage the subscriptions" msgstr "נהל את ההרשמות" -#: [subscriptions]get +#: ../cache/locales.php:300 msgid "Get the subscriptions" msgstr "השג את ההרשמות" -#: [subscriptions]saved +#: ../cache/locales.php:301 msgid "Subscriptions saved" msgstr "הרשמות נשמרו" -#: [notifs]title +#: ../cache/locales.php:302 msgid "Pending Invitations" msgstr "הזמנות תלויות ועומדות" -#: [notifs]wants_to_talk +#: ../cache/locales.php:303 +#, php-format msgid "%s wants to talk with you" msgstr "%s רוצה לשוחח עמך" -#: [notifs]manage +#: ../cache/locales.php:304 msgid "Manage" msgstr "נהל" -#: [post]news_feed +#: ../cache/locales.php:305 ../cache/locales.php:338 msgid "News Feed" msgstr "הזנת חדשות" -#: [post]placeholder +#: ../cache/locales.php:306 ../cache/locales.php:339 msgid "Discover and register to the groups you are interested in" msgstr "" -#: [post]preview [page]preview +#: ../cache/locales.php:307 ../cache/locales.php:340 ../cache/locales.php:482 msgid "Preview" msgstr "תצוגה מקדימה" -#: [post]help [page]help +#: ../cache/locales.php:308 ../cache/locales.php:341 ../cache/locales.php:478 msgid "Help" msgstr "עזרה" -#: [post]help_more +#: ../cache/locales.php:309 ../cache/locales.php:342 msgid "More help" msgstr "" -#: [post]help_manual +#: ../cache/locales.php:310 ../cache/locales.php:343 msgid "Markdown syntax manual" msgstr "" -#: [post]title +#: ../cache/locales.php:311 ../cache/locales.php:344 ../cache/locales.php:681 msgid "Title" msgstr "כותרת" -#: [post]content +#: ../cache/locales.php:312 ../cache/locales.php:345 msgid "Content" msgstr "" -#: [post]link +#: ../cache/locales.php:313 ../cache/locales.php:346 msgid "Link" msgstr "קישור" -#: [post]tags +#: ../cache/locales.php:314 ../cache/locales.php:347 msgid "Tags" msgstr "" -#: [post]valid_url [publish]valid_url +#: ../cache/locales.php:315 ../cache/locales.php:348 msgid "Please enter a valid url" msgstr "" -#: [post]no_content_preview [publish]no_content_preview +#: ../cache/locales.php:316 ../cache/locales.php:349 msgid "No content to preview" msgstr "" -#: [post]no_content [publish]no_content [post]empty +#: ../cache/locales.php:317 ../cache/locales.php:350 ../cache/locales.php:687 msgid "No content" msgstr "אין איש קשר" -#: [post]published +#: ../cache/locales.php:318 ../cache/locales.php:351 msgid "Post published" msgstr "" -#: [post]deleted +#: ../cache/locales.php:319 ../cache/locales.php:352 msgid "Post deleted" msgstr "" -#: [post]gallery +#: ../cache/locales.php:320 ../cache/locales.php:353 msgid "This picture will be added to your gallery" msgstr "" -#: [post]hot +#: ../cache/locales.php:321 ../cache/locales.php:354 msgid "What's Hot" msgstr "מה חם" -#: [post]hot_text -msgid "Posts recently published in Groups that you are not subscribed (yet)" -msgstr "" - -#: [post]new [publish]new +#: ../cache/locales.php:322 ../cache/locales.php:355 msgid "New post" msgstr "" -#: [post]embed_tip -msgid "You can also use services like Imgur or Flickr to host your picture and paste the link here." +#: ../cache/locales.php:323 ../cache/locales.php:357 +msgid "" +"You can also use services like Imgur or Flickr to host your picture and " +"paste the link here." msgstr "" -#: [post]repost +#: ../cache/locales.php:324 +#, php-format msgid "This is a re-post from %s" msgstr "" -#: [post]repost_profile +#: ../cache/locales.php:325 +#, php-format msgid "See %s profile" msgstr "" -#: [post]public -#, fuzzy -msgid "Publish this post publicly?" -msgstr "האם דיוקן זה הינו פומבי ?" +#: ../cache/locales.php:326 +msgid "Publish this post on your public feed?" +msgstr "" -#: [post]blog_add +#: ../cache/locales.php:327 msgid "Post published on your blog" msgstr "" -#: [post]blog_remove +#: ../cache/locales.php:328 msgid "Post removed from your blog" msgstr "" -#: [post]delete_title [post]delete +#: ../cache/locales.php:329 ../cache/locales.php:701 msgid "Delete this post" msgstr "מחק את פרסום זה" -#: [post]delete_text +#: ../cache/locales.php:330 msgid "You are going to delete this post, please confirm your action" msgstr "" -#: [post]comments_disabled +#: ../cache/locales.php:331 msgid "Comments disabled" msgstr "" -#: [post]comment_published +#: ../cache/locales.php:332 msgid "Comment published" msgstr "" -#: [status]disconnect +#: ../cache/locales.php:333 msgid "Disconnect" msgstr "התנתק" -#: [status]here +#: ../cache/locales.php:334 msgid "Your status here !" msgstr "המצב שלך כאן !" -#: [status]updated +#: ../cache/locales.php:335 msgid "Status updated" msgstr "מצב עודכן" -#: [status]status +#: ../cache/locales.php:336 msgid "Status" msgstr "מצב" -#: [status]presence +#: ../cache/locales.php:337 msgid "Presence" msgstr "נוכחות" -#: [status]online -msgid "Online with Movim" -msgstr "" - -#: [publish]title +#: ../cache/locales.php:356 msgid "Publish" msgstr "" -#: [publish]attach -msgid "Add a file or a picture to your post" -msgstr "" - -#: [publish]no_publication +#: ../cache/locales.php:358 msgid "You cannot publish a post on this Group" msgstr "" -#: [publish]form_filled -msgid "Some fields have been filled in. Do you still want to go back and loose their content?" +#: ../cache/locales.php:359 +msgid "" +"Some fields have been filled in. Do you still want to go back and loose " +"their content?" msgstr "" -#: [public_groups]shared +#: ../cache/locales.php:360 msgid "Shared" msgstr "משותף" -#: [public_groups]added +#: ../cache/locales.php:362 +#, php-format msgid "%s has been added to your public groups" msgstr "%s התווסף אל הקבוצה הפומבית שלך" -#: [rooms]add +#: ../cache/locales.php:363 +#, php-format +msgid "%s has been removed from your public groups" +msgstr "%s הוסר/ה מן הקבוצות הפומביות שלך" + +#: ../cache/locales.php:364 msgid "Add a chatroom" msgstr "הוסף חדר שיחה" -#: [rooms]empty_text1 +#: ../cache/locales.php:365 msgid "You don't have any chatroom yet." msgstr "" -#: [rooms]empty_text2 +#: ../cache/locales.php:366 msgid "Add one by clicking on the add button in the header." msgstr "" -#: [chatrooms]title +#: ../cache/locales.php:367 msgid "Chatrooms" msgstr "חדרי שיחה" -#: [chatrooms]name_placeholder +#: ../cache/locales.php:370 msgid "My Favorite Room" msgstr "החדר המועדף עליי" -#: [chatrooms]users +#: ../cache/locales.php:374 +msgid "Remove a chatroom" +msgstr "הסר חדר שיחה" + +#: ../cache/locales.php:375 +msgid "" +"You are going to remove the following chatroom. Please confirm your action." +msgstr "" + +#: ../cache/locales.php:378 msgid "Users in the room" msgstr "משתמשים בתוך החדר" -#: [chatrooms]bad_nickname -msgid "Please enter a correct nickname (2 to 40 characters)" +#: ../cache/locales.php:379 +msgid "Please enter a correct nickname (6 to 40 characters)" msgstr "" -#: [room]anonymous_title +#: ../cache/locales.php:381 msgid "Public chatroom" msgstr "" -#: [room]no_room +#: ../cache/locales.php:382 msgid "Please provide a room address" msgstr "" -#: [room]anonymous_text1 +#: ../cache/locales.php:383 msgid "You are currently logued as an anonymous user." msgstr "" -#: [room]anonymous_text2 -msgid "You can join using your own account or create one on the login page by loging out using the cross in the top-right corner." +#: ../cache/locales.php:384 +msgid "" +"You can join using your own account or create one on the login page by " +"loging out using the cross in the top-right corner." msgstr "" -#: [room]anonymous_login +#: ../cache/locales.php:385 +#, php-format msgid "Login on %s" msgstr "" -#: [room]nick +#: ../cache/locales.php:386 msgid "Your nickname" msgstr "" -#: [roster]ungrouped +#: ../cache/locales.php:387 msgid "Ungrouped" msgstr "ללא קבוצה" -#: [roster]show_disconnected +#: ../cache/locales.php:388 msgid "Show disconnected contacts" msgstr "הצג אנשי קשר לא מחוברים" -#: [roster]hide_disconnected +#: ../cache/locales.php:389 msgid "Hide disconnected contacts" msgstr "הסתר אנשי קשר לא מחוברים" -#: [roster]show_group +#: ../cache/locales.php:390 +#, php-format msgid "Show group %s" msgstr "הצג את קבוצה %s" -#: [roster]hide_group +#: ../cache/locales.php:391 +#, php-format msgid "Hide group %s" msgstr "הסתר את קבוצה %s" -#: [roster]jid_error +#: ../cache/locales.php:392 msgid "Please enter a valid Jabber ID" msgstr "אנא הזן מזהה Jabber תקף" -#: [roster]no_contacts_title -#, fuzzy -msgid "No contacts ?" -msgstr "אנשי הקשר שלך" +#: ../cache/locales.php:393 +msgid "" +"No contacts ? You can add one using the + button bellow or going to the " +"Explore page" +msgstr "" +"אין אנשי קשר ? באפשרותך להוסיף אחד באמצעות לחצן + מתחת או באמצעות מעבר אל " +"עמוד גלה" -#: [roster]no_contacts_text -#, fuzzy -msgid "You can add one using the + button bellow" -msgstr "אין אנשי קשר ? באפשרותך להוסיף אחד באמצעות לחצן + מתחת או באמצעות מעבר אל עמוד גלה" - -#: [roster]show_hide +#: ../cache/locales.php:394 msgid "Show/Hide" msgstr "הצג/הסתר" -#: [roster]add_contact_info1 +#: ../cache/locales.php:395 msgid "Enter the Jabber ID of your contact." msgstr "הזן מזהה Jabber של איש קשר." -#: [roster]add_contact_info2 +#: ../cache/locales.php:396 msgid "Press enter to validate." msgstr "לחץ Enter לשם וידוא" -#: [roster]jid +#: ../cache/locales.php:397 msgid "JID" msgstr "JID" -#: [roster]results +#: ../cache/locales.php:398 msgid "Results" msgstr "תוצאות" -#: [roster]added +#: ../cache/locales.php:399 msgid "Contact added" msgstr "איש קשר התווסף" -#: [roster]deleted +#: ../cache/locales.php:401 msgid "Contact deleted" msgstr "איש קשר נמחק" -#: [roster]search -msgid "Search" -msgstr "חיפוש" - -#: [share]error +#: ../cache/locales.php:403 msgid "This is not a valid url" msgstr "" -#: [share]success +#: ../cache/locales.php:404 msgid "Sharing the URL" msgstr "" -#: [statistics]title +#: ../cache/locales.php:405 msgid "Statistics" msgstr "סטטיסטיקה" -#: [statistics]since +#: ../cache/locales.php:406 msgid "Since" msgstr "מאז" -#: [statistics]sessions +#: ../cache/locales.php:407 msgid "Sessions" msgstr "הפעלות" -#: [statistics]monthly_sub +#: ../cache/locales.php:409 msgid "Monthly Subscriptions" msgstr "הרשמות חודשיות" -#: [statistics]monthly_sub_cum +#: ../cache/locales.php:410 msgid "Monthly Subscriptions Cumulated" 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 הינה רשת חברתית מבוזרת (א-ריכוזית), טרם יצירת חשבון חדש עליך לבחור שרת להירשם אליו." +#: ../cache/locales.php:412 +msgid "" +"Movim is a decentralized social network, before creating a new account you " +"need to choose a server to register." +msgstr "" +"Movim הינה רשת חברתית מבוזרת (א-ריכוזית), טרם יצירת חשבון חדש עליך לבחור שרת " +"להירשם אליו." -#: [subscribe]server_question +#: ../cache/locales.php:413 msgid "Your server here ?" msgstr "שרתך כאן ?" -#: [subscribe]server_contact +#: ../cache/locales.php:414 msgid "Contact us to add yours to the officially supported servers list" msgstr "צור עמנו קשר כדי להוסיף את שלך אל רשימת השרתים אשר נתמכת באופן רשמי" -#: [feed]nope +#: ../cache/locales.php:416 msgid "No public feed for this contact" msgstr "אין ערוץ פומבי עבור איש קשר זה" -#: [feed]nope_contact +#: ../cache/locales.php:417 msgid "No contact specified" msgstr "לא צוין איש קשר" -#: [upload]title -#, fuzzy -msgid "Upload a file" -msgstr "העלאה" - -#: [upload]choose -msgid "Choose a file to upload" -msgstr "" - -#: [vcard]title [page]profile +#: ../cache/locales.php:418 ../cache/locales.php:473 msgid "Profile" msgstr "דיוקן" -#: [vcard]updated +#: ../cache/locales.php:419 msgid "Profile Updated" msgstr "דיוקן עודכן" -#: [vcard]not_updated +#: ../cache/locales.php:420 msgid "Profile Not Updated" msgstr "דיוקן לא מעודכן" -#: [vcard]public +#: ../cache/locales.php:421 msgid "Your profile is now public" msgstr "הדיוקן שלך הינו פומבי כעת" -#: [vcard]restricted +#: ../cache/locales.php:422 msgid "Your profile is now restricted" msgstr "הדיוקן שלך הינו מוגבל כעת" -#: [general]nickname -#, fuzzy -msgctxt "[general]nickname" -msgid "Nickname" -msgstr "שם כינוי" - -#: [accounts]twitter +#: ../cache/locales.php:436 msgid "Twitter" msgstr "Twitter" -#: [accounts]skype +#: ../cache/locales.php:437 msgid "Skype" msgstr "Skype" -#: [accounts]yahoo +#: ../cache/locales.php:438 msgid "Yahoo" msgstr "Yahoo" -#: [accounts]accounts_nickname -#, fuzzy -msgctxt "[accounts]accounts_nickname" -msgid "Nickname" -msgstr "שם כינוי" - -#: [accounts]accounts_yahoo -#, fuzzy -msgid "Yahoo Account" -msgstr "חשבונות אחרים" - -#: [privacy]privacy_title +#: ../cache/locales.php:439 msgid "Privacy Level" msgstr "רמת פרטיות" -#: [privacy]privacy_question +#: ../cache/locales.php:440 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." -msgstr "לצומת לבך ! בהופכך את דיוקנך לפומבי, כל המידע שמנוי מעלה יהיה זמין לכל המשתמשים של Movim וגם בכל המרשתת." +#: ../cache/locales.php:441 +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." +msgstr "" +"לצומת לבך ! בהופכך את דיוקנך לפומבי, כל המידע שמנוי מעלה יהיה זמין לכל " +"המשתמשים של Movim וגם בכל המרשתת." -#: [save]submit [button]submit -msgid "Submit" -msgstr "שלח" - -#: [save]reset [button]reset -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 +#: ../cache/locales.php:442 msgid "Call" msgstr "צור קשר" -#: [visio]hang_up +#: ../cache/locales.php:443 msgid "Hang up" msgstr "נתק" -#: [visio]connection +#: ../cache/locales.php:444 msgid "Connection" msgstr "חיבור" -#: [global]no_js +#: ../cache/locales.php:445 ../cache/locales.php:451 +msgid "Hung up" +msgstr "נותקה" + +#: ../cache/locales.php:446 ../cache/locales.php:452 +msgid "Your contact is busy" +msgstr "איש הקשר שלך הינו עסוק" + +#: ../cache/locales.php:447 ../cache/locales.php:453 +msgid "Declined" +msgstr "נדחתה" + +#: ../cache/locales.php:448 ../cache/locales.php:454 +msgid "Remote application incompatible" +msgstr "יישום מרוחק לא תואם" + +#: ../cache/locales.php:450 ../cache/locales.php:456 +msgid "Is calling you" +msgstr "מתקשר אליך" + +#: ../cache/locales.php:457 msgid "You don't have javascript enabled. Good luck with that." -msgstr "אין לך Javascript מאופשר. עליך לאפשר Javascript בכדי להשתמש באתר זה." +msgstr "" +"אין לך Javascript מאופשר. עליך לאפשר Javascript בכדי להשתמש באתר זה." -#: [global]description -msgid "Movim is a kickass distributed social networking platform that protect your privacy an comes with a set of awesome features." -msgstr "Movim היא פלטפורמת רשת חברתית מבוזרת אשר שומרת על הפרטיות שלך ומגיעה עם סט של תכונות נהדרות." +#: ../cache/locales.php:458 +msgid "" +"Movim is a kickass distributed social networking platform that protect your " +"privacy an comes with a set of awesome features." +msgstr "" +"Movim היא פלטפורמת רשת חברתית מבוזרת אשר שומרת על הפרטיות שלך ומגיעה עם סט " +"של תכונות נהדרות." -#: [page]administration +#: ../cache/locales.php:459 msgid "Administration" msgstr "ניהול" -#: [page]home +#: ../cache/locales.php:460 msgid "Home" msgstr "בית" -#: [page]discover +#: ../cache/locales.php:461 msgid "Discover" msgstr "גלה" -#: [page]explore +#: ../cache/locales.php:462 msgid "Explore" msgstr "סייר" -#: [page]account_creation +#: ../cache/locales.php:463 msgid "Account Creation" msgstr "יצירת חשבון" -#: [page]avatar +#: ../cache/locales.php:464 +msgid "News" +msgstr "חדשות" + +#: ../cache/locales.php:465 msgid "Avatar" msgstr "אווטאר" -#: [page]chats +#: ../cache/locales.php:467 msgid "Chats" msgstr "שיחות" -#: [page]server +#: ../cache/locales.php:470 msgid "Server" msgstr "שרת" -#: [page]public_groups +#: ../cache/locales.php:471 msgid "Public Groups" msgstr "קבוצות פומביות" -#: [page]viewer +#: ../cache/locales.php:472 msgid "Viewer" msgstr "צופה" -#: [page]media +#: ../cache/locales.php:474 msgid "Media" msgstr "מדיה" -#: [page]blog +#: ../cache/locales.php:475 msgid "Blog" msgstr "בלוג" -#: [page]about +#: ../cache/locales.php:476 msgid "About" msgstr "אודות" -#: [page]login +#: ../cache/locales.php:477 msgid "Login" msgstr "כניסה" # הזנה -#: [page]feed +#: ../cache/locales.php:479 msgid "Feed" msgstr "ערוץ" -#: [page]gallery +#: ../cache/locales.php:481 msgid "Gallery" msgstr "גלריה" -#: [page]visio +#: ../cache/locales.php:483 msgid "Visio-conference" msgstr "ועידת וידאו" -#: [page]pods +#: ../cache/locales.php:484 msgid "Pods" msgstr "שרתים" -#: [page]share +#: ../cache/locales.php:485 msgid "Share" msgstr "" -#: [page]room +#: ../cache/locales.php:486 msgid "Room" msgstr "" -#: [error]error +#: ../cache/locales.php:487 +#, php-format msgid "Error: %s" msgstr "שגיאה: %s" -#: [error]cannot_load_file +#: ../cache/locales.php:488 +#, php-format msgid "Cannot load file '%s'" msgstr "לא ניתן לטעון קובץ '%s'" -#: [error]route +#: ../cache/locales.php:489 +#, php-format msgid "Route error, please set all the parameters for the page %s" msgstr "שגיאת ניתוב, אנא הגדר את כל הפרמטרים עבור העמוד %s" -#: [error]widget_load_error +#: ../cache/locales.php:490 +#, php-format msgid "Requested widget '%s' doesn't exist." msgstr "וידג׳ט מבוקש '%s' לא קיים." -#: [error]widget_call_error +#: ../cache/locales.php:491 +#, php-format msgid "Requested event '%s' not registered." msgstr "אירוע מבוקש '%s' לא רשום." -#: [error]whoops +#: ../cache/locales.php:492 msgid "Whoops!" msgstr "אופס!" -#: [error]media_not_found +#: ../cache/locales.php:493 msgid "It seem that you don't have any pictures here?" msgstr "נראה כי אין לך שום תמונה כאן?" -#: [error]media_ask_upload +#: ../cache/locales.php:494 msgid "You can try to upload a couple by going to the Media page" msgstr "" -#: [title]about +#: ../cache/locales.php:495 +#, php-format msgid "%s - About" msgstr "%s - אודות" -#: [title]account +#: ../cache/locales.php:496 +#, php-format msgid "%s - Account" msgstr "%s - חשבון" -#: [title]administration +#: ../cache/locales.php:497 +#, php-format msgid "%s - Administration Panel" msgstr "%s - לוח ניהול" -#: [title]blog +#: ../cache/locales.php:498 +#, php-format msgid "%s - Blog" msgstr "%s - בלוג" -#: [title]configuration +#: ../cache/locales.php:499 +#, php-format msgid "%s - Configuration" msgstr "‏‏%s - תצורה" -#: [title]discover +#: ../cache/locales.php:500 +#, php-format msgid "%s - Discover" msgstr "%s - לגלות" -#: [title]explore +#: ../cache/locales.php:501 +#, php-format msgid "%s - Explore" msgstr "%s - סייר" -#: [title]help +#: ../cache/locales.php:502 +#, php-format msgid "%s - Help Page" msgstr "‏‏%s - עמוד עזרה" -#: [title]login +#: ../cache/locales.php:503 +#, php-format msgid "%s - Login to Movim" msgstr "‏‏%s - התחברות אל Movim" -#: [title]main +#: ../cache/locales.php:504 +#, php-format msgid "%s - Welcome to Movim" msgstr "‏‏%s - ברוך בואך אל Movim" -#: [title]media +#: ../cache/locales.php:505 +#, php-format msgid "%s - Media" msgstr "%s - מדיה" -#: [title]news +#: ../cache/locales.php:506 +#, php-format msgid "%s - News" msgstr "%s - חדשות" -#: [title]node_configuration +#: ../cache/locales.php:507 +#, php-format msgid "%s - Group Configuration" msgstr "%s - תצורת קבוצה" -#: [title]node +#: ../cache/locales.php:508 +#, php-format msgid "%s - Group" msgstr "%s - קבוצה" -#: [title]not_found +#: ../cache/locales.php:509 +#, php-format msgid "%s - 404" msgstr "" -#: [title]profile +#: ../cache/locales.php:510 +#, php-format msgid "%s - Profile" msgstr "‏‏%s - דיוקן" -#: [title]server +#: ../cache/locales.php:511 +#, php-format msgid "%s - Server" msgstr "%s - שרת" -#: [button]validate +#: ../cache/locales.php:512 msgid "Validate" msgstr "מתן תוקף" -#: [button]refresh +#: ../cache/locales.php:513 msgid "Refresh" msgstr "רענן" -#: [button]add +#: ../cache/locales.php:514 msgid "Add" msgstr "הוסף" -#: [button]delete +#: ../cache/locales.php:515 msgid "Delete" msgstr "מחק" -#: [button]cancel +#: ../cache/locales.php:516 +msgid "Remove" +msgstr "הסר" + +#: ../cache/locales.php:517 msgid "Cancel" msgstr "ביטול" -#: [button]close +#: ../cache/locales.php:518 msgid "Close" msgstr "סגור" -#: [button]update +#: ../cache/locales.php:519 msgid "Update" msgstr "עדכן" -#: [button]updating +#: ../cache/locales.php:520 msgid "Updating" msgstr "מעדכן כעת" -#: [button]submitting +#: ../cache/locales.php:521 +msgid "Submit" +msgstr "שלח" + +#: ../cache/locales.php:522 msgid "Submitting" msgstr "שולח כעת" -#: [button]register +#: ../cache/locales.php:523 +msgid "Reset" +msgstr "אפס" + +#: ../cache/locales.php:524 msgid "Register" msgstr "הירשם" -#: [button]unregister +#: ../cache/locales.php:525 msgid "Unregister" msgstr "בטל רישום" -#: [button]save +#: ../cache/locales.php:526 msgid "Save" msgstr "שמור" -#: [button]clear +#: ../cache/locales.php:527 msgid "Clear" msgstr "טהר" -#: [button]upload +#: ../cache/locales.php:528 msgid "Upload" msgstr "העלאה" # היכנסו פנימה! # היכנס/י -#: [button]come_in +#: ../cache/locales.php:529 msgid "Come in!" msgstr "כניסה!" -#: [button]connecting +#: ../cache/locales.php:530 msgid "Connecting" msgstr "כעת מתחבר" -#: [button]bool_yes +#: ../cache/locales.php:531 msgid "Yes" msgstr "כן" -#: [button]bool_no +#: ../cache/locales.php:532 msgid "No" msgstr "לא" -#: [button]return +#: ../cache/locales.php:534 msgid "Return" msgstr "חזור" -#: [button]accept +#: ../cache/locales.php:535 msgid "Accept" msgstr "קבלה" -#: [button]refuse +#: ../cache/locales.php:536 msgid "Refuse" msgstr "" -#: [button]next +#: ../cache/locales.php:537 msgid "Next" msgstr "" -#: [button]previous +#: ../cache/locales.php:538 msgid "Previous" msgstr "" -#: [step]step +#: ../cache/locales.php:539 +#, php-format msgid "Step %s" msgstr "צעד %s" -#: [day]title +#: ../cache/locales.php:542 msgid "Day" msgstr "יום" -#: [day]monday +#: ../cache/locales.php:543 msgid "Monday" msgstr "יום שני" -#: [day]tuesday +#: ../cache/locales.php:544 msgid "Tuesday" msgstr "יום שלישי" -#: [day]wednesday +#: ../cache/locales.php:545 msgid "Wednesday" msgstr "יום רביעי" -#: [day]thursday +#: ../cache/locales.php:546 msgid "Thursday" msgstr "יום חמישי" -#: [day]friday +#: ../cache/locales.php:547 msgid "Friday" msgstr "יום שישי" -#: [day]saturday +#: ../cache/locales.php:548 msgid "Saturday" msgstr "יום שבת" -#: [day]sunday +#: ../cache/locales.php:549 msgid "Sunday" msgstr "יום ראשון" # אין -#: [gender]nil -#, fuzzy -msgctxt "[gender]nil" +#: ../cache/locales.php:550 ../cache/locales.php:559 msgid "None" msgstr "ללא" -#: [gender]male +#: ../cache/locales.php:551 msgid "Male" msgstr "זכר" -#: [gender]female +#: ../cache/locales.php:552 msgid "Female" msgstr "נקבה" -#: [gender]other +#: ../cache/locales.php:553 msgid "Other" msgstr "אחר" -#: [client]bot +#: ../cache/locales.php:554 msgid "Bot" msgstr "בוט" -#: [client]desktop +#: ../cache/locales.php:555 msgid "Desktop" msgstr "שולחן עבודה" -#: [client]phone +#: ../cache/locales.php:556 msgid "Phone" msgstr "טלפון" -#: [client]web +#: ../cache/locales.php:557 msgid "Web" msgstr "רשת" -#: [client]registered +#: ../cache/locales.php:558 msgid "Registered" msgstr "רשום" -# אין -#: [marital]nil -#, fuzzy -msgctxt "[marital]nil" -msgid "None" -msgstr "ללא" - -#: [marital]single +#: ../cache/locales.php:560 msgid "Single" msgstr "רווק/ה" -#: [marital]relationship +#: ../cache/locales.php:561 msgid "In a relationship" msgstr "במערכת יחסים" -#: [marital]married +#: ../cache/locales.php:562 msgid "Married" msgstr "נישואים" -#: [marital]divorced +#: ../cache/locales.php:563 msgid "Divorced" msgstr "גרוש/ה" -#: [marital]widowed +#: ../cache/locales.php:564 msgid "Widowed" msgstr "אלמן/ה" -#: [marital]cohabiting +#: ../cache/locales.php:565 msgid "Cohabiting" msgstr "חיים במשותף" # שותפות אזרחית -#: [marital]union +#: ../cache/locales.php:566 msgid "Civil Union" msgstr "נישואים אזרחיים" -#: [flag]white +#: ../cache/locales.php:567 msgid "Not shared" msgstr "לא שותף" -#: [flag]green +#: ../cache/locales.php:568 msgid "Shared with one contact" msgstr "שותף עם איש קשר אחד" -#: [flag]orange +#: ../cache/locales.php:569 msgid "Shared with all contacts" msgstr "שותף עם כל אנשי הקשר" -#: [flag]red +#: ../cache/locales.php:570 msgid "Shared with the XMPP network" msgstr "שותף עם רשת התקשורת XMPP" -#: [flag]black +#: ../cache/locales.php:571 msgid "Shared with the whole Internet" msgstr "שותף עם כל המרשתת" -#: [presence]online +#: ../cache/locales.php:572 msgid "Online" msgstr "מקוון" -#: [presence]away +#: ../cache/locales.php:573 msgid "Away" msgstr "נעדר" -#: [presence]dnd +#: ../cache/locales.php:574 msgid "Do Not Disturb" msgstr "נא לא להפריע" -#: [presence]xa +#: ../cache/locales.php:575 msgid "Extended Away" msgstr "לא זמין" -#: [presence]offline +#: ../cache/locales.php:576 msgid "Offline" msgstr "לא מקוון" -#: [presence]error +#: ../cache/locales.php:577 msgid "Error" msgstr "שגיאה" -#: [mood]afraid +#: ../cache/locales.php:578 msgid "afraid" msgstr "מפחד" -#: [mood]amazed +#: ../cache/locales.php:579 msgid "amazed" msgstr "נדהם" -#: [mood]amorous +#: ../cache/locales.php:580 msgid "amorous" msgstr "חושק" -#: [mood]angry +#: ../cache/locales.php:581 msgid "angry" msgstr "כועס" -#: [mood]annoyed +#: ../cache/locales.php:582 msgid "annoyed" msgstr "נרגז" -#: [mood]anxious +#: ../cache/locales.php:583 msgid "anxious" msgstr "חרד" -#: [mood]aroused +#: ../cache/locales.php:584 msgid "aroused" msgstr "מרוגש" -#: [mood]ashamed +#: ../cache/locales.php:585 msgid "ashamed" msgstr "מתבייש" -#: [mood]bored +#: ../cache/locales.php:586 msgid "bored" msgstr "משועמם" -#: [mood]brave +#: ../cache/locales.php:587 msgid "brave" msgstr "אמיץ" -#: [mood]calm +#: ../cache/locales.php:588 msgid "calm" msgstr "רגוע" -#: [mood]cautious +#: ../cache/locales.php:589 msgid "cautious" msgstr "זהיר" -#: [mood]cold +#: ../cache/locales.php:590 msgid "cold" msgstr "קר" -#: [mood]confident +#: ../cache/locales.php:591 msgid "confident" msgstr "סמוך" -#: [mood]confused +#: ../cache/locales.php:592 msgid "confused" msgstr "מבולבל" -#: [mood]contemplative +#: ../cache/locales.php:593 msgid "contemplative" msgstr "ספקולטיבי" -#: [mood]contented +#: ../cache/locales.php:594 msgid "contented" msgstr "מסופק" -#: [mood]cranky +#: ../cache/locales.php:595 msgid "cranky" msgstr "נרגז" -#: [mood]crazy +#: ../cache/locales.php:596 msgid "crazy" msgstr "מטורף" -#: [mood]creative +#: ../cache/locales.php:597 msgid "creative" msgstr "יצירתי" -#: [mood]curious +#: ../cache/locales.php:598 msgid "curious" msgstr "סקרן" -#: [mood]dejected +#: ../cache/locales.php:599 msgid "dejected" msgstr "מיואש" -#: [mood]depressed +#: ../cache/locales.php:600 msgid "depressed" msgstr "מדוכא" -#: [mood]disappointed +#: ../cache/locales.php:601 msgid "disappointed" msgstr "מאוכזב" -#: [mood]disgusted +#: ../cache/locales.php:602 msgid "disgusted" msgstr "נגעל" -#: [mood]dismayed +#: ../cache/locales.php:603 msgid "dismayed" msgstr "נחרד" -#: [mood]distracted +#: ../cache/locales.php:604 msgid "distracted" msgstr "טרוד" -#: [mood]embarrassed +#: ../cache/locales.php:605 msgid "embarrassed" msgstr "נבוך" -#: [mood]envious +#: ../cache/locales.php:606 msgid "envious" msgstr "מקנא" -#: [mood]excited +#: ../cache/locales.php:607 msgid "excited" msgstr "נרגש" -#: [mood]flirtatious +#: ../cache/locales.php:608 msgid "flirtatious" msgstr "פלרטטני" -#: [mood]frustated +#: ../cache/locales.php:609 msgid "frustated" msgstr "מתוסכל" -#: [mood]grateful +#: ../cache/locales.php:610 msgid "grateful" msgstr "נעים" -#: [mood]grieving +#: ../cache/locales.php:611 msgid "grieving" msgstr "מתאבל" -#: [mood]grumpy +#: ../cache/locales.php:612 msgid "grumpy" msgstr "זועף" -#: [mood]guilty +#: ../cache/locales.php:613 msgid "guilty" msgstr "אשם" -#: [mood]happy +#: ../cache/locales.php:614 msgid "happy" msgstr "שמח" -#: [mood]hopeful +#: ../cache/locales.php:615 msgid "hopeful" msgstr "אופטימי" -#: [mood]hot +#: ../cache/locales.php:616 msgid "hot" msgstr "לוהט" -#: [mood]humbled +#: ../cache/locales.php:617 msgid "humbled" msgstr "מוכנע" -#: [mood]humiliated +#: ../cache/locales.php:618 msgid "humiliated" msgstr "מושפל" -#: [mood]hungry +#: ../cache/locales.php:619 msgid "hungry" msgstr "רעב" -#: [mood]hurt +#: ../cache/locales.php:620 msgid "hurt" msgstr "פגוע" -#: [mood]impressed +#: ../cache/locales.php:621 msgid "impressed" msgstr "מתפעל" -#: [mood]in_awe +#: ../cache/locales.php:622 msgid "in awe" msgstr "מפוחד" -#: [mood]in_love +#: ../cache/locales.php:623 msgid "in love" msgstr "מאוהב" -#: [mood]indignant +#: ../cache/locales.php:624 msgid "indignant" msgstr "ממורמר" -#: [mood]interested +#: ../cache/locales.php:625 msgid "interested" msgstr "מתעניין" -#: [mood]intoxicated +#: ../cache/locales.php:626 msgid "intoxicated" msgstr "שיכור" -#: [mood]invincible +#: ../cache/locales.php:627 msgid "invincible" msgstr "בלתי מנוצח" -#: [mood]jealous +#: ../cache/locales.php:628 msgid "jealous" msgstr "מקנא" -#: [mood]lonely +#: ../cache/locales.php:629 msgid "lonely" msgstr "בודד" -#: [mood]lost +#: ../cache/locales.php:630 msgid "lost" msgstr "אבוד" -#: [mood]lucky +#: ../cache/locales.php:631 msgid "lucky" msgstr "בר מזל" -#: [mood]mean +#: ../cache/locales.php:632 msgid "mean" msgstr "דל" -#: [mood]moody +#: ../cache/locales.php:633 msgid "moody" msgstr "מדוכדך" -#: [mood]nervous +#: ../cache/locales.php:634 msgid "nervous" msgstr "עצבני" -#: [mood]neutral +#: ../cache/locales.php:635 msgid "neutral" msgstr "אדיש" -#: [mood]offended +#: ../cache/locales.php:636 msgid "offended" msgstr "נעלב" -#: [mood]outraged +#: ../cache/locales.php:637 msgid "outraged" msgstr "מזועזע" -#: [mood]playful +#: ../cache/locales.php:638 msgid "playful" msgstr "שובב" -#: [mood]proud +#: ../cache/locales.php:639 msgid "proud" msgstr "יהיר" -#: [mood]relaxed +#: ../cache/locales.php:640 msgid "relaxed" msgstr "רגוע" -#: [mood]relieved +#: ../cache/locales.php:641 msgid "relieved" msgstr "משוחרר" -#: [mood]restless +#: ../cache/locales.php:642 +msgid "remorseful" +msgstr "מתייסר" + +#: ../cache/locales.php:643 msgid "restless" msgstr "חסר מנוחה" -#: [mood]sad +#: ../cache/locales.php:644 msgid "sad" msgstr "עצוב" -#: [mood]sarcastic +#: ../cache/locales.php:645 msgid "sarcastic" msgstr "עוקצני" -#: [mood]satisfied +#: ../cache/locales.php:646 msgid "satisfied" msgstr "מרוצה" -#: [mood]serious +#: ../cache/locales.php:647 msgid "serious" msgstr "רציני" -#: [mood]shocked +#: ../cache/locales.php:648 msgid "shocked" msgstr "הלום" -#: [mood]shy +#: ../cache/locales.php:649 msgid "shy" msgstr "ביישן" -#: [mood]sick +#: ../cache/locales.php:650 msgid "sick" msgstr "חולה" -#: [mood]sleepy +#: ../cache/locales.php:651 msgid "sleepy" msgstr "ישנוני" -#: [mood]spontaneous +#: ../cache/locales.php:652 msgid "spontaneous" msgstr "ספונטני" -#: [mood]stressed +#: ../cache/locales.php:653 msgid "stressed" msgstr "לחוץ" -#: [mood]strong +#: ../cache/locales.php:654 msgid "strong" msgstr "חזק" -#: [mood]surprised +#: ../cache/locales.php:655 msgid "surprised" msgstr "מופתע" -#: [mood]thankful +#: ../cache/locales.php:656 msgid "thankful" msgstr "אסיר תודה" -#: [mood]thirsty +#: ../cache/locales.php:657 msgid "thirsty" msgstr "צמא" -#: [mood]tired +#: ../cache/locales.php:658 msgid "tired" msgstr "עייף" -#: [mood]undefined +#: ../cache/locales.php:659 msgid "undefined" msgstr "מעורפל" -#: [mood]weak +#: ../cache/locales.php:660 msgid "weak" msgstr "חלש" -#: [mood]worried +#: ../cache/locales.php:661 msgid "worried" msgstr "מודאג" -#: [month]title +#: ../cache/locales.php:662 msgid "Month" msgstr "חודש" -#: [month]january +#: ../cache/locales.php:663 msgid "January" msgstr "ינואר" -#: [month]february +#: ../cache/locales.php:664 msgid "February" msgstr "פברואר" -#: [month]march +#: ../cache/locales.php:665 msgid "March" msgstr "מרץ" -#: [month]april +#: ../cache/locales.php:666 msgid "April" msgstr "אפריל" -#: [month]may +#: ../cache/locales.php:667 msgid "May" msgstr "מאי" -#: [month]june +#: ../cache/locales.php:668 msgid "June" msgstr "יוני" -#: [month]july +#: ../cache/locales.php:669 msgid "July" msgstr "יולי" -#: [month]august +#: ../cache/locales.php:670 msgid "August" msgstr "אוגוסט" -#: [month]september +#: ../cache/locales.php:671 msgid "September" msgstr "ספטמבר" -#: [month]october +#: ../cache/locales.php:672 msgid "October" msgstr "אוקטובר" -#: [month]november +#: ../cache/locales.php:673 msgid "November" msgstr "נובמבר" -#: [month]december +#: ../cache/locales.php:674 msgid "December" msgstr "דצמבר" -#: [year]title +#: ../cache/locales.php:675 msgid "Year" msgstr "שנה" -#: [date]today +#: ../cache/locales.php:676 msgid "Today" msgstr "היום" -#: [date]tomorrow +#: ../cache/locales.php:677 msgid "Tomorrow" msgstr "מחר" -#: [date]yesterday +#: ../cache/locales.php:678 msgid "Yesterday" msgstr "אתמול" -#: [date]ago -#, fuzzy -msgid "%d days ago" +#: ../cache/locales.php:679 +#, php-format +msgid " %d days ago" msgstr " לפני %d ימים" -#: [date]day +#: ../cache/locales.php:680 msgid "day" msgstr "יום" -#: [post]whats_new +#: ../cache/locales.php:682 msgid "What's new ?" msgstr "מה חדש ?" -#: [post]place +#: ../cache/locales.php:683 msgid "Place" msgstr "מיקום" -#: [post]by +#: ../cache/locales.php:684 msgid "by" msgstr "על ידי" -#: [post]geolocalisation +#: ../cache/locales.php:685 msgid "Geolocalisation" msgstr "" -#: [post]email +#: ../cache/locales.php:686 msgid "email" msgstr "דוא״ל" -#: [post]no_comments +#: ../cache/locales.php:688 msgid "No comments yet" msgstr "" -#: [post]no_comments_stream +#: ../cache/locales.php:689 msgid "No comments stream" msgstr "אין זרם תגובות" -#: [post]no_load +#: ../cache/locales.php:690 msgid "Your feed cannot be loaded." msgstr "ערוצך לא יכול להיטען." -#: [post]older +#: ../cache/locales.php:691 msgid "Get older posts" msgstr "השג רשומות נושנות" -#: [post]new_items +#: ../cache/locales.php:692 +#, php-format msgid "%s new items" msgstr "%s פריטים חדשים" -#: [post]comment_error +#: ../cache/locales.php:693 msgid "Comment publication error" msgstr "שגיאת פרסום תגובה" -#: [post]comments_older +#: ../cache/locales.php:694 msgid "Show the older comments" msgstr "הצג את התגובות הישנות יותר" -#: [post]comments_loading -#, fuzzy -msgid "Loading comments..." +#: ../cache/locales.php:695 +msgid "Loading comments ..." msgstr "כעת טוען תגובות ..." -#: [post]comments_get +#: ../cache/locales.php:696 msgid "Get the comments" msgstr "השג תגובות" -#: [post]comment_add +#: ../cache/locales.php:697 msgid "Add a comment" msgstr "הוסף תגובה" -#: [post]share +#: ../cache/locales.php:698 msgid "Share with" msgstr "שתף בעזרת" -#: [post]share_everyone +#: ../cache/locales.php:699 msgid "Everyone" msgstr "כולם" -#: [post]share_your_contacts +#: ../cache/locales.php:700 msgid "Your contacts" msgstr "אנשי הקשר שלך" -#: [post]updated +#: ../cache/locales.php:702 msgid "Updated" msgstr "עודכן" -#: [post]content_not_found +#: ../cache/locales.php:703 msgid "Content not found" msgstr "תוכן לא נמצא" -#: [post]default_title +#: ../cache/locales.php:704 msgid "Contact publication" msgstr "פרסום איש קשר" -#: [post]comments +#: ../cache/locales.php:705 msgid "Comments" msgstr "" -#: [api]error +#: ../cache/locales.php:706 msgid "The API is not reachable, try again later" msgstr "API אינו נגיש, נסה שוב מאוחר יותר" -#: [field]type_here +#: ../cache/locales.php:707 msgid "Type here" msgstr "" -#~ msgid "Environment" -#~ msgstr "סביבה" - -#~ msgid "You can login with Facebook (chat only) using %syour.id@chat.facebook.com%s and your password" -#~ msgstr "באפשרותך להתחבר עם Facebook (צ׳אט בלבד) באמצעות %syour.id@chat.facebook.com%s וסיסמה" - -#~ msgid "%sGmail accounts are also compatible%s but are not fully supported" -#~ msgstr "%sחשבונות Gmail מתאימים גם כן%s אך אינם נתמכים באופן מלא" - -#~ msgid "You can login using your favorite Jabber account" -#~ msgstr "באפשרותך להתחבר באמצעות חשבון Jabber המועדף עליך" - -#~ msgid "or with our demonstration account" -#~ msgstr "או בעזרת חשבון ניסיון שלנו" - -#~ msgid "%s has been removed from your public groups" -#~ msgstr "%s הוסר/ה מן הקבוצות הפומביות שלך" - -#~ msgid "Remove a chatroom" -#~ msgstr "הסר חדר שיחה" - -#~ msgid "Remote application incompatible" -#~ msgstr "יישום מרוחק לא תואם" - -#~ msgid "Remove" -#~ msgstr "הסר" - -#~ msgid "remorseful" -#~ msgstr "מתייסר" - #~ msgid "Actual version : " #~ msgstr "גרסה ממשית : " #~ msgid "Update your PHP version or contact your server administrator" #~ msgstr "נא לעדכן גרסת PHP או ליצור קשר עם מנהל שרתך" +#, php-format #~ msgid "Install %s and %s packages" #~ msgstr "התקנת %s וגם חבילות %s" +#, php-format #~ msgid "Install the %s package" #~ msgstr "התקנת החבילה %s" @@ -2794,18 +2638,23 @@ msgstr "" #~ msgid "or" #~ msgstr "או" +#, php-format #~ msgid "Bosh connection failed with error '%s'" #~ msgstr "חיבור Bosh נכשל עם שגיאה '%s'" +#, php-format #~ msgid "XMPP connection through Bosh failed with error '%s'" #~ msgstr "חיבור XMPP דרך Bosh נכשל עם שגיאה '%s'" +#, php-format #~ msgid "Couldn't create directory '%s'." #~ msgstr "לא ניתן ליצור מדור '%s'." +#, php-format #~ msgid "Couldn't create configuration file '%s'." #~ msgstr "לא ניתן ליצור קובץ תצורה '%s'." +#, php-format #~ msgid "Database connection failed with error '%s'" #~ msgstr "חיבור מסד נתונים נכשל עם שגיאה '%s'" @@ -2820,10 +2669,14 @@ msgstr "" #~ msgid "Compatibility Test" #~ msgstr "בדיקת תאימות" -#~ msgid "The following requirements were not met. Please make sure they are all satisfied in order to install Movim." +#~ msgid "" +#~ "The following requirements were not met. Please make sure they are all " +#~ "satisfied in order to install Movim." #~ msgstr "הדרישות הבאות לא סופקו. נא לוודא שכולן מסופקות בכדי להתקין את Movim." -#~ msgid "Some errors were detected. Please correct them for the installation to proceed." +#~ msgid "" +#~ "Some errors were detected. Please correct them for the installation to " +#~ "proceed." #~ msgstr "אותרו שגיאות מסוימות. נא לתקנן למען המשך ההתקנה." #~ msgid "XMPP Connection Preferences" @@ -2850,12 +2703,15 @@ msgstr "" #~ msgid "JID not provided." #~ msgstr "לא סופקה כתובת JID." +#, php-format #~ msgid "jid '%s' is incorrect" #~ msgstr "כתובת jid ‫'%s' שגויה" +#, php-format #~ msgid "%s - Account Creation" #~ msgstr "‏‏%s - יצירת חשבון" +#, php-format #~ msgid "%s - Add An Account" #~ msgstr "‏‏%s - הוספת חשבון" @@ -2915,8 +2771,12 @@ msgstr "" #~ msgid "What is Movim?" #~ msgstr "מהי Movim?" -#~ msgid "Some features are missing/I can't do everything I used to do on other social networks" -#~ msgstr "קיימות תכונות מסוימות שהינן חסרות/אין ביכולתי לעשות כל מה שנהגתי לעשות ברשתות חברתיות אחרות" +#~ msgid "" +#~ "Some features are missing/I can't do everything I used to do on other social " +#~ "networks" +#~ msgstr "" +#~ "קיימות תכונות מסוימות שהינן חסרות/אין ביכולתי לעשות כל מה שנהגתי לעשות " +#~ "ברשתות חברתיות אחרות" #~ msgid "The current BOSH URL in invalid" #~ msgstr "כתובת BOSH URL נוכחית הינה שגויה" @@ -2924,6 +2784,10 @@ msgstr "" #~ msgid "Connecting..." #~ msgstr "מתחבר כעת..." +#, php-format +#~ msgid "This server hosts %s accounts" +#~ msgstr "שרת זה מארח %s חשבונות" + #~ msgid "Debug console" #~ msgstr "מסוף ניפוי שגיאות" @@ -2944,35 +2808,49 @@ msgstr "" #~ msgid "PHP version mismatch. Movim requires PHP 5.3 minimum." #~ msgstr "גרסת PHP לא תואמת. Movim מצריכה PHP 5.3 לפחות." +#, php-format #~ msgid "Movim requires the %s extension." #~ msgstr "‫Movim מצריכה את ההרחבות %s." # בטרם ברצונך ליהנות # רשת העבודה החברתית -#~ msgid "Before you enjoy your social network, a few adjustements are required." +#~ msgid "" +#~ "Before you enjoy your social network, a few adjustements are required." #~ msgstr "לפני שיהיה ביכולתך ליהנות מן הרשת החברתית שלך, נדרשות התאמות מספר." # בכוח potentially # אפשרי שהשימוש בה עלול לסכן # handle (manage, touch)? -#~ msgid "Keep in mind that Movim is still under development and will handle many personal details. Its use can potentially endanger your data. Always pay attention to information that you submit." -#~ msgstr "לצומת לבך, Movim עדיין מצויה תחת פיתוח ותטפל בפרטים אישיים רבים. השימוש בה עלול, באופן פוטנציאלי, לסכן את המידע שלך. יש להסב תמיד תשומת לב ולהבחין במידע שנשלח על ידך." +#~ msgid "" +#~ "Keep in mind that Movim is still under development and will handle many " +#~ "personal details. Its use can potentially endanger your data. Always pay " +#~ "attention to information that you submit." +#~ msgstr "" +#~ "לצומת לבך, Movim עדיין מצויה תחת פיתוח ותטפל בפרטים אישיים רבים. השימוש בה " +#~ "עלול, באופן פוטנציאלי, לסכן את המידע שלך. יש להסב תמיד תשומת לב ולהבחין " +#~ "במידע שנשלח על ידך." #~ msgid "Database Movim schema installed" #~ msgstr "סכימת מסד נתונים Movim מותקנת" # אלמנט +#, php-format #~ msgid "Cannot load element value '%s'" #~ msgstr "לא ניתן לטעון ערך יסוד '%s'" +#, php-format #~ msgid "Cannot open log file '%s'" #~ msgstr "לא ניתן לפתוח קובץ רשומת יומן '%s'" #~ msgid "Wrong ID" #~ msgstr "‏ID שגויה" -#~ msgid "Firstly fill in this blank with a brand new account ID, this address will follow you on all the Movim network !" -#~ msgstr "ראשית נא למלא את חלל זה עם ID חדשה לגמרי, כתובת זו תעקוב אחריך לכל אורך רשת Movim !" +#~ msgid "" +#~ "Firstly fill in this blank with a brand new account ID, this address will " +#~ "follow you on all the Movim network !" +#~ msgstr "" +#~ "ראשית נא למלא את חלל זה עם ID חדשה לגמרי, כתובת זו תעקוב אחריך לכל אורך רשת " +#~ "Movim !" #~ msgid "Only alphanumerics elements are authorized" #~ msgstr "יסודות אלפא-נומריות בלבד מותרות" @@ -2983,9 +2861,16 @@ msgstr "" # typo X2 to the to the # Go to the %s to the Frequently Asked Questions %s # Go to the %s Frequently Asked Questions %s -#~ msgid "Go to the %s to the Frequently Asked Questions %s or come ask your question on the official chatroom %s or via our mailing-list (%s see the dedicated page %s)." -#~ msgstr "עברו אל %s שאלות ותשובות נפוצות %s או לחלופין ניתן לגשת ולשאול את שאלתך בחדר השיחה הרשמי %s או באמצעות רשימת הדיוור שלנו (%s ראו את העמוד המוקצה לכך %s)." +#, php-format +#~ msgid "" +#~ "Go to the %s to the Frequently Asked Questions %s or come ask your question " +#~ "on the official chatroom %s or via our mailing-list (%s see the dedicated " +#~ "page %s)." +#~ msgstr "" +#~ "עברו אל %s שאלות ותשובות נפוצות %s או לחלופין ניתן לגשת ולשאול את שאלתך בחדר " +#~ "השיחה הרשמי %s או באמצעות רשימת הדיוור שלנו (%s ראו את העמוד המוקצה לכך %s)." +#, php-format #~ msgid "Contacts (%s)" #~ msgstr "אישי־קשר (%s)" @@ -3001,6 +2886,7 @@ msgstr "" #~ msgstr "ערוץ איש־קשר נטען כעת ..." # you can replace the word instance with "server", "pod" +#, php-format #~ msgid "You can now access your shiny Movim instance %sJump In !%s" #~ msgstr "כעת ביכולתך לגשת אל שרת ה־Movim המבריק שלך %sזנק/י פנימה !%s" @@ -3010,14 +2896,20 @@ msgstr "" #~ msgid "Link my current account" #~ msgstr "קישור אל חשבוני הנוכחי" +#, php-format #~ msgid "Please remove the %s folder in order to complete the installation" #~ msgstr "נא להסיר את התיקייה ‭%s‬ כדי לסיים את ההתקנה" #~ msgid "I can't find the answer to my question here" #~ msgstr "אין ביכולתי למצוא את התשובה לשאלתי כאן" -#~ msgid "Visit the page %s What is Movim ? %s to know more about the project, its aims and understand how it works." -#~ msgstr "ניתן לבקר בעמוד %s מה זה Movim ? %s כדי לדעת עוד אודות הפרויקט, מטרותיו וגם כדי להבין כיצד הוא פועל." +#, php-format +#~ msgid "" +#~ "Visit the page %s What is Movim ? %s to know more about the project, its " +#~ "aims and understand how it works." +#~ msgstr "" +#~ "ניתן לבקר בעמוד %s מה זה Movim ? %s כדי לדעת עוד אודות הפרויקט, מטרותיו וגם " +#~ "כדי להבין כיצד הוא פועל." #~ msgid "empty" #~ msgstr "ריק" @@ -3046,14 +2938,28 @@ msgstr "" #~ msgid "Create my vCard" #~ msgstr "צור vCard" -#~ msgid "Although Movim is evolving fast, many (many) features are missing. Be patient ;). You can have a look %s at next versions's roadmaps %s to know if the one you want is on its way." -#~ msgstr "אף על פי שהפלטפורמה Movim מתפתחת מהר, המון (המון) תכונות חסרות. עליך להיעזר בסבלנות ;). באפשרותך להגניב הצצה %s במפות הדרכים של הגרסא הבאה %s כדי לדעת אם התכונה שרצונך בה כבר בדרך." +#, php-format +#~ msgid "" +#~ "Although Movim is evolving fast, many (many) features are missing. Be " +#~ "patient ;). You can have a look %s at next versions's roadmaps %s to know if " +#~ "the one you want is on its way." +#~ msgstr "" +#~ "אף על פי שהפלטפורמה Movim מתפתחת מהר, המון (המון) תכונות חסרות. עליך להיעזר " +#~ "בסבלנות ;). באפשרותך להגניב הצצה %s במפות הדרכים של הגרסא הבאה %s כדי לדעת " +#~ "אם התכונה שרצונך בה כבר בדרך." -#~ msgid "Don't forget that Movim is an open source project, a helping hand is always welcome (see %s Can I participate %s)" -#~ msgstr "נא לא לשכוח שהפלטפורמה Movim הינה פרויקט קוד פתוח, סיוע תמיד יתקבל באהדה (ראו %s האם באפשרותי להשתתף %s)" +#, php-format +#~ msgid "" +#~ "Don't forget that Movim is an open source project, a helping hand is always " +#~ "welcome (see %s Can I participate %s)" +#~ msgstr "" +#~ "נא לא לשכוח שהפלטפורמה Movim הינה פרויקט קוד פתוח, סיוע תמיד יתקבל באהדה " +#~ "(ראו %s האם באפשרותי להשתתף %s)" #~ msgid "My Posts" #~ msgstr "הפרסומים שלי" -#~ msgid "Your server doesn't support post publication, you can only read contact's feeds" +#~ msgid "" +#~ "Your server doesn't support post publication, you can only read contact's " +#~ "feeds" #~ msgstr "השרת שלך לא תומך בפרסום רשומות, באפשרותך לקרוא ערוצי איש קשר בלבד" diff --git a/sources/locales/hr.po b/sources/locales/hr.po index 338b823..89fef26 100644 --- a/sources/locales/hr.po +++ b/sources/locales/hr.po @@ -3,2696 +3,2583 @@ # This file is distributed under the same license as the movim package. # FIRST AUTHOR , 2014. # -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/About/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Account/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/AccountNext/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/AdHoc/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/AdminDB/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/AdminMain/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/AdminTest/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Api/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Avatar/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Blog/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Bookmark/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Chat/locales.ini -#. #-#-#-#-# 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 -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Group/locales.ini -#. #-#-#-#-# 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 -#. #-#-#-#-# 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 -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Presence/locales.ini -#. #-#-#-#-# 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 -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Share/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Statistics/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Subscribe/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Syndication/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Upload/locales.ini -#. #-#-#-#-# 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-08-20 15:17+0200\n" +"POT-Creation-Date: 2015-06-08 22:06+0200\n" "PO-Revision-Date: 2014-06-22 14:34+0000\n" "Last-Translator: Martina \n" "Language-Team: Croatian \n" -"Language: hr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2015-06-18 21:08+0000\n" "X-Generator: Launchpad (build 17570)\n" +"Language: hr\n" -#: [about]thanks +#: ../cache/locales.php:2 msgid "Thanks" msgstr "Hvala" -#: [about]developers +#: ../cache/locales.php:3 msgid "Developers" msgstr "Programeri" -#: [about]translators +#: ../cache/locales.php:4 msgid "Translators" msgstr "Prevoditelji" -#: [about]software +#: ../cache/locales.php:5 msgid "Software" msgstr "Softver" -#: [about]resources +#: ../cache/locales.php:6 msgid "Resources" msgstr "Resursi" -#: [about]api [schema]api [api]title +#: ../cache/locales.php:7 ../cache/locales.php:83 ../cache/locales.php:85 msgid "API" msgstr "API" -#: [about]info -msgid "Movim is an XMPP-based communication platform. All the project, except the following software and resources, is under" +#: ../cache/locales.php:8 +msgid "" +"Movim is an XMPP-based communication platform. All the project, except the " +"following software and resources, is under" msgstr "" -#: [account]title +#: ../cache/locales.php:9 msgid "Account" msgstr "" -#: [account]password_change_title -msgid "Change my password" -msgstr "" - -#: [account]password [db]password [credentials]password [form]password -#: [input]password -msgid "Password" -msgstr "" - -#: [account]password_confirmation -msgid "Password confirmation" -msgstr "" - -#: [account]password_changed +#: ../cache/locales.php:10 msgid "The password has been updated" msgstr "" -#: [account]password_not_valid +#: ../cache/locales.php:11 msgid "Please provide a valid password (6 characters minimum)" msgstr "" -#: [account]password_not_same +#: ../cache/locales.php:12 msgid "The provided passwords are not the same" msgstr "" -#: [account]delete_title +#: ../cache/locales.php:13 msgid "Delete my account" msgstr "" -#: [account]delete -msgid "Delete your account" +#: ../cache/locales.php:14 +msgid "" +"You will delete your XMPP account and all the relative information linked to " +"it (profile, contacts and publications)." msgstr "" -#: [account]delete_text -msgid "You will delete your XMPP account and all the relative information linked to it (profile, contacts and publications)." -msgstr "" - -#: [account]delete_text_confirm +#: ../cache/locales.php:15 msgid "Are you sure that you want to delete it ?" msgstr "" -#: [account]gateway_title -msgid "Gateway" -msgstr "" - -#: [create]title [subscribe]title +#: ../cache/locales.php:16 ../cache/locales.php:411 msgid "Create a new account" msgstr "" -#: [create]notfound +#: ../cache/locales.php:17 msgid "No account creation form found on the server" msgstr "" -#: [create]server_on +#: ../cache/locales.php:18 ../cache/locales.php:172 msgid "on" msgstr "" -#: [create]successfull +#: ../cache/locales.php:19 msgid "Your acccount has been successfully registered" msgstr "" -#: [create]loading +#: ../cache/locales.php:20 msgid "Loading" msgstr "" -#: [error]not_acceptable +#: ../cache/locales.php:21 msgid "Not Acceptable" msgstr "" -#: [error]service_unavailable +#: ../cache/locales.php:22 msgid "The registration system of this server is currently unavailable" msgstr "" -#: [oob]about -msgid "This server use an external system for the registration, please click on the following URL." +#: ../cache/locales.php:23 +msgid "" +"This server use an external system for the registration, please click on the " +"following URL." msgstr "" -#: [adhoc]title +#: ../cache/locales.php:24 msgid "Actions" msgstr "" -#: [db]legend [schema]database +#: ../cache/locales.php:25 ../cache/locales.php:82 msgid "Database" msgstr "" -#: [db]connect_error +#: ../cache/locales.php:26 msgid "Modl wasn't able to connect to the database" msgstr "" -#: [db]connect_success +#: ../cache/locales.php:27 msgid "Movim is connected to the database" msgstr "" -#: [db]update +#: ../cache/locales.php:28 msgid "The database need to be updated" msgstr "" -#: [db]up_to_date +#: ../cache/locales.php:29 msgid "Movim database is up to date" msgstr "" -#: [db]type +#: ../cache/locales.php:30 msgid "Database Type" msgstr "" -#: [db]username [credentials]username [input]username +#: ../cache/locales.php:31 ../cache/locales.php:50 ../cache/locales.php:540 msgid "Username" msgstr "" -#: [db]host +#: ../cache/locales.php:32 ../cache/locales.php:51 ../cache/locales.php:282 +#: ../cache/locales.php:541 +msgid "Password" +msgstr "" + +#: ../cache/locales.php:33 msgid "Host" msgstr "" -#: [db]port +#: ../cache/locales.php:34 msgid "Port" msgstr "" -#: [db]name -msgid "Database sName" +#: ../cache/locales.php:35 +msgid "Database Name" msgstr "" -#: [admin]general +#: ../cache/locales.php:36 msgid "General Settings" msgstr "" -#: [general]theme +#: ../cache/locales.php:37 msgid "Theme" msgstr "" -#: [general]language +#: ../cache/locales.php:38 msgid "Default language" msgstr "" -#: [general]log_verbosity +#: ../cache/locales.php:39 +msgid "Environment" +msgstr "" + +#: ../cache/locales.php:40 msgid "Log verbosity" msgstr "" -#: [general]timezone +#: ../cache/locales.php:41 msgid "Server Timezone" msgstr "" -#: [general]limit +#: ../cache/locales.php:42 msgid "User folder size limit (in bytes)" msgstr "" -#: [websocket]title +#: ../cache/locales.php:43 msgid "WebSocket Configuration" msgstr "" -#: [websocket]info +#: ../cache/locales.php:44 msgid "Enter here a valid WebSocket URI in the form" msgstr "" -#: [websocket]label +#: ../cache/locales.php:45 msgid "WebSocket URI" msgstr "" -#: [websocket]save_info -msgid "If you change the URI, please restart the daemon to reload the configuration" +#: ../cache/locales.php:46 +msgid "" +"If you change the URI, please restart the daemon to reload the configuration" msgstr "" -#: [websocket]publics +#: ../cache/locales.php:47 msgid "Public WebSockets" msgstr "" -#: [credentials]title +#: ../cache/locales.php:48 msgid "Administration Credential" msgstr "" -#: [credentials]info +#: ../cache/locales.php:49 msgid "Change the default credentials admin/password" msgstr "" -#: [credentials]re_password +#: ../cache/locales.php:52 msgid "Retype password" msgstr "" -#: [whitelist]title +#: ../cache/locales.php:53 msgid "Whitelist - XMPP Server" msgstr "" -#: [whitelist]info1 -msgid "If you want to specify a list of authorized XMPP servers on your Movim pod and forbid the connection on all the others please put their domain name here, with comma (ex: movim.eu,jabber.fr)" +#: ../cache/locales.php:54 +msgid "" +"If you want to specify a list of authorized XMPP servers on your Movim pod " +"and forbid the connection on all the others please put their domain name " +"here, with comma (ex: movim.eu,jabber.fr)" msgstr "" -#: [whitelist]info2 -msgid "Leave this field blank if you allow the access to all the XMPP accounts." +#: ../cache/locales.php:55 +msgid "" +"Leave this field blank if you allow the access to all the XMPP accounts." msgstr "" -#: [whitelist]label +#: ../cache/locales.php:56 msgid "List of whitelisted XMPP servers" msgstr "" -#: [information]title -msgctxt "[information]title" +#: ../cache/locales.php:57 ../cache/locales.php:61 msgid "Information Message" msgstr "" -#: [information]description +#: ../cache/locales.php:58 msgid "Description" msgstr "" -#: [information]info1 +#: ../cache/locales.php:59 msgid "This message will be displayed on the login page" msgstr "" -#: [information]info2 -msgid "Leave this field blank if you dont want to show any message." +#: ../cache/locales.php:60 +msgid "Leave this field blank if you don't want to show any message." msgstr "" -#: [information]label -msgctxt "[information]label" -msgid "Information Message" -msgstr "" - -#: [log]empty +#: ../cache/locales.php:62 msgid "Empty" msgstr "" -#: [log]syslog +#: ../cache/locales.php:63 msgid "Syslog" msgstr "" -#: [log]syslog_files +#: ../cache/locales.php:64 msgid "Syslog and files" msgstr "" -#: [rewrite]title +#: ../cache/locales.php:65 msgid "URL Rewriting" msgstr "" -#: [rewrite]info +#: ../cache/locales.php:66 msgid "The URL Rewriting can be enabled" msgstr "" -#: [admin]compatibility +#: ../cache/locales.php:67 msgid "General Overview" msgstr "" -#: [compatibility]info -msgid "Movim has found some issues or things that need to be fixed or improved" +#: ../cache/locales.php:68 +msgid "" +"Movim has found some issues or things that need to be fixed or improved" msgstr "" -#: [compatibility]php1 +#: ../cache/locales.php:69 +#, php-format msgid "Update your PHP-Version: %s" msgstr "" -#: [compatibility]php2 +#: ../cache/locales.php:70 msgid "Required: 5.3.0" msgstr "" -#: [compatibility]curl +#: ../cache/locales.php:71 msgid "Install the php5-curl library" msgstr "" -#: [compatibility]imagick +#: ../cache/locales.php:72 msgid "Install the php5-imagick library" msgstr "" -#: [compatibility]gd +#: ../cache/locales.php:73 msgid "Install the php5-gd library" msgstr "" -#: [compatibility]rights -msgid "Read and write rights for the webserver in Movims root directory" +#: ../cache/locales.php:74 +msgid "Read and write rights for the webserver in Movim's root directory" msgstr "" -#: [compatibility]rewrite +#: ../cache/locales.php:75 msgid "The URL Rewriting support is currently disabled" msgstr "" -#: [compatibility]db +#: ../cache/locales.php:76 msgid "The database need to be updated, go to the database panel to fix this" msgstr "" -#: [compatibility]websocket -msgid "WebSocket connection error, check if the Movim Daemon is running and is reachable" +#: ../cache/locales.php:77 +msgid "" +"WebSocket connection error, check if the Movim Daemon is running and is " +"reacheable" msgstr "" -#: [compatibility]xmpp_websocket -msgid "XMPP Websocket connection error, please check the validity of the URL given in the General Configuration" +#: ../cache/locales.php:78 +msgid "" +"XMPP Websocket connection error, please check the validity of the URL given " +"in the General Configuration" msgstr "" -#: [schema]browser +#: ../cache/locales.php:79 msgid "Browser" msgstr "" -#: [schema]movim +#: ../cache/locales.php:80 msgid "Movim Core" msgstr "" -#: [schema]daemon +#: ../cache/locales.php:81 msgid "Movim Daemon" msgstr "" -#: [schema]xmpp +#: ../cache/locales.php:84 msgid "XMPP" msgstr "" -#: [api]info -msgid "Here you can register your pod on the official %sMovim API%s and be listed on %sthe pods page%s." +#: ../cache/locales.php:86 +#, php-format +msgid "" +"Here you can register your pod on the official %sMovim API%s and be listed " +"on %sthe pods page%s." msgstr "" -#: [api]register +#: ../cache/locales.php:87 msgid "Your pod is not registered on the API" msgstr "" -#: [api]registered +#: ../cache/locales.php:88 msgid "Your pod is registered on the API" msgstr "" -#: [api]wait +#: ../cache/locales.php:89 msgid "Your pod is not yet validated" msgstr "" -#: [api]validated +#: ../cache/locales.php:90 msgid "Your pod is validated" msgstr "" -#: [api]unregister -msgid "You asked to be removed from the API, this request will be processed in a couple of hours" +#: ../cache/locales.php:91 +msgid "" +"You asked to be removed from the API, this request will be processed in a " +"couple of hours" msgstr "" -#: [api]conf_updated [config]updated +#: ../cache/locales.php:92 ../cache/locales.php:147 msgid "Configuration updated" msgstr "" -#: [avatar]file +#: ../cache/locales.php:93 msgid "File" msgstr "" -#: [avatar]use_it +#: ../cache/locales.php:94 msgid "Use it" msgstr "" -#: [avatar]webcam +#: ../cache/locales.php:95 msgid "Webcam" msgstr "" -#: [avatar]cheese +#: ../cache/locales.php:96 msgid "Cheese !" msgstr "" -#: [avatar]snapshot +#: ../cache/locales.php:97 msgid "Take a webcam snapshot" msgstr "" -#: [avatar]updated +#: ../cache/locales.php:98 msgid "Avatar Updated" msgstr "" -#: [avatar]not_updated +#: ../cache/locales.php:99 msgid "Avatar Not Updated" msgstr "" -#: [blog]title [feed]title +#: ../cache/locales.php:100 ../cache/locales.php:415 +#, php-format msgid "%s's feed" msgstr "" -#: [blog]empty +#: ../cache/locales.php:101 msgid "This user has not posted anything right now" msgstr "" -#: [title]conferences +#: ../cache/locales.php:102 msgid "Conferences" msgstr "" -#: [title]groups [group]empty_title [menu]groups [page]groups +#: ../cache/locales.php:103 ../cache/locales.php:193 ../cache/locales.php:217 +#: ../cache/locales.php:468 msgid "Groups" msgstr "" -#: [chatroom]add +#: ../cache/locales.php:104 msgid "Add a new Chat Room" msgstr "" -#: [chatroom]id [chatrooms]id +#: ../cache/locales.php:105 ../cache/locales.php:368 msgid "Chat Room ID" msgstr "" -#: [chatroom]name -msgctxt "[chatroom]name" +#: ../cache/locales.php:106 ../cache/locales.php:116 ../cache/locales.php:156 +#: ../cache/locales.php:361 ../cache/locales.php:369 ../cache/locales.php:424 msgid "Name" msgstr "" -#: [chatroom]nickname [general]nickname [chatrooms]nickname +#: ../cache/locales.php:107 ../cache/locales.php:157 ../cache/locales.php:371 +#: ../cache/locales.php:425 msgid "Nickname" msgstr "" -#: [chatroom]autojoin_label +#: ../cache/locales.php:108 msgid "Do you want do join automaticaly this Chat Room ?" msgstr "" -#: [chatroom]bad_id [chatrooms]bad_id +#: ../cache/locales.php:109 ../cache/locales.php:372 msgid "Bad Chatroom ID" msgstr "" -#: [chatroom]empty_name [chatrooms]empty_name +#: ../cache/locales.php:110 ../cache/locales.php:373 msgid "Empty name" msgstr "" -#: [bookmarks]updated +#: ../cache/locales.php:111 ../cache/locales.php:380 msgid "Bookmarks updated" msgstr "" -#: [bookmarks]error -msgid "An error occured :" +#: ../cache/locales.php:112 +msgid "An error occured : " msgstr "" -#: [bookmarks]configure +#: ../cache/locales.php:113 msgid "Configure" msgstr "" -#: [url]add +#: ../cache/locales.php:114 msgid "Add a new URL" msgstr "" -#: [url]url +#: ../cache/locales.php:115 msgid "URL" msgstr "" -#: [url]name -msgctxt "[url]name" -msgid "Name" -msgstr "" - -#: [message]published +#: ../cache/locales.php:117 msgid "Message Published" msgstr "" -#: [message]encrypted +#: ../cache/locales.php:118 ../cache/locales.php:138 msgid "Encrypted message" msgstr "" -#: [message]composing [chats]composing +#: ../cache/locales.php:119 msgid "Composing..." msgstr "" -#: [message]paused [chats]paused +#: ../cache/locales.php:120 msgid "Paused..." msgstr "" -#: [message]gone +#: ../cache/locales.php:121 msgid "Contact gone" msgstr "" -#: [chat]attention +#: ../cache/locales.php:122 +#, php-format msgid "%s needs your attention" msgstr "" -#: [chat]placeholder +#: ../cache/locales.php:123 msgid "Your message here..." msgstr "" -#: [chat]smileys +#: ../cache/locales.php:124 msgid "Smileys" msgstr "" -#: [chat]empty_title [button]chat +#: ../cache/locales.php:125 ../cache/locales.php:139 msgid "Chat" msgstr "" -#: [chat]empty_text +#: ../cache/locales.php:126 msgid "Discuss with your contacts" msgstr "" -#: [chat]frequent [chats]frequent -msgid "Frequent contacts" -msgstr "" - -#: [chatroom]members +#: ../cache/locales.php:127 msgid "Members" msgstr "" -#: [chatroom]connected [chatrooms]connected +#: ../cache/locales.php:128 ../cache/locales.php:376 msgid "Connected to the chatroom" msgstr "" -#: [chatroom]disconnected [chatrooms]disconnected +#: ../cache/locales.php:129 ../cache/locales.php:377 msgid "Disconnected from the chatroom" msgstr "" -#: [chatroom]config [group]configuration [page]configuration +#: ../cache/locales.php:130 ../cache/locales.php:200 ../cache/locales.php:469 msgid "Configuration" msgstr "" -#: [chatroom]config_saved +#: ../cache/locales.php:131 msgid "Configuration saved" msgstr "" -#: [chatroom]subject +#: ../cache/locales.php:132 msgid "Subject" msgstr "" -#: [chatroom]subject_changed +#: ../cache/locales.php:133 msgid "Subject changed" msgstr "" -#: [chats]empty_title -msgid "No chats yet..." +#: ../cache/locales.php:134 +msgid "Open a new conversation by clicking on the plus button bellow" msgstr "" -#: [chats]empty -msgid "Open a new conversation by clicking on the plus button bellow or visit the Contacts page." -msgstr "" - -#: [chats]add +#: ../cache/locales.php:135 msgid "Chat with a contact" msgstr "" -#: [chats]more +#: ../cache/locales.php:136 +msgid "Frequent contacts" +msgstr "" + +#: ../cache/locales.php:137 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 "" - -#: [config]general +#: ../cache/locales.php:140 msgid "General" msgstr "" -#: [config]language +#: ../cache/locales.php:141 msgid "Language" msgstr "" -#: [config]roster +#: ../cache/locales.php:142 msgid "Roster display" msgstr "" -#: [config]roster_show +#: ../cache/locales.php:143 msgid "Show the offline contacts" msgstr "" -#: [config]roster_hide +#: ../cache/locales.php:144 msgid "Hide the offline contacts" msgstr "" -#: [config]appearence +#: ../cache/locales.php:145 msgid "Appearence" msgstr "" -#: [config]info -msgid "This configuration is shared wherever you are connected" +#: ../cache/locales.php:146 +msgid "This configuration is shared wherever you are connected !" msgstr "" -#: [notifications]message +#: ../cache/locales.php:148 msgid "Notify on incoming message" msgstr "" -#: [notifications]desktop +#: ../cache/locales.php:149 msgid "Use desktop notifications" msgstr "" -#: [general]legend [general]general_title +#: ../cache/locales.php:150 +msgid "Data" +msgstr "" + +#: ../cache/locales.php:151 +msgid "Cache" +msgstr "" + +#: ../cache/locales.php:152 ../cache/locales.php:218 ../cache/locales.php:466 +msgid "Contacts" +msgstr "" + +#: ../cache/locales.php:153 ../cache/locales.php:480 +msgid "Posts" +msgstr "" + +#: ../cache/locales.php:154 +msgid "Messages" +msgstr "" + +#: ../cache/locales.php:155 ../cache/locales.php:423 msgid "General Informations" msgstr "" -#: [general]name [public_groups]name [chatrooms]name -msgid "Name" -msgstr "" - -#: [general]date_of_birth +#: ../cache/locales.php:158 ../cache/locales.php:427 msgid "Date of Birth" msgstr "" -#: [general]gender +#: ../cache/locales.php:159 ../cache/locales.php:428 msgid "Gender" msgstr "" -#: [general]marital +#: ../cache/locales.php:160 ../cache/locales.php:429 msgid "Marital Status" msgstr "" -#: [general]email +#: ../cache/locales.php:161 ../cache/locales.php:426 msgid "Email" msgstr "" -#: [general]website +#: ../cache/locales.php:162 ../cache/locales.php:430 msgid "Website" msgstr "" -#: [general]about +#: ../cache/locales.php:163 ../cache/locales.php:431 msgid "About Me" msgstr "" -#: [general]accounts +#: ../cache/locales.php:164 msgid "Other Accounts" msgstr "" -#: [general]tune +#: ../cache/locales.php:165 msgid "Is Listening" msgstr "" -#: [position]legend [position]position_title +#: ../cache/locales.php:166 ../cache/locales.php:432 msgid "Geographic Position" msgstr "" -#: [position]locality +#: ../cache/locales.php:167 ../cache/locales.php:433 msgid "Locality" msgstr "" -#: [position]country +#: ../cache/locales.php:168 ../cache/locales.php:434 msgid "Country" msgstr "" -#: [mood]title +#: ../cache/locales.php:169 msgid "Mood" msgstr "" -#: [mood]im +#: ../cache/locales.php:170 msgid "I'm " msgstr "" -#: [listen]title +#: ../cache/locales.php:171 msgid "Listening" msgstr "" -#: [last]title +#: ../cache/locales.php:173 msgid "Last seen" msgstr "" -#: [client]title +#: ../cache/locales.php:174 msgid "Client Informations" msgstr "" -#: [explore]last_registered +#: ../cache/locales.php:175 msgid "Last registered" msgstr "" -#: [explore]explore +#: ../cache/locales.php:176 msgid "Find some new friends" msgstr "" -#: [edit]title [button]edit +#: ../cache/locales.php:177 ../cache/locales.php:533 msgid "Edit" msgstr "" -#: [edit]alias +#: ../cache/locales.php:178 msgid "Alias" msgstr "" -#: [edit]group +#: ../cache/locales.php:179 msgid "Group" msgstr "" -#: [edit]updated [roster]updated +#: ../cache/locales.php:180 ../cache/locales.php:400 msgid "Contact updated" msgstr "" -#: [delete]title +#: ../cache/locales.php:181 msgid "Are you sure?" msgstr "" -#: [delete]text -msgid "You are going to delete one of your contacts, please confirm your action" +#: ../cache/locales.php:182 +msgid "" +"You are going to delete one of your contacts, please confirm your action" msgstr "" -#: [age]years +#: ../cache/locales.php:183 +#, php-format msgid "%s years" msgstr "" -#: [blog]last +#: ../cache/locales.php:184 msgid "Last public post" msgstr "" -#: [subscription]to -msgid "You can see this contact status" -msgstr "" - -#: [subscription]to_button -msgid "Share my status" -msgstr "" - -#: [subscription]to_text -msgid "But this contact cannot see yours" -msgstr "" - -#: [subscription]from -msgid "You are not subscribed to this contact" -msgstr "" - -#: [subscription]from_button -msgid "Ask to subscribe" -msgstr "" - -#: [subscription]from_text -msgid "But this contact can still see if you are online" -msgstr "" - -#: [subscription]nil -msgid "No subscriptions" -msgstr "" - -#: [subscription]nil_button -msgid "Invite" -msgstr "" - -#: [subscription]nil_text -msgid "This contact is in your contact list but there is no subscriptions between the two accounts" -msgstr "" - -#: [group]subscribe +#: ../cache/locales.php:185 msgid "Subscribe" msgstr "" -#: [group]subscribed +#: ../cache/locales.php:186 msgid "Subscribed" msgstr "" -#: [group]unsubscribe +#: ../cache/locales.php:187 msgid "Unsubscribe" msgstr "" -#: [group]unsubscribe_text +#: ../cache/locales.php:188 msgid "You are going to unsubscribe from this Group" msgstr "" -#: [group]unsubscribed +#: ../cache/locales.php:189 msgid "Unsubscribed" msgstr "" -#: [group]share_label +#: ../cache/locales.php:190 msgid "Make your membership to this group public to your friends" msgstr "" -#: [group]label_label +#: ../cache/locales.php:191 msgid "Give a label for this group" msgstr "" -#: [group]sure +#: ../cache/locales.php:192 msgid "Are you sure ?" msgstr "" -#: [group]empty_text +#: ../cache/locales.php:194 msgid "Discover, follow and share" msgstr "" -#: [group]empty +#: ../cache/locales.php:195 msgid "Something bad happened to this group" msgstr "" -#: [group]config_saved +#: ../cache/locales.php:196 msgid "Group configuration saved" msgstr "" -#: [group]delete_title +#: ../cache/locales.php:197 msgid "Delete the group" msgstr "" -#: [group]delete_text -msgid "You are going to delete the following group. Please confirm your action." +#: ../cache/locales.php:198 +msgid "" +"You are going to delete the following group. Please confirm your action." msgstr "" -#: [group]delete_clean_text -msgid "It seems that this group doesn't exists anymore. Do you want to remove it from your subscriptions?" +#: ../cache/locales.php:199 +msgid "" +"It seems that this group doesn't exists anymore. Do you want to remove it " +"from your subscriptions?" msgstr "" -#: [group]counter -msgid "%s groups on this server" -msgstr "" - -#: [group]subscriptions [statistics]subscriptions +#: ../cache/locales.php:201 ../cache/locales.php:408 msgid "Subscriptions" msgstr "" -#: [group]servers -msgid "Groups servers" -msgstr "" - -#: [group]search_server -msgid "Search for a new server" -msgstr "" - -#: [group]help_info1 -msgid "Groups are the perfect way to share posts about topics that you like with all the other Movim's users." -msgstr "" - -#: [group]help_info2 -msgid "Choose a server and a Group and subscribe to it using the %s button in the header. You can also create a new one using the %s button." -msgstr "" - -#: [group]help_info3 -msgid "Done? You can now publish a new post in the Group by using the %s button." -msgstr "" - -#: [group]help_info4 -msgid "You will find a list of all your subscribed Groups in My Subscriptions and receive instantly all the new incoming posts in the %sNews%s page." -msgstr "" - -#: [groups]empty_title +#: ../cache/locales.php:202 ../cache/locales.php:290 msgid "Hello" msgstr "" -#: [groups]contact_post [hello]contact_post [menu]contact_post +#: ../cache/locales.php:203 ../cache/locales.php:225 ../cache/locales.php:291 msgid "Contact post" msgstr "" -#: [groups]empty_text1 -msgid "You don't have any subscriptions yet, select a group server above to start exploring." +#: ../cache/locales.php:204 +msgid "" +"You don't have any subscriptions yet, select a group server above to start " +"exploring." msgstr "" -#: [groups]empty_text2 +#: ../cache/locales.php:205 msgid "Subscribe to your favorite feeds by bookmarking them." msgstr "" -#: [groups]subscriptions +#: ../cache/locales.php:206 msgid "My Subscriptions" msgstr "" -#: [groups]add +#: ../cache/locales.php:207 msgid "Create a new Group" msgstr "" -#: [groups]name +#: ../cache/locales.php:208 msgid "Group name" msgstr "" -#: [groups]name_example +#: ../cache/locales.php:209 msgid "My Little Pony - Fan Club" msgstr "" -#: [groups]created +#: ../cache/locales.php:210 msgid "Group created successfully" msgstr "" -#: [groups]deleted +#: ../cache/locales.php:211 msgid "Group deleted successfully" msgstr "" -#: [groups]name_error +#: ../cache/locales.php:212 msgid "Please provide a valid group name (4 characters minimum)" msgstr "" -#: [groups]no_creation +#: ../cache/locales.php:213 msgid "You cannot create a new Group on this server" msgstr "" -#: [groups]sub +#: ../cache/locales.php:214 +#, php-format msgid "%s subscribers" msgstr "" -#: [groups]num +#: ../cache/locales.php:215 +#, php-format msgid "%s posts" msgstr "" -#: [groups]disco_error -msgid "This server doesn't exists" -msgstr "" - -#: [menu]all +#: ../cache/locales.php:216 msgid "All" msgstr "" -#: [menu]refresh +#: ../cache/locales.php:219 msgid "Refresh all the streams" msgstr "" -#: [roster]search -msgid "Search in your contacts" -msgstr "" - -#: [hello]active_contacts -msgid "Active contacts" -msgstr "" - -#: [hello]chat -msgid "Go on the Chat page" -msgstr "" - -#: [hello]news [page]news -msgid "News" -msgstr "" - -#: [hello]news_page -msgid "Read all theses articles on the News page" -msgstr "" - -#: [hello]blog_title -msgid "Visit your public blog" -msgstr "" - -#: [hello]blog_text -msgid "See your public posts and share them with all your contacts" -msgstr "" - -#: [hello]share_title -msgid "Universal share button" -msgstr "" - -#: [hello]share_text -msgid "Bookmark or drag and drop the following button in your toolbar and use it on all the pages you want to share on Movim" -msgstr "" - -#: [hello]share_button -msgid "Share on Movim" -msgstr "" - -#: [help]faq -msgid "Frequently Asked Questions" -msgstr "" - -#: [banner]title -msgid "What do the little banners refer to ?" -msgstr "" - -#: [banner]info1 -msgid "Thanks to these five little banners, you can quickly identitfy the level of confdentiality applied to the information you provide." -msgstr "" - -#: [banner]white -msgid "White, only you can see the information" -msgstr "" - -#: [banner]green -msgid "Green, you have chosen some contacts who can see your information" -msgstr "" - -#: [banner]orange -msgid "Orange, all your contact list can see your information" -msgstr "" - -#: [banner]red -msgid "Red, everybody in the XMPP network can see your information" -msgstr "" - -#: [banner]black -msgid "Black, the whole Internet can see your information" -msgstr "" - -#: [wiki]question -msgid "Looking for some documentation ?" -msgstr "" - -#: [wiki]button -msgid "Read the Wiki" -msgstr "" - -#: [ml]question -msgid "Talk with us by email ?" -msgstr "" - -#: [ml]button -msgid "Join the Mailing List" -msgstr "" - -#: [chatroom]question -msgid "Chat with the team ?" -msgstr "" - -#: [chatroom]button -msgid "Join the Chatroom" -msgstr "" - -#: [init]location -msgid "Location node created" -msgstr "" - -#: [init]bookmark -msgid "Bookmark node created" -msgstr "" - -#: [init]vcard4 -msgid "Profile node created" -msgstr "" - -#: [init]avatar -msgid "Avatar node created" -msgstr "" - -#: [init]subscriptions -msgid "Subscriptions node created" -msgstr "" - -#: [init]microblog -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 "" - -#: [error]jid -msgid "Invalid JID" -msgstr "" - -#: [error]empty_challenge -msgid "Empty Challenge from the server" -msgstr "" - -#: [error]dns -msgid "XMPP Domain error, your account is not a correct Jabber ID" -msgstr "" - -#: [error]data_missings -msgid "Some data are missing !" -msgstr "" - -#: [error]wrong_password -msgid "Wrong password" -msgstr "" - -#: [error]internal -msgid "Internal server error" -msgstr "" - -#: [error]session -msgid "Session error" -msgstr "" - -#: [error]account_created -msgid "Account successfully created" -msgstr "" - -#: [error]xmpp_unauthorized -msgctxt "[error]xmpp_unauthorized" -msgid "Your XMPP server is unauthorized" -msgstr "" - -#: [error]mec_error -msgid "The server takes too much time to respond" -msgstr "" - -#: [error]too_old -msgid "Your web browser is too old to use with Movim." -msgstr "" - -#: [error]websocket -msgid "Movim cannot talk with the server, please try again later (Websocket connection error)" -msgstr "" - -#: [error]impossible -msgid "Impossible login" -msgstr "" - -#: [error]title -msgid "Oops!" -msgstr "" - -#: [error]default [visio]unknown_error -msgid "Unknown error" -msgstr "" - -#: [error]login_format -msgid "Invalid username format" -msgstr "" - -#: [error]password_format -msgid "Invalid password format" -msgstr "" - -#: [error]unauthorized -msgctxt "[error]unauthorized" -msgid "Your XMPP server is unauthorized" -msgstr "" - -#: [error]conflict -msgid "A Movim session is already open on an other device" -msgstr "" - -#: [error]wrong_account -msgid "Movim failed to authenticate. You entered wrong data" -msgstr "" - -#: [error]mechanism -msgid "Authentication mechanism not supported by Movim" -msgstr "" - -#: [error]fail_auth -msgid "The XMPP authentification failed" -msgstr "" - -#: [account]title [accounts]accounts_title -msgid "Accounts" -msgstr "" - -#: [form]username -msgid "My address" -msgstr "" - -#: [form]create_one -msgid "Create one !" -msgstr "" - -#: [form]another_account -msgid "Another account" -msgstr "" - -#: [form]no_account -msgid "No account yet ?" -msgstr "" - -#: [form]whitelist.info -msgid "You can login with accounts from theses servers" -msgstr "" - -#: [form]connected -msgid "Connected" -msgstr "" - -#: [form]population -msgid "Population" -msgstr "" - -#: [menu]empty_title -msgid "No news yet..." -msgstr "" - -#: [menu]empty -msgid "Welcome on your news feed, here you will see all the posts published by your contacts and in the groups you have subscribed." -msgstr "" - -#: [menu]refresh -msgid "Refreshing all the streams" -msgstr "" - -#: [menu]public -msgid "This post is public" -msgstr "" - -#: [affiliations]title -msgid "Manage your members" -msgstr "" - -#: [affiliations]get -msgid "Get the members" -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 "" - -#: [notifs]title -msgid "Pending Invitations" -msgstr "" - -#: [notifs]wants_to_talk -msgid "%s wants to talk with you" -msgstr "" - -#: [notifs]manage -msgid "Manage" -msgstr "" - -#: [post]news_feed -msgid "News Feed" -msgstr "" - -#: [post]placeholder -msgid "Discover and register to the groups you are interested in" -msgstr "" - -#: [post]preview [page]preview -msgid "Preview" -msgstr "" - -#: [post]help [page]help -msgid "Help" -msgstr "" - -#: [post]help_more -msgid "More help" -msgstr "" - -#: [post]help_manual -msgid "Markdown syntax manual" -msgstr "" - -#: [post]title -msgid "Title" -msgstr "" - -#: [post]content -msgid "Content" -msgstr "" - -#: [post]link -msgid "Link" -msgstr "" - -#: [post]tags -msgid "Tags" -msgstr "" - -#: [post]valid_url [publish]valid_url -msgid "Please enter a valid url" -msgstr "" - -#: [post]no_content_preview [publish]no_content_preview -msgid "No content to preview" -msgstr "" - -#: [post]no_content [publish]no_content [post]empty -msgid "No content" -msgstr "" - -#: [post]published -msgid "Post published" -msgstr "" - -#: [post]deleted -msgid "Post deleted" -msgstr "" - -#: [post]gallery -msgid "This picture will be added to your gallery" -msgstr "" - -#: [post]hot -msgid "What's Hot" -msgstr "" - -#: [post]hot_text -msgid "Posts recently published in Groups that you are not subscribed (yet)" -msgstr "" - -#: [post]new [publish]new -msgid "New post" -msgstr "" - -#: [post]embed_tip -msgid "You can also use services like Imgur or Flickr to host your picture and paste the link here." -msgstr "" - -#: [post]repost -msgid "This is a re-post from %s" -msgstr "" - -#: [post]repost_profile -msgid "See %s profile" -msgstr "" - -#: [post]public -msgid "Publish this post publicly?" -msgstr "" - -#: [post]blog_add -msgid "Post published on your blog" -msgstr "" - -#: [post]blog_remove -msgid "Post removed from your blog" -msgstr "" - -#: [post]delete_title [post]delete -msgid "Delete this post" -msgstr "" - -#: [post]delete_text -msgid "You are going to delete this post, please confirm your action" -msgstr "" - -#: [post]comments_disabled -msgid "Comments disabled" -msgstr "" - -#: [post]comment_published -msgid "Comment published" -msgstr "" - -#: [status]disconnect -msgid "Disconnect" -msgstr "" - -#: [status]here -msgid "Your status here !" -msgstr "" - -#: [status]updated -msgid "Status updated" -msgstr "" - -#: [status]status -msgid "Status" -msgstr "" - -#: [status]presence -msgid "Presence" -msgstr "" - -#: [status]online -msgid "Online with Movim" -msgstr "" - -#: [publish]title -msgid "Publish" -msgstr "" - -#: [publish]attach -msgid "Add a file or a picture to your post" -msgstr "" - -#: [publish]no_publication -msgid "You cannot publish a post on this Group" -msgstr "" - -#: [publish]form_filled -msgid "Some fields have been filled in. Do you still want to go back and loose their content?" -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 "" - -#: [rooms]empty_text1 -msgid "You don't have any chatroom yet." -msgstr "" - -#: [rooms]empty_text2 -msgid "Add one by clicking on the add button in the header." -msgstr "" - -#: [chatrooms]title -msgid "Chatrooms" -msgstr "" - -#: [chatrooms]name_placeholder -msgid "My Favorite Room" -msgstr "" - -#: [chatrooms]users -msgid "Users in the room" -msgstr "" - -#: [chatrooms]bad_nickname -msgid "Please enter a correct nickname (2 to 40 characters)" -msgstr "" - -#: [room]anonymous_title -msgid "Public chatroom" -msgstr "" - -#: [room]no_room -msgid "Please provide a room address" -msgstr "" - -#: [room]anonymous_text1 -msgid "You are currently logued as an anonymous user." -msgstr "" - -#: [room]anonymous_text2 -msgid "You can join using your own account or create one on the login page by loging out using the cross in the top-right corner." -msgstr "" - -#: [room]anonymous_login -msgid "Login on %s" -msgstr "" - -#: [room]nick -msgid "Your nickname" -msgstr "" - -#: [roster]ungrouped -msgid "Ungrouped" -msgstr "" - -#: [roster]show_disconnected -msgid "Show disconnected contacts" -msgstr "" - -#: [roster]hide_disconnected -msgid "Hide disconnected contacts" -msgstr "" - -#: [roster]show_group -msgid "Show group %s" -msgstr "" - -#: [roster]hide_group -msgid "Hide group %s" -msgstr "" - -#: [roster]jid_error -msgid "Please enter a valid Jabber ID" -msgstr "" - -#: [roster]no_contacts_title -msgid "No contacts ?" -msgstr "" - -#: [roster]no_contacts_text -msgid "You can add one using the + button bellow" -msgstr "" - -#: [roster]show_hide -msgid "Show/Hide" -msgstr "" - -#: [roster]add_contact_info1 -msgid "Enter the Jabber ID of your contact." -msgstr "" - -#: [roster]add_contact_info2 -msgid "Press enter to validate." -msgstr "" - -#: [roster]jid -msgid "JID" -msgstr "" - -#: [roster]results -msgid "Results" -msgstr "" - -#: [roster]added -msgid "Contact added" -msgstr "" - -#: [roster]deleted -msgid "Contact deleted" -msgstr "" - -#: [roster]search +#: ../cache/locales.php:220 ../cache/locales.php:402 msgid "Search" msgstr "" -#: [share]error +#: ../cache/locales.php:221 +msgid "Go on the Chat page" +msgstr "" + +#: ../cache/locales.php:222 +msgid "Read all theses articles on the News page" +msgstr "" + +#: ../cache/locales.php:223 +msgid "Visit your public blog" +msgstr "" + +#: ../cache/locales.php:224 +msgid "See your public posts and share them with all your contacts" +msgstr "" + +#: ../cache/locales.php:226 +msgid "Universal share button" +msgstr "" + +#: ../cache/locales.php:227 +msgid "" +"Bookmark or drag and drop the following button in your toolbar and use it on " +"all the pages you want to share on Movim" +msgstr "" + +#: ../cache/locales.php:228 +msgid "Share on Movim" +msgstr "" + +#: ../cache/locales.php:229 +msgid "Frequently Asked Questions" +msgstr "" + +#: ../cache/locales.php:230 +msgid "What do the little banners refer to ?" +msgstr "" + +#: ../cache/locales.php:231 +msgid "" +"Thanks to these five little banners, you can quickly identitfy the level of " +"confdentiality applied to the information you provide." +msgstr "" + +#: ../cache/locales.php:232 +msgid "White, only you can see the information" +msgstr "" + +#: ../cache/locales.php:233 +msgid "Green, you have chosen some contacts who can see your information" +msgstr "" + +#: ../cache/locales.php:234 +msgid "Orange, all your contact list can see your information" +msgstr "" + +#: ../cache/locales.php:235 +msgid "Red, everybody in the XMPP network can see your information" +msgstr "" + +#: ../cache/locales.php:236 +msgid "Black, the whole Internet can see your information" +msgstr "" + +#: ../cache/locales.php:237 +msgid "Looking for some documentation ?" +msgstr "" + +#: ../cache/locales.php:238 +msgid "Read the Wiki" +msgstr "" + +#: ../cache/locales.php:239 +msgid "Talk with us by email ?" +msgstr "" + +#: ../cache/locales.php:240 +msgid "Join the Mailing List" +msgstr "" + +#: ../cache/locales.php:241 +msgid "Chat with the team ?" +msgstr "" + +#: ../cache/locales.php:242 +msgid "Join the Chatroom" +msgstr "" + +#: ../cache/locales.php:243 +msgid "Location node created" +msgstr "" + +#: ../cache/locales.php:244 +msgid "Bookmark node created" +msgstr "" + +#: ../cache/locales.php:245 +msgid "Profile node created" +msgstr "" + +#: ../cache/locales.php:246 +msgid "Avatar node created" +msgstr "" + +#: ../cache/locales.php:247 +msgid "Subscriptions node created" +msgstr "" + +#: ../cache/locales.php:248 +msgid "Microblog node created" +msgstr "" + +#: ../cache/locales.php:249 +msgid "Location" +msgstr "" + +#: ../cache/locales.php:250 +msgid "Wrong position" +msgstr "" + +#: ../cache/locales.php:251 +msgid "Location updated" +msgstr "" + +#: ../cache/locales.php:252 +msgid "Update my position" +msgstr "" + +#: ../cache/locales.php:253 +msgid "Wrong username" +msgstr "" + +#: ../cache/locales.php:254 +msgid "Invalid JID" +msgstr "" + +#: ../cache/locales.php:255 +msgid "Empty Challenge from the server" +msgstr "" + +#: ../cache/locales.php:256 +msgid "XMPP Domain error, your account is not a correct Jabber ID" +msgstr "" + +#: ../cache/locales.php:257 +msgid "Some data are missing !" +msgstr "" + +#: ../cache/locales.php:258 +msgid "Wrong password" +msgstr "" + +#: ../cache/locales.php:259 +msgid "Internal server error" +msgstr "" + +#: ../cache/locales.php:260 +msgid "Session error" +msgstr "" + +#: ../cache/locales.php:261 +msgid "Account successfully created" +msgstr "" + +#: ../cache/locales.php:262 ../cache/locales.php:271 +msgid "Your XMPP server is unauthorized" +msgstr "" + +#: ../cache/locales.php:263 +msgid "The server takes too much time to respond" +msgstr "" + +#: ../cache/locales.php:264 +msgid "Your web browser is too old to use with Movim." +msgstr "" + +#: ../cache/locales.php:265 +msgid "" +"Movim cannot talk with the server, please try again later (Websocket " +"connection error)" +msgstr "" + +#: ../cache/locales.php:266 +msgid "Impossible login" +msgstr "" + +#: ../cache/locales.php:267 +msgid "Oops!" +msgstr "" + +#: ../cache/locales.php:268 ../cache/locales.php:449 ../cache/locales.php:455 +msgid "Unknown error" +msgstr "" + +#: ../cache/locales.php:269 +msgid "Invalid username format" +msgstr "" + +#: ../cache/locales.php:270 +msgid "Invalid password format" +msgstr "" + +#: ../cache/locales.php:272 +msgid "A Movim session is already open on an other device" +msgstr "" + +#: ../cache/locales.php:273 +msgid "Movim failed to authenticate. You entered wrong data" +msgstr "" + +#: ../cache/locales.php:274 +msgid "Authentication mechanism not supported by Movim" +msgstr "" + +#: ../cache/locales.php:275 +msgid "The XMPP authentification failed" +msgstr "" + +#: ../cache/locales.php:276 +#, php-format +msgid "" +"You can login with Facebook (chat only) using %syour.id@chat.facebook.com%s " +"and your password" +msgstr "" + +#: ../cache/locales.php:277 +#, php-format +msgid "%sGmail accounts are also compatible%s but are not fully supported" +msgstr "" + +#: ../cache/locales.php:278 +msgid "You can login using your favorite Jabber account" +msgstr "" + +#: ../cache/locales.php:279 +msgid "or with our demonstration account" +msgstr "" + +#: ../cache/locales.php:280 ../cache/locales.php:435 +msgid "Accounts" +msgstr "" + +#: ../cache/locales.php:281 +msgid "My address" +msgstr "" + +#: ../cache/locales.php:283 +msgid "Create one !" +msgstr "" + +#: ../cache/locales.php:284 +msgid "No account yet ?" +msgstr "" + +#: ../cache/locales.php:285 +msgid "Another account" +msgstr "" + +#: ../cache/locales.php:286 +msgid "You can login with accounts from theses servers" +msgstr "" + +#: ../cache/locales.php:287 +msgid "Connected" +msgstr "" + +#: ../cache/locales.php:288 +msgid "Population" +msgstr "" + +#: ../cache/locales.php:289 +msgid "Bad nickname (between 4 and 40 characters)" +msgstr "" + +#: ../cache/locales.php:292 +msgid "" +"Welcome on your news feed, here you will see all the posts published in the " +"groups you have subscribed." +msgstr "" + +#: ../cache/locales.php:293 +msgid "Refreshing all the streams" +msgstr "" + +#: ../cache/locales.php:294 +msgid "This post is public" +msgstr "" + +#: ../cache/locales.php:295 +msgid "Manage your members" +msgstr "" + +#: ../cache/locales.php:296 +msgid "Get the members" +msgstr "" + +#: ../cache/locales.php:297 +msgid "Affiliations saved" +msgstr "" + +#: ../cache/locales.php:298 +msgid "Manage your subscriptions" +msgstr "" + +#: ../cache/locales.php:299 +msgid "Manage the subscriptions" +msgstr "" + +#: ../cache/locales.php:300 +msgid "Get the subscriptions" +msgstr "" + +#: ../cache/locales.php:301 +msgid "Subscriptions saved" +msgstr "" + +#: ../cache/locales.php:302 +msgid "Pending Invitations" +msgstr "" + +#: ../cache/locales.php:303 +#, php-format +msgid "%s wants to talk with you" +msgstr "" + +#: ../cache/locales.php:304 +msgid "Manage" +msgstr "" + +#: ../cache/locales.php:305 ../cache/locales.php:338 +msgid "News Feed" +msgstr "" + +#: ../cache/locales.php:306 ../cache/locales.php:339 +msgid "Discover and register to the groups you are interested in" +msgstr "" + +#: ../cache/locales.php:307 ../cache/locales.php:340 ../cache/locales.php:482 +msgid "Preview" +msgstr "" + +#: ../cache/locales.php:308 ../cache/locales.php:341 ../cache/locales.php:478 +msgid "Help" +msgstr "" + +#: ../cache/locales.php:309 ../cache/locales.php:342 +msgid "More help" +msgstr "" + +#: ../cache/locales.php:310 ../cache/locales.php:343 +msgid "Markdown syntax manual" +msgstr "" + +#: ../cache/locales.php:311 ../cache/locales.php:344 ../cache/locales.php:681 +msgid "Title" +msgstr "" + +#: ../cache/locales.php:312 ../cache/locales.php:345 +msgid "Content" +msgstr "" + +#: ../cache/locales.php:313 ../cache/locales.php:346 +msgid "Link" +msgstr "" + +#: ../cache/locales.php:314 ../cache/locales.php:347 +msgid "Tags" +msgstr "" + +#: ../cache/locales.php:315 ../cache/locales.php:348 +msgid "Please enter a valid url" +msgstr "" + +#: ../cache/locales.php:316 ../cache/locales.php:349 +msgid "No content to preview" +msgstr "" + +#: ../cache/locales.php:317 ../cache/locales.php:350 ../cache/locales.php:687 +msgid "No content" +msgstr "" + +#: ../cache/locales.php:318 ../cache/locales.php:351 +msgid "Post published" +msgstr "" + +#: ../cache/locales.php:319 ../cache/locales.php:352 +msgid "Post deleted" +msgstr "" + +#: ../cache/locales.php:320 ../cache/locales.php:353 +msgid "This picture will be added to your gallery" +msgstr "" + +#: ../cache/locales.php:321 ../cache/locales.php:354 +msgid "What's Hot" +msgstr "" + +#: ../cache/locales.php:322 ../cache/locales.php:355 +msgid "New post" +msgstr "" + +#: ../cache/locales.php:323 ../cache/locales.php:357 +msgid "" +"You can also use services like Imgur or Flickr to host your picture and " +"paste the link here." +msgstr "" + +#: ../cache/locales.php:324 +#, php-format +msgid "This is a re-post from %s" +msgstr "" + +#: ../cache/locales.php:325 +#, php-format +msgid "See %s profile" +msgstr "" + +#: ../cache/locales.php:326 +msgid "Publish this post on your public feed?" +msgstr "" + +#: ../cache/locales.php:327 +msgid "Post published on your blog" +msgstr "" + +#: ../cache/locales.php:328 +msgid "Post removed from your blog" +msgstr "" + +#: ../cache/locales.php:329 ../cache/locales.php:701 +msgid "Delete this post" +msgstr "" + +#: ../cache/locales.php:330 +msgid "You are going to delete this post, please confirm your action" +msgstr "" + +#: ../cache/locales.php:331 +msgid "Comments disabled" +msgstr "" + +#: ../cache/locales.php:332 +msgid "Comment published" +msgstr "" + +#: ../cache/locales.php:333 +msgid "Disconnect" +msgstr "" + +#: ../cache/locales.php:334 +msgid "Your status here !" +msgstr "" + +#: ../cache/locales.php:335 +msgid "Status updated" +msgstr "" + +#: ../cache/locales.php:336 +msgid "Status" +msgstr "" + +#: ../cache/locales.php:337 +msgid "Presence" +msgstr "" + +#: ../cache/locales.php:356 +msgid "Publish" +msgstr "" + +#: ../cache/locales.php:358 +msgid "You cannot publish a post on this Group" +msgstr "" + +#: ../cache/locales.php:359 +msgid "" +"Some fields have been filled in. Do you still want to go back and loose " +"their content?" +msgstr "" + +#: ../cache/locales.php:360 +msgid "Shared" +msgstr "" + +#: ../cache/locales.php:362 +#, php-format +msgid "%s has been added to your public groups" +msgstr "" + +#: ../cache/locales.php:363 +#, php-format +msgid "%s has been removed from your public groups" +msgstr "" + +#: ../cache/locales.php:364 +msgid "Add a chatroom" +msgstr "" + +#: ../cache/locales.php:365 +msgid "You don't have any chatroom yet." +msgstr "" + +#: ../cache/locales.php:366 +msgid "Add one by clicking on the add button in the header." +msgstr "" + +#: ../cache/locales.php:367 +msgid "Chatrooms" +msgstr "" + +#: ../cache/locales.php:370 +msgid "My Favorite Room" +msgstr "" + +#: ../cache/locales.php:374 +msgid "Remove a chatroom" +msgstr "" + +#: ../cache/locales.php:375 +msgid "" +"You are going to remove the following chatroom. Please confirm your action." +msgstr "" + +#: ../cache/locales.php:378 +msgid "Users in the room" +msgstr "" + +#: ../cache/locales.php:379 +msgid "Please enter a correct nickname (6 to 40 characters)" +msgstr "" + +#: ../cache/locales.php:381 +msgid "Public chatroom" +msgstr "" + +#: ../cache/locales.php:382 +msgid "Please provide a room address" +msgstr "" + +#: ../cache/locales.php:383 +msgid "You are currently logued as an anonymous user." +msgstr "" + +#: ../cache/locales.php:384 +msgid "" +"You can join using your own account or create one on the login page by " +"loging out using the cross in the top-right corner." +msgstr "" + +#: ../cache/locales.php:385 +#, php-format +msgid "Login on %s" +msgstr "" + +#: ../cache/locales.php:386 +msgid "Your nickname" +msgstr "" + +#: ../cache/locales.php:387 +msgid "Ungrouped" +msgstr "" + +#: ../cache/locales.php:388 +msgid "Show disconnected contacts" +msgstr "" + +#: ../cache/locales.php:389 +msgid "Hide disconnected contacts" +msgstr "" + +#: ../cache/locales.php:390 +#, php-format +msgid "Show group %s" +msgstr "" + +#: ../cache/locales.php:391 +#, php-format +msgid "Hide group %s" +msgstr "" + +#: ../cache/locales.php:392 +msgid "Please enter a valid Jabber ID" +msgstr "" + +#: ../cache/locales.php:393 +msgid "" +"No contacts ? You can add one using the + button bellow or going to the " +"Explore page" +msgstr "" + +#: ../cache/locales.php:394 +msgid "Show/Hide" +msgstr "" + +#: ../cache/locales.php:395 +msgid "Enter the Jabber ID of your contact." +msgstr "" + +#: ../cache/locales.php:396 +msgid "Press enter to validate." +msgstr "" + +#: ../cache/locales.php:397 +msgid "JID" +msgstr "" + +#: ../cache/locales.php:398 +msgid "Results" +msgstr "" + +#: ../cache/locales.php:399 +msgid "Contact added" +msgstr "" + +#: ../cache/locales.php:401 +msgid "Contact deleted" +msgstr "" + +#: ../cache/locales.php:403 msgid "This is not a valid url" msgstr "" -#: [share]success +#: ../cache/locales.php:404 msgid "Sharing the URL" msgstr "" -#: [statistics]title +#: ../cache/locales.php:405 msgid "Statistics" msgstr "" -#: [statistics]since +#: ../cache/locales.php:406 msgid "Since" msgstr "" -#: [statistics]sessions +#: ../cache/locales.php:407 msgid "Sessions" msgstr "" -#: [statistics]monthly_sub +#: ../cache/locales.php:409 msgid "Monthly Subscriptions" msgstr "" -#: [statistics]monthly_sub_cum +#: ../cache/locales.php:410 msgid "Monthly Subscriptions Cumulated" msgstr "" -#: [subscribe]info -msgid "Movim is a decentralized social network, before creating a new account you need to choose a server to register." +#: ../cache/locales.php:412 +msgid "" +"Movim is a decentralized social network, before creating a new account you " +"need to choose a server to register." msgstr "" -#: [subscribe]server_question +#: ../cache/locales.php:413 msgid "Your server here ?" msgstr "" -#: [subscribe]server_contact +#: ../cache/locales.php:414 msgid "Contact us to add yours to the officially supported servers list" msgstr "" -#: [feed]nope +#: ../cache/locales.php:416 msgid "No public feed for this contact" msgstr "" -#: [feed]nope_contact +#: ../cache/locales.php:417 msgid "No contact specified" msgstr "" -#: [upload]title -msgid "Upload a file" -msgstr "" - -#: [upload]choose -msgid "Choose a file to upload" -msgstr "" - -#: [vcard]title [page]profile +#: ../cache/locales.php:418 ../cache/locales.php:473 msgid "Profile" msgstr "" -#: [vcard]updated +#: ../cache/locales.php:419 msgid "Profile Updated" msgstr "" -#: [vcard]not_updated +#: ../cache/locales.php:420 msgid "Profile Not Updated" msgstr "" -#: [vcard]public +#: ../cache/locales.php:421 msgid "Your profile is now public" msgstr "" -#: [vcard]restricted +#: ../cache/locales.php:422 msgid "Your profile is now restricted" msgstr "" -#: [general]nickname -msgctxt "[general]nickname" -msgid "Nickname" -msgstr "" - -#: [accounts]twitter +#: ../cache/locales.php:436 msgid "Twitter" msgstr "" -#: [accounts]skype +#: ../cache/locales.php:437 msgid "Skype" msgstr "" -#: [accounts]yahoo +#: ../cache/locales.php:438 msgid "Yahoo" msgstr "" -#: [accounts]accounts_nickname -msgctxt "[accounts]accounts_nickname" -msgid "Nickname" -msgstr "" - -#: [accounts]accounts_yahoo -msgid "Yahoo Account" -msgstr "" - -#: [privacy]privacy_title +#: ../cache/locales.php:439 msgid "Privacy Level" msgstr "" -#: [privacy]privacy_question +#: ../cache/locales.php:440 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." +#: ../cache/locales.php:441 +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." msgstr "" -#: [save]submit [button]submit -msgid "Submit" -msgstr "" - -#: [save]reset [button]reset -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 +#: ../cache/locales.php:442 msgid "Call" msgstr "" -#: [visio]hang_up +#: ../cache/locales.php:443 msgid "Hang up" msgstr "" -#: [visio]connection +#: ../cache/locales.php:444 msgid "Connection" msgstr "" -#: [global]no_js +#: ../cache/locales.php:445 ../cache/locales.php:451 +msgid "Hung up" +msgstr "" + +#: ../cache/locales.php:446 ../cache/locales.php:452 +msgid "Your contact is busy" +msgstr "" + +#: ../cache/locales.php:447 ../cache/locales.php:453 +msgid "Declined" +msgstr "" + +#: ../cache/locales.php:448 ../cache/locales.php:454 +msgid "Remote application incompatible" +msgstr "" + +#: ../cache/locales.php:450 ../cache/locales.php:456 +msgid "Is calling you" +msgstr "" + +#: ../cache/locales.php:457 msgid "You don't have javascript enabled. Good luck with that." msgstr "" -#: [global]description -msgid "Movim is a kickass distributed social networking platform that protect your privacy an comes with a set of awesome features." +#: ../cache/locales.php:458 +msgid "" +"Movim is a kickass distributed social networking platform that protect your " +"privacy an comes with a set of awesome features." msgstr "" -#: [page]administration +#: ../cache/locales.php:459 msgid "Administration" msgstr "" -#: [page]home +#: ../cache/locales.php:460 msgid "Home" msgstr "" -#: [page]discover +#: ../cache/locales.php:461 msgid "Discover" msgstr "" -#: [page]explore +#: ../cache/locales.php:462 msgid "Explore" msgstr "" -#: [page]account_creation +#: ../cache/locales.php:463 msgid "Account Creation" msgstr "" -#: [page]avatar +#: ../cache/locales.php:464 +msgid "News" +msgstr "" + +#: ../cache/locales.php:465 msgid "Avatar" msgstr "" -#: [page]chats +#: ../cache/locales.php:467 msgid "Chats" msgstr "" -#: [page]server +#: ../cache/locales.php:470 msgid "Server" msgstr "" -#: [page]public_groups +#: ../cache/locales.php:471 msgid "Public Groups" msgstr "" -#: [page]viewer +#: ../cache/locales.php:472 msgid "Viewer" msgstr "" -#: [page]media +#: ../cache/locales.php:474 msgid "Media" msgstr "" -#: [page]blog +#: ../cache/locales.php:475 msgid "Blog" msgstr "" -#: [page]about +#: ../cache/locales.php:476 msgid "About" msgstr "" -#: [page]login +#: ../cache/locales.php:477 msgid "Login" msgstr "" -#: [page]feed +#: ../cache/locales.php:479 msgid "Feed" msgstr "" -#: [page]gallery +#: ../cache/locales.php:481 msgid "Gallery" msgstr "" -#: [page]visio +#: ../cache/locales.php:483 msgid "Visio-conference" msgstr "" -#: [page]pods +#: ../cache/locales.php:484 msgid "Pods" msgstr "" -#: [page]share +#: ../cache/locales.php:485 msgid "Share" msgstr "" -#: [page]room +#: ../cache/locales.php:486 msgid "Room" msgstr "" -#: [error]error +#: ../cache/locales.php:487 +#, php-format msgid "Error: %s" msgstr "" -#: [error]cannot_load_file +#: ../cache/locales.php:488 +#, php-format msgid "Cannot load file '%s'" msgstr "" -#: [error]route +#: ../cache/locales.php:489 +#, php-format msgid "Route error, please set all the parameters for the page %s" msgstr "" -#: [error]widget_load_error +#: ../cache/locales.php:490 +#, php-format msgid "Requested widget '%s' doesn't exist." msgstr "" -#: [error]widget_call_error +#: ../cache/locales.php:491 +#, php-format msgid "Requested event '%s' not registered." msgstr "" -#: [error]whoops +#: ../cache/locales.php:492 msgid "Whoops!" msgstr "" -#: [error]media_not_found +#: ../cache/locales.php:493 msgid "It seem that you don't have any pictures here?" msgstr "" -#: [error]media_ask_upload +#: ../cache/locales.php:494 msgid "You can try to upload a couple by going to the Media page" msgstr "" -#: [title]about +#: ../cache/locales.php:495 +#, php-format msgid "%s - About" msgstr "" -#: [title]account +#: ../cache/locales.php:496 +#, php-format msgid "%s - Account" msgstr "" -#: [title]administration +#: ../cache/locales.php:497 +#, php-format msgid "%s - Administration Panel" msgstr "" -#: [title]blog +#: ../cache/locales.php:498 +#, php-format msgid "%s - Blog" msgstr "" -#: [title]configuration +#: ../cache/locales.php:499 +#, php-format msgid "%s - Configuration" msgstr "" -#: [title]discover +#: ../cache/locales.php:500 +#, php-format msgid "%s - Discover" msgstr "" -#: [title]explore +#: ../cache/locales.php:501 +#, php-format msgid "%s - Explore" msgstr "" -#: [title]help +#: ../cache/locales.php:502 +#, php-format msgid "%s - Help Page" msgstr "" -#: [title]login +#: ../cache/locales.php:503 +#, php-format msgid "%s - Login to Movim" msgstr "" -#: [title]main +#: ../cache/locales.php:504 +#, php-format msgid "%s - Welcome to Movim" msgstr "" -#: [title]media +#: ../cache/locales.php:505 +#, php-format msgid "%s - Media" msgstr "" -#: [title]news +#: ../cache/locales.php:506 +#, php-format msgid "%s - News" msgstr "" -#: [title]node_configuration +#: ../cache/locales.php:507 +#, php-format msgid "%s - Group Configuration" msgstr "" -#: [title]node +#: ../cache/locales.php:508 +#, php-format msgid "%s - Group" msgstr "" -#: [title]not_found +#: ../cache/locales.php:509 +#, php-format msgid "%s - 404" msgstr "" -#: [title]profile +#: ../cache/locales.php:510 +#, php-format msgid "%s - Profile" msgstr "" -#: [title]server +#: ../cache/locales.php:511 +#, php-format msgid "%s - Server" msgstr "" -#: [button]validate +#: ../cache/locales.php:512 msgid "Validate" msgstr "" -#: [button]refresh +#: ../cache/locales.php:513 msgid "Refresh" msgstr "" -#: [button]add +#: ../cache/locales.php:514 msgid "Add" msgstr "" -#: [button]delete +#: ../cache/locales.php:515 msgid "Delete" msgstr "" -#: [button]cancel +#: ../cache/locales.php:516 +msgid "Remove" +msgstr "" + +#: ../cache/locales.php:517 msgid "Cancel" msgstr "" -#: [button]close +#: ../cache/locales.php:518 msgid "Close" msgstr "" -#: [button]update +#: ../cache/locales.php:519 msgid "Update" msgstr "" -#: [button]updating +#: ../cache/locales.php:520 msgid "Updating" msgstr "" -#: [button]submitting +#: ../cache/locales.php:521 +msgid "Submit" +msgstr "" + +#: ../cache/locales.php:522 msgid "Submitting" msgstr "" -#: [button]register +#: ../cache/locales.php:523 +msgid "Reset" +msgstr "" + +#: ../cache/locales.php:524 msgid "Register" msgstr "" -#: [button]unregister +#: ../cache/locales.php:525 msgid "Unregister" msgstr "" -#: [button]save +#: ../cache/locales.php:526 msgid "Save" msgstr "" -#: [button]clear +#: ../cache/locales.php:527 msgid "Clear" msgstr "" -#: [button]upload +#: ../cache/locales.php:528 msgid "Upload" msgstr "" -#: [button]come_in +#: ../cache/locales.php:529 msgid "Come in!" msgstr "" -#: [button]connecting +#: ../cache/locales.php:530 msgid "Connecting" msgstr "" -#: [button]bool_yes +#: ../cache/locales.php:531 msgid "Yes" msgstr "" -#: [button]bool_no +#: ../cache/locales.php:532 msgid "No" msgstr "" -#: [button]return +#: ../cache/locales.php:534 msgid "Return" msgstr "" -#: [button]accept +#: ../cache/locales.php:535 msgid "Accept" msgstr "" -#: [button]refuse +#: ../cache/locales.php:536 msgid "Refuse" msgstr "" -#: [button]next +#: ../cache/locales.php:537 msgid "Next" msgstr "" -#: [button]previous +#: ../cache/locales.php:538 msgid "Previous" msgstr "" -#: [step]step +#: ../cache/locales.php:539 +#, php-format msgid "Step %s" msgstr "" -#: [day]title +#: ../cache/locales.php:542 msgid "Day" msgstr "" -#: [day]monday +#: ../cache/locales.php:543 msgid "Monday" msgstr "" -#: [day]tuesday +#: ../cache/locales.php:544 msgid "Tuesday" msgstr "" -#: [day]wednesday +#: ../cache/locales.php:545 msgid "Wednesday" msgstr "" -#: [day]thursday +#: ../cache/locales.php:546 msgid "Thursday" msgstr "" -#: [day]friday +#: ../cache/locales.php:547 msgid "Friday" msgstr "" -#: [day]saturday +#: ../cache/locales.php:548 msgid "Saturday" msgstr "" -#: [day]sunday +#: ../cache/locales.php:549 msgid "Sunday" msgstr "" -#: [gender]nil -msgctxt "[gender]nil" +#: ../cache/locales.php:550 ../cache/locales.php:559 msgid "None" msgstr "" -#: [gender]male +#: ../cache/locales.php:551 msgid "Male" msgstr "" -#: [gender]female +#: ../cache/locales.php:552 msgid "Female" msgstr "" -#: [gender]other +#: ../cache/locales.php:553 msgid "Other" msgstr "" -#: [client]bot +#: ../cache/locales.php:554 msgid "Bot" msgstr "" -#: [client]desktop +#: ../cache/locales.php:555 msgid "Desktop" msgstr "" -#: [client]phone +#: ../cache/locales.php:556 msgid "Phone" msgstr "" -#: [client]web +#: ../cache/locales.php:557 msgid "Web" msgstr "" -#: [client]registered +#: ../cache/locales.php:558 msgid "Registered" msgstr "" -#: [marital]nil -msgctxt "[marital]nil" -msgid "None" -msgstr "" - -#: [marital]single +#: ../cache/locales.php:560 msgid "Single" msgstr "" -#: [marital]relationship +#: ../cache/locales.php:561 msgid "In a relationship" msgstr "" -#: [marital]married +#: ../cache/locales.php:562 msgid "Married" msgstr "" -#: [marital]divorced +#: ../cache/locales.php:563 msgid "Divorced" msgstr "" -#: [marital]widowed +#: ../cache/locales.php:564 msgid "Widowed" msgstr "" -#: [marital]cohabiting +#: ../cache/locales.php:565 msgid "Cohabiting" msgstr "" -#: [marital]union +#: ../cache/locales.php:566 msgid "Civil Union" msgstr "" -#: [flag]white +#: ../cache/locales.php:567 msgid "Not shared" msgstr "" -#: [flag]green +#: ../cache/locales.php:568 msgid "Shared with one contact" msgstr "" -#: [flag]orange +#: ../cache/locales.php:569 msgid "Shared with all contacts" msgstr "" -#: [flag]red +#: ../cache/locales.php:570 msgid "Shared with the XMPP network" msgstr "" -#: [flag]black +#: ../cache/locales.php:571 msgid "Shared with the whole Internet" msgstr "" -#: [presence]online +#: ../cache/locales.php:572 msgid "Online" msgstr "" -#: [presence]away +#: ../cache/locales.php:573 msgid "Away" msgstr "" -#: [presence]dnd +#: ../cache/locales.php:574 msgid "Do Not Disturb" msgstr "" -#: [presence]xa +#: ../cache/locales.php:575 msgid "Extended Away" msgstr "" -#: [presence]offline +#: ../cache/locales.php:576 msgid "Offline" msgstr "" -#: [presence]error +#: ../cache/locales.php:577 msgid "Error" msgstr "" -#: [mood]afraid +#: ../cache/locales.php:578 msgid "afraid" msgstr "" -#: [mood]amazed +#: ../cache/locales.php:579 msgid "amazed" msgstr "" -#: [mood]amorous +#: ../cache/locales.php:580 msgid "amorous" msgstr "" -#: [mood]angry +#: ../cache/locales.php:581 msgid "angry" msgstr "" -#: [mood]annoyed +#: ../cache/locales.php:582 msgid "annoyed" msgstr "" -#: [mood]anxious +#: ../cache/locales.php:583 msgid "anxious" msgstr "" -#: [mood]aroused +#: ../cache/locales.php:584 msgid "aroused" msgstr "" -#: [mood]ashamed +#: ../cache/locales.php:585 msgid "ashamed" msgstr "" -#: [mood]bored +#: ../cache/locales.php:586 msgid "bored" msgstr "" -#: [mood]brave +#: ../cache/locales.php:587 msgid "brave" msgstr "" -#: [mood]calm +#: ../cache/locales.php:588 msgid "calm" msgstr "" -#: [mood]cautious +#: ../cache/locales.php:589 msgid "cautious" msgstr "" -#: [mood]cold +#: ../cache/locales.php:590 msgid "cold" msgstr "" -#: [mood]confident +#: ../cache/locales.php:591 msgid "confident" msgstr "" -#: [mood]confused +#: ../cache/locales.php:592 msgid "confused" msgstr "" -#: [mood]contemplative +#: ../cache/locales.php:593 msgid "contemplative" msgstr "" -#: [mood]contented +#: ../cache/locales.php:594 msgid "contented" msgstr "" -#: [mood]cranky +#: ../cache/locales.php:595 msgid "cranky" msgstr "" -#: [mood]crazy +#: ../cache/locales.php:596 msgid "crazy" msgstr "" -#: [mood]creative +#: ../cache/locales.php:597 msgid "creative" msgstr "" -#: [mood]curious +#: ../cache/locales.php:598 msgid "curious" msgstr "" -#: [mood]dejected +#: ../cache/locales.php:599 msgid "dejected" msgstr "" -#: [mood]depressed +#: ../cache/locales.php:600 msgid "depressed" msgstr "" -#: [mood]disappointed +#: ../cache/locales.php:601 msgid "disappointed" msgstr "" -#: [mood]disgusted +#: ../cache/locales.php:602 msgid "disgusted" msgstr "" -#: [mood]dismayed +#: ../cache/locales.php:603 msgid "dismayed" msgstr "" -#: [mood]distracted +#: ../cache/locales.php:604 msgid "distracted" msgstr "" -#: [mood]embarrassed +#: ../cache/locales.php:605 msgid "embarrassed" msgstr "" -#: [mood]envious +#: ../cache/locales.php:606 msgid "envious" msgstr "" -#: [mood]excited +#: ../cache/locales.php:607 msgid "excited" msgstr "" -#: [mood]flirtatious +#: ../cache/locales.php:608 msgid "flirtatious" msgstr "" -#: [mood]frustated +#: ../cache/locales.php:609 msgid "frustated" msgstr "" -#: [mood]grateful +#: ../cache/locales.php:610 msgid "grateful" msgstr "" -#: [mood]grieving +#: ../cache/locales.php:611 msgid "grieving" msgstr "" -#: [mood]grumpy +#: ../cache/locales.php:612 msgid "grumpy" msgstr "" -#: [mood]guilty +#: ../cache/locales.php:613 msgid "guilty" msgstr "" -#: [mood]happy +#: ../cache/locales.php:614 msgid "happy" msgstr "" -#: [mood]hopeful +#: ../cache/locales.php:615 msgid "hopeful" msgstr "" -#: [mood]hot +#: ../cache/locales.php:616 msgid "hot" msgstr "" -#: [mood]humbled +#: ../cache/locales.php:617 msgid "humbled" msgstr "" -#: [mood]humiliated +#: ../cache/locales.php:618 msgid "humiliated" msgstr "" -#: [mood]hungry +#: ../cache/locales.php:619 msgid "hungry" msgstr "" -#: [mood]hurt +#: ../cache/locales.php:620 msgid "hurt" msgstr "" -#: [mood]impressed +#: ../cache/locales.php:621 msgid "impressed" msgstr "" -#: [mood]in_awe +#: ../cache/locales.php:622 msgid "in awe" msgstr "" -#: [mood]in_love +#: ../cache/locales.php:623 msgid "in love" msgstr "" -#: [mood]indignant +#: ../cache/locales.php:624 msgid "indignant" msgstr "" -#: [mood]interested +#: ../cache/locales.php:625 msgid "interested" msgstr "" -#: [mood]intoxicated +#: ../cache/locales.php:626 msgid "intoxicated" msgstr "" -#: [mood]invincible +#: ../cache/locales.php:627 msgid "invincible" msgstr "" -#: [mood]jealous +#: ../cache/locales.php:628 msgid "jealous" msgstr "" -#: [mood]lonely +#: ../cache/locales.php:629 msgid "lonely" msgstr "" -#: [mood]lost +#: ../cache/locales.php:630 msgid "lost" msgstr "" -#: [mood]lucky +#: ../cache/locales.php:631 msgid "lucky" msgstr "" -#: [mood]mean +#: ../cache/locales.php:632 msgid "mean" msgstr "" -#: [mood]moody +#: ../cache/locales.php:633 msgid "moody" msgstr "" -#: [mood]nervous +#: ../cache/locales.php:634 msgid "nervous" msgstr "" -#: [mood]neutral +#: ../cache/locales.php:635 msgid "neutral" msgstr "" -#: [mood]offended +#: ../cache/locales.php:636 msgid "offended" msgstr "" -#: [mood]outraged +#: ../cache/locales.php:637 msgid "outraged" msgstr "" -#: [mood]playful +#: ../cache/locales.php:638 msgid "playful" msgstr "" -#: [mood]proud +#: ../cache/locales.php:639 msgid "proud" msgstr "" -#: [mood]relaxed +#: ../cache/locales.php:640 msgid "relaxed" msgstr "" -#: [mood]relieved +#: ../cache/locales.php:641 msgid "relieved" msgstr "" -#: [mood]restless +#: ../cache/locales.php:642 +msgid "remorseful" +msgstr "" + +#: ../cache/locales.php:643 msgid "restless" msgstr "" -#: [mood]sad +#: ../cache/locales.php:644 msgid "sad" msgstr "" -#: [mood]sarcastic +#: ../cache/locales.php:645 msgid "sarcastic" msgstr "" -#: [mood]satisfied +#: ../cache/locales.php:646 msgid "satisfied" msgstr "" -#: [mood]serious +#: ../cache/locales.php:647 msgid "serious" msgstr "" -#: [mood]shocked +#: ../cache/locales.php:648 msgid "shocked" msgstr "" -#: [mood]shy +#: ../cache/locales.php:649 msgid "shy" msgstr "" -#: [mood]sick +#: ../cache/locales.php:650 msgid "sick" msgstr "" -#: [mood]sleepy +#: ../cache/locales.php:651 msgid "sleepy" msgstr "" -#: [mood]spontaneous +#: ../cache/locales.php:652 msgid "spontaneous" msgstr "" -#: [mood]stressed +#: ../cache/locales.php:653 msgid "stressed" msgstr "" -#: [mood]strong +#: ../cache/locales.php:654 msgid "strong" msgstr "" -#: [mood]surprised +#: ../cache/locales.php:655 msgid "surprised" msgstr "" -#: [mood]thankful +#: ../cache/locales.php:656 msgid "thankful" msgstr "" -#: [mood]thirsty +#: ../cache/locales.php:657 msgid "thirsty" msgstr "" -#: [mood]tired +#: ../cache/locales.php:658 msgid "tired" msgstr "" -#: [mood]undefined +#: ../cache/locales.php:659 msgid "undefined" msgstr "" -#: [mood]weak +#: ../cache/locales.php:660 msgid "weak" msgstr "" -#: [mood]worried +#: ../cache/locales.php:661 msgid "worried" msgstr "" -#: [month]title +#: ../cache/locales.php:662 msgid "Month" msgstr "" -#: [month]january +#: ../cache/locales.php:663 msgid "January" msgstr "" -#: [month]february +#: ../cache/locales.php:664 msgid "February" msgstr "" -#: [month]march +#: ../cache/locales.php:665 msgid "March" msgstr "" -#: [month]april +#: ../cache/locales.php:666 msgid "April" msgstr "" -#: [month]may +#: ../cache/locales.php:667 msgid "May" msgstr "" -#: [month]june +#: ../cache/locales.php:668 msgid "June" msgstr "" -#: [month]july +#: ../cache/locales.php:669 msgid "July" msgstr "" -#: [month]august +#: ../cache/locales.php:670 msgid "August" msgstr "" -#: [month]september +#: ../cache/locales.php:671 msgid "September" msgstr "" -#: [month]october +#: ../cache/locales.php:672 msgid "October" msgstr "" -#: [month]november +#: ../cache/locales.php:673 msgid "November" msgstr "" -#: [month]december +#: ../cache/locales.php:674 msgid "December" msgstr "" -#: [year]title +#: ../cache/locales.php:675 msgid "Year" msgstr "" -#: [date]today +#: ../cache/locales.php:676 msgid "Today" msgstr "" -#: [date]tomorrow +#: ../cache/locales.php:677 msgid "Tomorrow" msgstr "" -#: [date]yesterday +#: ../cache/locales.php:678 msgid "Yesterday" msgstr "" -#: [date]ago -msgid "%d days ago" +#: ../cache/locales.php:679 +#, php-format +msgid " %d days ago" msgstr "" -#: [date]day +#: ../cache/locales.php:680 msgid "day" msgstr "" -#: [post]whats_new +#: ../cache/locales.php:682 msgid "What's new ?" msgstr "" -#: [post]place +#: ../cache/locales.php:683 msgid "Place" msgstr "" -#: [post]by +#: ../cache/locales.php:684 msgid "by" msgstr "" -#: [post]geolocalisation +#: ../cache/locales.php:685 msgid "Geolocalisation" msgstr "" -#: [post]email +#: ../cache/locales.php:686 msgid "email" msgstr "" -#: [post]no_comments +#: ../cache/locales.php:688 msgid "No comments yet" msgstr "" -#: [post]no_comments_stream +#: ../cache/locales.php:689 msgid "No comments stream" msgstr "" -#: [post]no_load +#: ../cache/locales.php:690 msgid "Your feed cannot be loaded." msgstr "" -#: [post]older +#: ../cache/locales.php:691 msgid "Get older posts" msgstr "" -#: [post]new_items +#: ../cache/locales.php:692 +#, php-format msgid "%s new items" msgstr "" -#: [post]comment_error +#: ../cache/locales.php:693 msgid "Comment publication error" msgstr "" -#: [post]comments_older +#: ../cache/locales.php:694 msgid "Show the older comments" msgstr "" -#: [post]comments_loading -msgid "Loading comments..." +#: ../cache/locales.php:695 +msgid "Loading comments ..." msgstr "" -#: [post]comments_get +#: ../cache/locales.php:696 msgid "Get the comments" msgstr "" -#: [post]comment_add +#: ../cache/locales.php:697 msgid "Add a comment" msgstr "" -#: [post]share +#: ../cache/locales.php:698 msgid "Share with" msgstr "" -#: [post]share_everyone +#: ../cache/locales.php:699 msgid "Everyone" msgstr "" -#: [post]share_your_contacts +#: ../cache/locales.php:700 msgid "Your contacts" msgstr "" -#: [post]updated +#: ../cache/locales.php:702 msgid "Updated" msgstr "" -#: [post]content_not_found +#: ../cache/locales.php:703 msgid "Content not found" msgstr "" -#: [post]default_title +#: ../cache/locales.php:704 msgid "Contact publication" msgstr "" -#: [post]comments +#: ../cache/locales.php:705 msgid "Comments" msgstr "" -#: [api]error +#: ../cache/locales.php:706 msgid "The API is not reachable, try again later" msgstr "" -#: [field]type_here +#: ../cache/locales.php:707 msgid "Type here" msgstr "" diff --git a/sources/locales/id.po b/sources/locales/id.po index 2365384..496a873 100644 --- a/sources/locales/id.po +++ b/sources/locales/id.po @@ -3,2738 +3,2622 @@ # This file is distributed under the same license as the movim package. # FIRST AUTHOR , 2013. # -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/About/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Account/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/AccountNext/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/AdHoc/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/AdminDB/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/AdminMain/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/AdminTest/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Api/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Avatar/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Blog/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Bookmark/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Chat/locales.ini -#. #-#-#-#-# 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 -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Group/locales.ini -#. #-#-#-#-# 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 -#. #-#-#-#-# 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 -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Presence/locales.ini -#. #-#-#-#-# 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 -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Share/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Statistics/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Subscribe/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Syndication/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Upload/locales.ini -#. #-#-#-#-# 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-08-20 15:17+0200\n" +"POT-Creation-Date: 2015-06-08 22:06+0200\n" "PO-Revision-Date: 2015-06-09 12:21+0000\n" "Last-Translator: edhelas \n" "Language-Team: Indonesian \n" -"Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2015-06-18 21:08+0000\n" "X-Generator: Launchpad (build 17570)\n" +"Language: id\n" -#: [about]thanks +#: ../cache/locales.php:2 msgid "Thanks" msgstr "" -#: [about]developers +#: ../cache/locales.php:3 msgid "Developers" msgstr "" -#: [about]translators +#: ../cache/locales.php:4 msgid "Translators" msgstr "" -#: [about]software +#: ../cache/locales.php:5 msgid "Software" msgstr "" -#: [about]resources +#: ../cache/locales.php:6 msgid "Resources" msgstr "" -#: [about]api [schema]api [api]title +#: ../cache/locales.php:7 ../cache/locales.php:83 ../cache/locales.php:85 msgid "API" msgstr "" -#: [about]info -msgid "Movim is an XMPP-based communication platform. All the project, except the following software and resources, is under" +#: ../cache/locales.php:8 +msgid "" +"Movim is an XMPP-based communication platform. All the project, except the " +"following software and resources, is under" msgstr "" -#: [account]title +#: ../cache/locales.php:9 msgid "Account" msgstr "" -#: [account]password_change_title -#, fuzzy -msgid "Change my password" -msgstr "Buat vCard ku" - -#: [account]password [db]password [credentials]password [form]password -#: [input]password -msgid "Password" -msgstr "Kata sandi" - -#: [account]password_confirmation -msgid "Password confirmation" -msgstr "" - -#: [account]password_changed +#: ../cache/locales.php:10 msgid "The password has been updated" msgstr "" -#: [account]password_not_valid +#: ../cache/locales.php:11 msgid "Please provide a valid password (6 characters minimum)" msgstr "" -#: [account]password_not_same +#: ../cache/locales.php:12 msgid "The provided passwords are not the same" msgstr "" -#: [account]delete_title +#: ../cache/locales.php:13 msgid "Delete my account" msgstr "" -#: [account]delete -msgid "Delete your account" +#: ../cache/locales.php:14 +msgid "" +"You will delete your XMPP account and all the relative information linked to " +"it (profile, contacts and publications)." msgstr "" -#: [account]delete_text -msgid "You will delete your XMPP account and all the relative information linked to it (profile, contacts and publications)." -msgstr "" - -#: [account]delete_text_confirm +#: ../cache/locales.php:15 msgid "Are you sure that you want to delete it ?" msgstr "" -#: [account]gateway_title -msgid "Gateway" -msgstr "" - -#: [create]title [subscribe]title +#: ../cache/locales.php:16 ../cache/locales.php:411 msgid "Create a new account" msgstr "" -#: [create]notfound +#: ../cache/locales.php:17 msgid "No account creation form found on the server" msgstr "" -#: [create]server_on +#: ../cache/locales.php:18 ../cache/locales.php:172 msgid "on" msgstr "pada" -#: [create]successfull +#: ../cache/locales.php:19 msgid "Your acccount has been successfully registered" msgstr "" -#: [create]loading +#: ../cache/locales.php:20 msgid "Loading" msgstr "" -#: [error]not_acceptable +#: ../cache/locales.php:21 msgid "Not Acceptable" msgstr "" -#: [error]service_unavailable +#: ../cache/locales.php:22 msgid "The registration system of this server is currently unavailable" msgstr "" -#: [oob]about -msgid "This server use an external system for the registration, please click on the following URL." +#: ../cache/locales.php:23 +msgid "" +"This server use an external system for the registration, please click on the " +"following URL." msgstr "" -#: [adhoc]title +#: ../cache/locales.php:24 msgid "Actions" msgstr "Tindakan" -#: [db]legend [schema]database +#: ../cache/locales.php:25 ../cache/locales.php:82 msgid "Database" msgstr "" -#: [db]connect_error +#: ../cache/locales.php:26 msgid "Modl wasn't able to connect to the database" msgstr "" -#: [db]connect_success +#: ../cache/locales.php:27 msgid "Movim is connected to the database" msgstr "" -#: [db]update +#: ../cache/locales.php:28 msgid "The database need to be updated" msgstr "" -#: [db]up_to_date +#: ../cache/locales.php:29 msgid "Movim database is up to date" msgstr "" -#: [db]type +#: ../cache/locales.php:30 msgid "Database Type" msgstr "" -#: [db]username [credentials]username [input]username +#: ../cache/locales.php:31 ../cache/locales.php:50 ../cache/locales.php:540 msgid "Username" msgstr "" -#: [db]host +#: ../cache/locales.php:32 ../cache/locales.php:51 ../cache/locales.php:282 +#: ../cache/locales.php:541 +msgid "Password" +msgstr "Kata sandi" + +#: ../cache/locales.php:33 msgid "Host" msgstr "" -#: [db]port +#: ../cache/locales.php:34 msgid "Port" msgstr "" -#: [db]name -msgid "Database sName" +#: ../cache/locales.php:35 +msgid "Database Name" msgstr "" -#: [admin]general +#: ../cache/locales.php:36 msgid "General Settings" msgstr "" -#: [general]theme +#: ../cache/locales.php:37 msgid "Theme" msgstr "" -#: [general]language +#: ../cache/locales.php:38 msgid "Default language" msgstr "" -#: [general]log_verbosity +#: ../cache/locales.php:39 +msgid "Environment" +msgstr "" + +#: ../cache/locales.php:40 msgid "Log verbosity" msgstr "" -#: [general]timezone +#: ../cache/locales.php:41 msgid "Server Timezone" msgstr "" -#: [general]limit +#: ../cache/locales.php:42 msgid "User folder size limit (in bytes)" msgstr "" -#: [websocket]title +#: ../cache/locales.php:43 msgid "WebSocket Configuration" msgstr "" -#: [websocket]info +#: ../cache/locales.php:44 msgid "Enter here a valid WebSocket URI in the form" msgstr "" -#: [websocket]label +#: ../cache/locales.php:45 msgid "WebSocket URI" msgstr "" -#: [websocket]save_info -msgid "If you change the URI, please restart the daemon to reload the configuration" +#: ../cache/locales.php:46 +msgid "" +"If you change the URI, please restart the daemon to reload the configuration" msgstr "" -#: [websocket]publics +#: ../cache/locales.php:47 msgid "Public WebSockets" msgstr "" -#: [credentials]title +#: ../cache/locales.php:48 msgid "Administration Credential" msgstr "" -#: [credentials]info +#: ../cache/locales.php:49 msgid "Change the default credentials admin/password" msgstr "" -#: [credentials]re_password +#: ../cache/locales.php:52 msgid "Retype password" msgstr "" -#: [whitelist]title +#: ../cache/locales.php:53 msgid "Whitelist - XMPP Server" msgstr "" -#: [whitelist]info1 -msgid "If you want to specify a list of authorized XMPP servers on your Movim pod and forbid the connection on all the others please put their domain name here, with comma (ex: movim.eu,jabber.fr)" +#: ../cache/locales.php:54 +msgid "" +"If you want to specify a list of authorized XMPP servers on your Movim pod " +"and forbid the connection on all the others please put their domain name " +"here, with comma (ex: movim.eu,jabber.fr)" msgstr "" -#: [whitelist]info2 -msgid "Leave this field blank if you allow the access to all the XMPP accounts." +#: ../cache/locales.php:55 +msgid "" +"Leave this field blank if you allow the access to all the XMPP accounts." msgstr "" -#: [whitelist]label +#: ../cache/locales.php:56 msgid "List of whitelisted XMPP servers" msgstr "" -#: [information]title -#, fuzzy -msgctxt "[information]title" +#: ../cache/locales.php:57 ../cache/locales.php:61 msgid "Information Message" -msgstr "Informasi Klien" +msgstr "" -#: [information]description +#: ../cache/locales.php:58 msgid "Description" msgstr "" -#: [information]info1 +#: ../cache/locales.php:59 msgid "This message will be displayed on the login page" msgstr "" -#: [information]info2 -msgid "Leave this field blank if you dont want to show any message." +#: ../cache/locales.php:60 +msgid "Leave this field blank if you don't want to show any message." msgstr "" -#: [information]label -#, fuzzy -msgctxt "[information]label" -msgid "Information Message" -msgstr "Informasi Klien" - -#: [log]empty +#: ../cache/locales.php:62 msgid "Empty" msgstr "" -#: [log]syslog +#: ../cache/locales.php:63 msgid "Syslog" msgstr "" -#: [log]syslog_files +#: ../cache/locales.php:64 msgid "Syslog and files" msgstr "" -#: [rewrite]title +#: ../cache/locales.php:65 msgid "URL Rewriting" msgstr "" -#: [rewrite]info +#: ../cache/locales.php:66 msgid "The URL Rewriting can be enabled" msgstr "" -#: [admin]compatibility +#: ../cache/locales.php:67 msgid "General Overview" msgstr "" -#: [compatibility]info -msgid "Movim has found some issues or things that need to be fixed or improved" +#: ../cache/locales.php:68 +msgid "" +"Movim has found some issues or things that need to be fixed or improved" msgstr "" -#: [compatibility]php1 +#: ../cache/locales.php:69 +#, php-format msgid "Update your PHP-Version: %s" msgstr "" -#: [compatibility]php2 +#: ../cache/locales.php:70 msgid "Required: 5.3.0" msgstr "" -#: [compatibility]curl +#: ../cache/locales.php:71 msgid "Install the php5-curl library" msgstr "" -#: [compatibility]imagick +#: ../cache/locales.php:72 msgid "Install the php5-imagick library" msgstr "" -#: [compatibility]gd +#: ../cache/locales.php:73 msgid "Install the php5-gd library" msgstr "" -#: [compatibility]rights -msgid "Read and write rights for the webserver in Movims root directory" +#: ../cache/locales.php:74 +msgid "Read and write rights for the webserver in Movim's root directory" msgstr "" -#: [compatibility]rewrite +#: ../cache/locales.php:75 msgid "The URL Rewriting support is currently disabled" msgstr "" -#: [compatibility]db +#: ../cache/locales.php:76 msgid "The database need to be updated, go to the database panel to fix this" msgstr "" -#: [compatibility]websocket -msgid "WebSocket connection error, check if the Movim Daemon is running and is reachable" +#: ../cache/locales.php:77 +msgid "" +"WebSocket connection error, check if the Movim Daemon is running and is " +"reacheable" msgstr "" -#: [compatibility]xmpp_websocket -msgid "XMPP Websocket connection error, please check the validity of the URL given in the General Configuration" +#: ../cache/locales.php:78 +msgid "" +"XMPP Websocket connection error, please check the validity of the URL given " +"in the General Configuration" msgstr "" -#: [schema]browser +#: ../cache/locales.php:79 msgid "Browser" msgstr "" -#: [schema]movim +#: ../cache/locales.php:80 msgid "Movim Core" msgstr "" -#: [schema]daemon +#: ../cache/locales.php:81 msgid "Movim Daemon" msgstr "" -#: [schema]xmpp +#: ../cache/locales.php:84 msgid "XMPP" msgstr "" -#: [api]info -msgid "Here you can register your pod on the official %sMovim API%s and be listed on %sthe pods page%s." +#: ../cache/locales.php:86 +#, php-format +msgid "" +"Here you can register your pod on the official %sMovim API%s and be listed " +"on %sthe pods page%s." msgstr "" -#: [api]register +#: ../cache/locales.php:87 msgid "Your pod is not registered on the API" msgstr "" -#: [api]registered +#: ../cache/locales.php:88 msgid "Your pod is registered on the API" msgstr "" -#: [api]wait +#: ../cache/locales.php:89 msgid "Your pod is not yet validated" msgstr "" -#: [api]validated +#: ../cache/locales.php:90 msgid "Your pod is validated" msgstr "" -#: [api]unregister -msgid "You asked to be removed from the API, this request will be processed in a couple of hours" +#: ../cache/locales.php:91 +msgid "" +"You asked to be removed from the API, this request will be processed in a " +"couple of hours" msgstr "" -#: [api]conf_updated [config]updated +#: ../cache/locales.php:92 ../cache/locales.php:147 msgid "Configuration updated" msgstr "" -#: [avatar]file +#: ../cache/locales.php:93 msgid "File" msgstr "" -#: [avatar]use_it +#: ../cache/locales.php:94 msgid "Use it" msgstr "" -#: [avatar]webcam +#: ../cache/locales.php:95 msgid "Webcam" msgstr "Webcam" -#: [avatar]cheese +#: ../cache/locales.php:96 msgid "Cheese !" msgstr "Senyum !" -#: [avatar]snapshot +#: ../cache/locales.php:97 msgid "Take a webcam snapshot" msgstr "Ambil gambar dari webcam" -#: [avatar]updated +#: ../cache/locales.php:98 msgid "Avatar Updated" msgstr "" -#: [avatar]not_updated +#: ../cache/locales.php:99 msgid "Avatar Not Updated" msgstr "" -#: [blog]title [feed]title +#: ../cache/locales.php:100 ../cache/locales.php:415 +#, php-format msgid "%s's feed" msgstr "" -#: [blog]empty +#: ../cache/locales.php:101 msgid "This user has not posted anything right now" msgstr "" -#: [title]conferences +#: ../cache/locales.php:102 msgid "Conferences" msgstr "Konferensi" -#: [title]groups [group]empty_title [menu]groups [page]groups +#: ../cache/locales.php:103 ../cache/locales.php:193 ../cache/locales.php:217 +#: ../cache/locales.php:468 msgid "Groups" msgstr "Grup" -#: [chatroom]add +#: ../cache/locales.php:104 msgid "Add a new Chat Room" msgstr "" -#: [chatroom]id [chatrooms]id +#: ../cache/locales.php:105 ../cache/locales.php:368 msgid "Chat Room ID" msgstr "" -#: [chatroom]name -#, fuzzy -msgctxt "[chatroom]name" +#: ../cache/locales.php:106 ../cache/locales.php:116 ../cache/locales.php:156 +#: ../cache/locales.php:361 ../cache/locales.php:369 ../cache/locales.php:424 msgid "Name" msgstr "Nama" -#: [chatroom]nickname [general]nickname [chatrooms]nickname +#: ../cache/locales.php:107 ../cache/locales.php:157 ../cache/locales.php:371 +#: ../cache/locales.php:425 msgid "Nickname" msgstr "Panggilan" -#: [chatroom]autojoin_label +#: ../cache/locales.php:108 msgid "Do you want do join automaticaly this Chat Room ?" msgstr "" -#: [chatroom]bad_id [chatrooms]bad_id +#: ../cache/locales.php:109 ../cache/locales.php:372 msgid "Bad Chatroom ID" msgstr "ID Chatroom Salah" -#: [chatroom]empty_name [chatrooms]empty_name +#: ../cache/locales.php:110 ../cache/locales.php:373 msgid "Empty name" msgstr "Nama kosong" -#: [bookmarks]updated +#: ../cache/locales.php:111 ../cache/locales.php:380 msgid "Bookmarks updated" msgstr "Bookmark diperbarui" -#: [bookmarks]error -#, fuzzy -msgid "An error occured :" +#: ../cache/locales.php:112 +msgid "An error occured : " msgstr "Terjadi kesalahan : " -#: [bookmarks]configure +#: ../cache/locales.php:113 msgid "Configure" msgstr "" -#: [url]add +#: ../cache/locales.php:114 msgid "Add a new URL" msgstr "" -#: [url]url +#: ../cache/locales.php:115 msgid "URL" msgstr "" -#: [url]name -#, fuzzy -msgctxt "[url]name" -msgid "Name" -msgstr "Nama" - -#: [message]published +#: ../cache/locales.php:117 msgid "Message Published" msgstr "" -#: [message]encrypted +#: ../cache/locales.php:118 ../cache/locales.php:138 msgid "Encrypted message" msgstr "" -#: [message]composing [chats]composing +#: ../cache/locales.php:119 msgid "Composing..." msgstr "Menulis..." -#: [message]paused [chats]paused +#: ../cache/locales.php:120 msgid "Paused..." msgstr "" -#: [message]gone +#: ../cache/locales.php:121 msgid "Contact gone" msgstr "" -#: [chat]attention +#: ../cache/locales.php:122 +#, php-format msgid "%s needs your attention" msgstr "" -#: [chat]placeholder +#: ../cache/locales.php:123 msgid "Your message here..." msgstr "" -#: [chat]smileys +#: ../cache/locales.php:124 msgid "Smileys" msgstr "" -#: [chat]empty_title [button]chat +#: ../cache/locales.php:125 ../cache/locales.php:139 msgid "Chat" msgstr "Obrolan" -#: [chat]empty_text +#: ../cache/locales.php:126 msgid "Discuss with your contacts" msgstr "" -#: [chat]frequent [chats]frequent -msgid "Frequent contacts" -msgstr "" - -#: [chatroom]members +#: ../cache/locales.php:127 msgid "Members" msgstr "" -#: [chatroom]connected [chatrooms]connected +#: ../cache/locales.php:128 ../cache/locales.php:376 msgid "Connected to the chatroom" msgstr "" -#: [chatroom]disconnected [chatrooms]disconnected +#: ../cache/locales.php:129 ../cache/locales.php:377 msgid "Disconnected from the chatroom" msgstr "" -#: [chatroom]config [group]configuration [page]configuration +#: ../cache/locales.php:130 ../cache/locales.php:200 ../cache/locales.php:469 msgid "Configuration" msgstr "Konfigurasi" -#: [chatroom]config_saved +#: ../cache/locales.php:131 msgid "Configuration saved" msgstr "" -#: [chatroom]subject +#: ../cache/locales.php:132 msgid "Subject" msgstr "" -#: [chatroom]subject_changed +#: ../cache/locales.php:133 msgid "Subject changed" msgstr "" -#: [chats]empty_title -msgid "No chats yet..." +#: ../cache/locales.php:134 +msgid "Open a new conversation by clicking on the plus button bellow" msgstr "" -#: [chats]empty -msgid "Open a new conversation by clicking on the plus button bellow or visit the Contacts page." -msgstr "" - -#: [chats]add +#: ../cache/locales.php:135 msgid "Chat with a contact" msgstr "" -#: [chats]more +#: ../cache/locales.php:136 +msgid "Frequent contacts" +msgstr "" + +#: ../cache/locales.php:137 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 "" - -#: [config]general +#: ../cache/locales.php:140 msgid "General" msgstr "" -#: [config]language +#: ../cache/locales.php:141 msgid "Language" msgstr "" -#: [config]roster +#: ../cache/locales.php:142 msgid "Roster display" msgstr "" -#: [config]roster_show +#: ../cache/locales.php:143 msgid "Show the offline contacts" msgstr "" -#: [config]roster_hide +#: ../cache/locales.php:144 msgid "Hide the offline contacts" msgstr "" -#: [config]appearence +#: ../cache/locales.php:145 msgid "Appearence" msgstr "" -#: [config]info -msgid "This configuration is shared wherever you are connected" +#: ../cache/locales.php:146 +msgid "This configuration is shared wherever you are connected !" msgstr "" -#: [notifications]message +#: ../cache/locales.php:148 msgid "Notify on incoming message" msgstr "" -#: [notifications]desktop +#: ../cache/locales.php:149 msgid "Use desktop notifications" msgstr "" -#: [general]legend [general]general_title +#: ../cache/locales.php:150 +msgid "Data" +msgstr "" + +#: ../cache/locales.php:151 +msgid "Cache" +msgstr "" + +#: ../cache/locales.php:152 ../cache/locales.php:218 ../cache/locales.php:466 +msgid "Contacts" +msgstr "" + +#: ../cache/locales.php:153 ../cache/locales.php:480 +msgid "Posts" +msgstr "" + +#: ../cache/locales.php:154 +msgid "Messages" +msgstr "" + +#: ../cache/locales.php:155 ../cache/locales.php:423 msgid "General Informations" msgstr "Informasi Umum" -#: [general]name [public_groups]name [chatrooms]name -msgid "Name" -msgstr "Nama" - -#: [general]date_of_birth +#: ../cache/locales.php:158 ../cache/locales.php:427 msgid "Date of Birth" msgstr "Tanggal Lahir" -#: [general]gender +#: ../cache/locales.php:159 ../cache/locales.php:428 msgid "Gender" msgstr "Jenis kelamin" -#: [general]marital +#: ../cache/locales.php:160 ../cache/locales.php:429 msgid "Marital Status" msgstr "Status Pernikahan" -#: [general]email +#: ../cache/locales.php:161 ../cache/locales.php:426 msgid "Email" msgstr "Email" -#: [general]website +#: ../cache/locales.php:162 ../cache/locales.php:430 msgid "Website" msgstr "Situs web" -#: [general]about +#: ../cache/locales.php:163 ../cache/locales.php:431 msgid "About Me" msgstr "Tentang Saya" -#: [general]accounts +#: ../cache/locales.php:164 msgid "Other Accounts" msgstr "" -#: [general]tune +#: ../cache/locales.php:165 msgid "Is Listening" msgstr "" -#: [position]legend [position]position_title +#: ../cache/locales.php:166 ../cache/locales.php:432 msgid "Geographic Position" msgstr "Posisi Geografis" -#: [position]locality +#: ../cache/locales.php:167 ../cache/locales.php:433 msgid "Locality" msgstr "Lokalitas" -#: [position]country +#: ../cache/locales.php:168 ../cache/locales.php:434 msgid "Country" msgstr "Negara" -#: [mood]title +#: ../cache/locales.php:169 msgid "Mood" msgstr "Mood" -#: [mood]im +#: ../cache/locales.php:170 msgid "I'm " msgstr "Aku " -#: [listen]title +#: ../cache/locales.php:171 msgid "Listening" msgstr "Mendengarkan" -#: [last]title +#: ../cache/locales.php:173 msgid "Last seen" msgstr "Terakhir terlihat" -#: [client]title +#: ../cache/locales.php:174 msgid "Client Informations" msgstr "Informasi Klien" -#: [explore]last_registered +#: ../cache/locales.php:175 msgid "Last registered" msgstr "Terdaftar terakhir" -#: [explore]explore +#: ../cache/locales.php:176 msgid "Find some new friends" msgstr "" -#: [edit]title [button]edit +#: ../cache/locales.php:177 ../cache/locales.php:533 msgid "Edit" msgstr "" -#: [edit]alias +#: ../cache/locales.php:178 msgid "Alias" msgstr "Alias" -#: [edit]group +#: ../cache/locales.php:179 msgid "Group" msgstr "Grup" -#: [edit]updated [roster]updated +#: ../cache/locales.php:180 ../cache/locales.php:400 msgid "Contact updated" msgstr "" -#: [delete]title +#: ../cache/locales.php:181 msgid "Are you sure?" msgstr "" -#: [delete]text -msgid "You are going to delete one of your contacts, please confirm your action" +#: ../cache/locales.php:182 +msgid "" +"You are going to delete one of your contacts, please confirm your action" msgstr "" -#: [age]years +#: ../cache/locales.php:183 +#, php-format msgid "%s years" msgstr "" -#: [blog]last +#: ../cache/locales.php:184 msgid "Last public post" msgstr "" -#: [subscription]to -#, fuzzy -msgid "You can see this contact status" -msgstr "Hapus kontak ini" - -#: [subscription]to_button -msgid "Share my status" -msgstr "" - -#: [subscription]to_text -msgid "But this contact cannot see yours" -msgstr "" - -#: [subscription]from -msgid "You are not subscribed to this contact" -msgstr "" - -#: [subscription]from_button -msgid "Ask to subscribe" -msgstr "" - -#: [subscription]from_text -msgid "But this contact can still see if you are online" -msgstr "" - -#: [subscription]nil -#, fuzzy -msgid "No subscriptions" -msgstr "Dapatkan langganan" - -#: [subscription]nil_button -msgid "Invite" -msgstr "" - -#: [subscription]nil_text -msgid "This contact is in your contact list but there is no subscriptions between the two accounts" -msgstr "" - -#: [group]subscribe +#: ../cache/locales.php:185 msgid "Subscribe" msgstr "" -#: [group]subscribed +#: ../cache/locales.php:186 msgid "Subscribed" msgstr "" -#: [group]unsubscribe +#: ../cache/locales.php:187 msgid "Unsubscribe" msgstr "" -#: [group]unsubscribe_text +#: ../cache/locales.php:188 msgid "You are going to unsubscribe from this Group" msgstr "" -#: [group]unsubscribed +#: ../cache/locales.php:189 msgid "Unsubscribed" msgstr "" -#: [group]share_label +#: ../cache/locales.php:190 msgid "Make your membership to this group public to your friends" msgstr "" -#: [group]label_label +#: ../cache/locales.php:191 msgid "Give a label for this group" msgstr "" -#: [group]sure +#: ../cache/locales.php:192 msgid "Are you sure ?" msgstr "" -#: [group]empty_text +#: ../cache/locales.php:194 msgid "Discover, follow and share" msgstr "" -#: [group]empty +#: ../cache/locales.php:195 msgid "Something bad happened to this group" msgstr "" -#: [group]config_saved +#: ../cache/locales.php:196 msgid "Group configuration saved" msgstr "Konfigurasi grup disimpan" -#: [group]delete_title +#: ../cache/locales.php:197 msgid "Delete the group" msgstr "" -#: [group]delete_text -msgid "You are going to delete the following group. Please confirm your action." +#: ../cache/locales.php:198 +msgid "" +"You are going to delete the following group. Please confirm your action." msgstr "" -#: [group]delete_clean_text -msgid "It seems that this group doesn't exists anymore. Do you want to remove it from your subscriptions?" +#: ../cache/locales.php:199 +msgid "" +"It seems that this group doesn't exists anymore. Do you want to remove it " +"from your subscriptions?" msgstr "" -#: [group]counter -msgid "%s groups on this server" -msgstr "" - -#: [group]subscriptions [statistics]subscriptions +#: ../cache/locales.php:201 ../cache/locales.php:408 msgid "Subscriptions" msgstr "" -#: [group]servers -#, fuzzy -msgid "Groups servers" -msgstr "Grup" - -#: [group]search_server -msgid "Search for a new server" -msgstr "" - -#: [group]help_info1 -msgid "Groups are the perfect way to share posts about topics that you like with all the other Movim's users." -msgstr "" - -#: [group]help_info2 -msgid "Choose a server and a Group and subscribe to it using the %s button in the header. You can also create a new one using the %s button." -msgstr "" - -#: [group]help_info3 -msgid "Done? You can now publish a new post in the Group by using the %s button." -msgstr "" - -#: [group]help_info4 -msgid "You will find a list of all your subscribed Groups in My Subscriptions and receive instantly all the new incoming posts in the %sNews%s page." -msgstr "" - -#: [groups]empty_title +#: ../cache/locales.php:202 ../cache/locales.php:290 msgid "Hello" msgstr "" -#: [groups]contact_post [hello]contact_post [menu]contact_post +#: ../cache/locales.php:203 ../cache/locales.php:225 ../cache/locales.php:291 msgid "Contact post" msgstr "" -#: [groups]empty_text1 -msgid "You don't have any subscriptions yet, select a group server above to start exploring." +#: ../cache/locales.php:204 +msgid "" +"You don't have any subscriptions yet, select a group server above to start " +"exploring." msgstr "" -#: [groups]empty_text2 +#: ../cache/locales.php:205 msgid "Subscribe to your favorite feeds by bookmarking them." msgstr "" -#: [groups]subscriptions +#: ../cache/locales.php:206 msgid "My Subscriptions" msgstr "" -#: [groups]add +#: ../cache/locales.php:207 msgid "Create a new Group" msgstr "" -#: [groups]name +#: ../cache/locales.php:208 msgid "Group name" msgstr "" -#: [groups]name_example +#: ../cache/locales.php:209 msgid "My Little Pony - Fan Club" msgstr "Pony Kecilku - Fan Klub" -#: [groups]created +#: ../cache/locales.php:210 msgid "Group created successfully" msgstr "" -#: [groups]deleted +#: ../cache/locales.php:211 msgid "Group deleted successfully" msgstr "" -#: [groups]name_error +#: ../cache/locales.php:212 msgid "Please provide a valid group name (4 characters minimum)" msgstr "" -#: [groups]no_creation +#: ../cache/locales.php:213 msgid "You cannot create a new Group on this server" msgstr "" -#: [groups]sub +#: ../cache/locales.php:214 +#, php-format msgid "%s subscribers" msgstr "" -#: [groups]num +#: ../cache/locales.php:215 +#, php-format msgid "%s posts" msgstr "" -#: [groups]disco_error -msgid "This server doesn't exists" -msgstr "" - -#: [menu]all +#: ../cache/locales.php:216 msgid "All" msgstr "" -#: [menu]refresh +#: ../cache/locales.php:219 msgid "Refresh all the streams" msgstr "" -#: [roster]search -#, fuzzy -msgid "Search in your contacts" -msgstr "Dibagikan ke satu kontak" - -#: [hello]active_contacts -#, fuzzy -msgid "Active contacts" -msgstr "Tindakan" - -#: [hello]chat -msgid "Go on the Chat page" -msgstr "" - -#: [hello]news [page]news -msgid "News" -msgstr "Berita" - -#: [hello]news_page -msgid "Read all theses articles on the News page" -msgstr "" - -#: [hello]blog_title -msgid "Visit your public blog" -msgstr "" - -#: [hello]blog_text -msgid "See your public posts and share them with all your contacts" -msgstr "" - -#: [hello]share_title -msgid "Universal share button" -msgstr "" - -#: [hello]share_text -msgid "Bookmark or drag and drop the following button in your toolbar and use it on all the pages you want to share on Movim" -msgstr "" - -#: [hello]share_button -msgid "Share on Movim" -msgstr "" - -#: [help]faq -msgid "Frequently Asked Questions" -msgstr "" - -#: [banner]title -msgid "What do the little banners refer to ?" -msgstr "Spanduk kecil tersebut mengacu kepada apa?" - -#: [banner]info1 -msgid "Thanks to these five little banners, you can quickly identitfy the level of confdentiality applied to the information you provide." -msgstr "" - -#: [banner]white -msgid "White, only you can see the information" -msgstr "" - -#: [banner]green -msgid "Green, you have chosen some contacts who can see your information" -msgstr "" - -#: [banner]orange -msgid "Orange, all your contact list can see your information" -msgstr "" - -#: [banner]red -msgid "Red, everybody in the XMPP network can see your information" -msgstr "" - -#: [banner]black -msgid "Black, the whole Internet can see your information" -msgstr "" - -#: [wiki]question -msgid "Looking for some documentation ?" -msgstr "" - -#: [wiki]button -msgid "Read the Wiki" -msgstr "" - -#: [ml]question -msgid "Talk with us by email ?" -msgstr "" - -#: [ml]button -msgid "Join the Mailing List" -msgstr "" - -#: [chatroom]question -msgid "Chat with the team ?" -msgstr "" - -#: [chatroom]button -msgid "Join the Chatroom" -msgstr "" - -#: [init]location -msgid "Location node created" -msgstr "" - -#: [init]bookmark -msgid "Bookmark node created" -msgstr "" - -#: [init]vcard4 -msgid "Profile node created" -msgstr "" - -#: [init]avatar -msgid "Avatar node created" -msgstr "" - -#: [init]subscriptions -msgid "Subscriptions node created" -msgstr "" - -#: [init]microblog -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 "" - -#: [error]jid -msgid "Invalid JID" -msgstr "" - -#: [error]empty_challenge -msgid "Empty Challenge from the server" -msgstr "" - -#: [error]dns -msgid "XMPP Domain error, your account is not a correct Jabber ID" -msgstr "" - -#: [error]data_missings -msgid "Some data are missing !" -msgstr "" - -#: [error]wrong_password -msgid "Wrong password" -msgstr "" - -#: [error]internal -msgid "Internal server error" -msgstr "" - -#: [error]session -msgid "Session error" -msgstr "" - -#: [error]account_created -msgid "Account successfully created" -msgstr "" - -#: [error]xmpp_unauthorized -msgctxt "[error]xmpp_unauthorized" -msgid "Your XMPP server is unauthorized" -msgstr "" - -#: [error]mec_error -msgid "The server takes too much time to respond" -msgstr "" - -#: [error]too_old -msgid "Your web browser is too old to use with Movim." -msgstr "Browser anda terlalu lawas untuk di gunakan dengan Movim." - -#: [error]websocket -msgid "Movim cannot talk with the server, please try again later (Websocket connection error)" -msgstr "" - -#: [error]impossible -msgid "Impossible login" -msgstr "" - -#: [error]title -msgid "Oops!" -msgstr "" - -#: [error]default [visio]unknown_error -msgid "Unknown error" -msgstr "" - -#: [error]login_format -msgid "Invalid username format" -msgstr "" - -#: [error]password_format -msgid "Invalid password format" -msgstr "" - -#: [error]unauthorized -msgctxt "[error]unauthorized" -msgid "Your XMPP server is unauthorized" -msgstr "" - -#: [error]conflict -msgid "A Movim session is already open on an other device" -msgstr "" - -#: [error]wrong_account -msgid "Movim failed to authenticate. You entered wrong data" -msgstr "" - -#: [error]mechanism -msgid "Authentication mechanism not supported by Movim" -msgstr "" - -#: [error]fail_auth -msgid "The XMPP authentification failed" -msgstr "" - -#: [account]title [accounts]accounts_title -msgid "Accounts" -msgstr "" - -#: [form]username -msgid "My address" -msgstr "Alamat saya" - -#: [form]create_one -msgid "Create one !" -msgstr "" - -#: [form]another_account -msgid "Another account" -msgstr "" - -#: [form]no_account -msgid "No account yet ?" -msgstr "" - -#: [form]whitelist.info -msgid "You can login with accounts from theses servers" -msgstr "" - -#: [form]connected -msgid "Connected" -msgstr "" - -#: [form]population -msgid "Population" -msgstr "" - -#: [menu]empty_title -msgid "No news yet..." -msgstr "" - -#: [menu]empty -msgid "Welcome on your news feed, here you will see all the posts published by your contacts and in the groups you have subscribed." -msgstr "" - -#: [menu]refresh -msgid "Refreshing all the streams" -msgstr "" - -#: [menu]public -msgid "This post is public" -msgstr "" - -#: [affiliations]title -msgid "Manage your members" -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" -msgstr "" - -#: [notifs]title -msgid "Pending Invitations" -msgstr "" - -#: [notifs]wants_to_talk -msgid "%s wants to talk with you" -msgstr "" - -#: [notifs]manage -msgid "Manage" -msgstr "Kelola" - -#: [post]news_feed -msgid "News Feed" -msgstr "" - -#: [post]placeholder -msgid "Discover and register to the groups you are interested in" -msgstr "" - -#: [post]preview [page]preview -msgid "Preview" -msgstr "" - -#: [post]help [page]help -msgid "Help" -msgstr "Bantuan" - -#: [post]help_more -msgid "More help" -msgstr "" - -#: [post]help_manual -msgid "Markdown syntax manual" -msgstr "" - -#: [post]title -msgid "Title" -msgstr "" - -#: [post]content -msgid "Content" -msgstr "" - -#: [post]link -msgid "Link" -msgstr "Pranala" - -#: [post]tags -msgid "Tags" -msgstr "" - -#: [post]valid_url [publish]valid_url -msgid "Please enter a valid url" -msgstr "" - -#: [post]no_content_preview [publish]no_content_preview -msgid "No content to preview" -msgstr "" - -#: [post]no_content [publish]no_content [post]empty -msgid "No content" -msgstr "" - -#: [post]published -msgid "Post published" -msgstr "" - -#: [post]deleted -msgid "Post deleted" -msgstr "" - -#: [post]gallery -msgid "This picture will be added to your gallery" -msgstr "" - -#: [post]hot -msgid "What's Hot" -msgstr "" - -#: [post]hot_text -msgid "Posts recently published in Groups that you are not subscribed (yet)" -msgstr "" - -#: [post]new [publish]new -msgid "New post" -msgstr "" - -#: [post]embed_tip -msgid "You can also use services like Imgur or Flickr to host your picture and paste the link here." -msgstr "" - -#: [post]repost -msgid "This is a re-post from %s" -msgstr "" - -#: [post]repost_profile -msgid "See %s profile" -msgstr "" - -#: [post]public -#, fuzzy -msgid "Publish this post publicly?" -msgstr "Apakah ini profil publik ?" - -#: [post]blog_add -msgid "Post published on your blog" -msgstr "" - -#: [post]blog_remove -msgid "Post removed from your blog" -msgstr "" - -#: [post]delete_title [post]delete -msgid "Delete this post" -msgstr "" - -#: [post]delete_text -msgid "You are going to delete this post, please confirm your action" -msgstr "" - -#: [post]comments_disabled -msgid "Comments disabled" -msgstr "" - -#: [post]comment_published -msgid "Comment published" -msgstr "" - -#: [status]disconnect -msgid "Disconnect" -msgstr "" - -#: [status]here -msgid "Your status here !" -msgstr "" - -#: [status]updated -msgid "Status updated" -msgstr "" - -#: [status]status -msgid "Status" -msgstr "" - -#: [status]presence -msgid "Presence" -msgstr "" - -#: [status]online -msgid "Online with Movim" -msgstr "" - -#: [publish]title -msgid "Publish" -msgstr "" - -#: [publish]attach -msgid "Add a file or a picture to your post" -msgstr "" - -#: [publish]no_publication -msgid "You cannot publish a post on this Group" -msgstr "" - -#: [publish]form_filled -msgid "Some fields have been filled in. Do you still want to go back and loose their content?" -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 "" - -#: [rooms]empty_text1 -msgid "You don't have any chatroom yet." -msgstr "" - -#: [rooms]empty_text2 -msgid "Add one by clicking on the add button in the header." -msgstr "" - -#: [chatrooms]title -msgid "Chatrooms" -msgstr "" - -#: [chatrooms]name_placeholder -msgid "My Favorite Room" -msgstr "" - -#: [chatrooms]users -msgid "Users in the room" -msgstr "" - -#: [chatrooms]bad_nickname -msgid "Please enter a correct nickname (2 to 40 characters)" -msgstr "" - -#: [room]anonymous_title -msgid "Public chatroom" -msgstr "" - -#: [room]no_room -msgid "Please provide a room address" -msgstr "" - -#: [room]anonymous_text1 -msgid "You are currently logued as an anonymous user." -msgstr "" - -#: [room]anonymous_text2 -msgid "You can join using your own account or create one on the login page by loging out using the cross in the top-right corner." -msgstr "" - -#: [room]anonymous_login -msgid "Login on %s" -msgstr "" - -#: [room]nick -msgid "Your nickname" -msgstr "" - -#: [roster]ungrouped -msgid "Ungrouped" -msgstr "" - -#: [roster]show_disconnected -msgid "Show disconnected contacts" -msgstr "" - -#: [roster]hide_disconnected -msgid "Hide disconnected contacts" -msgstr "" - -#: [roster]show_group -msgid "Show group %s" -msgstr "" - -#: [roster]hide_group -msgid "Hide group %s" -msgstr "" - -#: [roster]jid_error -msgid "Please enter a valid Jabber ID" -msgstr "" - -#: [roster]no_contacts_title -msgid "No contacts ?" -msgstr "" - -#: [roster]no_contacts_text -msgid "You can add one using the + button bellow" -msgstr "" - -#: [roster]show_hide -msgid "Show/Hide" -msgstr "" - -#: [roster]add_contact_info1 -msgid "Enter the Jabber ID of your contact." -msgstr "" - -#: [roster]add_contact_info2 -msgid "Press enter to validate." -msgstr "" - -#: [roster]jid -msgid "JID" -msgstr "" - -#: [roster]results -msgid "Results" -msgstr "" - -#: [roster]added -msgid "Contact added" -msgstr "" - -#: [roster]deleted -msgid "Contact deleted" -msgstr "" - -#: [roster]search +#: ../cache/locales.php:220 ../cache/locales.php:402 msgid "Search" msgstr "Cari" -#: [share]error +#: ../cache/locales.php:221 +msgid "Go on the Chat page" +msgstr "" + +#: ../cache/locales.php:222 +msgid "Read all theses articles on the News page" +msgstr "" + +#: ../cache/locales.php:223 +msgid "Visit your public blog" +msgstr "" + +#: ../cache/locales.php:224 +msgid "See your public posts and share them with all your contacts" +msgstr "" + +#: ../cache/locales.php:226 +msgid "Universal share button" +msgstr "" + +#: ../cache/locales.php:227 +msgid "" +"Bookmark or drag and drop the following button in your toolbar and use it on " +"all the pages you want to share on Movim" +msgstr "" + +#: ../cache/locales.php:228 +msgid "Share on Movim" +msgstr "" + +#: ../cache/locales.php:229 +msgid "Frequently Asked Questions" +msgstr "" + +#: ../cache/locales.php:230 +msgid "What do the little banners refer to ?" +msgstr "Spanduk kecil tersebut mengacu kepada apa?" + +#: ../cache/locales.php:231 +msgid "" +"Thanks to these five little banners, you can quickly identitfy the level of " +"confdentiality applied to the information you provide." +msgstr "" + +#: ../cache/locales.php:232 +msgid "White, only you can see the information" +msgstr "" + +#: ../cache/locales.php:233 +msgid "Green, you have chosen some contacts who can see your information" +msgstr "" + +#: ../cache/locales.php:234 +msgid "Orange, all your contact list can see your information" +msgstr "" + +#: ../cache/locales.php:235 +msgid "Red, everybody in the XMPP network can see your information" +msgstr "" + +#: ../cache/locales.php:236 +msgid "Black, the whole Internet can see your information" +msgstr "" + +#: ../cache/locales.php:237 +msgid "Looking for some documentation ?" +msgstr "" + +#: ../cache/locales.php:238 +msgid "Read the Wiki" +msgstr "" + +#: ../cache/locales.php:239 +msgid "Talk with us by email ?" +msgstr "" + +#: ../cache/locales.php:240 +msgid "Join the Mailing List" +msgstr "" + +#: ../cache/locales.php:241 +msgid "Chat with the team ?" +msgstr "" + +#: ../cache/locales.php:242 +msgid "Join the Chatroom" +msgstr "" + +#: ../cache/locales.php:243 +msgid "Location node created" +msgstr "" + +#: ../cache/locales.php:244 +msgid "Bookmark node created" +msgstr "" + +#: ../cache/locales.php:245 +msgid "Profile node created" +msgstr "" + +#: ../cache/locales.php:246 +msgid "Avatar node created" +msgstr "" + +#: ../cache/locales.php:247 +msgid "Subscriptions node created" +msgstr "" + +#: ../cache/locales.php:248 +msgid "Microblog node created" +msgstr "" + +#: ../cache/locales.php:249 +msgid "Location" +msgstr "Lokasi" + +#: ../cache/locales.php:250 +msgid "Wrong position" +msgstr "" + +#: ../cache/locales.php:251 +msgid "Location updated" +msgstr "" + +#: ../cache/locales.php:252 +msgid "Update my position" +msgstr "" + +#: ../cache/locales.php:253 +msgid "Wrong username" +msgstr "" + +#: ../cache/locales.php:254 +msgid "Invalid JID" +msgstr "" + +#: ../cache/locales.php:255 +msgid "Empty Challenge from the server" +msgstr "" + +#: ../cache/locales.php:256 +msgid "XMPP Domain error, your account is not a correct Jabber ID" +msgstr "" + +#: ../cache/locales.php:257 +msgid "Some data are missing !" +msgstr "" + +#: ../cache/locales.php:258 +msgid "Wrong password" +msgstr "" + +#: ../cache/locales.php:259 +msgid "Internal server error" +msgstr "" + +#: ../cache/locales.php:260 +msgid "Session error" +msgstr "" + +#: ../cache/locales.php:261 +msgid "Account successfully created" +msgstr "" + +#: ../cache/locales.php:262 ../cache/locales.php:271 +msgid "Your XMPP server is unauthorized" +msgstr "" + +#: ../cache/locales.php:263 +msgid "The server takes too much time to respond" +msgstr "" + +#: ../cache/locales.php:264 +msgid "Your web browser is too old to use with Movim." +msgstr "Browser anda terlalu lawas untuk di gunakan dengan Movim." + +#: ../cache/locales.php:265 +msgid "" +"Movim cannot talk with the server, please try again later (Websocket " +"connection error)" +msgstr "" + +#: ../cache/locales.php:266 +msgid "Impossible login" +msgstr "" + +#: ../cache/locales.php:267 +msgid "Oops!" +msgstr "" + +#: ../cache/locales.php:268 ../cache/locales.php:449 ../cache/locales.php:455 +msgid "Unknown error" +msgstr "" + +#: ../cache/locales.php:269 +msgid "Invalid username format" +msgstr "" + +#: ../cache/locales.php:270 +msgid "Invalid password format" +msgstr "" + +#: ../cache/locales.php:272 +msgid "A Movim session is already open on an other device" +msgstr "" + +#: ../cache/locales.php:273 +msgid "Movim failed to authenticate. You entered wrong data" +msgstr "" + +#: ../cache/locales.php:274 +msgid "Authentication mechanism not supported by Movim" +msgstr "" + +#: ../cache/locales.php:275 +msgid "The XMPP authentification failed" +msgstr "" + +#: ../cache/locales.php:276 +#, php-format +msgid "" +"You can login with Facebook (chat only) using %syour.id@chat.facebook.com%s " +"and your password" +msgstr "" + +#: ../cache/locales.php:277 +#, php-format +msgid "%sGmail accounts are also compatible%s but are not fully supported" +msgstr "" + +#: ../cache/locales.php:278 +msgid "You can login using your favorite Jabber account" +msgstr "" + +#: ../cache/locales.php:279 +msgid "or with our demonstration account" +msgstr "" + +#: ../cache/locales.php:280 ../cache/locales.php:435 +msgid "Accounts" +msgstr "" + +#: ../cache/locales.php:281 +msgid "My address" +msgstr "Alamat saya" + +#: ../cache/locales.php:283 +msgid "Create one !" +msgstr "" + +#: ../cache/locales.php:284 +msgid "No account yet ?" +msgstr "" + +#: ../cache/locales.php:285 +msgid "Another account" +msgstr "" + +#: ../cache/locales.php:286 +msgid "You can login with accounts from theses servers" +msgstr "" + +#: ../cache/locales.php:287 +msgid "Connected" +msgstr "" + +#: ../cache/locales.php:288 +msgid "Population" +msgstr "" + +#: ../cache/locales.php:289 +msgid "Bad nickname (between 4 and 40 characters)" +msgstr "" + +#: ../cache/locales.php:292 +msgid "" +"Welcome on your news feed, here you will see all the posts published in the " +"groups you have subscribed." +msgstr "" + +#: ../cache/locales.php:293 +msgid "Refreshing all the streams" +msgstr "" + +#: ../cache/locales.php:294 +msgid "This post is public" +msgstr "" + +#: ../cache/locales.php:295 +msgid "Manage your members" +msgstr "" + +#: ../cache/locales.php:296 +msgid "Get the members" +msgstr "" + +#: ../cache/locales.php:297 +msgid "Affiliations saved" +msgstr "" + +#: ../cache/locales.php:298 +msgid "Manage your subscriptions" +msgstr "Atur langganan mu" + +#: ../cache/locales.php:299 +msgid "Manage the subscriptions" +msgstr "Atur langganan" + +#: ../cache/locales.php:300 +msgid "Get the subscriptions" +msgstr "Dapatkan langganan" + +#: ../cache/locales.php:301 +msgid "Subscriptions saved" +msgstr "" + +#: ../cache/locales.php:302 +msgid "Pending Invitations" +msgstr "" + +#: ../cache/locales.php:303 +#, php-format +msgid "%s wants to talk with you" +msgstr "" + +#: ../cache/locales.php:304 +msgid "Manage" +msgstr "Kelola" + +#: ../cache/locales.php:305 ../cache/locales.php:338 +msgid "News Feed" +msgstr "" + +#: ../cache/locales.php:306 ../cache/locales.php:339 +msgid "Discover and register to the groups you are interested in" +msgstr "" + +#: ../cache/locales.php:307 ../cache/locales.php:340 ../cache/locales.php:482 +msgid "Preview" +msgstr "" + +#: ../cache/locales.php:308 ../cache/locales.php:341 ../cache/locales.php:478 +msgid "Help" +msgstr "Bantuan" + +#: ../cache/locales.php:309 ../cache/locales.php:342 +msgid "More help" +msgstr "" + +#: ../cache/locales.php:310 ../cache/locales.php:343 +msgid "Markdown syntax manual" +msgstr "" + +#: ../cache/locales.php:311 ../cache/locales.php:344 ../cache/locales.php:681 +msgid "Title" +msgstr "" + +#: ../cache/locales.php:312 ../cache/locales.php:345 +msgid "Content" +msgstr "" + +#: ../cache/locales.php:313 ../cache/locales.php:346 +msgid "Link" +msgstr "Pranala" + +#: ../cache/locales.php:314 ../cache/locales.php:347 +msgid "Tags" +msgstr "" + +#: ../cache/locales.php:315 ../cache/locales.php:348 +msgid "Please enter a valid url" +msgstr "" + +#: ../cache/locales.php:316 ../cache/locales.php:349 +msgid "No content to preview" +msgstr "" + +#: ../cache/locales.php:317 ../cache/locales.php:350 ../cache/locales.php:687 +msgid "No content" +msgstr "" + +#: ../cache/locales.php:318 ../cache/locales.php:351 +msgid "Post published" +msgstr "" + +#: ../cache/locales.php:319 ../cache/locales.php:352 +msgid "Post deleted" +msgstr "" + +#: ../cache/locales.php:320 ../cache/locales.php:353 +msgid "This picture will be added to your gallery" +msgstr "" + +#: ../cache/locales.php:321 ../cache/locales.php:354 +msgid "What's Hot" +msgstr "" + +#: ../cache/locales.php:322 ../cache/locales.php:355 +msgid "New post" +msgstr "" + +#: ../cache/locales.php:323 ../cache/locales.php:357 +msgid "" +"You can also use services like Imgur or Flickr to host your picture and " +"paste the link here." +msgstr "" + +#: ../cache/locales.php:324 +#, php-format +msgid "This is a re-post from %s" +msgstr "" + +#: ../cache/locales.php:325 +#, php-format +msgid "See %s profile" +msgstr "" + +#: ../cache/locales.php:326 +msgid "Publish this post on your public feed?" +msgstr "" + +#: ../cache/locales.php:327 +msgid "Post published on your blog" +msgstr "" + +#: ../cache/locales.php:328 +msgid "Post removed from your blog" +msgstr "" + +#: ../cache/locales.php:329 ../cache/locales.php:701 +msgid "Delete this post" +msgstr "" + +#: ../cache/locales.php:330 +msgid "You are going to delete this post, please confirm your action" +msgstr "" + +#: ../cache/locales.php:331 +msgid "Comments disabled" +msgstr "" + +#: ../cache/locales.php:332 +msgid "Comment published" +msgstr "" + +#: ../cache/locales.php:333 +msgid "Disconnect" +msgstr "" + +#: ../cache/locales.php:334 +msgid "Your status here !" +msgstr "" + +#: ../cache/locales.php:335 +msgid "Status updated" +msgstr "" + +#: ../cache/locales.php:336 +msgid "Status" +msgstr "" + +#: ../cache/locales.php:337 +msgid "Presence" +msgstr "" + +#: ../cache/locales.php:356 +msgid "Publish" +msgstr "" + +#: ../cache/locales.php:358 +msgid "You cannot publish a post on this Group" +msgstr "" + +#: ../cache/locales.php:359 +msgid "" +"Some fields have been filled in. Do you still want to go back and loose " +"their content?" +msgstr "" + +#: ../cache/locales.php:360 +msgid "Shared" +msgstr "" + +#: ../cache/locales.php:362 +#, php-format +msgid "%s has been added to your public groups" +msgstr "" + +#: ../cache/locales.php:363 +#, php-format +msgid "%s has been removed from your public groups" +msgstr "" + +#: ../cache/locales.php:364 +msgid "Add a chatroom" +msgstr "" + +#: ../cache/locales.php:365 +msgid "You don't have any chatroom yet." +msgstr "" + +#: ../cache/locales.php:366 +msgid "Add one by clicking on the add button in the header." +msgstr "" + +#: ../cache/locales.php:367 +msgid "Chatrooms" +msgstr "" + +#: ../cache/locales.php:370 +msgid "My Favorite Room" +msgstr "" + +#: ../cache/locales.php:374 +msgid "Remove a chatroom" +msgstr "" + +#: ../cache/locales.php:375 +msgid "" +"You are going to remove the following chatroom. Please confirm your action." +msgstr "" + +#: ../cache/locales.php:378 +msgid "Users in the room" +msgstr "" + +#: ../cache/locales.php:379 +msgid "Please enter a correct nickname (6 to 40 characters)" +msgstr "" + +#: ../cache/locales.php:381 +msgid "Public chatroom" +msgstr "" + +#: ../cache/locales.php:382 +msgid "Please provide a room address" +msgstr "" + +#: ../cache/locales.php:383 +msgid "You are currently logued as an anonymous user." +msgstr "" + +#: ../cache/locales.php:384 +msgid "" +"You can join using your own account or create one on the login page by " +"loging out using the cross in the top-right corner." +msgstr "" + +#: ../cache/locales.php:385 +#, php-format +msgid "Login on %s" +msgstr "" + +#: ../cache/locales.php:386 +msgid "Your nickname" +msgstr "" + +#: ../cache/locales.php:387 +msgid "Ungrouped" +msgstr "" + +#: ../cache/locales.php:388 +msgid "Show disconnected contacts" +msgstr "" + +#: ../cache/locales.php:389 +msgid "Hide disconnected contacts" +msgstr "" + +#: ../cache/locales.php:390 +#, php-format +msgid "Show group %s" +msgstr "" + +#: ../cache/locales.php:391 +#, php-format +msgid "Hide group %s" +msgstr "" + +#: ../cache/locales.php:392 +msgid "Please enter a valid Jabber ID" +msgstr "" + +#: ../cache/locales.php:393 +msgid "" +"No contacts ? You can add one using the + button bellow or going to the " +"Explore page" +msgstr "" + +#: ../cache/locales.php:394 +msgid "Show/Hide" +msgstr "" + +#: ../cache/locales.php:395 +msgid "Enter the Jabber ID of your contact." +msgstr "" + +#: ../cache/locales.php:396 +msgid "Press enter to validate." +msgstr "" + +#: ../cache/locales.php:397 +msgid "JID" +msgstr "" + +#: ../cache/locales.php:398 +msgid "Results" +msgstr "" + +#: ../cache/locales.php:399 +msgid "Contact added" +msgstr "" + +#: ../cache/locales.php:401 +msgid "Contact deleted" +msgstr "" + +#: ../cache/locales.php:403 msgid "This is not a valid url" msgstr "" -#: [share]success +#: ../cache/locales.php:404 msgid "Sharing the URL" msgstr "" -#: [statistics]title +#: ../cache/locales.php:405 msgid "Statistics" msgstr "" -#: [statistics]since +#: ../cache/locales.php:406 msgid "Since" msgstr "" -#: [statistics]sessions +#: ../cache/locales.php:407 msgid "Sessions" msgstr "" -#: [statistics]monthly_sub +#: ../cache/locales.php:409 msgid "Monthly Subscriptions" msgstr "" -#: [statistics]monthly_sub_cum +#: ../cache/locales.php:410 msgid "Monthly Subscriptions Cumulated" msgstr "" -#: [subscribe]info -msgid "Movim is a decentralized social network, before creating a new account you need to choose a server to register." +#: ../cache/locales.php:412 +msgid "" +"Movim is a decentralized social network, before creating a new account you " +"need to choose a server to register." msgstr "" -#: [subscribe]server_question +#: ../cache/locales.php:413 msgid "Your server here ?" msgstr "" -#: [subscribe]server_contact +#: ../cache/locales.php:414 msgid "Contact us to add yours to the officially supported servers list" msgstr "" -#: [feed]nope +#: ../cache/locales.php:416 msgid "No public feed for this contact" msgstr "" -#: [feed]nope_contact +#: ../cache/locales.php:417 msgid "No contact specified" msgstr "" -#: [upload]title -#, fuzzy -msgid "Upload a file" -msgstr "Unggah" - -#: [upload]choose -msgid "Choose a file to upload" -msgstr "" - -#: [vcard]title [page]profile +#: ../cache/locales.php:418 ../cache/locales.php:473 msgid "Profile" msgstr "Profil" -#: [vcard]updated +#: ../cache/locales.php:419 msgid "Profile Updated" msgstr "Profil di Perbarui" -#: [vcard]not_updated +#: ../cache/locales.php:420 msgid "Profile Not Updated" msgstr "" -#: [vcard]public +#: ../cache/locales.php:421 msgid "Your profile is now public" msgstr "" -#: [vcard]restricted +#: ../cache/locales.php:422 msgid "Your profile is now restricted" msgstr "" -#: [general]nickname -#, fuzzy -msgctxt "[general]nickname" -msgid "Nickname" -msgstr "Panggilan" - -#: [accounts]twitter +#: ../cache/locales.php:436 msgid "Twitter" msgstr "" -#: [accounts]skype +#: ../cache/locales.php:437 msgid "Skype" msgstr "" -#: [accounts]yahoo +#: ../cache/locales.php:438 msgid "Yahoo" msgstr "" -#: [accounts]accounts_nickname -#, fuzzy -msgctxt "[accounts]accounts_nickname" -msgid "Nickname" -msgstr "Panggilan" - -#: [accounts]accounts_yahoo -msgid "Yahoo Account" -msgstr "" - -#: [privacy]privacy_title +#: ../cache/locales.php:439 msgid "Privacy Level" msgstr "Tingkat Privasi" -#: [privacy]privacy_question +#: ../cache/locales.php:440 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." -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 -msgid "Submit" -msgstr "Kirim" - -#: [save]reset [button]reset -msgid "Reset" -msgstr "Atur ulang" - -#: [visio]hung_up -msgid "Hung up" +#: ../cache/locales.php:441 +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." msgstr "" +"Harap diperhatikan! Dengan membuat profil anda publik, semua informasi yang " +"tercantum di atas akan tersedia untuk semua pengguna Movim dan seluruh " +"Internet." -#: [visio]busy -msgid "Your contact is busy" -msgstr "" - -#: [visio]declined -msgid "Declined" -msgstr "" - -#: [visio]calling -msgid "Is calling you" -msgstr "" - -#: [visio]call +#: ../cache/locales.php:442 msgid "Call" msgstr "" -#: [visio]hang_up +#: ../cache/locales.php:443 msgid "Hang up" msgstr "" -#: [visio]connection +#: ../cache/locales.php:444 msgid "Connection" msgstr "" -#: [global]no_js +#: ../cache/locales.php:445 ../cache/locales.php:451 +msgid "Hung up" +msgstr "" + +#: ../cache/locales.php:446 ../cache/locales.php:452 +msgid "Your contact is busy" +msgstr "" + +#: ../cache/locales.php:447 ../cache/locales.php:453 +msgid "Declined" +msgstr "" + +#: ../cache/locales.php:448 ../cache/locales.php:454 +msgid "Remote application incompatible" +msgstr "" + +#: ../cache/locales.php:450 ../cache/locales.php:456 +msgid "Is calling you" +msgstr "" + +#: ../cache/locales.php:457 msgid "You don't have javascript enabled. Good luck with that." msgstr "" -#: [global]description -msgid "Movim is a kickass distributed social networking platform that protect your privacy an comes with a set of awesome features." +#: ../cache/locales.php:458 +msgid "" +"Movim is a kickass distributed social networking platform that protect your " +"privacy an comes with a set of awesome features." msgstr "" -#: [page]administration +#: ../cache/locales.php:459 msgid "Administration" msgstr "Administrasi" -#: [page]home +#: ../cache/locales.php:460 msgid "Home" msgstr "" -#: [page]discover +#: ../cache/locales.php:461 msgid "Discover" msgstr "" -#: [page]explore +#: ../cache/locales.php:462 msgid "Explore" msgstr "Jelajahi" -#: [page]account_creation +#: ../cache/locales.php:463 msgid "Account Creation" msgstr "" -#: [page]avatar +#: ../cache/locales.php:464 +msgid "News" +msgstr "Berita" + +#: ../cache/locales.php:465 msgid "Avatar" msgstr "Avatar" -#: [page]chats +#: ../cache/locales.php:467 msgid "Chats" msgstr "" -#: [page]server +#: ../cache/locales.php:470 msgid "Server" msgstr "Server" -#: [page]public_groups +#: ../cache/locales.php:471 msgid "Public Groups" msgstr "" -#: [page]viewer +#: ../cache/locales.php:472 msgid "Viewer" msgstr "Penilik" -#: [page]media +#: ../cache/locales.php:474 msgid "Media" msgstr "Media" -#: [page]blog +#: ../cache/locales.php:475 msgid "Blog" msgstr "Blog" -#: [page]about +#: ../cache/locales.php:476 msgid "About" msgstr "" -#: [page]login +#: ../cache/locales.php:477 msgid "Login" msgstr "" -#: [page]feed +#: ../cache/locales.php:479 msgid "Feed" msgstr "Tautan" -#: [page]gallery +#: ../cache/locales.php:481 msgid "Gallery" msgstr "" -#: [page]visio +#: ../cache/locales.php:483 msgid "Visio-conference" msgstr "" -#: [page]pods +#: ../cache/locales.php:484 msgid "Pods" msgstr "" -#: [page]share +#: ../cache/locales.php:485 msgid "Share" msgstr "" -#: [page]room +#: ../cache/locales.php:486 msgid "Room" msgstr "" -#: [error]error +#: ../cache/locales.php:487 +#, php-format msgid "Error: %s" msgstr "Kesalahan: %s" -#: [error]cannot_load_file +#: ../cache/locales.php:488 +#, php-format msgid "Cannot load file '%s'" msgstr "Tidak dapat memuat berkas '%s'" -#: [error]route +#: ../cache/locales.php:489 +#, php-format msgid "Route error, please set all the parameters for the page %s" msgstr "Kesalahan rute, harap atur semua parameter untuk halaman %s" -#: [error]widget_load_error +#: ../cache/locales.php:490 +#, php-format msgid "Requested widget '%s' doesn't exist." msgstr "" -#: [error]widget_call_error +#: ../cache/locales.php:491 +#, php-format msgid "Requested event '%s' not registered." msgstr "" -#: [error]whoops +#: ../cache/locales.php:492 msgid "Whoops!" msgstr "" -#: [error]media_not_found +#: ../cache/locales.php:493 msgid "It seem that you don't have any pictures here?" msgstr "" -#: [error]media_ask_upload +#: ../cache/locales.php:494 msgid "You can try to upload a couple by going to the Media page" msgstr "" -#: [title]about +#: ../cache/locales.php:495 +#, php-format msgid "%s - About" msgstr "" -#: [title]account +#: ../cache/locales.php:496 +#, php-format msgid "%s - Account" msgstr "" -#: [title]administration +#: ../cache/locales.php:497 +#, php-format msgid "%s - Administration Panel" msgstr "" -#: [title]blog +#: ../cache/locales.php:498 +#, php-format msgid "%s - Blog" msgstr "" -#: [title]configuration +#: ../cache/locales.php:499 +#, php-format msgid "%s - Configuration" msgstr "" -#: [title]discover +#: ../cache/locales.php:500 +#, php-format msgid "%s - Discover" msgstr "" -#: [title]explore +#: ../cache/locales.php:501 +#, php-format msgid "%s - Explore" msgstr "" -#: [title]help +#: ../cache/locales.php:502 +#, php-format msgid "%s - Help Page" msgstr "" -#: [title]login +#: ../cache/locales.php:503 +#, php-format msgid "%s - Login to Movim" msgstr "" -#: [title]main +#: ../cache/locales.php:504 +#, php-format msgid "%s - Welcome to Movim" msgstr "" -#: [title]media +#: ../cache/locales.php:505 +#, php-format msgid "%s - Media" msgstr "" -#: [title]news +#: ../cache/locales.php:506 +#, php-format msgid "%s - News" msgstr "" -#: [title]node_configuration +#: ../cache/locales.php:507 +#, php-format msgid "%s - Group Configuration" msgstr "" -#: [title]node +#: ../cache/locales.php:508 +#, php-format msgid "%s - Group" msgstr "" -#: [title]not_found +#: ../cache/locales.php:509 +#, php-format msgid "%s - 404" msgstr "" -#: [title]profile +#: ../cache/locales.php:510 +#, php-format msgid "%s - Profile" msgstr "" -#: [title]server +#: ../cache/locales.php:511 +#, php-format msgid "%s - Server" msgstr "" -#: [button]validate +#: ../cache/locales.php:512 msgid "Validate" msgstr "Validasi" -#: [button]refresh +#: ../cache/locales.php:513 msgid "Refresh" msgstr "Perbarui" -#: [button]add +#: ../cache/locales.php:514 msgid "Add" msgstr "Tambah" -#: [button]delete +#: ../cache/locales.php:515 msgid "Delete" msgstr "" -#: [button]cancel +#: ../cache/locales.php:516 +msgid "Remove" +msgstr "" + +#: ../cache/locales.php:517 msgid "Cancel" msgstr "" -#: [button]close +#: ../cache/locales.php:518 msgid "Close" msgstr "Tutup" -#: [button]update +#: ../cache/locales.php:519 msgid "Update" msgstr "" -#: [button]updating +#: ../cache/locales.php:520 msgid "Updating" msgstr "" -#: [button]submitting +#: ../cache/locales.php:521 +msgid "Submit" +msgstr "Kirim" + +#: ../cache/locales.php:522 msgid "Submitting" msgstr "Mengirimkan" -#: [button]register +#: ../cache/locales.php:523 +msgid "Reset" +msgstr "Atur ulang" + +#: ../cache/locales.php:524 msgid "Register" msgstr "" -#: [button]unregister +#: ../cache/locales.php:525 msgid "Unregister" msgstr "" -#: [button]save +#: ../cache/locales.php:526 msgid "Save" msgstr "Simpan" -#: [button]clear +#: ../cache/locales.php:527 msgid "Clear" msgstr "" -#: [button]upload +#: ../cache/locales.php:528 msgid "Upload" msgstr "Unggah" -#: [button]come_in +#: ../cache/locales.php:529 msgid "Come in!" msgstr "Ayo masuk!" -#: [button]connecting +#: ../cache/locales.php:530 msgid "Connecting" msgstr "" -#: [button]bool_yes +#: ../cache/locales.php:531 msgid "Yes" msgstr "Ya" -#: [button]bool_no +#: ../cache/locales.php:532 msgid "No" msgstr "Tidak" -#: [button]return +#: ../cache/locales.php:534 msgid "Return" msgstr "" -#: [button]accept +#: ../cache/locales.php:535 msgid "Accept" msgstr "" -#: [button]refuse +#: ../cache/locales.php:536 msgid "Refuse" msgstr "" -#: [button]next +#: ../cache/locales.php:537 msgid "Next" msgstr "" -#: [button]previous +#: ../cache/locales.php:538 msgid "Previous" msgstr "" -#: [step]step +#: ../cache/locales.php:539 +#, php-format msgid "Step %s" msgstr "" -#: [day]title +#: ../cache/locales.php:542 msgid "Day" msgstr "Hari" -#: [day]monday +#: ../cache/locales.php:543 msgid "Monday" msgstr "Senin" -#: [day]tuesday +#: ../cache/locales.php:544 msgid "Tuesday" msgstr "Selasa" -#: [day]wednesday +#: ../cache/locales.php:545 msgid "Wednesday" msgstr "Rabu" -#: [day]thursday +#: ../cache/locales.php:546 msgid "Thursday" msgstr "Kamis" -#: [day]friday +#: ../cache/locales.php:547 msgid "Friday" msgstr "Jumat" -#: [day]saturday +#: ../cache/locales.php:548 msgid "Saturday" msgstr "Sabtu" -#: [day]sunday +#: ../cache/locales.php:549 msgid "Sunday" msgstr "" -#: [gender]nil -#, fuzzy -msgctxt "[gender]nil" +#: ../cache/locales.php:550 ../cache/locales.php:559 msgid "None" msgstr "Nihil" -#: [gender]male +#: ../cache/locales.php:551 msgid "Male" msgstr "Pria" -#: [gender]female +#: ../cache/locales.php:552 msgid "Female" msgstr "Wanita" -#: [gender]other +#: ../cache/locales.php:553 msgid "Other" msgstr "Lainnya" -#: [client]bot +#: ../cache/locales.php:554 msgid "Bot" msgstr "Bot" -#: [client]desktop +#: ../cache/locales.php:555 msgid "Desktop" msgstr "Desktop" -#: [client]phone +#: ../cache/locales.php:556 msgid "Phone" msgstr "Telepon" -#: [client]web +#: ../cache/locales.php:557 msgid "Web" msgstr "Web" -#: [client]registered +#: ../cache/locales.php:558 msgid "Registered" msgstr "Terdaftar" -#: [marital]nil -#, fuzzy -msgctxt "[marital]nil" -msgid "None" -msgstr "Nihil" - -#: [marital]single +#: ../cache/locales.php:560 msgid "Single" msgstr "Lajang" -#: [marital]relationship +#: ../cache/locales.php:561 msgid "In a relationship" msgstr "Sedang berhubungan" -#: [marital]married +#: ../cache/locales.php:562 msgid "Married" msgstr "Menikah" -#: [marital]divorced +#: ../cache/locales.php:563 msgid "Divorced" msgstr "Bercerai" -#: [marital]widowed +#: ../cache/locales.php:564 msgid "Widowed" msgstr "Janda" -#: [marital]cohabiting +#: ../cache/locales.php:565 msgid "Cohabiting" msgstr "Tinggal bersama" -#: [marital]union +#: ../cache/locales.php:566 msgid "Civil Union" msgstr "Hubungan sejenis" -#: [flag]white +#: ../cache/locales.php:567 msgid "Not shared" msgstr "Tidak dibagikan" -#: [flag]green +#: ../cache/locales.php:568 msgid "Shared with one contact" msgstr "Dibagikan ke satu kontak" -#: [flag]orange +#: ../cache/locales.php:569 msgid "Shared with all contacts" msgstr "Dibagikan ke seluruh kontak" -#: [flag]red +#: ../cache/locales.php:570 msgid "Shared with the XMPP network" msgstr "Dibagikan ke jaringan XMPP" -#: [flag]black +#: ../cache/locales.php:571 msgid "Shared with the whole Internet" msgstr "Dibagikan ke seluruh Internet" -#: [presence]online +#: ../cache/locales.php:572 msgid "Online" msgstr "Tersedia" -#: [presence]away +#: ../cache/locales.php:573 msgid "Away" msgstr "Jauh" -#: [presence]dnd +#: ../cache/locales.php:574 msgid "Do Not Disturb" msgstr "Jangan Diganggu" -#: [presence]xa +#: ../cache/locales.php:575 msgid "Extended Away" msgstr "Menjauh Lama" -#: [presence]offline +#: ../cache/locales.php:576 msgid "Offline" msgstr "" -#: [presence]error +#: ../cache/locales.php:577 msgid "Error" msgstr "Kesalahan" -#: [mood]afraid +#: ../cache/locales.php:578 msgid "afraid" msgstr "takut" -#: [mood]amazed +#: ../cache/locales.php:579 msgid "amazed" msgstr "kagum" -#: [mood]amorous +#: ../cache/locales.php:580 msgid "amorous" msgstr "mudah jatuh cinta" -#: [mood]angry +#: ../cache/locales.php:581 msgid "angry" msgstr "marah" -#: [mood]annoyed +#: ../cache/locales.php:582 msgid "annoyed" msgstr "kesal" -#: [mood]anxious +#: ../cache/locales.php:583 msgid "anxious" msgstr "risau" -#: [mood]aroused +#: ../cache/locales.php:584 msgid "aroused" msgstr "terangsang" -#: [mood]ashamed +#: ../cache/locales.php:585 msgid "ashamed" msgstr "malu" -#: [mood]bored +#: ../cache/locales.php:586 msgid "bored" msgstr "bosan" -#: [mood]brave +#: ../cache/locales.php:587 msgid "brave" msgstr "berani" -#: [mood]calm +#: ../cache/locales.php:588 msgid "calm" msgstr "tenang" -#: [mood]cautious +#: ../cache/locales.php:589 msgid "cautious" msgstr "hati-hati" -#: [mood]cold +#: ../cache/locales.php:590 msgid "cold" msgstr "dingin" -#: [mood]confident +#: ../cache/locales.php:591 msgid "confident" msgstr "yakin" -#: [mood]confused +#: ../cache/locales.php:592 msgid "confused" msgstr "bingung" -#: [mood]contemplative +#: ../cache/locales.php:593 msgid "contemplative" msgstr "merenung" -#: [mood]contented +#: ../cache/locales.php:594 msgid "contented" msgstr "puas" -#: [mood]cranky +#: ../cache/locales.php:595 msgid "cranky" msgstr "jengkel" -#: [mood]crazy +#: ../cache/locales.php:596 msgid "crazy" msgstr "gila" -#: [mood]creative +#: ../cache/locales.php:597 msgid "creative" msgstr "kreatif" -#: [mood]curious +#: ../cache/locales.php:598 msgid "curious" msgstr "penasaran" -#: [mood]dejected +#: ../cache/locales.php:599 msgid "dejected" msgstr "gundah" -#: [mood]depressed +#: ../cache/locales.php:600 msgid "depressed" msgstr "murung" -#: [mood]disappointed +#: ../cache/locales.php:601 msgid "disappointed" msgstr "kecewa" -#: [mood]disgusted +#: ../cache/locales.php:602 msgid "disgusted" msgstr "jijik" -#: [mood]dismayed +#: ../cache/locales.php:603 msgid "dismayed" msgstr "cemas" -#: [mood]distracted +#: ../cache/locales.php:604 msgid "distracted" msgstr "bingung" -#: [mood]embarrassed +#: ../cache/locales.php:605 msgid "embarrassed" msgstr "tersipu" -#: [mood]envious +#: ../cache/locales.php:606 msgid "envious" msgstr "iri" -#: [mood]excited +#: ../cache/locales.php:607 msgid "excited" msgstr "gembira" -#: [mood]flirtatious +#: ../cache/locales.php:608 msgid "flirtatious" msgstr "genit" -#: [mood]frustated +#: ../cache/locales.php:609 msgid "frustated" msgstr "" -#: [mood]grateful +#: ../cache/locales.php:610 msgid "grateful" msgstr "bersyukur" -#: [mood]grieving +#: ../cache/locales.php:611 msgid "grieving" msgstr "kecil hati" -#: [mood]grumpy +#: ../cache/locales.php:612 msgid "grumpy" msgstr "galak" -#: [mood]guilty +#: ../cache/locales.php:613 msgid "guilty" msgstr "bersalah" -#: [mood]happy +#: ../cache/locales.php:614 msgid "happy" msgstr "bahagia" -#: [mood]hopeful +#: ../cache/locales.php:615 msgid "hopeful" msgstr "penuh harapan" -#: [mood]hot +#: ../cache/locales.php:616 msgid "hot" msgstr "panas" -#: [mood]humbled +#: ../cache/locales.php:617 msgid "humbled" msgstr "merendahkan" -#: [mood]humiliated +#: ../cache/locales.php:618 msgid "humiliated" msgstr "terhina" -#: [mood]hungry +#: ../cache/locales.php:619 msgid "hungry" msgstr "lapar" -#: [mood]hurt +#: ../cache/locales.php:620 msgid "hurt" msgstr "tersakiti" -#: [mood]impressed +#: ../cache/locales.php:621 msgid "impressed" msgstr "terkesan" -#: [mood]in_awe +#: ../cache/locales.php:622 msgid "in awe" msgstr "kagum" -#: [mood]in_love +#: ../cache/locales.php:623 msgid "in love" msgstr "jatuh cinta" -#: [mood]indignant +#: ../cache/locales.php:624 msgid "indignant" msgstr "" -#: [mood]interested +#: ../cache/locales.php:625 msgid "interested" msgstr "tertarik" -#: [mood]intoxicated +#: ../cache/locales.php:626 msgid "intoxicated" msgstr "mabuk" -#: [mood]invincible +#: ../cache/locales.php:627 msgid "invincible" msgstr "tak terkalahkan" -#: [mood]jealous +#: ../cache/locales.php:628 msgid "jealous" msgstr "cemburu" -#: [mood]lonely +#: ../cache/locales.php:629 msgid "lonely" msgstr "kesepian" -#: [mood]lost +#: ../cache/locales.php:630 msgid "lost" msgstr "tersesat" -#: [mood]lucky +#: ../cache/locales.php:631 msgid "lucky" msgstr "beruntung" -#: [mood]mean +#: ../cache/locales.php:632 msgid "mean" msgstr "jahat" -#: [mood]moody +#: ../cache/locales.php:633 msgid "moody" msgstr "murung" -#: [mood]nervous +#: ../cache/locales.php:634 msgid "nervous" msgstr "gugup" -#: [mood]neutral +#: ../cache/locales.php:635 msgid "neutral" msgstr "netral" -#: [mood]offended +#: ../cache/locales.php:636 msgid "offended" msgstr "tersinggung" -#: [mood]outraged +#: ../cache/locales.php:637 msgid "outraged" msgstr "marah" -#: [mood]playful +#: ../cache/locales.php:638 msgid "playful" msgstr "humoris" -#: [mood]proud +#: ../cache/locales.php:639 msgid "proud" msgstr "bangga" -#: [mood]relaxed +#: ../cache/locales.php:640 msgid "relaxed" msgstr "santai" -#: [mood]relieved +#: ../cache/locales.php:641 msgid "relieved" msgstr "lega" -#: [mood]restless +#: ../cache/locales.php:642 +msgid "remorseful" +msgstr "menyesal" + +#: ../cache/locales.php:643 msgid "restless" msgstr "gelisah" -#: [mood]sad +#: ../cache/locales.php:644 msgid "sad" msgstr "sedih" -#: [mood]sarcastic +#: ../cache/locales.php:645 msgid "sarcastic" msgstr "sarkastik" -#: [mood]satisfied +#: ../cache/locales.php:646 msgid "satisfied" msgstr "puas" -#: [mood]serious +#: ../cache/locales.php:647 msgid "serious" msgstr "serius" -#: [mood]shocked +#: ../cache/locales.php:648 msgid "shocked" msgstr "kaget" -#: [mood]shy +#: ../cache/locales.php:649 msgid "shy" msgstr "malu" -#: [mood]sick +#: ../cache/locales.php:650 msgid "sick" msgstr "sakit" -#: [mood]sleepy +#: ../cache/locales.php:651 msgid "sleepy" msgstr "mengantuk" -#: [mood]spontaneous +#: ../cache/locales.php:652 msgid "spontaneous" msgstr "spontan" -#: [mood]stressed +#: ../cache/locales.php:653 msgid "stressed" msgstr "stress" -#: [mood]strong +#: ../cache/locales.php:654 msgid "strong" msgstr "kuat" -#: [mood]surprised +#: ../cache/locales.php:655 msgid "surprised" msgstr "tercengang" -#: [mood]thankful +#: ../cache/locales.php:656 msgid "thankful" msgstr "berterima kasih" -#: [mood]thirsty +#: ../cache/locales.php:657 msgid "thirsty" msgstr "haus" -#: [mood]tired +#: ../cache/locales.php:658 msgid "tired" msgstr "lelah" -#: [mood]undefined +#: ../cache/locales.php:659 msgid "undefined" msgstr "tak terdefinisi" -#: [mood]weak +#: ../cache/locales.php:660 msgid "weak" msgstr "lemah" -#: [mood]worried +#: ../cache/locales.php:661 msgid "worried" msgstr "khawatir" -#: [month]title +#: ../cache/locales.php:662 msgid "Month" msgstr "Bulan" -#: [month]january +#: ../cache/locales.php:663 msgid "January" msgstr "Januari" -#: [month]february +#: ../cache/locales.php:664 msgid "February" msgstr "Februari" -#: [month]march +#: ../cache/locales.php:665 msgid "March" msgstr "Maret" -#: [month]april +#: ../cache/locales.php:666 msgid "April" msgstr "April" -#: [month]may +#: ../cache/locales.php:667 msgid "May" msgstr "Mei" -#: [month]june +#: ../cache/locales.php:668 msgid "June" msgstr "Juni" -#: [month]july +#: ../cache/locales.php:669 msgid "July" msgstr "Juli" -#: [month]august +#: ../cache/locales.php:670 msgid "August" msgstr "Agustus" -#: [month]september +#: ../cache/locales.php:671 msgid "September" msgstr "September" -#: [month]october +#: ../cache/locales.php:672 msgid "October" msgstr "Oktober" -#: [month]november +#: ../cache/locales.php:673 msgid "November" msgstr "November" -#: [month]december +#: ../cache/locales.php:674 msgid "December" msgstr "Desember" -#: [year]title +#: ../cache/locales.php:675 msgid "Year" msgstr "Tahun" -#: [date]today +#: ../cache/locales.php:676 msgid "Today" msgstr "Hari Ini" -#: [date]tomorrow +#: ../cache/locales.php:677 msgid "Tomorrow" msgstr "Besok" -#: [date]yesterday +#: ../cache/locales.php:678 msgid "Yesterday" msgstr "Kemarin" -#: [date]ago -#, fuzzy -msgid "%d days ago" +#: ../cache/locales.php:679 +#, php-format +msgid " %d days ago" msgstr " %d hari lalu" -#: [date]day +#: ../cache/locales.php:680 msgid "day" msgstr "hari" -#: [post]whats_new +#: ../cache/locales.php:682 msgid "What's new ?" msgstr "" -#: [post]place +#: ../cache/locales.php:683 msgid "Place" msgstr "" -#: [post]by +#: ../cache/locales.php:684 msgid "by" msgstr "" -#: [post]geolocalisation +#: ../cache/locales.php:685 msgid "Geolocalisation" msgstr "" -#: [post]email +#: ../cache/locales.php:686 msgid "email" msgstr "" -#: [post]no_comments +#: ../cache/locales.php:688 msgid "No comments yet" msgstr "" -#: [post]no_comments_stream +#: ../cache/locales.php:689 msgid "No comments stream" msgstr "" -#: [post]no_load +#: ../cache/locales.php:690 msgid "Your feed cannot be loaded." msgstr "Feed mu tidak dapat dimuat." -#: [post]older +#: ../cache/locales.php:691 msgid "Get older posts" msgstr "Tampilkan posting lawas" -#: [post]new_items +#: ../cache/locales.php:692 +#, php-format msgid "%s new items" msgstr "" -#: [post]comment_error +#: ../cache/locales.php:693 msgid "Comment publication error" msgstr "Kesalahan publikasikan komentar" -#: [post]comments_older +#: ../cache/locales.php:694 msgid "Show the older comments" msgstr "" -#: [post]comments_loading -msgid "Loading comments..." +#: ../cache/locales.php:695 +msgid "Loading comments ..." msgstr "" -#: [post]comments_get +#: ../cache/locales.php:696 msgid "Get the comments" msgstr "" -#: [post]comment_add +#: ../cache/locales.php:697 msgid "Add a comment" msgstr "" -#: [post]share +#: ../cache/locales.php:698 msgid "Share with" msgstr "" -#: [post]share_everyone +#: ../cache/locales.php:699 msgid "Everyone" msgstr "" -#: [post]share_your_contacts +#: ../cache/locales.php:700 msgid "Your contacts" msgstr "" -#: [post]updated +#: ../cache/locales.php:702 msgid "Updated" msgstr "" -#: [post]content_not_found +#: ../cache/locales.php:703 msgid "Content not found" msgstr "" -#: [post]default_title +#: ../cache/locales.php:704 msgid "Contact publication" msgstr "" -#: [post]comments +#: ../cache/locales.php:705 msgid "Comments" msgstr "" -#: [api]error +#: ../cache/locales.php:706 msgid "The API is not reachable, try again later" msgstr "" -#: [field]type_here +#: ../cache/locales.php:707 msgid "Type here" msgstr "" -#~ msgid "remorseful" -#~ msgstr "menyesal" - #~ msgid "Logout" #~ msgstr "Keluar" +#~ msgid "Create my vCard" +#~ msgstr "Buat vCard ku" + #~ msgid "My Posts" #~ msgstr "Posting saya" #~ msgid "Edit my Profile" #~ msgstr "Edit Profil ku" -#~ msgid "Your server doesn't support post publication, you can only read contact's feeds" -#~ msgstr "Server anda tidak mendukung pasca publikasi, kamu hanya dapat membaca feed kontak" +#~ msgid "" +#~ "Your server doesn't support post publication, you can only read contact's " +#~ "feeds" +#~ msgstr "" +#~ "Server anda tidak mendukung pasca publikasi, kamu hanya dapat membaca feed " +#~ "kontak" #~ msgid "Invite this user" #~ msgstr "Undang user ini" +#~ msgid "Remove this contact" +#~ msgstr "Hapus kontak ini" + #~ msgid "What is Movim?" #~ msgstr "Apa itu Movim?" -#~ msgid "Visit the page %s What is Movim ? %s to know more about the project, its aims and understand how it works." -#~ msgstr "Kunjungi halaman %s Apa itu Movim ? %s untuk mengetahui lebih lanjut tentang proyek, tujuan dan pahami cara kerjanya." +#, php-format +#~ msgid "" +#~ "Visit the page %s What is Movim ? %s to know more about the project, its " +#~ "aims and understand how it works." +#~ msgstr "" +#~ "Kunjungi halaman %s Apa itu Movim ? %s untuk mengetahui lebih lanjut tentang " +#~ "proyek, tujuan dan pahami cara kerjanya." diff --git a/sources/locales/io.po b/sources/locales/io.po index b2974fd..f07c69b 100644 --- a/sources/locales/io.po +++ b/sources/locales/io.po @@ -3,2699 +3,2583 @@ # This file is distributed under the same license as the movim package. # FIRST AUTHOR , 2013. # -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/About/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Account/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/AccountNext/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/AdHoc/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/AdminDB/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/AdminMain/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/AdminTest/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Api/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Avatar/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Blog/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Bookmark/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Chat/locales.ini -#. #-#-#-#-# 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 -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Group/locales.ini -#. #-#-#-#-# 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 -#. #-#-#-#-# 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 -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Presence/locales.ini -#. #-#-#-#-# 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 -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Share/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Statistics/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Subscribe/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Syndication/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Upload/locales.ini -#. #-#-#-#-# 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-08-20 15:17+0200\n" +"POT-Creation-Date: 2015-06-08 22:06+0200\n" "PO-Revision-Date: 2014-06-01 23:07+0000\n" "Last-Translator: edhelas \n" "Language-Team: Ido \n" -"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2015-06-18 21:08+0000\n" "X-Generator: Launchpad (build 17570)\n" +"Language: \n" -#: [about]thanks +#: ../cache/locales.php:2 msgid "Thanks" msgstr "" -#: [about]developers +#: ../cache/locales.php:3 msgid "Developers" msgstr "" -#: [about]translators +#: ../cache/locales.php:4 msgid "Translators" msgstr "" -#: [about]software +#: ../cache/locales.php:5 msgid "Software" msgstr "" -#: [about]resources +#: ../cache/locales.php:6 msgid "Resources" msgstr "" -#: [about]api [schema]api [api]title +#: ../cache/locales.php:7 ../cache/locales.php:83 ../cache/locales.php:85 msgid "API" msgstr "" -#: [about]info -msgid "Movim is an XMPP-based communication platform. All the project, except the following software and resources, is under" +#: ../cache/locales.php:8 +msgid "" +"Movim is an XMPP-based communication platform. All the project, except the " +"following software and resources, is under" msgstr "" -#: [account]title +#: ../cache/locales.php:9 msgid "Account" msgstr "" -#: [account]password_change_title -msgid "Change my password" -msgstr "" - -#: [account]password [db]password [credentials]password [form]password -#: [input]password -msgid "Password" -msgstr "" - -#: [account]password_confirmation -msgid "Password confirmation" -msgstr "" - -#: [account]password_changed +#: ../cache/locales.php:10 msgid "The password has been updated" msgstr "" -#: [account]password_not_valid +#: ../cache/locales.php:11 msgid "Please provide a valid password (6 characters minimum)" msgstr "" -#: [account]password_not_same +#: ../cache/locales.php:12 msgid "The provided passwords are not the same" msgstr "" -#: [account]delete_title +#: ../cache/locales.php:13 msgid "Delete my account" msgstr "" -#: [account]delete -msgid "Delete your account" +#: ../cache/locales.php:14 +msgid "" +"You will delete your XMPP account and all the relative information linked to " +"it (profile, contacts and publications)." msgstr "" -#: [account]delete_text -msgid "You will delete your XMPP account and all the relative information linked to it (profile, contacts and publications)." -msgstr "" - -#: [account]delete_text_confirm +#: ../cache/locales.php:15 msgid "Are you sure that you want to delete it ?" msgstr "" -#: [account]gateway_title -msgid "Gateway" -msgstr "" - -#: [create]title [subscribe]title +#: ../cache/locales.php:16 ../cache/locales.php:411 msgid "Create a new account" msgstr "" -#: [create]notfound +#: ../cache/locales.php:17 msgid "No account creation form found on the server" msgstr "" -#: [create]server_on +#: ../cache/locales.php:18 ../cache/locales.php:172 msgid "on" msgstr "" -#: [create]successfull +#: ../cache/locales.php:19 msgid "Your acccount has been successfully registered" msgstr "" -#: [create]loading +#: ../cache/locales.php:20 msgid "Loading" msgstr "" -#: [error]not_acceptable +#: ../cache/locales.php:21 msgid "Not Acceptable" msgstr "" -#: [error]service_unavailable +#: ../cache/locales.php:22 msgid "The registration system of this server is currently unavailable" msgstr "" -#: [oob]about -msgid "This server use an external system for the registration, please click on the following URL." +#: ../cache/locales.php:23 +msgid "" +"This server use an external system for the registration, please click on the " +"following URL." msgstr "" -#: [adhoc]title +#: ../cache/locales.php:24 msgid "Actions" msgstr "" -#: [db]legend [schema]database +#: ../cache/locales.php:25 ../cache/locales.php:82 msgid "Database" msgstr "" -#: [db]connect_error +#: ../cache/locales.php:26 msgid "Modl wasn't able to connect to the database" msgstr "" -#: [db]connect_success +#: ../cache/locales.php:27 msgid "Movim is connected to the database" msgstr "" -#: [db]update +#: ../cache/locales.php:28 msgid "The database need to be updated" msgstr "" -#: [db]up_to_date +#: ../cache/locales.php:29 msgid "Movim database is up to date" msgstr "" -#: [db]type +#: ../cache/locales.php:30 msgid "Database Type" msgstr "" -#: [db]username [credentials]username [input]username +#: ../cache/locales.php:31 ../cache/locales.php:50 ../cache/locales.php:540 msgid "Username" msgstr "" -#: [db]host +#: ../cache/locales.php:32 ../cache/locales.php:51 ../cache/locales.php:282 +#: ../cache/locales.php:541 +msgid "Password" +msgstr "" + +#: ../cache/locales.php:33 msgid "Host" msgstr "" -#: [db]port +#: ../cache/locales.php:34 msgid "Port" msgstr "" -#: [db]name -msgid "Database sName" +#: ../cache/locales.php:35 +msgid "Database Name" msgstr "" -#: [admin]general +#: ../cache/locales.php:36 msgid "General Settings" msgstr "" -#: [general]theme +#: ../cache/locales.php:37 msgid "Theme" msgstr "" -#: [general]language +#: ../cache/locales.php:38 msgid "Default language" msgstr "" -#: [general]log_verbosity +#: ../cache/locales.php:39 +msgid "Environment" +msgstr "" + +#: ../cache/locales.php:40 msgid "Log verbosity" msgstr "" -#: [general]timezone +#: ../cache/locales.php:41 msgid "Server Timezone" msgstr "" -#: [general]limit +#: ../cache/locales.php:42 msgid "User folder size limit (in bytes)" msgstr "" -#: [websocket]title +#: ../cache/locales.php:43 msgid "WebSocket Configuration" msgstr "" -#: [websocket]info +#: ../cache/locales.php:44 msgid "Enter here a valid WebSocket URI in the form" msgstr "" -#: [websocket]label +#: ../cache/locales.php:45 msgid "WebSocket URI" msgstr "" -#: [websocket]save_info -msgid "If you change the URI, please restart the daemon to reload the configuration" +#: ../cache/locales.php:46 +msgid "" +"If you change the URI, please restart the daemon to reload the configuration" msgstr "" -#: [websocket]publics +#: ../cache/locales.php:47 msgid "Public WebSockets" msgstr "" -#: [credentials]title +#: ../cache/locales.php:48 msgid "Administration Credential" msgstr "" -#: [credentials]info +#: ../cache/locales.php:49 msgid "Change the default credentials admin/password" msgstr "" -#: [credentials]re_password +#: ../cache/locales.php:52 msgid "Retype password" msgstr "" -#: [whitelist]title +#: ../cache/locales.php:53 msgid "Whitelist - XMPP Server" msgstr "" -#: [whitelist]info1 -msgid "If you want to specify a list of authorized XMPP servers on your Movim pod and forbid the connection on all the others please put their domain name here, with comma (ex: movim.eu,jabber.fr)" +#: ../cache/locales.php:54 +msgid "" +"If you want to specify a list of authorized XMPP servers on your Movim pod " +"and forbid the connection on all the others please put their domain name " +"here, with comma (ex: movim.eu,jabber.fr)" msgstr "" -#: [whitelist]info2 -msgid "Leave this field blank if you allow the access to all the XMPP accounts." +#: ../cache/locales.php:55 +msgid "" +"Leave this field blank if you allow the access to all the XMPP accounts." msgstr "" -#: [whitelist]label +#: ../cache/locales.php:56 msgid "List of whitelisted XMPP servers" msgstr "" -#: [information]title -msgctxt "[information]title" +#: ../cache/locales.php:57 ../cache/locales.php:61 msgid "Information Message" msgstr "" -#: [information]description +#: ../cache/locales.php:58 msgid "Description" msgstr "" -#: [information]info1 +#: ../cache/locales.php:59 msgid "This message will be displayed on the login page" msgstr "" -#: [information]info2 -msgid "Leave this field blank if you dont want to show any message." +#: ../cache/locales.php:60 +msgid "Leave this field blank if you don't want to show any message." msgstr "" -#: [information]label -msgctxt "[information]label" -msgid "Information Message" -msgstr "" - -#: [log]empty +#: ../cache/locales.php:62 msgid "Empty" msgstr "" -#: [log]syslog +#: ../cache/locales.php:63 msgid "Syslog" msgstr "" -#: [log]syslog_files +#: ../cache/locales.php:64 msgid "Syslog and files" msgstr "" -#: [rewrite]title +#: ../cache/locales.php:65 msgid "URL Rewriting" msgstr "" -#: [rewrite]info +#: ../cache/locales.php:66 msgid "The URL Rewriting can be enabled" msgstr "" -#: [admin]compatibility +#: ../cache/locales.php:67 msgid "General Overview" msgstr "" -#: [compatibility]info -msgid "Movim has found some issues or things that need to be fixed or improved" +#: ../cache/locales.php:68 +msgid "" +"Movim has found some issues or things that need to be fixed or improved" msgstr "" -#: [compatibility]php1 +#: ../cache/locales.php:69 +#, php-format msgid "Update your PHP-Version: %s" msgstr "" -#: [compatibility]php2 +#: ../cache/locales.php:70 msgid "Required: 5.3.0" msgstr "" -#: [compatibility]curl +#: ../cache/locales.php:71 msgid "Install the php5-curl library" msgstr "" -#: [compatibility]imagick +#: ../cache/locales.php:72 msgid "Install the php5-imagick library" msgstr "" -#: [compatibility]gd +#: ../cache/locales.php:73 msgid "Install the php5-gd library" msgstr "" -#: [compatibility]rights -msgid "Read and write rights for the webserver in Movims root directory" +#: ../cache/locales.php:74 +msgid "Read and write rights for the webserver in Movim's root directory" msgstr "" -#: [compatibility]rewrite +#: ../cache/locales.php:75 msgid "The URL Rewriting support is currently disabled" msgstr "" -#: [compatibility]db +#: ../cache/locales.php:76 msgid "The database need to be updated, go to the database panel to fix this" msgstr "" -#: [compatibility]websocket -msgid "WebSocket connection error, check if the Movim Daemon is running and is reachable" +#: ../cache/locales.php:77 +msgid "" +"WebSocket connection error, check if the Movim Daemon is running and is " +"reacheable" msgstr "" -#: [compatibility]xmpp_websocket -msgid "XMPP Websocket connection error, please check the validity of the URL given in the General Configuration" +#: ../cache/locales.php:78 +msgid "" +"XMPP Websocket connection error, please check the validity of the URL given " +"in the General Configuration" msgstr "" -#: [schema]browser +#: ../cache/locales.php:79 msgid "Browser" msgstr "" -#: [schema]movim +#: ../cache/locales.php:80 msgid "Movim Core" msgstr "" -#: [schema]daemon +#: ../cache/locales.php:81 msgid "Movim Daemon" msgstr "" -#: [schema]xmpp +#: ../cache/locales.php:84 msgid "XMPP" msgstr "" -#: [api]info -msgid "Here you can register your pod on the official %sMovim API%s and be listed on %sthe pods page%s." +#: ../cache/locales.php:86 +#, php-format +msgid "" +"Here you can register your pod on the official %sMovim API%s and be listed " +"on %sthe pods page%s." msgstr "" -#: [api]register +#: ../cache/locales.php:87 msgid "Your pod is not registered on the API" msgstr "" -#: [api]registered +#: ../cache/locales.php:88 msgid "Your pod is registered on the API" msgstr "" -#: [api]wait +#: ../cache/locales.php:89 msgid "Your pod is not yet validated" msgstr "" -#: [api]validated +#: ../cache/locales.php:90 msgid "Your pod is validated" msgstr "" -#: [api]unregister -msgid "You asked to be removed from the API, this request will be processed in a couple of hours" +#: ../cache/locales.php:91 +msgid "" +"You asked to be removed from the API, this request will be processed in a " +"couple of hours" msgstr "" -#: [api]conf_updated [config]updated +#: ../cache/locales.php:92 ../cache/locales.php:147 msgid "Configuration updated" msgstr "" -#: [avatar]file +#: ../cache/locales.php:93 msgid "File" msgstr "" -#: [avatar]use_it +#: ../cache/locales.php:94 msgid "Use it" msgstr "" -#: [avatar]webcam +#: ../cache/locales.php:95 msgid "Webcam" msgstr "" -#: [avatar]cheese +#: ../cache/locales.php:96 msgid "Cheese !" msgstr "" -#: [avatar]snapshot +#: ../cache/locales.php:97 msgid "Take a webcam snapshot" msgstr "" -#: [avatar]updated +#: ../cache/locales.php:98 msgid "Avatar Updated" msgstr "" -#: [avatar]not_updated +#: ../cache/locales.php:99 msgid "Avatar Not Updated" msgstr "" -#: [blog]title [feed]title +#: ../cache/locales.php:100 ../cache/locales.php:415 +#, php-format msgid "%s's feed" msgstr "" -#: [blog]empty +#: ../cache/locales.php:101 msgid "This user has not posted anything right now" msgstr "" -#: [title]conferences +#: ../cache/locales.php:102 msgid "Conferences" msgstr "" -#: [title]groups [group]empty_title [menu]groups [page]groups +#: ../cache/locales.php:103 ../cache/locales.php:193 ../cache/locales.php:217 +#: ../cache/locales.php:468 msgid "Groups" msgstr "" -#: [chatroom]add +#: ../cache/locales.php:104 msgid "Add a new Chat Room" msgstr "" -#: [chatroom]id [chatrooms]id +#: ../cache/locales.php:105 ../cache/locales.php:368 msgid "Chat Room ID" msgstr "" -#: [chatroom]name -msgctxt "[chatroom]name" +#: ../cache/locales.php:106 ../cache/locales.php:116 ../cache/locales.php:156 +#: ../cache/locales.php:361 ../cache/locales.php:369 ../cache/locales.php:424 msgid "Name" msgstr "" -#: [chatroom]nickname [general]nickname [chatrooms]nickname +#: ../cache/locales.php:107 ../cache/locales.php:157 ../cache/locales.php:371 +#: ../cache/locales.php:425 msgid "Nickname" msgstr "" -#: [chatroom]autojoin_label +#: ../cache/locales.php:108 msgid "Do you want do join automaticaly this Chat Room ?" msgstr "" -#: [chatroom]bad_id [chatrooms]bad_id +#: ../cache/locales.php:109 ../cache/locales.php:372 msgid "Bad Chatroom ID" msgstr "" -#: [chatroom]empty_name [chatrooms]empty_name +#: ../cache/locales.php:110 ../cache/locales.php:373 msgid "Empty name" msgstr "" -#: [bookmarks]updated +#: ../cache/locales.php:111 ../cache/locales.php:380 msgid "Bookmarks updated" msgstr "" -#: [bookmarks]error -msgid "An error occured :" +#: ../cache/locales.php:112 +msgid "An error occured : " msgstr "" -#: [bookmarks]configure +#: ../cache/locales.php:113 msgid "Configure" msgstr "" -#: [url]add +#: ../cache/locales.php:114 msgid "Add a new URL" msgstr "" -#: [url]url +#: ../cache/locales.php:115 msgid "URL" msgstr "" -#: [url]name -msgctxt "[url]name" -msgid "Name" -msgstr "" - -#: [message]published +#: ../cache/locales.php:117 msgid "Message Published" msgstr "" -#: [message]encrypted +#: ../cache/locales.php:118 ../cache/locales.php:138 msgid "Encrypted message" msgstr "" -#: [message]composing [chats]composing +#: ../cache/locales.php:119 msgid "Composing..." msgstr "" -#: [message]paused [chats]paused +#: ../cache/locales.php:120 msgid "Paused..." msgstr "" -#: [message]gone +#: ../cache/locales.php:121 msgid "Contact gone" msgstr "" -#: [chat]attention +#: ../cache/locales.php:122 +#, php-format msgid "%s needs your attention" msgstr "" -#: [chat]placeholder +#: ../cache/locales.php:123 msgid "Your message here..." msgstr "" -#: [chat]smileys +#: ../cache/locales.php:124 msgid "Smileys" msgstr "" -#: [chat]empty_title [button]chat +#: ../cache/locales.php:125 ../cache/locales.php:139 msgid "Chat" msgstr "" -#: [chat]empty_text +#: ../cache/locales.php:126 msgid "Discuss with your contacts" msgstr "" -#: [chat]frequent [chats]frequent -msgid "Frequent contacts" -msgstr "" - -#: [chatroom]members +#: ../cache/locales.php:127 msgid "Members" msgstr "" -#: [chatroom]connected [chatrooms]connected +#: ../cache/locales.php:128 ../cache/locales.php:376 msgid "Connected to the chatroom" msgstr "" -#: [chatroom]disconnected [chatrooms]disconnected +#: ../cache/locales.php:129 ../cache/locales.php:377 msgid "Disconnected from the chatroom" msgstr "" -#: [chatroom]config [group]configuration [page]configuration +#: ../cache/locales.php:130 ../cache/locales.php:200 ../cache/locales.php:469 msgid "Configuration" msgstr "" -#: [chatroom]config_saved +#: ../cache/locales.php:131 msgid "Configuration saved" msgstr "" -#: [chatroom]subject +#: ../cache/locales.php:132 msgid "Subject" msgstr "" -#: [chatroom]subject_changed +#: ../cache/locales.php:133 msgid "Subject changed" msgstr "" -#: [chats]empty_title -msgid "No chats yet..." +#: ../cache/locales.php:134 +msgid "Open a new conversation by clicking on the plus button bellow" msgstr "" -#: [chats]empty -msgid "Open a new conversation by clicking on the plus button bellow or visit the Contacts page." -msgstr "" - -#: [chats]add +#: ../cache/locales.php:135 msgid "Chat with a contact" msgstr "" -#: [chats]more +#: ../cache/locales.php:136 +msgid "Frequent contacts" +msgstr "" + +#: ../cache/locales.php:137 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 "" - -#: [config]general +#: ../cache/locales.php:140 msgid "General" msgstr "" -#: [config]language +#: ../cache/locales.php:141 msgid "Language" msgstr "" -#: [config]roster +#: ../cache/locales.php:142 msgid "Roster display" msgstr "" -#: [config]roster_show +#: ../cache/locales.php:143 msgid "Show the offline contacts" msgstr "" -#: [config]roster_hide +#: ../cache/locales.php:144 msgid "Hide the offline contacts" msgstr "" -#: [config]appearence +#: ../cache/locales.php:145 msgid "Appearence" msgstr "" -#: [config]info -msgid "This configuration is shared wherever you are connected" +#: ../cache/locales.php:146 +msgid "This configuration is shared wherever you are connected !" msgstr "" -#: [notifications]message +#: ../cache/locales.php:148 msgid "Notify on incoming message" msgstr "" -#: [notifications]desktop +#: ../cache/locales.php:149 msgid "Use desktop notifications" msgstr "" -#: [general]legend [general]general_title +#: ../cache/locales.php:150 +msgid "Data" +msgstr "" + +#: ../cache/locales.php:151 +msgid "Cache" +msgstr "" + +#: ../cache/locales.php:152 ../cache/locales.php:218 ../cache/locales.php:466 +msgid "Contacts" +msgstr "" + +#: ../cache/locales.php:153 ../cache/locales.php:480 +msgid "Posts" +msgstr "" + +#: ../cache/locales.php:154 +msgid "Messages" +msgstr "" + +#: ../cache/locales.php:155 ../cache/locales.php:423 msgid "General Informations" msgstr "" -#: [general]name [public_groups]name [chatrooms]name -msgid "Name" -msgstr "" - -#: [general]date_of_birth +#: ../cache/locales.php:158 ../cache/locales.php:427 msgid "Date of Birth" msgstr "" -#: [general]gender +#: ../cache/locales.php:159 ../cache/locales.php:428 msgid "Gender" msgstr "" -#: [general]marital +#: ../cache/locales.php:160 ../cache/locales.php:429 msgid "Marital Status" msgstr "" -#: [general]email +#: ../cache/locales.php:161 ../cache/locales.php:426 msgid "Email" msgstr "" -#: [general]website +#: ../cache/locales.php:162 ../cache/locales.php:430 msgid "Website" msgstr "" -#: [general]about +#: ../cache/locales.php:163 ../cache/locales.php:431 msgid "About Me" msgstr "" -#: [general]accounts +#: ../cache/locales.php:164 msgid "Other Accounts" msgstr "" -#: [general]tune +#: ../cache/locales.php:165 msgid "Is Listening" msgstr "" -#: [position]legend [position]position_title +#: ../cache/locales.php:166 ../cache/locales.php:432 msgid "Geographic Position" msgstr "" -#: [position]locality +#: ../cache/locales.php:167 ../cache/locales.php:433 msgid "Locality" msgstr "" -#: [position]country +#: ../cache/locales.php:168 ../cache/locales.php:434 msgid "Country" msgstr "" -#: [mood]title +#: ../cache/locales.php:169 msgid "Mood" msgstr "" -#: [mood]im +#: ../cache/locales.php:170 msgid "I'm " msgstr "" -#: [listen]title +#: ../cache/locales.php:171 msgid "Listening" msgstr "" -#: [last]title +#: ../cache/locales.php:173 msgid "Last seen" msgstr "" -#: [client]title +#: ../cache/locales.php:174 msgid "Client Informations" msgstr "" -#: [explore]last_registered +#: ../cache/locales.php:175 msgid "Last registered" msgstr "" -#: [explore]explore +#: ../cache/locales.php:176 msgid "Find some new friends" msgstr "" -#: [edit]title [button]edit +#: ../cache/locales.php:177 ../cache/locales.php:533 msgid "Edit" msgstr "" -#: [edit]alias +#: ../cache/locales.php:178 msgid "Alias" msgstr "" -#: [edit]group +#: ../cache/locales.php:179 msgid "Group" msgstr "" -#: [edit]updated [roster]updated +#: ../cache/locales.php:180 ../cache/locales.php:400 msgid "Contact updated" msgstr "" -#: [delete]title +#: ../cache/locales.php:181 msgid "Are you sure?" msgstr "" -#: [delete]text -msgid "You are going to delete one of your contacts, please confirm your action" +#: ../cache/locales.php:182 +msgid "" +"You are going to delete one of your contacts, please confirm your action" msgstr "" -#: [age]years +#: ../cache/locales.php:183 +#, php-format msgid "%s years" msgstr "" -#: [blog]last +#: ../cache/locales.php:184 msgid "Last public post" msgstr "" -#: [subscription]to -msgid "You can see this contact status" -msgstr "" - -#: [subscription]to_button -msgid "Share my status" -msgstr "" - -#: [subscription]to_text -msgid "But this contact cannot see yours" -msgstr "" - -#: [subscription]from -msgid "You are not subscribed to this contact" -msgstr "" - -#: [subscription]from_button -msgid "Ask to subscribe" -msgstr "" - -#: [subscription]from_text -msgid "But this contact can still see if you are online" -msgstr "" - -#: [subscription]nil -msgid "No subscriptions" -msgstr "" - -#: [subscription]nil_button -msgid "Invite" -msgstr "" - -#: [subscription]nil_text -msgid "This contact is in your contact list but there is no subscriptions between the two accounts" -msgstr "" - -#: [group]subscribe +#: ../cache/locales.php:185 msgid "Subscribe" msgstr "" -#: [group]subscribed +#: ../cache/locales.php:186 msgid "Subscribed" msgstr "" -#: [group]unsubscribe +#: ../cache/locales.php:187 msgid "Unsubscribe" msgstr "" -#: [group]unsubscribe_text +#: ../cache/locales.php:188 msgid "You are going to unsubscribe from this Group" msgstr "" -#: [group]unsubscribed +#: ../cache/locales.php:189 msgid "Unsubscribed" msgstr "" -#: [group]share_label +#: ../cache/locales.php:190 msgid "Make your membership to this group public to your friends" msgstr "" -#: [group]label_label +#: ../cache/locales.php:191 msgid "Give a label for this group" msgstr "" -#: [group]sure +#: ../cache/locales.php:192 msgid "Are you sure ?" msgstr "" -#: [group]empty_text +#: ../cache/locales.php:194 msgid "Discover, follow and share" msgstr "" -#: [group]empty +#: ../cache/locales.php:195 msgid "Something bad happened to this group" msgstr "" -#: [group]config_saved +#: ../cache/locales.php:196 msgid "Group configuration saved" msgstr "" -#: [group]delete_title +#: ../cache/locales.php:197 msgid "Delete the group" msgstr "" -#: [group]delete_text -msgid "You are going to delete the following group. Please confirm your action." +#: ../cache/locales.php:198 +msgid "" +"You are going to delete the following group. Please confirm your action." msgstr "" -#: [group]delete_clean_text -msgid "It seems that this group doesn't exists anymore. Do you want to remove it from your subscriptions?" +#: ../cache/locales.php:199 +msgid "" +"It seems that this group doesn't exists anymore. Do you want to remove it " +"from your subscriptions?" msgstr "" -#: [group]counter -msgid "%s groups on this server" -msgstr "" - -#: [group]subscriptions [statistics]subscriptions +#: ../cache/locales.php:201 ../cache/locales.php:408 msgid "Subscriptions" msgstr "" -#: [group]servers -msgid "Groups servers" -msgstr "" - -#: [group]search_server -msgid "Search for a new server" -msgstr "" - -#: [group]help_info1 -msgid "Groups are the perfect way to share posts about topics that you like with all the other Movim's users." -msgstr "" - -#: [group]help_info2 -msgid "Choose a server and a Group and subscribe to it using the %s button in the header. You can also create a new one using the %s button." -msgstr "" - -#: [group]help_info3 -msgid "Done? You can now publish a new post in the Group by using the %s button." -msgstr "" - -#: [group]help_info4 -msgid "You will find a list of all your subscribed Groups in My Subscriptions and receive instantly all the new incoming posts in the %sNews%s page." -msgstr "" - -#: [groups]empty_title +#: ../cache/locales.php:202 ../cache/locales.php:290 msgid "Hello" msgstr "" -#: [groups]contact_post [hello]contact_post [menu]contact_post +#: ../cache/locales.php:203 ../cache/locales.php:225 ../cache/locales.php:291 msgid "Contact post" msgstr "" -#: [groups]empty_text1 -msgid "You don't have any subscriptions yet, select a group server above to start exploring." +#: ../cache/locales.php:204 +msgid "" +"You don't have any subscriptions yet, select a group server above to start " +"exploring." msgstr "" -#: [groups]empty_text2 +#: ../cache/locales.php:205 msgid "Subscribe to your favorite feeds by bookmarking them." msgstr "" -#: [groups]subscriptions +#: ../cache/locales.php:206 msgid "My Subscriptions" msgstr "" -#: [groups]add +#: ../cache/locales.php:207 msgid "Create a new Group" msgstr "" -#: [groups]name +#: ../cache/locales.php:208 msgid "Group name" msgstr "" -#: [groups]name_example +#: ../cache/locales.php:209 msgid "My Little Pony - Fan Club" msgstr "" -#: [groups]created +#: ../cache/locales.php:210 msgid "Group created successfully" msgstr "" -#: [groups]deleted +#: ../cache/locales.php:211 msgid "Group deleted successfully" msgstr "" -#: [groups]name_error +#: ../cache/locales.php:212 msgid "Please provide a valid group name (4 characters minimum)" msgstr "" -#: [groups]no_creation +#: ../cache/locales.php:213 msgid "You cannot create a new Group on this server" msgstr "" -#: [groups]sub +#: ../cache/locales.php:214 +#, php-format msgid "%s subscribers" msgstr "" -#: [groups]num +#: ../cache/locales.php:215 +#, php-format msgid "%s posts" msgstr "" -#: [groups]disco_error -msgid "This server doesn't exists" -msgstr "" - -#: [menu]all +#: ../cache/locales.php:216 msgid "All" msgstr "" -#: [menu]refresh +#: ../cache/locales.php:219 msgid "Refresh all the streams" msgstr "" -#: [roster]search -msgid "Search in your contacts" -msgstr "" - -#: [hello]active_contacts -msgid "Active contacts" -msgstr "" - -#: [hello]chat -msgid "Go on the Chat page" -msgstr "" - -#: [hello]news [page]news -msgid "News" -msgstr "" - -#: [hello]news_page -msgid "Read all theses articles on the News page" -msgstr "" - -#: [hello]blog_title -msgid "Visit your public blog" -msgstr "" - -#: [hello]blog_text -msgid "See your public posts and share them with all your contacts" -msgstr "" - -#: [hello]share_title -msgid "Universal share button" -msgstr "" - -#: [hello]share_text -msgid "Bookmark or drag and drop the following button in your toolbar and use it on all the pages you want to share on Movim" -msgstr "" - -#: [hello]share_button -msgid "Share on Movim" -msgstr "" - -#: [help]faq -msgid "Frequently Asked Questions" -msgstr "" - -#: [banner]title -msgid "What do the little banners refer to ?" -msgstr "" - -#: [banner]info1 -msgid "Thanks to these five little banners, you can quickly identitfy the level of confdentiality applied to the information you provide." -msgstr "" - -#: [banner]white -msgid "White, only you can see the information" -msgstr "" - -#: [banner]green -msgid "Green, you have chosen some contacts who can see your information" -msgstr "" - -#: [banner]orange -msgid "Orange, all your contact list can see your information" -msgstr "" - -#: [banner]red -msgid "Red, everybody in the XMPP network can see your information" -msgstr "" - -#: [banner]black -msgid "Black, the whole Internet can see your information" -msgstr "" - -#: [wiki]question -msgid "Looking for some documentation ?" -msgstr "" - -#: [wiki]button -msgid "Read the Wiki" -msgstr "" - -#: [ml]question -msgid "Talk with us by email ?" -msgstr "" - -#: [ml]button -msgid "Join the Mailing List" -msgstr "" - -#: [chatroom]question -msgid "Chat with the team ?" -msgstr "" - -#: [chatroom]button -msgid "Join the Chatroom" -msgstr "" - -#: [init]location -msgid "Location node created" -msgstr "" - -#: [init]bookmark -msgid "Bookmark node created" -msgstr "" - -#: [init]vcard4 -msgid "Profile node created" -msgstr "" - -#: [init]avatar -msgid "Avatar node created" -msgstr "" - -#: [init]subscriptions -msgid "Subscriptions node created" -msgstr "" - -#: [init]microblog -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 "" - -#: [error]jid -msgid "Invalid JID" -msgstr "" - -#: [error]empty_challenge -msgid "Empty Challenge from the server" -msgstr "" - -#: [error]dns -msgid "XMPP Domain error, your account is not a correct Jabber ID" -msgstr "" - -#: [error]data_missings -msgid "Some data are missing !" -msgstr "" - -#: [error]wrong_password -msgid "Wrong password" -msgstr "" - -#: [error]internal -msgid "Internal server error" -msgstr "" - -#: [error]session -msgid "Session error" -msgstr "" - -#: [error]account_created -msgid "Account successfully created" -msgstr "" - -#: [error]xmpp_unauthorized -msgctxt "[error]xmpp_unauthorized" -msgid "Your XMPP server is unauthorized" -msgstr "" - -#: [error]mec_error -msgid "The server takes too much time to respond" -msgstr "" - -#: [error]too_old -msgid "Your web browser is too old to use with Movim." -msgstr "" - -#: [error]websocket -msgid "Movim cannot talk with the server, please try again later (Websocket connection error)" -msgstr "" - -#: [error]impossible -msgid "Impossible login" -msgstr "" - -#: [error]title -msgid "Oops!" -msgstr "" - -#: [error]default [visio]unknown_error -msgid "Unknown error" -msgstr "" - -#: [error]login_format -msgid "Invalid username format" -msgstr "" - -#: [error]password_format -msgid "Invalid password format" -msgstr "" - -#: [error]unauthorized -msgctxt "[error]unauthorized" -msgid "Your XMPP server is unauthorized" -msgstr "" - -#: [error]conflict -msgid "A Movim session is already open on an other device" -msgstr "" - -#: [error]wrong_account -msgid "Movim failed to authenticate. You entered wrong data" -msgstr "" - -#: [error]mechanism -msgid "Authentication mechanism not supported by Movim" -msgstr "" - -#: [error]fail_auth -msgid "The XMPP authentification failed" -msgstr "" - -#: [account]title [accounts]accounts_title -msgid "Accounts" -msgstr "" - -#: [form]username -msgid "My address" -msgstr "" - -#: [form]create_one -msgid "Create one !" -msgstr "" - -#: [form]another_account -msgid "Another account" -msgstr "" - -#: [form]no_account -msgid "No account yet ?" -msgstr "" - -#: [form]whitelist.info -msgid "You can login with accounts from theses servers" -msgstr "" - -#: [form]connected -msgid "Connected" -msgstr "" - -#: [form]population -msgid "Population" -msgstr "" - -#: [menu]empty_title -msgid "No news yet..." -msgstr "" - -#: [menu]empty -msgid "Welcome on your news feed, here you will see all the posts published by your contacts and in the groups you have subscribed." -msgstr "" - -#: [menu]refresh -msgid "Refreshing all the streams" -msgstr "" - -#: [menu]public -msgid "This post is public" -msgstr "" - -#: [affiliations]title -msgid "Manage your members" -msgstr "" - -#: [affiliations]get -msgid "Get the members" -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 "" - -#: [notifs]title -msgid "Pending Invitations" -msgstr "" - -#: [notifs]wants_to_talk -msgid "%s wants to talk with you" -msgstr "" - -#: [notifs]manage -msgid "Manage" -msgstr "" - -#: [post]news_feed -msgid "News Feed" -msgstr "" - -#: [post]placeholder -msgid "Discover and register to the groups you are interested in" -msgstr "" - -#: [post]preview [page]preview -msgid "Preview" -msgstr "" - -#: [post]help [page]help -msgid "Help" -msgstr "" - -#: [post]help_more -msgid "More help" -msgstr "" - -#: [post]help_manual -msgid "Markdown syntax manual" -msgstr "" - -#: [post]title -msgid "Title" -msgstr "" - -#: [post]content -msgid "Content" -msgstr "" - -#: [post]link -msgid "Link" -msgstr "" - -#: [post]tags -msgid "Tags" -msgstr "" - -#: [post]valid_url [publish]valid_url -msgid "Please enter a valid url" -msgstr "" - -#: [post]no_content_preview [publish]no_content_preview -msgid "No content to preview" -msgstr "" - -#: [post]no_content [publish]no_content [post]empty -msgid "No content" -msgstr "" - -#: [post]published -msgid "Post published" -msgstr "" - -#: [post]deleted -msgid "Post deleted" -msgstr "" - -#: [post]gallery -msgid "This picture will be added to your gallery" -msgstr "" - -#: [post]hot -msgid "What's Hot" -msgstr "" - -#: [post]hot_text -msgid "Posts recently published in Groups that you are not subscribed (yet)" -msgstr "" - -#: [post]new [publish]new -msgid "New post" -msgstr "" - -#: [post]embed_tip -msgid "You can also use services like Imgur or Flickr to host your picture and paste the link here." -msgstr "" - -#: [post]repost -msgid "This is a re-post from %s" -msgstr "" - -#: [post]repost_profile -msgid "See %s profile" -msgstr "" - -#: [post]public -msgid "Publish this post publicly?" -msgstr "" - -#: [post]blog_add -msgid "Post published on your blog" -msgstr "" - -#: [post]blog_remove -msgid "Post removed from your blog" -msgstr "" - -#: [post]delete_title [post]delete -msgid "Delete this post" -msgstr "" - -#: [post]delete_text -msgid "You are going to delete this post, please confirm your action" -msgstr "" - -#: [post]comments_disabled -msgid "Comments disabled" -msgstr "" - -#: [post]comment_published -msgid "Comment published" -msgstr "" - -#: [status]disconnect -msgid "Disconnect" -msgstr "" - -#: [status]here -msgid "Your status here !" -msgstr "" - -#: [status]updated -msgid "Status updated" -msgstr "" - -#: [status]status -msgid "Status" -msgstr "" - -#: [status]presence -msgid "Presence" -msgstr "" - -#: [status]online -msgid "Online with Movim" -msgstr "" - -#: [publish]title -msgid "Publish" -msgstr "" - -#: [publish]attach -msgid "Add a file or a picture to your post" -msgstr "" - -#: [publish]no_publication -msgid "You cannot publish a post on this Group" -msgstr "" - -#: [publish]form_filled -msgid "Some fields have been filled in. Do you still want to go back and loose their content?" -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 "" - -#: [rooms]empty_text1 -msgid "You don't have any chatroom yet." -msgstr "" - -#: [rooms]empty_text2 -msgid "Add one by clicking on the add button in the header." -msgstr "" - -#: [chatrooms]title -msgid "Chatrooms" -msgstr "" - -#: [chatrooms]name_placeholder -msgid "My Favorite Room" -msgstr "" - -#: [chatrooms]users -msgid "Users in the room" -msgstr "" - -#: [chatrooms]bad_nickname -msgid "Please enter a correct nickname (2 to 40 characters)" -msgstr "" - -#: [room]anonymous_title -msgid "Public chatroom" -msgstr "" - -#: [room]no_room -msgid "Please provide a room address" -msgstr "" - -#: [room]anonymous_text1 -msgid "You are currently logued as an anonymous user." -msgstr "" - -#: [room]anonymous_text2 -msgid "You can join using your own account or create one on the login page by loging out using the cross in the top-right corner." -msgstr "" - -#: [room]anonymous_login -msgid "Login on %s" -msgstr "" - -#: [room]nick -msgid "Your nickname" -msgstr "" - -#: [roster]ungrouped -msgid "Ungrouped" -msgstr "" - -#: [roster]show_disconnected -msgid "Show disconnected contacts" -msgstr "" - -#: [roster]hide_disconnected -msgid "Hide disconnected contacts" -msgstr "" - -#: [roster]show_group -msgid "Show group %s" -msgstr "" - -#: [roster]hide_group -msgid "Hide group %s" -msgstr "" - -#: [roster]jid_error -msgid "Please enter a valid Jabber ID" -msgstr "" - -#: [roster]no_contacts_title -msgid "No contacts ?" -msgstr "" - -#: [roster]no_contacts_text -msgid "You can add one using the + button bellow" -msgstr "" - -#: [roster]show_hide -msgid "Show/Hide" -msgstr "" - -#: [roster]add_contact_info1 -msgid "Enter the Jabber ID of your contact." -msgstr "" - -#: [roster]add_contact_info2 -msgid "Press enter to validate." -msgstr "" - -#: [roster]jid -msgid "JID" -msgstr "" - -#: [roster]results -msgid "Results" -msgstr "" - -#: [roster]added -msgid "Contact added" -msgstr "" - -#: [roster]deleted -msgid "Contact deleted" -msgstr "" - -#: [roster]search +#: ../cache/locales.php:220 ../cache/locales.php:402 msgid "Search" msgstr "" -#: [share]error +#: ../cache/locales.php:221 +msgid "Go on the Chat page" +msgstr "" + +#: ../cache/locales.php:222 +msgid "Read all theses articles on the News page" +msgstr "" + +#: ../cache/locales.php:223 +msgid "Visit your public blog" +msgstr "" + +#: ../cache/locales.php:224 +msgid "See your public posts and share them with all your contacts" +msgstr "" + +#: ../cache/locales.php:226 +msgid "Universal share button" +msgstr "" + +#: ../cache/locales.php:227 +msgid "" +"Bookmark or drag and drop the following button in your toolbar and use it on " +"all the pages you want to share on Movim" +msgstr "" + +#: ../cache/locales.php:228 +msgid "Share on Movim" +msgstr "" + +#: ../cache/locales.php:229 +msgid "Frequently Asked Questions" +msgstr "" + +#: ../cache/locales.php:230 +msgid "What do the little banners refer to ?" +msgstr "" + +#: ../cache/locales.php:231 +msgid "" +"Thanks to these five little banners, you can quickly identitfy the level of " +"confdentiality applied to the information you provide." +msgstr "" + +#: ../cache/locales.php:232 +msgid "White, only you can see the information" +msgstr "" + +#: ../cache/locales.php:233 +msgid "Green, you have chosen some contacts who can see your information" +msgstr "" + +#: ../cache/locales.php:234 +msgid "Orange, all your contact list can see your information" +msgstr "" + +#: ../cache/locales.php:235 +msgid "Red, everybody in the XMPP network can see your information" +msgstr "" + +#: ../cache/locales.php:236 +msgid "Black, the whole Internet can see your information" +msgstr "" + +#: ../cache/locales.php:237 +msgid "Looking for some documentation ?" +msgstr "" + +#: ../cache/locales.php:238 +msgid "Read the Wiki" +msgstr "" + +#: ../cache/locales.php:239 +msgid "Talk with us by email ?" +msgstr "" + +#: ../cache/locales.php:240 +msgid "Join the Mailing List" +msgstr "" + +#: ../cache/locales.php:241 +msgid "Chat with the team ?" +msgstr "" + +#: ../cache/locales.php:242 +msgid "Join the Chatroom" +msgstr "" + +#: ../cache/locales.php:243 +msgid "Location node created" +msgstr "" + +#: ../cache/locales.php:244 +msgid "Bookmark node created" +msgstr "" + +#: ../cache/locales.php:245 +msgid "Profile node created" +msgstr "" + +#: ../cache/locales.php:246 +msgid "Avatar node created" +msgstr "" + +#: ../cache/locales.php:247 +msgid "Subscriptions node created" +msgstr "" + +#: ../cache/locales.php:248 +msgid "Microblog node created" +msgstr "" + +#: ../cache/locales.php:249 +msgid "Location" +msgstr "" + +#: ../cache/locales.php:250 +msgid "Wrong position" +msgstr "" + +#: ../cache/locales.php:251 +msgid "Location updated" +msgstr "" + +#: ../cache/locales.php:252 +msgid "Update my position" +msgstr "" + +#: ../cache/locales.php:253 +msgid "Wrong username" +msgstr "" + +#: ../cache/locales.php:254 +msgid "Invalid JID" +msgstr "" + +#: ../cache/locales.php:255 +msgid "Empty Challenge from the server" +msgstr "" + +#: ../cache/locales.php:256 +msgid "XMPP Domain error, your account is not a correct Jabber ID" +msgstr "" + +#: ../cache/locales.php:257 +msgid "Some data are missing !" +msgstr "" + +#: ../cache/locales.php:258 +msgid "Wrong password" +msgstr "" + +#: ../cache/locales.php:259 +msgid "Internal server error" +msgstr "" + +#: ../cache/locales.php:260 +msgid "Session error" +msgstr "" + +#: ../cache/locales.php:261 +msgid "Account successfully created" +msgstr "" + +#: ../cache/locales.php:262 ../cache/locales.php:271 +msgid "Your XMPP server is unauthorized" +msgstr "" + +#: ../cache/locales.php:263 +msgid "The server takes too much time to respond" +msgstr "" + +#: ../cache/locales.php:264 +msgid "Your web browser is too old to use with Movim." +msgstr "" + +#: ../cache/locales.php:265 +msgid "" +"Movim cannot talk with the server, please try again later (Websocket " +"connection error)" +msgstr "" + +#: ../cache/locales.php:266 +msgid "Impossible login" +msgstr "" + +#: ../cache/locales.php:267 +msgid "Oops!" +msgstr "" + +#: ../cache/locales.php:268 ../cache/locales.php:449 ../cache/locales.php:455 +msgid "Unknown error" +msgstr "" + +#: ../cache/locales.php:269 +msgid "Invalid username format" +msgstr "" + +#: ../cache/locales.php:270 +msgid "Invalid password format" +msgstr "" + +#: ../cache/locales.php:272 +msgid "A Movim session is already open on an other device" +msgstr "" + +#: ../cache/locales.php:273 +msgid "Movim failed to authenticate. You entered wrong data" +msgstr "" + +#: ../cache/locales.php:274 +msgid "Authentication mechanism not supported by Movim" +msgstr "" + +#: ../cache/locales.php:275 +msgid "The XMPP authentification failed" +msgstr "" + +#: ../cache/locales.php:276 +#, php-format +msgid "" +"You can login with Facebook (chat only) using %syour.id@chat.facebook.com%s " +"and your password" +msgstr "" + +#: ../cache/locales.php:277 +#, php-format +msgid "%sGmail accounts are also compatible%s but are not fully supported" +msgstr "" + +#: ../cache/locales.php:278 +msgid "You can login using your favorite Jabber account" +msgstr "" + +#: ../cache/locales.php:279 +msgid "or with our demonstration account" +msgstr "" + +#: ../cache/locales.php:280 ../cache/locales.php:435 +msgid "Accounts" +msgstr "" + +#: ../cache/locales.php:281 +msgid "My address" +msgstr "" + +#: ../cache/locales.php:283 +msgid "Create one !" +msgstr "" + +#: ../cache/locales.php:284 +msgid "No account yet ?" +msgstr "" + +#: ../cache/locales.php:285 +msgid "Another account" +msgstr "" + +#: ../cache/locales.php:286 +msgid "You can login with accounts from theses servers" +msgstr "" + +#: ../cache/locales.php:287 +msgid "Connected" +msgstr "" + +#: ../cache/locales.php:288 +msgid "Population" +msgstr "" + +#: ../cache/locales.php:289 +msgid "Bad nickname (between 4 and 40 characters)" +msgstr "" + +#: ../cache/locales.php:292 +msgid "" +"Welcome on your news feed, here you will see all the posts published in the " +"groups you have subscribed." +msgstr "" + +#: ../cache/locales.php:293 +msgid "Refreshing all the streams" +msgstr "" + +#: ../cache/locales.php:294 +msgid "This post is public" +msgstr "" + +#: ../cache/locales.php:295 +msgid "Manage your members" +msgstr "" + +#: ../cache/locales.php:296 +msgid "Get the members" +msgstr "" + +#: ../cache/locales.php:297 +msgid "Affiliations saved" +msgstr "" + +#: ../cache/locales.php:298 +msgid "Manage your subscriptions" +msgstr "" + +#: ../cache/locales.php:299 +msgid "Manage the subscriptions" +msgstr "" + +#: ../cache/locales.php:300 +msgid "Get the subscriptions" +msgstr "" + +#: ../cache/locales.php:301 +msgid "Subscriptions saved" +msgstr "" + +#: ../cache/locales.php:302 +msgid "Pending Invitations" +msgstr "" + +#: ../cache/locales.php:303 +#, php-format +msgid "%s wants to talk with you" +msgstr "" + +#: ../cache/locales.php:304 +msgid "Manage" +msgstr "" + +#: ../cache/locales.php:305 ../cache/locales.php:338 +msgid "News Feed" +msgstr "" + +#: ../cache/locales.php:306 ../cache/locales.php:339 +msgid "Discover and register to the groups you are interested in" +msgstr "" + +#: ../cache/locales.php:307 ../cache/locales.php:340 ../cache/locales.php:482 +msgid "Preview" +msgstr "" + +#: ../cache/locales.php:308 ../cache/locales.php:341 ../cache/locales.php:478 +msgid "Help" +msgstr "" + +#: ../cache/locales.php:309 ../cache/locales.php:342 +msgid "More help" +msgstr "" + +#: ../cache/locales.php:310 ../cache/locales.php:343 +msgid "Markdown syntax manual" +msgstr "" + +#: ../cache/locales.php:311 ../cache/locales.php:344 ../cache/locales.php:681 +msgid "Title" +msgstr "" + +#: ../cache/locales.php:312 ../cache/locales.php:345 +msgid "Content" +msgstr "" + +#: ../cache/locales.php:313 ../cache/locales.php:346 +msgid "Link" +msgstr "" + +#: ../cache/locales.php:314 ../cache/locales.php:347 +msgid "Tags" +msgstr "" + +#: ../cache/locales.php:315 ../cache/locales.php:348 +msgid "Please enter a valid url" +msgstr "" + +#: ../cache/locales.php:316 ../cache/locales.php:349 +msgid "No content to preview" +msgstr "" + +#: ../cache/locales.php:317 ../cache/locales.php:350 ../cache/locales.php:687 +msgid "No content" +msgstr "" + +#: ../cache/locales.php:318 ../cache/locales.php:351 +msgid "Post published" +msgstr "" + +#: ../cache/locales.php:319 ../cache/locales.php:352 +msgid "Post deleted" +msgstr "" + +#: ../cache/locales.php:320 ../cache/locales.php:353 +msgid "This picture will be added to your gallery" +msgstr "" + +#: ../cache/locales.php:321 ../cache/locales.php:354 +msgid "What's Hot" +msgstr "" + +#: ../cache/locales.php:322 ../cache/locales.php:355 +msgid "New post" +msgstr "" + +#: ../cache/locales.php:323 ../cache/locales.php:357 +msgid "" +"You can also use services like Imgur or Flickr to host your picture and " +"paste the link here." +msgstr "" + +#: ../cache/locales.php:324 +#, php-format +msgid "This is a re-post from %s" +msgstr "" + +#: ../cache/locales.php:325 +#, php-format +msgid "See %s profile" +msgstr "" + +#: ../cache/locales.php:326 +msgid "Publish this post on your public feed?" +msgstr "" + +#: ../cache/locales.php:327 +msgid "Post published on your blog" +msgstr "" + +#: ../cache/locales.php:328 +msgid "Post removed from your blog" +msgstr "" + +#: ../cache/locales.php:329 ../cache/locales.php:701 +msgid "Delete this post" +msgstr "" + +#: ../cache/locales.php:330 +msgid "You are going to delete this post, please confirm your action" +msgstr "" + +#: ../cache/locales.php:331 +msgid "Comments disabled" +msgstr "" + +#: ../cache/locales.php:332 +msgid "Comment published" +msgstr "" + +#: ../cache/locales.php:333 +msgid "Disconnect" +msgstr "" + +#: ../cache/locales.php:334 +msgid "Your status here !" +msgstr "" + +#: ../cache/locales.php:335 +msgid "Status updated" +msgstr "" + +#: ../cache/locales.php:336 +msgid "Status" +msgstr "" + +#: ../cache/locales.php:337 +msgid "Presence" +msgstr "" + +#: ../cache/locales.php:356 +msgid "Publish" +msgstr "" + +#: ../cache/locales.php:358 +msgid "You cannot publish a post on this Group" +msgstr "" + +#: ../cache/locales.php:359 +msgid "" +"Some fields have been filled in. Do you still want to go back and loose " +"their content?" +msgstr "" + +#: ../cache/locales.php:360 +msgid "Shared" +msgstr "" + +#: ../cache/locales.php:362 +#, php-format +msgid "%s has been added to your public groups" +msgstr "" + +#: ../cache/locales.php:363 +#, php-format +msgid "%s has been removed from your public groups" +msgstr "" + +#: ../cache/locales.php:364 +msgid "Add a chatroom" +msgstr "" + +#: ../cache/locales.php:365 +msgid "You don't have any chatroom yet." +msgstr "" + +#: ../cache/locales.php:366 +msgid "Add one by clicking on the add button in the header." +msgstr "" + +#: ../cache/locales.php:367 +msgid "Chatrooms" +msgstr "" + +#: ../cache/locales.php:370 +msgid "My Favorite Room" +msgstr "" + +#: ../cache/locales.php:374 +msgid "Remove a chatroom" +msgstr "" + +#: ../cache/locales.php:375 +msgid "" +"You are going to remove the following chatroom. Please confirm your action." +msgstr "" + +#: ../cache/locales.php:378 +msgid "Users in the room" +msgstr "" + +#: ../cache/locales.php:379 +msgid "Please enter a correct nickname (6 to 40 characters)" +msgstr "" + +#: ../cache/locales.php:381 +msgid "Public chatroom" +msgstr "" + +#: ../cache/locales.php:382 +msgid "Please provide a room address" +msgstr "" + +#: ../cache/locales.php:383 +msgid "You are currently logued as an anonymous user." +msgstr "" + +#: ../cache/locales.php:384 +msgid "" +"You can join using your own account or create one on the login page by " +"loging out using the cross in the top-right corner." +msgstr "" + +#: ../cache/locales.php:385 +#, php-format +msgid "Login on %s" +msgstr "" + +#: ../cache/locales.php:386 +msgid "Your nickname" +msgstr "" + +#: ../cache/locales.php:387 +msgid "Ungrouped" +msgstr "" + +#: ../cache/locales.php:388 +msgid "Show disconnected contacts" +msgstr "" + +#: ../cache/locales.php:389 +msgid "Hide disconnected contacts" +msgstr "" + +#: ../cache/locales.php:390 +#, php-format +msgid "Show group %s" +msgstr "" + +#: ../cache/locales.php:391 +#, php-format +msgid "Hide group %s" +msgstr "" + +#: ../cache/locales.php:392 +msgid "Please enter a valid Jabber ID" +msgstr "" + +#: ../cache/locales.php:393 +msgid "" +"No contacts ? You can add one using the + button bellow or going to the " +"Explore page" +msgstr "" + +#: ../cache/locales.php:394 +msgid "Show/Hide" +msgstr "" + +#: ../cache/locales.php:395 +msgid "Enter the Jabber ID of your contact." +msgstr "" + +#: ../cache/locales.php:396 +msgid "Press enter to validate." +msgstr "" + +#: ../cache/locales.php:397 +msgid "JID" +msgstr "" + +#: ../cache/locales.php:398 +msgid "Results" +msgstr "" + +#: ../cache/locales.php:399 +msgid "Contact added" +msgstr "" + +#: ../cache/locales.php:401 +msgid "Contact deleted" +msgstr "" + +#: ../cache/locales.php:403 msgid "This is not a valid url" msgstr "" -#: [share]success +#: ../cache/locales.php:404 msgid "Sharing the URL" msgstr "" -#: [statistics]title +#: ../cache/locales.php:405 msgid "Statistics" msgstr "" -#: [statistics]since +#: ../cache/locales.php:406 msgid "Since" msgstr "" -#: [statistics]sessions +#: ../cache/locales.php:407 msgid "Sessions" msgstr "" -#: [statistics]monthly_sub +#: ../cache/locales.php:409 msgid "Monthly Subscriptions" msgstr "" -#: [statistics]monthly_sub_cum +#: ../cache/locales.php:410 msgid "Monthly Subscriptions Cumulated" msgstr "" -#: [subscribe]info -msgid "Movim is a decentralized social network, before creating a new account you need to choose a server to register." +#: ../cache/locales.php:412 +msgid "" +"Movim is a decentralized social network, before creating a new account you " +"need to choose a server to register." msgstr "" -#: [subscribe]server_question +#: ../cache/locales.php:413 msgid "Your server here ?" msgstr "" -#: [subscribe]server_contact +#: ../cache/locales.php:414 msgid "Contact us to add yours to the officially supported servers list" msgstr "" -#: [feed]nope +#: ../cache/locales.php:416 msgid "No public feed for this contact" msgstr "" -#: [feed]nope_contact +#: ../cache/locales.php:417 msgid "No contact specified" msgstr "" -#: [upload]title -msgid "Upload a file" -msgstr "" - -#: [upload]choose -msgid "Choose a file to upload" -msgstr "" - -#: [vcard]title [page]profile +#: ../cache/locales.php:418 ../cache/locales.php:473 msgid "Profile" msgstr "" -#: [vcard]updated +#: ../cache/locales.php:419 msgid "Profile Updated" msgstr "" -#: [vcard]not_updated +#: ../cache/locales.php:420 msgid "Profile Not Updated" msgstr "" -#: [vcard]public +#: ../cache/locales.php:421 msgid "Your profile is now public" msgstr "" -#: [vcard]restricted +#: ../cache/locales.php:422 msgid "Your profile is now restricted" msgstr "" -#: [general]nickname -msgctxt "[general]nickname" -msgid "Nickname" -msgstr "" - -#: [accounts]twitter +#: ../cache/locales.php:436 msgid "Twitter" msgstr "" -#: [accounts]skype +#: ../cache/locales.php:437 msgid "Skype" msgstr "" -#: [accounts]yahoo +#: ../cache/locales.php:438 msgid "Yahoo" msgstr "" -#: [accounts]accounts_nickname -msgctxt "[accounts]accounts_nickname" -msgid "Nickname" -msgstr "" - -#: [accounts]accounts_yahoo -msgid "Yahoo Account" -msgstr "" - -#: [privacy]privacy_title +#: ../cache/locales.php:439 msgid "Privacy Level" msgstr "" -#: [privacy]privacy_question +#: ../cache/locales.php:440 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." +#: ../cache/locales.php:441 +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." msgstr "" -#: [save]submit [button]submit -msgid "Submit" -msgstr "" - -#: [save]reset [button]reset -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 +#: ../cache/locales.php:442 msgid "Call" msgstr "" -#: [visio]hang_up +#: ../cache/locales.php:443 msgid "Hang up" msgstr "" -#: [visio]connection +#: ../cache/locales.php:444 msgid "Connection" msgstr "" -#: [global]no_js +#: ../cache/locales.php:445 ../cache/locales.php:451 +msgid "Hung up" +msgstr "" + +#: ../cache/locales.php:446 ../cache/locales.php:452 +msgid "Your contact is busy" +msgstr "" + +#: ../cache/locales.php:447 ../cache/locales.php:453 +msgid "Declined" +msgstr "" + +#: ../cache/locales.php:448 ../cache/locales.php:454 +msgid "Remote application incompatible" +msgstr "" + +#: ../cache/locales.php:450 ../cache/locales.php:456 +msgid "Is calling you" +msgstr "" + +#: ../cache/locales.php:457 msgid "You don't have javascript enabled. Good luck with that." msgstr "" -#: [global]description -msgid "Movim is a kickass distributed social networking platform that protect your privacy an comes with a set of awesome features." +#: ../cache/locales.php:458 +msgid "" +"Movim is a kickass distributed social networking platform that protect your " +"privacy an comes with a set of awesome features." msgstr "" -#: [page]administration +#: ../cache/locales.php:459 msgid "Administration" msgstr "" -#: [page]home +#: ../cache/locales.php:460 msgid "Home" msgstr "" -#: [page]discover +#: ../cache/locales.php:461 msgid "Discover" msgstr "" -#: [page]explore +#: ../cache/locales.php:462 msgid "Explore" msgstr "" -#: [page]account_creation +#: ../cache/locales.php:463 msgid "Account Creation" msgstr "" -#: [page]avatar +#: ../cache/locales.php:464 +msgid "News" +msgstr "" + +#: ../cache/locales.php:465 msgid "Avatar" msgstr "" -#: [page]chats +#: ../cache/locales.php:467 msgid "Chats" msgstr "" -#: [page]server +#: ../cache/locales.php:470 msgid "Server" msgstr "" -#: [page]public_groups +#: ../cache/locales.php:471 msgid "Public Groups" msgstr "" -#: [page]viewer +#: ../cache/locales.php:472 msgid "Viewer" msgstr "" -#: [page]media +#: ../cache/locales.php:474 msgid "Media" msgstr "" -#: [page]blog +#: ../cache/locales.php:475 msgid "Blog" msgstr "" -#: [page]about +#: ../cache/locales.php:476 msgid "About" msgstr "" -#: [page]login +#: ../cache/locales.php:477 msgid "Login" msgstr "" -#: [page]feed +#: ../cache/locales.php:479 msgid "Feed" msgstr "" -#: [page]gallery +#: ../cache/locales.php:481 msgid "Gallery" msgstr "" -#: [page]visio +#: ../cache/locales.php:483 msgid "Visio-conference" msgstr "" -#: [page]pods +#: ../cache/locales.php:484 msgid "Pods" msgstr "" -#: [page]share +#: ../cache/locales.php:485 msgid "Share" msgstr "" -#: [page]room +#: ../cache/locales.php:486 msgid "Room" msgstr "" -#: [error]error +#: ../cache/locales.php:487 +#, php-format msgid "Error: %s" msgstr "" -#: [error]cannot_load_file +#: ../cache/locales.php:488 +#, php-format msgid "Cannot load file '%s'" msgstr "" -#: [error]route +#: ../cache/locales.php:489 +#, php-format msgid "Route error, please set all the parameters for the page %s" msgstr "" -#: [error]widget_load_error +#: ../cache/locales.php:490 +#, php-format msgid "Requested widget '%s' doesn't exist." msgstr "" -#: [error]widget_call_error +#: ../cache/locales.php:491 +#, php-format msgid "Requested event '%s' not registered." msgstr "" -#: [error]whoops +#: ../cache/locales.php:492 msgid "Whoops!" msgstr "" -#: [error]media_not_found +#: ../cache/locales.php:493 msgid "It seem that you don't have any pictures here?" msgstr "" -#: [error]media_ask_upload +#: ../cache/locales.php:494 msgid "You can try to upload a couple by going to the Media page" msgstr "" -#: [title]about +#: ../cache/locales.php:495 +#, php-format msgid "%s - About" msgstr "" -#: [title]account +#: ../cache/locales.php:496 +#, php-format msgid "%s - Account" msgstr "" -#: [title]administration +#: ../cache/locales.php:497 +#, php-format msgid "%s - Administration Panel" msgstr "" -#: [title]blog +#: ../cache/locales.php:498 +#, php-format msgid "%s - Blog" msgstr "" -#: [title]configuration +#: ../cache/locales.php:499 +#, php-format msgid "%s - Configuration" msgstr "" -#: [title]discover +#: ../cache/locales.php:500 +#, php-format msgid "%s - Discover" msgstr "" -#: [title]explore +#: ../cache/locales.php:501 +#, php-format msgid "%s - Explore" msgstr "" -#: [title]help +#: ../cache/locales.php:502 +#, php-format msgid "%s - Help Page" msgstr "" -#: [title]login +#: ../cache/locales.php:503 +#, php-format msgid "%s - Login to Movim" msgstr "" -#: [title]main +#: ../cache/locales.php:504 +#, php-format msgid "%s - Welcome to Movim" msgstr "" -#: [title]media +#: ../cache/locales.php:505 +#, php-format msgid "%s - Media" msgstr "" -#: [title]news +#: ../cache/locales.php:506 +#, php-format msgid "%s - News" msgstr "" -#: [title]node_configuration +#: ../cache/locales.php:507 +#, php-format msgid "%s - Group Configuration" msgstr "" -#: [title]node +#: ../cache/locales.php:508 +#, php-format msgid "%s - Group" msgstr "" -#: [title]not_found +#: ../cache/locales.php:509 +#, php-format msgid "%s - 404" msgstr "" -#: [title]profile +#: ../cache/locales.php:510 +#, php-format msgid "%s - Profile" msgstr "" -#: [title]server +#: ../cache/locales.php:511 +#, php-format msgid "%s - Server" msgstr "" -#: [button]validate +#: ../cache/locales.php:512 msgid "Validate" msgstr "" -#: [button]refresh +#: ../cache/locales.php:513 msgid "Refresh" msgstr "" -#: [button]add +#: ../cache/locales.php:514 msgid "Add" msgstr "" -#: [button]delete +#: ../cache/locales.php:515 msgid "Delete" msgstr "" -#: [button]cancel +#: ../cache/locales.php:516 +msgid "Remove" +msgstr "" + +#: ../cache/locales.php:517 msgid "Cancel" msgstr "" -#: [button]close +#: ../cache/locales.php:518 msgid "Close" msgstr "" -#: [button]update +#: ../cache/locales.php:519 msgid "Update" msgstr "" -#: [button]updating +#: ../cache/locales.php:520 msgid "Updating" msgstr "" -#: [button]submitting +#: ../cache/locales.php:521 +msgid "Submit" +msgstr "" + +#: ../cache/locales.php:522 msgid "Submitting" msgstr "" -#: [button]register +#: ../cache/locales.php:523 +msgid "Reset" +msgstr "" + +#: ../cache/locales.php:524 msgid "Register" msgstr "" -#: [button]unregister +#: ../cache/locales.php:525 msgid "Unregister" msgstr "" -#: [button]save +#: ../cache/locales.php:526 msgid "Save" msgstr "" -#: [button]clear +#: ../cache/locales.php:527 msgid "Clear" msgstr "" -#: [button]upload +#: ../cache/locales.php:528 msgid "Upload" msgstr "" -#: [button]come_in +#: ../cache/locales.php:529 msgid "Come in!" msgstr "" -#: [button]connecting +#: ../cache/locales.php:530 msgid "Connecting" msgstr "" -#: [button]bool_yes +#: ../cache/locales.php:531 msgid "Yes" msgstr "" -#: [button]bool_no +#: ../cache/locales.php:532 msgid "No" msgstr "" -#: [button]return +#: ../cache/locales.php:534 msgid "Return" msgstr "" -#: [button]accept +#: ../cache/locales.php:535 msgid "Accept" msgstr "" -#: [button]refuse +#: ../cache/locales.php:536 msgid "Refuse" msgstr "" -#: [button]next +#: ../cache/locales.php:537 msgid "Next" msgstr "" -#: [button]previous +#: ../cache/locales.php:538 msgid "Previous" msgstr "" -#: [step]step +#: ../cache/locales.php:539 +#, php-format msgid "Step %s" msgstr "" -#: [day]title +#: ../cache/locales.php:542 msgid "Day" msgstr "" -#: [day]monday +#: ../cache/locales.php:543 msgid "Monday" msgstr "Lundio" -#: [day]tuesday +#: ../cache/locales.php:544 msgid "Tuesday" msgstr "Mardio" -#: [day]wednesday +#: ../cache/locales.php:545 msgid "Wednesday" msgstr "Merkurdio" -#: [day]thursday +#: ../cache/locales.php:546 msgid "Thursday" msgstr "Jovdio" -#: [day]friday +#: ../cache/locales.php:547 msgid "Friday" msgstr "Venerdio" -#: [day]saturday +#: ../cache/locales.php:548 msgid "Saturday" msgstr "Saturdio" -#: [day]sunday +#: ../cache/locales.php:549 msgid "Sunday" msgstr "" -#: [gender]nil -#, fuzzy -msgctxt "[gender]nil" +#: ../cache/locales.php:550 ../cache/locales.php:559 msgid "None" msgstr "Nula" -#: [gender]male +#: ../cache/locales.php:551 msgid "Male" msgstr "Viro" -#: [gender]female +#: ../cache/locales.php:552 msgid "Female" msgstr "Muliero" -#: [gender]other +#: ../cache/locales.php:553 msgid "Other" msgstr "Altra" -#: [client]bot +#: ../cache/locales.php:554 msgid "Bot" msgstr "" -#: [client]desktop +#: ../cache/locales.php:555 msgid "Desktop" msgstr "" -#: [client]phone +#: ../cache/locales.php:556 msgid "Phone" msgstr "" -#: [client]web +#: ../cache/locales.php:557 msgid "Web" msgstr "" -#: [client]registered +#: ../cache/locales.php:558 msgid "Registered" msgstr "" -#: [marital]nil -#, fuzzy -msgctxt "[marital]nil" -msgid "None" -msgstr "Nula" - -#: [marital]single +#: ../cache/locales.php:560 msgid "Single" msgstr "Singla" -#: [marital]relationship +#: ../cache/locales.php:561 msgid "In a relationship" msgstr "" -#: [marital]married +#: ../cache/locales.php:562 msgid "Married" msgstr "Mariajinta" -#: [marital]divorced +#: ../cache/locales.php:563 msgid "Divorced" msgstr "Divorcinta" -#: [marital]widowed +#: ../cache/locales.php:564 msgid "Widowed" msgstr "" -#: [marital]cohabiting +#: ../cache/locales.php:565 msgid "Cohabiting" msgstr "" -#: [marital]union +#: ../cache/locales.php:566 msgid "Civil Union" msgstr "Civila mariajo" -#: [flag]white +#: ../cache/locales.php:567 msgid "Not shared" msgstr "" -#: [flag]green +#: ../cache/locales.php:568 msgid "Shared with one contact" msgstr "" -#: [flag]orange +#: ../cache/locales.php:569 msgid "Shared with all contacts" msgstr "" -#: [flag]red +#: ../cache/locales.php:570 msgid "Shared with the XMPP network" msgstr "" -#: [flag]black +#: ../cache/locales.php:571 msgid "Shared with the whole Internet" msgstr "" -#: [presence]online +#: ../cache/locales.php:572 msgid "Online" msgstr "Konektita" -#: [presence]away +#: ../cache/locales.php:573 msgid "Away" msgstr "" -#: [presence]dnd +#: ../cache/locales.php:574 msgid "Do Not Disturb" msgstr "" -#: [presence]xa +#: ../cache/locales.php:575 msgid "Extended Away" msgstr "" -#: [presence]offline +#: ../cache/locales.php:576 msgid "Offline" msgstr "" -#: [presence]error +#: ../cache/locales.php:577 msgid "Error" msgstr "" -#: [mood]afraid +#: ../cache/locales.php:578 msgid "afraid" msgstr "" -#: [mood]amazed +#: ../cache/locales.php:579 msgid "amazed" msgstr "" -#: [mood]amorous +#: ../cache/locales.php:580 msgid "amorous" msgstr "amoranta" -#: [mood]angry +#: ../cache/locales.php:581 msgid "angry" msgstr "iracanta" -#: [mood]annoyed +#: ../cache/locales.php:582 msgid "annoyed" msgstr "" -#: [mood]anxious +#: ../cache/locales.php:583 msgid "anxious" msgstr "anxioza" -#: [mood]aroused +#: ../cache/locales.php:584 msgid "aroused" msgstr "" -#: [mood]ashamed +#: ../cache/locales.php:585 msgid "ashamed" msgstr "" -#: [mood]bored +#: ../cache/locales.php:586 msgid "bored" msgstr "" -#: [mood]brave +#: ../cache/locales.php:587 msgid "brave" msgstr "" -#: [mood]calm +#: ../cache/locales.php:588 msgid "calm" msgstr "" -#: [mood]cautious +#: ../cache/locales.php:589 msgid "cautious" msgstr "" -#: [mood]cold +#: ../cache/locales.php:590 msgid "cold" msgstr "" -#: [mood]confident +#: ../cache/locales.php:591 msgid "confident" msgstr "" -#: [mood]confused +#: ../cache/locales.php:592 msgid "confused" msgstr "" -#: [mood]contemplative +#: ../cache/locales.php:593 msgid "contemplative" msgstr "" -#: [mood]contented +#: ../cache/locales.php:594 msgid "contented" msgstr "" -#: [mood]cranky +#: ../cache/locales.php:595 msgid "cranky" msgstr "" -#: [mood]crazy +#: ../cache/locales.php:596 msgid "crazy" msgstr "" -#: [mood]creative +#: ../cache/locales.php:597 msgid "creative" msgstr "" -#: [mood]curious +#: ../cache/locales.php:598 msgid "curious" msgstr "" -#: [mood]dejected +#: ../cache/locales.php:599 msgid "dejected" msgstr "" -#: [mood]depressed +#: ../cache/locales.php:600 msgid "depressed" msgstr "" -#: [mood]disappointed +#: ../cache/locales.php:601 msgid "disappointed" msgstr "" -#: [mood]disgusted +#: ../cache/locales.php:602 msgid "disgusted" msgstr "" -#: [mood]dismayed +#: ../cache/locales.php:603 msgid "dismayed" msgstr "" -#: [mood]distracted +#: ../cache/locales.php:604 msgid "distracted" msgstr "" -#: [mood]embarrassed +#: ../cache/locales.php:605 msgid "embarrassed" msgstr "" -#: [mood]envious +#: ../cache/locales.php:606 msgid "envious" msgstr "" -#: [mood]excited +#: ../cache/locales.php:607 msgid "excited" msgstr "" -#: [mood]flirtatious +#: ../cache/locales.php:608 msgid "flirtatious" msgstr "" -#: [mood]frustated +#: ../cache/locales.php:609 msgid "frustated" msgstr "" -#: [mood]grateful +#: ../cache/locales.php:610 msgid "grateful" msgstr "" -#: [mood]grieving +#: ../cache/locales.php:611 msgid "grieving" msgstr "" -#: [mood]grumpy +#: ../cache/locales.php:612 msgid "grumpy" msgstr "" -#: [mood]guilty +#: ../cache/locales.php:613 msgid "guilty" msgstr "" -#: [mood]happy +#: ../cache/locales.php:614 msgid "happy" msgstr "" -#: [mood]hopeful +#: ../cache/locales.php:615 msgid "hopeful" msgstr "" -#: [mood]hot +#: ../cache/locales.php:616 msgid "hot" msgstr "" -#: [mood]humbled +#: ../cache/locales.php:617 msgid "humbled" msgstr "" -#: [mood]humiliated +#: ../cache/locales.php:618 msgid "humiliated" msgstr "" -#: [mood]hungry +#: ../cache/locales.php:619 msgid "hungry" msgstr "" -#: [mood]hurt +#: ../cache/locales.php:620 msgid "hurt" msgstr "" -#: [mood]impressed +#: ../cache/locales.php:621 msgid "impressed" msgstr "" -#: [mood]in_awe +#: ../cache/locales.php:622 msgid "in awe" msgstr "" -#: [mood]in_love +#: ../cache/locales.php:623 msgid "in love" msgstr "" -#: [mood]indignant +#: ../cache/locales.php:624 msgid "indignant" msgstr "" -#: [mood]interested +#: ../cache/locales.php:625 msgid "interested" msgstr "" -#: [mood]intoxicated +#: ../cache/locales.php:626 msgid "intoxicated" msgstr "" -#: [mood]invincible +#: ../cache/locales.php:627 msgid "invincible" msgstr "" -#: [mood]jealous +#: ../cache/locales.php:628 msgid "jealous" msgstr "" -#: [mood]lonely +#: ../cache/locales.php:629 msgid "lonely" msgstr "" -#: [mood]lost +#: ../cache/locales.php:630 msgid "lost" msgstr "" -#: [mood]lucky +#: ../cache/locales.php:631 msgid "lucky" msgstr "" -#: [mood]mean +#: ../cache/locales.php:632 msgid "mean" msgstr "" -#: [mood]moody +#: ../cache/locales.php:633 msgid "moody" msgstr "" -#: [mood]nervous +#: ../cache/locales.php:634 msgid "nervous" msgstr "" -#: [mood]neutral +#: ../cache/locales.php:635 msgid "neutral" msgstr "" -#: [mood]offended +#: ../cache/locales.php:636 msgid "offended" msgstr "" -#: [mood]outraged +#: ../cache/locales.php:637 msgid "outraged" msgstr "" -#: [mood]playful +#: ../cache/locales.php:638 msgid "playful" msgstr "" -#: [mood]proud +#: ../cache/locales.php:639 msgid "proud" msgstr "" -#: [mood]relaxed +#: ../cache/locales.php:640 msgid "relaxed" msgstr "" -#: [mood]relieved +#: ../cache/locales.php:641 msgid "relieved" msgstr "" -#: [mood]restless +#: ../cache/locales.php:642 +msgid "remorseful" +msgstr "" + +#: ../cache/locales.php:643 msgid "restless" msgstr "" -#: [mood]sad +#: ../cache/locales.php:644 msgid "sad" msgstr "" -#: [mood]sarcastic +#: ../cache/locales.php:645 msgid "sarcastic" msgstr "" -#: [mood]satisfied +#: ../cache/locales.php:646 msgid "satisfied" msgstr "" -#: [mood]serious +#: ../cache/locales.php:647 msgid "serious" msgstr "" -#: [mood]shocked +#: ../cache/locales.php:648 msgid "shocked" msgstr "" -#: [mood]shy +#: ../cache/locales.php:649 msgid "shy" msgstr "" -#: [mood]sick +#: ../cache/locales.php:650 msgid "sick" msgstr "" -#: [mood]sleepy +#: ../cache/locales.php:651 msgid "sleepy" msgstr "" -#: [mood]spontaneous +#: ../cache/locales.php:652 msgid "spontaneous" msgstr "" -#: [mood]stressed +#: ../cache/locales.php:653 msgid "stressed" msgstr "" -#: [mood]strong +#: ../cache/locales.php:654 msgid "strong" msgstr "" -#: [mood]surprised +#: ../cache/locales.php:655 msgid "surprised" msgstr "" -#: [mood]thankful +#: ../cache/locales.php:656 msgid "thankful" msgstr "" -#: [mood]thirsty +#: ../cache/locales.php:657 msgid "thirsty" msgstr "" -#: [mood]tired +#: ../cache/locales.php:658 msgid "tired" msgstr "" -#: [mood]undefined +#: ../cache/locales.php:659 msgid "undefined" msgstr "" -#: [mood]weak +#: ../cache/locales.php:660 msgid "weak" msgstr "" -#: [mood]worried +#: ../cache/locales.php:661 msgid "worried" msgstr "" -#: [month]title +#: ../cache/locales.php:662 msgid "Month" msgstr "" -#: [month]january +#: ../cache/locales.php:663 msgid "January" msgstr "Januaro" -#: [month]february +#: ../cache/locales.php:664 msgid "February" msgstr "Februaro" -#: [month]march +#: ../cache/locales.php:665 msgid "March" msgstr "Marto" -#: [month]april +#: ../cache/locales.php:666 msgid "April" msgstr "Aprilo" -#: [month]may +#: ../cache/locales.php:667 msgid "May" msgstr "Mayo" -#: [month]june +#: ../cache/locales.php:668 msgid "June" msgstr "Junio" -#: [month]july +#: ../cache/locales.php:669 msgid "July" msgstr "Julio" -#: [month]august +#: ../cache/locales.php:670 msgid "August" msgstr "Agosto" -#: [month]september +#: ../cache/locales.php:671 msgid "September" msgstr "Septembro" -#: [month]october +#: ../cache/locales.php:672 msgid "October" msgstr "Oktobro" -#: [month]november +#: ../cache/locales.php:673 msgid "November" msgstr "Novembro" -#: [month]december +#: ../cache/locales.php:674 msgid "December" msgstr "Decembro" -#: [year]title +#: ../cache/locales.php:675 msgid "Year" msgstr "" -#: [date]today +#: ../cache/locales.php:676 msgid "Today" msgstr "Hodie" -#: [date]tomorrow +#: ../cache/locales.php:677 msgid "Tomorrow" msgstr "Morge" -#: [date]yesterday +#: ../cache/locales.php:678 msgid "Yesterday" msgstr "Hiere" -#: [date]ago -#, fuzzy -msgid "%d days ago" +#: ../cache/locales.php:679 +#, php-format +msgid " %d days ago" msgstr " %d dii ante" -#: [date]day +#: ../cache/locales.php:680 msgid "day" msgstr "dio" -#: [post]whats_new +#: ../cache/locales.php:682 msgid "What's new ?" msgstr "" -#: [post]place +#: ../cache/locales.php:683 msgid "Place" msgstr "" -#: [post]by +#: ../cache/locales.php:684 msgid "by" msgstr "" -#: [post]geolocalisation +#: ../cache/locales.php:685 msgid "Geolocalisation" msgstr "" -#: [post]email +#: ../cache/locales.php:686 msgid "email" msgstr "" -#: [post]no_comments +#: ../cache/locales.php:688 msgid "No comments yet" msgstr "" -#: [post]no_comments_stream +#: ../cache/locales.php:689 msgid "No comments stream" msgstr "" -#: [post]no_load +#: ../cache/locales.php:690 msgid "Your feed cannot be loaded." msgstr "" -#: [post]older +#: ../cache/locales.php:691 msgid "Get older posts" msgstr "" -#: [post]new_items +#: ../cache/locales.php:692 +#, php-format msgid "%s new items" msgstr "" -#: [post]comment_error +#: ../cache/locales.php:693 msgid "Comment publication error" msgstr "" -#: [post]comments_older +#: ../cache/locales.php:694 msgid "Show the older comments" msgstr "" -#: [post]comments_loading -msgid "Loading comments..." +#: ../cache/locales.php:695 +msgid "Loading comments ..." msgstr "" -#: [post]comments_get +#: ../cache/locales.php:696 msgid "Get the comments" msgstr "" -#: [post]comment_add +#: ../cache/locales.php:697 msgid "Add a comment" msgstr "" -#: [post]share +#: ../cache/locales.php:698 msgid "Share with" msgstr "" -#: [post]share_everyone +#: ../cache/locales.php:699 msgid "Everyone" msgstr "" -#: [post]share_your_contacts +#: ../cache/locales.php:700 msgid "Your contacts" msgstr "" -#: [post]updated +#: ../cache/locales.php:702 msgid "Updated" msgstr "" -#: [post]content_not_found +#: ../cache/locales.php:703 msgid "Content not found" msgstr "" -#: [post]default_title +#: ../cache/locales.php:704 msgid "Contact publication" msgstr "" -#: [post]comments +#: ../cache/locales.php:705 msgid "Comments" msgstr "" -#: [api]error +#: ../cache/locales.php:706 msgid "The API is not reachable, try again later" msgstr "" -#: [field]type_here +#: ../cache/locales.php:707 msgid "Type here" msgstr "" diff --git a/sources/locales/it.po b/sources/locales/it.po index 82dbfa6..3157057 100644 --- a/sources/locales/it.po +++ b/sources/locales/it.po @@ -1,2737 +1,2607 @@ # Italian translations for Movim package. # This file is distributed under the same license as the Movim package. # This file was translated from CodingTeam at . -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/About/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Account/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/AccountNext/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/AdHoc/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/AdminDB/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/AdminMain/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/AdminTest/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Api/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Avatar/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Blog/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Bookmark/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Chat/locales.ini -#. #-#-#-#-# 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 -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Group/locales.ini -#. #-#-#-#-# 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 -#. #-#-#-#-# 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 -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Presence/locales.ini -#. #-#-#-#-# 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 -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Share/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Statistics/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Subscribe/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Syndication/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Upload/locales.ini -#. #-#-#-#-# 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-08-20 15:17+0200\n" +"POT-Creation-Date: 2015-06-08 22:06+0200\n" "PO-Revision-Date: 2015-06-09 12:19+0000\n" "Last-Translator: nav4Christ \n" "Language-Team: LANGUAGE \n" -"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2015-06-18 21:08+0000\n" "X-Generator: Launchpad (build 17570)\n" +"Language: \n" -#: [about]thanks +#: ../cache/locales.php:2 msgid "Thanks" msgstr "Grazie" -#: [about]developers +#: ../cache/locales.php:3 msgid "Developers" msgstr "Sviluppatori" -#: [about]translators +#: ../cache/locales.php:4 msgid "Translators" msgstr "Traduttori" -#: [about]software +#: ../cache/locales.php:5 msgid "Software" msgstr "" -#: [about]resources +#: ../cache/locales.php:6 msgid "Resources" msgstr "" -#: [about]api [schema]api [api]title +#: ../cache/locales.php:7 ../cache/locales.php:83 ../cache/locales.php:85 msgid "API" msgstr "" -#: [about]info -msgid "Movim is an XMPP-based communication platform. All the project, except the following software and resources, is under" +#: ../cache/locales.php:8 +msgid "" +"Movim is an XMPP-based communication platform. All the project, except the " +"following software and resources, is under" msgstr "" -#: [account]title +#: ../cache/locales.php:9 msgid "Account" msgstr "" -#: [account]password_change_title -#, fuzzy -msgid "Change my password" -msgstr "Password sbagliata" - -#: [account]password [db]password [credentials]password [form]password -#: [input]password -msgid "Password" -msgstr "Password" - -#: [account]password_confirmation -#, fuzzy -msgid "Password confirmation" -msgstr "%s - Configurazione" - -#: [account]password_changed +#: ../cache/locales.php:10 msgid "The password has been updated" msgstr "" -#: [account]password_not_valid +#: ../cache/locales.php:11 msgid "Please provide a valid password (6 characters minimum)" msgstr "" -#: [account]password_not_same +#: ../cache/locales.php:12 msgid "The provided passwords are not the same" msgstr "" -#: [account]delete_title +#: ../cache/locales.php:13 msgid "Delete my account" msgstr "Elimina il mio account" -#: [account]delete -#, fuzzy -msgid "Delete your account" -msgstr "Elimina il mio account" - -#: [account]delete_text -msgid "You will delete your XMPP account and all the relative information linked to it (profile, contacts and publications)." +#: ../cache/locales.php:14 +msgid "" +"You will delete your XMPP account and all the relative information linked to " +"it (profile, contacts and publications)." msgstr "" -#: [account]delete_text_confirm +#: ../cache/locales.php:15 msgid "Are you sure that you want to delete it ?" msgstr "" -#: [account]gateway_title -msgid "Gateway" -msgstr "" - -#: [create]title [subscribe]title +#: ../cache/locales.php:16 ../cache/locales.php:411 msgid "Create a new account" msgstr "Crea un nuovo account" -#: [create]notfound +#: ../cache/locales.php:17 msgid "No account creation form found on the server" msgstr "" -#: [create]server_on +#: ../cache/locales.php:18 ../cache/locales.php:172 msgid "on" msgstr "il" -#: [create]successfull +#: ../cache/locales.php:19 msgid "Your acccount has been successfully registered" msgstr "" -#: [create]loading +#: ../cache/locales.php:20 msgid "Loading" msgstr "Caricamento in corso" -#: [error]not_acceptable +#: ../cache/locales.php:21 msgid "Not Acceptable" msgstr "Non accettabile" -#: [error]service_unavailable +#: ../cache/locales.php:22 msgid "The registration system of this server is currently unavailable" msgstr "" -#: [oob]about -msgid "This server use an external system for the registration, please click on the following URL." +#: ../cache/locales.php:23 +msgid "" +"This server use an external system for the registration, please click on the " +"following URL." msgstr "" -#: [adhoc]title +#: ../cache/locales.php:24 msgid "Actions" msgstr "Azioni" -#: [db]legend [schema]database +#: ../cache/locales.php:25 ../cache/locales.php:82 msgid "Database" msgstr "" -#: [db]connect_error +#: ../cache/locales.php:26 msgid "Modl wasn't able to connect to the database" msgstr "" -#: [db]connect_success +#: ../cache/locales.php:27 msgid "Movim is connected to the database" msgstr "" -#: [db]update +#: ../cache/locales.php:28 msgid "The database need to be updated" msgstr "" -#: [db]up_to_date +#: ../cache/locales.php:29 msgid "Movim database is up to date" msgstr "" -#: [db]type +#: ../cache/locales.php:30 msgid "Database Type" msgstr "" -#: [db]username [credentials]username [input]username +#: ../cache/locales.php:31 ../cache/locales.php:50 ../cache/locales.php:540 msgid "Username" msgstr "Nome utente" -#: [db]host +#: ../cache/locales.php:32 ../cache/locales.php:51 ../cache/locales.php:282 +#: ../cache/locales.php:541 +msgid "Password" +msgstr "Password" + +#: ../cache/locales.php:33 msgid "Host" msgstr "" -#: [db]port +#: ../cache/locales.php:34 msgid "Port" msgstr "" -#: [db]name -#, fuzzy -msgid "Database sName" -msgstr "Database Trovato" +#: ../cache/locales.php:35 +msgid "Database Name" +msgstr "" -#: [admin]general +#: ../cache/locales.php:36 msgid "General Settings" msgstr "Impostazioni Generali" -#: [general]theme +#: ../cache/locales.php:37 msgid "Theme" msgstr "Tema" -#: [general]language +#: ../cache/locales.php:38 msgid "Default language" msgstr "Linguaggio predefinito" -#: [general]log_verbosity +#: ../cache/locales.php:39 +msgid "Environment" +msgstr "Ambiente" + +#: ../cache/locales.php:40 msgid "Log verbosity" msgstr "Estensione del registro" -#: [general]timezone +#: ../cache/locales.php:41 msgid "Server Timezone" msgstr "Fuso orario del server" -#: [general]limit +#: ../cache/locales.php:42 msgid "User folder size limit (in bytes)" msgstr "Limite raggiunto per la cartella dell'utente (in bytes)" -#: [websocket]title +#: ../cache/locales.php:43 msgid "WebSocket Configuration" msgstr "" -#: [websocket]info +#: ../cache/locales.php:44 msgid "Enter here a valid WebSocket URI in the form" msgstr "" -#: [websocket]label +#: ../cache/locales.php:45 msgid "WebSocket URI" msgstr "" -#: [websocket]save_info -msgid "If you change the URI, please restart the daemon to reload the configuration" +#: ../cache/locales.php:46 +msgid "" +"If you change the URI, please restart the daemon to reload the configuration" msgstr "" -#: [websocket]publics +#: ../cache/locales.php:47 msgid "Public WebSockets" msgstr "" -#: [credentials]title +#: ../cache/locales.php:48 msgid "Administration Credential" msgstr "Credenziali dell' amministratore." -#: [credentials]info +#: ../cache/locales.php:49 msgid "Change the default credentials admin/password" msgstr "Modificare le credenziali admin/password di default" -#: [credentials]re_password +#: ../cache/locales.php:52 msgid "Retype password" msgstr "Ridigita la password" -#: [whitelist]title +#: ../cache/locales.php:53 msgid "Whitelist - XMPP Server" msgstr "la Whitelist del server XMPP" -#: [whitelist]info1 -msgid "If you want to specify a list of authorized XMPP servers on your Movim pod and forbid the connection on all the others please put their domain name here, with comma (ex: movim.eu,jabber.fr)" -msgstr "Se si desidera specificare un elenco di server XMPP autorizzati sul Suo pod Movim e proibire la connessione su tutti gli altri si prega di inserire qui, i rispettivi nomi di dominio separati dalle virgole (es: movim.eu,jabber.fr)" +#: ../cache/locales.php:54 +msgid "" +"If you want to specify a list of authorized XMPP servers on your Movim pod " +"and forbid the connection on all the others please put their domain name " +"here, with comma (ex: movim.eu,jabber.fr)" +msgstr "" +"Se si desidera specificare un elenco di server XMPP autorizzati sul Suo pod " +"Movim e proibire la connessione su tutti gli altri si prega di inserire qui, " +"i rispettivi nomi di dominio separati dalle virgole (es: movim.eu,jabber.fr)" -#: [whitelist]info2 -msgid "Leave this field blank if you allow the access to all the XMPP accounts." -msgstr "Lascia questo campo vuoto se si consente l'accesso a tutti gli account XMPP." +#: ../cache/locales.php:55 +msgid "" +"Leave this field blank if you allow the access to all the XMPP accounts." +msgstr "" +"Lascia questo campo vuoto se si consente l'accesso a tutti gli account XMPP." -#: [whitelist]label +#: ../cache/locales.php:56 msgid "List of whitelisted XMPP servers" msgstr "Elenco dei server XMPP whitelisted" -#: [information]title -#, fuzzy -msgctxt "[information]title" +#: ../cache/locales.php:57 ../cache/locales.php:61 msgid "Information Message" msgstr "Messaggio informativo" -#: [information]description +#: ../cache/locales.php:58 msgid "Description" msgstr "" -#: [information]info1 +#: ../cache/locales.php:59 msgid "This message will be displayed on the login page" msgstr "Questo messaggio verrà visualizzato nella pagina di login" -#: [information]info2 -#, fuzzy -msgid "Leave this field blank if you dont want to show any message." -msgstr "Lascia questo campo vuoto se non vuole visualizzare alcun messaggio." +#: ../cache/locales.php:60 +msgid "Leave this field blank if you don't want to show any message." +msgstr "" +"Lascia questo campo vuoto se non vuole visualizzare alcun messaggio." -#: [information]label -#, fuzzy -msgctxt "[information]label" -msgid "Information Message" -msgstr "Messaggio informativo" - -#: [log]empty +#: ../cache/locales.php:62 msgid "Empty" msgstr "" -#: [log]syslog +#: ../cache/locales.php:63 msgid "Syslog" msgstr "" -#: [log]syslog_files +#: ../cache/locales.php:64 msgid "Syslog and files" msgstr "" -#: [rewrite]title +#: ../cache/locales.php:65 msgid "URL Rewriting" msgstr "" -#: [rewrite]info +#: ../cache/locales.php:66 msgid "The URL Rewriting can be enabled" msgstr "" -#: [admin]compatibility +#: ../cache/locales.php:67 msgid "General Overview" msgstr "" -#: [compatibility]info -msgid "Movim has found some issues or things that need to be fixed or improved" +#: ../cache/locales.php:68 +msgid "" +"Movim has found some issues or things that need to be fixed or improved" msgstr "" -#: [compatibility]php1 +#: ../cache/locales.php:69 +#, php-format msgid "Update your PHP-Version: %s" msgstr "" -#: [compatibility]php2 +#: ../cache/locales.php:70 msgid "Required: 5.3.0" msgstr "" -#: [compatibility]curl +#: ../cache/locales.php:71 msgid "Install the php5-curl library" msgstr "" -#: [compatibility]imagick +#: ../cache/locales.php:72 msgid "Install the php5-imagick library" msgstr "" -#: [compatibility]gd +#: ../cache/locales.php:73 msgid "Install the php5-gd library" msgstr "" -#: [compatibility]rights -#, fuzzy -msgid "Read and write rights for the webserver in Movims root directory" -msgstr "Leggere e scrivere i diritti del webserver nella cartella principale (radice) di Movim" +#: ../cache/locales.php:74 +msgid "Read and write rights for the webserver in Movim's root directory" +msgstr "" +"Leggere e scrivere i diritti del webserver nella cartella principale " +"(radice) di Movim" -#: [compatibility]rewrite +#: ../cache/locales.php:75 msgid "The URL Rewriting support is currently disabled" msgstr "" -#: [compatibility]db +#: ../cache/locales.php:76 msgid "The database need to be updated, go to the database panel to fix this" msgstr "" -#: [compatibility]websocket -msgid "WebSocket connection error, check if the Movim Daemon is running and is reachable" +#: ../cache/locales.php:77 +msgid "" +"WebSocket connection error, check if the Movim Daemon is running and is " +"reacheable" msgstr "" -#: [compatibility]xmpp_websocket -msgid "XMPP Websocket connection error, please check the validity of the URL given in the General Configuration" +#: ../cache/locales.php:78 +msgid "" +"XMPP Websocket connection error, please check the validity of the URL given " +"in the General Configuration" msgstr "" -#: [schema]browser +#: ../cache/locales.php:79 msgid "Browser" msgstr "" -#: [schema]movim +#: ../cache/locales.php:80 msgid "Movim Core" msgstr "" -#: [schema]daemon +#: ../cache/locales.php:81 msgid "Movim Daemon" msgstr "" -#: [schema]xmpp +#: ../cache/locales.php:84 msgid "XMPP" msgstr "" -#: [api]info -msgid "Here you can register your pod on the official %sMovim API%s and be listed on %sthe pods page%s." +#: ../cache/locales.php:86 +#, php-format +msgid "" +"Here you can register your pod on the official %sMovim API%s and be listed " +"on %sthe pods page%s." msgstr "" -#: [api]register +#: ../cache/locales.php:87 msgid "Your pod is not registered on the API" msgstr "" -#: [api]registered +#: ../cache/locales.php:88 msgid "Your pod is registered on the API" msgstr "" -#: [api]wait +#: ../cache/locales.php:89 msgid "Your pod is not yet validated" msgstr "" -#: [api]validated +#: ../cache/locales.php:90 msgid "Your pod is validated" msgstr "" -#: [api]unregister -msgid "You asked to be removed from the API, this request will be processed in a couple of hours" +#: ../cache/locales.php:91 +msgid "" +"You asked to be removed from the API, this request will be processed in a " +"couple of hours" msgstr "" -#: [api]conf_updated [config]updated +#: ../cache/locales.php:92 ../cache/locales.php:147 msgid "Configuration updated" msgstr "" -#: [avatar]file +#: ../cache/locales.php:93 msgid "File" msgstr "" -#: [avatar]use_it +#: ../cache/locales.php:94 msgid "Use it" msgstr "" -#: [avatar]webcam +#: ../cache/locales.php:95 msgid "Webcam" msgstr "" -#: [avatar]cheese +#: ../cache/locales.php:96 msgid "Cheese !" msgstr "" -#: [avatar]snapshot +#: ../cache/locales.php:97 msgid "Take a webcam snapshot" msgstr "" -#: [avatar]updated +#: ../cache/locales.php:98 msgid "Avatar Updated" msgstr "" -#: [avatar]not_updated +#: ../cache/locales.php:99 msgid "Avatar Not Updated" msgstr "" -#: [blog]title [feed]title +#: ../cache/locales.php:100 ../cache/locales.php:415 +#, php-format msgid "%s's feed" msgstr "" -#: [blog]empty +#: ../cache/locales.php:101 msgid "This user has not posted anything right now" msgstr "" -#: [title]conferences +#: ../cache/locales.php:102 msgid "Conferences" msgstr "" -#: [title]groups [group]empty_title [menu]groups [page]groups +#: ../cache/locales.php:103 ../cache/locales.php:193 ../cache/locales.php:217 +#: ../cache/locales.php:468 msgid "Groups" msgstr "Gruppi" -#: [chatroom]add +#: ../cache/locales.php:104 msgid "Add a new Chat Room" msgstr "" -#: [chatroom]id [chatrooms]id +#: ../cache/locales.php:105 ../cache/locales.php:368 msgid "Chat Room ID" msgstr "" -#: [chatroom]name -#, fuzzy -msgctxt "[chatroom]name" +#: ../cache/locales.php:106 ../cache/locales.php:116 ../cache/locales.php:156 +#: ../cache/locales.php:361 ../cache/locales.php:369 ../cache/locales.php:424 msgid "Name" msgstr "Nome" -#: [chatroom]nickname [general]nickname [chatrooms]nickname +#: ../cache/locales.php:107 ../cache/locales.php:157 ../cache/locales.php:371 +#: ../cache/locales.php:425 msgid "Nickname" msgstr "Nickname" -#: [chatroom]autojoin_label +#: ../cache/locales.php:108 msgid "Do you want do join automaticaly this Chat Room ?" msgstr "" -#: [chatroom]bad_id [chatrooms]bad_id +#: ../cache/locales.php:109 ../cache/locales.php:372 msgid "Bad Chatroom ID" msgstr "" -#: [chatroom]empty_name [chatrooms]empty_name +#: ../cache/locales.php:110 ../cache/locales.php:373 msgid "Empty name" msgstr "" -#: [bookmarks]updated +#: ../cache/locales.php:111 ../cache/locales.php:380 msgid "Bookmarks updated" msgstr "" -#: [bookmarks]error -msgid "An error occured :" +#: ../cache/locales.php:112 +msgid "An error occured : " msgstr "" -#: [bookmarks]configure +#: ../cache/locales.php:113 msgid "Configure" msgstr "" -#: [url]add +#: ../cache/locales.php:114 msgid "Add a new URL" msgstr "" -#: [url]url +#: ../cache/locales.php:115 msgid "URL" msgstr "" -#: [url]name -#, fuzzy -msgctxt "[url]name" -msgid "Name" -msgstr "Nome" - -#: [message]published +#: ../cache/locales.php:117 msgid "Message Published" msgstr "" -#: [message]encrypted +#: ../cache/locales.php:118 ../cache/locales.php:138 msgid "Encrypted message" msgstr "" -#: [message]composing [chats]composing +#: ../cache/locales.php:119 msgid "Composing..." msgstr "Scrivendo..." -#: [message]paused [chats]paused +#: ../cache/locales.php:120 msgid "Paused..." msgstr "" -#: [message]gone +#: ../cache/locales.php:121 msgid "Contact gone" msgstr "" -#: [chat]attention +#: ../cache/locales.php:122 +#, php-format msgid "%s needs your attention" msgstr "" -#: [chat]placeholder +#: ../cache/locales.php:123 msgid "Your message here..." msgstr "" -#: [chat]smileys +#: ../cache/locales.php:124 msgid "Smileys" msgstr "" -#: [chat]empty_title [button]chat +#: ../cache/locales.php:125 ../cache/locales.php:139 msgid "Chat" msgstr "Chat" -#: [chat]empty_text +#: ../cache/locales.php:126 msgid "Discuss with your contacts" msgstr "" -#: [chat]frequent [chats]frequent -msgid "Frequent contacts" -msgstr "" - -#: [chatroom]members +#: ../cache/locales.php:127 msgid "Members" msgstr "" -#: [chatroom]connected [chatrooms]connected +#: ../cache/locales.php:128 ../cache/locales.php:376 msgid "Connected to the chatroom" msgstr "" -#: [chatroom]disconnected [chatrooms]disconnected +#: ../cache/locales.php:129 ../cache/locales.php:377 msgid "Disconnected from the chatroom" msgstr "" -#: [chatroom]config [group]configuration [page]configuration +#: ../cache/locales.php:130 ../cache/locales.php:200 ../cache/locales.php:469 msgid "Configuration" msgstr "Configurazione" -#: [chatroom]config_saved +#: ../cache/locales.php:131 msgid "Configuration saved" msgstr "" -#: [chatroom]subject +#: ../cache/locales.php:132 msgid "Subject" msgstr "" -#: [chatroom]subject_changed +#: ../cache/locales.php:133 msgid "Subject changed" msgstr "" -#: [chats]empty_title -msgid "No chats yet..." +#: ../cache/locales.php:134 +msgid "Open a new conversation by clicking on the plus button bellow" msgstr "" -#: [chats]empty -msgid "Open a new conversation by clicking on the plus button bellow or visit the Contacts page." -msgstr "" - -#: [chats]add +#: ../cache/locales.php:135 msgid "Chat with a contact" msgstr "" -#: [chats]more +#: ../cache/locales.php:136 +msgid "Frequent contacts" +msgstr "" + +#: ../cache/locales.php:137 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 "" - -#: [config]general +#: ../cache/locales.php:140 msgid "General" msgstr "" -#: [config]language +#: ../cache/locales.php:141 msgid "Language" msgstr "Lingua" -#: [config]roster +#: ../cache/locales.php:142 msgid "Roster display" msgstr "" -#: [config]roster_show +#: ../cache/locales.php:143 msgid "Show the offline contacts" msgstr "" -#: [config]roster_hide +#: ../cache/locales.php:144 msgid "Hide the offline contacts" msgstr "" -#: [config]appearence +#: ../cache/locales.php:145 msgid "Appearence" msgstr "" -#: [config]info -msgid "This configuration is shared wherever you are connected" +#: ../cache/locales.php:146 +msgid "This configuration is shared wherever you are connected !" msgstr "" -#: [notifications]message +#: ../cache/locales.php:148 msgid "Notify on incoming message" msgstr "" -#: [notifications]desktop +#: ../cache/locales.php:149 msgid "Use desktop notifications" msgstr "" -#: [general]legend [general]general_title +#: ../cache/locales.php:150 +msgid "Data" +msgstr "" + +#: ../cache/locales.php:151 +msgid "Cache" +msgstr "" + +#: ../cache/locales.php:152 ../cache/locales.php:218 ../cache/locales.php:466 +msgid "Contacts" +msgstr "" + +#: ../cache/locales.php:153 ../cache/locales.php:480 +msgid "Posts" +msgstr "" + +#: ../cache/locales.php:154 +msgid "Messages" +msgstr "" + +#: ../cache/locales.php:155 ../cache/locales.php:423 msgid "General Informations" msgstr "Informazioni Generali" -#: [general]name [public_groups]name [chatrooms]name -msgid "Name" -msgstr "Nome" - -#: [general]date_of_birth +#: ../cache/locales.php:158 ../cache/locales.php:427 msgid "Date of Birth" msgstr "Data di nascita" -#: [general]gender +#: ../cache/locales.php:159 ../cache/locales.php:428 msgid "Gender" msgstr "Sesso" -#: [general]marital +#: ../cache/locales.php:160 ../cache/locales.php:429 msgid "Marital Status" msgstr "Stato civile" -#: [general]email +#: ../cache/locales.php:161 ../cache/locales.php:426 msgid "Email" msgstr "" -#: [general]website +#: ../cache/locales.php:162 ../cache/locales.php:430 msgid "Website" msgstr "Sito web" -#: [general]about +#: ../cache/locales.php:163 ../cache/locales.php:431 msgid "About Me" msgstr "Informazioni su di me" -#: [general]accounts +#: ../cache/locales.php:164 msgid "Other Accounts" msgstr "" -#: [general]tune +#: ../cache/locales.php:165 msgid "Is Listening" msgstr "" -#: [position]legend [position]position_title +#: ../cache/locales.php:166 ../cache/locales.php:432 msgid "Geographic Position" msgstr "" -#: [position]locality +#: ../cache/locales.php:167 ../cache/locales.php:433 msgid "Locality" msgstr "" -#: [position]country +#: ../cache/locales.php:168 ../cache/locales.php:434 msgid "Country" msgstr "" -#: [mood]title +#: ../cache/locales.php:169 msgid "Mood" msgstr "" -#: [mood]im +#: ../cache/locales.php:170 msgid "I'm " msgstr "" -#: [listen]title +#: ../cache/locales.php:171 msgid "Listening" msgstr "" -#: [last]title +#: ../cache/locales.php:173 msgid "Last seen" msgstr "" -#: [client]title +#: ../cache/locales.php:174 msgid "Client Informations" msgstr "Informazioni sul client" -#: [explore]last_registered +#: ../cache/locales.php:175 msgid "Last registered" msgstr "Ultimo iscritto" -#: [explore]explore +#: ../cache/locales.php:176 msgid "Find some new friends" msgstr "" -#: [edit]title [button]edit +#: ../cache/locales.php:177 ../cache/locales.php:533 msgid "Edit" msgstr "" -#: [edit]alias +#: ../cache/locales.php:178 msgid "Alias" msgstr "Alias" -#: [edit]group +#: ../cache/locales.php:179 msgid "Group" msgstr "" -#: [edit]updated [roster]updated +#: ../cache/locales.php:180 ../cache/locales.php:400 msgid "Contact updated" msgstr "" -#: [delete]title +#: ../cache/locales.php:181 msgid "Are you sure?" msgstr "" -#: [delete]text -msgid "You are going to delete one of your contacts, please confirm your action" +#: ../cache/locales.php:182 +msgid "" +"You are going to delete one of your contacts, please confirm your action" msgstr "" -#: [age]years +#: ../cache/locales.php:183 +#, php-format msgid "%s years" msgstr "" -#: [blog]last +#: ../cache/locales.php:184 msgid "Last public post" msgstr "" -#: [subscription]to -#, fuzzy -msgid "You can see this contact status" -msgstr "Elimina questo contatto" - -#: [subscription]to_button -msgid "Share my status" -msgstr "" - -#: [subscription]to_text -msgid "But this contact cannot see yours" -msgstr "" - -#: [subscription]from -msgid "You are not subscribed to this contact" -msgstr "" - -#: [subscription]from_button -#, fuzzy -msgid "Ask to subscribe" -msgstr "Iscritto" - -#: [subscription]from_text -msgid "But this contact can still see if you are online" -msgstr "" - -#: [subscription]nil -msgid "No subscriptions" -msgstr "" - -#: [subscription]nil_button -msgid "Invite" -msgstr "" - -#: [subscription]nil_text -msgid "This contact is in your contact list but there is no subscriptions between the two accounts" -msgstr "" - -#: [group]subscribe +#: ../cache/locales.php:185 msgid "Subscribe" msgstr "" -#: [group]subscribed +#: ../cache/locales.php:186 msgid "Subscribed" msgstr "Iscritto" -#: [group]unsubscribe +#: ../cache/locales.php:187 msgid "Unsubscribe" msgstr "" -#: [group]unsubscribe_text +#: ../cache/locales.php:188 msgid "You are going to unsubscribe from this Group" msgstr "" -#: [group]unsubscribed +#: ../cache/locales.php:189 msgid "Unsubscribed" msgstr "" -#: [group]share_label +#: ../cache/locales.php:190 msgid "Make your membership to this group public to your friends" msgstr "" -#: [group]label_label +#: ../cache/locales.php:191 msgid "Give a label for this group" msgstr "" -#: [group]sure +#: ../cache/locales.php:192 msgid "Are you sure ?" msgstr "" -#: [group]empty_text +#: ../cache/locales.php:194 msgid "Discover, follow and share" msgstr "" -#: [group]empty +#: ../cache/locales.php:195 msgid "Something bad happened to this group" msgstr "" -#: [group]config_saved +#: ../cache/locales.php:196 msgid "Group configuration saved" msgstr "Configurazione del gruppo salvato" -#: [group]delete_title +#: ../cache/locales.php:197 msgid "Delete the group" msgstr "" -#: [group]delete_text -msgid "You are going to delete the following group. Please confirm your action." +#: ../cache/locales.php:198 +msgid "" +"You are going to delete the following group. Please confirm your action." msgstr "" -#: [group]delete_clean_text -msgid "It seems that this group doesn't exists anymore. Do you want to remove it from your subscriptions?" +#: ../cache/locales.php:199 +msgid "" +"It seems that this group doesn't exists anymore. Do you want to remove it " +"from your subscriptions?" msgstr "" -#: [group]counter -msgid "%s groups on this server" -msgstr "" - -#: [group]subscriptions [statistics]subscriptions +#: ../cache/locales.php:201 ../cache/locales.php:408 msgid "Subscriptions" msgstr "" -#: [group]servers -#, fuzzy -msgid "Groups servers" -msgstr "Gruppi" - -#: [group]search_server -msgid "Search for a new server" -msgstr "" - -#: [group]help_info1 -msgid "Groups are the perfect way to share posts about topics that you like with all the other Movim's users." -msgstr "" - -#: [group]help_info2 -msgid "Choose a server and a Group and subscribe to it using the %s button in the header. You can also create a new one using the %s button." -msgstr "" - -#: [group]help_info3 -msgid "Done? You can now publish a new post in the Group by using the %s button." -msgstr "" - -#: [group]help_info4 -msgid "You will find a list of all your subscribed Groups in My Subscriptions and receive instantly all the new incoming posts in the %sNews%s page." -msgstr "" - -#: [groups]empty_title +#: ../cache/locales.php:202 ../cache/locales.php:290 msgid "Hello" msgstr "" -#: [groups]contact_post [hello]contact_post [menu]contact_post +#: ../cache/locales.php:203 ../cache/locales.php:225 ../cache/locales.php:291 msgid "Contact post" msgstr "" -#: [groups]empty_text1 -msgid "You don't have any subscriptions yet, select a group server above to start exploring." +#: ../cache/locales.php:204 +msgid "" +"You don't have any subscriptions yet, select a group server above to start " +"exploring." msgstr "" -#: [groups]empty_text2 +#: ../cache/locales.php:205 msgid "Subscribe to your favorite feeds by bookmarking them." msgstr "" -#: [groups]subscriptions +#: ../cache/locales.php:206 msgid "My Subscriptions" msgstr "" -#: [groups]add +#: ../cache/locales.php:207 msgid "Create a new Group" msgstr "" -#: [groups]name +#: ../cache/locales.php:208 msgid "Group name" msgstr "" -#: [groups]name_example +#: ../cache/locales.php:209 msgid "My Little Pony - Fan Club" msgstr "Il Mio Cavallino - Fan Club" -#: [groups]created +#: ../cache/locales.php:210 msgid "Group created successfully" msgstr "" -#: [groups]deleted +#: ../cache/locales.php:211 msgid "Group deleted successfully" msgstr "" -#: [groups]name_error +#: ../cache/locales.php:212 msgid "Please provide a valid group name (4 characters minimum)" msgstr "" -#: [groups]no_creation +#: ../cache/locales.php:213 msgid "You cannot create a new Group on this server" msgstr "" -#: [groups]sub +#: ../cache/locales.php:214 +#, php-format msgid "%s subscribers" msgstr "" -#: [groups]num +#: ../cache/locales.php:215 +#, php-format msgid "%s posts" msgstr "" -#: [groups]disco_error -#, fuzzy -msgid "This server doesn't exists" -msgstr "Questo server ospita %s account" - -#: [menu]all +#: ../cache/locales.php:216 msgid "All" msgstr "Tutti" -#: [menu]refresh +#: ../cache/locales.php:219 msgid "Refresh all the streams" msgstr "" -#: [roster]search -#, fuzzy -msgid "Search in your contacts" -msgstr "Condiviso con un contatto" - -#: [hello]active_contacts -#, fuzzy -msgid "Active contacts" -msgstr "Azioni" - -#: [hello]chat -msgid "Go on the Chat page" -msgstr "" - -#: [hello]news [page]news -msgid "News" -msgstr "Notizie" - -#: [hello]news_page -msgid "Read all theses articles on the News page" -msgstr "" - -#: [hello]blog_title -msgid "Visit your public blog" -msgstr "" - -#: [hello]blog_text -msgid "See your public posts and share them with all your contacts" -msgstr "" - -#: [hello]share_title -msgid "Universal share button" -msgstr "" - -#: [hello]share_text -msgid "Bookmark or drag and drop the following button in your toolbar and use it on all the pages you want to share on Movim" -msgstr "" - -#: [hello]share_button -msgid "Share on Movim" -msgstr "" - -#: [help]faq -msgid "Frequently Asked Questions" -msgstr "" - -#: [banner]title -msgid "What do the little banners refer to ?" -msgstr "A cosa si riferiscono i piccoli banner?" - -#: [banner]info1 -msgid "Thanks to these five little banners, you can quickly identitfy the level of confdentiality applied to the information you provide." -msgstr "Grazie a questi cinque piccoli banner, puoi facilmente identificare il livello di confidenzialità applicato alle informazioni che pubblichi" - -#: [banner]white -msgid "White, only you can see the information" -msgstr "Bianco, solo tu puoi vedere l'informazione" - -#: [banner]green -msgid "Green, you have chosen some contacts who can see your information" -msgstr "Verde, hai scelto alcuni contatti che possono vedere la tua informazione" - -#: [banner]orange -msgid "Orange, all your contact list can see your information" -msgstr "Arancione, tutti i tuoi contatti possono vedere la tua informazione" - -#: [banner]red -msgid "Red, everybody in the XMPP network can see your information" -msgstr "Rosso, tutti nella rete XMPP possono vedere la tua informazione" - -#: [banner]black -msgid "Black, the whole Internet can see your information" -msgstr "Nero, l'intera Internet può vedere la tua informazione" - -#: [wiki]question -msgid "Looking for some documentation ?" -msgstr "" - -#: [wiki]button -msgid "Read the Wiki" -msgstr "" - -#: [ml]question -msgid "Talk with us by email ?" -msgstr "" - -#: [ml]button -msgid "Join the Mailing List" -msgstr "" - -#: [chatroom]question -msgid "Chat with the team ?" -msgstr "" - -#: [chatroom]button -msgid "Join the Chatroom" -msgstr "" - -#: [init]location -msgid "Location node created" -msgstr "" - -#: [init]bookmark -msgid "Bookmark node created" -msgstr "" - -#: [init]vcard4 -msgid "Profile node created" -msgstr "" - -#: [init]avatar -msgid "Avatar node created" -msgstr "" - -#: [init]subscriptions -msgid "Subscriptions node created" -msgstr "" - -#: [init]microblog -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 "Nome utente errato" - -#: [error]jid -msgid "Invalid JID" -msgstr "ID Jabber non valido" - -#: [error]empty_challenge -msgid "Empty Challenge from the server" -msgstr "" - -#: [error]dns -msgid "XMPP Domain error, your account is not a correct Jabber ID" -msgstr "Errore di dominio XMPP, il tuo account non è un ID Jabber corretto" - -#: [error]data_missings -msgid "Some data are missing !" -msgstr "Mancano alcuni dati!" - -#: [error]wrong_password -msgid "Wrong password" -msgstr "Password sbagliata" - -#: [error]internal -msgid "Internal server error" -msgstr "Errore interno del server" - -#: [error]session -msgid "Session error" -msgstr "Errore di sessione" - -#: [error]account_created -msgid "Account successfully created" -msgstr "Account creato con successo" - -#: [error]xmpp_unauthorized -msgctxt "[error]xmpp_unauthorized" -msgid "Your XMPP server is unauthorized" -msgstr "" - -#: [error]mec_error -msgid "The server takes too much time to respond" -msgstr "" - -#: [error]too_old -msgid "Your web browser is too old to use with Movim." -msgstr "Il tuo browser web è troppo vecchio per usarlo con Movim" - -#: [error]websocket -msgid "Movim cannot talk with the server, please try again later (Websocket connection error)" -msgstr "" - -#: [error]impossible -msgid "Impossible login" -msgstr "" - -#: [error]title -msgid "Oops!" -msgstr "" - -#: [error]default [visio]unknown_error -msgid "Unknown error" -msgstr "Errore sconosciuto" - -#: [error]login_format -msgid "Invalid username format" -msgstr "" - -#: [error]password_format -msgid "Invalid password format" -msgstr "" - -#: [error]unauthorized -msgctxt "[error]unauthorized" -msgid "Your XMPP server is unauthorized" -msgstr "" - -#: [error]conflict -msgid "A Movim session is already open on an other device" -msgstr "" - -#: [error]wrong_account -msgid "Movim failed to authenticate. You entered wrong data" -msgstr "Movim ha fallito ad autenticarti. Devi aver inserito i dati sbagliati" - -#: [error]mechanism -msgid "Authentication mechanism not supported by Movim" -msgstr "" - -#: [error]fail_auth -msgid "The XMPP authentification failed" -msgstr "L'autenticazione XMPP è fallita" - -#: [account]title [accounts]accounts_title -msgid "Accounts" -msgstr "" - -#: [form]username -msgid "My address" -msgstr "Il mio indirizzo" - -#: [form]create_one -msgid "Create one !" -msgstr "" - -#: [form]another_account -msgid "Another account" -msgstr "" - -#: [form]no_account -msgid "No account yet ?" -msgstr "" - -#: [form]whitelist.info -msgid "You can login with accounts from theses servers" -msgstr "" - -#: [form]connected -msgid "Connected" -msgstr "" - -#: [form]population -msgid "Population" -msgstr "" - -#: [menu]empty_title -msgid "No news yet..." -msgstr "" - -#: [menu]empty -msgid "Welcome on your news feed, here you will see all the posts published by your contacts and in the groups you have subscribed." -msgstr "" - -#: [menu]refresh -msgid "Refreshing all the streams" -msgstr "" - -#: [menu]public -msgid "This post is public" -msgstr "" - -#: [affiliations]title -msgid "Manage your members" -msgstr "" - -#: [affiliations]get -msgid "Get the members" -msgstr "" - -#: [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 "" - -#: [notifs]title -msgid "Pending Invitations" -msgstr "" - -#: [notifs]wants_to_talk -msgid "%s wants to talk with you" -msgstr "" - -#: [notifs]manage -msgid "Manage" -msgstr "" - -#: [post]news_feed -msgid "News Feed" -msgstr "" - -#: [post]placeholder -msgid "Discover and register to the groups you are interested in" -msgstr "" - -#: [post]preview [page]preview -msgid "Preview" -msgstr "" - -#: [post]help [page]help -msgid "Help" -msgstr "Aiuto" - -#: [post]help_more -msgid "More help" -msgstr "" - -#: [post]help_manual -msgid "Markdown syntax manual" -msgstr "" - -#: [post]title -msgid "Title" -msgstr "" - -#: [post]content -msgid "Content" -msgstr "" - -#: [post]link -msgid "Link" -msgstr "Collegamento" - -#: [post]tags -msgid "Tags" -msgstr "" - -#: [post]valid_url [publish]valid_url -msgid "Please enter a valid url" -msgstr "" - -#: [post]no_content_preview [publish]no_content_preview -msgid "No content to preview" -msgstr "" - -#: [post]no_content [publish]no_content [post]empty -msgid "No content" -msgstr "" - -#: [post]published -msgid "Post published" -msgstr "" - -#: [post]deleted -msgid "Post deleted" -msgstr "" - -#: [post]gallery -msgid "This picture will be added to your gallery" -msgstr "" - -#: [post]hot -msgid "What's Hot" -msgstr "" - -#: [post]hot_text -msgid "Posts recently published in Groups that you are not subscribed (yet)" -msgstr "" - -#: [post]new [publish]new -msgid "New post" -msgstr "" - -#: [post]embed_tip -msgid "You can also use services like Imgur or Flickr to host your picture and paste the link here." -msgstr "" - -#: [post]repost -msgid "This is a re-post from %s" -msgstr "" - -#: [post]repost_profile -msgid "See %s profile" -msgstr "" - -#: [post]public -msgid "Publish this post publicly?" -msgstr "" - -#: [post]blog_add -msgid "Post published on your blog" -msgstr "" - -#: [post]blog_remove -msgid "Post removed from your blog" -msgstr "" - -#: [post]delete_title [post]delete -msgid "Delete this post" -msgstr "" - -#: [post]delete_text -msgid "You are going to delete this post, please confirm your action" -msgstr "" - -#: [post]comments_disabled -msgid "Comments disabled" -msgstr "" - -#: [post]comment_published -msgid "Comment published" -msgstr "" - -#: [status]disconnect -msgid "Disconnect" -msgstr "" - -#: [status]here -msgid "Your status here !" -msgstr "" - -#: [status]updated -msgid "Status updated" -msgstr "" - -#: [status]status -msgid "Status" -msgstr "" - -#: [status]presence -msgid "Presence" -msgstr "" - -#: [status]online -msgid "Online with Movim" -msgstr "" - -#: [publish]title -msgid "Publish" -msgstr "" - -#: [publish]attach -msgid "Add a file or a picture to your post" -msgstr "" - -#: [publish]no_publication -msgid "You cannot publish a post on this Group" -msgstr "" - -#: [publish]form_filled -msgid "Some fields have been filled in. Do you still want to go back and loose their content?" -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 "" - -#: [rooms]empty_text1 -msgid "You don't have any chatroom yet." -msgstr "" - -#: [rooms]empty_text2 -msgid "Add one by clicking on the add button in the header." -msgstr "" - -#: [chatrooms]title -msgid "Chatrooms" -msgstr "Chatrooms" - -#: [chatrooms]name_placeholder -msgid "My Favorite Room" -msgstr "" - -#: [chatrooms]users -msgid "Users in the room" -msgstr "" - -#: [chatrooms]bad_nickname -msgid "Please enter a correct nickname (2 to 40 characters)" -msgstr "" - -#: [room]anonymous_title -msgid "Public chatroom" -msgstr "" - -#: [room]no_room -msgid "Please provide a room address" -msgstr "" - -#: [room]anonymous_text1 -msgid "You are currently logued as an anonymous user." -msgstr "" - -#: [room]anonymous_text2 -msgid "You can join using your own account or create one on the login page by loging out using the cross in the top-right corner." -msgstr "" - -#: [room]anonymous_login -msgid "Login on %s" -msgstr "" - -#: [room]nick -msgid "Your nickname" -msgstr "" - -#: [roster]ungrouped -msgid "Ungrouped" -msgstr "Non raggruppati" - -#: [roster]show_disconnected -msgid "Show disconnected contacts" -msgstr "Mostrare i contatti scollegati" - -#: [roster]hide_disconnected -msgid "Hide disconnected contacts" -msgstr "Nascondere i contatti scollegati" - -#: [roster]show_group -msgid "Show group %s" -msgstr "Mostrare il gruppo %s" - -#: [roster]hide_group -msgid "Hide group %s" -msgstr "Nascondere il gruppo %s" - -#: [roster]jid_error -msgid "Please enter a valid Jabber ID" -msgstr "Per favore inserire un identificatore Jabber valido" - -#: [roster]no_contacts_title -#, fuzzy -msgid "No contacts ?" -msgstr "Contatti (%s)" - -#: [roster]no_contacts_text -msgid "You can add one using the + button bellow" -msgstr "" - -#: [roster]show_hide -msgid "Show/Hide" -msgstr "" - -#: [roster]add_contact_info1 -msgid "Enter the Jabber ID of your contact." -msgstr "" - -#: [roster]add_contact_info2 -msgid "Press enter to validate." -msgstr "" - -#: [roster]jid -msgid "JID" -msgstr "" - -#: [roster]results -msgid "Results" -msgstr "" - -#: [roster]added -msgid "Contact added" -msgstr "" - -#: [roster]deleted -msgid "Contact deleted" -msgstr "" - -#: [roster]search +#: ../cache/locales.php:220 ../cache/locales.php:402 msgid "Search" msgstr "" -#: [share]error +#: ../cache/locales.php:221 +msgid "Go on the Chat page" +msgstr "" + +#: ../cache/locales.php:222 +msgid "Read all theses articles on the News page" +msgstr "" + +#: ../cache/locales.php:223 +msgid "Visit your public blog" +msgstr "" + +#: ../cache/locales.php:224 +msgid "See your public posts and share them with all your contacts" +msgstr "" + +#: ../cache/locales.php:226 +msgid "Universal share button" +msgstr "" + +#: ../cache/locales.php:227 +msgid "" +"Bookmark or drag and drop the following button in your toolbar and use it on " +"all the pages you want to share on Movim" +msgstr "" + +#: ../cache/locales.php:228 +msgid "Share on Movim" +msgstr "" + +#: ../cache/locales.php:229 +msgid "Frequently Asked Questions" +msgstr "" + +#: ../cache/locales.php:230 +msgid "What do the little banners refer to ?" +msgstr "A cosa si riferiscono i piccoli banner?" + +#: ../cache/locales.php:231 +msgid "" +"Thanks to these five little banners, you can quickly identitfy the level of " +"confdentiality applied to the information you provide." +msgstr "" +"Grazie a questi cinque piccoli banner, puoi facilmente identificare il " +"livello di confidenzialità applicato alle informazioni che pubblichi" + +#: ../cache/locales.php:232 +msgid "White, only you can see the information" +msgstr "Bianco, solo tu puoi vedere l'informazione" + +#: ../cache/locales.php:233 +msgid "Green, you have chosen some contacts who can see your information" +msgstr "" +"Verde, hai scelto alcuni contatti che possono vedere la tua informazione" + +#: ../cache/locales.php:234 +msgid "Orange, all your contact list can see your information" +msgstr "Arancione, tutti i tuoi contatti possono vedere la tua informazione" + +#: ../cache/locales.php:235 +msgid "Red, everybody in the XMPP network can see your information" +msgstr "Rosso, tutti nella rete XMPP possono vedere la tua informazione" + +#: ../cache/locales.php:236 +msgid "Black, the whole Internet can see your information" +msgstr "Nero, l'intera Internet può vedere la tua informazione" + +#: ../cache/locales.php:237 +msgid "Looking for some documentation ?" +msgstr "" + +#: ../cache/locales.php:238 +msgid "Read the Wiki" +msgstr "" + +#: ../cache/locales.php:239 +msgid "Talk with us by email ?" +msgstr "" + +#: ../cache/locales.php:240 +msgid "Join the Mailing List" +msgstr "" + +#: ../cache/locales.php:241 +msgid "Chat with the team ?" +msgstr "" + +#: ../cache/locales.php:242 +msgid "Join the Chatroom" +msgstr "" + +#: ../cache/locales.php:243 +msgid "Location node created" +msgstr "" + +#: ../cache/locales.php:244 +msgid "Bookmark node created" +msgstr "" + +#: ../cache/locales.php:245 +msgid "Profile node created" +msgstr "" + +#: ../cache/locales.php:246 +msgid "Avatar node created" +msgstr "" + +#: ../cache/locales.php:247 +msgid "Subscriptions node created" +msgstr "" + +#: ../cache/locales.php:248 +msgid "Microblog node created" +msgstr "" + +#: ../cache/locales.php:249 +msgid "Location" +msgstr "" + +#: ../cache/locales.php:250 +msgid "Wrong position" +msgstr "" + +#: ../cache/locales.php:251 +msgid "Location updated" +msgstr "" + +#: ../cache/locales.php:252 +msgid "Update my position" +msgstr "" + +#: ../cache/locales.php:253 +msgid "Wrong username" +msgstr "Nome utente errato" + +#: ../cache/locales.php:254 +msgid "Invalid JID" +msgstr "ID Jabber non valido" + +#: ../cache/locales.php:255 +msgid "Empty Challenge from the server" +msgstr "" + +#: ../cache/locales.php:256 +msgid "XMPP Domain error, your account is not a correct Jabber ID" +msgstr "Errore di dominio XMPP, il tuo account non è un ID Jabber corretto" + +#: ../cache/locales.php:257 +msgid "Some data are missing !" +msgstr "Mancano alcuni dati!" + +#: ../cache/locales.php:258 +msgid "Wrong password" +msgstr "Password sbagliata" + +#: ../cache/locales.php:259 +msgid "Internal server error" +msgstr "Errore interno del server" + +#: ../cache/locales.php:260 +msgid "Session error" +msgstr "Errore di sessione" + +#: ../cache/locales.php:261 +msgid "Account successfully created" +msgstr "Account creato con successo" + +#: ../cache/locales.php:262 ../cache/locales.php:271 +msgid "Your XMPP server is unauthorized" +msgstr "" + +#: ../cache/locales.php:263 +msgid "The server takes too much time to respond" +msgstr "" + +#: ../cache/locales.php:264 +msgid "Your web browser is too old to use with Movim." +msgstr "Il tuo browser web è troppo vecchio per usarlo con Movim" + +#: ../cache/locales.php:265 +msgid "" +"Movim cannot talk with the server, please try again later (Websocket " +"connection error)" +msgstr "" + +#: ../cache/locales.php:266 +msgid "Impossible login" +msgstr "" + +#: ../cache/locales.php:267 +msgid "Oops!" +msgstr "" + +#: ../cache/locales.php:268 ../cache/locales.php:449 ../cache/locales.php:455 +msgid "Unknown error" +msgstr "Errore sconosciuto" + +#: ../cache/locales.php:269 +msgid "Invalid username format" +msgstr "" + +#: ../cache/locales.php:270 +msgid "Invalid password format" +msgstr "" + +#: ../cache/locales.php:272 +msgid "A Movim session is already open on an other device" +msgstr "" + +#: ../cache/locales.php:273 +msgid "Movim failed to authenticate. You entered wrong data" +msgstr "" +"Movim ha fallito ad autenticarti. Devi aver inserito i dati sbagliati" + +#: ../cache/locales.php:274 +msgid "Authentication mechanism not supported by Movim" +msgstr "" + +#: ../cache/locales.php:275 +msgid "The XMPP authentification failed" +msgstr "L'autenticazione XMPP è fallita" + +#: ../cache/locales.php:276 +#, php-format +msgid "" +"You can login with Facebook (chat only) using %syour.id@chat.facebook.com%s " +"and your password" +msgstr "" + +#: ../cache/locales.php:277 +#, php-format +msgid "%sGmail accounts are also compatible%s but are not fully supported" +msgstr "" + +#: ../cache/locales.php:278 +msgid "You can login using your favorite Jabber account" +msgstr "" + +#: ../cache/locales.php:279 +msgid "or with our demonstration account" +msgstr "" + +#: ../cache/locales.php:280 ../cache/locales.php:435 +msgid "Accounts" +msgstr "" + +#: ../cache/locales.php:281 +msgid "My address" +msgstr "Il mio indirizzo" + +#: ../cache/locales.php:283 +msgid "Create one !" +msgstr "" + +#: ../cache/locales.php:284 +msgid "No account yet ?" +msgstr "" + +#: ../cache/locales.php:285 +msgid "Another account" +msgstr "" + +#: ../cache/locales.php:286 +msgid "You can login with accounts from theses servers" +msgstr "" + +#: ../cache/locales.php:287 +msgid "Connected" +msgstr "" + +#: ../cache/locales.php:288 +msgid "Population" +msgstr "" + +#: ../cache/locales.php:289 +msgid "Bad nickname (between 4 and 40 characters)" +msgstr "" + +#: ../cache/locales.php:292 +msgid "" +"Welcome on your news feed, here you will see all the posts published in the " +"groups you have subscribed." +msgstr "" + +#: ../cache/locales.php:293 +msgid "Refreshing all the streams" +msgstr "" + +#: ../cache/locales.php:294 +msgid "This post is public" +msgstr "" + +#: ../cache/locales.php:295 +msgid "Manage your members" +msgstr "" + +#: ../cache/locales.php:296 +msgid "Get the members" +msgstr "" + +#: ../cache/locales.php:297 +msgid "Affiliations saved" +msgstr "Affiliazioni salvati" + +#: ../cache/locales.php:298 +msgid "Manage your subscriptions" +msgstr "" + +#: ../cache/locales.php:299 +msgid "Manage the subscriptions" +msgstr "" + +#: ../cache/locales.php:300 +msgid "Get the subscriptions" +msgstr "" + +#: ../cache/locales.php:301 +msgid "Subscriptions saved" +msgstr "" + +#: ../cache/locales.php:302 +msgid "Pending Invitations" +msgstr "" + +#: ../cache/locales.php:303 +#, php-format +msgid "%s wants to talk with you" +msgstr "" + +#: ../cache/locales.php:304 +msgid "Manage" +msgstr "" + +#: ../cache/locales.php:305 ../cache/locales.php:338 +msgid "News Feed" +msgstr "" + +#: ../cache/locales.php:306 ../cache/locales.php:339 +msgid "Discover and register to the groups you are interested in" +msgstr "" + +#: ../cache/locales.php:307 ../cache/locales.php:340 ../cache/locales.php:482 +msgid "Preview" +msgstr "" + +#: ../cache/locales.php:308 ../cache/locales.php:341 ../cache/locales.php:478 +msgid "Help" +msgstr "Aiuto" + +#: ../cache/locales.php:309 ../cache/locales.php:342 +msgid "More help" +msgstr "" + +#: ../cache/locales.php:310 ../cache/locales.php:343 +msgid "Markdown syntax manual" +msgstr "" + +#: ../cache/locales.php:311 ../cache/locales.php:344 ../cache/locales.php:681 +msgid "Title" +msgstr "" + +#: ../cache/locales.php:312 ../cache/locales.php:345 +msgid "Content" +msgstr "" + +#: ../cache/locales.php:313 ../cache/locales.php:346 +msgid "Link" +msgstr "Collegamento" + +#: ../cache/locales.php:314 ../cache/locales.php:347 +msgid "Tags" +msgstr "" + +#: ../cache/locales.php:315 ../cache/locales.php:348 +msgid "Please enter a valid url" +msgstr "" + +#: ../cache/locales.php:316 ../cache/locales.php:349 +msgid "No content to preview" +msgstr "" + +#: ../cache/locales.php:317 ../cache/locales.php:350 ../cache/locales.php:687 +msgid "No content" +msgstr "" + +#: ../cache/locales.php:318 ../cache/locales.php:351 +msgid "Post published" +msgstr "" + +#: ../cache/locales.php:319 ../cache/locales.php:352 +msgid "Post deleted" +msgstr "" + +#: ../cache/locales.php:320 ../cache/locales.php:353 +msgid "This picture will be added to your gallery" +msgstr "" + +#: ../cache/locales.php:321 ../cache/locales.php:354 +msgid "What's Hot" +msgstr "" + +#: ../cache/locales.php:322 ../cache/locales.php:355 +msgid "New post" +msgstr "" + +#: ../cache/locales.php:323 ../cache/locales.php:357 +msgid "" +"You can also use services like Imgur or Flickr to host your picture and " +"paste the link here." +msgstr "" + +#: ../cache/locales.php:324 +#, php-format +msgid "This is a re-post from %s" +msgstr "" + +#: ../cache/locales.php:325 +#, php-format +msgid "See %s profile" +msgstr "" + +#: ../cache/locales.php:326 +msgid "Publish this post on your public feed?" +msgstr "" + +#: ../cache/locales.php:327 +msgid "Post published on your blog" +msgstr "" + +#: ../cache/locales.php:328 +msgid "Post removed from your blog" +msgstr "" + +#: ../cache/locales.php:329 ../cache/locales.php:701 +msgid "Delete this post" +msgstr "" + +#: ../cache/locales.php:330 +msgid "You are going to delete this post, please confirm your action" +msgstr "" + +#: ../cache/locales.php:331 +msgid "Comments disabled" +msgstr "" + +#: ../cache/locales.php:332 +msgid "Comment published" +msgstr "" + +#: ../cache/locales.php:333 +msgid "Disconnect" +msgstr "" + +#: ../cache/locales.php:334 +msgid "Your status here !" +msgstr "" + +#: ../cache/locales.php:335 +msgid "Status updated" +msgstr "" + +#: ../cache/locales.php:336 +msgid "Status" +msgstr "" + +#: ../cache/locales.php:337 +msgid "Presence" +msgstr "" + +#: ../cache/locales.php:356 +msgid "Publish" +msgstr "" + +#: ../cache/locales.php:358 +msgid "You cannot publish a post on this Group" +msgstr "" + +#: ../cache/locales.php:359 +msgid "" +"Some fields have been filled in. Do you still want to go back and loose " +"their content?" +msgstr "" + +#: ../cache/locales.php:360 +msgid "Shared" +msgstr "" + +#: ../cache/locales.php:362 +#, php-format +msgid "%s has been added to your public groups" +msgstr "" + +#: ../cache/locales.php:363 +#, php-format +msgid "%s has been removed from your public groups" +msgstr "" + +#: ../cache/locales.php:364 +msgid "Add a chatroom" +msgstr "" + +#: ../cache/locales.php:365 +msgid "You don't have any chatroom yet." +msgstr "" + +#: ../cache/locales.php:366 +msgid "Add one by clicking on the add button in the header." +msgstr "" + +#: ../cache/locales.php:367 +msgid "Chatrooms" +msgstr "Chatrooms" + +#: ../cache/locales.php:370 +msgid "My Favorite Room" +msgstr "" + +#: ../cache/locales.php:374 +msgid "Remove a chatroom" +msgstr "" + +#: ../cache/locales.php:375 +msgid "" +"You are going to remove the following chatroom. Please confirm your action." +msgstr "" + +#: ../cache/locales.php:378 +msgid "Users in the room" +msgstr "" + +#: ../cache/locales.php:379 +msgid "Please enter a correct nickname (6 to 40 characters)" +msgstr "" + +#: ../cache/locales.php:381 +msgid "Public chatroom" +msgstr "" + +#: ../cache/locales.php:382 +msgid "Please provide a room address" +msgstr "" + +#: ../cache/locales.php:383 +msgid "You are currently logued as an anonymous user." +msgstr "" + +#: ../cache/locales.php:384 +msgid "" +"You can join using your own account or create one on the login page by " +"loging out using the cross in the top-right corner." +msgstr "" + +#: ../cache/locales.php:385 +#, php-format +msgid "Login on %s" +msgstr "" + +#: ../cache/locales.php:386 +msgid "Your nickname" +msgstr "" + +#: ../cache/locales.php:387 +msgid "Ungrouped" +msgstr "Non raggruppati" + +#: ../cache/locales.php:388 +msgid "Show disconnected contacts" +msgstr "Mostrare i contatti scollegati" + +#: ../cache/locales.php:389 +msgid "Hide disconnected contacts" +msgstr "Nascondere i contatti scollegati" + +#: ../cache/locales.php:390 +#, php-format +msgid "Show group %s" +msgstr "Mostrare il gruppo %s" + +#: ../cache/locales.php:391 +#, php-format +msgid "Hide group %s" +msgstr "Nascondere il gruppo %s" + +#: ../cache/locales.php:392 +msgid "Please enter a valid Jabber ID" +msgstr "Per favore inserire un identificatore Jabber valido" + +#: ../cache/locales.php:393 +msgid "" +"No contacts ? You can add one using the + button bellow or going to the " +"Explore page" +msgstr "" + +#: ../cache/locales.php:394 +msgid "Show/Hide" +msgstr "" + +#: ../cache/locales.php:395 +msgid "Enter the Jabber ID of your contact." +msgstr "" + +#: ../cache/locales.php:396 +msgid "Press enter to validate." +msgstr "" + +#: ../cache/locales.php:397 +msgid "JID" +msgstr "" + +#: ../cache/locales.php:398 +msgid "Results" +msgstr "" + +#: ../cache/locales.php:399 +msgid "Contact added" +msgstr "" + +#: ../cache/locales.php:401 +msgid "Contact deleted" +msgstr "" + +#: ../cache/locales.php:403 msgid "This is not a valid url" msgstr "" -#: [share]success +#: ../cache/locales.php:404 msgid "Sharing the URL" msgstr "" -#: [statistics]title +#: ../cache/locales.php:405 msgid "Statistics" msgstr "" -#: [statistics]since +#: ../cache/locales.php:406 msgid "Since" msgstr "" -#: [statistics]sessions +#: ../cache/locales.php:407 msgid "Sessions" msgstr "" -#: [statistics]monthly_sub +#: ../cache/locales.php:409 msgid "Monthly Subscriptions" msgstr "" -#: [statistics]monthly_sub_cum +#: ../cache/locales.php:410 msgid "Monthly Subscriptions Cumulated" msgstr "" -#: [subscribe]info -msgid "Movim is a decentralized social network, before creating a new account you need to choose a server to register." +#: ../cache/locales.php:412 +msgid "" +"Movim is a decentralized social network, before creating a new account you " +"need to choose a server to register." msgstr "" -#: [subscribe]server_question +#: ../cache/locales.php:413 msgid "Your server here ?" msgstr "" -#: [subscribe]server_contact +#: ../cache/locales.php:414 msgid "Contact us to add yours to the officially supported servers list" msgstr "" -#: [feed]nope +#: ../cache/locales.php:416 msgid "No public feed for this contact" msgstr "" -#: [feed]nope_contact +#: ../cache/locales.php:417 msgid "No contact specified" msgstr "" -#: [upload]title -#, fuzzy -msgid "Upload a file" -msgstr "Caricare" - -#: [upload]choose -msgid "Choose a file to upload" -msgstr "" - -#: [vcard]title [page]profile +#: ../cache/locales.php:418 ../cache/locales.php:473 msgid "Profile" msgstr "Profilo" -#: [vcard]updated +#: ../cache/locales.php:419 msgid "Profile Updated" msgstr "" -#: [vcard]not_updated +#: ../cache/locales.php:420 msgid "Profile Not Updated" msgstr "" -#: [vcard]public +#: ../cache/locales.php:421 msgid "Your profile is now public" msgstr "" -#: [vcard]restricted +#: ../cache/locales.php:422 msgid "Your profile is now restricted" msgstr "" -#: [general]nickname -#, fuzzy -msgctxt "[general]nickname" -msgid "Nickname" -msgstr "Nickname" - -#: [accounts]twitter +#: ../cache/locales.php:436 msgid "Twitter" msgstr "" -#: [accounts]skype +#: ../cache/locales.php:437 msgid "Skype" msgstr "" -#: [accounts]yahoo +#: ../cache/locales.php:438 msgid "Yahoo" msgstr "" -#: [accounts]accounts_nickname -#, fuzzy -msgctxt "[accounts]accounts_nickname" -msgid "Nickname" -msgstr "Nickname" - -#: [accounts]accounts_yahoo -#, fuzzy -msgid "Yahoo Account" -msgstr "%s - Conto" - -#: [privacy]privacy_title +#: ../cache/locales.php:439 msgid "Privacy Level" msgstr "" -#: [privacy]privacy_question +#: ../cache/locales.php:440 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." +#: ../cache/locales.php:441 +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." msgstr "" -#: [save]submit [button]submit -msgid "Submit" -msgstr "Sottomettere" - -#: [save]reset [button]reset -msgid "Reset" -msgstr "Resettare" - -#: [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 +#: ../cache/locales.php:442 msgid "Call" msgstr "" -#: [visio]hang_up +#: ../cache/locales.php:443 msgid "Hang up" msgstr "" -#: [visio]connection +#: ../cache/locales.php:444 msgid "Connection" msgstr "" -#: [global]no_js +#: ../cache/locales.php:445 ../cache/locales.php:451 +msgid "Hung up" +msgstr "" + +#: ../cache/locales.php:446 ../cache/locales.php:452 +msgid "Your contact is busy" +msgstr "" + +#: ../cache/locales.php:447 ../cache/locales.php:453 +msgid "Declined" +msgstr "" + +#: ../cache/locales.php:448 ../cache/locales.php:454 +msgid "Remote application incompatible" +msgstr "" + +#: ../cache/locales.php:450 ../cache/locales.php:456 +msgid "Is calling you" +msgstr "" + +#: ../cache/locales.php:457 msgid "You don't have javascript enabled. Good luck with that." msgstr "" -#: [global]description -msgid "Movim is a kickass distributed social networking platform that protect your privacy an comes with a set of awesome features." +#: ../cache/locales.php:458 +msgid "" +"Movim is a kickass distributed social networking platform that protect your " +"privacy an comes with a set of awesome features." msgstr "" -#: [page]administration +#: ../cache/locales.php:459 msgid "Administration" msgstr "Amministrazione" -#: [page]home +#: ../cache/locales.php:460 msgid "Home" msgstr "Inizio" -#: [page]discover +#: ../cache/locales.php:461 msgid "Discover" msgstr "Scopri" -#: [page]explore +#: ../cache/locales.php:462 msgid "Explore" msgstr "Esplora" -#: [page]account_creation +#: ../cache/locales.php:463 msgid "Account Creation" msgstr "Registrazione" -#: [page]avatar +#: ../cache/locales.php:464 +msgid "News" +msgstr "Notizie" + +#: ../cache/locales.php:465 msgid "Avatar" msgstr "Avatar" -#: [page]chats +#: ../cache/locales.php:467 msgid "Chats" msgstr "" -#: [page]server +#: ../cache/locales.php:470 msgid "Server" msgstr "" -#: [page]public_groups +#: ../cache/locales.php:471 msgid "Public Groups" msgstr "" -#: [page]viewer +#: ../cache/locales.php:472 msgid "Viewer" msgstr "Visualizzatore" -#: [page]media +#: ../cache/locales.php:474 msgid "Media" msgstr "Media" -#: [page]blog +#: ../cache/locales.php:475 msgid "Blog" msgstr "Blog" -#: [page]about +#: ../cache/locales.php:476 msgid "About" msgstr "A proposito" -#: [page]login +#: ../cache/locales.php:477 msgid "Login" msgstr "" -#: [page]feed +#: ../cache/locales.php:479 msgid "Feed" msgstr "Feed" -#: [page]gallery +#: ../cache/locales.php:481 msgid "Gallery" msgstr "" -#: [page]visio +#: ../cache/locales.php:483 msgid "Visio-conference" msgstr "" -#: [page]pods +#: ../cache/locales.php:484 msgid "Pods" msgstr "" -#: [page]share +#: ../cache/locales.php:485 msgid "Share" msgstr "" -#: [page]room +#: ../cache/locales.php:486 msgid "Room" msgstr "" -#: [error]error +#: ../cache/locales.php:487 +#, php-format msgid "Error: %s" msgstr "Errore: %s" -#: [error]cannot_load_file +#: ../cache/locales.php:488 +#, php-format msgid "Cannot load file '%s'" msgstr "Impossibile caricare il file '%s'" -#: [error]route +#: ../cache/locales.php:489 +#, php-format msgid "Route error, please set all the parameters for the page %s" -msgstr "Errore di percorso, per favore settare i parametri giusti per la pagina %s" +msgstr "" +"Errore di percorso, per favore settare i parametri giusti per la pagina %s" -#: [error]widget_load_error +#: ../cache/locales.php:490 +#, php-format msgid "Requested widget '%s' doesn't exist." msgstr "" -#: [error]widget_call_error +#: ../cache/locales.php:491 +#, php-format msgid "Requested event '%s' not registered." msgstr "" -#: [error]whoops +#: ../cache/locales.php:492 msgid "Whoops!" msgstr "" -#: [error]media_not_found +#: ../cache/locales.php:493 msgid "It seem that you don't have any pictures here?" msgstr "" -#: [error]media_ask_upload +#: ../cache/locales.php:494 msgid "You can try to upload a couple by going to the Media page" msgstr "" -#: [title]about +#: ../cache/locales.php:495 +#, php-format msgid "%s - About" msgstr "%s - A proposito" -#: [title]account +#: ../cache/locales.php:496 +#, php-format msgid "%s - Account" msgstr "%s - Conto" -#: [title]administration +#: ../cache/locales.php:497 +#, php-format msgid "%s - Administration Panel" msgstr "%s -Panello di amministrazione" -#: [title]blog +#: ../cache/locales.php:498 +#, php-format msgid "%s - Blog" msgstr "" -#: [title]configuration +#: ../cache/locales.php:499 +#, php-format msgid "%s - Configuration" msgstr "%s - Configurazione" -#: [title]discover +#: ../cache/locales.php:500 +#, php-format msgid "%s - Discover" msgstr "%s -Scopri" -#: [title]explore +#: ../cache/locales.php:501 +#, php-format msgid "%s - Explore" msgstr "%s - Explora" -#: [title]help +#: ../cache/locales.php:502 +#, php-format msgid "%s - Help Page" msgstr "%s - Pagine di Aiuto" -#: [title]login +#: ../cache/locales.php:503 +#, php-format msgid "%s - Login to Movim" msgstr "%s - Entra su Movim" -#: [title]main +#: ../cache/locales.php:504 +#, php-format msgid "%s - Welcome to Movim" msgstr "%s - Benvenuto su Movim" -#: [title]media +#: ../cache/locales.php:505 +#, php-format msgid "%s - Media" msgstr "" -#: [title]news +#: ../cache/locales.php:506 +#, php-format msgid "%s - News" msgstr "%s - Notizie" -#: [title]node_configuration +#: ../cache/locales.php:507 +#, php-format msgid "%s - Group Configuration" msgstr "" -#: [title]node +#: ../cache/locales.php:508 +#, php-format msgid "%s - Group" msgstr "" -#: [title]not_found +#: ../cache/locales.php:509 +#, php-format msgid "%s - 404" msgstr "" -#: [title]profile +#: ../cache/locales.php:510 +#, php-format msgid "%s - Profile" msgstr "%s - Profilo" -#: [title]server +#: ../cache/locales.php:511 +#, php-format msgid "%s - Server" msgstr "" -#: [button]validate +#: ../cache/locales.php:512 msgid "Validate" msgstr "Convalida" -#: [button]refresh +#: ../cache/locales.php:513 msgid "Refresh" msgstr "" -#: [button]add +#: ../cache/locales.php:514 msgid "Add" msgstr "Aggiungi" -#: [button]delete +#: ../cache/locales.php:515 msgid "Delete" msgstr "" -#: [button]cancel +#: ../cache/locales.php:516 +msgid "Remove" +msgstr "" + +#: ../cache/locales.php:517 msgid "Cancel" msgstr "Annulla" -#: [button]close +#: ../cache/locales.php:518 msgid "Close" msgstr "Chiudi" -#: [button]update +#: ../cache/locales.php:519 msgid "Update" msgstr "" -#: [button]updating +#: ../cache/locales.php:520 msgid "Updating" msgstr "" -#: [button]submitting +#: ../cache/locales.php:521 +msgid "Submit" +msgstr "Sottomettere" + +#: ../cache/locales.php:522 msgid "Submitting" msgstr "Inviando..." -#: [button]register +#: ../cache/locales.php:523 +msgid "Reset" +msgstr "Resettare" + +#: ../cache/locales.php:524 msgid "Register" msgstr "" -#: [button]unregister +#: ../cache/locales.php:525 msgid "Unregister" msgstr "" -#: [button]save +#: ../cache/locales.php:526 msgid "Save" msgstr "" -#: [button]clear +#: ../cache/locales.php:527 msgid "Clear" msgstr "" -#: [button]upload +#: ../cache/locales.php:528 msgid "Upload" msgstr "Caricare" -#: [button]come_in +#: ../cache/locales.php:529 msgid "Come in!" msgstr "Entra!" -#: [button]connecting +#: ../cache/locales.php:530 msgid "Connecting" msgstr "" -#: [button]bool_yes +#: ../cache/locales.php:531 msgid "Yes" msgstr "Sì" -#: [button]bool_no +#: ../cache/locales.php:532 msgid "No" msgstr "No" -#: [button]return +#: ../cache/locales.php:534 msgid "Return" msgstr "" -#: [button]accept +#: ../cache/locales.php:535 msgid "Accept" msgstr "Accetta" -#: [button]refuse +#: ../cache/locales.php:536 msgid "Refuse" msgstr "" -#: [button]next +#: ../cache/locales.php:537 msgid "Next" msgstr "" -#: [button]previous +#: ../cache/locales.php:538 msgid "Previous" msgstr "" -#: [step]step +#: ../cache/locales.php:539 +#, php-format msgid "Step %s" msgstr "" -#: [day]title +#: ../cache/locales.php:542 msgid "Day" msgstr "Giorno" -#: [day]monday +#: ../cache/locales.php:543 msgid "Monday" msgstr "Lunedì" -#: [day]tuesday +#: ../cache/locales.php:544 msgid "Tuesday" msgstr "Martedì" -#: [day]wednesday +#: ../cache/locales.php:545 msgid "Wednesday" msgstr "Mercoledi" -#: [day]thursday +#: ../cache/locales.php:546 msgid "Thursday" msgstr "Giovedì" -#: [day]friday +#: ../cache/locales.php:547 msgid "Friday" msgstr "Venerdì" -#: [day]saturday +#: ../cache/locales.php:548 msgid "Saturday" msgstr "Sabato" -#: [day]sunday +#: ../cache/locales.php:549 msgid "Sunday" msgstr "" -#: [gender]nil -#, fuzzy -msgctxt "[gender]nil" +#: ../cache/locales.php:550 ../cache/locales.php:559 msgid "None" msgstr "Nessuno" -#: [gender]male +#: ../cache/locales.php:551 msgid "Male" msgstr "Maschio" -#: [gender]female +#: ../cache/locales.php:552 msgid "Female" msgstr "Femmina" -#: [gender]other +#: ../cache/locales.php:553 msgid "Other" msgstr "Altro" -#: [client]bot +#: ../cache/locales.php:554 msgid "Bot" msgstr "Bot" -#: [client]desktop +#: ../cache/locales.php:555 msgid "Desktop" msgstr "Scrivania" -#: [client]phone +#: ../cache/locales.php:556 msgid "Phone" msgstr "Telefono" -#: [client]web +#: ../cache/locales.php:557 msgid "Web" msgstr "" -#: [client]registered +#: ../cache/locales.php:558 msgid "Registered" msgstr "" -#: [marital]nil -#, fuzzy -msgctxt "[marital]nil" -msgid "None" -msgstr "Nessuno" - -#: [marital]single +#: ../cache/locales.php:560 msgid "Single" msgstr "Single" -#: [marital]relationship +#: ../cache/locales.php:561 msgid "In a relationship" msgstr "Impegnato in una relazione" -#: [marital]married +#: ../cache/locales.php:562 msgid "Married" msgstr "Sposato/a" -#: [marital]divorced +#: ../cache/locales.php:563 msgid "Divorced" msgstr "Divorziato/a" -#: [marital]widowed +#: ../cache/locales.php:564 msgid "Widowed" msgstr "Vedovo/a" -#: [marital]cohabiting +#: ../cache/locales.php:565 msgid "Cohabiting" msgstr "Coabito" -#: [marital]union +#: ../cache/locales.php:566 msgid "Civil Union" msgstr "Unione Civile" -#: [flag]white +#: ../cache/locales.php:567 msgid "Not shared" msgstr "Non condiviso" -#: [flag]green +#: ../cache/locales.php:568 msgid "Shared with one contact" msgstr "Condiviso con un contatto" -#: [flag]orange +#: ../cache/locales.php:569 msgid "Shared with all contacts" msgstr "Condiviso con tutti i contatti" -#: [flag]red +#: ../cache/locales.php:570 msgid "Shared with the XMPP network" msgstr "Condiviso con la rete XMPP" -#: [flag]black +#: ../cache/locales.php:571 msgid "Shared with the whole Internet" msgstr "Condiviso con tutti" -#: [presence]online +#: ../cache/locales.php:572 msgid "Online" msgstr "In linea" -#: [presence]away +#: ../cache/locales.php:573 msgid "Away" msgstr "Assente" -#: [presence]dnd +#: ../cache/locales.php:574 msgid "Do Not Disturb" msgstr "Non disturbare" -#: [presence]xa +#: ../cache/locales.php:575 msgid "Extended Away" msgstr "Assenza prolungata" -#: [presence]offline +#: ../cache/locales.php:576 msgid "Offline" msgstr "Non in linea" -#: [presence]error +#: ../cache/locales.php:577 msgid "Error" msgstr "Errore" -#: [mood]afraid +#: ../cache/locales.php:578 msgid "afraid" msgstr "impaurito" -#: [mood]amazed +#: ../cache/locales.php:579 msgid "amazed" msgstr "stupito" -#: [mood]amorous +#: ../cache/locales.php:580 msgid "amorous" msgstr "amoroso" -#: [mood]angry +#: ../cache/locales.php:581 msgid "angry" msgstr "arrabbiato" -#: [mood]annoyed +#: ../cache/locales.php:582 msgid "annoyed" msgstr "infastidito" -#: [mood]anxious +#: ../cache/locales.php:583 msgid "anxious" msgstr "ansioso" -#: [mood]aroused +#: ../cache/locales.php:584 msgid "aroused" msgstr "suscitato" -#: [mood]ashamed +#: ../cache/locales.php:585 msgid "ashamed" msgstr "vergonato" -#: [mood]bored +#: ../cache/locales.php:586 msgid "bored" msgstr "annoiato" -#: [mood]brave +#: ../cache/locales.php:587 msgid "brave" msgstr "bravo" -#: [mood]calm +#: ../cache/locales.php:588 msgid "calm" msgstr "tranquillo" -#: [mood]cautious +#: ../cache/locales.php:589 msgid "cautious" msgstr "prudente" -#: [mood]cold +#: ../cache/locales.php:590 msgid "cold" msgstr "freddo" -#: [mood]confident +#: ../cache/locales.php:591 msgid "confident" msgstr "fiducioso" -#: [mood]confused +#: ../cache/locales.php:592 msgid "confused" msgstr "confuso" -#: [mood]contemplative +#: ../cache/locales.php:593 msgid "contemplative" msgstr "contemplativo" -#: [mood]contented +#: ../cache/locales.php:594 msgid "contented" msgstr "contento" -#: [mood]cranky +#: ../cache/locales.php:595 msgid "cranky" msgstr "irritabile" -#: [mood]crazy +#: ../cache/locales.php:596 msgid "crazy" msgstr "pazzo" -#: [mood]creative +#: ../cache/locales.php:597 msgid "creative" msgstr "creativo" -#: [mood]curious +#: ../cache/locales.php:598 msgid "curious" msgstr "curioso" -#: [mood]dejected +#: ../cache/locales.php:599 msgid "dejected" msgstr "abbattuto" -#: [mood]depressed +#: ../cache/locales.php:600 msgid "depressed" msgstr "depresso" -#: [mood]disappointed +#: ../cache/locales.php:601 msgid "disappointed" msgstr "deluso" -#: [mood]disgusted +#: ../cache/locales.php:602 msgid "disgusted" msgstr "disgustato" -#: [mood]dismayed +#: ../cache/locales.php:603 msgid "dismayed" msgstr "sgomentato" -#: [mood]distracted +#: ../cache/locales.php:604 msgid "distracted" msgstr "distratto" -#: [mood]embarrassed +#: ../cache/locales.php:605 msgid "embarrassed" msgstr "imbarazzato" -#: [mood]envious +#: ../cache/locales.php:606 msgid "envious" msgstr "invidioso" -#: [mood]excited +#: ../cache/locales.php:607 msgid "excited" msgstr "emozionato" -#: [mood]flirtatious +#: ../cache/locales.php:608 msgid "flirtatious" msgstr "provocante" -#: [mood]frustated +#: ../cache/locales.php:609 msgid "frustated" msgstr "" -#: [mood]grateful +#: ../cache/locales.php:610 msgid "grateful" msgstr "grato" -#: [mood]grieving +#: ../cache/locales.php:611 msgid "grieving" msgstr "triste" -#: [mood]grumpy +#: ../cache/locales.php:612 msgid "grumpy" msgstr "scontroso" -#: [mood]guilty +#: ../cache/locales.php:613 msgid "guilty" msgstr "colpevole" -#: [mood]happy +#: ../cache/locales.php:614 msgid "happy" msgstr "felice" -#: [mood]hopeful +#: ../cache/locales.php:615 msgid "hopeful" msgstr "fiducioso" -#: [mood]hot +#: ../cache/locales.php:616 msgid "hot" msgstr "caldo" -#: [mood]humbled +#: ../cache/locales.php:617 msgid "humbled" msgstr "umile" -#: [mood]humiliated +#: ../cache/locales.php:618 msgid "humiliated" msgstr "umiliato" -#: [mood]hungry +#: ../cache/locales.php:619 msgid "hungry" msgstr "affamato" -#: [mood]hurt +#: ../cache/locales.php:620 msgid "hurt" msgstr "ferito" -#: [mood]impressed +#: ../cache/locales.php:621 msgid "impressed" msgstr "impressionato" -#: [mood]in_awe +#: ../cache/locales.php:622 msgid "in awe" msgstr "incantato" -#: [mood]in_love +#: ../cache/locales.php:623 msgid "in love" msgstr "innamorato" -#: [mood]indignant +#: ../cache/locales.php:624 msgid "indignant" msgstr "" -#: [mood]interested +#: ../cache/locales.php:625 msgid "interested" msgstr "interessato" -#: [mood]intoxicated +#: ../cache/locales.php:626 msgid "intoxicated" msgstr "ubriaco" -#: [mood]invincible +#: ../cache/locales.php:627 msgid "invincible" msgstr "invincibile" -#: [mood]jealous +#: ../cache/locales.php:628 msgid "jealous" msgstr "geloso" -#: [mood]lonely +#: ../cache/locales.php:629 msgid "lonely" msgstr "solo" -#: [mood]lost +#: ../cache/locales.php:630 msgid "lost" msgstr "perso" -#: [mood]lucky +#: ../cache/locales.php:631 msgid "lucky" msgstr "fortunato" -#: [mood]mean +#: ../cache/locales.php:632 msgid "mean" msgstr "meschino" -#: [mood]moody +#: ../cache/locales.php:633 msgid "moody" msgstr "di cattivo umore" -#: [mood]nervous +#: ../cache/locales.php:634 msgid "nervous" msgstr "nervoso" -#: [mood]neutral +#: ../cache/locales.php:635 msgid "neutral" msgstr "neutrale" -#: [mood]offended +#: ../cache/locales.php:636 msgid "offended" msgstr "offeso" -#: [mood]outraged +#: ../cache/locales.php:637 msgid "outraged" msgstr "oltraggiato" -#: [mood]playful +#: ../cache/locales.php:638 msgid "playful" msgstr "scherzoso" -#: [mood]proud +#: ../cache/locales.php:639 msgid "proud" msgstr "orgoglioso" -#: [mood]relaxed +#: ../cache/locales.php:640 msgid "relaxed" msgstr "rilassato" -#: [mood]relieved +#: ../cache/locales.php:641 msgid "relieved" msgstr "sollevato" -#: [mood]restless +#: ../cache/locales.php:642 +msgid "remorseful" +msgstr "contrito" + +#: ../cache/locales.php:643 msgid "restless" msgstr "agitato" -#: [mood]sad +#: ../cache/locales.php:644 msgid "sad" msgstr "triste" -#: [mood]sarcastic +#: ../cache/locales.php:645 msgid "sarcastic" msgstr "sarcastico" -#: [mood]satisfied +#: ../cache/locales.php:646 msgid "satisfied" msgstr "soddisfatto" -#: [mood]serious +#: ../cache/locales.php:647 msgid "serious" msgstr "serio" -#: [mood]shocked +#: ../cache/locales.php:648 msgid "shocked" msgstr "sciocato" -#: [mood]shy +#: ../cache/locales.php:649 msgid "shy" msgstr "timido" -#: [mood]sick +#: ../cache/locales.php:650 msgid "sick" msgstr "ammalato" -#: [mood]sleepy +#: ../cache/locales.php:651 msgid "sleepy" msgstr "addormentato" -#: [mood]spontaneous +#: ../cache/locales.php:652 msgid "spontaneous" msgstr "spontaneo" -#: [mood]stressed +#: ../cache/locales.php:653 msgid "stressed" msgstr "stressato" -#: [mood]strong +#: ../cache/locales.php:654 msgid "strong" msgstr "forte" -#: [mood]surprised +#: ../cache/locales.php:655 msgid "surprised" msgstr "sorpreso" -#: [mood]thankful +#: ../cache/locales.php:656 msgid "thankful" msgstr "riconoscente" -#: [mood]thirsty +#: ../cache/locales.php:657 msgid "thirsty" msgstr "assetato" -#: [mood]tired +#: ../cache/locales.php:658 msgid "tired" msgstr "stanco" -#: [mood]undefined +#: ../cache/locales.php:659 msgid "undefined" msgstr "non definito" -#: [mood]weak +#: ../cache/locales.php:660 msgid "weak" msgstr "debole" -#: [mood]worried +#: ../cache/locales.php:661 msgid "worried" msgstr "preoccupato" -#: [month]title +#: ../cache/locales.php:662 msgid "Month" msgstr "Mese" -#: [month]january +#: ../cache/locales.php:663 msgid "January" msgstr "gennaio" -#: [month]february +#: ../cache/locales.php:664 msgid "February" msgstr "febbraio" -#: [month]march +#: ../cache/locales.php:665 msgid "March" msgstr "marzo" -#: [month]april +#: ../cache/locales.php:666 msgid "April" msgstr "aprile" -#: [month]may +#: ../cache/locales.php:667 msgid "May" msgstr "maggio" -#: [month]june +#: ../cache/locales.php:668 msgid "June" msgstr "giugno" -#: [month]july +#: ../cache/locales.php:669 msgid "July" msgstr "luglio" -#: [month]august +#: ../cache/locales.php:670 msgid "August" msgstr "agosto" -#: [month]september +#: ../cache/locales.php:671 msgid "September" msgstr "settembre" -#: [month]october +#: ../cache/locales.php:672 msgid "October" msgstr "ottobre" -#: [month]november +#: ../cache/locales.php:673 msgid "November" msgstr "novembre" -#: [month]december +#: ../cache/locales.php:674 msgid "December" msgstr "dicembre" -#: [year]title +#: ../cache/locales.php:675 msgid "Year" msgstr "Anno" -#: [date]today +#: ../cache/locales.php:676 msgid "Today" msgstr "Oggi" -#: [date]tomorrow +#: ../cache/locales.php:677 msgid "Tomorrow" msgstr "Domani" -#: [date]yesterday +#: ../cache/locales.php:678 msgid "Yesterday" msgstr "Ieri" -#: [date]ago -#, fuzzy -msgid "%d days ago" +#: ../cache/locales.php:679 +#, php-format +msgid " %d days ago" msgstr " %d giorni fa" -#: [date]day +#: ../cache/locales.php:680 msgid "day" msgstr "giorno" -#: [post]whats_new +#: ../cache/locales.php:682 msgid "What's new ?" msgstr "" -#: [post]place +#: ../cache/locales.php:683 msgid "Place" msgstr "" -#: [post]by +#: ../cache/locales.php:684 msgid "by" msgstr "" -#: [post]geolocalisation +#: ../cache/locales.php:685 msgid "Geolocalisation" msgstr "" -#: [post]email +#: ../cache/locales.php:686 msgid "email" msgstr "" -#: [post]no_comments +#: ../cache/locales.php:688 msgid "No comments yet" msgstr "" -#: [post]no_comments_stream +#: ../cache/locales.php:689 msgid "No comments stream" msgstr "" -#: [post]no_load +#: ../cache/locales.php:690 msgid "Your feed cannot be loaded." msgstr "Il tuo feed non può essere caricato" -#: [post]older +#: ../cache/locales.php:691 msgid "Get older posts" msgstr "Carica i post più vecchi" -#: [post]new_items +#: ../cache/locales.php:692 +#, php-format msgid "%s new items" msgstr "" -#: [post]comment_error +#: ../cache/locales.php:693 msgid "Comment publication error" msgstr "" -#: [post]comments_older +#: ../cache/locales.php:694 msgid "Show the older comments" msgstr "" -#: [post]comments_loading -#, fuzzy -msgid "Loading comments..." -msgstr "Caricando il tuo feed..." +#: ../cache/locales.php:695 +msgid "Loading comments ..." +msgstr "" -#: [post]comments_get +#: ../cache/locales.php:696 msgid "Get the comments" msgstr "" -#: [post]comment_add +#: ../cache/locales.php:697 msgid "Add a comment" msgstr "" -#: [post]share +#: ../cache/locales.php:698 msgid "Share with" msgstr "" -#: [post]share_everyone +#: ../cache/locales.php:699 msgid "Everyone" msgstr "" -#: [post]share_your_contacts +#: ../cache/locales.php:700 msgid "Your contacts" msgstr "" -#: [post]updated +#: ../cache/locales.php:702 msgid "Updated" msgstr "" -#: [post]content_not_found +#: ../cache/locales.php:703 msgid "Content not found" msgstr "" -#: [post]default_title +#: ../cache/locales.php:704 msgid "Contact publication" msgstr "" -#: [post]comments +#: ../cache/locales.php:705 msgid "Comments" msgstr "" -#: [api]error +#: ../cache/locales.php:706 msgid "The API is not reachable, try again later" msgstr "" -#: [field]type_here +#: ../cache/locales.php:707 msgid "Type here" msgstr "" -#~ msgid "Environment" -#~ msgstr "Ambiente" - -#~ msgid "remorseful" -#~ msgstr "contrito" - #~ msgid "Logout" #~ msgstr "Disconnettiti" +#, php-format #~ msgid "%s - Account Creation" #~ msgstr "%s - Registrazione" +#, php-format #~ msgid "Movim requires the %s extension." #~ msgstr "Movim necessita l'estensione %s" @@ -2744,41 +2614,66 @@ msgstr "" #~ msgid "Movim's folder must be writable." #~ msgstr "La cartella di Movim deve avere i permessi di scrittura" +#, php-format #~ msgid "Install %s and %s packages" #~ msgstr "Installa %s e i pacchetti %s" #~ msgid "Update your PHP version or contact your server administrator" -#~ msgstr "Aggiorna la tua versione di PHP oppure contatta l'amministratore del tuo server" +#~ msgstr "" +#~ "Aggiorna la tua versione di PHP oppure contatta l'amministratore del tuo " +#~ "server" #~ msgid "Enable read and write rights on Movim's root folder" -#~ msgstr "Imposta i permessi di lettura e scrittura sulla cartella root di Movim" +#~ msgstr "" +#~ "Imposta i permessi di lettura e scrittura sulla cartella root di Movim" #~ msgid "PHP version mismatch. Movim requires PHP 5.3 minimum." -#~ msgstr "Discrepanza nella versione di PHP. Movim richiede PHP 5.3 o maggiore." +#~ msgstr "" +#~ "Discrepanza nella versione di PHP. Movim richiede PHP 5.3 o maggiore." +#, php-format #~ msgid "Install the %s package" #~ msgstr "Installa il pacchetto %s" -#~ msgid "Some errors were detected. Please correct them for the installation to proceed." -#~ msgstr "Alcuni errori sono stati rilevati. Per favore correggili prima che l'installazione proceda." +#~ msgid "" +#~ "Some errors were detected. Please correct them for the installation to " +#~ "proceed." +#~ msgstr "" +#~ "Alcuni errori sono stati rilevati. Per favore correggili prima che " +#~ "l'installazione proceda." -#~ msgid "Keep in mind that Movim is still under development and will handle many personal details. Its use can potentially endanger your data. Always pay attention to information that you submit." -#~ msgstr "Tieni in considerazione che Movim è ancora in sviluppo e tratterà molte informazioni personali. Il suo utilizzo può potenzialmente mettere in pericolo le tue informazioni. Stai sempre attendo alle informazioni che fornisci." +#~ msgid "" +#~ "Keep in mind that Movim is still under development and will handle many " +#~ "personal details. Its use can potentially endanger your data. Always pay " +#~ "attention to information that you submit." +#~ msgstr "" +#~ "Tieni in considerazione che Movim è ancora in sviluppo e tratterà molte " +#~ "informazioni personali. Il suo utilizzo può potenzialmente mettere in " +#~ "pericolo le tue informazioni. Stai sempre attendo alle informazioni che " +#~ "fornisci." -#~ msgid "Before you enjoy your social network, a few adjustements are required." -#~ msgstr "Prima di goderti il tuo social network, alcune modifiche sono richieste." +#~ msgid "" +#~ "Before you enjoy your social network, a few adjustements are required." +#~ msgstr "" +#~ "Prima di goderti il tuo social network, alcune modifiche sono richieste." #~ msgid "Thank you for downloading Movim!" #~ msgstr "Grazie per aver scaricato Movim!" +#, php-format #~ msgid "Couldn't create configuration file '%s'." #~ msgstr "Impossibile creare il file di configurazione '%s'" +#, php-format #~ msgid "Couldn't create directory '%s'." #~ msgstr "Impossibile creare la cartella '%s'" -#~ msgid "The following requirements were not met. Please make sure they are all satisfied in order to install Movim." -#~ msgstr "I seguenti requisiti non sono stati riscontrati. Per favore assicurati che siano soddisfatti per poter installare Movim." +#~ msgid "" +#~ "The following requirements were not met. Please make sure they are all " +#~ "satisfied in order to install Movim." +#~ msgstr "" +#~ "I seguenti requisiti non sono stati riscontrati. Per favore assicurati che " +#~ "siano soddisfatti per poter installare Movim." #~ msgid "Compatibility Test" #~ msgstr "Test di compatibilità" @@ -2807,6 +2702,7 @@ msgstr "" #~ msgid "Actual version : " #~ msgstr "Versione corrente " +#, php-format #~ msgid "Please remove the %s folder in order to complete the installation" #~ msgstr "Per completare l'installazione rimuovere la cartella %s" @@ -2834,15 +2730,21 @@ msgstr "" #~ msgid "or" #~ msgstr "oppure" +#, php-format #~ msgid "You can now access your shiny Movim instance %sJump In !%s" -#~ msgstr "Puoi ora accedere alla tua splendente istanza Movim %sTuffati dentro!%s" +#~ msgstr "" +#~ "Puoi ora accedere alla tua splendente istanza Movim %sTuffati dentro!%s" #~ msgid "Database Movim schema installed" #~ msgstr "Installato lo schema del database Movim" +#~ msgid "Database Detected" +#~ msgstr "Database Trovato" + #~ msgid "Could not communicate with the XMPP server" #~ msgstr "Impossibile comunicare con il server XMPP" +#, php-format #~ msgid "%s - Add An Account" #~ msgstr "%s - Aggiungi un account" @@ -2868,10 +2770,15 @@ msgstr "" #~ msgstr "8 caratteri" #~ msgid "A capital letter, a digit and a special character are recommended" -#~ msgstr "Sono consigliati una lettera maiuscola, un numero ed un carattere spaciale" +#~ msgstr "" +#~ "Sono consigliati una lettera maiuscola, un numero ed un carattere spaciale" -#~ msgid "Firstly fill in this blank with a brand new account ID, this address will follow you on all the Movim network !" -#~ msgstr "Prima di tutto compila questo spazio con un nuovo ID utente, questo indirizzo ti seguirà su tutta la rete Movim!" +#~ msgid "" +#~ "Firstly fill in this blank with a brand new account ID, this address will " +#~ "follow you on all the Movim network !" +#~ msgstr "" +#~ "Prima di tutto compila questo spazio con un nuovo ID utente, questo " +#~ "indirizzo ti seguirà su tutta la rete Movim!" #~ msgid "Add your login informations" #~ msgstr "Inserisci le tue informazioni di login" @@ -2879,9 +2786,14 @@ msgstr "" #~ msgid "Create" #~ msgstr "Crea" +#~ msgid "Remove this contact" +#~ msgstr "Elimina questo contatto" + +#, php-format #~ msgid "Cannot open log file '%s'" #~ msgstr "Impossibile aprire il file di log '%s'" +#, php-format #~ msgid "jid '%s' is incorrect" #~ msgstr "Il jabber id '%s' é sbagliato" @@ -2891,35 +2803,71 @@ msgstr "" #~ msgid "empty" #~ msgstr "vuoto" +#~ msgid "Loading your feed ..." +#~ msgstr "Caricando il tuo feed..." + #~ msgid "Client Name" #~ msgstr "Nome client" #~ msgid "Client Type" #~ msgstr "Tipologia client" -#~ msgid "Your server doesn't support post publication, you can only read contact's feeds" -#~ msgstr "Il tuo server non supporta la pubblicazione dei post, puoi solo leggere i feed dei tuoi contatti" +#~ msgid "" +#~ "Your server doesn't support post publication, you can only read contact's " +#~ "feeds" +#~ msgstr "" +#~ "Il tuo server non supporta la pubblicazione dei post, puoi solo leggere i " +#~ "feed dei tuoi contatti" #~ msgid "My Posts" #~ msgstr "I miei post" -#~ msgid "Visit the page %s What is Movim ? %s to know more about the project, its aims and understand how it works." -#~ msgstr "Visita la pagina %s Cosa è Movim ? %s per sapere di più sul progetto, è dedicata a farti capire come funziona." +#, php-format +#~ msgid "" +#~ "Visit the page %s What is Movim ? %s to know more about the project, its " +#~ "aims and understand how it works." +#~ msgstr "" +#~ "Visita la pagina %s Cosa è Movim ? %s per sapere di più sul progetto, è " +#~ "dedicata a farti capire come funziona." #~ msgid "I can't find the answer to my question here" #~ msgstr "Non riesco a trovare la soluzione alla mia domanda qui" -#~ msgid "Go to the %s to the Frequently Asked Questions %s or come ask your question on the official chatroom %s or via our mailing-list (%s see the dedicated page %s)." -#~ msgstr "Vai alle %s domande chieste frequentemente (FAQ) %s o vieni a fare le tue domande sulla chatroom ufficiale %s o tramite la nostra mailing-list (%s vedi la pagina dedicata %s)." +#, php-format +#~ msgid "" +#~ "Go to the %s to the Frequently Asked Questions %s or come ask your question " +#~ "on the official chatroom %s or via our mailing-list (%s see the dedicated " +#~ "page %s)." +#~ msgstr "" +#~ "Vai alle %s domande chieste frequentemente (FAQ) %s o vieni a fare le tue " +#~ "domande sulla chatroom ufficiale %s o tramite la nostra mailing-list (%s " +#~ "vedi la pagina dedicata %s)." -#~ msgid "Although Movim is evolving fast, many (many) features are missing. Be patient ;). You can have a look %s at next versions's roadmaps %s to know if the one you want is on its way." -#~ msgstr "Nonostante Movim si stia sviluppando velocemente, molte (molte) caratteristiche mancano. Sii paziente ;). Puoi guardare %s alla roadmap della prossima versione %s per scoprire se una delle cose che vuoi sta venendo sviluppata." +#, php-format +#~ msgid "" +#~ "Although Movim is evolving fast, many (many) features are missing. Be " +#~ "patient ;). You can have a look %s at next versions's roadmaps %s to know if " +#~ "the one you want is on its way." +#~ msgstr "" +#~ "Nonostante Movim si stia sviluppando velocemente, molte (molte) " +#~ "caratteristiche mancano. Sii paziente ;). Puoi guardare %s alla roadmap " +#~ "della prossima versione %s per scoprire se una delle cose che vuoi sta " +#~ "venendo sviluppata." -#~ msgid "Don't forget that Movim is an open source project, a helping hand is always welcome (see %s Can I participate %s)" -#~ msgstr "Non scordarti che Movim è un progetto open source, una mano è sempre benvenuta (vedi %s Posso partecipare %s)" +#, php-format +#~ msgid "" +#~ "Don't forget that Movim is an open source project, a helping hand is always " +#~ "welcome (see %s Can I participate %s)" +#~ msgstr "" +#~ "Non scordarti che Movim è un progetto open source, una mano è sempre " +#~ "benvenuta (vedi %s Posso partecipare %s)" -#~ msgid "Some features are missing/I can't do everything I used to do on other social networks" -#~ msgstr "Alcune caratteristiche mancano/Non posso fare tutto quello che ero solito fare su altri social netowk" +#~ msgid "" +#~ "Some features are missing/I can't do everything I used to do on other social " +#~ "networks" +#~ msgstr "" +#~ "Alcune caratteristiche mancano/Non posso fare tutto quello che ero solito " +#~ "fare su altri social netowk" #~ msgid "The current BOSH URL in invalid" #~ msgstr "Il corrente indirizzo BOSH è invalido" @@ -2936,6 +2884,10 @@ msgstr "" #~ msgid "Decline" #~ msgstr "Rifiuta" +#, php-format +#~ msgid "Contacts (%s)" +#~ msgstr "Contatti (%s)" + #~ msgid "No profile yet ?" #~ msgstr "Ancora nessun profilo?" @@ -2960,6 +2912,11 @@ msgstr "" #~ msgid "ultimate" #~ msgstr "ultimo" +#, php-format +#~ msgid "This server hosts %s accounts" +#~ msgstr "Questo server ospita %s account" + +#, php-format #~ msgid "Cannot load element value '%s'" #~ msgstr "Impossibile caricare il valore dell'elemento '%s'" @@ -2969,12 +2926,15 @@ msgstr "" #~ msgid "Invite this user" #~ msgstr "Invita questo utente" +#, php-format #~ msgid "Bosh connection failed with error '%s'" #~ msgstr "Connessione Bosh fallita con errore '%s'" +#, php-format #~ msgid "Database connection failed with error '%s'" #~ msgstr "Connessione al database fallita con errore '%s'" +#, php-format #~ msgid "XMPP connection through Bosh failed with error '%s'" #~ msgstr "Connessione XMPP tramite Bosh fallita con errore '%s'" diff --git a/sources/locales/ja.po b/sources/locales/ja.po index 1c5d9b3..fa70137 100644 --- a/sources/locales/ja.po +++ b/sources/locales/ja.po @@ -1,2739 +1,2593 @@ # Japanese translations for Movim package. # This file is distributed under the same license as the Movim package. # This file was translated from CodingTeam at . -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/About/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Account/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/AccountNext/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/AdHoc/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/AdminDB/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/AdminMain/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/AdminTest/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Api/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Avatar/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Blog/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Bookmark/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Chat/locales.ini -#. #-#-#-#-# 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 -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Group/locales.ini -#. #-#-#-#-# 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 -#. #-#-#-#-# 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 -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Presence/locales.ini -#. #-#-#-#-# 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 -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Share/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Statistics/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Subscribe/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Syndication/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Upload/locales.ini -#. #-#-#-#-# 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-08-20 15:17+0200\n" +"POT-Creation-Date: 2015-06-08 22:06+0200\n" "PO-Revision-Date: 2015-06-09 12:20+0000\n" "Last-Translator: edhelas \n" "Language-Team: LANGUAGE \n" -"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2015-06-18 21:08+0000\n" "X-Generator: Launchpad (build 17570)\n" +"Language: \n" -#: [about]thanks +#: ../cache/locales.php:2 msgid "Thanks" msgstr "" -#: [about]developers +#: ../cache/locales.php:3 msgid "Developers" msgstr "開発者" -#: [about]translators +#: ../cache/locales.php:4 msgid "Translators" msgstr "翻訳者" -#: [about]software +#: ../cache/locales.php:5 msgid "Software" msgstr "ソフトウェア" -#: [about]resources +#: ../cache/locales.php:6 msgid "Resources" msgstr "リソース" -#: [about]api [schema]api [api]title +#: ../cache/locales.php:7 ../cache/locales.php:83 ../cache/locales.php:85 msgid "API" msgstr "API" -#: [about]info -msgid "Movim is an XMPP-based communication platform. All the project, except the following software and resources, is under" +#: ../cache/locales.php:8 +msgid "" +"Movim is an XMPP-based communication platform. All the project, except the " +"following software and resources, is under" msgstr "" -#: [account]title +#: ../cache/locales.php:9 msgid "Account" msgstr "アカウント" -#: [account]password_change_title -#, fuzzy -msgid "Change my password" -msgstr "パスワードが違います" - -#: [account]password [db]password [credentials]password [form]password -#: [input]password -msgid "Password" -msgstr "パスワード" - -#: [account]password_confirmation -#, fuzzy -msgid "Password confirmation" -msgstr "%s - 設定" - -#: [account]password_changed +#: ../cache/locales.php:10 msgid "The password has been updated" msgstr "パスワードは更新されました" -#: [account]password_not_valid +#: ../cache/locales.php:11 msgid "Please provide a valid password (6 characters minimum)" msgstr "適正なパスワードを記入してください(最低6文字)" -#: [account]password_not_same +#: ../cache/locales.php:12 msgid "The provided passwords are not the same" msgstr "記入されたパスワードが異なっています" -#: [account]delete_title +#: ../cache/locales.php:13 msgid "Delete my account" msgstr "アカウントを削除する" -#: [account]delete -#, fuzzy -msgid "Delete your account" -msgstr "アカウントを削除する" - -#: [account]delete_text -msgid "You will delete your XMPP account and all the relative information linked to it (profile, contacts and publications)." +#: ../cache/locales.php:14 +msgid "" +"You will delete your XMPP account and all the relative information linked to " +"it (profile, contacts and publications)." msgstr "XMPP アカウントと関連しているデータ、プロファイル、コンタクトや投稿などが削除されます。" -#: [account]delete_text_confirm +#: ../cache/locales.php:15 msgid "Are you sure that you want to delete it ?" msgstr "削除してよろしいですか" -#: [account]gateway_title -msgid "Gateway" -msgstr "" - -#: [create]title [subscribe]title +#: ../cache/locales.php:16 ../cache/locales.php:411 msgid "Create a new account" msgstr "新しいアカウントを作成する" -#: [create]notfound +#: ../cache/locales.php:17 msgid "No account creation form found on the server" msgstr "" -#: [create]server_on +#: ../cache/locales.php:18 ../cache/locales.php:172 msgid "on" msgstr "" -#: [create]successfull +#: ../cache/locales.php:19 msgid "Your acccount has been successfully registered" msgstr "アカウントが正常に作成されました" -#: [create]loading +#: ../cache/locales.php:20 msgid "Loading" msgstr "読み込み中" -#: [error]not_acceptable +#: ../cache/locales.php:21 msgid "Not Acceptable" msgstr "" -#: [error]service_unavailable +#: ../cache/locales.php:22 msgid "The registration system of this server is currently unavailable" msgstr "" -#: [oob]about -msgid "This server use an external system for the registration, please click on the following URL." +#: ../cache/locales.php:23 +msgid "" +"This server use an external system for the registration, please click on the " +"following URL." msgstr "" -#: [adhoc]title +#: ../cache/locales.php:24 msgid "Actions" msgstr "アクション" -#: [db]legend [schema]database +#: ../cache/locales.php:25 ../cache/locales.php:82 msgid "Database" msgstr "データベース" -#: [db]connect_error +#: ../cache/locales.php:26 msgid "Modl wasn't able to connect to the database" msgstr "Modlがデータベースに接続できませんでした" -#: [db]connect_success +#: ../cache/locales.php:27 msgid "Movim is connected to the database" msgstr "Movimがデータベースに接続しました" -#: [db]update +#: ../cache/locales.php:28 msgid "The database need to be updated" msgstr "データベースをアップデートする必要があります" -#: [db]up_to_date +#: ../cache/locales.php:29 msgid "Movim database is up to date" msgstr "データベースがアップデートされました" -#: [db]type +#: ../cache/locales.php:30 msgid "Database Type" msgstr "データベースタイプ" -#: [db]username [credentials]username [input]username +#: ../cache/locales.php:31 ../cache/locales.php:50 ../cache/locales.php:540 msgid "Username" msgstr "ユーザ名" -#: [db]host +#: ../cache/locales.php:32 ../cache/locales.php:51 ../cache/locales.php:282 +#: ../cache/locales.php:541 +msgid "Password" +msgstr "パスワード" + +#: ../cache/locales.php:33 msgid "Host" msgstr "ホスト" -#: [db]port +#: ../cache/locales.php:34 msgid "Port" msgstr "ポート" -#: [db]name -#, fuzzy -msgid "Database sName" +#: ../cache/locales.php:35 +msgid "Database Name" msgstr "データベース名" -#: [admin]general +#: ../cache/locales.php:36 msgid "General Settings" msgstr "一般設定" -#: [general]theme +#: ../cache/locales.php:37 msgid "Theme" msgstr "テーマ" -#: [general]language +#: ../cache/locales.php:38 msgid "Default language" msgstr "標準の言語" -#: [general]log_verbosity +#: ../cache/locales.php:39 +msgid "Environment" +msgstr "環境" + +#: ../cache/locales.php:40 msgid "Log verbosity" msgstr "ログ" -#: [general]timezone +#: ../cache/locales.php:41 msgid "Server Timezone" msgstr "サーバータイムゾーン" -#: [general]limit +#: ../cache/locales.php:42 msgid "User folder size limit (in bytes)" msgstr "ユーザーフォルダのサイズ上限(バイト)" -#: [websocket]title +#: ../cache/locales.php:43 msgid "WebSocket Configuration" msgstr "ウェブソケット設定" -#: [websocket]info +#: ../cache/locales.php:44 msgid "Enter here a valid WebSocket URI in the form" msgstr "" -#: [websocket]label +#: ../cache/locales.php:45 msgid "WebSocket URI" msgstr "ウェブソケットURI" -#: [websocket]save_info -msgid "If you change the URI, please restart the daemon to reload the configuration" +#: ../cache/locales.php:46 +msgid "" +"If you change the URI, please restart the daemon to reload the configuration" msgstr "URIを変えるとデーモンを再起動してください" -#: [websocket]publics +#: ../cache/locales.php:47 msgid "Public WebSockets" msgstr "" -#: [credentials]title +#: ../cache/locales.php:48 msgid "Administration Credential" msgstr "管理者認証" -#: [credentials]info +#: ../cache/locales.php:49 msgid "Change the default credentials admin/password" msgstr "デフォルトの管理者・パスワードを変更する" -#: [credentials]re_password +#: ../cache/locales.php:52 msgid "Retype password" msgstr "パスワードを再入力してください" -#: [whitelist]title +#: ../cache/locales.php:53 msgid "Whitelist - XMPP Server" msgstr "信頼するXMPPサーバー" -#: [whitelist]info1 -msgid "If you want to specify a list of authorized XMPP servers on your Movim pod and forbid the connection on all the others please put their domain name here, with comma (ex: movim.eu,jabber.fr)" -msgstr "限られた信頼するXMPPサーバーのリストをMovimのポッドに設定し、他のサーバーの接続をブロックしたい場合、ここにドメインネームをコンマで区切って(例:movim.eu,jabber.fr)入力してください。" +#: ../cache/locales.php:54 +msgid "" +"If you want to specify a list of authorized XMPP servers on your Movim pod " +"and forbid the connection on all the others please put their domain name " +"here, with comma (ex: movim.eu,jabber.fr)" +msgstr "" +"限られた信頼するXMPPサーバーのリストをMovimのポッドに設定し、他のサーバーの接続をブロックしたい場合、ここにドメインネームをコンマで区切って(例:" +"movim.eu,jabber.fr)入力してください。" -#: [whitelist]info2 -msgid "Leave this field blank if you allow the access to all the XMPP accounts." +#: ../cache/locales.php:55 +msgid "" +"Leave this field blank if you allow the access to all the XMPP accounts." msgstr "空のままにするとアクセスできるXMPPアカウントが制限されません" -#: [whitelist]label +#: ../cache/locales.php:56 msgid "List of whitelisted XMPP servers" msgstr "信頼するXMPPサーバー" -#: [information]title -#, fuzzy -msgctxt "[information]title" +#: ../cache/locales.php:57 ../cache/locales.php:61 msgid "Information Message" -msgstr "クライアントインフォメーション" +msgstr "" -#: [information]description +#: ../cache/locales.php:58 msgid "Description" msgstr "" -#: [information]info1 +#: ../cache/locales.php:59 msgid "This message will be displayed on the login page" msgstr "このメッセージはログインページに表示されます" -#: [information]info2 -#, fuzzy -msgid "Leave this field blank if you dont want to show any message." +#: ../cache/locales.php:60 +msgid "Leave this field blank if you don't want to show any message." msgstr "メッセージを表示したくない場合、空にしてください。" -#: [information]label -#, fuzzy -msgctxt "[information]label" -msgid "Information Message" -msgstr "クライアントインフォメーション" - -#: [log]empty +#: ../cache/locales.php:62 msgid "Empty" msgstr "空" -#: [log]syslog +#: ../cache/locales.php:63 msgid "Syslog" msgstr "Syslog" -#: [log]syslog_files +#: ../cache/locales.php:64 msgid "Syslog and files" msgstr "Syslogとファイル" -#: [rewrite]title +#: ../cache/locales.php:65 msgid "URL Rewriting" msgstr "" -#: [rewrite]info +#: ../cache/locales.php:66 msgid "The URL Rewriting can be enabled" msgstr "" -#: [admin]compatibility +#: ../cache/locales.php:67 msgid "General Overview" msgstr "概要" -#: [compatibility]info -msgid "Movim has found some issues or things that need to be fixed or improved" +#: ../cache/locales.php:68 +msgid "" +"Movim has found some issues or things that need to be fixed or improved" msgstr "" -#: [compatibility]php1 +#: ../cache/locales.php:69 +#, php-format msgid "Update your PHP-Version: %s" msgstr "PHPをアップデートしてください: %s" -#: [compatibility]php2 +#: ../cache/locales.php:70 msgid "Required: 5.3.0" msgstr "" -#: [compatibility]curl +#: ../cache/locales.php:71 msgid "Install the php5-curl library" msgstr "" -#: [compatibility]imagick +#: ../cache/locales.php:72 msgid "Install the php5-imagick library" msgstr "" -#: [compatibility]gd +#: ../cache/locales.php:73 msgid "Install the php5-gd library" msgstr "" -#: [compatibility]rights -#, fuzzy -msgid "Read and write rights for the webserver in Movims root directory" +#: ../cache/locales.php:74 +msgid "Read and write rights for the webserver in Movim's root directory" msgstr "Movimルートの読み取り・書き込み権限" -#: [compatibility]rewrite +#: ../cache/locales.php:75 msgid "The URL Rewriting support is currently disabled" msgstr "" -#: [compatibility]db +#: ../cache/locales.php:76 msgid "The database need to be updated, go to the database panel to fix this" msgstr "" -#: [compatibility]websocket -msgid "WebSocket connection error, check if the Movim Daemon is running and is reachable" +#: ../cache/locales.php:77 +msgid "" +"WebSocket connection error, check if the Movim Daemon is running and is " +"reacheable" msgstr "" -#: [compatibility]xmpp_websocket -msgid "XMPP Websocket connection error, please check the validity of the URL given in the General Configuration" +#: ../cache/locales.php:78 +msgid "" +"XMPP Websocket connection error, please check the validity of the URL given " +"in the General Configuration" msgstr "" -#: [schema]browser +#: ../cache/locales.php:79 msgid "Browser" msgstr "" -#: [schema]movim +#: ../cache/locales.php:80 msgid "Movim Core" msgstr "" -#: [schema]daemon +#: ../cache/locales.php:81 msgid "Movim Daemon" msgstr "" -#: [schema]xmpp +#: ../cache/locales.php:84 msgid "XMPP" msgstr "" -#: [api]info -msgid "Here you can register your pod on the official %sMovim API%s and be listed on %sthe pods page%s." +#: ../cache/locales.php:86 +#, php-format +msgid "" +"Here you can register your pod on the official %sMovim API%s and be listed " +"on %sthe pods page%s." msgstr "" -#: [api]register +#: ../cache/locales.php:87 msgid "Your pod is not registered on the API" msgstr "" -#: [api]registered +#: ../cache/locales.php:88 msgid "Your pod is registered on the API" msgstr "" -#: [api]wait +#: ../cache/locales.php:89 msgid "Your pod is not yet validated" msgstr "" -#: [api]validated +#: ../cache/locales.php:90 msgid "Your pod is validated" msgstr "" -#: [api]unregister -msgid "You asked to be removed from the API, this request will be processed in a couple of hours" +#: ../cache/locales.php:91 +msgid "" +"You asked to be removed from the API, this request will be processed in a " +"couple of hours" msgstr "" -#: [api]conf_updated [config]updated +#: ../cache/locales.php:92 ../cache/locales.php:147 msgid "Configuration updated" msgstr "設定が変更されました" -#: [avatar]file +#: ../cache/locales.php:93 msgid "File" msgstr "ファイル" -#: [avatar]use_it +#: ../cache/locales.php:94 msgid "Use it" msgstr "使用する" -#: [avatar]webcam +#: ../cache/locales.php:95 msgid "Webcam" msgstr "ウェブカメラ" -#: [avatar]cheese +#: ../cache/locales.php:96 msgid "Cheese !" msgstr "はい、チーズ!" -#: [avatar]snapshot +#: ../cache/locales.php:97 msgid "Take a webcam snapshot" msgstr "ウェブカメラで写真を撮る" -#: [avatar]updated +#: ../cache/locales.php:98 msgid "Avatar Updated" msgstr "アバターがアップデートされました" -#: [avatar]not_updated +#: ../cache/locales.php:99 msgid "Avatar Not Updated" msgstr "アバターが更新されていません" -#: [blog]title [feed]title +#: ../cache/locales.php:100 ../cache/locales.php:415 +#, php-format msgid "%s's feed" msgstr "%s のフィード" -#: [blog]empty +#: ../cache/locales.php:101 msgid "This user has not posted anything right now" msgstr "このユーザがまだ投稿していません" -#: [title]conferences +#: ../cache/locales.php:102 msgid "Conferences" msgstr "" -#: [title]groups [group]empty_title [menu]groups [page]groups +#: ../cache/locales.php:103 ../cache/locales.php:193 ../cache/locales.php:217 +#: ../cache/locales.php:468 msgid "Groups" msgstr "グループ" -#: [chatroom]add +#: ../cache/locales.php:104 msgid "Add a new Chat Room" msgstr "チャットルームを追加する" -#: [chatroom]id [chatrooms]id +#: ../cache/locales.php:105 ../cache/locales.php:368 msgid "Chat Room ID" msgstr "" -#: [chatroom]name -#, fuzzy -msgctxt "[chatroom]name" +#: ../cache/locales.php:106 ../cache/locales.php:116 ../cache/locales.php:156 +#: ../cache/locales.php:361 ../cache/locales.php:369 ../cache/locales.php:424 msgid "Name" msgstr "名前" -#: [chatroom]nickname [general]nickname [chatrooms]nickname +#: ../cache/locales.php:107 ../cache/locales.php:157 ../cache/locales.php:371 +#: ../cache/locales.php:425 msgid "Nickname" msgstr "ニックネーム" -#: [chatroom]autojoin_label +#: ../cache/locales.php:108 msgid "Do you want do join automaticaly this Chat Room ?" msgstr "" -#: [chatroom]bad_id [chatrooms]bad_id +#: ../cache/locales.php:109 ../cache/locales.php:372 msgid "Bad Chatroom ID" msgstr "不正チャットルームID" -#: [chatroom]empty_name [chatrooms]empty_name +#: ../cache/locales.php:110 ../cache/locales.php:373 msgid "Empty name" msgstr "名前が空です" -#: [bookmarks]updated +#: ../cache/locales.php:111 ../cache/locales.php:380 msgid "Bookmarks updated" msgstr "ブックマークを更新しました" -#: [bookmarks]error -#, fuzzy -msgid "An error occured :" +#: ../cache/locales.php:112 +msgid "An error occured : " msgstr "エラーが発生しました: " -#: [bookmarks]configure +#: ../cache/locales.php:113 msgid "Configure" msgstr "設定する" -#: [url]add +#: ../cache/locales.php:114 msgid "Add a new URL" msgstr "URLを追加する" -#: [url]url +#: ../cache/locales.php:115 msgid "URL" msgstr "URL" -#: [url]name -#, fuzzy -msgctxt "[url]name" -msgid "Name" -msgstr "名前" - -#: [message]published +#: ../cache/locales.php:117 msgid "Message Published" msgstr "メッセージが公開されました" -#: [message]encrypted +#: ../cache/locales.php:118 ../cache/locales.php:138 msgid "Encrypted message" msgstr "暗号化されたメッセージ" -#: [message]composing [chats]composing +#: ../cache/locales.php:119 msgid "Composing..." msgstr "書き込み中" -#: [message]paused [chats]paused +#: ../cache/locales.php:120 msgid "Paused..." msgstr "" -#: [message]gone +#: ../cache/locales.php:121 msgid "Contact gone" msgstr "" -#: [chat]attention +#: ../cache/locales.php:122 +#, php-format msgid "%s needs your attention" msgstr "" -#: [chat]placeholder +#: ../cache/locales.php:123 msgid "Your message here..." msgstr "ここに記入を..." -#: [chat]smileys +#: ../cache/locales.php:124 msgid "Smileys" msgstr "絵文字" -#: [chat]empty_title [button]chat +#: ../cache/locales.php:125 ../cache/locales.php:139 msgid "Chat" msgstr "チャット" -#: [chat]empty_text +#: ../cache/locales.php:126 msgid "Discuss with your contacts" msgstr "" -#: [chat]frequent [chats]frequent -msgid "Frequent contacts" -msgstr "" - -#: [chatroom]members +#: ../cache/locales.php:127 msgid "Members" msgstr "メンバー" -#: [chatroom]connected [chatrooms]connected +#: ../cache/locales.php:128 ../cache/locales.php:376 msgid "Connected to the chatroom" msgstr "" -#: [chatroom]disconnected [chatrooms]disconnected +#: ../cache/locales.php:129 ../cache/locales.php:377 msgid "Disconnected from the chatroom" msgstr "" -#: [chatroom]config [group]configuration [page]configuration +#: ../cache/locales.php:130 ../cache/locales.php:200 ../cache/locales.php:469 msgid "Configuration" msgstr "設定" -#: [chatroom]config_saved +#: ../cache/locales.php:131 msgid "Configuration saved" msgstr "設定が保存されました。" -#: [chatroom]subject +#: ../cache/locales.php:132 msgid "Subject" msgstr "トピック" -#: [chatroom]subject_changed +#: ../cache/locales.php:133 msgid "Subject changed" msgstr "トピックが更新されました" -#: [chats]empty_title -#, fuzzy -msgid "No chats yet..." -msgstr "コメントがまだありません" - -#: [chats]empty -msgid "Open a new conversation by clicking on the plus button bellow or visit the Contacts page." +#: ../cache/locales.php:134 +msgid "Open a new conversation by clicking on the plus button bellow" msgstr "" -#: [chats]add +#: ../cache/locales.php:135 msgid "Chat with a contact" msgstr "誰かとチャットする" -#: [chats]more +#: ../cache/locales.php:136 +msgid "Frequent contacts" +msgstr "" + +#: ../cache/locales.php:137 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 "メッセージ" - -#: [config]general +#: ../cache/locales.php:140 msgid "General" msgstr "一般" -#: [config]language +#: ../cache/locales.php:141 msgid "Language" msgstr "言語" -#: [config]roster +#: ../cache/locales.php:142 msgid "Roster display" msgstr "" -#: [config]roster_show +#: ../cache/locales.php:143 msgid "Show the offline contacts" msgstr "オフラインのコンタクトを表示" -#: [config]roster_hide +#: ../cache/locales.php:144 msgid "Hide the offline contacts" msgstr "オフラインのコンタクトを非表示" -#: [config]appearence +#: ../cache/locales.php:145 msgid "Appearence" msgstr "" -#: [config]info -msgid "This configuration is shared wherever you are connected" +#: ../cache/locales.php:146 +msgid "This configuration is shared wherever you are connected !" msgstr "" -#: [notifications]message +#: ../cache/locales.php:148 msgid "Notify on incoming message" msgstr "" -#: [notifications]desktop +#: ../cache/locales.php:149 msgid "Use desktop notifications" msgstr "" -#: [general]legend [general]general_title +#: ../cache/locales.php:150 +msgid "Data" +msgstr "データ" + +#: ../cache/locales.php:151 +msgid "Cache" +msgstr "キャッシュ" + +#: ../cache/locales.php:152 ../cache/locales.php:218 ../cache/locales.php:466 +msgid "Contacts" +msgstr "コンタクト" + +#: ../cache/locales.php:153 ../cache/locales.php:480 +msgid "Posts" +msgstr "投稿" + +#: ../cache/locales.php:154 +msgid "Messages" +msgstr "メッセージ" + +#: ../cache/locales.php:155 ../cache/locales.php:423 msgid "General Informations" msgstr "一般情報" -#: [general]name [public_groups]name [chatrooms]name -msgid "Name" -msgstr "名前" - -#: [general]date_of_birth +#: ../cache/locales.php:158 ../cache/locales.php:427 msgid "Date of Birth" msgstr "生年月日" -#: [general]gender +#: ../cache/locales.php:159 ../cache/locales.php:428 msgid "Gender" msgstr "性別" -#: [general]marital +#: ../cache/locales.php:160 ../cache/locales.php:429 msgid "Marital Status" msgstr "婚姻区分" -#: [general]email +#: ../cache/locales.php:161 ../cache/locales.php:426 msgid "Email" msgstr "メール" -#: [general]website +#: ../cache/locales.php:162 ../cache/locales.php:430 msgid "Website" msgstr "ホームページ" -#: [general]about +#: ../cache/locales.php:163 ../cache/locales.php:431 msgid "About Me" msgstr "個人情報" -#: [general]accounts +#: ../cache/locales.php:164 msgid "Other Accounts" msgstr "他のアカウント" -#: [general]tune +#: ../cache/locales.php:165 msgid "Is Listening" msgstr "" -#: [position]legend [position]position_title +#: ../cache/locales.php:166 ../cache/locales.php:432 msgid "Geographic Position" msgstr "" -#: [position]locality +#: ../cache/locales.php:167 ../cache/locales.php:433 msgid "Locality" msgstr "現在地" -#: [position]country +#: ../cache/locales.php:168 ../cache/locales.php:434 msgid "Country" msgstr "国名" -#: [mood]title +#: ../cache/locales.php:169 msgid "Mood" msgstr "機嫌" -#: [mood]im +#: ../cache/locales.php:170 msgid "I'm " msgstr "" -#: [listen]title +#: ../cache/locales.php:171 msgid "Listening" msgstr "" -#: [last]title +#: ../cache/locales.php:173 msgid "Last seen" msgstr "" -#: [client]title +#: ../cache/locales.php:174 msgid "Client Informations" msgstr "クライアントインフォメーション" -#: [explore]last_registered +#: ../cache/locales.php:175 msgid "Last registered" msgstr "" -#: [explore]explore +#: ../cache/locales.php:176 msgid "Find some new friends" msgstr "" -#: [edit]title [button]edit +#: ../cache/locales.php:177 ../cache/locales.php:533 msgid "Edit" msgstr "編集" -#: [edit]alias +#: ../cache/locales.php:178 msgid "Alias" msgstr "アリアス" -#: [edit]group +#: ../cache/locales.php:179 msgid "Group" msgstr "グループ" -#: [edit]updated [roster]updated +#: ../cache/locales.php:180 ../cache/locales.php:400 msgid "Contact updated" msgstr "コンタクトが更新されました" -#: [delete]title +#: ../cache/locales.php:181 msgid "Are you sure?" msgstr "よろしいですか" -#: [delete]text -msgid "You are going to delete one of your contacts, please confirm your action" +#: ../cache/locales.php:182 +msgid "" +"You are going to delete one of your contacts, please confirm your action" msgstr "コンタクトを削除しますが、よろしいですか" -#: [age]years +#: ../cache/locales.php:183 +#, php-format msgid "%s years" msgstr "%s 年" -#: [blog]last +#: ../cache/locales.php:184 msgid "Last public post" msgstr "" -#: [subscription]to -#, fuzzy -msgid "You can see this contact status" -msgstr "このコンタクトを削除する" - -#: [subscription]to_button -msgid "Share my status" -msgstr "" - -#: [subscription]to_text -msgid "But this contact cannot see yours" -msgstr "" - -#: [subscription]from -msgid "You are not subscribed to this contact" -msgstr "" - -#: [subscription]from_button -#, fuzzy -msgid "Ask to subscribe" -msgstr "参加申請取消" - -#: [subscription]from_text -msgid "But this contact can still see if you are online" -msgstr "" - -#: [subscription]nil -#, fuzzy -msgid "No subscriptions" -msgstr "サブスクリプションを習得する" - -#: [subscription]nil_button -msgid "Invite" -msgstr "" - -#: [subscription]nil_text -msgid "This contact is in your contact list but there is no subscriptions between the two accounts" -msgstr "" - -#: [group]subscribe +#: ../cache/locales.php:185 msgid "Subscribe" msgstr "参加申請する" -#: [group]subscribed +#: ../cache/locales.php:186 msgid "Subscribed" msgstr "参加申請済" -#: [group]unsubscribe +#: ../cache/locales.php:187 msgid "Unsubscribe" msgstr "参加申請取消" -#: [group]unsubscribe_text +#: ../cache/locales.php:188 msgid "You are going to unsubscribe from this Group" msgstr "" -#: [group]unsubscribed +#: ../cache/locales.php:189 msgid "Unsubscribed" msgstr "" -#: [group]share_label +#: ../cache/locales.php:190 msgid "Make your membership to this group public to your friends" msgstr "" -#: [group]label_label +#: ../cache/locales.php:191 msgid "Give a label for this group" msgstr "" -#: [group]sure +#: ../cache/locales.php:192 msgid "Are you sure ?" msgstr "よろしいですか" -#: [group]empty_text +#: ../cache/locales.php:194 msgid "Discover, follow and share" msgstr "" -#: [group]empty +#: ../cache/locales.php:195 msgid "Something bad happened to this group" msgstr "" -#: [group]config_saved +#: ../cache/locales.php:196 msgid "Group configuration saved" msgstr "グループの設定が保存されました" -#: [group]delete_title +#: ../cache/locales.php:197 msgid "Delete the group" msgstr "グループを削除する" -#: [group]delete_text -msgid "You are going to delete the following group. Please confirm your action." +#: ../cache/locales.php:198 +msgid "" +"You are going to delete the following group. Please confirm your action." msgstr "このグループを削除しますが、よろしいですか" -#: [group]delete_clean_text -msgid "It seems that this group doesn't exists anymore. Do you want to remove it from your subscriptions?" +#: ../cache/locales.php:199 +msgid "" +"It seems that this group doesn't exists anymore. Do you want to remove it " +"from your subscriptions?" msgstr "" -#: [group]counter -msgid "%s groups on this server" -msgstr "" - -#: [group]subscriptions [statistics]subscriptions +#: ../cache/locales.php:201 ../cache/locales.php:408 msgid "Subscriptions" msgstr "" -#: [group]servers -#, fuzzy -msgid "Groups servers" -msgstr "グループ" - -#: [group]search_server -msgid "Search for a new server" -msgstr "" - -#: [group]help_info1 -msgid "Groups are the perfect way to share posts about topics that you like with all the other Movim's users." -msgstr "" - -#: [group]help_info2 -msgid "Choose a server and a Group and subscribe to it using the %s button in the header. You can also create a new one using the %s button." -msgstr "" - -#: [group]help_info3 -msgid "Done? You can now publish a new post in the Group by using the %s button." -msgstr "" - -#: [group]help_info4 -msgid "You will find a list of all your subscribed Groups in My Subscriptions and receive instantly all the new incoming posts in the %sNews%s page." -msgstr "" - -#: [groups]empty_title +#: ../cache/locales.php:202 ../cache/locales.php:290 msgid "Hello" msgstr "こんにちは" -#: [groups]contact_post [hello]contact_post [menu]contact_post +#: ../cache/locales.php:203 ../cache/locales.php:225 ../cache/locales.php:291 msgid "Contact post" msgstr "コンタクトの投稿" -#: [groups]empty_text1 -msgid "You don't have any subscriptions yet, select a group server above to start exploring." +#: ../cache/locales.php:204 +msgid "" +"You don't have any subscriptions yet, select a group server above to start " +"exploring." msgstr "" -#: [groups]empty_text2 +#: ../cache/locales.php:205 msgid "Subscribe to your favorite feeds by bookmarking them." msgstr "" -#: [groups]subscriptions +#: ../cache/locales.php:206 msgid "My Subscriptions" msgstr "" -#: [groups]add +#: ../cache/locales.php:207 msgid "Create a new Group" msgstr "グループを作成する" -#: [groups]name +#: ../cache/locales.php:208 msgid "Group name" msgstr "グループ名" -#: [groups]name_example +#: ../cache/locales.php:209 msgid "My Little Pony - Fan Club" msgstr "ママチャリ部活" -#: [groups]created +#: ../cache/locales.php:210 msgid "Group created successfully" msgstr "グループが正常に作成されました" -#: [groups]deleted +#: ../cache/locales.php:211 msgid "Group deleted successfully" msgstr "グループが正常に削除されました" -#: [groups]name_error +#: ../cache/locales.php:212 msgid "Please provide a valid group name (4 characters minimum)" msgstr "" -#: [groups]no_creation +#: ../cache/locales.php:213 msgid "You cannot create a new Group on this server" msgstr "" -#: [groups]sub +#: ../cache/locales.php:214 +#, php-format msgid "%s subscribers" msgstr "" -#: [groups]num +#: ../cache/locales.php:215 +#, php-format msgid "%s posts" msgstr "%s 投稿" -#: [groups]disco_error -msgid "This server doesn't exists" -msgstr "" - -#: [menu]all +#: ../cache/locales.php:216 msgid "All" msgstr "全て" -#: [menu]refresh +#: ../cache/locales.php:219 msgid "Refresh all the streams" msgstr "" -#: [roster]search -#, fuzzy -msgid "Search in your contacts" -msgstr "一人のコンタクトと共有" - -#: [hello]active_contacts -#, fuzzy -msgid "Active contacts" -msgstr "アクション" - -#: [hello]chat -msgid "Go on the Chat page" -msgstr "チャットへ" - -#: [hello]news [page]news -msgid "News" -msgstr "新着情報" - -#: [hello]news_page -msgid "Read all theses articles on the News page" -msgstr "新着情報をもっと読む" - -#: [hello]blog_title -msgid "Visit your public blog" -msgstr "公開ブログへ" - -#: [hello]blog_text -msgid "See your public posts and share them with all your contacts" -msgstr "" - -#: [hello]share_title -msgid "Universal share button" -msgstr "" - -#: [hello]share_text -msgid "Bookmark or drag and drop the following button in your toolbar and use it on all the pages you want to share on Movim" -msgstr "" - -#: [hello]share_button -msgid "Share on Movim" -msgstr "Movimで共有する" - -#: [help]faq -msgid "Frequently Asked Questions" -msgstr "よくある質問" - -#: [banner]title -msgid "What do the little banners refer to ?" -msgstr "この標の意味はなんですか" - -#: [banner]info1 -msgid "Thanks to these five little banners, you can quickly identitfy the level of confdentiality applied to the information you provide." -msgstr "この標で、あなとが公開しているデータの機密性が分かります。" - -#: [banner]white -msgid "White, only you can see the information" -msgstr "白、あなとしか見れない" - -#: [banner]green -msgid "Green, you have chosen some contacts who can see your information" -msgstr "緑、シェアーしているコンタクトしか見れない" - -#: [banner]orange -msgid "Orange, all your contact list can see your information" -msgstr "オレンジ、あなたのコンタクト全員が見れる" - -#: [banner]red -msgid "Red, everybody in the XMPP network can see your information" -msgstr "XMPPを使っている人全員が見れる" - -#: [banner]black -msgid "Black, the whole Internet can see your information" -msgstr "黒、誰でも見れる" - -#: [wiki]question -msgid "Looking for some documentation ?" -msgstr "ドキュメンテーションお探しですか" - -#: [wiki]button -msgid "Read the Wiki" -msgstr "Wiki へ" - -#: [ml]question -msgid "Talk with us by email ?" -msgstr "メールで連絡したいと思っていますか" - -#: [ml]button -msgid "Join the Mailing List" -msgstr "Mailing List に登録する" - -#: [chatroom]question -msgid "Chat with the team ?" -msgstr "チャットがいいですか" - -#: [chatroom]button -msgid "Join the Chatroom" -msgstr "チャットルームに来てください" - -#: [init]location -msgid "Location node created" -msgstr "" - -#: [init]bookmark -msgid "Bookmark node created" -msgstr "" - -#: [init]vcard4 -msgid "Profile node created" -msgstr "" - -#: [init]avatar -msgid "Avatar node created" -msgstr "" - -#: [init]subscriptions -msgid "Subscriptions node created" -msgstr "" - -#: [init]microblog -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 "ユーザ名が正しくありません" - -#: [error]jid -msgid "Invalid JID" -msgstr "JID が正しくありません" - -#: [error]empty_challenge -msgid "Empty Challenge from the server" -msgstr "" - -#: [error]dns -msgid "XMPP Domain error, your account is not a correct Jabber ID" -msgstr "XMPPドメインエラーが発生しました。使われているアカウントは不可なJabberIDです。" - -#: [error]data_missings -msgid "Some data are missing !" -msgstr "いくつかのデータが足りません。" - -#: [error]wrong_password -msgid "Wrong password" -msgstr "パスワードが違います" - -#: [error]internal -msgid "Internal server error" -msgstr "内部エラー" - -#: [error]session -msgid "Session error" -msgstr "セッションエラー" - -#: [error]account_created -msgid "Account successfully created" -msgstr "アカウントが正常に作成されました" - -#: [error]xmpp_unauthorized -#, fuzzy -msgctxt "[error]xmpp_unauthorized" -msgid "Your XMPP server is unauthorized" -msgstr "あなとが使用しているXMPPサーバーは許可がありません" - -#: [error]mec_error -msgid "The server takes too much time to respond" -msgstr "このサーバは重すぎます" - -#: [error]too_old -msgid "Your web browser is too old to use with Movim." -msgstr "ブラウザーのバージョンが古すぎてMovimを使用できません" - -#: [error]websocket -msgid "Movim cannot talk with the server, please try again later (Websocket connection error)" -msgstr "" - -#: [error]impossible -msgid "Impossible login" -msgstr "" - -#: [error]title -msgid "Oops!" -msgstr "おっとぉ!" - -#: [error]default [visio]unknown_error -msgid "Unknown error" -msgstr "原因不明のエラー" - -#: [error]login_format -msgid "Invalid username format" -msgstr "" - -#: [error]password_format -msgid "Invalid password format" -msgstr "" - -#: [error]unauthorized -#, fuzzy -msgctxt "[error]unauthorized" -msgid "Your XMPP server is unauthorized" -msgstr "あなとが使用しているXMPPサーバーは許可がありません" - -#: [error]conflict -msgid "A Movim session is already open on an other device" -msgstr "他にセッションが存在しています" - -#: [error]wrong_account -msgid "Movim failed to authenticate. You entered wrong data" -msgstr "認識が失敗しました。入力した情報を確認してください" - -#: [error]mechanism -msgid "Authentication mechanism not supported by Movim" -msgstr "認識方法が対応されていません" - -#: [error]fail_auth -msgid "The XMPP authentification failed" -msgstr "XMPP認証に失敗しました" - -#: [account]title [accounts]accounts_title -msgid "Accounts" -msgstr "アカウント" - -#: [form]username -msgid "My address" -msgstr "マイアドレス" - -#: [form]create_one -msgid "Create one !" -msgstr "" - -#: [form]another_account -msgid "Another account" -msgstr "違うアカウント" - -#: [form]no_account -msgid "No account yet ?" -msgstr "" - -#: [form]whitelist.info -msgid "You can login with accounts from theses servers" -msgstr "" - -#: [form]connected -msgid "Connected" -msgstr "" - -#: [form]population -msgid "Population" -msgstr "人口" - -#: [menu]empty_title -#, fuzzy -msgid "No news yet..." -msgstr "コメントがまだありません" - -#: [menu]empty -msgid "Welcome on your news feed, here you will see all the posts published by your contacts and in the groups you have subscribed." -msgstr "" - -#: [menu]refresh -msgid "Refreshing all the streams" -msgstr "" - -#: [menu]public -msgid "This post is public" -msgstr "" - -#: [affiliations]title -msgid "Manage your members" -msgstr "" - -#: [affiliations]get -msgid "Get the members" -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 "" - -#: [notifs]title -msgid "Pending Invitations" -msgstr "" - -#: [notifs]wants_to_talk -msgid "%s wants to talk with you" -msgstr "" - -#: [notifs]manage -msgid "Manage" -msgstr "管理" - -#: [post]news_feed -msgid "News Feed" -msgstr "新着情報" - -#: [post]placeholder -msgid "Discover and register to the groups you are interested in" -msgstr "" - -#: [post]preview [page]preview -msgid "Preview" -msgstr "プレビュー" - -#: [post]help [page]help -msgid "Help" -msgstr "ヘルプ" - -#: [post]help_more -msgid "More help" -msgstr "" - -#: [post]help_manual -msgid "Markdown syntax manual" -msgstr "" - -#: [post]title -msgid "Title" -msgstr "件名" - -#: [post]content -msgid "Content" -msgstr "コンテンツ" - -#: [post]link -msgid "Link" -msgstr "リンク" - -#: [post]tags -msgid "Tags" -msgstr "" - -#: [post]valid_url [publish]valid_url -msgid "Please enter a valid url" -msgstr "" - -#: [post]no_content_preview [publish]no_content_preview -msgid "No content to preview" -msgstr "" - -#: [post]no_content [publish]no_content [post]empty -msgid "No content" -msgstr "" - -#: [post]published -msgid "Post published" -msgstr "" - -#: [post]deleted -msgid "Post deleted" -msgstr "" - -#: [post]gallery -msgid "This picture will be added to your gallery" -msgstr "" - -#: [post]hot -msgid "What's Hot" -msgstr "" - -#: [post]hot_text -msgid "Posts recently published in Groups that you are not subscribed (yet)" -msgstr "" - -#: [post]new [publish]new -msgid "New post" -msgstr "新しい投稿" - -#: [post]embed_tip -msgid "You can also use services like Imgur or Flickr to host your picture and paste the link here." -msgstr "" - -#: [post]repost -msgid "This is a re-post from %s" -msgstr "" - -#: [post]repost_profile -msgid "See %s profile" -msgstr "" - -#: [post]public -msgid "Publish this post publicly?" -msgstr "" - -#: [post]blog_add -msgid "Post published on your blog" -msgstr "" - -#: [post]blog_remove -msgid "Post removed from your blog" -msgstr "" - -#: [post]delete_title [post]delete -msgid "Delete this post" -msgstr "この投稿を削除する" - -#: [post]delete_text -msgid "You are going to delete this post, please confirm your action" -msgstr "この投稿が削除されますが、よろしいですか" - -#: [post]comments_disabled -msgid "Comments disabled" -msgstr "" - -#: [post]comment_published -msgid "Comment published" -msgstr "" - -#: [status]disconnect -msgid "Disconnect" -msgstr "切断する" - -#: [status]here -msgid "Your status here !" -msgstr "" - -#: [status]updated -msgid "Status updated" -msgstr "ステータスを更新しました" - -#: [status]status -msgid "Status" -msgstr "ステータス" - -#: [status]presence -msgid "Presence" -msgstr "" - -#: [status]online -msgid "Online with Movim" -msgstr "" - -#: [publish]title -msgid "Publish" -msgstr "" - -#: [publish]attach -msgid "Add a file or a picture to your post" -msgstr "" - -#: [publish]no_publication -msgid "You cannot publish a post on this Group" -msgstr "" - -#: [publish]form_filled -msgid "Some fields have been filled in. Do you still want to go back and loose their content?" -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 "チャットルームを追加する" - -#: [rooms]empty_text1 -msgid "You don't have any chatroom yet." -msgstr "チャットルームはまだありません" - -#: [rooms]empty_text2 -msgid "Add one by clicking on the add button in the header." -msgstr "追加するにはボタンを押してください" - -#: [chatrooms]title -msgid "Chatrooms" -msgstr "チャットルーム" - -#: [chatrooms]name_placeholder -msgid "My Favorite Room" -msgstr "" - -#: [chatrooms]users -msgid "Users in the room" -msgstr "" - -#: [chatrooms]bad_nickname -msgid "Please enter a correct nickname (2 to 40 characters)" -msgstr "" - -#: [room]anonymous_title -msgid "Public chatroom" -msgstr "" - -#: [room]no_room -msgid "Please provide a room address" -msgstr "" - -#: [room]anonymous_text1 -msgid "You are currently logued as an anonymous user." -msgstr "" - -#: [room]anonymous_text2 -msgid "You can join using your own account or create one on the login page by loging out using the cross in the top-right corner." -msgstr "" - -#: [room]anonymous_login -msgid "Login on %s" -msgstr "" - -#: [room]nick -msgid "Your nickname" -msgstr "" - -#: [roster]ungrouped -msgid "Ungrouped" -msgstr "" - -#: [roster]show_disconnected -msgid "Show disconnected contacts" -msgstr "オフラインの連絡先を表示" - -#: [roster]hide_disconnected -msgid "Hide disconnected contacts" -msgstr "オフラインの連絡先を非表示" - -#: [roster]show_group -msgid "Show group %s" -msgstr "グループ%sを表示" - -#: [roster]hide_group -msgid "Hide group %s" -msgstr "グループ%sを非表示" - -#: [roster]jid_error -msgid "Please enter a valid Jabber ID" -msgstr "正しいジャバーIDを入力してください" - -#: [roster]no_contacts_title -#, fuzzy -msgid "No contacts ?" -msgstr "コンタクト" - -#: [roster]no_contacts_text -msgid "You can add one using the + button bellow" -msgstr "" - -#: [roster]show_hide -msgid "Show/Hide" -msgstr "表示/非表示" - -#: [roster]add_contact_info1 -msgid "Enter the Jabber ID of your contact." -msgstr "" - -#: [roster]add_contact_info2 -msgid "Press enter to validate." -msgstr "" - -#: [roster]jid -msgid "JID" -msgstr "JID" - -#: [roster]results -msgid "Results" -msgstr "検索結果" - -#: [roster]added -msgid "Contact added" -msgstr "コンタクトが追加されました" - -#: [roster]deleted -msgid "Contact deleted" -msgstr "コンタクトが削除されました" - -#: [roster]search +#: ../cache/locales.php:220 ../cache/locales.php:402 msgid "Search" msgstr "検索" -#: [share]error +#: ../cache/locales.php:221 +msgid "Go on the Chat page" +msgstr "チャットへ" + +#: ../cache/locales.php:222 +msgid "Read all theses articles on the News page" +msgstr "新着情報をもっと読む" + +#: ../cache/locales.php:223 +msgid "Visit your public blog" +msgstr "公開ブログへ" + +#: ../cache/locales.php:224 +msgid "See your public posts and share them with all your contacts" +msgstr "" + +#: ../cache/locales.php:226 +msgid "Universal share button" +msgstr "" + +#: ../cache/locales.php:227 +msgid "" +"Bookmark or drag and drop the following button in your toolbar and use it on " +"all the pages you want to share on Movim" +msgstr "" + +#: ../cache/locales.php:228 +msgid "Share on Movim" +msgstr "Movimで共有する" + +#: ../cache/locales.php:229 +msgid "Frequently Asked Questions" +msgstr "よくある質問" + +#: ../cache/locales.php:230 +msgid "What do the little banners refer to ?" +msgstr "この標の意味はなんですか" + +#: ../cache/locales.php:231 +msgid "" +"Thanks to these five little banners, you can quickly identitfy the level of " +"confdentiality applied to the information you provide." +msgstr "この標で、あなとが公開しているデータの機密性が分かります。" + +#: ../cache/locales.php:232 +msgid "White, only you can see the information" +msgstr "白、あなとしか見れない" + +#: ../cache/locales.php:233 +msgid "Green, you have chosen some contacts who can see your information" +msgstr "緑、シェアーしているコンタクトしか見れない" + +#: ../cache/locales.php:234 +msgid "Orange, all your contact list can see your information" +msgstr "オレンジ、あなたのコンタクト全員が見れる" + +#: ../cache/locales.php:235 +msgid "Red, everybody in the XMPP network can see your information" +msgstr "XMPPを使っている人全員が見れる" + +#: ../cache/locales.php:236 +msgid "Black, the whole Internet can see your information" +msgstr "黒、誰でも見れる" + +#: ../cache/locales.php:237 +msgid "Looking for some documentation ?" +msgstr "ドキュメンテーションお探しですか" + +#: ../cache/locales.php:238 +msgid "Read the Wiki" +msgstr "Wiki へ" + +#: ../cache/locales.php:239 +msgid "Talk with us by email ?" +msgstr "メールで連絡したいと思っていますか" + +#: ../cache/locales.php:240 +msgid "Join the Mailing List" +msgstr "Mailing List に登録する" + +#: ../cache/locales.php:241 +msgid "Chat with the team ?" +msgstr "チャットがいいですか" + +#: ../cache/locales.php:242 +msgid "Join the Chatroom" +msgstr "チャットルームに来てください" + +#: ../cache/locales.php:243 +msgid "Location node created" +msgstr "" + +#: ../cache/locales.php:244 +msgid "Bookmark node created" +msgstr "" + +#: ../cache/locales.php:245 +msgid "Profile node created" +msgstr "" + +#: ../cache/locales.php:246 +msgid "Avatar node created" +msgstr "" + +#: ../cache/locales.php:247 +msgid "Subscriptions node created" +msgstr "" + +#: ../cache/locales.php:248 +msgid "Microblog node created" +msgstr "" + +#: ../cache/locales.php:249 +msgid "Location" +msgstr "現在地" + +#: ../cache/locales.php:250 +msgid "Wrong position" +msgstr "" + +#: ../cache/locales.php:251 +msgid "Location updated" +msgstr "現在地が更新されました" + +#: ../cache/locales.php:252 +msgid "Update my position" +msgstr "現在地を更新する" + +#: ../cache/locales.php:253 +msgid "Wrong username" +msgstr "ユーザ名が正しくありません" + +#: ../cache/locales.php:254 +msgid "Invalid JID" +msgstr "JID が正しくありません" + +#: ../cache/locales.php:255 +msgid "Empty Challenge from the server" +msgstr "" + +#: ../cache/locales.php:256 +msgid "XMPP Domain error, your account is not a correct Jabber ID" +msgstr "XMPPドメインエラーが発生しました。使われているアカウントは不可なJabberIDです。" + +#: ../cache/locales.php:257 +msgid "Some data are missing !" +msgstr "いくつかのデータが足りません。" + +#: ../cache/locales.php:258 +msgid "Wrong password" +msgstr "パスワードが違います" + +#: ../cache/locales.php:259 +msgid "Internal server error" +msgstr "内部エラー" + +#: ../cache/locales.php:260 +msgid "Session error" +msgstr "セッションエラー" + +#: ../cache/locales.php:261 +msgid "Account successfully created" +msgstr "アカウントが正常に作成されました" + +#: ../cache/locales.php:262 ../cache/locales.php:271 +msgid "Your XMPP server is unauthorized" +msgstr "あなとが使用しているXMPPサーバーは許可がありません" + +#: ../cache/locales.php:263 +msgid "The server takes too much time to respond" +msgstr "このサーバは重すぎます" + +#: ../cache/locales.php:264 +msgid "Your web browser is too old to use with Movim." +msgstr "ブラウザーのバージョンが古すぎてMovimを使用できません" + +#: ../cache/locales.php:265 +msgid "" +"Movim cannot talk with the server, please try again later (Websocket " +"connection error)" +msgstr "" + +#: ../cache/locales.php:266 +msgid "Impossible login" +msgstr "" + +#: ../cache/locales.php:267 +msgid "Oops!" +msgstr "おっとぉ!" + +#: ../cache/locales.php:268 ../cache/locales.php:449 ../cache/locales.php:455 +msgid "Unknown error" +msgstr "原因不明のエラー" + +#: ../cache/locales.php:269 +msgid "Invalid username format" +msgstr "" + +#: ../cache/locales.php:270 +msgid "Invalid password format" +msgstr "" + +#: ../cache/locales.php:272 +msgid "A Movim session is already open on an other device" +msgstr "他にセッションが存在しています" + +#: ../cache/locales.php:273 +msgid "Movim failed to authenticate. You entered wrong data" +msgstr "認識が失敗しました。入力した情報を確認してください" + +#: ../cache/locales.php:274 +msgid "Authentication mechanism not supported by Movim" +msgstr "認識方法が対応されていません" + +#: ../cache/locales.php:275 +msgid "The XMPP authentification failed" +msgstr "XMPP認証に失敗しました" + +#: ../cache/locales.php:276 +#, php-format +msgid "" +"You can login with Facebook (chat only) using %syour.id@chat.facebook.com%s " +"and your password" +msgstr "" + +#: ../cache/locales.php:277 +#, php-format +msgid "%sGmail accounts are also compatible%s but are not fully supported" +msgstr "" + +#: ../cache/locales.php:278 +msgid "You can login using your favorite Jabber account" +msgstr "" + +#: ../cache/locales.php:279 +msgid "or with our demonstration account" +msgstr "" + +#: ../cache/locales.php:280 ../cache/locales.php:435 +msgid "Accounts" +msgstr "アカウント" + +#: ../cache/locales.php:281 +msgid "My address" +msgstr "マイアドレス" + +#: ../cache/locales.php:283 +msgid "Create one !" +msgstr "" + +#: ../cache/locales.php:284 +msgid "No account yet ?" +msgstr "" + +#: ../cache/locales.php:285 +msgid "Another account" +msgstr "違うアカウント" + +#: ../cache/locales.php:286 +msgid "You can login with accounts from theses servers" +msgstr "" + +#: ../cache/locales.php:287 +msgid "Connected" +msgstr "" + +#: ../cache/locales.php:288 +msgid "Population" +msgstr "人口" + +#: ../cache/locales.php:289 +msgid "Bad nickname (between 4 and 40 characters)" +msgstr "" + +#: ../cache/locales.php:292 +msgid "" +"Welcome on your news feed, here you will see all the posts published in the " +"groups you have subscribed." +msgstr "" + +#: ../cache/locales.php:293 +msgid "Refreshing all the streams" +msgstr "" + +#: ../cache/locales.php:294 +msgid "This post is public" +msgstr "" + +#: ../cache/locales.php:295 +msgid "Manage your members" +msgstr "" + +#: ../cache/locales.php:296 +msgid "Get the members" +msgstr "" + +#: ../cache/locales.php:297 +msgid "Affiliations saved" +msgstr "" + +#: ../cache/locales.php:298 +msgid "Manage your subscriptions" +msgstr "サブスクリプションの管理" + +#: ../cache/locales.php:299 +msgid "Manage the subscriptions" +msgstr "サブスクリプションの管理" + +#: ../cache/locales.php:300 +msgid "Get the subscriptions" +msgstr "サブスクリプションを習得する" + +#: ../cache/locales.php:301 +msgid "Subscriptions saved" +msgstr "" + +#: ../cache/locales.php:302 +msgid "Pending Invitations" +msgstr "" + +#: ../cache/locales.php:303 +#, php-format +msgid "%s wants to talk with you" +msgstr "" + +#: ../cache/locales.php:304 +msgid "Manage" +msgstr "管理" + +#: ../cache/locales.php:305 ../cache/locales.php:338 +msgid "News Feed" +msgstr "新着情報" + +#: ../cache/locales.php:306 ../cache/locales.php:339 +msgid "Discover and register to the groups you are interested in" +msgstr "" + +#: ../cache/locales.php:307 ../cache/locales.php:340 ../cache/locales.php:482 +msgid "Preview" +msgstr "プレビュー" + +#: ../cache/locales.php:308 ../cache/locales.php:341 ../cache/locales.php:478 +msgid "Help" +msgstr "ヘルプ" + +#: ../cache/locales.php:309 ../cache/locales.php:342 +msgid "More help" +msgstr "" + +#: ../cache/locales.php:310 ../cache/locales.php:343 +msgid "Markdown syntax manual" +msgstr "" + +#: ../cache/locales.php:311 ../cache/locales.php:344 ../cache/locales.php:681 +msgid "Title" +msgstr "件名" + +#: ../cache/locales.php:312 ../cache/locales.php:345 +msgid "Content" +msgstr "コンテンツ" + +#: ../cache/locales.php:313 ../cache/locales.php:346 +msgid "Link" +msgstr "リンク" + +#: ../cache/locales.php:314 ../cache/locales.php:347 +msgid "Tags" +msgstr "" + +#: ../cache/locales.php:315 ../cache/locales.php:348 +msgid "Please enter a valid url" +msgstr "" + +#: ../cache/locales.php:316 ../cache/locales.php:349 +msgid "No content to preview" +msgstr "" + +#: ../cache/locales.php:317 ../cache/locales.php:350 ../cache/locales.php:687 +msgid "No content" +msgstr "" + +#: ../cache/locales.php:318 ../cache/locales.php:351 +msgid "Post published" +msgstr "" + +#: ../cache/locales.php:319 ../cache/locales.php:352 +msgid "Post deleted" +msgstr "" + +#: ../cache/locales.php:320 ../cache/locales.php:353 +msgid "This picture will be added to your gallery" +msgstr "" + +#: ../cache/locales.php:321 ../cache/locales.php:354 +msgid "What's Hot" +msgstr "" + +#: ../cache/locales.php:322 ../cache/locales.php:355 +msgid "New post" +msgstr "新しい投稿" + +#: ../cache/locales.php:323 ../cache/locales.php:357 +msgid "" +"You can also use services like Imgur or Flickr to host your picture and " +"paste the link here." +msgstr "" + +#: ../cache/locales.php:324 +#, php-format +msgid "This is a re-post from %s" +msgstr "" + +#: ../cache/locales.php:325 +#, php-format +msgid "See %s profile" +msgstr "" + +#: ../cache/locales.php:326 +msgid "Publish this post on your public feed?" +msgstr "" + +#: ../cache/locales.php:327 +msgid "Post published on your blog" +msgstr "" + +#: ../cache/locales.php:328 +msgid "Post removed from your blog" +msgstr "" + +#: ../cache/locales.php:329 ../cache/locales.php:701 +msgid "Delete this post" +msgstr "この投稿を削除する" + +#: ../cache/locales.php:330 +msgid "You are going to delete this post, please confirm your action" +msgstr "この投稿が削除されますが、よろしいですか" + +#: ../cache/locales.php:331 +msgid "Comments disabled" +msgstr "" + +#: ../cache/locales.php:332 +msgid "Comment published" +msgstr "" + +#: ../cache/locales.php:333 +msgid "Disconnect" +msgstr "切断する" + +#: ../cache/locales.php:334 +msgid "Your status here !" +msgstr "" + +#: ../cache/locales.php:335 +msgid "Status updated" +msgstr "ステータスを更新しました" + +#: ../cache/locales.php:336 +msgid "Status" +msgstr "ステータス" + +#: ../cache/locales.php:337 +msgid "Presence" +msgstr "" + +#: ../cache/locales.php:356 +msgid "Publish" +msgstr "" + +#: ../cache/locales.php:358 +msgid "You cannot publish a post on this Group" +msgstr "" + +#: ../cache/locales.php:359 +msgid "" +"Some fields have been filled in. Do you still want to go back and loose " +"their content?" +msgstr "" + +#: ../cache/locales.php:360 +msgid "Shared" +msgstr "" + +#: ../cache/locales.php:362 +#, php-format +msgid "%s has been added to your public groups" +msgstr "" + +#: ../cache/locales.php:363 +#, php-format +msgid "%s has been removed from your public groups" +msgstr "" + +#: ../cache/locales.php:364 +msgid "Add a chatroom" +msgstr "チャットルームを追加する" + +#: ../cache/locales.php:365 +msgid "You don't have any chatroom yet." +msgstr "チャットルームはまだありません" + +#: ../cache/locales.php:366 +msgid "Add one by clicking on the add button in the header." +msgstr "追加するにはボタンを押してください" + +#: ../cache/locales.php:367 +msgid "Chatrooms" +msgstr "チャットルーム" + +#: ../cache/locales.php:370 +msgid "My Favorite Room" +msgstr "" + +#: ../cache/locales.php:374 +msgid "Remove a chatroom" +msgstr "ルームを削除する" + +#: ../cache/locales.php:375 +msgid "" +"You are going to remove the following chatroom. Please confirm your action." +msgstr "" + +#: ../cache/locales.php:378 +msgid "Users in the room" +msgstr "" + +#: ../cache/locales.php:379 +msgid "Please enter a correct nickname (6 to 40 characters)" +msgstr "" + +#: ../cache/locales.php:381 +msgid "Public chatroom" +msgstr "" + +#: ../cache/locales.php:382 +msgid "Please provide a room address" +msgstr "" + +#: ../cache/locales.php:383 +msgid "You are currently logued as an anonymous user." +msgstr "" + +#: ../cache/locales.php:384 +msgid "" +"You can join using your own account or create one on the login page by " +"loging out using the cross in the top-right corner." +msgstr "" + +#: ../cache/locales.php:385 +#, php-format +msgid "Login on %s" +msgstr "" + +#: ../cache/locales.php:386 +msgid "Your nickname" +msgstr "" + +#: ../cache/locales.php:387 +msgid "Ungrouped" +msgstr "" + +#: ../cache/locales.php:388 +msgid "Show disconnected contacts" +msgstr "オフラインの連絡先を表示" + +#: ../cache/locales.php:389 +msgid "Hide disconnected contacts" +msgstr "オフラインの連絡先を非表示" + +#: ../cache/locales.php:390 +#, php-format +msgid "Show group %s" +msgstr "グループ%sを表示" + +#: ../cache/locales.php:391 +#, php-format +msgid "Hide group %s" +msgstr "グループ%sを非表示" + +#: ../cache/locales.php:392 +msgid "Please enter a valid Jabber ID" +msgstr "正しいジャバーIDを入力してください" + +#: ../cache/locales.php:393 +msgid "" +"No contacts ? You can add one using the + button bellow or going to the " +"Explore page" +msgstr "" + +#: ../cache/locales.php:394 +msgid "Show/Hide" +msgstr "表示/非表示" + +#: ../cache/locales.php:395 +msgid "Enter the Jabber ID of your contact." +msgstr "" + +#: ../cache/locales.php:396 +msgid "Press enter to validate." +msgstr "" + +#: ../cache/locales.php:397 +msgid "JID" +msgstr "JID" + +#: ../cache/locales.php:398 +msgid "Results" +msgstr "検索結果" + +#: ../cache/locales.php:399 +msgid "Contact added" +msgstr "コンタクトが追加されました" + +#: ../cache/locales.php:401 +msgid "Contact deleted" +msgstr "コンタクトが削除されました" + +#: ../cache/locales.php:403 msgid "This is not a valid url" msgstr "" -#: [share]success +#: ../cache/locales.php:404 msgid "Sharing the URL" msgstr "" -#: [statistics]title +#: ../cache/locales.php:405 msgid "Statistics" msgstr "" -#: [statistics]since +#: ../cache/locales.php:406 msgid "Since" msgstr "" -#: [statistics]sessions +#: ../cache/locales.php:407 msgid "Sessions" msgstr "セッション" -#: [statistics]monthly_sub +#: ../cache/locales.php:409 msgid "Monthly Subscriptions" msgstr "" -#: [statistics]monthly_sub_cum +#: ../cache/locales.php:410 msgid "Monthly Subscriptions Cumulated" msgstr "" -#: [subscribe]info -msgid "Movim is a decentralized social network, before creating a new account you need to choose a server to register." +#: ../cache/locales.php:412 +msgid "" +"Movim is a decentralized social network, before creating a new account you " +"need to choose a server to register." msgstr "" -#: [subscribe]server_question +#: ../cache/locales.php:413 msgid "Your server here ?" msgstr "" -#: [subscribe]server_contact +#: ../cache/locales.php:414 msgid "Contact us to add yours to the officially supported servers list" msgstr "" -#: [feed]nope +#: ../cache/locales.php:416 msgid "No public feed for this contact" msgstr "" -#: [feed]nope_contact +#: ../cache/locales.php:417 msgid "No contact specified" msgstr "" -#: [upload]title -#, fuzzy -msgid "Upload a file" -msgstr "アップロード" - -#: [upload]choose -msgid "Choose a file to upload" -msgstr "" - -#: [vcard]title [page]profile +#: ../cache/locales.php:418 ../cache/locales.php:473 msgid "Profile" msgstr "プロフィール" -#: [vcard]updated +#: ../cache/locales.php:419 msgid "Profile Updated" msgstr "プロフィールを更新しました" -#: [vcard]not_updated +#: ../cache/locales.php:420 msgid "Profile Not Updated" msgstr "プロファイルは更新されませんでした" -#: [vcard]public +#: ../cache/locales.php:421 msgid "Your profile is now public" msgstr "あなたのプロファイルは公開されました" -#: [vcard]restricted +#: ../cache/locales.php:422 msgid "Your profile is now restricted" msgstr "あなたのプロファイルは非公開されました" -#: [general]nickname -#, fuzzy -msgctxt "[general]nickname" -msgid "Nickname" -msgstr "ニックネーム" - -#: [accounts]twitter +#: ../cache/locales.php:436 msgid "Twitter" msgstr "Twitter" -#: [accounts]skype +#: ../cache/locales.php:437 msgid "Skype" msgstr "Skype" -#: [accounts]yahoo +#: ../cache/locales.php:438 msgid "Yahoo" msgstr "Yahoo" -#: [accounts]accounts_nickname -#, fuzzy -msgctxt "[accounts]accounts_nickname" -msgid "Nickname" -msgstr "ニックネーム" - -#: [accounts]accounts_yahoo -#, fuzzy -msgid "Yahoo Account" -msgstr "アカウント" - -#: [privacy]privacy_title +#: ../cache/locales.php:439 msgid "Privacy Level" msgstr "" -#: [privacy]privacy_question +#: ../cache/locales.php:440 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." +#: ../cache/locales.php:441 +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." msgstr "" -#: [save]submit [button]submit -msgid "Submit" -msgstr "送信" - -#: [save]reset [button]reset -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 +#: ../cache/locales.php:442 msgid "Call" msgstr "呼び出し" -#: [visio]hang_up +#: ../cache/locales.php:443 msgid "Hang up" msgstr "" -#: [visio]connection +#: ../cache/locales.php:444 msgid "Connection" msgstr "" -#: [global]no_js +#: ../cache/locales.php:445 ../cache/locales.php:451 +msgid "Hung up" +msgstr "" + +#: ../cache/locales.php:446 ../cache/locales.php:452 +msgid "Your contact is busy" +msgstr "" + +#: ../cache/locales.php:447 ../cache/locales.php:453 +msgid "Declined" +msgstr "" + +#: ../cache/locales.php:448 ../cache/locales.php:454 +msgid "Remote application incompatible" +msgstr "" + +#: ../cache/locales.php:450 ../cache/locales.php:456 +msgid "Is calling you" +msgstr "" + +#: ../cache/locales.php:457 msgid "You don't have javascript enabled. Good luck with that." msgstr "" -#: [global]description -msgid "Movim is a kickass distributed social networking platform that protect your privacy an comes with a set of awesome features." +#: ../cache/locales.php:458 +msgid "" +"Movim is a kickass distributed social networking platform that protect your " +"privacy an comes with a set of awesome features." msgstr "" -#: [page]administration +#: ../cache/locales.php:459 msgid "Administration" msgstr "システム管理" -#: [page]home +#: ../cache/locales.php:460 msgid "Home" msgstr "ホーム" -#: [page]discover +#: ../cache/locales.php:461 msgid "Discover" msgstr "" -#: [page]explore +#: ../cache/locales.php:462 msgid "Explore" msgstr "" -#: [page]account_creation +#: ../cache/locales.php:463 msgid "Account Creation" msgstr "アカウント作成" -#: [page]avatar +#: ../cache/locales.php:464 +msgid "News" +msgstr "新着情報" + +#: ../cache/locales.php:465 msgid "Avatar" msgstr "アバター" -#: [page]chats +#: ../cache/locales.php:467 msgid "Chats" msgstr "チャット" -#: [page]server +#: ../cache/locales.php:470 msgid "Server" msgstr "サーバー" -#: [page]public_groups +#: ../cache/locales.php:471 msgid "Public Groups" msgstr "" -#: [page]viewer +#: ../cache/locales.php:472 msgid "Viewer" msgstr "" -#: [page]media +#: ../cache/locales.php:474 msgid "Media" msgstr "画像" -#: [page]blog +#: ../cache/locales.php:475 msgid "Blog" msgstr "ブログ" -#: [page]about +#: ../cache/locales.php:476 msgid "About" msgstr "" -#: [page]login +#: ../cache/locales.php:477 msgid "Login" msgstr "ログイン" -#: [page]feed +#: ../cache/locales.php:479 msgid "Feed" msgstr "フィード" -#: [page]gallery +#: ../cache/locales.php:481 msgid "Gallery" msgstr "" -#: [page]visio +#: ../cache/locales.php:483 msgid "Visio-conference" msgstr "" -#: [page]pods +#: ../cache/locales.php:484 msgid "Pods" msgstr "" -#: [page]share +#: ../cache/locales.php:485 msgid "Share" msgstr "" -#: [page]room +#: ../cache/locales.php:486 msgid "Room" msgstr "" -#: [error]error +#: ../cache/locales.php:487 +#, php-format msgid "Error: %s" msgstr "エラーが発生しました。%s" -#: [error]cannot_load_file +#: ../cache/locales.php:488 +#, php-format msgid "Cannot load file '%s'" msgstr "「%s」というファイルをロードできません。" -#: [error]route +#: ../cache/locales.php:489 +#, php-format msgid "Route error, please set all the parameters for the page %s" msgstr "" -#: [error]widget_load_error +#: ../cache/locales.php:490 +#, php-format msgid "Requested widget '%s' doesn't exist." msgstr "" -#: [error]widget_call_error +#: ../cache/locales.php:491 +#, php-format msgid "Requested event '%s' not registered." msgstr "" -#: [error]whoops +#: ../cache/locales.php:492 msgid "Whoops!" msgstr "" -#: [error]media_not_found +#: ../cache/locales.php:493 msgid "It seem that you don't have any pictures here?" msgstr "" -#: [error]media_ask_upload +#: ../cache/locales.php:494 msgid "You can try to upload a couple by going to the Media page" msgstr "" -#: [title]about +#: ../cache/locales.php:495 +#, php-format msgid "%s - About" msgstr "" -#: [title]account +#: ../cache/locales.php:496 +#, php-format msgid "%s - Account" msgstr "%s - アカウント" -#: [title]administration +#: ../cache/locales.php:497 +#, php-format msgid "%s - Administration Panel" msgstr "" -#: [title]blog +#: ../cache/locales.php:498 +#, php-format msgid "%s - Blog" msgstr "" -#: [title]configuration +#: ../cache/locales.php:499 +#, php-format msgid "%s - Configuration" msgstr "%s - 設定" -#: [title]discover +#: ../cache/locales.php:500 +#, php-format msgid "%s - Discover" msgstr "" -#: [title]explore +#: ../cache/locales.php:501 +#, php-format msgid "%s - Explore" msgstr "" -#: [title]help +#: ../cache/locales.php:502 +#, php-format msgid "%s - Help Page" msgstr "%s - ヘルプページ" -#: [title]login +#: ../cache/locales.php:503 +#, php-format msgid "%s - Login to Movim" msgstr "%s - MOVIMにログインする" -#: [title]main +#: ../cache/locales.php:504 +#, php-format msgid "%s - Welcome to Movim" msgstr "%s - MOVIMへようこそ" -#: [title]media +#: ../cache/locales.php:505 +#, php-format msgid "%s - Media" msgstr "" -#: [title]news +#: ../cache/locales.php:506 +#, php-format msgid "%s - News" msgstr "" -#: [title]node_configuration +#: ../cache/locales.php:507 +#, php-format msgid "%s - Group Configuration" msgstr "" -#: [title]node +#: ../cache/locales.php:508 +#, php-format msgid "%s - Group" msgstr "" -#: [title]not_found +#: ../cache/locales.php:509 +#, php-format msgid "%s - 404" msgstr "" -#: [title]profile +#: ../cache/locales.php:510 +#, php-format msgid "%s - Profile" msgstr "%s - プロファイル" -#: [title]server +#: ../cache/locales.php:511 +#, php-format msgid "%s - Server" msgstr "" -#: [button]validate +#: ../cache/locales.php:512 msgid "Validate" msgstr "確認" -#: [button]refresh +#: ../cache/locales.php:513 msgid "Refresh" msgstr "再読込" -#: [button]add +#: ../cache/locales.php:514 msgid "Add" msgstr "追加" -#: [button]delete +#: ../cache/locales.php:515 msgid "Delete" msgstr "" -#: [button]cancel +#: ../cache/locales.php:516 +msgid "Remove" +msgstr "" + +#: ../cache/locales.php:517 msgid "Cancel" msgstr "" -#: [button]close +#: ../cache/locales.php:518 msgid "Close" msgstr "閉じる" -#: [button]update +#: ../cache/locales.php:519 msgid "Update" msgstr "更新" -#: [button]updating +#: ../cache/locales.php:520 msgid "Updating" msgstr "更新中" -#: [button]submitting +#: ../cache/locales.php:521 +msgid "Submit" +msgstr "送信" + +#: ../cache/locales.php:522 msgid "Submitting" msgstr "" -#: [button]register +#: ../cache/locales.php:523 +msgid "Reset" +msgstr "リセット" + +#: ../cache/locales.php:524 msgid "Register" msgstr "" -#: [button]unregister +#: ../cache/locales.php:525 msgid "Unregister" msgstr "" -#: [button]save +#: ../cache/locales.php:526 msgid "Save" msgstr "保存" -#: [button]clear +#: ../cache/locales.php:527 msgid "Clear" msgstr "" -#: [button]upload +#: ../cache/locales.php:528 msgid "Upload" msgstr "アップロード" -#: [button]come_in +#: ../cache/locales.php:529 msgid "Come in!" msgstr "来てください!" -#: [button]connecting +#: ../cache/locales.php:530 msgid "Connecting" msgstr "" -#: [button]bool_yes +#: ../cache/locales.php:531 msgid "Yes" msgstr "はい" -#: [button]bool_no +#: ../cache/locales.php:532 msgid "No" msgstr "いいえ" -#: [button]return +#: ../cache/locales.php:534 msgid "Return" msgstr "" -#: [button]accept +#: ../cache/locales.php:535 msgid "Accept" msgstr "承知する" -#: [button]refuse +#: ../cache/locales.php:536 msgid "Refuse" msgstr "" -#: [button]next +#: ../cache/locales.php:537 msgid "Next" msgstr "次へ" -#: [button]previous +#: ../cache/locales.php:538 msgid "Previous" msgstr "前へ" -#: [step]step +#: ../cache/locales.php:539 +#, php-format msgid "Step %s" msgstr "" -#: [day]title +#: ../cache/locales.php:542 msgid "Day" msgstr "日" -#: [day]monday +#: ../cache/locales.php:543 msgid "Monday" msgstr "月曜日" -#: [day]tuesday +#: ../cache/locales.php:544 msgid "Tuesday" msgstr "火曜日" -#: [day]wednesday +#: ../cache/locales.php:545 msgid "Wednesday" msgstr "水曜日" -#: [day]thursday +#: ../cache/locales.php:546 msgid "Thursday" msgstr "木曜日" -#: [day]friday +#: ../cache/locales.php:547 msgid "Friday" msgstr "金曜日" -#: [day]saturday +#: ../cache/locales.php:548 msgid "Saturday" msgstr "土曜日" -#: [day]sunday +#: ../cache/locales.php:549 msgid "Sunday" msgstr "" -#: [gender]nil -#, fuzzy -msgctxt "[gender]nil" +#: ../cache/locales.php:550 ../cache/locales.php:559 msgid "None" msgstr "なし" -#: [gender]male +#: ../cache/locales.php:551 msgid "Male" msgstr "男性" -#: [gender]female +#: ../cache/locales.php:552 msgid "Female" msgstr "女性" -#: [gender]other +#: ../cache/locales.php:553 msgid "Other" msgstr "その他" -#: [client]bot +#: ../cache/locales.php:554 msgid "Bot" msgstr "ボット" -#: [client]desktop +#: ../cache/locales.php:555 msgid "Desktop" msgstr "デスクトップ" -#: [client]phone +#: ../cache/locales.php:556 msgid "Phone" msgstr "電話" -#: [client]web +#: ../cache/locales.php:557 msgid "Web" msgstr "ウェブ" -#: [client]registered +#: ../cache/locales.php:558 msgid "Registered" msgstr "登録済み" -#: [marital]nil -#, fuzzy -msgctxt "[marital]nil" -msgid "None" -msgstr "なし" - -#: [marital]single +#: ../cache/locales.php:560 msgid "Single" msgstr "独身" -#: [marital]relationship +#: ../cache/locales.php:561 msgid "In a relationship" msgstr "カップル" -#: [marital]married +#: ../cache/locales.php:562 msgid "Married" msgstr "既婚" -#: [marital]divorced +#: ../cache/locales.php:563 msgid "Divorced" msgstr "離婚" -#: [marital]widowed +#: ../cache/locales.php:564 msgid "Widowed" msgstr "死別" -#: [marital]cohabiting +#: ../cache/locales.php:565 msgid "Cohabiting" msgstr "共有" -#: [marital]union +#: ../cache/locales.php:566 msgid "Civil Union" msgstr "市民結合" -#: [flag]white +#: ../cache/locales.php:567 msgid "Not shared" msgstr "共有されていません" -#: [flag]green +#: ../cache/locales.php:568 msgid "Shared with one contact" msgstr "一人のコンタクトと共有" -#: [flag]orange +#: ../cache/locales.php:569 msgid "Shared with all contacts" msgstr "全てのコンタクトと共有" -#: [flag]red +#: ../cache/locales.php:570 msgid "Shared with the XMPP network" msgstr "XMPPネットワークと共有" -#: [flag]black +#: ../cache/locales.php:571 msgid "Shared with the whole Internet" msgstr "全てと共有" -#: [presence]online +#: ../cache/locales.php:572 msgid "Online" msgstr "オンライン" -#: [presence]away +#: ../cache/locales.php:573 msgid "Away" msgstr "離席中" -#: [presence]dnd +#: ../cache/locales.php:574 msgid "Do Not Disturb" msgstr "取り込み中" -#: [presence]xa +#: ../cache/locales.php:575 msgid "Extended Away" msgstr "長時間の不在" -#: [presence]offline +#: ../cache/locales.php:576 msgid "Offline" msgstr "オフライン" -#: [presence]error +#: ../cache/locales.php:577 msgid "Error" msgstr "エラー" -#: [mood]afraid +#: ../cache/locales.php:578 msgid "afraid" msgstr "" -#: [mood]amazed +#: ../cache/locales.php:579 msgid "amazed" msgstr "" -#: [mood]amorous +#: ../cache/locales.php:580 msgid "amorous" msgstr "" -#: [mood]angry +#: ../cache/locales.php:581 msgid "angry" msgstr "" -#: [mood]annoyed +#: ../cache/locales.php:582 msgid "annoyed" msgstr "" -#: [mood]anxious +#: ../cache/locales.php:583 msgid "anxious" msgstr "" -#: [mood]aroused +#: ../cache/locales.php:584 msgid "aroused" msgstr "" -#: [mood]ashamed +#: ../cache/locales.php:585 msgid "ashamed" msgstr "" -#: [mood]bored +#: ../cache/locales.php:586 msgid "bored" msgstr "" -#: [mood]brave +#: ../cache/locales.php:587 msgid "brave" msgstr "" -#: [mood]calm +#: ../cache/locales.php:588 msgid "calm" msgstr "" -#: [mood]cautious +#: ../cache/locales.php:589 msgid "cautious" msgstr "" -#: [mood]cold +#: ../cache/locales.php:590 msgid "cold" msgstr "" -#: [mood]confident +#: ../cache/locales.php:591 msgid "confident" msgstr "" -#: [mood]confused +#: ../cache/locales.php:592 msgid "confused" msgstr "" -#: [mood]contemplative +#: ../cache/locales.php:593 msgid "contemplative" msgstr "" -#: [mood]contented +#: ../cache/locales.php:594 msgid "contented" msgstr "" -#: [mood]cranky +#: ../cache/locales.php:595 msgid "cranky" msgstr "" -#: [mood]crazy +#: ../cache/locales.php:596 msgid "crazy" msgstr "" -#: [mood]creative +#: ../cache/locales.php:597 msgid "creative" msgstr "" -#: [mood]curious +#: ../cache/locales.php:598 msgid "curious" msgstr "" -#: [mood]dejected +#: ../cache/locales.php:599 msgid "dejected" msgstr "" -#: [mood]depressed +#: ../cache/locales.php:600 msgid "depressed" msgstr "" -#: [mood]disappointed +#: ../cache/locales.php:601 msgid "disappointed" msgstr "" -#: [mood]disgusted +#: ../cache/locales.php:602 msgid "disgusted" msgstr "" -#: [mood]dismayed +#: ../cache/locales.php:603 msgid "dismayed" msgstr "" -#: [mood]distracted +#: ../cache/locales.php:604 msgid "distracted" msgstr "" -#: [mood]embarrassed +#: ../cache/locales.php:605 msgid "embarrassed" msgstr "" -#: [mood]envious +#: ../cache/locales.php:606 msgid "envious" msgstr "" -#: [mood]excited +#: ../cache/locales.php:607 msgid "excited" msgstr "" -#: [mood]flirtatious +#: ../cache/locales.php:608 msgid "flirtatious" msgstr "" -#: [mood]frustated +#: ../cache/locales.php:609 msgid "frustated" msgstr "" -#: [mood]grateful +#: ../cache/locales.php:610 msgid "grateful" msgstr "" -#: [mood]grieving +#: ../cache/locales.php:611 msgid "grieving" msgstr "" -#: [mood]grumpy +#: ../cache/locales.php:612 msgid "grumpy" msgstr "" -#: [mood]guilty +#: ../cache/locales.php:613 msgid "guilty" msgstr "" -#: [mood]happy +#: ../cache/locales.php:614 msgid "happy" msgstr "" -#: [mood]hopeful +#: ../cache/locales.php:615 msgid "hopeful" msgstr "" -#: [mood]hot +#: ../cache/locales.php:616 msgid "hot" msgstr "" -#: [mood]humbled +#: ../cache/locales.php:617 msgid "humbled" msgstr "" -#: [mood]humiliated +#: ../cache/locales.php:618 msgid "humiliated" msgstr "" -#: [mood]hungry +#: ../cache/locales.php:619 msgid "hungry" msgstr "" -#: [mood]hurt +#: ../cache/locales.php:620 msgid "hurt" msgstr "" -#: [mood]impressed +#: ../cache/locales.php:621 msgid "impressed" msgstr "" -#: [mood]in_awe +#: ../cache/locales.php:622 msgid "in awe" msgstr "" -#: [mood]in_love +#: ../cache/locales.php:623 msgid "in love" msgstr "" -#: [mood]indignant +#: ../cache/locales.php:624 msgid "indignant" msgstr "" -#: [mood]interested +#: ../cache/locales.php:625 msgid "interested" msgstr "" -#: [mood]intoxicated +#: ../cache/locales.php:626 msgid "intoxicated" msgstr "" -#: [mood]invincible +#: ../cache/locales.php:627 msgid "invincible" msgstr "" -#: [mood]jealous +#: ../cache/locales.php:628 msgid "jealous" msgstr "" -#: [mood]lonely +#: ../cache/locales.php:629 msgid "lonely" msgstr "" -#: [mood]lost +#: ../cache/locales.php:630 msgid "lost" msgstr "" -#: [mood]lucky +#: ../cache/locales.php:631 msgid "lucky" msgstr "" -#: [mood]mean +#: ../cache/locales.php:632 msgid "mean" msgstr "" -#: [mood]moody +#: ../cache/locales.php:633 msgid "moody" msgstr "" -#: [mood]nervous +#: ../cache/locales.php:634 msgid "nervous" msgstr "" -#: [mood]neutral +#: ../cache/locales.php:635 msgid "neutral" msgstr "" -#: [mood]offended +#: ../cache/locales.php:636 msgid "offended" msgstr "" -#: [mood]outraged +#: ../cache/locales.php:637 msgid "outraged" msgstr "" -#: [mood]playful +#: ../cache/locales.php:638 msgid "playful" msgstr "" -#: [mood]proud +#: ../cache/locales.php:639 msgid "proud" msgstr "" -#: [mood]relaxed +#: ../cache/locales.php:640 msgid "relaxed" msgstr "" -#: [mood]relieved +#: ../cache/locales.php:641 msgid "relieved" msgstr "" -#: [mood]restless +#: ../cache/locales.php:642 +msgid "remorseful" +msgstr "" + +#: ../cache/locales.php:643 msgid "restless" msgstr "" -#: [mood]sad +#: ../cache/locales.php:644 msgid "sad" msgstr "" -#: [mood]sarcastic +#: ../cache/locales.php:645 msgid "sarcastic" msgstr "" -#: [mood]satisfied +#: ../cache/locales.php:646 msgid "satisfied" msgstr "" -#: [mood]serious +#: ../cache/locales.php:647 msgid "serious" msgstr "" -#: [mood]shocked +#: ../cache/locales.php:648 msgid "shocked" msgstr "" -#: [mood]shy +#: ../cache/locales.php:649 msgid "shy" msgstr "" -#: [mood]sick +#: ../cache/locales.php:650 msgid "sick" msgstr "" -#: [mood]sleepy +#: ../cache/locales.php:651 msgid "sleepy" msgstr "" -#: [mood]spontaneous +#: ../cache/locales.php:652 msgid "spontaneous" msgstr "" -#: [mood]stressed +#: ../cache/locales.php:653 msgid "stressed" msgstr "" -#: [mood]strong +#: ../cache/locales.php:654 msgid "strong" msgstr "" -#: [mood]surprised +#: ../cache/locales.php:655 msgid "surprised" msgstr "" -#: [mood]thankful +#: ../cache/locales.php:656 msgid "thankful" msgstr "" -#: [mood]thirsty +#: ../cache/locales.php:657 msgid "thirsty" msgstr "" -#: [mood]tired +#: ../cache/locales.php:658 msgid "tired" msgstr "" -#: [mood]undefined +#: ../cache/locales.php:659 msgid "undefined" msgstr "不明" -#: [mood]weak +#: ../cache/locales.php:660 msgid "weak" msgstr "" -#: [mood]worried +#: ../cache/locales.php:661 msgid "worried" msgstr "" -#: [month]title +#: ../cache/locales.php:662 msgid "Month" msgstr "月" -#: [month]january +#: ../cache/locales.php:663 msgid "January" msgstr "1月" -#: [month]february +#: ../cache/locales.php:664 msgid "February" msgstr "2月" -#: [month]march +#: ../cache/locales.php:665 msgid "March" msgstr "3月" -#: [month]april +#: ../cache/locales.php:666 msgid "April" msgstr "4月" -#: [month]may +#: ../cache/locales.php:667 msgid "May" msgstr "5月" -#: [month]june +#: ../cache/locales.php:668 msgid "June" msgstr "6月" -#: [month]july +#: ../cache/locales.php:669 msgid "July" msgstr "7月" -#: [month]august +#: ../cache/locales.php:670 msgid "August" msgstr "8月" -#: [month]september +#: ../cache/locales.php:671 msgid "September" msgstr "9月" -#: [month]october +#: ../cache/locales.php:672 msgid "October" msgstr "10月" -#: [month]november +#: ../cache/locales.php:673 msgid "November" msgstr "11月" -#: [month]december +#: ../cache/locales.php:674 msgid "December" msgstr "12月" -#: [year]title +#: ../cache/locales.php:675 msgid "Year" msgstr "年" -#: [date]today +#: ../cache/locales.php:676 msgid "Today" msgstr "今日" -#: [date]tomorrow +#: ../cache/locales.php:677 msgid "Tomorrow" msgstr "明日" -#: [date]yesterday +#: ../cache/locales.php:678 msgid "Yesterday" msgstr "昨日" -#: [date]ago -#, fuzzy -msgid "%d days ago" +#: ../cache/locales.php:679 +#, php-format +msgid " %d days ago" msgstr " %d日間前に" -#: [date]day +#: ../cache/locales.php:680 msgid "day" msgstr "日" -#: [post]whats_new +#: ../cache/locales.php:682 msgid "What's new ?" msgstr "" -#: [post]place +#: ../cache/locales.php:683 msgid "Place" msgstr "" -#: [post]by +#: ../cache/locales.php:684 msgid "by" msgstr "" -#: [post]geolocalisation +#: ../cache/locales.php:685 msgid "Geolocalisation" msgstr "" -#: [post]email +#: ../cache/locales.php:686 msgid "email" msgstr "メール" -#: [post]no_comments +#: ../cache/locales.php:688 msgid "No comments yet" msgstr "コメントがまだありません" -#: [post]no_comments_stream +#: ../cache/locales.php:689 msgid "No comments stream" msgstr "" -#: [post]no_load +#: ../cache/locales.php:690 msgid "Your feed cannot be loaded." msgstr "フィードがロードできませんでした。" -#: [post]older +#: ../cache/locales.php:691 msgid "Get older posts" msgstr "前の投稿を見る" -#: [post]new_items +#: ../cache/locales.php:692 +#, php-format msgid "%s new items" msgstr "" -#: [post]comment_error +#: ../cache/locales.php:693 msgid "Comment publication error" msgstr "" -#: [post]comments_older +#: ../cache/locales.php:694 msgid "Show the older comments" msgstr "前のコメントを見る" -#: [post]comments_loading -#, fuzzy -msgid "Loading comments..." +#: ../cache/locales.php:695 +msgid "Loading comments ..." msgstr "コメント読み込み" -#: [post]comments_get +#: ../cache/locales.php:696 msgid "Get the comments" msgstr "コメントを見る" -#: [post]comment_add +#: ../cache/locales.php:697 msgid "Add a comment" msgstr "コメントを投稿する" -#: [post]share +#: ../cache/locales.php:698 msgid "Share with" msgstr "" -#: [post]share_everyone +#: ../cache/locales.php:699 msgid "Everyone" msgstr "全て" -#: [post]share_your_contacts +#: ../cache/locales.php:700 msgid "Your contacts" msgstr "" -#: [post]updated +#: ../cache/locales.php:702 msgid "Updated" msgstr "" -#: [post]content_not_found +#: ../cache/locales.php:703 msgid "Content not found" msgstr "コンタクトが見つかりませんでした" -#: [post]default_title +#: ../cache/locales.php:704 msgid "Contact publication" msgstr "" -#: [post]comments +#: ../cache/locales.php:705 msgid "Comments" msgstr "コメント" -#: [api]error +#: ../cache/locales.php:706 msgid "The API is not reachable, try again later" msgstr "" -#: [field]type_here +#: ../cache/locales.php:707 msgid "Type here" msgstr "ここに入力を" -#~ msgid "Environment" -#~ msgstr "環境" - -#~ msgid "Remove a chatroom" -#~ msgstr "ルームを削除する" - #~ msgid "Logout" #~ msgstr "ログアウト" +#, php-format #~ msgid "%s - Account Creation" #~ msgstr "%s - アカウントの作成" @@ -2749,15 +2603,21 @@ msgstr "ここに入力を" #~ msgid "Movim Installer" #~ msgstr "Movimインストーラー" +#, php-format #~ msgid "Couldn't create configuration file '%s'." #~ msgstr "「%s」の設定ファイルをクリエートできませんでした。" #~ msgid "Compatibility Test" #~ msgstr "両立テスト" -#~ msgid "The following requirements were not met. Please make sure they are all satisfied in order to install Movim." +#~ msgid "" +#~ "The following requirements were not met. Please make sure they are all " +#~ "satisfied in order to install Movim." #~ msgstr "次の条件は認めませんでした。Movimをインストールするためには、全部認めるようにしてください。" +#~ msgid "Remove this contact" +#~ msgstr "このコンタクトを削除する" + #~ msgid "wants to talk with you" #~ msgstr "はあなたとチャットしたいそうです。" @@ -2767,6 +2627,7 @@ msgstr "ここに入力を" #~ msgid "Loading the contact feed ..." #~ msgstr "コンタクトのフィードをロードしています。" +#, php-format #~ msgid "Install the %s package" #~ msgstr "%sというパッケージをインストールしてください。" @@ -2779,30 +2640,41 @@ msgstr "ここに入力を" #~ msgid "Update your PHP version or contact your server administrator" #~ msgstr "PHPバージョンをアップデートしてください。それとも、アドミンサーバーを連絡してください。" +#, php-format #~ msgid "Install %s and %s packages" #~ msgstr "%sと%sというパッケージをインストールしてください。" #~ msgid "Enable read and write rights on Movim's root folder" #~ msgstr "Movimルートフォルドに読取り書込み権利を許可してください。" +#, php-format #~ msgid "Bosh connection failed with error '%s'" #~ msgstr "「%s」というエラーでBoshコネクションが失敗しました。" +#, php-format #~ msgid "Database connection failed with error '%s'" #~ msgstr "「%s」というエラーでデータベースコネクションが失敗しました。" +#, php-format #~ msgid "XMPP connection through Bosh failed with error '%s'" #~ msgstr "Boshを通じてXMPPコネクションは「%s」というエラーで失波しました。" -#~ msgid "Keep in mind that Movim is still under development and will handle many personal details. Its use can potentially endanger your data. Always pay attention to information that you submit." -#~ msgstr "Movimは未だ開発中で、多くのパーソナルインフォメーションを扱うことを注目して下さい。これの使用はデータを危ぶむ可能性があります。送るインフォメーションにいつもご注意下さい。" +#~ msgid "" +#~ "Keep in mind that Movim is still under development and will handle many " +#~ "personal details. Its use can potentially endanger your data. Always pay " +#~ "attention to information that you submit." +#~ msgstr "" +#~ "Movimは未だ開発中で、多くのパーソナルインフォメーションを扱うことを注目して下さい。これの使用はデータを危ぶむ可能性があります。送るインフォメーション" +#~ "にいつもご注意下さい。" -#~ msgid "Before you enjoy your social network, a few adjustements are required." +#~ msgid "" +#~ "Before you enjoy your social network, a few adjustements are required." #~ msgstr "あなたのソーシャルネットワークをお楽しみする前に、いくつかの修整が必要です。" #~ msgid "Thank you for downloading Movim!" #~ msgstr "Movimをダウンロードして頂き、誠にありがとうございます。" +#, php-format #~ msgid "Couldn't create directory '%s'." #~ msgstr "「%s」というフォルダをクリエートできませんでした。" @@ -2824,7 +2696,9 @@ msgstr "ここに入力を" #~ msgid "empty" #~ msgstr "空" -#~ msgid "Some errors were detected. Please correct them for the installation to proceed." +#~ msgid "" +#~ "Some errors were detected. Please correct them for the installation to " +#~ "proceed." #~ msgstr "エラーが発生されました。インストールを完成するには、それらを直してください。" #~ msgid "BOSH Connection Preferences" @@ -2833,18 +2707,21 @@ msgstr "ここに入力を" #~ msgid "Success !" #~ msgstr "成功!" +#, php-format #~ msgid "Please remove the %s folder in order to complete the installation" #~ msgstr "インストールを完成するには、「%s」というフォルダを抜いてください。" #~ msgid "JID not provided." #~ msgstr "JIDは備われていません。" +#, php-format #~ msgid "Cannot load element value '%s'" #~ msgstr "「%s」というエレメントバリューをロードできません。" #~ msgid "User not logged in." #~ msgstr "ユーザーはログインしていません。" +#, php-format #~ msgid "You can now access your shiny Movim instance %sJump In !%s" #~ msgstr "これから、「%sJump」というMovimインスタンスを「!%s」にアクセスすることができます。" @@ -2857,12 +2734,15 @@ msgstr "ここに入力を" #~ msgid "Valid Bosh" #~ msgstr "妥当なBosh" +#, php-format #~ msgid "jid '%s' is incorrect" #~ msgstr "「%s」というJIDは正しくありません。" +#, php-format #~ msgid "Cannot open log file '%s'" #~ msgstr "「%s」というログファイルをオープンできません。" +#, php-format #~ msgid "Movim requires the %s extension." #~ msgstr "Movimには「%s」という拡張子が必要です。" @@ -2872,6 +2752,7 @@ msgstr "ここに入力を" #~ msgid "Wrong ID" #~ msgstr "不可のID" +#, php-format #~ msgid "%s - Add An Account" #~ msgstr "%s - アカウントを追加" @@ -2887,7 +2768,9 @@ msgstr "ここに入力を" #~ msgid "Invalid name" #~ msgstr "名前が無効です" -#~ msgid "Firstly fill in this blank with a brand new account ID, this address will follow you on all the Movim network !" +#~ msgid "" +#~ "Firstly fill in this blank with a brand new account ID, this address will " +#~ "follow you on all the Movim network !" #~ msgstr "はじめには、このブランクを真新しいIDで入力してください。このアドレスはすべてのMovimネットワークで使われるのです。" #~ msgid "Add your login informations" @@ -2914,7 +2797,9 @@ msgstr "ここに入力を" #~ msgid "Address" #~ msgstr "住所" -#~ msgid "Your server doesn't support post publication, you can only read contact's feeds" +#~ msgid "" +#~ "Your server doesn't support post publication, you can only read contact's " +#~ "feeds" #~ msgstr "サーバーではポスト掲載を取り締まることができません。それで、自分のコンタクトの掲載しか読めません。" #~ msgid "Invite this user" diff --git a/sources/locales/kk.po b/sources/locales/kk.po index 6711222..b8d543a 100644 --- a/sources/locales/kk.po +++ b/sources/locales/kk.po @@ -3,2696 +3,2583 @@ # This file is distributed under the same license as the movim package. # FIRST AUTHOR , 2014. # -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/About/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Account/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/AccountNext/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/AdHoc/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/AdminDB/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/AdminMain/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/AdminTest/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Api/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Avatar/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Blog/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Bookmark/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Chat/locales.ini -#. #-#-#-#-# 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 -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Group/locales.ini -#. #-#-#-#-# 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 -#. #-#-#-#-# 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 -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Presence/locales.ini -#. #-#-#-#-# 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 -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Share/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Statistics/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Subscribe/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Syndication/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Upload/locales.ini -#. #-#-#-#-# 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-08-20 15:17+0200\n" +"POT-Creation-Date: 2015-06-08 22:06+0200\n" "PO-Revision-Date: 2014-04-04 12:56+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Kazakh \n" -"Language: kk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2015-06-18 21:08+0000\n" "X-Generator: Launchpad (build 17570)\n" +"Language: kk\n" -#: [about]thanks +#: ../cache/locales.php:2 msgid "Thanks" msgstr "" -#: [about]developers +#: ../cache/locales.php:3 msgid "Developers" msgstr "" -#: [about]translators +#: ../cache/locales.php:4 msgid "Translators" msgstr "" -#: [about]software +#: ../cache/locales.php:5 msgid "Software" msgstr "" -#: [about]resources +#: ../cache/locales.php:6 msgid "Resources" msgstr "" -#: [about]api [schema]api [api]title +#: ../cache/locales.php:7 ../cache/locales.php:83 ../cache/locales.php:85 msgid "API" msgstr "" -#: [about]info -msgid "Movim is an XMPP-based communication platform. All the project, except the following software and resources, is under" +#: ../cache/locales.php:8 +msgid "" +"Movim is an XMPP-based communication platform. All the project, except the " +"following software and resources, is under" msgstr "" -#: [account]title +#: ../cache/locales.php:9 msgid "Account" msgstr "" -#: [account]password_change_title -msgid "Change my password" -msgstr "" - -#: [account]password [db]password [credentials]password [form]password -#: [input]password -msgid "Password" -msgstr "" - -#: [account]password_confirmation -msgid "Password confirmation" -msgstr "" - -#: [account]password_changed +#: ../cache/locales.php:10 msgid "The password has been updated" msgstr "" -#: [account]password_not_valid +#: ../cache/locales.php:11 msgid "Please provide a valid password (6 characters minimum)" msgstr "" -#: [account]password_not_same +#: ../cache/locales.php:12 msgid "The provided passwords are not the same" msgstr "" -#: [account]delete_title +#: ../cache/locales.php:13 msgid "Delete my account" msgstr "" -#: [account]delete -msgid "Delete your account" +#: ../cache/locales.php:14 +msgid "" +"You will delete your XMPP account and all the relative information linked to " +"it (profile, contacts and publications)." msgstr "" -#: [account]delete_text -msgid "You will delete your XMPP account and all the relative information linked to it (profile, contacts and publications)." -msgstr "" - -#: [account]delete_text_confirm +#: ../cache/locales.php:15 msgid "Are you sure that you want to delete it ?" msgstr "" -#: [account]gateway_title -msgid "Gateway" -msgstr "" - -#: [create]title [subscribe]title +#: ../cache/locales.php:16 ../cache/locales.php:411 msgid "Create a new account" msgstr "" -#: [create]notfound +#: ../cache/locales.php:17 msgid "No account creation form found on the server" msgstr "" -#: [create]server_on +#: ../cache/locales.php:18 ../cache/locales.php:172 msgid "on" msgstr "" -#: [create]successfull +#: ../cache/locales.php:19 msgid "Your acccount has been successfully registered" msgstr "" -#: [create]loading +#: ../cache/locales.php:20 msgid "Loading" msgstr "" -#: [error]not_acceptable +#: ../cache/locales.php:21 msgid "Not Acceptable" msgstr "" -#: [error]service_unavailable +#: ../cache/locales.php:22 msgid "The registration system of this server is currently unavailable" msgstr "" -#: [oob]about -msgid "This server use an external system for the registration, please click on the following URL." +#: ../cache/locales.php:23 +msgid "" +"This server use an external system for the registration, please click on the " +"following URL." msgstr "" -#: [adhoc]title +#: ../cache/locales.php:24 msgid "Actions" msgstr "" -#: [db]legend [schema]database +#: ../cache/locales.php:25 ../cache/locales.php:82 msgid "Database" msgstr "" -#: [db]connect_error +#: ../cache/locales.php:26 msgid "Modl wasn't able to connect to the database" msgstr "" -#: [db]connect_success +#: ../cache/locales.php:27 msgid "Movim is connected to the database" msgstr "" -#: [db]update +#: ../cache/locales.php:28 msgid "The database need to be updated" msgstr "" -#: [db]up_to_date +#: ../cache/locales.php:29 msgid "Movim database is up to date" msgstr "" -#: [db]type +#: ../cache/locales.php:30 msgid "Database Type" msgstr "" -#: [db]username [credentials]username [input]username +#: ../cache/locales.php:31 ../cache/locales.php:50 ../cache/locales.php:540 msgid "Username" msgstr "" -#: [db]host +#: ../cache/locales.php:32 ../cache/locales.php:51 ../cache/locales.php:282 +#: ../cache/locales.php:541 +msgid "Password" +msgstr "" + +#: ../cache/locales.php:33 msgid "Host" msgstr "" -#: [db]port +#: ../cache/locales.php:34 msgid "Port" msgstr "" -#: [db]name -msgid "Database sName" +#: ../cache/locales.php:35 +msgid "Database Name" msgstr "" -#: [admin]general +#: ../cache/locales.php:36 msgid "General Settings" msgstr "" -#: [general]theme +#: ../cache/locales.php:37 msgid "Theme" msgstr "" -#: [general]language +#: ../cache/locales.php:38 msgid "Default language" msgstr "" -#: [general]log_verbosity +#: ../cache/locales.php:39 +msgid "Environment" +msgstr "" + +#: ../cache/locales.php:40 msgid "Log verbosity" msgstr "" -#: [general]timezone +#: ../cache/locales.php:41 msgid "Server Timezone" msgstr "" -#: [general]limit +#: ../cache/locales.php:42 msgid "User folder size limit (in bytes)" msgstr "" -#: [websocket]title +#: ../cache/locales.php:43 msgid "WebSocket Configuration" msgstr "" -#: [websocket]info +#: ../cache/locales.php:44 msgid "Enter here a valid WebSocket URI in the form" msgstr "" -#: [websocket]label +#: ../cache/locales.php:45 msgid "WebSocket URI" msgstr "" -#: [websocket]save_info -msgid "If you change the URI, please restart the daemon to reload the configuration" +#: ../cache/locales.php:46 +msgid "" +"If you change the URI, please restart the daemon to reload the configuration" msgstr "" -#: [websocket]publics +#: ../cache/locales.php:47 msgid "Public WebSockets" msgstr "" -#: [credentials]title +#: ../cache/locales.php:48 msgid "Administration Credential" msgstr "" -#: [credentials]info +#: ../cache/locales.php:49 msgid "Change the default credentials admin/password" msgstr "" -#: [credentials]re_password +#: ../cache/locales.php:52 msgid "Retype password" msgstr "" -#: [whitelist]title +#: ../cache/locales.php:53 msgid "Whitelist - XMPP Server" msgstr "" -#: [whitelist]info1 -msgid "If you want to specify a list of authorized XMPP servers on your Movim pod and forbid the connection on all the others please put their domain name here, with comma (ex: movim.eu,jabber.fr)" +#: ../cache/locales.php:54 +msgid "" +"If you want to specify a list of authorized XMPP servers on your Movim pod " +"and forbid the connection on all the others please put their domain name " +"here, with comma (ex: movim.eu,jabber.fr)" msgstr "" -#: [whitelist]info2 -msgid "Leave this field blank if you allow the access to all the XMPP accounts." +#: ../cache/locales.php:55 +msgid "" +"Leave this field blank if you allow the access to all the XMPP accounts." msgstr "" -#: [whitelist]label +#: ../cache/locales.php:56 msgid "List of whitelisted XMPP servers" msgstr "" -#: [information]title -msgctxt "[information]title" +#: ../cache/locales.php:57 ../cache/locales.php:61 msgid "Information Message" msgstr "" -#: [information]description +#: ../cache/locales.php:58 msgid "Description" msgstr "" -#: [information]info1 +#: ../cache/locales.php:59 msgid "This message will be displayed on the login page" msgstr "" -#: [information]info2 -msgid "Leave this field blank if you dont want to show any message." +#: ../cache/locales.php:60 +msgid "Leave this field blank if you don't want to show any message." msgstr "" -#: [information]label -msgctxt "[information]label" -msgid "Information Message" -msgstr "" - -#: [log]empty +#: ../cache/locales.php:62 msgid "Empty" msgstr "" -#: [log]syslog +#: ../cache/locales.php:63 msgid "Syslog" msgstr "" -#: [log]syslog_files +#: ../cache/locales.php:64 msgid "Syslog and files" msgstr "" -#: [rewrite]title +#: ../cache/locales.php:65 msgid "URL Rewriting" msgstr "" -#: [rewrite]info +#: ../cache/locales.php:66 msgid "The URL Rewriting can be enabled" msgstr "" -#: [admin]compatibility +#: ../cache/locales.php:67 msgid "General Overview" msgstr "" -#: [compatibility]info -msgid "Movim has found some issues or things that need to be fixed or improved" +#: ../cache/locales.php:68 +msgid "" +"Movim has found some issues or things that need to be fixed or improved" msgstr "" -#: [compatibility]php1 +#: ../cache/locales.php:69 +#, php-format msgid "Update your PHP-Version: %s" msgstr "" -#: [compatibility]php2 +#: ../cache/locales.php:70 msgid "Required: 5.3.0" msgstr "" -#: [compatibility]curl +#: ../cache/locales.php:71 msgid "Install the php5-curl library" msgstr "" -#: [compatibility]imagick +#: ../cache/locales.php:72 msgid "Install the php5-imagick library" msgstr "" -#: [compatibility]gd +#: ../cache/locales.php:73 msgid "Install the php5-gd library" msgstr "" -#: [compatibility]rights -msgid "Read and write rights for the webserver in Movims root directory" +#: ../cache/locales.php:74 +msgid "Read and write rights for the webserver in Movim's root directory" msgstr "" -#: [compatibility]rewrite +#: ../cache/locales.php:75 msgid "The URL Rewriting support is currently disabled" msgstr "" -#: [compatibility]db +#: ../cache/locales.php:76 msgid "The database need to be updated, go to the database panel to fix this" msgstr "" -#: [compatibility]websocket -msgid "WebSocket connection error, check if the Movim Daemon is running and is reachable" +#: ../cache/locales.php:77 +msgid "" +"WebSocket connection error, check if the Movim Daemon is running and is " +"reacheable" msgstr "" -#: [compatibility]xmpp_websocket -msgid "XMPP Websocket connection error, please check the validity of the URL given in the General Configuration" +#: ../cache/locales.php:78 +msgid "" +"XMPP Websocket connection error, please check the validity of the URL given " +"in the General Configuration" msgstr "" -#: [schema]browser +#: ../cache/locales.php:79 msgid "Browser" msgstr "" -#: [schema]movim +#: ../cache/locales.php:80 msgid "Movim Core" msgstr "" -#: [schema]daemon +#: ../cache/locales.php:81 msgid "Movim Daemon" msgstr "" -#: [schema]xmpp +#: ../cache/locales.php:84 msgid "XMPP" msgstr "" -#: [api]info -msgid "Here you can register your pod on the official %sMovim API%s and be listed on %sthe pods page%s." +#: ../cache/locales.php:86 +#, php-format +msgid "" +"Here you can register your pod on the official %sMovim API%s and be listed " +"on %sthe pods page%s." msgstr "" -#: [api]register +#: ../cache/locales.php:87 msgid "Your pod is not registered on the API" msgstr "" -#: [api]registered +#: ../cache/locales.php:88 msgid "Your pod is registered on the API" msgstr "" -#: [api]wait +#: ../cache/locales.php:89 msgid "Your pod is not yet validated" msgstr "" -#: [api]validated +#: ../cache/locales.php:90 msgid "Your pod is validated" msgstr "" -#: [api]unregister -msgid "You asked to be removed from the API, this request will be processed in a couple of hours" +#: ../cache/locales.php:91 +msgid "" +"You asked to be removed from the API, this request will be processed in a " +"couple of hours" msgstr "" -#: [api]conf_updated [config]updated +#: ../cache/locales.php:92 ../cache/locales.php:147 msgid "Configuration updated" msgstr "" -#: [avatar]file +#: ../cache/locales.php:93 msgid "File" msgstr "" -#: [avatar]use_it +#: ../cache/locales.php:94 msgid "Use it" msgstr "" -#: [avatar]webcam +#: ../cache/locales.php:95 msgid "Webcam" msgstr "" -#: [avatar]cheese +#: ../cache/locales.php:96 msgid "Cheese !" msgstr "" -#: [avatar]snapshot +#: ../cache/locales.php:97 msgid "Take a webcam snapshot" msgstr "" -#: [avatar]updated +#: ../cache/locales.php:98 msgid "Avatar Updated" msgstr "" -#: [avatar]not_updated +#: ../cache/locales.php:99 msgid "Avatar Not Updated" msgstr "" -#: [blog]title [feed]title +#: ../cache/locales.php:100 ../cache/locales.php:415 +#, php-format msgid "%s's feed" msgstr "" -#: [blog]empty +#: ../cache/locales.php:101 msgid "This user has not posted anything right now" msgstr "" -#: [title]conferences +#: ../cache/locales.php:102 msgid "Conferences" msgstr "" -#: [title]groups [group]empty_title [menu]groups [page]groups +#: ../cache/locales.php:103 ../cache/locales.php:193 ../cache/locales.php:217 +#: ../cache/locales.php:468 msgid "Groups" msgstr "" -#: [chatroom]add +#: ../cache/locales.php:104 msgid "Add a new Chat Room" msgstr "" -#: [chatroom]id [chatrooms]id +#: ../cache/locales.php:105 ../cache/locales.php:368 msgid "Chat Room ID" msgstr "" -#: [chatroom]name -msgctxt "[chatroom]name" +#: ../cache/locales.php:106 ../cache/locales.php:116 ../cache/locales.php:156 +#: ../cache/locales.php:361 ../cache/locales.php:369 ../cache/locales.php:424 msgid "Name" msgstr "" -#: [chatroom]nickname [general]nickname [chatrooms]nickname +#: ../cache/locales.php:107 ../cache/locales.php:157 ../cache/locales.php:371 +#: ../cache/locales.php:425 msgid "Nickname" msgstr "" -#: [chatroom]autojoin_label +#: ../cache/locales.php:108 msgid "Do you want do join automaticaly this Chat Room ?" msgstr "" -#: [chatroom]bad_id [chatrooms]bad_id +#: ../cache/locales.php:109 ../cache/locales.php:372 msgid "Bad Chatroom ID" msgstr "" -#: [chatroom]empty_name [chatrooms]empty_name +#: ../cache/locales.php:110 ../cache/locales.php:373 msgid "Empty name" msgstr "" -#: [bookmarks]updated +#: ../cache/locales.php:111 ../cache/locales.php:380 msgid "Bookmarks updated" msgstr "" -#: [bookmarks]error -msgid "An error occured :" +#: ../cache/locales.php:112 +msgid "An error occured : " msgstr "" -#: [bookmarks]configure +#: ../cache/locales.php:113 msgid "Configure" msgstr "" -#: [url]add +#: ../cache/locales.php:114 msgid "Add a new URL" msgstr "" -#: [url]url +#: ../cache/locales.php:115 msgid "URL" msgstr "" -#: [url]name -msgctxt "[url]name" -msgid "Name" -msgstr "" - -#: [message]published +#: ../cache/locales.php:117 msgid "Message Published" msgstr "" -#: [message]encrypted +#: ../cache/locales.php:118 ../cache/locales.php:138 msgid "Encrypted message" msgstr "" -#: [message]composing [chats]composing +#: ../cache/locales.php:119 msgid "Composing..." msgstr "" -#: [message]paused [chats]paused +#: ../cache/locales.php:120 msgid "Paused..." msgstr "" -#: [message]gone +#: ../cache/locales.php:121 msgid "Contact gone" msgstr "" -#: [chat]attention +#: ../cache/locales.php:122 +#, php-format msgid "%s needs your attention" msgstr "" -#: [chat]placeholder +#: ../cache/locales.php:123 msgid "Your message here..." msgstr "" -#: [chat]smileys +#: ../cache/locales.php:124 msgid "Smileys" msgstr "" -#: [chat]empty_title [button]chat +#: ../cache/locales.php:125 ../cache/locales.php:139 msgid "Chat" msgstr "" -#: [chat]empty_text +#: ../cache/locales.php:126 msgid "Discuss with your contacts" msgstr "" -#: [chat]frequent [chats]frequent -msgid "Frequent contacts" -msgstr "" - -#: [chatroom]members +#: ../cache/locales.php:127 msgid "Members" msgstr "" -#: [chatroom]connected [chatrooms]connected +#: ../cache/locales.php:128 ../cache/locales.php:376 msgid "Connected to the chatroom" msgstr "" -#: [chatroom]disconnected [chatrooms]disconnected +#: ../cache/locales.php:129 ../cache/locales.php:377 msgid "Disconnected from the chatroom" msgstr "" -#: [chatroom]config [group]configuration [page]configuration +#: ../cache/locales.php:130 ../cache/locales.php:200 ../cache/locales.php:469 msgid "Configuration" msgstr "" -#: [chatroom]config_saved +#: ../cache/locales.php:131 msgid "Configuration saved" msgstr "" -#: [chatroom]subject +#: ../cache/locales.php:132 msgid "Subject" msgstr "" -#: [chatroom]subject_changed +#: ../cache/locales.php:133 msgid "Subject changed" msgstr "" -#: [chats]empty_title -msgid "No chats yet..." +#: ../cache/locales.php:134 +msgid "Open a new conversation by clicking on the plus button bellow" msgstr "" -#: [chats]empty -msgid "Open a new conversation by clicking on the plus button bellow or visit the Contacts page." -msgstr "" - -#: [chats]add +#: ../cache/locales.php:135 msgid "Chat with a contact" msgstr "" -#: [chats]more +#: ../cache/locales.php:136 +msgid "Frequent contacts" +msgstr "" + +#: ../cache/locales.php:137 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 "" - -#: [config]general +#: ../cache/locales.php:140 msgid "General" msgstr "" -#: [config]language +#: ../cache/locales.php:141 msgid "Language" msgstr "" -#: [config]roster +#: ../cache/locales.php:142 msgid "Roster display" msgstr "" -#: [config]roster_show +#: ../cache/locales.php:143 msgid "Show the offline contacts" msgstr "" -#: [config]roster_hide +#: ../cache/locales.php:144 msgid "Hide the offline contacts" msgstr "" -#: [config]appearence +#: ../cache/locales.php:145 msgid "Appearence" msgstr "" -#: [config]info -msgid "This configuration is shared wherever you are connected" +#: ../cache/locales.php:146 +msgid "This configuration is shared wherever you are connected !" msgstr "" -#: [notifications]message +#: ../cache/locales.php:148 msgid "Notify on incoming message" msgstr "" -#: [notifications]desktop +#: ../cache/locales.php:149 msgid "Use desktop notifications" msgstr "" -#: [general]legend [general]general_title +#: ../cache/locales.php:150 +msgid "Data" +msgstr "" + +#: ../cache/locales.php:151 +msgid "Cache" +msgstr "" + +#: ../cache/locales.php:152 ../cache/locales.php:218 ../cache/locales.php:466 +msgid "Contacts" +msgstr "" + +#: ../cache/locales.php:153 ../cache/locales.php:480 +msgid "Posts" +msgstr "" + +#: ../cache/locales.php:154 +msgid "Messages" +msgstr "" + +#: ../cache/locales.php:155 ../cache/locales.php:423 msgid "General Informations" msgstr "" -#: [general]name [public_groups]name [chatrooms]name -msgid "Name" -msgstr "" - -#: [general]date_of_birth +#: ../cache/locales.php:158 ../cache/locales.php:427 msgid "Date of Birth" msgstr "" -#: [general]gender +#: ../cache/locales.php:159 ../cache/locales.php:428 msgid "Gender" msgstr "" -#: [general]marital +#: ../cache/locales.php:160 ../cache/locales.php:429 msgid "Marital Status" msgstr "" -#: [general]email +#: ../cache/locales.php:161 ../cache/locales.php:426 msgid "Email" msgstr "" -#: [general]website +#: ../cache/locales.php:162 ../cache/locales.php:430 msgid "Website" msgstr "" -#: [general]about +#: ../cache/locales.php:163 ../cache/locales.php:431 msgid "About Me" msgstr "" -#: [general]accounts +#: ../cache/locales.php:164 msgid "Other Accounts" msgstr "" -#: [general]tune +#: ../cache/locales.php:165 msgid "Is Listening" msgstr "" -#: [position]legend [position]position_title +#: ../cache/locales.php:166 ../cache/locales.php:432 msgid "Geographic Position" msgstr "" -#: [position]locality +#: ../cache/locales.php:167 ../cache/locales.php:433 msgid "Locality" msgstr "" -#: [position]country +#: ../cache/locales.php:168 ../cache/locales.php:434 msgid "Country" msgstr "" -#: [mood]title +#: ../cache/locales.php:169 msgid "Mood" msgstr "" -#: [mood]im +#: ../cache/locales.php:170 msgid "I'm " msgstr "" -#: [listen]title +#: ../cache/locales.php:171 msgid "Listening" msgstr "" -#: [last]title +#: ../cache/locales.php:173 msgid "Last seen" msgstr "" -#: [client]title +#: ../cache/locales.php:174 msgid "Client Informations" msgstr "" -#: [explore]last_registered +#: ../cache/locales.php:175 msgid "Last registered" msgstr "" -#: [explore]explore +#: ../cache/locales.php:176 msgid "Find some new friends" msgstr "" -#: [edit]title [button]edit +#: ../cache/locales.php:177 ../cache/locales.php:533 msgid "Edit" msgstr "" -#: [edit]alias +#: ../cache/locales.php:178 msgid "Alias" msgstr "" -#: [edit]group +#: ../cache/locales.php:179 msgid "Group" msgstr "" -#: [edit]updated [roster]updated +#: ../cache/locales.php:180 ../cache/locales.php:400 msgid "Contact updated" msgstr "" -#: [delete]title +#: ../cache/locales.php:181 msgid "Are you sure?" msgstr "" -#: [delete]text -msgid "You are going to delete one of your contacts, please confirm your action" +#: ../cache/locales.php:182 +msgid "" +"You are going to delete one of your contacts, please confirm your action" msgstr "" -#: [age]years +#: ../cache/locales.php:183 +#, php-format msgid "%s years" msgstr "" -#: [blog]last +#: ../cache/locales.php:184 msgid "Last public post" msgstr "" -#: [subscription]to -msgid "You can see this contact status" -msgstr "" - -#: [subscription]to_button -msgid "Share my status" -msgstr "" - -#: [subscription]to_text -msgid "But this contact cannot see yours" -msgstr "" - -#: [subscription]from -msgid "You are not subscribed to this contact" -msgstr "" - -#: [subscription]from_button -msgid "Ask to subscribe" -msgstr "" - -#: [subscription]from_text -msgid "But this contact can still see if you are online" -msgstr "" - -#: [subscription]nil -msgid "No subscriptions" -msgstr "" - -#: [subscription]nil_button -msgid "Invite" -msgstr "" - -#: [subscription]nil_text -msgid "This contact is in your contact list but there is no subscriptions between the two accounts" -msgstr "" - -#: [group]subscribe +#: ../cache/locales.php:185 msgid "Subscribe" msgstr "" -#: [group]subscribed +#: ../cache/locales.php:186 msgid "Subscribed" msgstr "" -#: [group]unsubscribe +#: ../cache/locales.php:187 msgid "Unsubscribe" msgstr "" -#: [group]unsubscribe_text +#: ../cache/locales.php:188 msgid "You are going to unsubscribe from this Group" msgstr "" -#: [group]unsubscribed +#: ../cache/locales.php:189 msgid "Unsubscribed" msgstr "" -#: [group]share_label +#: ../cache/locales.php:190 msgid "Make your membership to this group public to your friends" msgstr "" -#: [group]label_label +#: ../cache/locales.php:191 msgid "Give a label for this group" msgstr "" -#: [group]sure +#: ../cache/locales.php:192 msgid "Are you sure ?" msgstr "" -#: [group]empty_text +#: ../cache/locales.php:194 msgid "Discover, follow and share" msgstr "" -#: [group]empty +#: ../cache/locales.php:195 msgid "Something bad happened to this group" msgstr "" -#: [group]config_saved +#: ../cache/locales.php:196 msgid "Group configuration saved" msgstr "" -#: [group]delete_title +#: ../cache/locales.php:197 msgid "Delete the group" msgstr "" -#: [group]delete_text -msgid "You are going to delete the following group. Please confirm your action." +#: ../cache/locales.php:198 +msgid "" +"You are going to delete the following group. Please confirm your action." msgstr "" -#: [group]delete_clean_text -msgid "It seems that this group doesn't exists anymore. Do you want to remove it from your subscriptions?" +#: ../cache/locales.php:199 +msgid "" +"It seems that this group doesn't exists anymore. Do you want to remove it " +"from your subscriptions?" msgstr "" -#: [group]counter -msgid "%s groups on this server" -msgstr "" - -#: [group]subscriptions [statistics]subscriptions +#: ../cache/locales.php:201 ../cache/locales.php:408 msgid "Subscriptions" msgstr "" -#: [group]servers -msgid "Groups servers" -msgstr "" - -#: [group]search_server -msgid "Search for a new server" -msgstr "" - -#: [group]help_info1 -msgid "Groups are the perfect way to share posts about topics that you like with all the other Movim's users." -msgstr "" - -#: [group]help_info2 -msgid "Choose a server and a Group and subscribe to it using the %s button in the header. You can also create a new one using the %s button." -msgstr "" - -#: [group]help_info3 -msgid "Done? You can now publish a new post in the Group by using the %s button." -msgstr "" - -#: [group]help_info4 -msgid "You will find a list of all your subscribed Groups in My Subscriptions and receive instantly all the new incoming posts in the %sNews%s page." -msgstr "" - -#: [groups]empty_title +#: ../cache/locales.php:202 ../cache/locales.php:290 msgid "Hello" msgstr "" -#: [groups]contact_post [hello]contact_post [menu]contact_post +#: ../cache/locales.php:203 ../cache/locales.php:225 ../cache/locales.php:291 msgid "Contact post" msgstr "" -#: [groups]empty_text1 -msgid "You don't have any subscriptions yet, select a group server above to start exploring." +#: ../cache/locales.php:204 +msgid "" +"You don't have any subscriptions yet, select a group server above to start " +"exploring." msgstr "" -#: [groups]empty_text2 +#: ../cache/locales.php:205 msgid "Subscribe to your favorite feeds by bookmarking them." msgstr "" -#: [groups]subscriptions +#: ../cache/locales.php:206 msgid "My Subscriptions" msgstr "" -#: [groups]add +#: ../cache/locales.php:207 msgid "Create a new Group" msgstr "" -#: [groups]name +#: ../cache/locales.php:208 msgid "Group name" msgstr "" -#: [groups]name_example +#: ../cache/locales.php:209 msgid "My Little Pony - Fan Club" msgstr "" -#: [groups]created +#: ../cache/locales.php:210 msgid "Group created successfully" msgstr "" -#: [groups]deleted +#: ../cache/locales.php:211 msgid "Group deleted successfully" msgstr "" -#: [groups]name_error +#: ../cache/locales.php:212 msgid "Please provide a valid group name (4 characters minimum)" msgstr "" -#: [groups]no_creation +#: ../cache/locales.php:213 msgid "You cannot create a new Group on this server" msgstr "" -#: [groups]sub +#: ../cache/locales.php:214 +#, php-format msgid "%s subscribers" msgstr "" -#: [groups]num +#: ../cache/locales.php:215 +#, php-format msgid "%s posts" msgstr "" -#: [groups]disco_error -msgid "This server doesn't exists" -msgstr "" - -#: [menu]all +#: ../cache/locales.php:216 msgid "All" msgstr "" -#: [menu]refresh +#: ../cache/locales.php:219 msgid "Refresh all the streams" msgstr "" -#: [roster]search -msgid "Search in your contacts" -msgstr "" - -#: [hello]active_contacts -msgid "Active contacts" -msgstr "" - -#: [hello]chat -msgid "Go on the Chat page" -msgstr "" - -#: [hello]news [page]news -msgid "News" -msgstr "" - -#: [hello]news_page -msgid "Read all theses articles on the News page" -msgstr "" - -#: [hello]blog_title -msgid "Visit your public blog" -msgstr "" - -#: [hello]blog_text -msgid "See your public posts and share them with all your contacts" -msgstr "" - -#: [hello]share_title -msgid "Universal share button" -msgstr "" - -#: [hello]share_text -msgid "Bookmark or drag and drop the following button in your toolbar and use it on all the pages you want to share on Movim" -msgstr "" - -#: [hello]share_button -msgid "Share on Movim" -msgstr "" - -#: [help]faq -msgid "Frequently Asked Questions" -msgstr "" - -#: [banner]title -msgid "What do the little banners refer to ?" -msgstr "" - -#: [banner]info1 -msgid "Thanks to these five little banners, you can quickly identitfy the level of confdentiality applied to the information you provide." -msgstr "" - -#: [banner]white -msgid "White, only you can see the information" -msgstr "" - -#: [banner]green -msgid "Green, you have chosen some contacts who can see your information" -msgstr "" - -#: [banner]orange -msgid "Orange, all your contact list can see your information" -msgstr "" - -#: [banner]red -msgid "Red, everybody in the XMPP network can see your information" -msgstr "" - -#: [banner]black -msgid "Black, the whole Internet can see your information" -msgstr "" - -#: [wiki]question -msgid "Looking for some documentation ?" -msgstr "" - -#: [wiki]button -msgid "Read the Wiki" -msgstr "" - -#: [ml]question -msgid "Talk with us by email ?" -msgstr "" - -#: [ml]button -msgid "Join the Mailing List" -msgstr "" - -#: [chatroom]question -msgid "Chat with the team ?" -msgstr "" - -#: [chatroom]button -msgid "Join the Chatroom" -msgstr "" - -#: [init]location -msgid "Location node created" -msgstr "" - -#: [init]bookmark -msgid "Bookmark node created" -msgstr "" - -#: [init]vcard4 -msgid "Profile node created" -msgstr "" - -#: [init]avatar -msgid "Avatar node created" -msgstr "" - -#: [init]subscriptions -msgid "Subscriptions node created" -msgstr "" - -#: [init]microblog -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 "" - -#: [error]jid -msgid "Invalid JID" -msgstr "" - -#: [error]empty_challenge -msgid "Empty Challenge from the server" -msgstr "" - -#: [error]dns -msgid "XMPP Domain error, your account is not a correct Jabber ID" -msgstr "" - -#: [error]data_missings -msgid "Some data are missing !" -msgstr "" - -#: [error]wrong_password -msgid "Wrong password" -msgstr "" - -#: [error]internal -msgid "Internal server error" -msgstr "" - -#: [error]session -msgid "Session error" -msgstr "" - -#: [error]account_created -msgid "Account successfully created" -msgstr "" - -#: [error]xmpp_unauthorized -msgctxt "[error]xmpp_unauthorized" -msgid "Your XMPP server is unauthorized" -msgstr "" - -#: [error]mec_error -msgid "The server takes too much time to respond" -msgstr "" - -#: [error]too_old -msgid "Your web browser is too old to use with Movim." -msgstr "" - -#: [error]websocket -msgid "Movim cannot talk with the server, please try again later (Websocket connection error)" -msgstr "" - -#: [error]impossible -msgid "Impossible login" -msgstr "" - -#: [error]title -msgid "Oops!" -msgstr "" - -#: [error]default [visio]unknown_error -msgid "Unknown error" -msgstr "" - -#: [error]login_format -msgid "Invalid username format" -msgstr "" - -#: [error]password_format -msgid "Invalid password format" -msgstr "" - -#: [error]unauthorized -msgctxt "[error]unauthorized" -msgid "Your XMPP server is unauthorized" -msgstr "" - -#: [error]conflict -msgid "A Movim session is already open on an other device" -msgstr "" - -#: [error]wrong_account -msgid "Movim failed to authenticate. You entered wrong data" -msgstr "" - -#: [error]mechanism -msgid "Authentication mechanism not supported by Movim" -msgstr "" - -#: [error]fail_auth -msgid "The XMPP authentification failed" -msgstr "" - -#: [account]title [accounts]accounts_title -msgid "Accounts" -msgstr "" - -#: [form]username -msgid "My address" -msgstr "" - -#: [form]create_one -msgid "Create one !" -msgstr "" - -#: [form]another_account -msgid "Another account" -msgstr "" - -#: [form]no_account -msgid "No account yet ?" -msgstr "" - -#: [form]whitelist.info -msgid "You can login with accounts from theses servers" -msgstr "" - -#: [form]connected -msgid "Connected" -msgstr "" - -#: [form]population -msgid "Population" -msgstr "" - -#: [menu]empty_title -msgid "No news yet..." -msgstr "" - -#: [menu]empty -msgid "Welcome on your news feed, here you will see all the posts published by your contacts and in the groups you have subscribed." -msgstr "" - -#: [menu]refresh -msgid "Refreshing all the streams" -msgstr "" - -#: [menu]public -msgid "This post is public" -msgstr "" - -#: [affiliations]title -msgid "Manage your members" -msgstr "" - -#: [affiliations]get -msgid "Get the members" -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 "" - -#: [notifs]title -msgid "Pending Invitations" -msgstr "" - -#: [notifs]wants_to_talk -msgid "%s wants to talk with you" -msgstr "" - -#: [notifs]manage -msgid "Manage" -msgstr "" - -#: [post]news_feed -msgid "News Feed" -msgstr "" - -#: [post]placeholder -msgid "Discover and register to the groups you are interested in" -msgstr "" - -#: [post]preview [page]preview -msgid "Preview" -msgstr "" - -#: [post]help [page]help -msgid "Help" -msgstr "" - -#: [post]help_more -msgid "More help" -msgstr "" - -#: [post]help_manual -msgid "Markdown syntax manual" -msgstr "" - -#: [post]title -msgid "Title" -msgstr "" - -#: [post]content -msgid "Content" -msgstr "" - -#: [post]link -msgid "Link" -msgstr "" - -#: [post]tags -msgid "Tags" -msgstr "" - -#: [post]valid_url [publish]valid_url -msgid "Please enter a valid url" -msgstr "" - -#: [post]no_content_preview [publish]no_content_preview -msgid "No content to preview" -msgstr "" - -#: [post]no_content [publish]no_content [post]empty -msgid "No content" -msgstr "" - -#: [post]published -msgid "Post published" -msgstr "" - -#: [post]deleted -msgid "Post deleted" -msgstr "" - -#: [post]gallery -msgid "This picture will be added to your gallery" -msgstr "" - -#: [post]hot -msgid "What's Hot" -msgstr "" - -#: [post]hot_text -msgid "Posts recently published in Groups that you are not subscribed (yet)" -msgstr "" - -#: [post]new [publish]new -msgid "New post" -msgstr "" - -#: [post]embed_tip -msgid "You can also use services like Imgur or Flickr to host your picture and paste the link here." -msgstr "" - -#: [post]repost -msgid "This is a re-post from %s" -msgstr "" - -#: [post]repost_profile -msgid "See %s profile" -msgstr "" - -#: [post]public -msgid "Publish this post publicly?" -msgstr "" - -#: [post]blog_add -msgid "Post published on your blog" -msgstr "" - -#: [post]blog_remove -msgid "Post removed from your blog" -msgstr "" - -#: [post]delete_title [post]delete -msgid "Delete this post" -msgstr "" - -#: [post]delete_text -msgid "You are going to delete this post, please confirm your action" -msgstr "" - -#: [post]comments_disabled -msgid "Comments disabled" -msgstr "" - -#: [post]comment_published -msgid "Comment published" -msgstr "" - -#: [status]disconnect -msgid "Disconnect" -msgstr "" - -#: [status]here -msgid "Your status here !" -msgstr "" - -#: [status]updated -msgid "Status updated" -msgstr "" - -#: [status]status -msgid "Status" -msgstr "" - -#: [status]presence -msgid "Presence" -msgstr "" - -#: [status]online -msgid "Online with Movim" -msgstr "" - -#: [publish]title -msgid "Publish" -msgstr "" - -#: [publish]attach -msgid "Add a file or a picture to your post" -msgstr "" - -#: [publish]no_publication -msgid "You cannot publish a post on this Group" -msgstr "" - -#: [publish]form_filled -msgid "Some fields have been filled in. Do you still want to go back and loose their content?" -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 "" - -#: [rooms]empty_text1 -msgid "You don't have any chatroom yet." -msgstr "" - -#: [rooms]empty_text2 -msgid "Add one by clicking on the add button in the header." -msgstr "" - -#: [chatrooms]title -msgid "Chatrooms" -msgstr "" - -#: [chatrooms]name_placeholder -msgid "My Favorite Room" -msgstr "" - -#: [chatrooms]users -msgid "Users in the room" -msgstr "" - -#: [chatrooms]bad_nickname -msgid "Please enter a correct nickname (2 to 40 characters)" -msgstr "" - -#: [room]anonymous_title -msgid "Public chatroom" -msgstr "" - -#: [room]no_room -msgid "Please provide a room address" -msgstr "" - -#: [room]anonymous_text1 -msgid "You are currently logued as an anonymous user." -msgstr "" - -#: [room]anonymous_text2 -msgid "You can join using your own account or create one on the login page by loging out using the cross in the top-right corner." -msgstr "" - -#: [room]anonymous_login -msgid "Login on %s" -msgstr "" - -#: [room]nick -msgid "Your nickname" -msgstr "" - -#: [roster]ungrouped -msgid "Ungrouped" -msgstr "" - -#: [roster]show_disconnected -msgid "Show disconnected contacts" -msgstr "" - -#: [roster]hide_disconnected -msgid "Hide disconnected contacts" -msgstr "" - -#: [roster]show_group -msgid "Show group %s" -msgstr "" - -#: [roster]hide_group -msgid "Hide group %s" -msgstr "" - -#: [roster]jid_error -msgid "Please enter a valid Jabber ID" -msgstr "" - -#: [roster]no_contacts_title -msgid "No contacts ?" -msgstr "" - -#: [roster]no_contacts_text -msgid "You can add one using the + button bellow" -msgstr "" - -#: [roster]show_hide -msgid "Show/Hide" -msgstr "" - -#: [roster]add_contact_info1 -msgid "Enter the Jabber ID of your contact." -msgstr "" - -#: [roster]add_contact_info2 -msgid "Press enter to validate." -msgstr "" - -#: [roster]jid -msgid "JID" -msgstr "" - -#: [roster]results -msgid "Results" -msgstr "" - -#: [roster]added -msgid "Contact added" -msgstr "" - -#: [roster]deleted -msgid "Contact deleted" -msgstr "" - -#: [roster]search +#: ../cache/locales.php:220 ../cache/locales.php:402 msgid "Search" msgstr "" -#: [share]error +#: ../cache/locales.php:221 +msgid "Go on the Chat page" +msgstr "" + +#: ../cache/locales.php:222 +msgid "Read all theses articles on the News page" +msgstr "" + +#: ../cache/locales.php:223 +msgid "Visit your public blog" +msgstr "" + +#: ../cache/locales.php:224 +msgid "See your public posts and share them with all your contacts" +msgstr "" + +#: ../cache/locales.php:226 +msgid "Universal share button" +msgstr "" + +#: ../cache/locales.php:227 +msgid "" +"Bookmark or drag and drop the following button in your toolbar and use it on " +"all the pages you want to share on Movim" +msgstr "" + +#: ../cache/locales.php:228 +msgid "Share on Movim" +msgstr "" + +#: ../cache/locales.php:229 +msgid "Frequently Asked Questions" +msgstr "" + +#: ../cache/locales.php:230 +msgid "What do the little banners refer to ?" +msgstr "" + +#: ../cache/locales.php:231 +msgid "" +"Thanks to these five little banners, you can quickly identitfy the level of " +"confdentiality applied to the information you provide." +msgstr "" + +#: ../cache/locales.php:232 +msgid "White, only you can see the information" +msgstr "" + +#: ../cache/locales.php:233 +msgid "Green, you have chosen some contacts who can see your information" +msgstr "" + +#: ../cache/locales.php:234 +msgid "Orange, all your contact list can see your information" +msgstr "" + +#: ../cache/locales.php:235 +msgid "Red, everybody in the XMPP network can see your information" +msgstr "" + +#: ../cache/locales.php:236 +msgid "Black, the whole Internet can see your information" +msgstr "" + +#: ../cache/locales.php:237 +msgid "Looking for some documentation ?" +msgstr "" + +#: ../cache/locales.php:238 +msgid "Read the Wiki" +msgstr "" + +#: ../cache/locales.php:239 +msgid "Talk with us by email ?" +msgstr "" + +#: ../cache/locales.php:240 +msgid "Join the Mailing List" +msgstr "" + +#: ../cache/locales.php:241 +msgid "Chat with the team ?" +msgstr "" + +#: ../cache/locales.php:242 +msgid "Join the Chatroom" +msgstr "" + +#: ../cache/locales.php:243 +msgid "Location node created" +msgstr "" + +#: ../cache/locales.php:244 +msgid "Bookmark node created" +msgstr "" + +#: ../cache/locales.php:245 +msgid "Profile node created" +msgstr "" + +#: ../cache/locales.php:246 +msgid "Avatar node created" +msgstr "" + +#: ../cache/locales.php:247 +msgid "Subscriptions node created" +msgstr "" + +#: ../cache/locales.php:248 +msgid "Microblog node created" +msgstr "" + +#: ../cache/locales.php:249 +msgid "Location" +msgstr "" + +#: ../cache/locales.php:250 +msgid "Wrong position" +msgstr "" + +#: ../cache/locales.php:251 +msgid "Location updated" +msgstr "" + +#: ../cache/locales.php:252 +msgid "Update my position" +msgstr "" + +#: ../cache/locales.php:253 +msgid "Wrong username" +msgstr "" + +#: ../cache/locales.php:254 +msgid "Invalid JID" +msgstr "" + +#: ../cache/locales.php:255 +msgid "Empty Challenge from the server" +msgstr "" + +#: ../cache/locales.php:256 +msgid "XMPP Domain error, your account is not a correct Jabber ID" +msgstr "" + +#: ../cache/locales.php:257 +msgid "Some data are missing !" +msgstr "" + +#: ../cache/locales.php:258 +msgid "Wrong password" +msgstr "" + +#: ../cache/locales.php:259 +msgid "Internal server error" +msgstr "" + +#: ../cache/locales.php:260 +msgid "Session error" +msgstr "" + +#: ../cache/locales.php:261 +msgid "Account successfully created" +msgstr "" + +#: ../cache/locales.php:262 ../cache/locales.php:271 +msgid "Your XMPP server is unauthorized" +msgstr "" + +#: ../cache/locales.php:263 +msgid "The server takes too much time to respond" +msgstr "" + +#: ../cache/locales.php:264 +msgid "Your web browser is too old to use with Movim." +msgstr "" + +#: ../cache/locales.php:265 +msgid "" +"Movim cannot talk with the server, please try again later (Websocket " +"connection error)" +msgstr "" + +#: ../cache/locales.php:266 +msgid "Impossible login" +msgstr "" + +#: ../cache/locales.php:267 +msgid "Oops!" +msgstr "" + +#: ../cache/locales.php:268 ../cache/locales.php:449 ../cache/locales.php:455 +msgid "Unknown error" +msgstr "" + +#: ../cache/locales.php:269 +msgid "Invalid username format" +msgstr "" + +#: ../cache/locales.php:270 +msgid "Invalid password format" +msgstr "" + +#: ../cache/locales.php:272 +msgid "A Movim session is already open on an other device" +msgstr "" + +#: ../cache/locales.php:273 +msgid "Movim failed to authenticate. You entered wrong data" +msgstr "" + +#: ../cache/locales.php:274 +msgid "Authentication mechanism not supported by Movim" +msgstr "" + +#: ../cache/locales.php:275 +msgid "The XMPP authentification failed" +msgstr "" + +#: ../cache/locales.php:276 +#, php-format +msgid "" +"You can login with Facebook (chat only) using %syour.id@chat.facebook.com%s " +"and your password" +msgstr "" + +#: ../cache/locales.php:277 +#, php-format +msgid "%sGmail accounts are also compatible%s but are not fully supported" +msgstr "" + +#: ../cache/locales.php:278 +msgid "You can login using your favorite Jabber account" +msgstr "" + +#: ../cache/locales.php:279 +msgid "or with our demonstration account" +msgstr "" + +#: ../cache/locales.php:280 ../cache/locales.php:435 +msgid "Accounts" +msgstr "" + +#: ../cache/locales.php:281 +msgid "My address" +msgstr "" + +#: ../cache/locales.php:283 +msgid "Create one !" +msgstr "" + +#: ../cache/locales.php:284 +msgid "No account yet ?" +msgstr "" + +#: ../cache/locales.php:285 +msgid "Another account" +msgstr "" + +#: ../cache/locales.php:286 +msgid "You can login with accounts from theses servers" +msgstr "" + +#: ../cache/locales.php:287 +msgid "Connected" +msgstr "" + +#: ../cache/locales.php:288 +msgid "Population" +msgstr "" + +#: ../cache/locales.php:289 +msgid "Bad nickname (between 4 and 40 characters)" +msgstr "" + +#: ../cache/locales.php:292 +msgid "" +"Welcome on your news feed, here you will see all the posts published in the " +"groups you have subscribed." +msgstr "" + +#: ../cache/locales.php:293 +msgid "Refreshing all the streams" +msgstr "" + +#: ../cache/locales.php:294 +msgid "This post is public" +msgstr "" + +#: ../cache/locales.php:295 +msgid "Manage your members" +msgstr "" + +#: ../cache/locales.php:296 +msgid "Get the members" +msgstr "" + +#: ../cache/locales.php:297 +msgid "Affiliations saved" +msgstr "" + +#: ../cache/locales.php:298 +msgid "Manage your subscriptions" +msgstr "" + +#: ../cache/locales.php:299 +msgid "Manage the subscriptions" +msgstr "" + +#: ../cache/locales.php:300 +msgid "Get the subscriptions" +msgstr "" + +#: ../cache/locales.php:301 +msgid "Subscriptions saved" +msgstr "" + +#: ../cache/locales.php:302 +msgid "Pending Invitations" +msgstr "" + +#: ../cache/locales.php:303 +#, php-format +msgid "%s wants to talk with you" +msgstr "" + +#: ../cache/locales.php:304 +msgid "Manage" +msgstr "" + +#: ../cache/locales.php:305 ../cache/locales.php:338 +msgid "News Feed" +msgstr "" + +#: ../cache/locales.php:306 ../cache/locales.php:339 +msgid "Discover and register to the groups you are interested in" +msgstr "" + +#: ../cache/locales.php:307 ../cache/locales.php:340 ../cache/locales.php:482 +msgid "Preview" +msgstr "" + +#: ../cache/locales.php:308 ../cache/locales.php:341 ../cache/locales.php:478 +msgid "Help" +msgstr "" + +#: ../cache/locales.php:309 ../cache/locales.php:342 +msgid "More help" +msgstr "" + +#: ../cache/locales.php:310 ../cache/locales.php:343 +msgid "Markdown syntax manual" +msgstr "" + +#: ../cache/locales.php:311 ../cache/locales.php:344 ../cache/locales.php:681 +msgid "Title" +msgstr "" + +#: ../cache/locales.php:312 ../cache/locales.php:345 +msgid "Content" +msgstr "" + +#: ../cache/locales.php:313 ../cache/locales.php:346 +msgid "Link" +msgstr "" + +#: ../cache/locales.php:314 ../cache/locales.php:347 +msgid "Tags" +msgstr "" + +#: ../cache/locales.php:315 ../cache/locales.php:348 +msgid "Please enter a valid url" +msgstr "" + +#: ../cache/locales.php:316 ../cache/locales.php:349 +msgid "No content to preview" +msgstr "" + +#: ../cache/locales.php:317 ../cache/locales.php:350 ../cache/locales.php:687 +msgid "No content" +msgstr "" + +#: ../cache/locales.php:318 ../cache/locales.php:351 +msgid "Post published" +msgstr "" + +#: ../cache/locales.php:319 ../cache/locales.php:352 +msgid "Post deleted" +msgstr "" + +#: ../cache/locales.php:320 ../cache/locales.php:353 +msgid "This picture will be added to your gallery" +msgstr "" + +#: ../cache/locales.php:321 ../cache/locales.php:354 +msgid "What's Hot" +msgstr "" + +#: ../cache/locales.php:322 ../cache/locales.php:355 +msgid "New post" +msgstr "" + +#: ../cache/locales.php:323 ../cache/locales.php:357 +msgid "" +"You can also use services like Imgur or Flickr to host your picture and " +"paste the link here." +msgstr "" + +#: ../cache/locales.php:324 +#, php-format +msgid "This is a re-post from %s" +msgstr "" + +#: ../cache/locales.php:325 +#, php-format +msgid "See %s profile" +msgstr "" + +#: ../cache/locales.php:326 +msgid "Publish this post on your public feed?" +msgstr "" + +#: ../cache/locales.php:327 +msgid "Post published on your blog" +msgstr "" + +#: ../cache/locales.php:328 +msgid "Post removed from your blog" +msgstr "" + +#: ../cache/locales.php:329 ../cache/locales.php:701 +msgid "Delete this post" +msgstr "" + +#: ../cache/locales.php:330 +msgid "You are going to delete this post, please confirm your action" +msgstr "" + +#: ../cache/locales.php:331 +msgid "Comments disabled" +msgstr "" + +#: ../cache/locales.php:332 +msgid "Comment published" +msgstr "" + +#: ../cache/locales.php:333 +msgid "Disconnect" +msgstr "" + +#: ../cache/locales.php:334 +msgid "Your status here !" +msgstr "" + +#: ../cache/locales.php:335 +msgid "Status updated" +msgstr "" + +#: ../cache/locales.php:336 +msgid "Status" +msgstr "" + +#: ../cache/locales.php:337 +msgid "Presence" +msgstr "" + +#: ../cache/locales.php:356 +msgid "Publish" +msgstr "" + +#: ../cache/locales.php:358 +msgid "You cannot publish a post on this Group" +msgstr "" + +#: ../cache/locales.php:359 +msgid "" +"Some fields have been filled in. Do you still want to go back and loose " +"their content?" +msgstr "" + +#: ../cache/locales.php:360 +msgid "Shared" +msgstr "" + +#: ../cache/locales.php:362 +#, php-format +msgid "%s has been added to your public groups" +msgstr "" + +#: ../cache/locales.php:363 +#, php-format +msgid "%s has been removed from your public groups" +msgstr "" + +#: ../cache/locales.php:364 +msgid "Add a chatroom" +msgstr "" + +#: ../cache/locales.php:365 +msgid "You don't have any chatroom yet." +msgstr "" + +#: ../cache/locales.php:366 +msgid "Add one by clicking on the add button in the header." +msgstr "" + +#: ../cache/locales.php:367 +msgid "Chatrooms" +msgstr "" + +#: ../cache/locales.php:370 +msgid "My Favorite Room" +msgstr "" + +#: ../cache/locales.php:374 +msgid "Remove a chatroom" +msgstr "" + +#: ../cache/locales.php:375 +msgid "" +"You are going to remove the following chatroom. Please confirm your action." +msgstr "" + +#: ../cache/locales.php:378 +msgid "Users in the room" +msgstr "" + +#: ../cache/locales.php:379 +msgid "Please enter a correct nickname (6 to 40 characters)" +msgstr "" + +#: ../cache/locales.php:381 +msgid "Public chatroom" +msgstr "" + +#: ../cache/locales.php:382 +msgid "Please provide a room address" +msgstr "" + +#: ../cache/locales.php:383 +msgid "You are currently logued as an anonymous user." +msgstr "" + +#: ../cache/locales.php:384 +msgid "" +"You can join using your own account or create one on the login page by " +"loging out using the cross in the top-right corner." +msgstr "" + +#: ../cache/locales.php:385 +#, php-format +msgid "Login on %s" +msgstr "" + +#: ../cache/locales.php:386 +msgid "Your nickname" +msgstr "" + +#: ../cache/locales.php:387 +msgid "Ungrouped" +msgstr "" + +#: ../cache/locales.php:388 +msgid "Show disconnected contacts" +msgstr "" + +#: ../cache/locales.php:389 +msgid "Hide disconnected contacts" +msgstr "" + +#: ../cache/locales.php:390 +#, php-format +msgid "Show group %s" +msgstr "" + +#: ../cache/locales.php:391 +#, php-format +msgid "Hide group %s" +msgstr "" + +#: ../cache/locales.php:392 +msgid "Please enter a valid Jabber ID" +msgstr "" + +#: ../cache/locales.php:393 +msgid "" +"No contacts ? You can add one using the + button bellow or going to the " +"Explore page" +msgstr "" + +#: ../cache/locales.php:394 +msgid "Show/Hide" +msgstr "" + +#: ../cache/locales.php:395 +msgid "Enter the Jabber ID of your contact." +msgstr "" + +#: ../cache/locales.php:396 +msgid "Press enter to validate." +msgstr "" + +#: ../cache/locales.php:397 +msgid "JID" +msgstr "" + +#: ../cache/locales.php:398 +msgid "Results" +msgstr "" + +#: ../cache/locales.php:399 +msgid "Contact added" +msgstr "" + +#: ../cache/locales.php:401 +msgid "Contact deleted" +msgstr "" + +#: ../cache/locales.php:403 msgid "This is not a valid url" msgstr "" -#: [share]success +#: ../cache/locales.php:404 msgid "Sharing the URL" msgstr "" -#: [statistics]title +#: ../cache/locales.php:405 msgid "Statistics" msgstr "" -#: [statistics]since +#: ../cache/locales.php:406 msgid "Since" msgstr "" -#: [statistics]sessions +#: ../cache/locales.php:407 msgid "Sessions" msgstr "" -#: [statistics]monthly_sub +#: ../cache/locales.php:409 msgid "Monthly Subscriptions" msgstr "" -#: [statistics]monthly_sub_cum +#: ../cache/locales.php:410 msgid "Monthly Subscriptions Cumulated" msgstr "" -#: [subscribe]info -msgid "Movim is a decentralized social network, before creating a new account you need to choose a server to register." +#: ../cache/locales.php:412 +msgid "" +"Movim is a decentralized social network, before creating a new account you " +"need to choose a server to register." msgstr "" -#: [subscribe]server_question +#: ../cache/locales.php:413 msgid "Your server here ?" msgstr "" -#: [subscribe]server_contact +#: ../cache/locales.php:414 msgid "Contact us to add yours to the officially supported servers list" msgstr "" -#: [feed]nope +#: ../cache/locales.php:416 msgid "No public feed for this contact" msgstr "" -#: [feed]nope_contact +#: ../cache/locales.php:417 msgid "No contact specified" msgstr "" -#: [upload]title -msgid "Upload a file" -msgstr "" - -#: [upload]choose -msgid "Choose a file to upload" -msgstr "" - -#: [vcard]title [page]profile +#: ../cache/locales.php:418 ../cache/locales.php:473 msgid "Profile" msgstr "" -#: [vcard]updated +#: ../cache/locales.php:419 msgid "Profile Updated" msgstr "" -#: [vcard]not_updated +#: ../cache/locales.php:420 msgid "Profile Not Updated" msgstr "" -#: [vcard]public +#: ../cache/locales.php:421 msgid "Your profile is now public" msgstr "" -#: [vcard]restricted +#: ../cache/locales.php:422 msgid "Your profile is now restricted" msgstr "" -#: [general]nickname -msgctxt "[general]nickname" -msgid "Nickname" -msgstr "" - -#: [accounts]twitter +#: ../cache/locales.php:436 msgid "Twitter" msgstr "" -#: [accounts]skype +#: ../cache/locales.php:437 msgid "Skype" msgstr "" -#: [accounts]yahoo +#: ../cache/locales.php:438 msgid "Yahoo" msgstr "" -#: [accounts]accounts_nickname -msgctxt "[accounts]accounts_nickname" -msgid "Nickname" -msgstr "" - -#: [accounts]accounts_yahoo -msgid "Yahoo Account" -msgstr "" - -#: [privacy]privacy_title +#: ../cache/locales.php:439 msgid "Privacy Level" msgstr "" -#: [privacy]privacy_question +#: ../cache/locales.php:440 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." +#: ../cache/locales.php:441 +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." msgstr "" -#: [save]submit [button]submit -msgid "Submit" -msgstr "" - -#: [save]reset [button]reset -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 +#: ../cache/locales.php:442 msgid "Call" msgstr "" -#: [visio]hang_up +#: ../cache/locales.php:443 msgid "Hang up" msgstr "" -#: [visio]connection +#: ../cache/locales.php:444 msgid "Connection" msgstr "" -#: [global]no_js +#: ../cache/locales.php:445 ../cache/locales.php:451 +msgid "Hung up" +msgstr "" + +#: ../cache/locales.php:446 ../cache/locales.php:452 +msgid "Your contact is busy" +msgstr "" + +#: ../cache/locales.php:447 ../cache/locales.php:453 +msgid "Declined" +msgstr "" + +#: ../cache/locales.php:448 ../cache/locales.php:454 +msgid "Remote application incompatible" +msgstr "" + +#: ../cache/locales.php:450 ../cache/locales.php:456 +msgid "Is calling you" +msgstr "" + +#: ../cache/locales.php:457 msgid "You don't have javascript enabled. Good luck with that." msgstr "" -#: [global]description -msgid "Movim is a kickass distributed social networking platform that protect your privacy an comes with a set of awesome features." +#: ../cache/locales.php:458 +msgid "" +"Movim is a kickass distributed social networking platform that protect your " +"privacy an comes with a set of awesome features." msgstr "" -#: [page]administration +#: ../cache/locales.php:459 msgid "Administration" msgstr "" -#: [page]home +#: ../cache/locales.php:460 msgid "Home" msgstr "" -#: [page]discover +#: ../cache/locales.php:461 msgid "Discover" msgstr "" -#: [page]explore +#: ../cache/locales.php:462 msgid "Explore" msgstr "" -#: [page]account_creation +#: ../cache/locales.php:463 msgid "Account Creation" msgstr "" -#: [page]avatar +#: ../cache/locales.php:464 +msgid "News" +msgstr "" + +#: ../cache/locales.php:465 msgid "Avatar" msgstr "" -#: [page]chats +#: ../cache/locales.php:467 msgid "Chats" msgstr "" -#: [page]server +#: ../cache/locales.php:470 msgid "Server" msgstr "" -#: [page]public_groups +#: ../cache/locales.php:471 msgid "Public Groups" msgstr "" -#: [page]viewer +#: ../cache/locales.php:472 msgid "Viewer" msgstr "" -#: [page]media +#: ../cache/locales.php:474 msgid "Media" msgstr "" -#: [page]blog +#: ../cache/locales.php:475 msgid "Blog" msgstr "" -#: [page]about +#: ../cache/locales.php:476 msgid "About" msgstr "" -#: [page]login +#: ../cache/locales.php:477 msgid "Login" msgstr "" -#: [page]feed +#: ../cache/locales.php:479 msgid "Feed" msgstr "" -#: [page]gallery +#: ../cache/locales.php:481 msgid "Gallery" msgstr "" -#: [page]visio +#: ../cache/locales.php:483 msgid "Visio-conference" msgstr "" -#: [page]pods +#: ../cache/locales.php:484 msgid "Pods" msgstr "" -#: [page]share +#: ../cache/locales.php:485 msgid "Share" msgstr "" -#: [page]room +#: ../cache/locales.php:486 msgid "Room" msgstr "" -#: [error]error +#: ../cache/locales.php:487 +#, php-format msgid "Error: %s" msgstr "" -#: [error]cannot_load_file +#: ../cache/locales.php:488 +#, php-format msgid "Cannot load file '%s'" msgstr "" -#: [error]route +#: ../cache/locales.php:489 +#, php-format msgid "Route error, please set all the parameters for the page %s" msgstr "" -#: [error]widget_load_error +#: ../cache/locales.php:490 +#, php-format msgid "Requested widget '%s' doesn't exist." msgstr "" -#: [error]widget_call_error +#: ../cache/locales.php:491 +#, php-format msgid "Requested event '%s' not registered." msgstr "" -#: [error]whoops +#: ../cache/locales.php:492 msgid "Whoops!" msgstr "" -#: [error]media_not_found +#: ../cache/locales.php:493 msgid "It seem that you don't have any pictures here?" msgstr "" -#: [error]media_ask_upload +#: ../cache/locales.php:494 msgid "You can try to upload a couple by going to the Media page" msgstr "" -#: [title]about +#: ../cache/locales.php:495 +#, php-format msgid "%s - About" msgstr "" -#: [title]account +#: ../cache/locales.php:496 +#, php-format msgid "%s - Account" msgstr "" -#: [title]administration +#: ../cache/locales.php:497 +#, php-format msgid "%s - Administration Panel" msgstr "" -#: [title]blog +#: ../cache/locales.php:498 +#, php-format msgid "%s - Blog" msgstr "" -#: [title]configuration +#: ../cache/locales.php:499 +#, php-format msgid "%s - Configuration" msgstr "" -#: [title]discover +#: ../cache/locales.php:500 +#, php-format msgid "%s - Discover" msgstr "" -#: [title]explore +#: ../cache/locales.php:501 +#, php-format msgid "%s - Explore" msgstr "" -#: [title]help +#: ../cache/locales.php:502 +#, php-format msgid "%s - Help Page" msgstr "" -#: [title]login +#: ../cache/locales.php:503 +#, php-format msgid "%s - Login to Movim" msgstr "" -#: [title]main +#: ../cache/locales.php:504 +#, php-format msgid "%s - Welcome to Movim" msgstr "" -#: [title]media +#: ../cache/locales.php:505 +#, php-format msgid "%s - Media" msgstr "" -#: [title]news +#: ../cache/locales.php:506 +#, php-format msgid "%s - News" msgstr "" -#: [title]node_configuration +#: ../cache/locales.php:507 +#, php-format msgid "%s - Group Configuration" msgstr "" -#: [title]node +#: ../cache/locales.php:508 +#, php-format msgid "%s - Group" msgstr "" -#: [title]not_found +#: ../cache/locales.php:509 +#, php-format msgid "%s - 404" msgstr "" -#: [title]profile +#: ../cache/locales.php:510 +#, php-format msgid "%s - Profile" msgstr "" -#: [title]server +#: ../cache/locales.php:511 +#, php-format msgid "%s - Server" msgstr "" -#: [button]validate +#: ../cache/locales.php:512 msgid "Validate" msgstr "" -#: [button]refresh +#: ../cache/locales.php:513 msgid "Refresh" msgstr "" -#: [button]add +#: ../cache/locales.php:514 msgid "Add" msgstr "" -#: [button]delete +#: ../cache/locales.php:515 msgid "Delete" msgstr "" -#: [button]cancel +#: ../cache/locales.php:516 +msgid "Remove" +msgstr "" + +#: ../cache/locales.php:517 msgid "Cancel" msgstr "" -#: [button]close +#: ../cache/locales.php:518 msgid "Close" msgstr "" -#: [button]update +#: ../cache/locales.php:519 msgid "Update" msgstr "" -#: [button]updating +#: ../cache/locales.php:520 msgid "Updating" msgstr "" -#: [button]submitting +#: ../cache/locales.php:521 +msgid "Submit" +msgstr "" + +#: ../cache/locales.php:522 msgid "Submitting" msgstr "" -#: [button]register +#: ../cache/locales.php:523 +msgid "Reset" +msgstr "" + +#: ../cache/locales.php:524 msgid "Register" msgstr "" -#: [button]unregister +#: ../cache/locales.php:525 msgid "Unregister" msgstr "" -#: [button]save +#: ../cache/locales.php:526 msgid "Save" msgstr "" -#: [button]clear +#: ../cache/locales.php:527 msgid "Clear" msgstr "" -#: [button]upload +#: ../cache/locales.php:528 msgid "Upload" msgstr "" -#: [button]come_in +#: ../cache/locales.php:529 msgid "Come in!" msgstr "" -#: [button]connecting +#: ../cache/locales.php:530 msgid "Connecting" msgstr "" -#: [button]bool_yes +#: ../cache/locales.php:531 msgid "Yes" msgstr "" -#: [button]bool_no +#: ../cache/locales.php:532 msgid "No" msgstr "" -#: [button]return +#: ../cache/locales.php:534 msgid "Return" msgstr "" -#: [button]accept +#: ../cache/locales.php:535 msgid "Accept" msgstr "" -#: [button]refuse +#: ../cache/locales.php:536 msgid "Refuse" msgstr "" -#: [button]next +#: ../cache/locales.php:537 msgid "Next" msgstr "" -#: [button]previous +#: ../cache/locales.php:538 msgid "Previous" msgstr "" -#: [step]step +#: ../cache/locales.php:539 +#, php-format msgid "Step %s" msgstr "" -#: [day]title +#: ../cache/locales.php:542 msgid "Day" msgstr "" -#: [day]monday +#: ../cache/locales.php:543 msgid "Monday" msgstr "" -#: [day]tuesday +#: ../cache/locales.php:544 msgid "Tuesday" msgstr "" -#: [day]wednesday +#: ../cache/locales.php:545 msgid "Wednesday" msgstr "" -#: [day]thursday +#: ../cache/locales.php:546 msgid "Thursday" msgstr "" -#: [day]friday +#: ../cache/locales.php:547 msgid "Friday" msgstr "" -#: [day]saturday +#: ../cache/locales.php:548 msgid "Saturday" msgstr "" -#: [day]sunday +#: ../cache/locales.php:549 msgid "Sunday" msgstr "" -#: [gender]nil -msgctxt "[gender]nil" +#: ../cache/locales.php:550 ../cache/locales.php:559 msgid "None" msgstr "" -#: [gender]male +#: ../cache/locales.php:551 msgid "Male" msgstr "" -#: [gender]female +#: ../cache/locales.php:552 msgid "Female" msgstr "" -#: [gender]other +#: ../cache/locales.php:553 msgid "Other" msgstr "" -#: [client]bot +#: ../cache/locales.php:554 msgid "Bot" msgstr "" -#: [client]desktop +#: ../cache/locales.php:555 msgid "Desktop" msgstr "" -#: [client]phone +#: ../cache/locales.php:556 msgid "Phone" msgstr "" -#: [client]web +#: ../cache/locales.php:557 msgid "Web" msgstr "" -#: [client]registered +#: ../cache/locales.php:558 msgid "Registered" msgstr "" -#: [marital]nil -msgctxt "[marital]nil" -msgid "None" -msgstr "" - -#: [marital]single +#: ../cache/locales.php:560 msgid "Single" msgstr "" -#: [marital]relationship +#: ../cache/locales.php:561 msgid "In a relationship" msgstr "" -#: [marital]married +#: ../cache/locales.php:562 msgid "Married" msgstr "" -#: [marital]divorced +#: ../cache/locales.php:563 msgid "Divorced" msgstr "" -#: [marital]widowed +#: ../cache/locales.php:564 msgid "Widowed" msgstr "" -#: [marital]cohabiting +#: ../cache/locales.php:565 msgid "Cohabiting" msgstr "" -#: [marital]union +#: ../cache/locales.php:566 msgid "Civil Union" msgstr "" -#: [flag]white +#: ../cache/locales.php:567 msgid "Not shared" msgstr "" -#: [flag]green +#: ../cache/locales.php:568 msgid "Shared with one contact" msgstr "" -#: [flag]orange +#: ../cache/locales.php:569 msgid "Shared with all contacts" msgstr "" -#: [flag]red +#: ../cache/locales.php:570 msgid "Shared with the XMPP network" msgstr "" -#: [flag]black +#: ../cache/locales.php:571 msgid "Shared with the whole Internet" msgstr "" -#: [presence]online +#: ../cache/locales.php:572 msgid "Online" msgstr "" -#: [presence]away +#: ../cache/locales.php:573 msgid "Away" msgstr "" -#: [presence]dnd +#: ../cache/locales.php:574 msgid "Do Not Disturb" msgstr "" -#: [presence]xa +#: ../cache/locales.php:575 msgid "Extended Away" msgstr "" -#: [presence]offline +#: ../cache/locales.php:576 msgid "Offline" msgstr "" -#: [presence]error +#: ../cache/locales.php:577 msgid "Error" msgstr "" -#: [mood]afraid +#: ../cache/locales.php:578 msgid "afraid" msgstr "" -#: [mood]amazed +#: ../cache/locales.php:579 msgid "amazed" msgstr "" -#: [mood]amorous +#: ../cache/locales.php:580 msgid "amorous" msgstr "" -#: [mood]angry +#: ../cache/locales.php:581 msgid "angry" msgstr "" -#: [mood]annoyed +#: ../cache/locales.php:582 msgid "annoyed" msgstr "" -#: [mood]anxious +#: ../cache/locales.php:583 msgid "anxious" msgstr "" -#: [mood]aroused +#: ../cache/locales.php:584 msgid "aroused" msgstr "" -#: [mood]ashamed +#: ../cache/locales.php:585 msgid "ashamed" msgstr "" -#: [mood]bored +#: ../cache/locales.php:586 msgid "bored" msgstr "" -#: [mood]brave +#: ../cache/locales.php:587 msgid "brave" msgstr "" -#: [mood]calm +#: ../cache/locales.php:588 msgid "calm" msgstr "" -#: [mood]cautious +#: ../cache/locales.php:589 msgid "cautious" msgstr "" -#: [mood]cold +#: ../cache/locales.php:590 msgid "cold" msgstr "" -#: [mood]confident +#: ../cache/locales.php:591 msgid "confident" msgstr "" -#: [mood]confused +#: ../cache/locales.php:592 msgid "confused" msgstr "" -#: [mood]contemplative +#: ../cache/locales.php:593 msgid "contemplative" msgstr "" -#: [mood]contented +#: ../cache/locales.php:594 msgid "contented" msgstr "" -#: [mood]cranky +#: ../cache/locales.php:595 msgid "cranky" msgstr "" -#: [mood]crazy +#: ../cache/locales.php:596 msgid "crazy" msgstr "" -#: [mood]creative +#: ../cache/locales.php:597 msgid "creative" msgstr "" -#: [mood]curious +#: ../cache/locales.php:598 msgid "curious" msgstr "" -#: [mood]dejected +#: ../cache/locales.php:599 msgid "dejected" msgstr "" -#: [mood]depressed +#: ../cache/locales.php:600 msgid "depressed" msgstr "" -#: [mood]disappointed +#: ../cache/locales.php:601 msgid "disappointed" msgstr "" -#: [mood]disgusted +#: ../cache/locales.php:602 msgid "disgusted" msgstr "" -#: [mood]dismayed +#: ../cache/locales.php:603 msgid "dismayed" msgstr "" -#: [mood]distracted +#: ../cache/locales.php:604 msgid "distracted" msgstr "" -#: [mood]embarrassed +#: ../cache/locales.php:605 msgid "embarrassed" msgstr "" -#: [mood]envious +#: ../cache/locales.php:606 msgid "envious" msgstr "" -#: [mood]excited +#: ../cache/locales.php:607 msgid "excited" msgstr "" -#: [mood]flirtatious +#: ../cache/locales.php:608 msgid "flirtatious" msgstr "" -#: [mood]frustated +#: ../cache/locales.php:609 msgid "frustated" msgstr "" -#: [mood]grateful +#: ../cache/locales.php:610 msgid "grateful" msgstr "" -#: [mood]grieving +#: ../cache/locales.php:611 msgid "grieving" msgstr "" -#: [mood]grumpy +#: ../cache/locales.php:612 msgid "grumpy" msgstr "" -#: [mood]guilty +#: ../cache/locales.php:613 msgid "guilty" msgstr "" -#: [mood]happy +#: ../cache/locales.php:614 msgid "happy" msgstr "" -#: [mood]hopeful +#: ../cache/locales.php:615 msgid "hopeful" msgstr "" -#: [mood]hot +#: ../cache/locales.php:616 msgid "hot" msgstr "" -#: [mood]humbled +#: ../cache/locales.php:617 msgid "humbled" msgstr "" -#: [mood]humiliated +#: ../cache/locales.php:618 msgid "humiliated" msgstr "" -#: [mood]hungry +#: ../cache/locales.php:619 msgid "hungry" msgstr "" -#: [mood]hurt +#: ../cache/locales.php:620 msgid "hurt" msgstr "" -#: [mood]impressed +#: ../cache/locales.php:621 msgid "impressed" msgstr "" -#: [mood]in_awe +#: ../cache/locales.php:622 msgid "in awe" msgstr "" -#: [mood]in_love +#: ../cache/locales.php:623 msgid "in love" msgstr "" -#: [mood]indignant +#: ../cache/locales.php:624 msgid "indignant" msgstr "" -#: [mood]interested +#: ../cache/locales.php:625 msgid "interested" msgstr "" -#: [mood]intoxicated +#: ../cache/locales.php:626 msgid "intoxicated" msgstr "" -#: [mood]invincible +#: ../cache/locales.php:627 msgid "invincible" msgstr "" -#: [mood]jealous +#: ../cache/locales.php:628 msgid "jealous" msgstr "" -#: [mood]lonely +#: ../cache/locales.php:629 msgid "lonely" msgstr "" -#: [mood]lost +#: ../cache/locales.php:630 msgid "lost" msgstr "" -#: [mood]lucky +#: ../cache/locales.php:631 msgid "lucky" msgstr "" -#: [mood]mean +#: ../cache/locales.php:632 msgid "mean" msgstr "" -#: [mood]moody +#: ../cache/locales.php:633 msgid "moody" msgstr "" -#: [mood]nervous +#: ../cache/locales.php:634 msgid "nervous" msgstr "" -#: [mood]neutral +#: ../cache/locales.php:635 msgid "neutral" msgstr "" -#: [mood]offended +#: ../cache/locales.php:636 msgid "offended" msgstr "" -#: [mood]outraged +#: ../cache/locales.php:637 msgid "outraged" msgstr "" -#: [mood]playful +#: ../cache/locales.php:638 msgid "playful" msgstr "" -#: [mood]proud +#: ../cache/locales.php:639 msgid "proud" msgstr "" -#: [mood]relaxed +#: ../cache/locales.php:640 msgid "relaxed" msgstr "" -#: [mood]relieved +#: ../cache/locales.php:641 msgid "relieved" msgstr "" -#: [mood]restless +#: ../cache/locales.php:642 +msgid "remorseful" +msgstr "" + +#: ../cache/locales.php:643 msgid "restless" msgstr "" -#: [mood]sad +#: ../cache/locales.php:644 msgid "sad" msgstr "" -#: [mood]sarcastic +#: ../cache/locales.php:645 msgid "sarcastic" msgstr "" -#: [mood]satisfied +#: ../cache/locales.php:646 msgid "satisfied" msgstr "" -#: [mood]serious +#: ../cache/locales.php:647 msgid "serious" msgstr "" -#: [mood]shocked +#: ../cache/locales.php:648 msgid "shocked" msgstr "" -#: [mood]shy +#: ../cache/locales.php:649 msgid "shy" msgstr "" -#: [mood]sick +#: ../cache/locales.php:650 msgid "sick" msgstr "" -#: [mood]sleepy +#: ../cache/locales.php:651 msgid "sleepy" msgstr "" -#: [mood]spontaneous +#: ../cache/locales.php:652 msgid "spontaneous" msgstr "" -#: [mood]stressed +#: ../cache/locales.php:653 msgid "stressed" msgstr "" -#: [mood]strong +#: ../cache/locales.php:654 msgid "strong" msgstr "" -#: [mood]surprised +#: ../cache/locales.php:655 msgid "surprised" msgstr "" -#: [mood]thankful +#: ../cache/locales.php:656 msgid "thankful" msgstr "" -#: [mood]thirsty +#: ../cache/locales.php:657 msgid "thirsty" msgstr "" -#: [mood]tired +#: ../cache/locales.php:658 msgid "tired" msgstr "" -#: [mood]undefined +#: ../cache/locales.php:659 msgid "undefined" msgstr "" -#: [mood]weak +#: ../cache/locales.php:660 msgid "weak" msgstr "" -#: [mood]worried +#: ../cache/locales.php:661 msgid "worried" msgstr "" -#: [month]title +#: ../cache/locales.php:662 msgid "Month" msgstr "" -#: [month]january +#: ../cache/locales.php:663 msgid "January" msgstr "" -#: [month]february +#: ../cache/locales.php:664 msgid "February" msgstr "" -#: [month]march +#: ../cache/locales.php:665 msgid "March" msgstr "" -#: [month]april +#: ../cache/locales.php:666 msgid "April" msgstr "" -#: [month]may +#: ../cache/locales.php:667 msgid "May" msgstr "" -#: [month]june +#: ../cache/locales.php:668 msgid "June" msgstr "" -#: [month]july +#: ../cache/locales.php:669 msgid "July" msgstr "" -#: [month]august +#: ../cache/locales.php:670 msgid "August" msgstr "" -#: [month]september +#: ../cache/locales.php:671 msgid "September" msgstr "" -#: [month]october +#: ../cache/locales.php:672 msgid "October" msgstr "" -#: [month]november +#: ../cache/locales.php:673 msgid "November" msgstr "" -#: [month]december +#: ../cache/locales.php:674 msgid "December" msgstr "" -#: [year]title +#: ../cache/locales.php:675 msgid "Year" msgstr "" -#: [date]today +#: ../cache/locales.php:676 msgid "Today" msgstr "" -#: [date]tomorrow +#: ../cache/locales.php:677 msgid "Tomorrow" msgstr "" -#: [date]yesterday +#: ../cache/locales.php:678 msgid "Yesterday" msgstr "" -#: [date]ago -msgid "%d days ago" +#: ../cache/locales.php:679 +#, php-format +msgid " %d days ago" msgstr "" -#: [date]day +#: ../cache/locales.php:680 msgid "day" msgstr "" -#: [post]whats_new +#: ../cache/locales.php:682 msgid "What's new ?" msgstr "" -#: [post]place +#: ../cache/locales.php:683 msgid "Place" msgstr "" -#: [post]by +#: ../cache/locales.php:684 msgid "by" msgstr "" -#: [post]geolocalisation +#: ../cache/locales.php:685 msgid "Geolocalisation" msgstr "" -#: [post]email +#: ../cache/locales.php:686 msgid "email" msgstr "" -#: [post]no_comments +#: ../cache/locales.php:688 msgid "No comments yet" msgstr "" -#: [post]no_comments_stream +#: ../cache/locales.php:689 msgid "No comments stream" msgstr "" -#: [post]no_load +#: ../cache/locales.php:690 msgid "Your feed cannot be loaded." msgstr "" -#: [post]older +#: ../cache/locales.php:691 msgid "Get older posts" msgstr "" -#: [post]new_items +#: ../cache/locales.php:692 +#, php-format msgid "%s new items" msgstr "" -#: [post]comment_error +#: ../cache/locales.php:693 msgid "Comment publication error" msgstr "" -#: [post]comments_older +#: ../cache/locales.php:694 msgid "Show the older comments" msgstr "" -#: [post]comments_loading -msgid "Loading comments..." +#: ../cache/locales.php:695 +msgid "Loading comments ..." msgstr "" -#: [post]comments_get +#: ../cache/locales.php:696 msgid "Get the comments" msgstr "" -#: [post]comment_add +#: ../cache/locales.php:697 msgid "Add a comment" msgstr "" -#: [post]share +#: ../cache/locales.php:698 msgid "Share with" msgstr "" -#: [post]share_everyone +#: ../cache/locales.php:699 msgid "Everyone" msgstr "" -#: [post]share_your_contacts +#: ../cache/locales.php:700 msgid "Your contacts" msgstr "" -#: [post]updated +#: ../cache/locales.php:702 msgid "Updated" msgstr "" -#: [post]content_not_found +#: ../cache/locales.php:703 msgid "Content not found" msgstr "" -#: [post]default_title +#: ../cache/locales.php:704 msgid "Contact publication" msgstr "" -#: [post]comments +#: ../cache/locales.php:705 msgid "Comments" msgstr "" -#: [api]error +#: ../cache/locales.php:706 msgid "The API is not reachable, try again later" msgstr "" -#: [field]type_here +#: ../cache/locales.php:707 msgid "Type here" msgstr "" diff --git a/sources/locales/lv.po b/sources/locales/lv.po index e6e3571..36d63e7 100644 --- a/sources/locales/lv.po +++ b/sources/locales/lv.po @@ -3,2722 +3,2588 @@ # This file is distributed under the same license as the movim package. # FIRST AUTHOR , 2014. # -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/About/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Account/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/AccountNext/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/AdHoc/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/AdminDB/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/AdminMain/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/AdminTest/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Api/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Avatar/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Blog/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Bookmark/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Chat/locales.ini -#. #-#-#-#-# 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 -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Group/locales.ini -#. #-#-#-#-# 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 -#. #-#-#-#-# 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 -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Presence/locales.ini -#. #-#-#-#-# 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 -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Share/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Statistics/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Subscribe/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Syndication/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Upload/locales.ini -#. #-#-#-#-# 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-08-20 15:17+0200\n" +"POT-Creation-Date: 2015-06-08 22:06+0200\n" "PO-Revision-Date: 2015-06-09 12:19+0000\n" "Last-Translator: Jānis Marks Gailis \n" "Language-Team: Latvian \n" -"Language: lv\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2015-06-18 21:08+0000\n" "X-Generator: Launchpad (build 17570)\n" +"Language: lv\n" -#: [about]thanks +#: ../cache/locales.php:2 msgid "Thanks" msgstr "Paldies" -#: [about]developers +#: ../cache/locales.php:3 msgid "Developers" msgstr "Izstrādātāji" -#: [about]translators +#: ../cache/locales.php:4 msgid "Translators" msgstr "Tulkotāji" -#: [about]software +#: ../cache/locales.php:5 msgid "Software" msgstr "Programmatūra" -#: [about]resources +#: ../cache/locales.php:6 msgid "Resources" msgstr "Resursi" -#: [about]api [schema]api [api]title +#: ../cache/locales.php:7 ../cache/locales.php:83 ../cache/locales.php:85 msgid "API" msgstr "API" -#: [about]info -msgid "Movim is an XMPP-based communication platform. All the project, except the following software and resources, is under" +#: ../cache/locales.php:8 +msgid "" +"Movim is an XMPP-based communication platform. All the project, except the " +"following software and resources, is under" msgstr "" -#: [account]title +#: ../cache/locales.php:9 msgid "Account" msgstr "" -#: [account]password_change_title -#, fuzzy -msgid "Change my password" -msgstr "Nepareiza parole" - -#: [account]password [db]password [credentials]password [form]password -#: [input]password -msgid "Password" -msgstr "Parole" - -#: [account]password_confirmation -msgid "Password confirmation" -msgstr "" - -#: [account]password_changed +#: ../cache/locales.php:10 msgid "The password has been updated" msgstr "" -#: [account]password_not_valid +#: ../cache/locales.php:11 msgid "Please provide a valid password (6 characters minimum)" msgstr "" -#: [account]password_not_same +#: ../cache/locales.php:12 msgid "The provided passwords are not the same" msgstr "" -#: [account]delete_title +#: ../cache/locales.php:13 msgid "Delete my account" msgstr "" -#: [account]delete -#, fuzzy -msgid "Delete your account" -msgstr "Izveidot jaunu kontu" - -#: [account]delete_text -msgid "You will delete your XMPP account and all the relative information linked to it (profile, contacts and publications)." +#: ../cache/locales.php:14 +msgid "" +"You will delete your XMPP account and all the relative information linked to " +"it (profile, contacts and publications)." msgstr "" -#: [account]delete_text_confirm +#: ../cache/locales.php:15 msgid "Are you sure that you want to delete it ?" msgstr "" -#: [account]gateway_title -msgid "Gateway" -msgstr "" - -#: [create]title [subscribe]title +#: ../cache/locales.php:16 ../cache/locales.php:411 msgid "Create a new account" msgstr "Izveidot jaunu kontu" -#: [create]notfound +#: ../cache/locales.php:17 msgid "No account creation form found on the server" msgstr "" -#: [create]server_on +#: ../cache/locales.php:18 ../cache/locales.php:172 msgid "on" msgstr "šajā datumā" -#: [create]successfull +#: ../cache/locales.php:19 msgid "Your acccount has been successfully registered" msgstr "" -#: [create]loading +#: ../cache/locales.php:20 msgid "Loading" msgstr "Ielādē" -#: [error]not_acceptable +#: ../cache/locales.php:21 msgid "Not Acceptable" msgstr "" -#: [error]service_unavailable +#: ../cache/locales.php:22 msgid "The registration system of this server is currently unavailable" msgstr "" -#: [oob]about -msgid "This server use an external system for the registration, please click on the following URL." +#: ../cache/locales.php:23 +msgid "" +"This server use an external system for the registration, please click on the " +"following URL." msgstr "" -#: [adhoc]title +#: ../cache/locales.php:24 msgid "Actions" msgstr "Darbības" -#: [db]legend [schema]database +#: ../cache/locales.php:25 ../cache/locales.php:82 msgid "Database" msgstr "" -#: [db]connect_error +#: ../cache/locales.php:26 msgid "Modl wasn't able to connect to the database" msgstr "Modl nevarēja pieslēgties datubāzei" -#: [db]connect_success +#: ../cache/locales.php:27 msgid "Movim is connected to the database" msgstr "Movim ir pieslēgts datubāzei" -#: [db]update +#: ../cache/locales.php:28 msgid "The database need to be updated" msgstr "Datņu bāze ir jāatjaunina" -#: [db]up_to_date +#: ../cache/locales.php:29 msgid "Movim database is up to date" msgstr "" -#: [db]type +#: ../cache/locales.php:30 msgid "Database Type" msgstr "Datubāzes tips" -#: [db]username [credentials]username [input]username +#: ../cache/locales.php:31 ../cache/locales.php:50 ../cache/locales.php:540 msgid "Username" msgstr "Lietotājvārds" -#: [db]host +#: ../cache/locales.php:32 ../cache/locales.php:51 ../cache/locales.php:282 +#: ../cache/locales.php:541 +msgid "Password" +msgstr "Parole" + +#: ../cache/locales.php:33 msgid "Host" msgstr "Resursdators" -#: [db]port +#: ../cache/locales.php:34 msgid "Port" msgstr "Ports" -#: [db]name -#, fuzzy -msgid "Database sName" +#: ../cache/locales.php:35 +msgid "Database Name" msgstr "Datubāzes nosaukums" -#: [admin]general +#: ../cache/locales.php:36 msgid "General Settings" msgstr "Vispārīgie iestatījumi" -#: [general]theme +#: ../cache/locales.php:37 msgid "Theme" msgstr "Motīvs" -#: [general]language +#: ../cache/locales.php:38 msgid "Default language" msgstr "Noklusējuma valoda" -#: [general]log_verbosity +#: ../cache/locales.php:39 +msgid "Environment" +msgstr "Vide" + +#: ../cache/locales.php:40 msgid "Log verbosity" msgstr "" -#: [general]timezone +#: ../cache/locales.php:41 msgid "Server Timezone" msgstr "Servera laika josla" -#: [general]limit +#: ../cache/locales.php:42 msgid "User folder size limit (in bytes)" msgstr "" -#: [websocket]title +#: ../cache/locales.php:43 msgid "WebSocket Configuration" msgstr "" -#: [websocket]info +#: ../cache/locales.php:44 msgid "Enter here a valid WebSocket URI in the form" msgstr "" -#: [websocket]label +#: ../cache/locales.php:45 msgid "WebSocket URI" msgstr "" -#: [websocket]save_info -msgid "If you change the URI, please restart the daemon to reload the configuration" +#: ../cache/locales.php:46 +msgid "" +"If you change the URI, please restart the daemon to reload the configuration" msgstr "" -#: [websocket]publics +#: ../cache/locales.php:47 msgid "Public WebSockets" msgstr "" -#: [credentials]title +#: ../cache/locales.php:48 msgid "Administration Credential" msgstr "" -#: [credentials]info +#: ../cache/locales.php:49 msgid "Change the default credentials admin/password" msgstr "" -#: [credentials]re_password +#: ../cache/locales.php:52 msgid "Retype password" msgstr "Pārievadiet paroli" -#: [whitelist]title +#: ../cache/locales.php:53 msgid "Whitelist - XMPP Server" msgstr "" -#: [whitelist]info1 -msgid "If you want to specify a list of authorized XMPP servers on your Movim pod and forbid the connection on all the others please put their domain name here, with comma (ex: movim.eu,jabber.fr)" +#: ../cache/locales.php:54 +msgid "" +"If you want to specify a list of authorized XMPP servers on your Movim pod " +"and forbid the connection on all the others please put their domain name " +"here, with comma (ex: movim.eu,jabber.fr)" msgstr "" -#: [whitelist]info2 -msgid "Leave this field blank if you allow the access to all the XMPP accounts." +#: ../cache/locales.php:55 +msgid "" +"Leave this field blank if you allow the access to all the XMPP accounts." msgstr "" -#: [whitelist]label +#: ../cache/locales.php:56 msgid "List of whitelisted XMPP servers" msgstr "" -#: [information]title -#, fuzzy -msgctxt "[information]title" +#: ../cache/locales.php:57 ../cache/locales.php:61 msgid "Information Message" msgstr "Informācijas paziņojums" -#: [information]description +#: ../cache/locales.php:58 msgid "Description" msgstr "Apraksts" -#: [information]info1 +#: ../cache/locales.php:59 msgid "This message will be displayed on the login page" msgstr "" -#: [information]info2 -msgid "Leave this field blank if you dont want to show any message." +#: ../cache/locales.php:60 +msgid "Leave this field blank if you don't want to show any message." msgstr "" -#: [information]label -#, fuzzy -msgctxt "[information]label" -msgid "Information Message" -msgstr "Informācijas paziņojums" - -#: [log]empty +#: ../cache/locales.php:62 msgid "Empty" msgstr "" -#: [log]syslog +#: ../cache/locales.php:63 msgid "Syslog" msgstr "" -#: [log]syslog_files +#: ../cache/locales.php:64 msgid "Syslog and files" msgstr "" -#: [rewrite]title +#: ../cache/locales.php:65 msgid "URL Rewriting" msgstr "" -#: [rewrite]info +#: ../cache/locales.php:66 msgid "The URL Rewriting can be enabled" msgstr "" -#: [admin]compatibility +#: ../cache/locales.php:67 msgid "General Overview" msgstr "" -#: [compatibility]info -msgid "Movim has found some issues or things that need to be fixed or improved" +#: ../cache/locales.php:68 +msgid "" +"Movim has found some issues or things that need to be fixed or improved" msgstr "" -#: [compatibility]php1 +#: ../cache/locales.php:69 +#, php-format msgid "Update your PHP-Version: %s" msgstr "" -#: [compatibility]php2 +#: ../cache/locales.php:70 msgid "Required: 5.3.0" msgstr "" -#: [compatibility]curl +#: ../cache/locales.php:71 msgid "Install the php5-curl library" msgstr "" -#: [compatibility]imagick +#: ../cache/locales.php:72 msgid "Install the php5-imagick library" msgstr "" -#: [compatibility]gd +#: ../cache/locales.php:73 msgid "Install the php5-gd library" msgstr "" -#: [compatibility]rights -msgid "Read and write rights for the webserver in Movims root directory" +#: ../cache/locales.php:74 +msgid "Read and write rights for the webserver in Movim's root directory" msgstr "" -#: [compatibility]rewrite +#: ../cache/locales.php:75 msgid "The URL Rewriting support is currently disabled" msgstr "" -#: [compatibility]db +#: ../cache/locales.php:76 msgid "The database need to be updated, go to the database panel to fix this" msgstr "" -#: [compatibility]websocket -msgid "WebSocket connection error, check if the Movim Daemon is running and is reachable" +#: ../cache/locales.php:77 +msgid "" +"WebSocket connection error, check if the Movim Daemon is running and is " +"reacheable" msgstr "" -#: [compatibility]xmpp_websocket -msgid "XMPP Websocket connection error, please check the validity of the URL given in the General Configuration" +#: ../cache/locales.php:78 +msgid "" +"XMPP Websocket connection error, please check the validity of the URL given " +"in the General Configuration" msgstr "" -#: [schema]browser +#: ../cache/locales.php:79 msgid "Browser" msgstr "" -#: [schema]movim +#: ../cache/locales.php:80 msgid "Movim Core" msgstr "" -#: [schema]daemon +#: ../cache/locales.php:81 msgid "Movim Daemon" msgstr "" -#: [schema]xmpp +#: ../cache/locales.php:84 msgid "XMPP" msgstr "" -#: [api]info -msgid "Here you can register your pod on the official %sMovim API%s and be listed on %sthe pods page%s." +#: ../cache/locales.php:86 +#, php-format +msgid "" +"Here you can register your pod on the official %sMovim API%s and be listed " +"on %sthe pods page%s." msgstr "" -#: [api]register +#: ../cache/locales.php:87 msgid "Your pod is not registered on the API" msgstr "" -#: [api]registered +#: ../cache/locales.php:88 msgid "Your pod is registered on the API" msgstr "" -#: [api]wait +#: ../cache/locales.php:89 msgid "Your pod is not yet validated" msgstr "" -#: [api]validated +#: ../cache/locales.php:90 msgid "Your pod is validated" msgstr "" -#: [api]unregister -msgid "You asked to be removed from the API, this request will be processed in a couple of hours" +#: ../cache/locales.php:91 +msgid "" +"You asked to be removed from the API, this request will be processed in a " +"couple of hours" msgstr "" -#: [api]conf_updated [config]updated +#: ../cache/locales.php:92 ../cache/locales.php:147 msgid "Configuration updated" msgstr "Atjaunināta konfigurācija" -#: [avatar]file +#: ../cache/locales.php:93 msgid "File" msgstr "" -#: [avatar]use_it +#: ../cache/locales.php:94 msgid "Use it" msgstr "" -#: [avatar]webcam +#: ../cache/locales.php:95 msgid "Webcam" msgstr "" -#: [avatar]cheese +#: ../cache/locales.php:96 msgid "Cheese !" msgstr "" -#: [avatar]snapshot +#: ../cache/locales.php:97 msgid "Take a webcam snapshot" msgstr "" -#: [avatar]updated +#: ../cache/locales.php:98 msgid "Avatar Updated" msgstr "" -#: [avatar]not_updated +#: ../cache/locales.php:99 msgid "Avatar Not Updated" msgstr "" -#: [blog]title [feed]title +#: ../cache/locales.php:100 ../cache/locales.php:415 +#, php-format msgid "%s's feed" msgstr "" -#: [blog]empty +#: ../cache/locales.php:101 msgid "This user has not posted anything right now" msgstr "" -#: [title]conferences +#: ../cache/locales.php:102 msgid "Conferences" msgstr "Konferences" -#: [title]groups [group]empty_title [menu]groups [page]groups +#: ../cache/locales.php:103 ../cache/locales.php:193 ../cache/locales.php:217 +#: ../cache/locales.php:468 msgid "Groups" msgstr "Grupas" -#: [chatroom]add +#: ../cache/locales.php:104 msgid "Add a new Chat Room" msgstr "" -#: [chatroom]id [chatrooms]id +#: ../cache/locales.php:105 ../cache/locales.php:368 msgid "Chat Room ID" msgstr "" -#: [chatroom]name -#, fuzzy -msgctxt "[chatroom]name" +#: ../cache/locales.php:106 ../cache/locales.php:116 ../cache/locales.php:156 +#: ../cache/locales.php:361 ../cache/locales.php:369 ../cache/locales.php:424 msgid "Name" msgstr "Nosaukums" -#: [chatroom]nickname [general]nickname [chatrooms]nickname +#: ../cache/locales.php:107 ../cache/locales.php:157 ../cache/locales.php:371 +#: ../cache/locales.php:425 msgid "Nickname" msgstr "Segvārds" -#: [chatroom]autojoin_label +#: ../cache/locales.php:108 msgid "Do you want do join automaticaly this Chat Room ?" msgstr "" -#: [chatroom]bad_id [chatrooms]bad_id +#: ../cache/locales.php:109 ../cache/locales.php:372 msgid "Bad Chatroom ID" msgstr "" -#: [chatroom]empty_name [chatrooms]empty_name +#: ../cache/locales.php:110 ../cache/locales.php:373 msgid "Empty name" msgstr "Tukšs vārds" -#: [bookmarks]updated +#: ../cache/locales.php:111 ../cache/locales.php:380 msgid "Bookmarks updated" msgstr "" -#: [bookmarks]error -#, fuzzy -msgid "An error occured :" +#: ../cache/locales.php:112 +msgid "An error occured : " msgstr "Kļūda notika: " -#: [bookmarks]configure +#: ../cache/locales.php:113 msgid "Configure" msgstr "" -#: [url]add +#: ../cache/locales.php:114 msgid "Add a new URL" msgstr "" -#: [url]url +#: ../cache/locales.php:115 msgid "URL" msgstr "" -#: [url]name -#, fuzzy -msgctxt "[url]name" -msgid "Name" -msgstr "Nosaukums" - -#: [message]published +#: ../cache/locales.php:117 msgid "Message Published" msgstr "" -#: [message]encrypted +#: ../cache/locales.php:118 ../cache/locales.php:138 msgid "Encrypted message" msgstr "Šifrēta vēstule" -#: [message]composing [chats]composing +#: ../cache/locales.php:119 msgid "Composing..." msgstr "" -#: [message]paused [chats]paused +#: ../cache/locales.php:120 msgid "Paused..." msgstr "" -#: [message]gone +#: ../cache/locales.php:121 msgid "Contact gone" msgstr "" -#: [chat]attention +#: ../cache/locales.php:122 +#, php-format msgid "%s needs your attention" msgstr "%s pieprasa jūsu uzmanību" -#: [chat]placeholder +#: ../cache/locales.php:123 msgid "Your message here..." msgstr "" -#: [chat]smileys +#: ../cache/locales.php:124 msgid "Smileys" msgstr "" -#: [chat]empty_title [button]chat +#: ../cache/locales.php:125 ../cache/locales.php:139 msgid "Chat" msgstr "Tērzēšana" -#: [chat]empty_text +#: ../cache/locales.php:126 msgid "Discuss with your contacts" msgstr "" -#: [chat]frequent [chats]frequent -msgid "Frequent contacts" -msgstr "" - -#: [chatroom]members +#: ../cache/locales.php:127 msgid "Members" msgstr "" -#: [chatroom]connected [chatrooms]connected +#: ../cache/locales.php:128 ../cache/locales.php:376 msgid "Connected to the chatroom" msgstr "" -#: [chatroom]disconnected [chatrooms]disconnected +#: ../cache/locales.php:129 ../cache/locales.php:377 msgid "Disconnected from the chatroom" msgstr "" -#: [chatroom]config [group]configuration [page]configuration +#: ../cache/locales.php:130 ../cache/locales.php:200 ../cache/locales.php:469 msgid "Configuration" msgstr "" -#: [chatroom]config_saved +#: ../cache/locales.php:131 msgid "Configuration saved" msgstr "" -#: [chatroom]subject +#: ../cache/locales.php:132 msgid "Subject" msgstr "" -#: [chatroom]subject_changed +#: ../cache/locales.php:133 msgid "Subject changed" msgstr "" -#: [chats]empty_title -msgid "No chats yet..." +#: ../cache/locales.php:134 +msgid "Open a new conversation by clicking on the plus button bellow" msgstr "" -#: [chats]empty -msgid "Open a new conversation by clicking on the plus button bellow or visit the Contacts page." -msgstr "" - -#: [chats]add +#: ../cache/locales.php:135 msgid "Chat with a contact" msgstr "" -#: [chats]more +#: ../cache/locales.php:136 +msgid "Frequent contacts" +msgstr "" + +#: ../cache/locales.php:137 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" - -#: [config]general +#: ../cache/locales.php:140 msgid "General" msgstr "Vispārīgi" -#: [config]language +#: ../cache/locales.php:141 msgid "Language" msgstr "Valoda" -#: [config]roster +#: ../cache/locales.php:142 msgid "Roster display" msgstr "" -#: [config]roster_show +#: ../cache/locales.php:143 msgid "Show the offline contacts" msgstr "" -#: [config]roster_hide +#: ../cache/locales.php:144 msgid "Hide the offline contacts" msgstr "" -#: [config]appearence +#: ../cache/locales.php:145 msgid "Appearence" msgstr "Izskats" -#: [config]info -msgid "This configuration is shared wherever you are connected" +#: ../cache/locales.php:146 +msgid "This configuration is shared wherever you are connected !" msgstr "" -#: [notifications]message +#: ../cache/locales.php:148 msgid "Notify on incoming message" msgstr "" -#: [notifications]desktop +#: ../cache/locales.php:149 msgid "Use desktop notifications" msgstr "" -#: [general]legend [general]general_title +#: ../cache/locales.php:150 +msgid "Data" +msgstr "Dati" + +#: ../cache/locales.php:151 +msgid "Cache" +msgstr "Kešatmiņa" + +#: ../cache/locales.php:152 ../cache/locales.php:218 ../cache/locales.php:466 +msgid "Contacts" +msgstr "Kontakti" + +#: ../cache/locales.php:153 ../cache/locales.php:480 +msgid "Posts" +msgstr "Ieraksti" + +#: ../cache/locales.php:154 +msgid "Messages" +msgstr "Ziņojumi" + +#: ../cache/locales.php:155 ../cache/locales.php:423 msgid "General Informations" msgstr "Vispārīgā Informācija" -#: [general]name [public_groups]name [chatrooms]name -msgid "Name" -msgstr "Nosaukums" - -#: [general]date_of_birth +#: ../cache/locales.php:158 ../cache/locales.php:427 msgid "Date of Birth" msgstr "Dzimšanas datums" -#: [general]gender +#: ../cache/locales.php:159 ../cache/locales.php:428 msgid "Gender" msgstr "Dzimums" -#: [general]marital +#: ../cache/locales.php:160 ../cache/locales.php:429 msgid "Marital Status" msgstr "Ģimenes stāvoklis" -#: [general]email +#: ../cache/locales.php:161 ../cache/locales.php:426 msgid "Email" msgstr "E-pasts" -#: [general]website +#: ../cache/locales.php:162 ../cache/locales.php:430 msgid "Website" msgstr "Tīmekļa vietne" -#: [general]about +#: ../cache/locales.php:163 ../cache/locales.php:431 msgid "About Me" msgstr "Par mani" -#: [general]accounts +#: ../cache/locales.php:164 msgid "Other Accounts" msgstr "" -#: [general]tune +#: ../cache/locales.php:165 msgid "Is Listening" msgstr "" -#: [position]legend [position]position_title +#: ../cache/locales.php:166 ../cache/locales.php:432 msgid "Geographic Position" msgstr "Ģeogrāfiskais novietojums" -#: [position]locality +#: ../cache/locales.php:167 ../cache/locales.php:433 msgid "Locality" msgstr "Apvidus" -#: [position]country +#: ../cache/locales.php:168 ../cache/locales.php:434 msgid "Country" msgstr "Valsts" -#: [mood]title +#: ../cache/locales.php:169 msgid "Mood" msgstr "Noskaņojums" -#: [mood]im +#: ../cache/locales.php:170 msgid "I'm " msgstr "Esmu " -#: [listen]title +#: ../cache/locales.php:171 msgid "Listening" msgstr "Klausās" -#: [last]title +#: ../cache/locales.php:173 msgid "Last seen" msgstr "" -#: [client]title +#: ../cache/locales.php:174 msgid "Client Informations" msgstr "" -#: [explore]last_registered +#: ../cache/locales.php:175 msgid "Last registered" msgstr "" -#: [explore]explore +#: ../cache/locales.php:176 msgid "Find some new friends" msgstr "" -#: [edit]title [button]edit +#: ../cache/locales.php:177 ../cache/locales.php:533 msgid "Edit" msgstr "" -#: [edit]alias +#: ../cache/locales.php:178 msgid "Alias" msgstr "Pseidonīms" -#: [edit]group +#: ../cache/locales.php:179 msgid "Group" msgstr "Grupa" -#: [edit]updated [roster]updated +#: ../cache/locales.php:180 ../cache/locales.php:400 msgid "Contact updated" msgstr "Kontakts atjaunināts" -#: [delete]title +#: ../cache/locales.php:181 msgid "Are you sure?" msgstr "" -#: [delete]text -msgid "You are going to delete one of your contacts, please confirm your action" +#: ../cache/locales.php:182 +msgid "" +"You are going to delete one of your contacts, please confirm your action" msgstr "" -#: [age]years +#: ../cache/locales.php:183 +#, php-format msgid "%s years" msgstr "" -#: [blog]last +#: ../cache/locales.php:184 msgid "Last public post" msgstr "" -#: [subscription]to -msgid "You can see this contact status" -msgstr "" - -#: [subscription]to_button -msgid "Share my status" -msgstr "" - -#: [subscription]to_text -msgid "But this contact cannot see yours" -msgstr "" - -#: [subscription]from -msgid "You are not subscribed to this contact" -msgstr "" - -#: [subscription]from_button -#, fuzzy -msgid "Ask to subscribe" -msgstr "Atrakstīties" - -#: [subscription]from_text -msgid "But this contact can still see if you are online" -msgstr "" - -#: [subscription]nil -#, fuzzy -msgid "No subscriptions" -msgstr "Apraksts" - -#: [subscription]nil_button -msgid "Invite" -msgstr "" - -#: [subscription]nil_text -msgid "This contact is in your contact list but there is no subscriptions between the two accounts" -msgstr "" - -#: [group]subscribe +#: ../cache/locales.php:185 msgid "Subscribe" msgstr "Pierakstīties" -#: [group]subscribed +#: ../cache/locales.php:186 msgid "Subscribed" msgstr "Pierakstīts" -#: [group]unsubscribe +#: ../cache/locales.php:187 msgid "Unsubscribe" msgstr "Atrakstīties" -#: [group]unsubscribe_text +#: ../cache/locales.php:188 msgid "You are going to unsubscribe from this Group" msgstr "" -#: [group]unsubscribed +#: ../cache/locales.php:189 msgid "Unsubscribed" msgstr "" -#: [group]share_label +#: ../cache/locales.php:190 msgid "Make your membership to this group public to your friends" msgstr "" -#: [group]label_label +#: ../cache/locales.php:191 msgid "Give a label for this group" msgstr "" -#: [group]sure +#: ../cache/locales.php:192 msgid "Are you sure ?" msgstr "Vai esat pārliecināts(a)?" -#: [group]empty_text +#: ../cache/locales.php:194 msgid "Discover, follow and share" msgstr "" -#: [group]empty +#: ../cache/locales.php:195 msgid "Something bad happened to this group" msgstr "" -#: [group]config_saved +#: ../cache/locales.php:196 msgid "Group configuration saved" msgstr "" -#: [group]delete_title +#: ../cache/locales.php:197 msgid "Delete the group" msgstr "" -#: [group]delete_text -msgid "You are going to delete the following group. Please confirm your action." +#: ../cache/locales.php:198 +msgid "" +"You are going to delete the following group. Please confirm your action." msgstr "" -#: [group]delete_clean_text -msgid "It seems that this group doesn't exists anymore. Do you want to remove it from your subscriptions?" +#: ../cache/locales.php:199 +msgid "" +"It seems that this group doesn't exists anymore. Do you want to remove it " +"from your subscriptions?" msgstr "" -#: [group]counter -msgid "%s groups on this server" -msgstr "" - -#: [group]subscriptions [statistics]subscriptions +#: ../cache/locales.php:201 ../cache/locales.php:408 msgid "Subscriptions" msgstr "" -#: [group]servers -#, fuzzy -msgid "Groups servers" -msgstr "Grupas" - -#: [group]search_server -msgid "Search for a new server" -msgstr "" - -#: [group]help_info1 -msgid "Groups are the perfect way to share posts about topics that you like with all the other Movim's users." -msgstr "" - -#: [group]help_info2 -msgid "Choose a server and a Group and subscribe to it using the %s button in the header. You can also create a new one using the %s button." -msgstr "" - -#: [group]help_info3 -msgid "Done? You can now publish a new post in the Group by using the %s button." -msgstr "" - -#: [group]help_info4 -msgid "You will find a list of all your subscribed Groups in My Subscriptions and receive instantly all the new incoming posts in the %sNews%s page." -msgstr "" - -#: [groups]empty_title +#: ../cache/locales.php:202 ../cache/locales.php:290 msgid "Hello" msgstr "" -#: [groups]contact_post [hello]contact_post [menu]contact_post +#: ../cache/locales.php:203 ../cache/locales.php:225 ../cache/locales.php:291 msgid "Contact post" msgstr "" -#: [groups]empty_text1 -msgid "You don't have any subscriptions yet, select a group server above to start exploring." +#: ../cache/locales.php:204 +msgid "" +"You don't have any subscriptions yet, select a group server above to start " +"exploring." msgstr "" -#: [groups]empty_text2 +#: ../cache/locales.php:205 msgid "Subscribe to your favorite feeds by bookmarking them." msgstr "" -#: [groups]subscriptions +#: ../cache/locales.php:206 msgid "My Subscriptions" msgstr "" -#: [groups]add +#: ../cache/locales.php:207 msgid "Create a new Group" msgstr "" -#: [groups]name +#: ../cache/locales.php:208 msgid "Group name" msgstr "" -#: [groups]name_example +#: ../cache/locales.php:209 msgid "My Little Pony - Fan Club" msgstr "" -#: [groups]created +#: ../cache/locales.php:210 msgid "Group created successfully" msgstr "" -#: [groups]deleted +#: ../cache/locales.php:211 msgid "Group deleted successfully" msgstr "" -#: [groups]name_error +#: ../cache/locales.php:212 msgid "Please provide a valid group name (4 characters minimum)" msgstr "" -#: [groups]no_creation +#: ../cache/locales.php:213 msgid "You cannot create a new Group on this server" msgstr "" -#: [groups]sub +#: ../cache/locales.php:214 +#, php-format msgid "%s subscribers" msgstr "" -#: [groups]num +#: ../cache/locales.php:215 +#, php-format msgid "%s posts" msgstr "" -#: [groups]disco_error -msgid "This server doesn't exists" -msgstr "" - -#: [menu]all +#: ../cache/locales.php:216 msgid "All" msgstr "" -#: [menu]refresh +#: ../cache/locales.php:219 msgid "Refresh all the streams" msgstr "" -#: [roster]search -#, fuzzy -msgid "Search in your contacts" -msgstr "Jūsu kontakti" - -#: [hello]active_contacts -#, fuzzy -msgid "Active contacts" -msgstr "Jūsu kontakti" - -#: [hello]chat -msgid "Go on the Chat page" -msgstr "" - -#: [hello]news [page]news -msgid "News" -msgstr "" - -#: [hello]news_page -msgid "Read all theses articles on the News page" -msgstr "" - -#: [hello]blog_title -msgid "Visit your public blog" -msgstr "" - -#: [hello]blog_text -msgid "See your public posts and share them with all your contacts" -msgstr "" - -#: [hello]share_title -msgid "Universal share button" -msgstr "" - -#: [hello]share_text -msgid "Bookmark or drag and drop the following button in your toolbar and use it on all the pages you want to share on Movim" -msgstr "" - -#: [hello]share_button -msgid "Share on Movim" -msgstr "" - -#: [help]faq -msgid "Frequently Asked Questions" -msgstr "" - -#: [banner]title -msgid "What do the little banners refer to ?" -msgstr "" - -#: [banner]info1 -msgid "Thanks to these five little banners, you can quickly identitfy the level of confdentiality applied to the information you provide." -msgstr "" - -#: [banner]white -msgid "White, only you can see the information" -msgstr "" - -#: [banner]green -msgid "Green, you have chosen some contacts who can see your information" -msgstr "" - -#: [banner]orange -msgid "Orange, all your contact list can see your information" -msgstr "" - -#: [banner]red -msgid "Red, everybody in the XMPP network can see your information" -msgstr "" - -#: [banner]black -msgid "Black, the whole Internet can see your information" -msgstr "" - -#: [wiki]question -msgid "Looking for some documentation ?" -msgstr "" - -#: [wiki]button -msgid "Read the Wiki" -msgstr "" - -#: [ml]question -msgid "Talk with us by email ?" -msgstr "" - -#: [ml]button -msgid "Join the Mailing List" -msgstr "" - -#: [chatroom]question -msgid "Chat with the team ?" -msgstr "" - -#: [chatroom]button -msgid "Join the Chatroom" -msgstr "" - -#: [init]location -msgid "Location node created" -msgstr "" - -#: [init]bookmark -msgid "Bookmark node created" -msgstr "" - -#: [init]vcard4 -msgid "Profile node created" -msgstr "" - -#: [init]avatar -msgid "Avatar node created" -msgstr "" - -#: [init]subscriptions -msgid "Subscriptions node created" -msgstr "" - -#: [init]microblog -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" - -#: [error]jid -msgid "Invalid JID" -msgstr "Nederīgs JID" - -#: [error]empty_challenge -msgid "Empty Challenge from the server" -msgstr "" - -#: [error]dns -msgid "XMPP Domain error, your account is not a correct Jabber ID" -msgstr "" - -#: [error]data_missings -msgid "Some data are missing !" -msgstr "Dažas datnes trūkst !" - -#: [error]wrong_password -msgid "Wrong password" -msgstr "Nepareiza parole" - -#: [error]internal -msgid "Internal server error" -msgstr "Servera iekšēja kļūda" - -#: [error]session -msgid "Session error" -msgstr "" - -#: [error]account_created -msgid "Account successfully created" -msgstr "Konts veiksmīgi izveidots" - -#: [error]xmpp_unauthorized -#, fuzzy -msgctxt "[error]xmpp_unauthorized" -msgid "Your XMPP server is unauthorized" -msgstr "Jūsu XMPP serveris nav atļauts" - -#: [error]mec_error -msgid "The server takes too much time to respond" -msgstr "" - -#: [error]too_old -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" - -#: [error]websocket -msgid "Movim cannot talk with the server, please try again later (Websocket connection error)" -msgstr "" - -#: [error]impossible -msgid "Impossible login" -msgstr "" - -#: [error]title -msgid "Oops!" -msgstr "" - -#: [error]default [visio]unknown_error -msgid "Unknown error" -msgstr "Nezināma kļūda" - -#: [error]login_format -msgid "Invalid username format" -msgstr "" - -#: [error]password_format -msgid "Invalid password format" -msgstr "" - -#: [error]unauthorized -#, fuzzy -msgctxt "[error]unauthorized" -msgid "Your XMPP server is unauthorized" -msgstr "Jūsu XMPP serveris nav atļauts" - -#: [error]conflict -msgid "A Movim session is already open on an other device" -msgstr "" - -#: [error]wrong_account -msgid "Movim failed to authenticate. You entered wrong data" -msgstr "" - -#: [error]mechanism -msgid "Authentication mechanism not supported by Movim" -msgstr "" - -#: [error]fail_auth -msgid "The XMPP authentification failed" -msgstr "XMPP autentifikācija neizdevās" - -#: [account]title [accounts]accounts_title -msgid "Accounts" -msgstr "Konti" - -#: [form]username -msgid "My address" -msgstr "" - -#: [form]create_one -msgid "Create one !" -msgstr "Izveidot vienu !" - -#: [form]another_account -msgid "Another account" -msgstr "" - -#: [form]no_account -msgid "No account yet ?" -msgstr "Vēl nav konts ?" - -#: [form]whitelist.info -msgid "You can login with accounts from theses servers" -msgstr "" - -#: [form]connected -msgid "Connected" -msgstr "Savienots" - -#: [form]population -msgid "Population" -msgstr "" - -#: [menu]empty_title -msgid "No news yet..." -msgstr "" - -#: [menu]empty -msgid "Welcome on your news feed, here you will see all the posts published by your contacts and in the groups you have subscribed." -msgstr "" - -#: [menu]refresh -msgid "Refreshing all the streams" -msgstr "" - -#: [menu]public -msgid "This post is public" -msgstr "" - -#: [affiliations]title -msgid "Manage your members" -msgstr "" - -#: [affiliations]get -msgid "Get the members" -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 "" - -#: [notifs]title -msgid "Pending Invitations" -msgstr "" - -#: [notifs]wants_to_talk -msgid "%s wants to talk with you" -msgstr "%s grib ar jums sazināties" - -#: [notifs]manage -msgid "Manage" -msgstr "Pārvaldīt" - -#: [post]news_feed -msgid "News Feed" -msgstr "" - -#: [post]placeholder -msgid "Discover and register to the groups you are interested in" -msgstr "" - -#: [post]preview [page]preview -msgid "Preview" -msgstr "" - -#: [post]help [page]help -msgid "Help" -msgstr "" - -#: [post]help_more -msgid "More help" -msgstr "" - -#: [post]help_manual -msgid "Markdown syntax manual" -msgstr "" - -#: [post]title -msgid "Title" -msgstr "" - -#: [post]content -msgid "Content" -msgstr "" - -#: [post]link -msgid "Link" -msgstr "Saite" - -#: [post]tags -msgid "Tags" -msgstr "" - -#: [post]valid_url [publish]valid_url -msgid "Please enter a valid url" -msgstr "" - -#: [post]no_content_preview [publish]no_content_preview -msgid "No content to preview" -msgstr "" - -#: [post]no_content [publish]no_content [post]empty -msgid "No content" -msgstr "" - -#: [post]published -msgid "Post published" -msgstr "" - -#: [post]deleted -msgid "Post deleted" -msgstr "" - -#: [post]gallery -msgid "This picture will be added to your gallery" -msgstr "" - -#: [post]hot -msgid "What's Hot" -msgstr "" - -#: [post]hot_text -msgid "Posts recently published in Groups that you are not subscribed (yet)" -msgstr "" - -#: [post]new [publish]new -msgid "New post" -msgstr "" - -#: [post]embed_tip -msgid "You can also use services like Imgur or Flickr to host your picture and paste the link here." -msgstr "" - -#: [post]repost -msgid "This is a re-post from %s" -msgstr "" - -#: [post]repost_profile -msgid "See %s profile" -msgstr "" - -#: [post]public -msgid "Publish this post publicly?" -msgstr "" - -#: [post]blog_add -msgid "Post published on your blog" -msgstr "" - -#: [post]blog_remove -msgid "Post removed from your blog" -msgstr "" - -#: [post]delete_title [post]delete -msgid "Delete this post" -msgstr "" - -#: [post]delete_text -msgid "You are going to delete this post, please confirm your action" -msgstr "" - -#: [post]comments_disabled -msgid "Comments disabled" -msgstr "" - -#: [post]comment_published -msgid "Comment published" -msgstr "" - -#: [status]disconnect -msgid "Disconnect" -msgstr "Atvienoties" - -#: [status]here -msgid "Your status here !" -msgstr "" - -#: [status]updated -msgid "Status updated" -msgstr "" - -#: [status]status -msgid "Status" -msgstr "" - -#: [status]presence -msgid "Presence" -msgstr "" - -#: [status]online -msgid "Online with Movim" -msgstr "" - -#: [publish]title -msgid "Publish" -msgstr "" - -#: [publish]attach -msgid "Add a file or a picture to your post" -msgstr "" - -#: [publish]no_publication -msgid "You cannot publish a post on this Group" -msgstr "" - -#: [publish]form_filled -msgid "Some fields have been filled in. Do you still want to go back and loose their content?" -msgstr "" - -#: [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 "" - -#: [rooms]empty_text1 -msgid "You don't have any chatroom yet." -msgstr "" - -#: [rooms]empty_text2 -msgid "Add one by clicking on the add button in the header." -msgstr "" - -#: [chatrooms]title -msgid "Chatrooms" -msgstr "" - -#: [chatrooms]name_placeholder -msgid "My Favorite Room" -msgstr "" - -#: [chatrooms]users -msgid "Users in the room" -msgstr "" - -#: [chatrooms]bad_nickname -msgid "Please enter a correct nickname (2 to 40 characters)" -msgstr "" - -#: [room]anonymous_title -msgid "Public chatroom" -msgstr "" - -#: [room]no_room -msgid "Please provide a room address" -msgstr "" - -#: [room]anonymous_text1 -msgid "You are currently logued as an anonymous user." -msgstr "" - -#: [room]anonymous_text2 -msgid "You can join using your own account or create one on the login page by loging out using the cross in the top-right corner." -msgstr "" - -#: [room]anonymous_login -msgid "Login on %s" -msgstr "" - -#: [room]nick -msgid "Your nickname" -msgstr "" - -#: [roster]ungrouped -msgid "Ungrouped" -msgstr "Negrupēts" - -#: [roster]show_disconnected -msgid "Show disconnected contacts" -msgstr "" - -#: [roster]hide_disconnected -msgid "Hide disconnected contacts" -msgstr "" - -#: [roster]show_group -msgid "Show group %s" -msgstr "Radīt %s grupu" - -#: [roster]hide_group -msgid "Hide group %s" -msgstr "Slēpt %s grupu" - -#: [roster]jid_error -msgid "Please enter a valid Jabber ID" -msgstr "" - -#: [roster]no_contacts_title -#, fuzzy -msgid "No contacts ?" -msgstr "Jūsu kontakti" - -#: [roster]no_contacts_text -msgid "You can add one using the + button bellow" -msgstr "" - -#: [roster]show_hide -msgid "Show/Hide" -msgstr "Rādīt/slēpt" - -#: [roster]add_contact_info1 -msgid "Enter the Jabber ID of your contact." -msgstr "" - -#: [roster]add_contact_info2 -msgid "Press enter to validate." -msgstr "Spiest enter lai apstiprināt." - -#: [roster]jid -msgid "JID" -msgstr "JID" - -#: [roster]results -msgid "Results" -msgstr "" - -#: [roster]added -msgid "Contact added" -msgstr "" - -#: [roster]deleted -msgid "Contact deleted" -msgstr "" - -#: [roster]search +#: ../cache/locales.php:220 ../cache/locales.php:402 msgid "Search" msgstr "Meklēt" -#: [share]error +#: ../cache/locales.php:221 +msgid "Go on the Chat page" +msgstr "" + +#: ../cache/locales.php:222 +msgid "Read all theses articles on the News page" +msgstr "" + +#: ../cache/locales.php:223 +msgid "Visit your public blog" +msgstr "" + +#: ../cache/locales.php:224 +msgid "See your public posts and share them with all your contacts" +msgstr "" + +#: ../cache/locales.php:226 +msgid "Universal share button" +msgstr "" + +#: ../cache/locales.php:227 +msgid "" +"Bookmark or drag and drop the following button in your toolbar and use it on " +"all the pages you want to share on Movim" +msgstr "" + +#: ../cache/locales.php:228 +msgid "Share on Movim" +msgstr "" + +#: ../cache/locales.php:229 +msgid "Frequently Asked Questions" +msgstr "" + +#: ../cache/locales.php:230 +msgid "What do the little banners refer to ?" +msgstr "" + +#: ../cache/locales.php:231 +msgid "" +"Thanks to these five little banners, you can quickly identitfy the level of " +"confdentiality applied to the information you provide." +msgstr "" + +#: ../cache/locales.php:232 +msgid "White, only you can see the information" +msgstr "" + +#: ../cache/locales.php:233 +msgid "Green, you have chosen some contacts who can see your information" +msgstr "" + +#: ../cache/locales.php:234 +msgid "Orange, all your contact list can see your information" +msgstr "" + +#: ../cache/locales.php:235 +msgid "Red, everybody in the XMPP network can see your information" +msgstr "" + +#: ../cache/locales.php:236 +msgid "Black, the whole Internet can see your information" +msgstr "" + +#: ../cache/locales.php:237 +msgid "Looking for some documentation ?" +msgstr "" + +#: ../cache/locales.php:238 +msgid "Read the Wiki" +msgstr "" + +#: ../cache/locales.php:239 +msgid "Talk with us by email ?" +msgstr "" + +#: ../cache/locales.php:240 +msgid "Join the Mailing List" +msgstr "" + +#: ../cache/locales.php:241 +msgid "Chat with the team ?" +msgstr "" + +#: ../cache/locales.php:242 +msgid "Join the Chatroom" +msgstr "" + +#: ../cache/locales.php:243 +msgid "Location node created" +msgstr "" + +#: ../cache/locales.php:244 +msgid "Bookmark node created" +msgstr "" + +#: ../cache/locales.php:245 +msgid "Profile node created" +msgstr "" + +#: ../cache/locales.php:246 +msgid "Avatar node created" +msgstr "" + +#: ../cache/locales.php:247 +msgid "Subscriptions node created" +msgstr "" + +#: ../cache/locales.php:248 +msgid "Microblog node created" +msgstr "" + +#: ../cache/locales.php:249 +msgid "Location" +msgstr "Atrašanās vieta" + +#: ../cache/locales.php:250 +msgid "Wrong position" +msgstr "" + +#: ../cache/locales.php:251 +msgid "Location updated" +msgstr "" + +#: ../cache/locales.php:252 +msgid "Update my position" +msgstr "" + +#: ../cache/locales.php:253 +msgid "Wrong username" +msgstr "Nepareizs lietotājvārds" + +#: ../cache/locales.php:254 +msgid "Invalid JID" +msgstr "Nederīgs JID" + +#: ../cache/locales.php:255 +msgid "Empty Challenge from the server" +msgstr "" + +#: ../cache/locales.php:256 +msgid "XMPP Domain error, your account is not a correct Jabber ID" +msgstr "" + +#: ../cache/locales.php:257 +msgid "Some data are missing !" +msgstr "Dažas datnes trūkst !" + +#: ../cache/locales.php:258 +msgid "Wrong password" +msgstr "Nepareiza parole" + +#: ../cache/locales.php:259 +msgid "Internal server error" +msgstr "Servera iekšēja kļūda" + +#: ../cache/locales.php:260 +msgid "Session error" +msgstr "" + +#: ../cache/locales.php:261 +msgid "Account successfully created" +msgstr "Konts veiksmīgi izveidots" + +#: ../cache/locales.php:262 ../cache/locales.php:271 +msgid "Your XMPP server is unauthorized" +msgstr "Jūsu XMPP serveris nav atļauts" + +#: ../cache/locales.php:263 +msgid "The server takes too much time to respond" +msgstr "" + +#: ../cache/locales.php:264 +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" + +#: ../cache/locales.php:265 +msgid "" +"Movim cannot talk with the server, please try again later (Websocket " +"connection error)" +msgstr "" + +#: ../cache/locales.php:266 +msgid "Impossible login" +msgstr "" + +#: ../cache/locales.php:267 +msgid "Oops!" +msgstr "" + +#: ../cache/locales.php:268 ../cache/locales.php:449 ../cache/locales.php:455 +msgid "Unknown error" +msgstr "Nezināma kļūda" + +#: ../cache/locales.php:269 +msgid "Invalid username format" +msgstr "" + +#: ../cache/locales.php:270 +msgid "Invalid password format" +msgstr "" + +#: ../cache/locales.php:272 +msgid "A Movim session is already open on an other device" +msgstr "" + +#: ../cache/locales.php:273 +msgid "Movim failed to authenticate. You entered wrong data" +msgstr "" + +#: ../cache/locales.php:274 +msgid "Authentication mechanism not supported by Movim" +msgstr "" + +#: ../cache/locales.php:275 +msgid "The XMPP authentification failed" +msgstr "XMPP autentifikācija neizdevās" + +#: ../cache/locales.php:276 +#, php-format +msgid "" +"You can login with Facebook (chat only) using %syour.id@chat.facebook.com%s " +"and your password" +msgstr "" + +#: ../cache/locales.php:277 +#, php-format +msgid "%sGmail accounts are also compatible%s but are not fully supported" +msgstr "" + +#: ../cache/locales.php:278 +msgid "You can login using your favorite Jabber account" +msgstr "" + +#: ../cache/locales.php:279 +msgid "or with our demonstration account" +msgstr "" + +#: ../cache/locales.php:280 ../cache/locales.php:435 +msgid "Accounts" +msgstr "Konti" + +#: ../cache/locales.php:281 +msgid "My address" +msgstr "" + +#: ../cache/locales.php:283 +msgid "Create one !" +msgstr "Izveidot vienu !" + +#: ../cache/locales.php:284 +msgid "No account yet ?" +msgstr "Vēl nav konts ?" + +#: ../cache/locales.php:285 +msgid "Another account" +msgstr "" + +#: ../cache/locales.php:286 +msgid "You can login with accounts from theses servers" +msgstr "" + +#: ../cache/locales.php:287 +msgid "Connected" +msgstr "Savienots" + +#: ../cache/locales.php:288 +msgid "Population" +msgstr "" + +#: ../cache/locales.php:289 +msgid "Bad nickname (between 4 and 40 characters)" +msgstr "" + +#: ../cache/locales.php:292 +msgid "" +"Welcome on your news feed, here you will see all the posts published in the " +"groups you have subscribed." +msgstr "" + +#: ../cache/locales.php:293 +msgid "Refreshing all the streams" +msgstr "" + +#: ../cache/locales.php:294 +msgid "This post is public" +msgstr "" + +#: ../cache/locales.php:295 +msgid "Manage your members" +msgstr "" + +#: ../cache/locales.php:296 +msgid "Get the members" +msgstr "" + +#: ../cache/locales.php:297 +msgid "Affiliations saved" +msgstr "" + +#: ../cache/locales.php:298 +msgid "Manage your subscriptions" +msgstr "" + +#: ../cache/locales.php:299 +msgid "Manage the subscriptions" +msgstr "" + +#: ../cache/locales.php:300 +msgid "Get the subscriptions" +msgstr "" + +#: ../cache/locales.php:301 +msgid "Subscriptions saved" +msgstr "" + +#: ../cache/locales.php:302 +msgid "Pending Invitations" +msgstr "" + +#: ../cache/locales.php:303 +#, php-format +msgid "%s wants to talk with you" +msgstr "%s grib ar jums sazināties" + +#: ../cache/locales.php:304 +msgid "Manage" +msgstr "Pārvaldīt" + +#: ../cache/locales.php:305 ../cache/locales.php:338 +msgid "News Feed" +msgstr "" + +#: ../cache/locales.php:306 ../cache/locales.php:339 +msgid "Discover and register to the groups you are interested in" +msgstr "" + +#: ../cache/locales.php:307 ../cache/locales.php:340 ../cache/locales.php:482 +msgid "Preview" +msgstr "" + +#: ../cache/locales.php:308 ../cache/locales.php:341 ../cache/locales.php:478 +msgid "Help" +msgstr "" + +#: ../cache/locales.php:309 ../cache/locales.php:342 +msgid "More help" +msgstr "" + +#: ../cache/locales.php:310 ../cache/locales.php:343 +msgid "Markdown syntax manual" +msgstr "" + +#: ../cache/locales.php:311 ../cache/locales.php:344 ../cache/locales.php:681 +msgid "Title" +msgstr "" + +#: ../cache/locales.php:312 ../cache/locales.php:345 +msgid "Content" +msgstr "" + +#: ../cache/locales.php:313 ../cache/locales.php:346 +msgid "Link" +msgstr "Saite" + +#: ../cache/locales.php:314 ../cache/locales.php:347 +msgid "Tags" +msgstr "" + +#: ../cache/locales.php:315 ../cache/locales.php:348 +msgid "Please enter a valid url" +msgstr "" + +#: ../cache/locales.php:316 ../cache/locales.php:349 +msgid "No content to preview" +msgstr "" + +#: ../cache/locales.php:317 ../cache/locales.php:350 ../cache/locales.php:687 +msgid "No content" +msgstr "" + +#: ../cache/locales.php:318 ../cache/locales.php:351 +msgid "Post published" +msgstr "" + +#: ../cache/locales.php:319 ../cache/locales.php:352 +msgid "Post deleted" +msgstr "" + +#: ../cache/locales.php:320 ../cache/locales.php:353 +msgid "This picture will be added to your gallery" +msgstr "" + +#: ../cache/locales.php:321 ../cache/locales.php:354 +msgid "What's Hot" +msgstr "" + +#: ../cache/locales.php:322 ../cache/locales.php:355 +msgid "New post" +msgstr "" + +#: ../cache/locales.php:323 ../cache/locales.php:357 +msgid "" +"You can also use services like Imgur or Flickr to host your picture and " +"paste the link here." +msgstr "" + +#: ../cache/locales.php:324 +#, php-format +msgid "This is a re-post from %s" +msgstr "" + +#: ../cache/locales.php:325 +#, php-format +msgid "See %s profile" +msgstr "" + +#: ../cache/locales.php:326 +msgid "Publish this post on your public feed?" +msgstr "" + +#: ../cache/locales.php:327 +msgid "Post published on your blog" +msgstr "" + +#: ../cache/locales.php:328 +msgid "Post removed from your blog" +msgstr "" + +#: ../cache/locales.php:329 ../cache/locales.php:701 +msgid "Delete this post" +msgstr "" + +#: ../cache/locales.php:330 +msgid "You are going to delete this post, please confirm your action" +msgstr "" + +#: ../cache/locales.php:331 +msgid "Comments disabled" +msgstr "" + +#: ../cache/locales.php:332 +msgid "Comment published" +msgstr "" + +#: ../cache/locales.php:333 +msgid "Disconnect" +msgstr "Atvienoties" + +#: ../cache/locales.php:334 +msgid "Your status here !" +msgstr "" + +#: ../cache/locales.php:335 +msgid "Status updated" +msgstr "" + +#: ../cache/locales.php:336 +msgid "Status" +msgstr "" + +#: ../cache/locales.php:337 +msgid "Presence" +msgstr "" + +#: ../cache/locales.php:356 +msgid "Publish" +msgstr "" + +#: ../cache/locales.php:358 +msgid "You cannot publish a post on this Group" +msgstr "" + +#: ../cache/locales.php:359 +msgid "" +"Some fields have been filled in. Do you still want to go back and loose " +"their content?" +msgstr "" + +#: ../cache/locales.php:360 +msgid "Shared" +msgstr "Koplietots" + +#: ../cache/locales.php:362 +#, php-format +msgid "%s has been added to your public groups" +msgstr "" + +#: ../cache/locales.php:363 +#, php-format +msgid "%s has been removed from your public groups" +msgstr "" + +#: ../cache/locales.php:364 +msgid "Add a chatroom" +msgstr "" + +#: ../cache/locales.php:365 +msgid "You don't have any chatroom yet." +msgstr "" + +#: ../cache/locales.php:366 +msgid "Add one by clicking on the add button in the header." +msgstr "" + +#: ../cache/locales.php:367 +msgid "Chatrooms" +msgstr "" + +#: ../cache/locales.php:370 +msgid "My Favorite Room" +msgstr "" + +#: ../cache/locales.php:374 +msgid "Remove a chatroom" +msgstr "" + +#: ../cache/locales.php:375 +msgid "" +"You are going to remove the following chatroom. Please confirm your action." +msgstr "" + +#: ../cache/locales.php:378 +msgid "Users in the room" +msgstr "" + +#: ../cache/locales.php:379 +msgid "Please enter a correct nickname (6 to 40 characters)" +msgstr "" + +#: ../cache/locales.php:381 +msgid "Public chatroom" +msgstr "" + +#: ../cache/locales.php:382 +msgid "Please provide a room address" +msgstr "" + +#: ../cache/locales.php:383 +msgid "You are currently logued as an anonymous user." +msgstr "" + +#: ../cache/locales.php:384 +msgid "" +"You can join using your own account or create one on the login page by " +"loging out using the cross in the top-right corner." +msgstr "" + +#: ../cache/locales.php:385 +#, php-format +msgid "Login on %s" +msgstr "" + +#: ../cache/locales.php:386 +msgid "Your nickname" +msgstr "" + +#: ../cache/locales.php:387 +msgid "Ungrouped" +msgstr "Negrupēts" + +#: ../cache/locales.php:388 +msgid "Show disconnected contacts" +msgstr "" + +#: ../cache/locales.php:389 +msgid "Hide disconnected contacts" +msgstr "" + +#: ../cache/locales.php:390 +#, php-format +msgid "Show group %s" +msgstr "Radīt %s grupu" + +#: ../cache/locales.php:391 +#, php-format +msgid "Hide group %s" +msgstr "Slēpt %s grupu" + +#: ../cache/locales.php:392 +msgid "Please enter a valid Jabber ID" +msgstr "" + +#: ../cache/locales.php:393 +msgid "" +"No contacts ? You can add one using the + button bellow or going to the " +"Explore page" +msgstr "" + +#: ../cache/locales.php:394 +msgid "Show/Hide" +msgstr "Rādīt/slēpt" + +#: ../cache/locales.php:395 +msgid "Enter the Jabber ID of your contact." +msgstr "" + +#: ../cache/locales.php:396 +msgid "Press enter to validate." +msgstr "Spiest enter lai apstiprināt." + +#: ../cache/locales.php:397 +msgid "JID" +msgstr "JID" + +#: ../cache/locales.php:398 +msgid "Results" +msgstr "" + +#: ../cache/locales.php:399 +msgid "Contact added" +msgstr "" + +#: ../cache/locales.php:401 +msgid "Contact deleted" +msgstr "" + +#: ../cache/locales.php:403 msgid "This is not a valid url" msgstr "" -#: [share]success +#: ../cache/locales.php:404 msgid "Sharing the URL" msgstr "" -#: [statistics]title +#: ../cache/locales.php:405 msgid "Statistics" msgstr "Statistika" -#: [statistics]since +#: ../cache/locales.php:406 msgid "Since" msgstr "Kopš" -#: [statistics]sessions +#: ../cache/locales.php:407 msgid "Sessions" msgstr "Sesijas" -#: [statistics]monthly_sub +#: ../cache/locales.php:409 msgid "Monthly Subscriptions" msgstr "" -#: [statistics]monthly_sub_cum +#: ../cache/locales.php:410 msgid "Monthly Subscriptions Cumulated" msgstr "" -#: [subscribe]info -msgid "Movim is a decentralized social network, before creating a new account you need to choose a server to register." +#: ../cache/locales.php:412 +msgid "" +"Movim is a decentralized social network, before creating a new account you " +"need to choose a server to register." msgstr "" -#: [subscribe]server_question +#: ../cache/locales.php:413 msgid "Your server here ?" msgstr "Jūsu serveris šeit ?" -#: [subscribe]server_contact +#: ../cache/locales.php:414 msgid "Contact us to add yours to the officially supported servers list" -msgstr "Sazināties ar mums lai pievienot jūsu oficiāli atbalstīto serveru sarakstam" +msgstr "" +"Sazināties ar mums lai pievienot jūsu oficiāli atbalstīto serveru sarakstam" -#: [feed]nope +#: ../cache/locales.php:416 msgid "No public feed for this contact" msgstr "" -#: [feed]nope_contact +#: ../cache/locales.php:417 msgid "No contact specified" msgstr "" -#: [upload]title -msgid "Upload a file" -msgstr "" - -#: [upload]choose -msgid "Choose a file to upload" -msgstr "" - -#: [vcard]title [page]profile +#: ../cache/locales.php:418 ../cache/locales.php:473 msgid "Profile" msgstr "" -#: [vcard]updated +#: ../cache/locales.php:419 msgid "Profile Updated" msgstr "Profils atjaunināts" -#: [vcard]not_updated +#: ../cache/locales.php:420 msgid "Profile Not Updated" msgstr "" -#: [vcard]public +#: ../cache/locales.php:421 msgid "Your profile is now public" msgstr "" -#: [vcard]restricted +#: ../cache/locales.php:422 msgid "Your profile is now restricted" msgstr "" -#: [general]nickname -#, fuzzy -msgctxt "[general]nickname" -msgid "Nickname" -msgstr "Segvārds" - -#: [accounts]twitter +#: ../cache/locales.php:436 msgid "Twitter" msgstr "Twitter" -#: [accounts]skype +#: ../cache/locales.php:437 msgid "Skype" msgstr "Skype" -#: [accounts]yahoo +#: ../cache/locales.php:438 msgid "Yahoo" msgstr "Yahoo" -#: [accounts]accounts_nickname -#, fuzzy -msgctxt "[accounts]accounts_nickname" -msgid "Nickname" -msgstr "Segvārds" - -#: [accounts]accounts_yahoo -#, fuzzy -msgid "Yahoo Account" -msgstr "Konti" - -#: [privacy]privacy_title +#: ../cache/locales.php:439 msgid "Privacy Level" msgstr "Privātuma līmenis" -#: [privacy]privacy_question +#: ../cache/locales.php:440 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." +#: ../cache/locales.php:441 +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." msgstr "" -#: [save]submit [button]submit -msgid "Submit" -msgstr "" - -#: [save]reset [button]reset -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 +#: ../cache/locales.php:442 msgid "Call" msgstr "" -#: [visio]hang_up +#: ../cache/locales.php:443 msgid "Hang up" msgstr "" -#: [visio]connection +#: ../cache/locales.php:444 msgid "Connection" msgstr "" -#: [global]no_js +#: ../cache/locales.php:445 ../cache/locales.php:451 +msgid "Hung up" +msgstr "" + +#: ../cache/locales.php:446 ../cache/locales.php:452 +msgid "Your contact is busy" +msgstr "" + +#: ../cache/locales.php:447 ../cache/locales.php:453 +msgid "Declined" +msgstr "" + +#: ../cache/locales.php:448 ../cache/locales.php:454 +msgid "Remote application incompatible" +msgstr "" + +#: ../cache/locales.php:450 ../cache/locales.php:456 +msgid "Is calling you" +msgstr "" + +#: ../cache/locales.php:457 msgid "You don't have javascript enabled. Good luck with that." msgstr "" -#: [global]description -msgid "Movim is a kickass distributed social networking platform that protect your privacy an comes with a set of awesome features." +#: ../cache/locales.php:458 +msgid "" +"Movim is a kickass distributed social networking platform that protect your " +"privacy an comes with a set of awesome features." msgstr "" -#: [page]administration +#: ../cache/locales.php:459 msgid "Administration" msgstr "Administrācija" -#: [page]home +#: ../cache/locales.php:460 msgid "Home" msgstr "Sākumvieta" -#: [page]discover +#: ../cache/locales.php:461 msgid "Discover" msgstr "Atklāt" -#: [page]explore +#: ../cache/locales.php:462 msgid "Explore" msgstr "Izpētīt" -#: [page]account_creation +#: ../cache/locales.php:463 msgid "Account Creation" msgstr "" -#: [page]avatar +#: ../cache/locales.php:464 +msgid "News" +msgstr "" + +#: ../cache/locales.php:465 msgid "Avatar" msgstr "" -#: [page]chats +#: ../cache/locales.php:467 msgid "Chats" msgstr "" -#: [page]server +#: ../cache/locales.php:470 msgid "Server" msgstr "" -#: [page]public_groups +#: ../cache/locales.php:471 msgid "Public Groups" msgstr "" -#: [page]viewer +#: ../cache/locales.php:472 msgid "Viewer" msgstr "Skatītājs" -#: [page]media +#: ../cache/locales.php:474 msgid "Media" msgstr "Multivide" -#: [page]blog +#: ../cache/locales.php:475 msgid "Blog" msgstr "Emuārs" -#: [page]about +#: ../cache/locales.php:476 msgid "About" msgstr "" -#: [page]login +#: ../cache/locales.php:477 msgid "Login" msgstr "" -#: [page]feed +#: ../cache/locales.php:479 msgid "Feed" msgstr "Plūsma" -#: [page]gallery +#: ../cache/locales.php:481 msgid "Gallery" msgstr "" -#: [page]visio +#: ../cache/locales.php:483 msgid "Visio-conference" msgstr "" -#: [page]pods +#: ../cache/locales.php:484 msgid "Pods" msgstr "" -#: [page]share +#: ../cache/locales.php:485 msgid "Share" msgstr "" -#: [page]room +#: ../cache/locales.php:486 msgid "Room" msgstr "" -#: [error]error +#: ../cache/locales.php:487 +#, php-format msgid "Error: %s" msgstr "" -#: [error]cannot_load_file +#: ../cache/locales.php:488 +#, php-format msgid "Cannot load file '%s'" msgstr "" -#: [error]route +#: ../cache/locales.php:489 +#, php-format msgid "Route error, please set all the parameters for the page %s" msgstr "" -#: [error]widget_load_error +#: ../cache/locales.php:490 +#, php-format msgid "Requested widget '%s' doesn't exist." msgstr "" -#: [error]widget_call_error +#: ../cache/locales.php:491 +#, php-format msgid "Requested event '%s' not registered." msgstr "" -#: [error]whoops +#: ../cache/locales.php:492 msgid "Whoops!" msgstr "" -#: [error]media_not_found +#: ../cache/locales.php:493 msgid "It seem that you don't have any pictures here?" msgstr "" -#: [error]media_ask_upload +#: ../cache/locales.php:494 msgid "You can try to upload a couple by going to the Media page" msgstr "" -#: [title]about +#: ../cache/locales.php:495 +#, php-format msgid "%s - About" msgstr "" -#: [title]account +#: ../cache/locales.php:496 +#, php-format msgid "%s - Account" msgstr "" -#: [title]administration +#: ../cache/locales.php:497 +#, php-format msgid "%s - Administration Panel" msgstr "" -#: [title]blog +#: ../cache/locales.php:498 +#, php-format msgid "%s - Blog" msgstr "" -#: [title]configuration +#: ../cache/locales.php:499 +#, php-format msgid "%s - Configuration" msgstr "" -#: [title]discover +#: ../cache/locales.php:500 +#, php-format msgid "%s - Discover" msgstr "" -#: [title]explore +#: ../cache/locales.php:501 +#, php-format msgid "%s - Explore" msgstr "" -#: [title]help +#: ../cache/locales.php:502 +#, php-format msgid "%s - Help Page" msgstr "" -#: [title]login +#: ../cache/locales.php:503 +#, php-format msgid "%s - Login to Movim" msgstr "" -#: [title]main +#: ../cache/locales.php:504 +#, php-format msgid "%s - Welcome to Movim" msgstr "" -#: [title]media +#: ../cache/locales.php:505 +#, php-format msgid "%s - Media" msgstr "" -#: [title]news +#: ../cache/locales.php:506 +#, php-format msgid "%s - News" msgstr "" -#: [title]node_configuration +#: ../cache/locales.php:507 +#, php-format msgid "%s - Group Configuration" msgstr "" -#: [title]node +#: ../cache/locales.php:508 +#, php-format msgid "%s - Group" msgstr "" -#: [title]not_found +#: ../cache/locales.php:509 +#, php-format msgid "%s - 404" msgstr "" -#: [title]profile +#: ../cache/locales.php:510 +#, php-format msgid "%s - Profile" msgstr "" -#: [title]server +#: ../cache/locales.php:511 +#, php-format msgid "%s - Server" msgstr "" -#: [button]validate +#: ../cache/locales.php:512 msgid "Validate" msgstr "" -#: [button]refresh +#: ../cache/locales.php:513 msgid "Refresh" msgstr "" -#: [button]add +#: ../cache/locales.php:514 msgid "Add" msgstr "Pievienot" -#: [button]delete +#: ../cache/locales.php:515 msgid "Delete" msgstr "" -#: [button]cancel +#: ../cache/locales.php:516 +msgid "Remove" +msgstr "" + +#: ../cache/locales.php:517 msgid "Cancel" msgstr "" -#: [button]close +#: ../cache/locales.php:518 msgid "Close" msgstr "Aizvērt" -#: [button]update +#: ../cache/locales.php:519 msgid "Update" msgstr "" -#: [button]updating +#: ../cache/locales.php:520 msgid "Updating" msgstr "" -#: [button]submitting +#: ../cache/locales.php:521 +msgid "Submit" +msgstr "" + +#: ../cache/locales.php:522 msgid "Submitting" msgstr "" -#: [button]register +#: ../cache/locales.php:523 +msgid "Reset" +msgstr "" + +#: ../cache/locales.php:524 msgid "Register" msgstr "" -#: [button]unregister +#: ../cache/locales.php:525 msgid "Unregister" msgstr "" -#: [button]save +#: ../cache/locales.php:526 msgid "Save" msgstr "Saglabāt" -#: [button]clear +#: ../cache/locales.php:527 msgid "Clear" msgstr "" -#: [button]upload +#: ../cache/locales.php:528 msgid "Upload" msgstr "" -#: [button]come_in +#: ../cache/locales.php:529 msgid "Come in!" msgstr "" -#: [button]connecting +#: ../cache/locales.php:530 msgid "Connecting" msgstr "" -#: [button]bool_yes +#: ../cache/locales.php:531 msgid "Yes" msgstr "" -#: [button]bool_no +#: ../cache/locales.php:532 msgid "No" msgstr "" -#: [button]return +#: ../cache/locales.php:534 msgid "Return" msgstr "" -#: [button]accept +#: ../cache/locales.php:535 msgid "Accept" msgstr "" -#: [button]refuse +#: ../cache/locales.php:536 msgid "Refuse" msgstr "" -#: [button]next +#: ../cache/locales.php:537 msgid "Next" msgstr "" -#: [button]previous +#: ../cache/locales.php:538 msgid "Previous" msgstr "" -#: [step]step +#: ../cache/locales.php:539 +#, php-format msgid "Step %s" msgstr "" -#: [day]title +#: ../cache/locales.php:542 msgid "Day" msgstr "" -#: [day]monday +#: ../cache/locales.php:543 msgid "Monday" msgstr "" -#: [day]tuesday +#: ../cache/locales.php:544 msgid "Tuesday" msgstr "" -#: [day]wednesday +#: ../cache/locales.php:545 msgid "Wednesday" msgstr "" -#: [day]thursday +#: ../cache/locales.php:546 msgid "Thursday" msgstr "" -#: [day]friday +#: ../cache/locales.php:547 msgid "Friday" msgstr "" -#: [day]saturday +#: ../cache/locales.php:548 msgid "Saturday" msgstr "" -#: [day]sunday +#: ../cache/locales.php:549 msgid "Sunday" msgstr "" -#: [gender]nil -msgctxt "[gender]nil" +#: ../cache/locales.php:550 ../cache/locales.php:559 msgid "None" msgstr "" -#: [gender]male +#: ../cache/locales.php:551 msgid "Male" msgstr "" -#: [gender]female +#: ../cache/locales.php:552 msgid "Female" msgstr "" -#: [gender]other +#: ../cache/locales.php:553 msgid "Other" msgstr "" -#: [client]bot +#: ../cache/locales.php:554 msgid "Bot" msgstr "" -#: [client]desktop +#: ../cache/locales.php:555 msgid "Desktop" msgstr "" -#: [client]phone +#: ../cache/locales.php:556 msgid "Phone" msgstr "" -#: [client]web +#: ../cache/locales.php:557 msgid "Web" msgstr "" -#: [client]registered +#: ../cache/locales.php:558 msgid "Registered" msgstr "" -#: [marital]nil -msgctxt "[marital]nil" -msgid "None" -msgstr "" - -#: [marital]single +#: ../cache/locales.php:560 msgid "Single" msgstr "" -#: [marital]relationship +#: ../cache/locales.php:561 msgid "In a relationship" msgstr "" -#: [marital]married +#: ../cache/locales.php:562 msgid "Married" msgstr "" -#: [marital]divorced +#: ../cache/locales.php:563 msgid "Divorced" msgstr "" -#: [marital]widowed +#: ../cache/locales.php:564 msgid "Widowed" msgstr "" -#: [marital]cohabiting +#: ../cache/locales.php:565 msgid "Cohabiting" msgstr "" -#: [marital]union +#: ../cache/locales.php:566 msgid "Civil Union" msgstr "" -#: [flag]white +#: ../cache/locales.php:567 msgid "Not shared" msgstr "" -#: [flag]green +#: ../cache/locales.php:568 msgid "Shared with one contact" msgstr "" -#: [flag]orange +#: ../cache/locales.php:569 msgid "Shared with all contacts" msgstr "" -#: [flag]red +#: ../cache/locales.php:570 msgid "Shared with the XMPP network" msgstr "" -#: [flag]black +#: ../cache/locales.php:571 msgid "Shared with the whole Internet" msgstr "" -#: [presence]online +#: ../cache/locales.php:572 msgid "Online" msgstr "" -#: [presence]away +#: ../cache/locales.php:573 msgid "Away" msgstr "" -#: [presence]dnd +#: ../cache/locales.php:574 msgid "Do Not Disturb" msgstr "" -#: [presence]xa +#: ../cache/locales.php:575 msgid "Extended Away" msgstr "" -#: [presence]offline +#: ../cache/locales.php:576 msgid "Offline" msgstr "" -#: [presence]error +#: ../cache/locales.php:577 msgid "Error" msgstr "Kļūda" -#: [mood]afraid +#: ../cache/locales.php:578 msgid "afraid" msgstr "" -#: [mood]amazed +#: ../cache/locales.php:579 msgid "amazed" msgstr "" -#: [mood]amorous +#: ../cache/locales.php:580 msgid "amorous" msgstr "" -#: [mood]angry +#: ../cache/locales.php:581 msgid "angry" msgstr "" -#: [mood]annoyed +#: ../cache/locales.php:582 msgid "annoyed" msgstr "" -#: [mood]anxious +#: ../cache/locales.php:583 msgid "anxious" msgstr "" -#: [mood]aroused +#: ../cache/locales.php:584 msgid "aroused" msgstr "" -#: [mood]ashamed +#: ../cache/locales.php:585 msgid "ashamed" msgstr "" -#: [mood]bored +#: ../cache/locales.php:586 msgid "bored" msgstr "" -#: [mood]brave +#: ../cache/locales.php:587 msgid "brave" msgstr "" -#: [mood]calm +#: ../cache/locales.php:588 msgid "calm" msgstr "" -#: [mood]cautious +#: ../cache/locales.php:589 msgid "cautious" msgstr "" -#: [mood]cold +#: ../cache/locales.php:590 msgid "cold" msgstr "" -#: [mood]confident +#: ../cache/locales.php:591 msgid "confident" msgstr "" -#: [mood]confused +#: ../cache/locales.php:592 msgid "confused" msgstr "" -#: [mood]contemplative +#: ../cache/locales.php:593 msgid "contemplative" msgstr "" -#: [mood]contented +#: ../cache/locales.php:594 msgid "contented" msgstr "" -#: [mood]cranky +#: ../cache/locales.php:595 msgid "cranky" msgstr "" -#: [mood]crazy +#: ../cache/locales.php:596 msgid "crazy" msgstr "" -#: [mood]creative +#: ../cache/locales.php:597 msgid "creative" msgstr "" -#: [mood]curious +#: ../cache/locales.php:598 msgid "curious" msgstr "" -#: [mood]dejected +#: ../cache/locales.php:599 msgid "dejected" msgstr "" -#: [mood]depressed +#: ../cache/locales.php:600 msgid "depressed" msgstr "" -#: [mood]disappointed +#: ../cache/locales.php:601 msgid "disappointed" msgstr "" -#: [mood]disgusted +#: ../cache/locales.php:602 msgid "disgusted" msgstr "" -#: [mood]dismayed +#: ../cache/locales.php:603 msgid "dismayed" msgstr "" -#: [mood]distracted +#: ../cache/locales.php:604 msgid "distracted" msgstr "" -#: [mood]embarrassed +#: ../cache/locales.php:605 msgid "embarrassed" msgstr "" -#: [mood]envious +#: ../cache/locales.php:606 msgid "envious" msgstr "" -#: [mood]excited +#: ../cache/locales.php:607 msgid "excited" msgstr "" -#: [mood]flirtatious +#: ../cache/locales.php:608 msgid "flirtatious" msgstr "" -#: [mood]frustated +#: ../cache/locales.php:609 msgid "frustated" msgstr "" -#: [mood]grateful +#: ../cache/locales.php:610 msgid "grateful" msgstr "" -#: [mood]grieving +#: ../cache/locales.php:611 msgid "grieving" msgstr "" -#: [mood]grumpy +#: ../cache/locales.php:612 msgid "grumpy" msgstr "" -#: [mood]guilty +#: ../cache/locales.php:613 msgid "guilty" msgstr "" -#: [mood]happy +#: ../cache/locales.php:614 msgid "happy" msgstr "" -#: [mood]hopeful +#: ../cache/locales.php:615 msgid "hopeful" msgstr "" -#: [mood]hot +#: ../cache/locales.php:616 msgid "hot" msgstr "" -#: [mood]humbled +#: ../cache/locales.php:617 msgid "humbled" msgstr "" -#: [mood]humiliated +#: ../cache/locales.php:618 msgid "humiliated" msgstr "" -#: [mood]hungry +#: ../cache/locales.php:619 msgid "hungry" msgstr "" -#: [mood]hurt +#: ../cache/locales.php:620 msgid "hurt" msgstr "" -#: [mood]impressed +#: ../cache/locales.php:621 msgid "impressed" msgstr "" -#: [mood]in_awe +#: ../cache/locales.php:622 msgid "in awe" msgstr "" -#: [mood]in_love +#: ../cache/locales.php:623 msgid "in love" msgstr "" -#: [mood]indignant +#: ../cache/locales.php:624 msgid "indignant" msgstr "" -#: [mood]interested +#: ../cache/locales.php:625 msgid "interested" msgstr "" -#: [mood]intoxicated +#: ../cache/locales.php:626 msgid "intoxicated" msgstr "" -#: [mood]invincible +#: ../cache/locales.php:627 msgid "invincible" msgstr "" -#: [mood]jealous +#: ../cache/locales.php:628 msgid "jealous" msgstr "" -#: [mood]lonely +#: ../cache/locales.php:629 msgid "lonely" msgstr "" -#: [mood]lost +#: ../cache/locales.php:630 msgid "lost" msgstr "" -#: [mood]lucky +#: ../cache/locales.php:631 msgid "lucky" msgstr "" -#: [mood]mean +#: ../cache/locales.php:632 msgid "mean" msgstr "" -#: [mood]moody +#: ../cache/locales.php:633 msgid "moody" msgstr "" -#: [mood]nervous +#: ../cache/locales.php:634 msgid "nervous" msgstr "" -#: [mood]neutral +#: ../cache/locales.php:635 msgid "neutral" msgstr "" -#: [mood]offended +#: ../cache/locales.php:636 msgid "offended" msgstr "" -#: [mood]outraged +#: ../cache/locales.php:637 msgid "outraged" msgstr "" -#: [mood]playful +#: ../cache/locales.php:638 msgid "playful" msgstr "" -#: [mood]proud +#: ../cache/locales.php:639 msgid "proud" msgstr "" -#: [mood]relaxed +#: ../cache/locales.php:640 msgid "relaxed" msgstr "" -#: [mood]relieved +#: ../cache/locales.php:641 msgid "relieved" msgstr "" -#: [mood]restless +#: ../cache/locales.php:642 +msgid "remorseful" +msgstr "" + +#: ../cache/locales.php:643 msgid "restless" msgstr "" -#: [mood]sad +#: ../cache/locales.php:644 msgid "sad" msgstr "" -#: [mood]sarcastic +#: ../cache/locales.php:645 msgid "sarcastic" msgstr "" -#: [mood]satisfied +#: ../cache/locales.php:646 msgid "satisfied" msgstr "" -#: [mood]serious +#: ../cache/locales.php:647 msgid "serious" msgstr "" -#: [mood]shocked +#: ../cache/locales.php:648 msgid "shocked" msgstr "" -#: [mood]shy +#: ../cache/locales.php:649 msgid "shy" msgstr "" -#: [mood]sick +#: ../cache/locales.php:650 msgid "sick" msgstr "" -#: [mood]sleepy +#: ../cache/locales.php:651 msgid "sleepy" msgstr "" -#: [mood]spontaneous +#: ../cache/locales.php:652 msgid "spontaneous" msgstr "" -#: [mood]stressed +#: ../cache/locales.php:653 msgid "stressed" msgstr "" -#: [mood]strong +#: ../cache/locales.php:654 msgid "strong" msgstr "" -#: [mood]surprised +#: ../cache/locales.php:655 msgid "surprised" msgstr "" -#: [mood]thankful +#: ../cache/locales.php:656 msgid "thankful" msgstr "" -#: [mood]thirsty +#: ../cache/locales.php:657 msgid "thirsty" msgstr "" -#: [mood]tired +#: ../cache/locales.php:658 msgid "tired" msgstr "" -#: [mood]undefined +#: ../cache/locales.php:659 msgid "undefined" msgstr "" -#: [mood]weak +#: ../cache/locales.php:660 msgid "weak" msgstr "" -#: [mood]worried +#: ../cache/locales.php:661 msgid "worried" msgstr "" -#: [month]title +#: ../cache/locales.php:662 msgid "Month" msgstr "" -#: [month]january +#: ../cache/locales.php:663 msgid "January" msgstr "" -#: [month]february +#: ../cache/locales.php:664 msgid "February" msgstr "" -#: [month]march +#: ../cache/locales.php:665 msgid "March" msgstr "" -#: [month]april +#: ../cache/locales.php:666 msgid "April" msgstr "" -#: [month]may +#: ../cache/locales.php:667 msgid "May" msgstr "" -#: [month]june +#: ../cache/locales.php:668 msgid "June" msgstr "" -#: [month]july +#: ../cache/locales.php:669 msgid "July" msgstr "" -#: [month]august +#: ../cache/locales.php:670 msgid "August" msgstr "" -#: [month]september +#: ../cache/locales.php:671 msgid "September" msgstr "" -#: [month]october +#: ../cache/locales.php:672 msgid "October" msgstr "" -#: [month]november +#: ../cache/locales.php:673 msgid "November" msgstr "" -#: [month]december +#: ../cache/locales.php:674 msgid "December" msgstr "" -#: [year]title +#: ../cache/locales.php:675 msgid "Year" msgstr "" -#: [date]today +#: ../cache/locales.php:676 msgid "Today" msgstr "" -#: [date]tomorrow +#: ../cache/locales.php:677 msgid "Tomorrow" msgstr "" -#: [date]yesterday +#: ../cache/locales.php:678 msgid "Yesterday" msgstr "" -#: [date]ago -msgid "%d days ago" +#: ../cache/locales.php:679 +#, php-format +msgid " %d days ago" msgstr "" -#: [date]day +#: ../cache/locales.php:680 msgid "day" msgstr "" -#: [post]whats_new +#: ../cache/locales.php:682 msgid "What's new ?" msgstr "" -#: [post]place +#: ../cache/locales.php:683 msgid "Place" msgstr "" -#: [post]by +#: ../cache/locales.php:684 msgid "by" msgstr "" -#: [post]geolocalisation +#: ../cache/locales.php:685 msgid "Geolocalisation" msgstr "" -#: [post]email +#: ../cache/locales.php:686 msgid "email" msgstr "" -#: [post]no_comments +#: ../cache/locales.php:688 msgid "No comments yet" msgstr "" -#: [post]no_comments_stream +#: ../cache/locales.php:689 msgid "No comments stream" msgstr "" -#: [post]no_load +#: ../cache/locales.php:690 msgid "Your feed cannot be loaded." msgstr "" -#: [post]older +#: ../cache/locales.php:691 msgid "Get older posts" msgstr "" -#: [post]new_items +#: ../cache/locales.php:692 +#, php-format msgid "%s new items" msgstr "" -#: [post]comment_error +#: ../cache/locales.php:693 msgid "Comment publication error" msgstr "" -#: [post]comments_older +#: ../cache/locales.php:694 msgid "Show the older comments" msgstr "" -#: [post]comments_loading -msgid "Loading comments..." +#: ../cache/locales.php:695 +msgid "Loading comments ..." msgstr "" -#: [post]comments_get +#: ../cache/locales.php:696 msgid "Get the comments" msgstr "" -#: [post]comment_add +#: ../cache/locales.php:697 msgid "Add a comment" msgstr "Pievienot komentāru" -#: [post]share +#: ../cache/locales.php:698 msgid "Share with" msgstr "Dalīt ar" -#: [post]share_everyone +#: ../cache/locales.php:699 msgid "Everyone" msgstr "Ikviens" -#: [post]share_your_contacts +#: ../cache/locales.php:700 msgid "Your contacts" msgstr "Jūsu kontakti" -#: [post]updated +#: ../cache/locales.php:702 msgid "Updated" msgstr "" -#: [post]content_not_found +#: ../cache/locales.php:703 msgid "Content not found" msgstr "" -#: [post]default_title +#: ../cache/locales.php:704 msgid "Contact publication" msgstr "" -#: [post]comments +#: ../cache/locales.php:705 msgid "Comments" msgstr "" -#: [api]error +#: ../cache/locales.php:706 msgid "The API is not reachable, try again later" msgstr "" -#: [field]type_here +#: ../cache/locales.php:707 msgid "Type here" msgstr "" -#~ msgid "Environment" -#~ msgstr "Vide" - #~ msgid "Invalid name" #~ msgstr "Nederīgs vārds" diff --git a/sources/locales/messages.pot b/sources/locales/messages.pot index 1b7cf72..a3de479 100644 --- a/sources/locales/messages.pot +++ b/sources/locales/messages.pot @@ -25,10 +25,10 @@ #. #-#-#-#-# 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/ConfigData/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Contact/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Group/locales.ini @@ -45,10 +45,10 @@ #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Location/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/LoginAnonymous/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Menu/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/NodeAffiliations/locales.ini @@ -81,17 +81,17 @@ #. #-#-#-#-# 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 ../app/widgets/VisioExt/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../locales/locales.ini #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-08-20 15:17+0200\n" +"POT-Creation-Date: 2015-08-16 15:40+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -584,11 +584,11 @@ msgstr "" msgid "Encrypted message" msgstr "" -#: [message]composing [chats]composing +#: [message]composing msgid "Composing..." msgstr "" -#: [message]paused [chats]paused +#: [message]paused msgid "Paused..." msgstr "" @@ -666,26 +666,6 @@ 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 "" - #: [config]general msgid "General" msgstr "" @@ -722,6 +702,26 @@ msgstr "" msgid "Use desktop notifications" 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 "" + #: [general]legend [general]general_title msgid "General Informations" msgstr "" @@ -957,7 +957,7 @@ msgstr "" #: [group]help_info2 msgid "" "Choose a server and a Group and subscribe to it using the %s button in the " -"header. You can also create a new one using the %s button." +"header. You can alse create a new one using the %s button." msgstr "" #: [group]help_info3 @@ -1181,10 +1181,6 @@ msgstr "" msgid "Update my position" msgstr "" -#: [login_anonymous]bad_username -msgid "Bad nickname (between 4 and 40 characters)" -msgstr "" - #: [error]username msgid "Wrong username" msgstr "" @@ -1313,6 +1309,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 "" @@ -1784,6 +1784,18 @@ msgstr "" msgid "Reset" msgstr "" +#: [visio]call +msgid "Call" +msgstr "" + +#: [visio]hang_up +msgid "Hang up" +msgstr "" + +#: [visio]connection +msgid "Connection" +msgstr "" + #: [visio]hung_up msgid "Hung up" msgstr "" @@ -1800,18 +1812,6 @@ msgstr "" 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 "" diff --git a/sources/locales/nl.po b/sources/locales/nl.po index 3a809b3..d8d5187 100644 --- a/sources/locales/nl.po +++ b/sources/locales/nl.po @@ -1,2733 +1,2600 @@ # Dutch translations for Movim package. # This file is distributed under the same license as the Movim package. # This file was translated from CodingTeam at . -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/About/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Account/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/AccountNext/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/AdHoc/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/AdminDB/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/AdminMain/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/AdminTest/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Api/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Avatar/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Blog/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Bookmark/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Chat/locales.ini -#. #-#-#-#-# 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 -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Group/locales.ini -#. #-#-#-#-# 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 -#. #-#-#-#-# 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 -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Presence/locales.ini -#. #-#-#-#-# 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 -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Share/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Statistics/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Subscribe/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Syndication/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Upload/locales.ini -#. #-#-#-#-# 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-08-20 15:17+0200\n" +"POT-Creation-Date: 2015-06-08 22:06+0200\n" "PO-Revision-Date: 2015-06-09 12:20+0000\n" "Last-Translator: Aivin \n" "Language-Team: LANGUAGE \n" -"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2015-06-18 21:08+0000\n" "X-Generator: Launchpad (build 17570)\n" +"Language: \n" -#: [about]thanks +#: ../cache/locales.php:2 msgid "Thanks" msgstr "Bedankt" -#: [about]developers +#: ../cache/locales.php:3 msgid "Developers" msgstr "Ontwikkelaars" -#: [about]translators +#: ../cache/locales.php:4 msgid "Translators" msgstr "Vertalers" -#: [about]software +#: ../cache/locales.php:5 msgid "Software" msgstr "Software" -#: [about]resources +#: ../cache/locales.php:6 msgid "Resources" msgstr "Hulpmiddelen" -#: [about]api [schema]api [api]title +#: ../cache/locales.php:7 ../cache/locales.php:83 ../cache/locales.php:85 msgid "API" msgstr "API" -#: [about]info -msgid "Movim is an XMPP-based communication platform. All the project, except the following software and resources, is under" -msgstr "Movim is een XMPP-gebaseerd communicatieplatform. Alles van het project, met uitzondering van de volgende software en hulpmiddelen, is onder" +#: ../cache/locales.php:8 +msgid "" +"Movim is an XMPP-based communication platform. All the project, except the " +"following software and resources, is under" +msgstr "" +"Movim is een XMPP-gebaseerd communicatieplatform. Alles van het project, met " +"uitzondering van de volgende software en hulpmiddelen, is onder" -#: [account]title +#: ../cache/locales.php:9 msgid "Account" msgstr "Account" -#: [account]password_change_title -#, fuzzy -msgid "Change my password" -msgstr "Foutief wachtwoord" - -#: [account]password [db]password [credentials]password [form]password -#: [input]password -msgid "Password" -msgstr "Wachtwoord" - -#: [account]password_confirmation -#, fuzzy -msgid "Password confirmation" -msgstr "%s - Configuratie" - -#: [account]password_changed +#: ../cache/locales.php:10 msgid "The password has been updated" msgstr "Je wachtwoord is vernieuwd" -#: [account]password_not_valid +#: ../cache/locales.php:11 msgid "Please provide a valid password (6 characters minimum)" msgstr "Geef een geldig wachtwoord" -#: [account]password_not_same +#: ../cache/locales.php:12 msgid "The provided passwords are not the same" msgstr "De gegeven wachtwoorden zijn niet gelijk" -#: [account]delete_title +#: ../cache/locales.php:13 msgid "Delete my account" msgstr "" -#: [account]delete -#, fuzzy -msgid "Delete your account" -msgstr "Maak een nieuw account aan" +#: ../cache/locales.php:14 +msgid "" +"You will delete your XMPP account and all the relative information linked to " +"it (profile, contacts and publications)." +msgstr "" +"Je verwijdert je XMPP account en alle hieraan gerelateerde informatie " +"(profiel, contacten, publicaties)" -#: [account]delete_text -msgid "You will delete your XMPP account and all the relative information linked to it (profile, contacts and publications)." -msgstr "Je verwijdert je XMPP account en alle hieraan gerelateerde informatie (profiel, contacten, publicaties)" - -#: [account]delete_text_confirm +#: ../cache/locales.php:15 msgid "Are you sure that you want to delete it ?" msgstr "Weet je zeker dat je het wilt verwijderen?" -#: [account]gateway_title -msgid "Gateway" -msgstr "" - -#: [create]title [subscribe]title +#: ../cache/locales.php:16 ../cache/locales.php:411 msgid "Create a new account" msgstr "Maak een nieuw account aan" -#: [create]notfound +#: ../cache/locales.php:17 msgid "No account creation form found on the server" msgstr "Geen vorm van gecreëerd account gevonden in de server" -#: [create]server_on +#: ../cache/locales.php:18 ../cache/locales.php:172 msgid "on" msgstr "op" -#: [create]successfull +#: ../cache/locales.php:19 msgid "Your acccount has been successfully registered" msgstr "Je account is geregistreerd" -#: [create]loading +#: ../cache/locales.php:20 msgid "Loading" msgstr "" -#: [error]not_acceptable +#: ../cache/locales.php:21 msgid "Not Acceptable" msgstr "" -#: [error]service_unavailable +#: ../cache/locales.php:22 msgid "The registration system of this server is currently unavailable" msgstr "" -#: [oob]about -msgid "This server use an external system for the registration, please click on the following URL." +#: ../cache/locales.php:23 +msgid "" +"This server use an external system for the registration, please click on the " +"following URL." msgstr "" -#: [adhoc]title +#: ../cache/locales.php:24 msgid "Actions" msgstr "Acties" -#: [db]legend [schema]database +#: ../cache/locales.php:25 ../cache/locales.php:82 msgid "Database" msgstr "" -#: [db]connect_error +#: ../cache/locales.php:26 msgid "Modl wasn't able to connect to the database" msgstr "Modl was niet in staat om met de database verbonden te worden" -#: [db]connect_success +#: ../cache/locales.php:27 msgid "Movim is connected to the database" msgstr "Movim is verbonden met de database" -#: [db]update +#: ../cache/locales.php:28 msgid "The database need to be updated" msgstr "De database vergt een update" -#: [db]up_to_date +#: ../cache/locales.php:29 msgid "Movim database is up to date" msgstr "" -#: [db]type +#: ../cache/locales.php:30 msgid "Database Type" msgstr "Databasetype" -#: [db]username [credentials]username [input]username +#: ../cache/locales.php:31 ../cache/locales.php:50 ../cache/locales.php:540 msgid "Username" msgstr "Gebruikersnaam" -#: [db]host +#: ../cache/locales.php:32 ../cache/locales.php:51 ../cache/locales.php:282 +#: ../cache/locales.php:541 +msgid "Password" +msgstr "Wachtwoord" + +#: ../cache/locales.php:33 msgid "Host" msgstr "" -#: [db]port +#: ../cache/locales.php:34 msgid "Port" msgstr "" -#: [db]name -#, fuzzy -msgid "Database sName" -msgstr "Databasetype" +#: ../cache/locales.php:35 +msgid "Database Name" +msgstr "" -#: [admin]general +#: ../cache/locales.php:36 msgid "General Settings" msgstr "" -#: [general]theme +#: ../cache/locales.php:37 msgid "Theme" msgstr "" -#: [general]language +#: ../cache/locales.php:38 msgid "Default language" msgstr "" -#: [general]log_verbosity +#: ../cache/locales.php:39 +msgid "Environment" +msgstr "" + +#: ../cache/locales.php:40 msgid "Log verbosity" msgstr "" -#: [general]timezone +#: ../cache/locales.php:41 msgid "Server Timezone" msgstr "Server tijdzone" -#: [general]limit +#: ../cache/locales.php:42 msgid "User folder size limit (in bytes)" msgstr "" -#: [websocket]title +#: ../cache/locales.php:43 msgid "WebSocket Configuration" msgstr "" -#: [websocket]info +#: ../cache/locales.php:44 msgid "Enter here a valid WebSocket URI in the form" msgstr "" -#: [websocket]label +#: ../cache/locales.php:45 msgid "WebSocket URI" msgstr "" -#: [websocket]save_info -msgid "If you change the URI, please restart the daemon to reload the configuration" +#: ../cache/locales.php:46 +msgid "" +"If you change the URI, please restart the daemon to reload the configuration" msgstr "" -#: [websocket]publics +#: ../cache/locales.php:47 msgid "Public WebSockets" msgstr "" -#: [credentials]title +#: ../cache/locales.php:48 msgid "Administration Credential" msgstr "" -#: [credentials]info +#: ../cache/locales.php:49 msgid "Change the default credentials admin/password" msgstr "" -#: [credentials]re_password +#: ../cache/locales.php:52 msgid "Retype password" msgstr "" -#: [whitelist]title +#: ../cache/locales.php:53 msgid "Whitelist - XMPP Server" msgstr "" -#: [whitelist]info1 -msgid "If you want to specify a list of authorized XMPP servers on your Movim pod and forbid the connection on all the others please put their domain name here, with comma (ex: movim.eu,jabber.fr)" +#: ../cache/locales.php:54 +msgid "" +"If you want to specify a list of authorized XMPP servers on your Movim pod " +"and forbid the connection on all the others please put their domain name " +"here, with comma (ex: movim.eu,jabber.fr)" msgstr "" -#: [whitelist]info2 -msgid "Leave this field blank if you allow the access to all the XMPP accounts." -msgstr "Verlaat dit onbeschreven veld als u de toegang tot alle XMPP-accounts toestaat." +#: ../cache/locales.php:55 +msgid "" +"Leave this field blank if you allow the access to all the XMPP accounts." +msgstr "" +"Verlaat dit onbeschreven veld als u de toegang tot alle XMPP-accounts " +"toestaat." -#: [whitelist]label +#: ../cache/locales.php:56 msgid "List of whitelisted XMPP servers" msgstr "" -#: [information]title -#, fuzzy -msgctxt "[information]title" +#: ../cache/locales.php:57 ../cache/locales.php:61 msgid "Information Message" -msgstr "Informatie over verbonden computer" +msgstr "" -#: [information]description +#: ../cache/locales.php:58 msgid "Description" msgstr "" -#: [information]info1 +#: ../cache/locales.php:59 msgid "This message will be displayed on the login page" msgstr "Dit bericht zal worden vertoond op de loginpagina." -#: [information]info2 -#, fuzzy -msgid "Leave this field blank if you dont want to show any message." +#: ../cache/locales.php:60 +msgid "Leave this field blank if you don't want to show any message." msgstr "Verlaat dit onbeschreven veld als u geen enkel bericht wil tonen." -#: [information]label -#, fuzzy -msgctxt "[information]label" -msgid "Information Message" -msgstr "Informatie over verbonden computer" - -#: [log]empty +#: ../cache/locales.php:62 msgid "Empty" msgstr "" -#: [log]syslog +#: ../cache/locales.php:63 msgid "Syslog" msgstr "" -#: [log]syslog_files +#: ../cache/locales.php:64 msgid "Syslog and files" msgstr "" -#: [rewrite]title +#: ../cache/locales.php:65 msgid "URL Rewriting" msgstr "" -#: [rewrite]info +#: ../cache/locales.php:66 msgid "The URL Rewriting can be enabled" msgstr "" -#: [admin]compatibility +#: ../cache/locales.php:67 msgid "General Overview" msgstr "" -#: [compatibility]info -msgid "Movim has found some issues or things that need to be fixed or improved" +#: ../cache/locales.php:68 +msgid "" +"Movim has found some issues or things that need to be fixed or improved" msgstr "" -#: [compatibility]php1 +#: ../cache/locales.php:69 +#, php-format msgid "Update your PHP-Version: %s" msgstr "" -#: [compatibility]php2 +#: ../cache/locales.php:70 msgid "Required: 5.3.0" msgstr "" -#: [compatibility]curl +#: ../cache/locales.php:71 msgid "Install the php5-curl library" msgstr "" -#: [compatibility]imagick +#: ../cache/locales.php:72 msgid "Install the php5-imagick library" msgstr "" -#: [compatibility]gd +#: ../cache/locales.php:73 msgid "Install the php5-gd library" msgstr "" -#: [compatibility]rights -#, fuzzy -msgid "Read and write rights for the webserver in Movims root directory" -msgstr "Enable de lees en schrijfrechten in Movim`s root folder" +#: ../cache/locales.php:74 +msgid "Read and write rights for the webserver in Movim's root directory" +msgstr "" -#: [compatibility]rewrite +#: ../cache/locales.php:75 msgid "The URL Rewriting support is currently disabled" msgstr "" -#: [compatibility]db +#: ../cache/locales.php:76 msgid "The database need to be updated, go to the database panel to fix this" msgstr "" -#: [compatibility]websocket -msgid "WebSocket connection error, check if the Movim Daemon is running and is reachable" +#: ../cache/locales.php:77 +msgid "" +"WebSocket connection error, check if the Movim Daemon is running and is " +"reacheable" msgstr "" -#: [compatibility]xmpp_websocket -msgid "XMPP Websocket connection error, please check the validity of the URL given in the General Configuration" +#: ../cache/locales.php:78 +msgid "" +"XMPP Websocket connection error, please check the validity of the URL given " +"in the General Configuration" msgstr "" -#: [schema]browser +#: ../cache/locales.php:79 msgid "Browser" msgstr "" -#: [schema]movim +#: ../cache/locales.php:80 msgid "Movim Core" msgstr "" -#: [schema]daemon +#: ../cache/locales.php:81 msgid "Movim Daemon" msgstr "" -#: [schema]xmpp +#: ../cache/locales.php:84 msgid "XMPP" msgstr "" -#: [api]info -msgid "Here you can register your pod on the official %sMovim API%s and be listed on %sthe pods page%s." +#: ../cache/locales.php:86 +#, php-format +msgid "" +"Here you can register your pod on the official %sMovim API%s and be listed " +"on %sthe pods page%s." msgstr "" -#: [api]register +#: ../cache/locales.php:87 msgid "Your pod is not registered on the API" msgstr "" -#: [api]registered +#: ../cache/locales.php:88 msgid "Your pod is registered on the API" msgstr "" -#: [api]wait +#: ../cache/locales.php:89 msgid "Your pod is not yet validated" msgstr "" -#: [api]validated +#: ../cache/locales.php:90 msgid "Your pod is validated" msgstr "" -#: [api]unregister -msgid "You asked to be removed from the API, this request will be processed in a couple of hours" +#: ../cache/locales.php:91 +msgid "" +"You asked to be removed from the API, this request will be processed in a " +"couple of hours" msgstr "" -#: [api]conf_updated [config]updated +#: ../cache/locales.php:92 ../cache/locales.php:147 msgid "Configuration updated" msgstr "" -#: [avatar]file +#: ../cache/locales.php:93 msgid "File" msgstr "" -#: [avatar]use_it +#: ../cache/locales.php:94 msgid "Use it" msgstr "" -#: [avatar]webcam +#: ../cache/locales.php:95 msgid "Webcam" msgstr "Webcam" -#: [avatar]cheese +#: ../cache/locales.php:96 msgid "Cheese !" msgstr "Lach !" -#: [avatar]snapshot +#: ../cache/locales.php:97 msgid "Take a webcam snapshot" msgstr "Neem een webcamfoto" -#: [avatar]updated +#: ../cache/locales.php:98 msgid "Avatar Updated" msgstr "Profielfoto geüpdated" -#: [avatar]not_updated +#: ../cache/locales.php:99 msgid "Avatar Not Updated" msgstr "Profielfoto niet geüpdated" -#: [blog]title [feed]title +#: ../cache/locales.php:100 ../cache/locales.php:415 +#, php-format msgid "%s's feed" msgstr "" -#: [blog]empty +#: ../cache/locales.php:101 msgid "This user has not posted anything right now" msgstr "" -#: [title]conferences +#: ../cache/locales.php:102 msgid "Conferences" msgstr "Conferenties" -#: [title]groups [group]empty_title [menu]groups [page]groups +#: ../cache/locales.php:103 ../cache/locales.php:193 ../cache/locales.php:217 +#: ../cache/locales.php:468 msgid "Groups" msgstr "Groepen" -#: [chatroom]add +#: ../cache/locales.php:104 msgid "Add a new Chat Room" msgstr "Voeg een nieuwe chatroom toe" -#: [chatroom]id [chatrooms]id +#: ../cache/locales.php:105 ../cache/locales.php:368 msgid "Chat Room ID" msgstr "Chatroom ID" -#: [chatroom]name -#, fuzzy -msgctxt "[chatroom]name" +#: ../cache/locales.php:106 ../cache/locales.php:116 ../cache/locales.php:156 +#: ../cache/locales.php:361 ../cache/locales.php:369 ../cache/locales.php:424 msgid "Name" msgstr "Naam" -#: [chatroom]nickname [general]nickname [chatrooms]nickname +#: ../cache/locales.php:107 ../cache/locales.php:157 ../cache/locales.php:371 +#: ../cache/locales.php:425 msgid "Nickname" msgstr "bijnaam" -#: [chatroom]autojoin_label +#: ../cache/locales.php:108 msgid "Do you want do join automaticaly this Chat Room ?" msgstr "" -#: [chatroom]bad_id [chatrooms]bad_id +#: ../cache/locales.php:109 ../cache/locales.php:372 msgid "Bad Chatroom ID" msgstr "" -#: [chatroom]empty_name [chatrooms]empty_name +#: ../cache/locales.php:110 ../cache/locales.php:373 msgid "Empty name" msgstr "Lege naam" -#: [bookmarks]updated +#: ../cache/locales.php:111 ../cache/locales.php:380 msgid "Bookmarks updated" msgstr "Favoriet bijgewerkt" -#: [bookmarks]error -#, fuzzy -msgid "An error occured :" +#: ../cache/locales.php:112 +msgid "An error occured : " msgstr "Er is een fout opgetreden : " -#: [bookmarks]configure +#: ../cache/locales.php:113 msgid "Configure" msgstr "" -#: [url]add +#: ../cache/locales.php:114 msgid "Add a new URL" msgstr "" -#: [url]url +#: ../cache/locales.php:115 msgid "URL" msgstr "" -#: [url]name -#, fuzzy -msgctxt "[url]name" -msgid "Name" -msgstr "Naam" - -#: [message]published +#: ../cache/locales.php:117 msgid "Message Published" msgstr "Bericht gepubliceerd" -#: [message]encrypted +#: ../cache/locales.php:118 ../cache/locales.php:138 msgid "Encrypted message" msgstr "" -#: [message]composing [chats]composing +#: ../cache/locales.php:119 msgid "Composing..." msgstr "Bezig met samenstellen..." -#: [message]paused [chats]paused +#: ../cache/locales.php:120 msgid "Paused..." msgstr "" -#: [message]gone +#: ../cache/locales.php:121 msgid "Contact gone" msgstr "" -#: [chat]attention +#: ../cache/locales.php:122 +#, php-format msgid "%s needs your attention" msgstr "%s heeft uw aandacht nodig" -#: [chat]placeholder +#: ../cache/locales.php:123 msgid "Your message here..." msgstr "" -#: [chat]smileys +#: ../cache/locales.php:124 msgid "Smileys" msgstr "" -#: [chat]empty_title [button]chat +#: ../cache/locales.php:125 ../cache/locales.php:139 msgid "Chat" msgstr "Chat" -#: [chat]empty_text +#: ../cache/locales.php:126 msgid "Discuss with your contacts" msgstr "" -#: [chat]frequent [chats]frequent -msgid "Frequent contacts" -msgstr "" - -#: [chatroom]members +#: ../cache/locales.php:127 msgid "Members" msgstr "" -#: [chatroom]connected [chatrooms]connected +#: ../cache/locales.php:128 ../cache/locales.php:376 msgid "Connected to the chatroom" msgstr "Verbonden met de chatroom" -#: [chatroom]disconnected [chatrooms]disconnected +#: ../cache/locales.php:129 ../cache/locales.php:377 msgid "Disconnected from the chatroom" msgstr "" -#: [chatroom]config [group]configuration [page]configuration +#: ../cache/locales.php:130 ../cache/locales.php:200 ../cache/locales.php:469 msgid "Configuration" msgstr "Configuratie" -#: [chatroom]config_saved +#: ../cache/locales.php:131 msgid "Configuration saved" msgstr "" -#: [chatroom]subject +#: ../cache/locales.php:132 msgid "Subject" msgstr "" -#: [chatroom]subject_changed +#: ../cache/locales.php:133 msgid "Subject changed" msgstr "" -#: [chats]empty_title -msgid "No chats yet..." +#: ../cache/locales.php:134 +msgid "Open a new conversation by clicking on the plus button bellow" msgstr "" -#: [chats]empty -msgid "Open a new conversation by clicking on the plus button bellow or visit the Contacts page." -msgstr "" - -#: [chats]add +#: ../cache/locales.php:135 msgid "Chat with a contact" msgstr "" -#: [chats]more +#: ../cache/locales.php:136 +msgid "Frequent contacts" +msgstr "" + +#: ../cache/locales.php:137 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 "" - -#: [config]general +#: ../cache/locales.php:140 msgid "General" msgstr "" -#: [config]language +#: ../cache/locales.php:141 msgid "Language" msgstr "Taal" -#: [config]roster +#: ../cache/locales.php:142 msgid "Roster display" msgstr "" -#: [config]roster_show +#: ../cache/locales.php:143 msgid "Show the offline contacts" msgstr "" -#: [config]roster_hide +#: ../cache/locales.php:144 msgid "Hide the offline contacts" msgstr "" -#: [config]appearence +#: ../cache/locales.php:145 msgid "Appearence" msgstr "" -#: [config]info -#, fuzzy -msgid "This configuration is shared wherever you are connected" +#: ../cache/locales.php:146 +msgid "This configuration is shared wherever you are connected !" msgstr "Deze configuratie is overal gepubliceerd waar u verbonden kan zijn !" -#: [notifications]message +#: ../cache/locales.php:148 msgid "Notify on incoming message" msgstr "" -#: [notifications]desktop +#: ../cache/locales.php:149 msgid "Use desktop notifications" msgstr "" -#: [general]legend [general]general_title +#: ../cache/locales.php:150 +msgid "Data" +msgstr "" + +#: ../cache/locales.php:151 +msgid "Cache" +msgstr "" + +#: ../cache/locales.php:152 ../cache/locales.php:218 ../cache/locales.php:466 +msgid "Contacts" +msgstr "" + +#: ../cache/locales.php:153 ../cache/locales.php:480 +msgid "Posts" +msgstr "" + +#: ../cache/locales.php:154 +msgid "Messages" +msgstr "" + +#: ../cache/locales.php:155 ../cache/locales.php:423 msgid "General Informations" msgstr "Algemene informatie" -#: [general]name [public_groups]name [chatrooms]name -msgid "Name" -msgstr "Naam" - -#: [general]date_of_birth +#: ../cache/locales.php:158 ../cache/locales.php:427 msgid "Date of Birth" msgstr "Geboortedatum" -#: [general]gender +#: ../cache/locales.php:159 ../cache/locales.php:428 msgid "Gender" msgstr "Geslacht" -#: [general]marital +#: ../cache/locales.php:160 ../cache/locales.php:429 msgid "Marital Status" msgstr "Burgerlijke staat" -#: [general]email +#: ../cache/locales.php:161 ../cache/locales.php:426 msgid "Email" msgstr "E-mail" -#: [general]website +#: ../cache/locales.php:162 ../cache/locales.php:430 msgid "Website" msgstr "Website" -#: [general]about +#: ../cache/locales.php:163 ../cache/locales.php:431 msgid "About Me" msgstr "Over Mij" -#: [general]accounts +#: ../cache/locales.php:164 msgid "Other Accounts" msgstr "" -#: [general]tune +#: ../cache/locales.php:165 msgid "Is Listening" msgstr "" -#: [position]legend [position]position_title +#: ../cache/locales.php:166 ../cache/locales.php:432 msgid "Geographic Position" msgstr "Geografische Positie" -#: [position]locality +#: ../cache/locales.php:167 ../cache/locales.php:433 msgid "Locality" msgstr "Plaats" -#: [position]country +#: ../cache/locales.php:168 ../cache/locales.php:434 msgid "Country" msgstr "Land" -#: [mood]title +#: ../cache/locales.php:169 msgid "Mood" msgstr "Stemming" -#: [mood]im +#: ../cache/locales.php:170 msgid "I'm " msgstr "Ik ben " -#: [listen]title +#: ../cache/locales.php:171 msgid "Listening" msgstr "Luisteren" -#: [last]title +#: ../cache/locales.php:173 msgid "Last seen" msgstr "Laatst gezien" -#: [client]title +#: ../cache/locales.php:174 msgid "Client Informations" msgstr "Informatie over verbonden computer" -#: [explore]last_registered +#: ../cache/locales.php:175 msgid "Last registered" msgstr "Laatst geregistreerd" -#: [explore]explore +#: ../cache/locales.php:176 msgid "Find some new friends" msgstr "" -#: [edit]title [button]edit +#: ../cache/locales.php:177 ../cache/locales.php:533 msgid "Edit" msgstr "" -#: [edit]alias +#: ../cache/locales.php:178 msgid "Alias" msgstr "Alias" -#: [edit]group +#: ../cache/locales.php:179 msgid "Group" msgstr "Groep" -#: [edit]updated [roster]updated +#: ../cache/locales.php:180 ../cache/locales.php:400 msgid "Contact updated" msgstr "Contactpersoon geüpdated" -#: [delete]title +#: ../cache/locales.php:181 msgid "Are you sure?" msgstr "" -#: [delete]text -msgid "You are going to delete one of your contacts, please confirm your action" +#: ../cache/locales.php:182 +msgid "" +"You are going to delete one of your contacts, please confirm your action" msgstr "" -#: [age]years +#: ../cache/locales.php:183 +#, php-format msgid "%s years" msgstr "" -#: [blog]last +#: ../cache/locales.php:184 msgid "Last public post" msgstr "" -#: [subscription]to -#, fuzzy -msgid "You can see this contact status" -msgstr "Verwijder dit contact" - -#: [subscription]to_button -msgid "Share my status" -msgstr "" - -#: [subscription]to_text -msgid "But this contact cannot see yours" -msgstr "" - -#: [subscription]from -msgid "You are not subscribed to this contact" -msgstr "" - -#: [subscription]from_button -msgid "Ask to subscribe" -msgstr "" - -#: [subscription]from_text -msgid "But this contact can still see if you are online" -msgstr "" - -#: [subscription]nil -#, fuzzy -msgid "No subscriptions" -msgstr "Haal de aanmeldingen op" - -#: [subscription]nil_button -msgid "Invite" -msgstr "" - -#: [subscription]nil_text -msgid "This contact is in your contact list but there is no subscriptions between the two accounts" -msgstr "" - -#: [group]subscribe +#: ../cache/locales.php:185 msgid "Subscribe" msgstr "" -#: [group]subscribed +#: ../cache/locales.php:186 msgid "Subscribed" msgstr "" -#: [group]unsubscribe +#: ../cache/locales.php:187 msgid "Unsubscribe" msgstr "" -#: [group]unsubscribe_text +#: ../cache/locales.php:188 msgid "You are going to unsubscribe from this Group" msgstr "" -#: [group]unsubscribed +#: ../cache/locales.php:189 msgid "Unsubscribed" msgstr "" -#: [group]share_label +#: ../cache/locales.php:190 msgid "Make your membership to this group public to your friends" msgstr "" -#: [group]label_label +#: ../cache/locales.php:191 msgid "Give a label for this group" msgstr "" -#: [group]sure +#: ../cache/locales.php:192 msgid "Are you sure ?" msgstr "" -#: [group]empty_text +#: ../cache/locales.php:194 msgid "Discover, follow and share" msgstr "" -#: [group]empty +#: ../cache/locales.php:195 msgid "Something bad happened to this group" msgstr "" -#: [group]config_saved +#: ../cache/locales.php:196 msgid "Group configuration saved" msgstr "Groep-configuratie opgeslagen" -#: [group]delete_title +#: ../cache/locales.php:197 msgid "Delete the group" msgstr "" -#: [group]delete_text -msgid "You are going to delete the following group. Please confirm your action." +#: ../cache/locales.php:198 +msgid "" +"You are going to delete the following group. Please confirm your action." msgstr "" -#: [group]delete_clean_text -msgid "It seems that this group doesn't exists anymore. Do you want to remove it from your subscriptions?" +#: ../cache/locales.php:199 +msgid "" +"It seems that this group doesn't exists anymore. Do you want to remove it " +"from your subscriptions?" msgstr "" -#: [group]counter -msgid "%s groups on this server" -msgstr "" - -#: [group]subscriptions [statistics]subscriptions +#: ../cache/locales.php:201 ../cache/locales.php:408 msgid "Subscriptions" msgstr "" -#: [group]servers -#, fuzzy -msgid "Groups servers" -msgstr "Groepen" - -#: [group]search_server -msgid "Search for a new server" -msgstr "" - -#: [group]help_info1 -msgid "Groups are the perfect way to share posts about topics that you like with all the other Movim's users." -msgstr "" - -#: [group]help_info2 -msgid "Choose a server and a Group and subscribe to it using the %s button in the header. You can also create a new one using the %s button." -msgstr "" - -#: [group]help_info3 -msgid "Done? You can now publish a new post in the Group by using the %s button." -msgstr "" - -#: [group]help_info4 -msgid "You will find a list of all your subscribed Groups in My Subscriptions and receive instantly all the new incoming posts in the %sNews%s page." -msgstr "" - -#: [groups]empty_title +#: ../cache/locales.php:202 ../cache/locales.php:290 msgid "Hello" msgstr "" -#: [groups]contact_post [hello]contact_post [menu]contact_post +#: ../cache/locales.php:203 ../cache/locales.php:225 ../cache/locales.php:291 msgid "Contact post" msgstr "" -#: [groups]empty_text1 -msgid "You don't have any subscriptions yet, select a group server above to start exploring." +#: ../cache/locales.php:204 +msgid "" +"You don't have any subscriptions yet, select a group server above to start " +"exploring." msgstr "" -#: [groups]empty_text2 +#: ../cache/locales.php:205 msgid "Subscribe to your favorite feeds by bookmarking them." msgstr "" -#: [groups]subscriptions +#: ../cache/locales.php:206 msgid "My Subscriptions" msgstr "" -#: [groups]add +#: ../cache/locales.php:207 msgid "Create a new Group" msgstr "" -#: [groups]name +#: ../cache/locales.php:208 msgid "Group name" msgstr "" -#: [groups]name_example +#: ../cache/locales.php:209 msgid "My Little Pony - Fan Club" msgstr "My Little Pony - Fan Club" -#: [groups]created +#: ../cache/locales.php:210 msgid "Group created successfully" msgstr "" -#: [groups]deleted +#: ../cache/locales.php:211 msgid "Group deleted successfully" msgstr "" -#: [groups]name_error +#: ../cache/locales.php:212 msgid "Please provide a valid group name (4 characters minimum)" msgstr "" -#: [groups]no_creation +#: ../cache/locales.php:213 msgid "You cannot create a new Group on this server" msgstr "" -#: [groups]sub +#: ../cache/locales.php:214 +#, php-format msgid "%s subscribers" msgstr "" -#: [groups]num +#: ../cache/locales.php:215 +#, php-format msgid "%s posts" msgstr "" -#: [groups]disco_error -msgid "This server doesn't exists" -msgstr "" - -#: [menu]all +#: ../cache/locales.php:216 msgid "All" msgstr "" -#: [menu]refresh +#: ../cache/locales.php:219 msgid "Refresh all the streams" msgstr "" -#: [roster]search -#, fuzzy -msgid "Search in your contacts" -msgstr "Gedeeld met één contact" - -#: [hello]active_contacts -#, fuzzy -msgid "Active contacts" -msgstr "Acties" - -#: [hello]chat -msgid "Go on the Chat page" -msgstr "" - -#: [hello]news [page]news -msgid "News" -msgstr "Nieuws" - -#: [hello]news_page -msgid "Read all theses articles on the News page" -msgstr "" - -#: [hello]blog_title -msgid "Visit your public blog" -msgstr "" - -#: [hello]blog_text -msgid "See your public posts and share them with all your contacts" -msgstr "" - -#: [hello]share_title -msgid "Universal share button" -msgstr "" - -#: [hello]share_text -msgid "Bookmark or drag and drop the following button in your toolbar and use it on all the pages you want to share on Movim" -msgstr "" - -#: [hello]share_button -msgid "Share on Movim" -msgstr "" - -#: [help]faq -msgid "Frequently Asked Questions" -msgstr "" - -#: [banner]title -msgid "What do the little banners refer to ?" -msgstr "Waar verwijzen de kleine banners naar ?" - -#: [banner]info1 -msgid "Thanks to these five little banners, you can quickly identitfy the level of confdentiality applied to the information you provide." -msgstr "Bedankt voor deze vijf kleine banners, kun je kort toelichten wat de mate van betrouwbaarheid is van de informatie die je beschikbaar stelt." - -#: [banner]white -msgid "White, only you can see the information" -msgstr "Wit, alleen jij kan deze informatie zien" - -#: [banner]green -msgid "Green, you have chosen some contacts who can see your information" -msgstr "Groen, je hebt een aantal contacten gekozen die jouw gegevens kunnen zien" - -#: [banner]orange -msgid "Orange, all your contact list can see your information" -msgstr "Oranje, alle contactlijsten kunnen je informatie zien" - -#: [banner]red -msgid "Red, everybody in the XMPP network can see your information" -msgstr "Rood, iedereen in het XMPP-netwerk kan je gegevens zien" - -#: [banner]black -msgid "Black, the whole Internet can see your information" -msgstr "Zwart, iedereen op het internet kan je gegevens zien" - -#: [wiki]question -msgid "Looking for some documentation ?" -msgstr "" - -#: [wiki]button -msgid "Read the Wiki" -msgstr "" - -#: [ml]question -msgid "Talk with us by email ?" -msgstr "" - -#: [ml]button -msgid "Join the Mailing List" -msgstr "" - -#: [chatroom]question -msgid "Chat with the team ?" -msgstr "" - -#: [chatroom]button -msgid "Join the Chatroom" -msgstr "" - -#: [init]location -msgid "Location node created" -msgstr "" - -#: [init]bookmark -msgid "Bookmark node created" -msgstr "" - -#: [init]vcard4 -msgid "Profile node created" -msgstr "" - -#: [init]avatar -msgid "Avatar node created" -msgstr "" - -#: [init]subscriptions -msgid "Subscriptions node created" -msgstr "" - -#: [init]microblog -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 geüpdated" - -#: [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 "" - -#: [error]jid -msgid "Invalid JID" -msgstr "" - -#: [error]empty_challenge -msgid "Empty Challenge from the server" -msgstr "" - -#: [error]dns -msgid "XMPP Domain error, your account is not a correct Jabber ID" -msgstr "" - -#: [error]data_missings -msgid "Some data are missing !" -msgstr "Sommige gegevens zijn verloren !" - -#: [error]wrong_password -msgid "Wrong password" -msgstr "Foutief wachtwoord" - -#: [error]internal -msgid "Internal server error" -msgstr "" - -#: [error]session -msgid "Session error" -msgstr "" - -#: [error]account_created -msgid "Account successfully created" -msgstr "Account succesvol aangemaakt" - -#: [error]xmpp_unauthorized -msgctxt "[error]xmpp_unauthorized" -msgid "Your XMPP server is unauthorized" -msgstr "" - -#: [error]mec_error -msgid "The server takes too much time to respond" -msgstr "De server neemt te veel tijd om te antwoorden" - -#: [error]too_old -msgid "Your web browser is too old to use with Movim." -msgstr "Je browser is te oud om met Movim te gebruiken." - -#: [error]websocket -msgid "Movim cannot talk with the server, please try again later (Websocket connection error)" -msgstr "" - -#: [error]impossible -msgid "Impossible login" -msgstr "" - -#: [error]title -msgid "Oops!" -msgstr "" - -#: [error]default [visio]unknown_error -msgid "Unknown error" -msgstr "Onbekende fout" - -#: [error]login_format -msgid "Invalid username format" -msgstr "" - -#: [error]password_format -msgid "Invalid password format" -msgstr "" - -#: [error]unauthorized -msgctxt "[error]unauthorized" -msgid "Your XMPP server is unauthorized" -msgstr "" - -#: [error]conflict -msgid "A Movim session is already open on an other device" -msgstr "" - -#: [error]wrong_account -msgid "Movim failed to authenticate. You entered wrong data" -msgstr "" - -#: [error]mechanism -msgid "Authentication mechanism not supported by Movim" -msgstr "" - -#: [error]fail_auth -msgid "The XMPP authentification failed" -msgstr "" - -#: [account]title [accounts]accounts_title -msgid "Accounts" -msgstr "" - -#: [form]username -msgid "My address" -msgstr "Mijn adres" - -#: [form]create_one -msgid "Create one !" -msgstr "Maak er een aan !" - -#: [form]another_account -msgid "Another account" -msgstr "" - -#: [form]no_account -msgid "No account yet ?" -msgstr "Nog geen account ?" - -#: [form]whitelist.info -msgid "You can login with accounts from theses servers" -msgstr "" - -#: [form]connected -msgid "Connected" -msgstr "" - -#: [form]population -msgid "Population" -msgstr "" - -#: [menu]empty_title -msgid "No news yet..." -msgstr "" - -#: [menu]empty -msgid "Welcome on your news feed, here you will see all the posts published by your contacts and in the groups you have subscribed." -msgstr "" - -#: [menu]refresh -msgid "Refreshing all the streams" -msgstr "" - -#: [menu]public -msgid "This post is public" -msgstr "" - -#: [affiliations]title -msgid "Manage your members" -msgstr "" - -#: [affiliations]get -msgid "Get the members" -msgstr "" - -#: [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 "" - -#: [notifs]title -msgid "Pending Invitations" -msgstr "" - -#: [notifs]wants_to_talk -msgid "%s wants to talk with you" -msgstr "" - -#: [notifs]manage -msgid "Manage" -msgstr "Beheren" - -#: [post]news_feed -msgid "News Feed" -msgstr "" - -#: [post]placeholder -msgid "Discover and register to the groups you are interested in" -msgstr "" - -#: [post]preview [page]preview -msgid "Preview" -msgstr "" - -#: [post]help [page]help -msgid "Help" -msgstr "Help" - -#: [post]help_more -msgid "More help" -msgstr "" - -#: [post]help_manual -msgid "Markdown syntax manual" -msgstr "" - -#: [post]title -msgid "Title" -msgstr "" - -#: [post]content -msgid "Content" -msgstr "" - -#: [post]link -msgid "Link" -msgstr "Link" - -#: [post]tags -msgid "Tags" -msgstr "" - -#: [post]valid_url [publish]valid_url -msgid "Please enter a valid url" -msgstr "" - -#: [post]no_content_preview [publish]no_content_preview -msgid "No content to preview" -msgstr "" - -#: [post]no_content [publish]no_content [post]empty -msgid "No content" -msgstr "Geen inhoud" - -#: [post]published -msgid "Post published" -msgstr "" - -#: [post]deleted -msgid "Post deleted" -msgstr "" - -#: [post]gallery -msgid "This picture will be added to your gallery" -msgstr "" - -#: [post]hot -msgid "What's Hot" -msgstr "" - -#: [post]hot_text -msgid "Posts recently published in Groups that you are not subscribed (yet)" -msgstr "" - -#: [post]new [publish]new -msgid "New post" -msgstr "" - -#: [post]embed_tip -msgid "You can also use services like Imgur or Flickr to host your picture and paste the link here." -msgstr "" - -#: [post]repost -msgid "This is a re-post from %s" -msgstr "" - -#: [post]repost_profile -msgid "See %s profile" -msgstr "" - -#: [post]public -#, fuzzy -msgid "Publish this post publicly?" -msgstr "Is dit profiel publiekelijk?" - -#: [post]blog_add -msgid "Post published on your blog" -msgstr "" - -#: [post]blog_remove -msgid "Post removed from your blog" -msgstr "" - -#: [post]delete_title [post]delete -msgid "Delete this post" -msgstr "" - -#: [post]delete_text -msgid "You are going to delete this post, please confirm your action" -msgstr "" - -#: [post]comments_disabled -msgid "Comments disabled" -msgstr "" - -#: [post]comment_published -msgid "Comment published" -msgstr "" - -#: [status]disconnect -msgid "Disconnect" -msgstr "" - -#: [status]here -msgid "Your status here !" -msgstr "" - -#: [status]updated -msgid "Status updated" -msgstr "" - -#: [status]status -msgid "Status" -msgstr "" - -#: [status]presence -msgid "Presence" -msgstr "" - -#: [status]online -msgid "Online with Movim" -msgstr "" - -#: [publish]title -msgid "Publish" -msgstr "" - -#: [publish]attach -msgid "Add a file or a picture to your post" -msgstr "" - -#: [publish]no_publication -msgid "You cannot publish a post on this Group" -msgstr "" - -#: [publish]form_filled -msgid "Some fields have been filled in. Do you still want to go back and loose their content?" -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 "" - -#: [rooms]empty_text1 -msgid "You don't have any chatroom yet." -msgstr "" - -#: [rooms]empty_text2 -msgid "Add one by clicking on the add button in the header." -msgstr "" - -#: [chatrooms]title -msgid "Chatrooms" -msgstr "" - -#: [chatrooms]name_placeholder -msgid "My Favorite Room" -msgstr "" - -#: [chatrooms]users -msgid "Users in the room" -msgstr "" - -#: [chatrooms]bad_nickname -msgid "Please enter a correct nickname (2 to 40 characters)" -msgstr "" - -#: [room]anonymous_title -msgid "Public chatroom" -msgstr "" - -#: [room]no_room -msgid "Please provide a room address" -msgstr "" - -#: [room]anonymous_text1 -msgid "You are currently logued as an anonymous user." -msgstr "" - -#: [room]anonymous_text2 -msgid "You can join using your own account or create one on the login page by loging out using the cross in the top-right corner." -msgstr "" - -#: [room]anonymous_login -msgid "Login on %s" -msgstr "" - -#: [room]nick -msgid "Your nickname" -msgstr "" - -#: [roster]ungrouped -msgid "Ungrouped" -msgstr "Groep opgeheven" - -#: [roster]show_disconnected -msgid "Show disconnected contacts" -msgstr "" - -#: [roster]hide_disconnected -msgid "Hide disconnected contacts" -msgstr "" - -#: [roster]show_group -msgid "Show group %s" -msgstr "" - -#: [roster]hide_group -msgid "Hide group %s" -msgstr "" - -#: [roster]jid_error -msgid "Please enter a valid Jabber ID" -msgstr "Vul een geldig Jabber ID in" - -#: [roster]no_contacts_title -#, fuzzy -msgid "No contacts ?" -msgstr "Geen inhoud" - -#: [roster]no_contacts_text -msgid "You can add one using the + button bellow" -msgstr "" - -#: [roster]show_hide -msgid "Show/Hide" -msgstr "" - -#: [roster]add_contact_info1 -msgid "Enter the Jabber ID of your contact." -msgstr "" - -#: [roster]add_contact_info2 -msgid "Press enter to validate." -msgstr "" - -#: [roster]jid -msgid "JID" -msgstr "" - -#: [roster]results -msgid "Results" -msgstr "" - -#: [roster]added -msgid "Contact added" -msgstr "" - -#: [roster]deleted -msgid "Contact deleted" -msgstr "" - -#: [roster]search +#: ../cache/locales.php:220 ../cache/locales.php:402 msgid "Search" msgstr "Zoeken" -#: [share]error +#: ../cache/locales.php:221 +msgid "Go on the Chat page" +msgstr "" + +#: ../cache/locales.php:222 +msgid "Read all theses articles on the News page" +msgstr "" + +#: ../cache/locales.php:223 +msgid "Visit your public blog" +msgstr "" + +#: ../cache/locales.php:224 +msgid "See your public posts and share them with all your contacts" +msgstr "" + +#: ../cache/locales.php:226 +msgid "Universal share button" +msgstr "" + +#: ../cache/locales.php:227 +msgid "" +"Bookmark or drag and drop the following button in your toolbar and use it on " +"all the pages you want to share on Movim" +msgstr "" + +#: ../cache/locales.php:228 +msgid "Share on Movim" +msgstr "" + +#: ../cache/locales.php:229 +msgid "Frequently Asked Questions" +msgstr "" + +#: ../cache/locales.php:230 +msgid "What do the little banners refer to ?" +msgstr "Waar verwijzen de kleine banners naar ?" + +#: ../cache/locales.php:231 +msgid "" +"Thanks to these five little banners, you can quickly identitfy the level of " +"confdentiality applied to the information you provide." +msgstr "" +"Bedankt voor deze vijf kleine banners, kun je kort toelichten wat de mate " +"van betrouwbaarheid is van de informatie die je beschikbaar stelt." + +#: ../cache/locales.php:232 +msgid "White, only you can see the information" +msgstr "Wit, alleen jij kan deze informatie zien" + +#: ../cache/locales.php:233 +msgid "Green, you have chosen some contacts who can see your information" +msgstr "" +"Groen, je hebt een aantal contacten gekozen die jouw gegevens kunnen zien" + +#: ../cache/locales.php:234 +msgid "Orange, all your contact list can see your information" +msgstr "Oranje, alle contactlijsten kunnen je informatie zien" + +#: ../cache/locales.php:235 +msgid "Red, everybody in the XMPP network can see your information" +msgstr "Rood, iedereen in het XMPP-netwerk kan je gegevens zien" + +#: ../cache/locales.php:236 +msgid "Black, the whole Internet can see your information" +msgstr "Zwart, iedereen op het internet kan je gegevens zien" + +#: ../cache/locales.php:237 +msgid "Looking for some documentation ?" +msgstr "" + +#: ../cache/locales.php:238 +msgid "Read the Wiki" +msgstr "" + +#: ../cache/locales.php:239 +msgid "Talk with us by email ?" +msgstr "" + +#: ../cache/locales.php:240 +msgid "Join the Mailing List" +msgstr "" + +#: ../cache/locales.php:241 +msgid "Chat with the team ?" +msgstr "" + +#: ../cache/locales.php:242 +msgid "Join the Chatroom" +msgstr "" + +#: ../cache/locales.php:243 +msgid "Location node created" +msgstr "" + +#: ../cache/locales.php:244 +msgid "Bookmark node created" +msgstr "" + +#: ../cache/locales.php:245 +msgid "Profile node created" +msgstr "" + +#: ../cache/locales.php:246 +msgid "Avatar node created" +msgstr "" + +#: ../cache/locales.php:247 +msgid "Subscriptions node created" +msgstr "" + +#: ../cache/locales.php:248 +msgid "Microblog node created" +msgstr "" + +#: ../cache/locales.php:249 +msgid "Location" +msgstr "Locatie" + +#: ../cache/locales.php:250 +msgid "Wrong position" +msgstr "Verkeerde positie" + +#: ../cache/locales.php:251 +msgid "Location updated" +msgstr "Locatie geüpdated" + +#: ../cache/locales.php:252 +msgid "Update my position" +msgstr "" + +#: ../cache/locales.php:253 +msgid "Wrong username" +msgstr "" + +#: ../cache/locales.php:254 +msgid "Invalid JID" +msgstr "" + +#: ../cache/locales.php:255 +msgid "Empty Challenge from the server" +msgstr "" + +#: ../cache/locales.php:256 +msgid "XMPP Domain error, your account is not a correct Jabber ID" +msgstr "" + +#: ../cache/locales.php:257 +msgid "Some data are missing !" +msgstr "Sommige gegevens zijn verloren !" + +#: ../cache/locales.php:258 +msgid "Wrong password" +msgstr "Foutief wachtwoord" + +#: ../cache/locales.php:259 +msgid "Internal server error" +msgstr "" + +#: ../cache/locales.php:260 +msgid "Session error" +msgstr "" + +#: ../cache/locales.php:261 +msgid "Account successfully created" +msgstr "Account succesvol aangemaakt" + +#: ../cache/locales.php:262 ../cache/locales.php:271 +msgid "Your XMPP server is unauthorized" +msgstr "" + +#: ../cache/locales.php:263 +msgid "The server takes too much time to respond" +msgstr "De server neemt te veel tijd om te antwoorden" + +#: ../cache/locales.php:264 +msgid "Your web browser is too old to use with Movim." +msgstr "Je browser is te oud om met Movim te gebruiken." + +#: ../cache/locales.php:265 +msgid "" +"Movim cannot talk with the server, please try again later (Websocket " +"connection error)" +msgstr "" + +#: ../cache/locales.php:266 +msgid "Impossible login" +msgstr "" + +#: ../cache/locales.php:267 +msgid "Oops!" +msgstr "" + +#: ../cache/locales.php:268 ../cache/locales.php:449 ../cache/locales.php:455 +msgid "Unknown error" +msgstr "Onbekende fout" + +#: ../cache/locales.php:269 +msgid "Invalid username format" +msgstr "" + +#: ../cache/locales.php:270 +msgid "Invalid password format" +msgstr "" + +#: ../cache/locales.php:272 +msgid "A Movim session is already open on an other device" +msgstr "" + +#: ../cache/locales.php:273 +msgid "Movim failed to authenticate. You entered wrong data" +msgstr "" + +#: ../cache/locales.php:274 +msgid "Authentication mechanism not supported by Movim" +msgstr "" + +#: ../cache/locales.php:275 +msgid "The XMPP authentification failed" +msgstr "" + +#: ../cache/locales.php:276 +#, php-format +msgid "" +"You can login with Facebook (chat only) using %syour.id@chat.facebook.com%s " +"and your password" +msgstr "" +"U kunt inloggen met Facebook (alleen chat), gebruik " +"%syour.id@chat.facebook.com%s en uw wachtwoord" + +#: ../cache/locales.php:277 +#, php-format +msgid "%sGmail accounts are also compatible%s but are not fully supported" +msgstr "" + +#: ../cache/locales.php:278 +msgid "You can login using your favorite Jabber account" +msgstr "" + +#: ../cache/locales.php:279 +msgid "or with our demonstration account" +msgstr "" + +#: ../cache/locales.php:280 ../cache/locales.php:435 +msgid "Accounts" +msgstr "" + +#: ../cache/locales.php:281 +msgid "My address" +msgstr "Mijn adres" + +#: ../cache/locales.php:283 +msgid "Create one !" +msgstr "Maak er een aan !" + +#: ../cache/locales.php:284 +msgid "No account yet ?" +msgstr "Nog geen account ?" + +#: ../cache/locales.php:285 +msgid "Another account" +msgstr "" + +#: ../cache/locales.php:286 +msgid "You can login with accounts from theses servers" +msgstr "" + +#: ../cache/locales.php:287 +msgid "Connected" +msgstr "" + +#: ../cache/locales.php:288 +msgid "Population" +msgstr "" + +#: ../cache/locales.php:289 +msgid "Bad nickname (between 4 and 40 characters)" +msgstr "" + +#: ../cache/locales.php:292 +msgid "" +"Welcome on your news feed, here you will see all the posts published in the " +"groups you have subscribed." +msgstr "" + +#: ../cache/locales.php:293 +msgid "Refreshing all the streams" +msgstr "" + +#: ../cache/locales.php:294 +msgid "This post is public" +msgstr "" + +#: ../cache/locales.php:295 +msgid "Manage your members" +msgstr "" + +#: ../cache/locales.php:296 +msgid "Get the members" +msgstr "" + +#: ../cache/locales.php:297 +msgid "Affiliations saved" +msgstr "" + +#: ../cache/locales.php:298 +msgid "Manage your subscriptions" +msgstr "Beheer je aanmeldingen" + +#: ../cache/locales.php:299 +msgid "Manage the subscriptions" +msgstr "Beheer de aanmeldingen" + +#: ../cache/locales.php:300 +msgid "Get the subscriptions" +msgstr "Haal de aanmeldingen op" + +#: ../cache/locales.php:301 +msgid "Subscriptions saved" +msgstr "" + +#: ../cache/locales.php:302 +msgid "Pending Invitations" +msgstr "" + +#: ../cache/locales.php:303 +#, php-format +msgid "%s wants to talk with you" +msgstr "" + +#: ../cache/locales.php:304 +msgid "Manage" +msgstr "Beheren" + +#: ../cache/locales.php:305 ../cache/locales.php:338 +msgid "News Feed" +msgstr "" + +#: ../cache/locales.php:306 ../cache/locales.php:339 +msgid "Discover and register to the groups you are interested in" +msgstr "" + +#: ../cache/locales.php:307 ../cache/locales.php:340 ../cache/locales.php:482 +msgid "Preview" +msgstr "" + +#: ../cache/locales.php:308 ../cache/locales.php:341 ../cache/locales.php:478 +msgid "Help" +msgstr "Help" + +#: ../cache/locales.php:309 ../cache/locales.php:342 +msgid "More help" +msgstr "" + +#: ../cache/locales.php:310 ../cache/locales.php:343 +msgid "Markdown syntax manual" +msgstr "" + +#: ../cache/locales.php:311 ../cache/locales.php:344 ../cache/locales.php:681 +msgid "Title" +msgstr "" + +#: ../cache/locales.php:312 ../cache/locales.php:345 +msgid "Content" +msgstr "" + +#: ../cache/locales.php:313 ../cache/locales.php:346 +msgid "Link" +msgstr "Link" + +#: ../cache/locales.php:314 ../cache/locales.php:347 +msgid "Tags" +msgstr "" + +#: ../cache/locales.php:315 ../cache/locales.php:348 +msgid "Please enter a valid url" +msgstr "" + +#: ../cache/locales.php:316 ../cache/locales.php:349 +msgid "No content to preview" +msgstr "" + +#: ../cache/locales.php:317 ../cache/locales.php:350 ../cache/locales.php:687 +msgid "No content" +msgstr "Geen inhoud" + +#: ../cache/locales.php:318 ../cache/locales.php:351 +msgid "Post published" +msgstr "" + +#: ../cache/locales.php:319 ../cache/locales.php:352 +msgid "Post deleted" +msgstr "" + +#: ../cache/locales.php:320 ../cache/locales.php:353 +msgid "This picture will be added to your gallery" +msgstr "" + +#: ../cache/locales.php:321 ../cache/locales.php:354 +msgid "What's Hot" +msgstr "" + +#: ../cache/locales.php:322 ../cache/locales.php:355 +msgid "New post" +msgstr "" + +#: ../cache/locales.php:323 ../cache/locales.php:357 +msgid "" +"You can also use services like Imgur or Flickr to host your picture and " +"paste the link here." +msgstr "" + +#: ../cache/locales.php:324 +#, php-format +msgid "This is a re-post from %s" +msgstr "" + +#: ../cache/locales.php:325 +#, php-format +msgid "See %s profile" +msgstr "" + +#: ../cache/locales.php:326 +msgid "Publish this post on your public feed?" +msgstr "" + +#: ../cache/locales.php:327 +msgid "Post published on your blog" +msgstr "" + +#: ../cache/locales.php:328 +msgid "Post removed from your blog" +msgstr "" + +#: ../cache/locales.php:329 ../cache/locales.php:701 +msgid "Delete this post" +msgstr "" + +#: ../cache/locales.php:330 +msgid "You are going to delete this post, please confirm your action" +msgstr "" + +#: ../cache/locales.php:331 +msgid "Comments disabled" +msgstr "" + +#: ../cache/locales.php:332 +msgid "Comment published" +msgstr "" + +#: ../cache/locales.php:333 +msgid "Disconnect" +msgstr "" + +#: ../cache/locales.php:334 +msgid "Your status here !" +msgstr "" + +#: ../cache/locales.php:335 +msgid "Status updated" +msgstr "" + +#: ../cache/locales.php:336 +msgid "Status" +msgstr "" + +#: ../cache/locales.php:337 +msgid "Presence" +msgstr "" + +#: ../cache/locales.php:356 +msgid "Publish" +msgstr "" + +#: ../cache/locales.php:358 +msgid "You cannot publish a post on this Group" +msgstr "" + +#: ../cache/locales.php:359 +msgid "" +"Some fields have been filled in. Do you still want to go back and loose " +"their content?" +msgstr "" + +#: ../cache/locales.php:360 +msgid "Shared" +msgstr "" + +#: ../cache/locales.php:362 +#, php-format +msgid "%s has been added to your public groups" +msgstr "" + +#: ../cache/locales.php:363 +#, php-format +msgid "%s has been removed from your public groups" +msgstr "" + +#: ../cache/locales.php:364 +msgid "Add a chatroom" +msgstr "" + +#: ../cache/locales.php:365 +msgid "You don't have any chatroom yet." +msgstr "" + +#: ../cache/locales.php:366 +msgid "Add one by clicking on the add button in the header." +msgstr "" + +#: ../cache/locales.php:367 +msgid "Chatrooms" +msgstr "" + +#: ../cache/locales.php:370 +msgid "My Favorite Room" +msgstr "" + +#: ../cache/locales.php:374 +msgid "Remove a chatroom" +msgstr "" + +#: ../cache/locales.php:375 +msgid "" +"You are going to remove the following chatroom. Please confirm your action." +msgstr "" + +#: ../cache/locales.php:378 +msgid "Users in the room" +msgstr "" + +#: ../cache/locales.php:379 +msgid "Please enter a correct nickname (6 to 40 characters)" +msgstr "" + +#: ../cache/locales.php:381 +msgid "Public chatroom" +msgstr "" + +#: ../cache/locales.php:382 +msgid "Please provide a room address" +msgstr "" + +#: ../cache/locales.php:383 +msgid "You are currently logued as an anonymous user." +msgstr "" + +#: ../cache/locales.php:384 +msgid "" +"You can join using your own account or create one on the login page by " +"loging out using the cross in the top-right corner." +msgstr "" + +#: ../cache/locales.php:385 +#, php-format +msgid "Login on %s" +msgstr "" + +#: ../cache/locales.php:386 +msgid "Your nickname" +msgstr "" + +#: ../cache/locales.php:387 +msgid "Ungrouped" +msgstr "Groep opgeheven" + +#: ../cache/locales.php:388 +msgid "Show disconnected contacts" +msgstr "" + +#: ../cache/locales.php:389 +msgid "Hide disconnected contacts" +msgstr "" + +#: ../cache/locales.php:390 +#, php-format +msgid "Show group %s" +msgstr "" + +#: ../cache/locales.php:391 +#, php-format +msgid "Hide group %s" +msgstr "" + +#: ../cache/locales.php:392 +msgid "Please enter a valid Jabber ID" +msgstr "Vul een geldig Jabber ID in" + +#: ../cache/locales.php:393 +msgid "" +"No contacts ? You can add one using the + button bellow or going to the " +"Explore page" +msgstr "" + +#: ../cache/locales.php:394 +msgid "Show/Hide" +msgstr "" + +#: ../cache/locales.php:395 +msgid "Enter the Jabber ID of your contact." +msgstr "" + +#: ../cache/locales.php:396 +msgid "Press enter to validate." +msgstr "" + +#: ../cache/locales.php:397 +msgid "JID" +msgstr "" + +#: ../cache/locales.php:398 +msgid "Results" +msgstr "" + +#: ../cache/locales.php:399 +msgid "Contact added" +msgstr "" + +#: ../cache/locales.php:401 +msgid "Contact deleted" +msgstr "" + +#: ../cache/locales.php:403 msgid "This is not a valid url" msgstr "" -#: [share]success +#: ../cache/locales.php:404 msgid "Sharing the URL" msgstr "" -#: [statistics]title +#: ../cache/locales.php:405 msgid "Statistics" msgstr "" -#: [statistics]since +#: ../cache/locales.php:406 msgid "Since" msgstr "" -#: [statistics]sessions +#: ../cache/locales.php:407 msgid "Sessions" msgstr "" -#: [statistics]monthly_sub +#: ../cache/locales.php:409 msgid "Monthly Subscriptions" msgstr "" -#: [statistics]monthly_sub_cum +#: ../cache/locales.php:410 msgid "Monthly Subscriptions Cumulated" msgstr "" -#: [subscribe]info -msgid "Movim is a decentralized social network, before creating a new account you need to choose a server to register." +#: ../cache/locales.php:412 +msgid "" +"Movim is a decentralized social network, before creating a new account you " +"need to choose a server to register." msgstr "" -#: [subscribe]server_question +#: ../cache/locales.php:413 msgid "Your server here ?" msgstr "" -#: [subscribe]server_contact +#: ../cache/locales.php:414 msgid "Contact us to add yours to the officially supported servers list" msgstr "" -#: [feed]nope +#: ../cache/locales.php:416 msgid "No public feed for this contact" msgstr "" -#: [feed]nope_contact +#: ../cache/locales.php:417 msgid "No contact specified" msgstr "" -#: [upload]title -#, fuzzy -msgid "Upload a file" -msgstr "Uploaden" - -#: [upload]choose -msgid "Choose a file to upload" -msgstr "" - -#: [vcard]title [page]profile +#: ../cache/locales.php:418 ../cache/locales.php:473 msgid "Profile" msgstr "Profiel" -#: [vcard]updated +#: ../cache/locales.php:419 msgid "Profile Updated" msgstr "Profiel bijgewerkt" -#: [vcard]not_updated +#: ../cache/locales.php:420 msgid "Profile Not Updated" msgstr "" -#: [vcard]public +#: ../cache/locales.php:421 msgid "Your profile is now public" msgstr "" -#: [vcard]restricted +#: ../cache/locales.php:422 msgid "Your profile is now restricted" msgstr "" -#: [general]nickname -#, fuzzy -msgctxt "[general]nickname" -msgid "Nickname" -msgstr "bijnaam" - -#: [accounts]twitter +#: ../cache/locales.php:436 msgid "Twitter" msgstr "" -#: [accounts]skype +#: ../cache/locales.php:437 msgid "Skype" msgstr "" -#: [accounts]yahoo +#: ../cache/locales.php:438 msgid "Yahoo" msgstr "" -#: [accounts]accounts_nickname -#, fuzzy -msgctxt "[accounts]accounts_nickname" -msgid "Nickname" -msgstr "bijnaam" - -#: [accounts]accounts_yahoo -#, fuzzy -msgid "Yahoo Account" -msgstr "Account" - -#: [privacy]privacy_title +#: ../cache/locales.php:439 msgid "Privacy Level" msgstr "Privacy-Niveau" -#: [privacy]privacy_question +#: ../cache/locales.php:440 msgid "Is this profile public ?" msgstr "Is dit profiel publiekelijk?" -#: [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." -msgstr "Let op! Door je profiel publiek te maken zal alle bovenstaande informatie beschikbaar zijn voor alle Movim-gebruikers and het hele internet." - -#: [save]submit [button]submit -msgid "Submit" -msgstr "Zenden" - -#: [save]reset [button]reset -msgid "Reset" -msgstr "Reset" - -#: [visio]hung_up -msgid "Hung up" +#: ../cache/locales.php:441 +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." msgstr "" +"Let op! Door je profiel publiek te maken zal alle bovenstaande informatie " +"beschikbaar zijn voor alle Movim-gebruikers and het hele internet." -#: [visio]busy -msgid "Your contact is busy" -msgstr "" - -#: [visio]declined -msgid "Declined" -msgstr "" - -#: [visio]calling -msgid "Is calling you" -msgstr "" - -#: [visio]call +#: ../cache/locales.php:442 msgid "Call" msgstr "" -#: [visio]hang_up +#: ../cache/locales.php:443 msgid "Hang up" msgstr "" -#: [visio]connection +#: ../cache/locales.php:444 msgid "Connection" msgstr "" -#: [global]no_js +#: ../cache/locales.php:445 ../cache/locales.php:451 +msgid "Hung up" +msgstr "" + +#: ../cache/locales.php:446 ../cache/locales.php:452 +msgid "Your contact is busy" +msgstr "" + +#: ../cache/locales.php:447 ../cache/locales.php:453 +msgid "Declined" +msgstr "" + +#: ../cache/locales.php:448 ../cache/locales.php:454 +msgid "Remote application incompatible" +msgstr "" + +#: ../cache/locales.php:450 ../cache/locales.php:456 +msgid "Is calling you" +msgstr "" + +#: ../cache/locales.php:457 msgid "You don't have javascript enabled. Good luck with that." msgstr "" -#: [global]description -msgid "Movim is a kickass distributed social networking platform that protect your privacy an comes with a set of awesome features." +#: ../cache/locales.php:458 +msgid "" +"Movim is a kickass distributed social networking platform that protect your " +"privacy an comes with a set of awesome features." msgstr "" -#: [page]administration +#: ../cache/locales.php:459 msgid "Administration" msgstr "Beheer" -#: [page]home +#: ../cache/locales.php:460 msgid "Home" msgstr "Home" -#: [page]discover +#: ../cache/locales.php:461 msgid "Discover" msgstr "" -#: [page]explore +#: ../cache/locales.php:462 msgid "Explore" msgstr "Verkennen" -#: [page]account_creation +#: ../cache/locales.php:463 msgid "Account Creation" msgstr "Account aanmaken" -#: [page]avatar +#: ../cache/locales.php:464 +msgid "News" +msgstr "Nieuws" + +#: ../cache/locales.php:465 msgid "Avatar" msgstr "Avatar" -#: [page]chats +#: ../cache/locales.php:467 msgid "Chats" msgstr "" -#: [page]server +#: ../cache/locales.php:470 msgid "Server" msgstr "Server" -#: [page]public_groups +#: ../cache/locales.php:471 msgid "Public Groups" msgstr "" -#: [page]viewer +#: ../cache/locales.php:472 msgid "Viewer" msgstr "Viewer" -#: [page]media +#: ../cache/locales.php:474 msgid "Media" msgstr "Media" -#: [page]blog +#: ../cache/locales.php:475 msgid "Blog" msgstr "Blog" -#: [page]about +#: ../cache/locales.php:476 msgid "About" msgstr "" -#: [page]login +#: ../cache/locales.php:477 msgid "Login" msgstr "" -#: [page]feed +#: ../cache/locales.php:479 msgid "Feed" msgstr "Feed" -#: [page]gallery +#: ../cache/locales.php:481 msgid "Gallery" msgstr "" -#: [page]visio +#: ../cache/locales.php:483 msgid "Visio-conference" msgstr "" -#: [page]pods +#: ../cache/locales.php:484 msgid "Pods" msgstr "" -#: [page]share +#: ../cache/locales.php:485 msgid "Share" msgstr "" -#: [page]room +#: ../cache/locales.php:486 msgid "Room" msgstr "" -#: [error]error +#: ../cache/locales.php:487 +#, php-format msgid "Error: %s" msgstr "Error: %s" -#: [error]cannot_load_file +#: ../cache/locales.php:488 +#, php-format msgid "Cannot load file '%s'" msgstr "Kan bestand %s niet laden" -#: [error]route +#: ../cache/locales.php:489 +#, php-format msgid "Route error, please set all the parameters for the page %s" msgstr "Routeerfout, plaats alle argumenten voor de pagina %s" -#: [error]widget_load_error +#: ../cache/locales.php:490 +#, php-format msgid "Requested widget '%s' doesn't exist." msgstr "" -#: [error]widget_call_error +#: ../cache/locales.php:491 +#, php-format msgid "Requested event '%s' not registered." msgstr "" -#: [error]whoops +#: ../cache/locales.php:492 msgid "Whoops!" msgstr "" -#: [error]media_not_found +#: ../cache/locales.php:493 msgid "It seem that you don't have any pictures here?" msgstr "" -#: [error]media_ask_upload +#: ../cache/locales.php:494 msgid "You can try to upload a couple by going to the Media page" msgstr "" -#: [title]about +#: ../cache/locales.php:495 +#, php-format msgid "%s - About" msgstr "" -#: [title]account +#: ../cache/locales.php:496 +#, php-format msgid "%s - Account" msgstr "" -#: [title]administration +#: ../cache/locales.php:497 +#, php-format msgid "%s - Administration Panel" msgstr "" -#: [title]blog +#: ../cache/locales.php:498 +#, php-format msgid "%s - Blog" msgstr "" -#: [title]configuration +#: ../cache/locales.php:499 +#, php-format msgid "%s - Configuration" msgstr "%s - Configuratie" -#: [title]discover +#: ../cache/locales.php:500 +#, php-format msgid "%s - Discover" msgstr "" -#: [title]explore +#: ../cache/locales.php:501 +#, php-format msgid "%s - Explore" msgstr "" -#: [title]help +#: ../cache/locales.php:502 +#, php-format msgid "%s - Help Page" msgstr "" -#: [title]login +#: ../cache/locales.php:503 +#, php-format msgid "%s - Login to Movim" msgstr "%s - Inlogging bij Movim" -#: [title]main +#: ../cache/locales.php:504 +#, php-format msgid "%s - Welcome to Movim" msgstr "%s - Welkom bij Movim" -#: [title]media +#: ../cache/locales.php:505 +#, php-format msgid "%s - Media" msgstr "" -#: [title]news +#: ../cache/locales.php:506 +#, php-format msgid "%s - News" msgstr "" -#: [title]node_configuration +#: ../cache/locales.php:507 +#, php-format msgid "%s - Group Configuration" msgstr "" -#: [title]node +#: ../cache/locales.php:508 +#, php-format msgid "%s - Group" msgstr "" -#: [title]not_found +#: ../cache/locales.php:509 +#, php-format msgid "%s - 404" msgstr "" -#: [title]profile +#: ../cache/locales.php:510 +#, php-format msgid "%s - Profile" msgstr "" -#: [title]server +#: ../cache/locales.php:511 +#, php-format msgid "%s - Server" msgstr "" -#: [button]validate +#: ../cache/locales.php:512 msgid "Validate" msgstr "Bevestig" -#: [button]refresh +#: ../cache/locales.php:513 msgid "Refresh" msgstr "Vernieuwen" -#: [button]add +#: ../cache/locales.php:514 msgid "Add" msgstr "Toevoegen" -#: [button]delete +#: ../cache/locales.php:515 msgid "Delete" msgstr "" -#: [button]cancel +#: ../cache/locales.php:516 +msgid "Remove" +msgstr "" + +#: ../cache/locales.php:517 msgid "Cancel" msgstr "" -#: [button]close +#: ../cache/locales.php:518 msgid "Close" msgstr "Sluit" -#: [button]update +#: ../cache/locales.php:519 msgid "Update" msgstr "" -#: [button]updating +#: ../cache/locales.php:520 msgid "Updating" msgstr "" -#: [button]submitting +#: ../cache/locales.php:521 +msgid "Submit" +msgstr "Zenden" + +#: ../cache/locales.php:522 msgid "Submitting" msgstr "Bezig met opslaan" -#: [button]register +#: ../cache/locales.php:523 +msgid "Reset" +msgstr "Reset" + +#: ../cache/locales.php:524 msgid "Register" msgstr "" -#: [button]unregister +#: ../cache/locales.php:525 msgid "Unregister" msgstr "" -#: [button]save +#: ../cache/locales.php:526 msgid "Save" msgstr "Opslaan" -#: [button]clear +#: ../cache/locales.php:527 msgid "Clear" msgstr "" -#: [button]upload +#: ../cache/locales.php:528 msgid "Upload" msgstr "Uploaden" -#: [button]come_in +#: ../cache/locales.php:529 msgid "Come in!" msgstr "Kom in!" -#: [button]connecting +#: ../cache/locales.php:530 msgid "Connecting" msgstr "" -#: [button]bool_yes +#: ../cache/locales.php:531 msgid "Yes" msgstr "Ja" -#: [button]bool_no +#: ../cache/locales.php:532 msgid "No" msgstr "Nee" -#: [button]return +#: ../cache/locales.php:534 msgid "Return" msgstr "" -#: [button]accept +#: ../cache/locales.php:535 msgid "Accept" msgstr "Accepteer" -#: [button]refuse +#: ../cache/locales.php:536 msgid "Refuse" msgstr "" -#: [button]next +#: ../cache/locales.php:537 msgid "Next" msgstr "" -#: [button]previous +#: ../cache/locales.php:538 msgid "Previous" msgstr "" -#: [step]step +#: ../cache/locales.php:539 +#, php-format msgid "Step %s" msgstr "" -#: [day]title +#: ../cache/locales.php:542 msgid "Day" msgstr "Dag" -#: [day]monday +#: ../cache/locales.php:543 msgid "Monday" msgstr "Maandag" -#: [day]tuesday +#: ../cache/locales.php:544 msgid "Tuesday" msgstr "Dinsdag" -#: [day]wednesday +#: ../cache/locales.php:545 msgid "Wednesday" msgstr "Woensdag" -#: [day]thursday +#: ../cache/locales.php:546 msgid "Thursday" msgstr "Donderdag" -#: [day]friday +#: ../cache/locales.php:547 msgid "Friday" msgstr "Vrijdag" -#: [day]saturday +#: ../cache/locales.php:548 msgid "Saturday" msgstr "Zaterdag" -#: [day]sunday +#: ../cache/locales.php:549 msgid "Sunday" msgstr "" -#: [gender]nil -#, fuzzy -msgctxt "[gender]nil" +#: ../cache/locales.php:550 ../cache/locales.php:559 msgid "None" msgstr "Geen" -#: [gender]male +#: ../cache/locales.php:551 msgid "Male" msgstr "Mannelijk" -#: [gender]female +#: ../cache/locales.php:552 msgid "Female" msgstr "Vrouwelijk" -#: [gender]other +#: ../cache/locales.php:553 msgid "Other" msgstr "Andere" -#: [client]bot +#: ../cache/locales.php:554 msgid "Bot" msgstr "Bot" -#: [client]desktop +#: ../cache/locales.php:555 msgid "Desktop" msgstr "Bureaublad" -#: [client]phone +#: ../cache/locales.php:556 msgid "Phone" msgstr "Telefoon" -#: [client]web +#: ../cache/locales.php:557 msgid "Web" msgstr "Web" -#: [client]registered +#: ../cache/locales.php:558 msgid "Registered" msgstr "Geregistreerd" -#: [marital]nil -#, fuzzy -msgctxt "[marital]nil" -msgid "None" -msgstr "Geen" - -#: [marital]single +#: ../cache/locales.php:560 msgid "Single" msgstr "Vrijgezel" -#: [marital]relationship +#: ../cache/locales.php:561 msgid "In a relationship" msgstr "In een relatie" -#: [marital]married +#: ../cache/locales.php:562 msgid "Married" msgstr "Getrouwd" -#: [marital]divorced +#: ../cache/locales.php:563 msgid "Divorced" msgstr "Gescheiden" -#: [marital]widowed +#: ../cache/locales.php:564 msgid "Widowed" msgstr "Weduwe/weduwnaar" -#: [marital]cohabiting +#: ../cache/locales.php:565 msgid "Cohabiting" msgstr "Samenwonend" -#: [marital]union +#: ../cache/locales.php:566 msgid "Civil Union" msgstr "Samenlevend" -#: [flag]white +#: ../cache/locales.php:567 msgid "Not shared" msgstr "Niet gedeeld" -#: [flag]green +#: ../cache/locales.php:568 msgid "Shared with one contact" msgstr "Gedeeld met één contact" -#: [flag]orange +#: ../cache/locales.php:569 msgid "Shared with all contacts" msgstr "Gedeeld met alle contacten" -#: [flag]red +#: ../cache/locales.php:570 msgid "Shared with the XMPP network" msgstr "Gedeeld met het XMPP-netwerk" -#: [flag]black +#: ../cache/locales.php:571 msgid "Shared with the whole Internet" msgstr "Gedeeld met het hele internet" -#: [presence]online +#: ../cache/locales.php:572 msgid "Online" msgstr "Online" -#: [presence]away +#: ../cache/locales.php:573 msgid "Away" msgstr "Afwezig" -#: [presence]dnd +#: ../cache/locales.php:574 msgid "Do Not Disturb" msgstr "Niet Storen" -#: [presence]xa +#: ../cache/locales.php:575 msgid "Extended Away" msgstr "Langdurig Afwezig" -#: [presence]offline +#: ../cache/locales.php:576 msgid "Offline" msgstr "Offline" -#: [presence]error +#: ../cache/locales.php:577 msgid "Error" msgstr "Fout" -#: [mood]afraid +#: ../cache/locales.php:578 msgid "afraid" msgstr "bang" -#: [mood]amazed +#: ../cache/locales.php:579 msgid "amazed" msgstr "verbaasd" -#: [mood]amorous +#: ../cache/locales.php:580 msgid "amorous" msgstr "vriendelijk" -#: [mood]angry +#: ../cache/locales.php:581 msgid "angry" msgstr "boos" -#: [mood]annoyed +#: ../cache/locales.php:582 msgid "annoyed" msgstr "geirriteerd" -#: [mood]anxious +#: ../cache/locales.php:583 msgid "anxious" msgstr "nerveus" -#: [mood]aroused +#: ../cache/locales.php:584 msgid "aroused" msgstr "opgewonden" -#: [mood]ashamed +#: ../cache/locales.php:585 msgid "ashamed" msgstr "beschaamd" -#: [mood]bored +#: ../cache/locales.php:586 msgid "bored" msgstr "verveeld" -#: [mood]brave +#: ../cache/locales.php:587 msgid "brave" msgstr "moedig" -#: [mood]calm +#: ../cache/locales.php:588 msgid "calm" msgstr "kalm" -#: [mood]cautious +#: ../cache/locales.php:589 msgid "cautious" msgstr "voorzichtig" -#: [mood]cold +#: ../cache/locales.php:590 msgid "cold" msgstr "koud" -#: [mood]confident +#: ../cache/locales.php:591 msgid "confident" msgstr "zelfverzekerd" -#: [mood]confused +#: ../cache/locales.php:592 msgid "confused" msgstr "verward" -#: [mood]contemplative +#: ../cache/locales.php:593 msgid "contemplative" msgstr "complimenteus" -#: [mood]contented +#: ../cache/locales.php:594 msgid "contented" msgstr "tevreden" -#: [mood]cranky +#: ../cache/locales.php:595 msgid "cranky" msgstr "nors" -#: [mood]crazy +#: ../cache/locales.php:596 msgid "crazy" msgstr "gek" -#: [mood]creative +#: ../cache/locales.php:597 msgid "creative" msgstr "creatief" -#: [mood]curious +#: ../cache/locales.php:598 msgid "curious" msgstr "nieuwsgierig" -#: [mood]dejected +#: ../cache/locales.php:599 msgid "dejected" msgstr "bedroefd" -#: [mood]depressed +#: ../cache/locales.php:600 msgid "depressed" msgstr "neerslachtig" -#: [mood]disappointed +#: ../cache/locales.php:601 msgid "disappointed" msgstr "teleurgesteld" -#: [mood]disgusted +#: ../cache/locales.php:602 msgid "disgusted" msgstr "walgend" -#: [mood]dismayed +#: ../cache/locales.php:603 msgid "dismayed" msgstr "ongerust" -#: [mood]distracted +#: ../cache/locales.php:604 msgid "distracted" msgstr "afgeleid" -#: [mood]embarrassed +#: ../cache/locales.php:605 msgid "embarrassed" msgstr "beschaamd" -#: [mood]envious +#: ../cache/locales.php:606 msgid "envious" msgstr "jaloers" -#: [mood]excited +#: ../cache/locales.php:607 msgid "excited" msgstr "opgewonden" -#: [mood]flirtatious +#: ../cache/locales.php:608 msgid "flirtatious" msgstr "complimenteus" -#: [mood]frustated +#: ../cache/locales.php:609 msgid "frustated" msgstr "" -#: [mood]grateful +#: ../cache/locales.php:610 msgid "grateful" msgstr "dankbaar" -#: [mood]grieving +#: ../cache/locales.php:611 msgid "grieving" msgstr "bedroefd" -#: [mood]grumpy +#: ../cache/locales.php:612 msgid "grumpy" msgstr "knorrig" -#: [mood]guilty +#: ../cache/locales.php:613 msgid "guilty" msgstr "schuldig" -#: [mood]happy +#: ../cache/locales.php:614 msgid "happy" msgstr "blij" -#: [mood]hopeful +#: ../cache/locales.php:615 msgid "hopeful" msgstr "hoopvol" -#: [mood]hot +#: ../cache/locales.php:616 msgid "hot" msgstr "hot" -#: [mood]humbled +#: ../cache/locales.php:617 msgid "humbled" msgstr "nederig" -#: [mood]humiliated +#: ../cache/locales.php:618 msgid "humiliated" msgstr "vernederd" -#: [mood]hungry +#: ../cache/locales.php:619 msgid "hungry" msgstr "hongerig" -#: [mood]hurt +#: ../cache/locales.php:620 msgid "hurt" msgstr "bezeerd" -#: [mood]impressed +#: ../cache/locales.php:621 msgid "impressed" msgstr "geimponeerd" -#: [mood]in_awe +#: ../cache/locales.php:622 msgid "in awe" msgstr "verwonderd" -#: [mood]in_love +#: ../cache/locales.php:623 msgid "in love" msgstr "verliefd" -#: [mood]indignant +#: ../cache/locales.php:624 msgid "indignant" msgstr "" -#: [mood]interested +#: ../cache/locales.php:625 msgid "interested" msgstr "geïnteresseerd" -#: [mood]intoxicated +#: ../cache/locales.php:626 msgid "intoxicated" msgstr "vergiftigd" -#: [mood]invincible +#: ../cache/locales.php:627 msgid "invincible" msgstr "onoverwinnelijk" -#: [mood]jealous +#: ../cache/locales.php:628 msgid "jealous" msgstr "jaloers" -#: [mood]lonely +#: ../cache/locales.php:629 msgid "lonely" msgstr "eenzaam" -#: [mood]lost +#: ../cache/locales.php:630 msgid "lost" msgstr "verdwaald" -#: [mood]lucky +#: ../cache/locales.php:631 msgid "lucky" msgstr "gelukkig" -#: [mood]mean +#: ../cache/locales.php:632 msgid "mean" msgstr "gemeen" -#: [mood]moody +#: ../cache/locales.php:633 msgid "moody" msgstr "humeurig" -#: [mood]nervous +#: ../cache/locales.php:634 msgid "nervous" msgstr "nerveus" -#: [mood]neutral +#: ../cache/locales.php:635 msgid "neutral" msgstr "neutraal" -#: [mood]offended +#: ../cache/locales.php:636 msgid "offended" msgstr "beledigd" -#: [mood]outraged +#: ../cache/locales.php:637 msgid "outraged" msgstr "woedend" -#: [mood]playful +#: ../cache/locales.php:638 msgid "playful" msgstr "speels" -#: [mood]proud +#: ../cache/locales.php:639 msgid "proud" msgstr "trots" -#: [mood]relaxed +#: ../cache/locales.php:640 msgid "relaxed" msgstr "ontspannen" -#: [mood]relieved +#: ../cache/locales.php:641 msgid "relieved" msgstr "opgelucht" -#: [mood]restless +#: ../cache/locales.php:642 +msgid "remorseful" +msgstr "berouwvol" + +#: ../cache/locales.php:643 msgid "restless" msgstr "rusteloos" -#: [mood]sad +#: ../cache/locales.php:644 msgid "sad" msgstr "droevig" -#: [mood]sarcastic +#: ../cache/locales.php:645 msgid "sarcastic" msgstr "sarcastisch" -#: [mood]satisfied +#: ../cache/locales.php:646 msgid "satisfied" msgstr "voldaan" -#: [mood]serious +#: ../cache/locales.php:647 msgid "serious" msgstr "serieus" -#: [mood]shocked +#: ../cache/locales.php:648 msgid "shocked" msgstr "geschrokken" -#: [mood]shy +#: ../cache/locales.php:649 msgid "shy" msgstr "verlegen" -#: [mood]sick +#: ../cache/locales.php:650 msgid "sick" msgstr "ziek" -#: [mood]sleepy +#: ../cache/locales.php:651 msgid "sleepy" msgstr "slaperig" -#: [mood]spontaneous +#: ../cache/locales.php:652 msgid "spontaneous" msgstr "spontaan" -#: [mood]stressed +#: ../cache/locales.php:653 msgid "stressed" msgstr "gestressed" -#: [mood]strong +#: ../cache/locales.php:654 msgid "strong" msgstr "sterk" -#: [mood]surprised +#: ../cache/locales.php:655 msgid "surprised" msgstr "verrast" -#: [mood]thankful +#: ../cache/locales.php:656 msgid "thankful" msgstr "dankbaar" -#: [mood]thirsty +#: ../cache/locales.php:657 msgid "thirsty" msgstr "dorstig" -#: [mood]tired +#: ../cache/locales.php:658 msgid "tired" msgstr "moe" -#: [mood]undefined +#: ../cache/locales.php:659 msgid "undefined" msgstr "ongedefiniëerd" -#: [mood]weak +#: ../cache/locales.php:660 msgid "weak" msgstr "zwak" -#: [mood]worried +#: ../cache/locales.php:661 msgid "worried" msgstr "bezorgd" -#: [month]title +#: ../cache/locales.php:662 msgid "Month" msgstr "Maand" -#: [month]january +#: ../cache/locales.php:663 msgid "January" msgstr "Januari" -#: [month]february +#: ../cache/locales.php:664 msgid "February" msgstr "Februari" -#: [month]march +#: ../cache/locales.php:665 msgid "March" msgstr "Maart" -#: [month]april +#: ../cache/locales.php:666 msgid "April" msgstr "April" -#: [month]may +#: ../cache/locales.php:667 msgid "May" msgstr "Mei" -#: [month]june +#: ../cache/locales.php:668 msgid "June" msgstr "Juni" -#: [month]july +#: ../cache/locales.php:669 msgid "July" msgstr "Juli" -#: [month]august +#: ../cache/locales.php:670 msgid "August" msgstr "Augustus" -#: [month]september +#: ../cache/locales.php:671 msgid "September" msgstr "September" -#: [month]october +#: ../cache/locales.php:672 msgid "October" msgstr "Oktober" -#: [month]november +#: ../cache/locales.php:673 msgid "November" msgstr "November" -#: [month]december +#: ../cache/locales.php:674 msgid "December" msgstr "December" -#: [year]title +#: ../cache/locales.php:675 msgid "Year" msgstr "Jaar" -#: [date]today +#: ../cache/locales.php:676 msgid "Today" msgstr "Vandaag" -#: [date]tomorrow +#: ../cache/locales.php:677 msgid "Tomorrow" msgstr "Morgen" -#: [date]yesterday +#: ../cache/locales.php:678 msgid "Yesterday" msgstr "Gisteren" -#: [date]ago -#, fuzzy -msgid "%d days ago" +#: ../cache/locales.php:679 +#, php-format +msgid " %d days ago" msgstr " %d dagen geleden" -#: [date]day +#: ../cache/locales.php:680 msgid "day" msgstr "dag" -#: [post]whats_new +#: ../cache/locales.php:682 msgid "What's new ?" msgstr "" -#: [post]place +#: ../cache/locales.php:683 msgid "Place" msgstr "Plaats" -#: [post]by +#: ../cache/locales.php:684 msgid "by" msgstr "" -#: [post]geolocalisation +#: ../cache/locales.php:685 msgid "Geolocalisation" msgstr "" -#: [post]email +#: ../cache/locales.php:686 msgid "email" msgstr "" -#: [post]no_comments +#: ../cache/locales.php:688 msgid "No comments yet" msgstr "" -#: [post]no_comments_stream +#: ../cache/locales.php:689 msgid "No comments stream" msgstr "Geen reacties geplaatst" -#: [post]no_load +#: ../cache/locales.php:690 msgid "Your feed cannot be loaded." msgstr "Jouw feed kan niet worden geladen" -#: [post]older +#: ../cache/locales.php:691 msgid "Get older posts" msgstr "Haal oudere berichten op" -#: [post]new_items +#: ../cache/locales.php:692 +#, php-format msgid "%s new items" msgstr "" -#: [post]comment_error +#: ../cache/locales.php:693 msgid "Comment publication error" msgstr "Fout bij publiceren van reactie" -#: [post]comments_older +#: ../cache/locales.php:694 msgid "Show the older comments" msgstr "Toon eerdere reacties" -#: [post]comments_loading -#, fuzzy -msgid "Loading comments..." -msgstr "Laad de gebruiker feed" +#: ../cache/locales.php:695 +msgid "Loading comments ..." +msgstr "" -#: [post]comments_get +#: ../cache/locales.php:696 msgid "Get the comments" msgstr "" -#: [post]comment_add +#: ../cache/locales.php:697 msgid "Add a comment" msgstr "" -#: [post]share +#: ../cache/locales.php:698 msgid "Share with" msgstr "" -#: [post]share_everyone +#: ../cache/locales.php:699 msgid "Everyone" msgstr "" -#: [post]share_your_contacts +#: ../cache/locales.php:700 msgid "Your contacts" msgstr "" -#: [post]updated +#: ../cache/locales.php:702 msgid "Updated" msgstr "" -#: [post]content_not_found +#: ../cache/locales.php:703 msgid "Content not found" msgstr "" -#: [post]default_title +#: ../cache/locales.php:704 msgid "Contact publication" msgstr "" -#: [post]comments +#: ../cache/locales.php:705 msgid "Comments" msgstr "" -#: [api]error +#: ../cache/locales.php:706 msgid "The API is not reachable, try again later" msgstr "" -#: [field]type_here +#: ../cache/locales.php:707 msgid "Type here" msgstr "" -#~ msgid "You can login with Facebook (chat only) using %syour.id@chat.facebook.com%s and your password" -#~ msgstr "U kunt inloggen met Facebook (alleen chat), gebruik %syour.id@chat.facebook.com%s en uw wachtwoord" - -#~ msgid "remorseful" -#~ msgstr "berouwvol" - #~ msgid "PHP version mismatch. Movim requires PHP 5.3 minimum." #~ msgstr "PHP versie komt niet overeen. Movim vereist minimaal PHP 5.3" @@ -2737,14 +2604,19 @@ msgstr "" #~ msgid "Movim Installer" #~ msgstr "Movim Installer" +#, php-format #~ msgid "Couldn't create directory '%s'." #~ msgstr "De map %s kan niet worden aangemaakt" #~ msgid "Compatibility Test" #~ msgstr "Compatibiliteit test" -#~ msgid "The following requirements were not met. Please make sure they are all satisfied in order to install Movim." -#~ msgstr "De volgende eisen konden niet worden gerespecteerd. Wees zeker dat ze voldoen om Movim te instaleren" +#~ msgid "" +#~ "The following requirements were not met. Please make sure they are all " +#~ "satisfied in order to install Movim." +#~ msgstr "" +#~ "De volgende eisen konden niet worden gerespecteerd. Wees zeker dat ze " +#~ "voldoen om Movim te instaleren" #~ msgid "User not logged in." #~ msgstr "De gebruiker is niet ingelogd" @@ -2752,15 +2624,21 @@ msgstr "" #~ msgid "JID not provided." #~ msgstr "JID was niet gegeven" +#, php-format #~ msgid "jid '%s' is incorrect" #~ msgstr "jid '%s' is niet correct" +#, php-format #~ msgid "Cannot open log file '%s'" #~ msgstr "De log file %s kon niet geopend worden" +#, php-format #~ msgid "%s - Account Creation" #~ msgstr "%s - account aanmaken" +#~ msgid "Remove this contact" +#~ msgstr "Verwijder dit contact" + #~ msgid "Debug console" #~ msgstr "Debug console" @@ -2773,15 +2651,25 @@ msgstr "" #~ msgid "Decline" #~ msgstr "Weigeren" +#~ msgid "Loading the contact feed ..." +#~ msgstr "Laad de gebruiker feed" + #~ msgid "Update your PHP version or contact your server administrator" #~ msgstr "Update de PHR versie of neem contact op met de sever beheerder" +#~ msgid "Enable read and write rights on Movim's root folder" +#~ msgstr "Enable de lees en schrijfrechten in Movim`s root folder" + #~ msgid "Thank you for downloading Movim!" #~ msgstr "Dank u voor het downloaden van Movim!" -#~ msgid "Before you enjoy your social network, a few adjustements are required." -#~ msgstr "Voordat u gebruik kunt maken van uw social network, zijn er enkele aanpassingen noodzakelijk." +#~ msgid "" +#~ "Before you enjoy your social network, a few adjustements are required." +#~ msgstr "" +#~ "Voordat u gebruik kunt maken van uw social network, zijn er enkele " +#~ "aanpassingen noodzakelijk." +#, php-format #~ msgid "Cannot load element value '%s'" #~ msgstr "Kan elementwaarde '%s' niet laden" @@ -2791,8 +2679,12 @@ msgstr "" #~ msgid "My Posts" #~ msgstr "Mijn Inzendingen" -#~ msgid "Your server doesn't support post publication, you can only read contact's feeds" -#~ msgstr "Jouw server ondersteunt geen publicatie, je kan alleen informatie van je contacten lezen." +#~ msgid "" +#~ "Your server doesn't support post publication, you can only read contact's " +#~ "feeds" +#~ msgstr "" +#~ "Jouw server ondersteunt geen publicatie, je kan alleen informatie van je " +#~ "contacten lezen." #~ msgid "Edit my Profile" #~ msgstr "Bewerk mijn profiel" @@ -2803,23 +2695,52 @@ msgstr "" #~ msgid "What is Movim?" #~ msgstr "Wat is Movim?" -#~ msgid "Visit the page %s What is Movim ? %s to know more about the project, its aims and understand how it works." -#~ msgstr "Bekijk de pagina %s Wat is Movim ? %s om meer te weten te komen over het project, de doelstellingen en de werking." +#, php-format +#~ msgid "" +#~ "Visit the page %s What is Movim ? %s to know more about the project, its " +#~ "aims and understand how it works." +#~ msgstr "" +#~ "Bekijk de pagina %s Wat is Movim ? %s om meer te weten te komen over het " +#~ "project, de doelstellingen en de werking." -#~ msgid "Go to the %s to the Frequently Asked Questions %s or come ask your question on the official chatroom %s or via our mailing-list (%s see the dedicated page %s)." -#~ msgstr "Bezoek de %s naar de Veelgestelde Vragen %s of stel de vraag in de officiële chatroom %s of via onze mailing-list (%s zie de pagina %s over dit onderwerp)." +#, php-format +#~ msgid "" +#~ "Go to the %s to the Frequently Asked Questions %s or come ask your question " +#~ "on the official chatroom %s or via our mailing-list (%s see the dedicated " +#~ "page %s)." +#~ msgstr "" +#~ "Bezoek de %s naar de Veelgestelde Vragen %s of stel de vraag in de officiële " +#~ "chatroom %s of via onze mailing-list (%s zie de pagina %s over dit " +#~ "onderwerp)." -#~ msgid "Although Movim is evolving fast, many (many) features are missing. Be patient ;). You can have a look %s at next versions's roadmaps %s to know if the one you want is on its way." -#~ msgstr "Ook al groeit Movim snel, (heel) veel functionaliteit is nog niet beschikbaar. Heb geduld ;). Je kunt een kijkje nemen %s bij volgende versies verwachte functionaliteiten %s om te zien of datgene wat je wil zal worden ontwikkeld." +#, php-format +#~ msgid "" +#~ "Although Movim is evolving fast, many (many) features are missing. Be " +#~ "patient ;). You can have a look %s at next versions's roadmaps %s to know if " +#~ "the one you want is on its way." +#~ msgstr "" +#~ "Ook al groeit Movim snel, (heel) veel functionaliteit is nog niet " +#~ "beschikbaar. Heb geduld ;). Je kunt een kijkje nemen %s bij volgende versies " +#~ "verwachte functionaliteiten %s om te zien of datgene wat je wil zal worden " +#~ "ontwikkeld." -#~ msgid "Don't forget that Movim is an open source project, a helping hand is always welcome (see %s Can I participate %s)" -#~ msgstr "Vergeet niet dat Movim een open source project is, hulp is altijd welkom (zie %s kan ik deelnemen %s)" +#, php-format +#~ msgid "" +#~ "Don't forget that Movim is an open source project, a helping hand is always " +#~ "welcome (see %s Can I participate %s)" +#~ msgstr "" +#~ "Vergeet niet dat Movim een open source project is, hulp is altijd welkom " +#~ "(zie %s kan ik deelnemen %s)" #~ msgid "I can't find the answer to my question here" #~ msgstr "Ik kan het antwoord op mijn vraag hier niet vinden." -#~ msgid "Some features are missing/I can't do everything I used to do on other social networks" -#~ msgstr "Sommige functionaliteit is afwezig/Ik kan niet alles wat ik op andere sociale netwerken kon" +#~ msgid "" +#~ "Some features are missing/I can't do everything I used to do on other social " +#~ "networks" +#~ msgstr "" +#~ "Sommige functionaliteit is afwezig/Ik kan niet alles wat ik op andere " +#~ "sociale netwerken kon" #~ msgid "You entered different passwords" #~ msgstr "U hebt verschillende wachtwoorden ingevoerd" diff --git a/sources/locales/no.po b/sources/locales/no.po index 5a660cd..dd106ae 100644 --- a/sources/locales/no.po +++ b/sources/locales/no.po @@ -1,2709 +1,2593 @@ # Norwegian translations for Movim package. # This file is distributed under the same license as the Movim package. # This file was translated from CodingTeam at . -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/About/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Account/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/AccountNext/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/AdHoc/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/AdminDB/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/AdminMain/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/AdminTest/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Api/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Avatar/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Blog/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Bookmark/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Chat/locales.ini -#. #-#-#-#-# 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 -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Group/locales.ini -#. #-#-#-#-# 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 -#. #-#-#-#-# 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 -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Presence/locales.ini -#. #-#-#-#-# 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 -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Share/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Statistics/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Subscribe/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Syndication/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Upload/locales.ini -#. #-#-#-#-# 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-08-20 15:17+0200\n" +"POT-Creation-Date: 2015-06-08 22:06+0200\n" "PO-Revision-Date: 2012-07-19 11:30+0000\n" "Last-Translator: Vincent \n" "Language-Team: LANGUAGE \n" -"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2015-06-18 21:08+0000\n" "X-Generator: Launchpad (build 17570)\n" +"Language: \n" -#: [about]thanks +#: ../cache/locales.php:2 msgid "Thanks" msgstr "" -#: [about]developers +#: ../cache/locales.php:3 msgid "Developers" msgstr "" -#: [about]translators +#: ../cache/locales.php:4 msgid "Translators" msgstr "" -#: [about]software +#: ../cache/locales.php:5 msgid "Software" msgstr "" -#: [about]resources +#: ../cache/locales.php:6 msgid "Resources" msgstr "" -#: [about]api [schema]api [api]title +#: ../cache/locales.php:7 ../cache/locales.php:83 ../cache/locales.php:85 msgid "API" msgstr "" -#: [about]info -msgid "Movim is an XMPP-based communication platform. All the project, except the following software and resources, is under" +#: ../cache/locales.php:8 +msgid "" +"Movim is an XMPP-based communication platform. All the project, except the " +"following software and resources, is under" msgstr "" -#: [account]title +#: ../cache/locales.php:9 msgid "Account" msgstr "" -#: [account]password_change_title -#, fuzzy -msgid "Change my password" -msgstr "Feil passord" - -#: [account]password [db]password [credentials]password [form]password -#: [input]password -msgid "Password" -msgstr "Passord" - -#: [account]password_confirmation -msgid "Password confirmation" -msgstr "" - -#: [account]password_changed +#: ../cache/locales.php:10 msgid "The password has been updated" msgstr "" -#: [account]password_not_valid +#: ../cache/locales.php:11 msgid "Please provide a valid password (6 characters minimum)" msgstr "" -#: [account]password_not_same +#: ../cache/locales.php:12 msgid "The provided passwords are not the same" msgstr "" -#: [account]delete_title +#: ../cache/locales.php:13 msgid "Delete my account" msgstr "" -#: [account]delete -msgid "Delete your account" +#: ../cache/locales.php:14 +msgid "" +"You will delete your XMPP account and all the relative information linked to " +"it (profile, contacts and publications)." msgstr "" -#: [account]delete_text -msgid "You will delete your XMPP account and all the relative information linked to it (profile, contacts and publications)." -msgstr "" - -#: [account]delete_text_confirm +#: ../cache/locales.php:15 msgid "Are you sure that you want to delete it ?" msgstr "" -#: [account]gateway_title -msgid "Gateway" -msgstr "" - -#: [create]title [subscribe]title +#: ../cache/locales.php:16 ../cache/locales.php:411 msgid "Create a new account" msgstr "" -#: [create]notfound +#: ../cache/locales.php:17 msgid "No account creation form found on the server" msgstr "" -#: [create]server_on +#: ../cache/locales.php:18 ../cache/locales.php:172 msgid "on" msgstr "" -#: [create]successfull +#: ../cache/locales.php:19 msgid "Your acccount has been successfully registered" msgstr "" -#: [create]loading +#: ../cache/locales.php:20 msgid "Loading" msgstr "" -#: [error]not_acceptable +#: ../cache/locales.php:21 msgid "Not Acceptable" msgstr "" -#: [error]service_unavailable +#: ../cache/locales.php:22 msgid "The registration system of this server is currently unavailable" msgstr "" -#: [oob]about -msgid "This server use an external system for the registration, please click on the following URL." +#: ../cache/locales.php:23 +msgid "" +"This server use an external system for the registration, please click on the " +"following URL." msgstr "" -#: [adhoc]title +#: ../cache/locales.php:24 msgid "Actions" msgstr "" -#: [db]legend [schema]database +#: ../cache/locales.php:25 ../cache/locales.php:82 msgid "Database" msgstr "" -#: [db]connect_error +#: ../cache/locales.php:26 msgid "Modl wasn't able to connect to the database" msgstr "" -#: [db]connect_success +#: ../cache/locales.php:27 msgid "Movim is connected to the database" msgstr "" -#: [db]update +#: ../cache/locales.php:28 msgid "The database need to be updated" msgstr "" -#: [db]up_to_date +#: ../cache/locales.php:29 msgid "Movim database is up to date" msgstr "" -#: [db]type +#: ../cache/locales.php:30 msgid "Database Type" msgstr "" -#: [db]username [credentials]username [input]username +#: ../cache/locales.php:31 ../cache/locales.php:50 ../cache/locales.php:540 msgid "Username" msgstr "" -#: [db]host +#: ../cache/locales.php:32 ../cache/locales.php:51 ../cache/locales.php:282 +#: ../cache/locales.php:541 +msgid "Password" +msgstr "Passord" + +#: ../cache/locales.php:33 msgid "Host" msgstr "" -#: [db]port +#: ../cache/locales.php:34 msgid "Port" msgstr "" -#: [db]name -msgid "Database sName" +#: ../cache/locales.php:35 +msgid "Database Name" msgstr "" -#: [admin]general +#: ../cache/locales.php:36 msgid "General Settings" msgstr "" -#: [general]theme +#: ../cache/locales.php:37 msgid "Theme" msgstr "" -#: [general]language +#: ../cache/locales.php:38 msgid "Default language" msgstr "" -#: [general]log_verbosity +#: ../cache/locales.php:39 +msgid "Environment" +msgstr "" + +#: ../cache/locales.php:40 msgid "Log verbosity" msgstr "" -#: [general]timezone +#: ../cache/locales.php:41 msgid "Server Timezone" msgstr "" -#: [general]limit +#: ../cache/locales.php:42 msgid "User folder size limit (in bytes)" msgstr "" -#: [websocket]title +#: ../cache/locales.php:43 msgid "WebSocket Configuration" msgstr "" -#: [websocket]info +#: ../cache/locales.php:44 msgid "Enter here a valid WebSocket URI in the form" msgstr "" -#: [websocket]label +#: ../cache/locales.php:45 msgid "WebSocket URI" msgstr "" -#: [websocket]save_info -msgid "If you change the URI, please restart the daemon to reload the configuration" +#: ../cache/locales.php:46 +msgid "" +"If you change the URI, please restart the daemon to reload the configuration" msgstr "" -#: [websocket]publics +#: ../cache/locales.php:47 msgid "Public WebSockets" msgstr "" -#: [credentials]title +#: ../cache/locales.php:48 msgid "Administration Credential" msgstr "" -#: [credentials]info +#: ../cache/locales.php:49 msgid "Change the default credentials admin/password" msgstr "" -#: [credentials]re_password +#: ../cache/locales.php:52 msgid "Retype password" msgstr "" -#: [whitelist]title +#: ../cache/locales.php:53 msgid "Whitelist - XMPP Server" msgstr "" -#: [whitelist]info1 -msgid "If you want to specify a list of authorized XMPP servers on your Movim pod and forbid the connection on all the others please put their domain name here, with comma (ex: movim.eu,jabber.fr)" +#: ../cache/locales.php:54 +msgid "" +"If you want to specify a list of authorized XMPP servers on your Movim pod " +"and forbid the connection on all the others please put their domain name " +"here, with comma (ex: movim.eu,jabber.fr)" msgstr "" -#: [whitelist]info2 -msgid "Leave this field blank if you allow the access to all the XMPP accounts." +#: ../cache/locales.php:55 +msgid "" +"Leave this field blank if you allow the access to all the XMPP accounts." msgstr "" -#: [whitelist]label +#: ../cache/locales.php:56 msgid "List of whitelisted XMPP servers" msgstr "" -#: [information]title -#, fuzzy -msgctxt "[information]title" +#: ../cache/locales.php:57 ../cache/locales.php:61 msgid "Information Message" -msgstr "Generell informasjon" +msgstr "" -#: [information]description +#: ../cache/locales.php:58 msgid "Description" msgstr "" -#: [information]info1 +#: ../cache/locales.php:59 msgid "This message will be displayed on the login page" msgstr "" -#: [information]info2 -msgid "Leave this field blank if you dont want to show any message." +#: ../cache/locales.php:60 +msgid "Leave this field blank if you don't want to show any message." msgstr "" -#: [information]label -#, fuzzy -msgctxt "[information]label" -msgid "Information Message" -msgstr "Generell informasjon" - -#: [log]empty +#: ../cache/locales.php:62 msgid "Empty" msgstr "" -#: [log]syslog +#: ../cache/locales.php:63 msgid "Syslog" msgstr "" -#: [log]syslog_files +#: ../cache/locales.php:64 msgid "Syslog and files" msgstr "" -#: [rewrite]title +#: ../cache/locales.php:65 msgid "URL Rewriting" msgstr "" -#: [rewrite]info +#: ../cache/locales.php:66 msgid "The URL Rewriting can be enabled" msgstr "" -#: [admin]compatibility +#: ../cache/locales.php:67 msgid "General Overview" msgstr "" -#: [compatibility]info -msgid "Movim has found some issues or things that need to be fixed or improved" +#: ../cache/locales.php:68 +msgid "" +"Movim has found some issues or things that need to be fixed or improved" msgstr "" -#: [compatibility]php1 +#: ../cache/locales.php:69 +#, php-format msgid "Update your PHP-Version: %s" msgstr "" -#: [compatibility]php2 +#: ../cache/locales.php:70 msgid "Required: 5.3.0" msgstr "" -#: [compatibility]curl +#: ../cache/locales.php:71 msgid "Install the php5-curl library" msgstr "" -#: [compatibility]imagick +#: ../cache/locales.php:72 msgid "Install the php5-imagick library" msgstr "" -#: [compatibility]gd +#: ../cache/locales.php:73 msgid "Install the php5-gd library" msgstr "" -#: [compatibility]rights -msgid "Read and write rights for the webserver in Movims root directory" +#: ../cache/locales.php:74 +msgid "Read and write rights for the webserver in Movim's root directory" msgstr "" -#: [compatibility]rewrite +#: ../cache/locales.php:75 msgid "The URL Rewriting support is currently disabled" msgstr "" -#: [compatibility]db +#: ../cache/locales.php:76 msgid "The database need to be updated, go to the database panel to fix this" msgstr "" -#: [compatibility]websocket -msgid "WebSocket connection error, check if the Movim Daemon is running and is reachable" +#: ../cache/locales.php:77 +msgid "" +"WebSocket connection error, check if the Movim Daemon is running and is " +"reacheable" msgstr "" -#: [compatibility]xmpp_websocket -msgid "XMPP Websocket connection error, please check the validity of the URL given in the General Configuration" +#: ../cache/locales.php:78 +msgid "" +"XMPP Websocket connection error, please check the validity of the URL given " +"in the General Configuration" msgstr "" -#: [schema]browser +#: ../cache/locales.php:79 msgid "Browser" msgstr "" -#: [schema]movim +#: ../cache/locales.php:80 msgid "Movim Core" msgstr "" -#: [schema]daemon +#: ../cache/locales.php:81 msgid "Movim Daemon" msgstr "" -#: [schema]xmpp +#: ../cache/locales.php:84 msgid "XMPP" msgstr "" -#: [api]info -msgid "Here you can register your pod on the official %sMovim API%s and be listed on %sthe pods page%s." +#: ../cache/locales.php:86 +#, php-format +msgid "" +"Here you can register your pod on the official %sMovim API%s and be listed " +"on %sthe pods page%s." msgstr "" -#: [api]register +#: ../cache/locales.php:87 msgid "Your pod is not registered on the API" msgstr "" -#: [api]registered +#: ../cache/locales.php:88 msgid "Your pod is registered on the API" msgstr "" -#: [api]wait +#: ../cache/locales.php:89 msgid "Your pod is not yet validated" msgstr "" -#: [api]validated +#: ../cache/locales.php:90 msgid "Your pod is validated" msgstr "" -#: [api]unregister -msgid "You asked to be removed from the API, this request will be processed in a couple of hours" +#: ../cache/locales.php:91 +msgid "" +"You asked to be removed from the API, this request will be processed in a " +"couple of hours" msgstr "" -#: [api]conf_updated [config]updated +#: ../cache/locales.php:92 ../cache/locales.php:147 msgid "Configuration updated" msgstr "" -#: [avatar]file +#: ../cache/locales.php:93 msgid "File" msgstr "" -#: [avatar]use_it +#: ../cache/locales.php:94 msgid "Use it" msgstr "" -#: [avatar]webcam +#: ../cache/locales.php:95 msgid "Webcam" msgstr "" -#: [avatar]cheese +#: ../cache/locales.php:96 msgid "Cheese !" msgstr "" -#: [avatar]snapshot +#: ../cache/locales.php:97 msgid "Take a webcam snapshot" msgstr "" -#: [avatar]updated +#: ../cache/locales.php:98 msgid "Avatar Updated" msgstr "" -#: [avatar]not_updated +#: ../cache/locales.php:99 msgid "Avatar Not Updated" msgstr "" -#: [blog]title [feed]title +#: ../cache/locales.php:100 ../cache/locales.php:415 +#, php-format msgid "%s's feed" msgstr "" -#: [blog]empty +#: ../cache/locales.php:101 msgid "This user has not posted anything right now" msgstr "" -#: [title]conferences +#: ../cache/locales.php:102 msgid "Conferences" msgstr "" -#: [title]groups [group]empty_title [menu]groups [page]groups +#: ../cache/locales.php:103 ../cache/locales.php:193 ../cache/locales.php:217 +#: ../cache/locales.php:468 msgid "Groups" msgstr "" -#: [chatroom]add +#: ../cache/locales.php:104 msgid "Add a new Chat Room" msgstr "" -#: [chatroom]id [chatrooms]id +#: ../cache/locales.php:105 ../cache/locales.php:368 msgid "Chat Room ID" msgstr "" -#: [chatroom]name -#, fuzzy -msgctxt "[chatroom]name" +#: ../cache/locales.php:106 ../cache/locales.php:116 ../cache/locales.php:156 +#: ../cache/locales.php:361 ../cache/locales.php:369 ../cache/locales.php:424 msgid "Name" msgstr "Navn" -#: [chatroom]nickname [general]nickname [chatrooms]nickname +#: ../cache/locales.php:107 ../cache/locales.php:157 ../cache/locales.php:371 +#: ../cache/locales.php:425 msgid "Nickname" msgstr "" -#: [chatroom]autojoin_label +#: ../cache/locales.php:108 msgid "Do you want do join automaticaly this Chat Room ?" msgstr "" -#: [chatroom]bad_id [chatrooms]bad_id +#: ../cache/locales.php:109 ../cache/locales.php:372 msgid "Bad Chatroom ID" msgstr "" -#: [chatroom]empty_name [chatrooms]empty_name +#: ../cache/locales.php:110 ../cache/locales.php:373 msgid "Empty name" msgstr "" -#: [bookmarks]updated +#: ../cache/locales.php:111 ../cache/locales.php:380 msgid "Bookmarks updated" msgstr "" -#: [bookmarks]error -msgid "An error occured :" +#: ../cache/locales.php:112 +msgid "An error occured : " msgstr "" -#: [bookmarks]configure +#: ../cache/locales.php:113 msgid "Configure" msgstr "" -#: [url]add +#: ../cache/locales.php:114 msgid "Add a new URL" msgstr "" -#: [url]url +#: ../cache/locales.php:115 msgid "URL" msgstr "" -#: [url]name -#, fuzzy -msgctxt "[url]name" -msgid "Name" -msgstr "Navn" - -#: [message]published +#: ../cache/locales.php:117 msgid "Message Published" msgstr "" -#: [message]encrypted +#: ../cache/locales.php:118 ../cache/locales.php:138 msgid "Encrypted message" msgstr "" -#: [message]composing [chats]composing +#: ../cache/locales.php:119 msgid "Composing..." msgstr "" -#: [message]paused [chats]paused +#: ../cache/locales.php:120 msgid "Paused..." msgstr "" -#: [message]gone +#: ../cache/locales.php:121 msgid "Contact gone" msgstr "" -#: [chat]attention +#: ../cache/locales.php:122 +#, php-format msgid "%s needs your attention" msgstr "" -#: [chat]placeholder +#: ../cache/locales.php:123 msgid "Your message here..." msgstr "" -#: [chat]smileys +#: ../cache/locales.php:124 msgid "Smileys" msgstr "" -#: [chat]empty_title [button]chat +#: ../cache/locales.php:125 ../cache/locales.php:139 msgid "Chat" msgstr "Chat" -#: [chat]empty_text +#: ../cache/locales.php:126 msgid "Discuss with your contacts" msgstr "" -#: [chat]frequent [chats]frequent -msgid "Frequent contacts" -msgstr "" - -#: [chatroom]members +#: ../cache/locales.php:127 msgid "Members" msgstr "" -#: [chatroom]connected [chatrooms]connected +#: ../cache/locales.php:128 ../cache/locales.php:376 msgid "Connected to the chatroom" msgstr "" -#: [chatroom]disconnected [chatrooms]disconnected +#: ../cache/locales.php:129 ../cache/locales.php:377 msgid "Disconnected from the chatroom" msgstr "" -#: [chatroom]config [group]configuration [page]configuration +#: ../cache/locales.php:130 ../cache/locales.php:200 ../cache/locales.php:469 msgid "Configuration" msgstr "" -#: [chatroom]config_saved +#: ../cache/locales.php:131 msgid "Configuration saved" msgstr "" -#: [chatroom]subject +#: ../cache/locales.php:132 msgid "Subject" msgstr "" -#: [chatroom]subject_changed +#: ../cache/locales.php:133 msgid "Subject changed" msgstr "" -#: [chats]empty_title -msgid "No chats yet..." +#: ../cache/locales.php:134 +msgid "Open a new conversation by clicking on the plus button bellow" msgstr "" -#: [chats]empty -msgid "Open a new conversation by clicking on the plus button bellow or visit the Contacts page." -msgstr "" - -#: [chats]add +#: ../cache/locales.php:135 msgid "Chat with a contact" msgstr "" -#: [chats]more +#: ../cache/locales.php:136 +msgid "Frequent contacts" +msgstr "" + +#: ../cache/locales.php:137 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 "" - -#: [config]general +#: ../cache/locales.php:140 msgid "General" msgstr "" -#: [config]language +#: ../cache/locales.php:141 msgid "Language" msgstr "Språk" -#: [config]roster +#: ../cache/locales.php:142 msgid "Roster display" msgstr "" -#: [config]roster_show +#: ../cache/locales.php:143 msgid "Show the offline contacts" msgstr "" -#: [config]roster_hide +#: ../cache/locales.php:144 msgid "Hide the offline contacts" msgstr "" -#: [config]appearence +#: ../cache/locales.php:145 msgid "Appearence" msgstr "" -#: [config]info -msgid "This configuration is shared wherever you are connected" +#: ../cache/locales.php:146 +msgid "This configuration is shared wherever you are connected !" msgstr "" -#: [notifications]message +#: ../cache/locales.php:148 msgid "Notify on incoming message" msgstr "" -#: [notifications]desktop +#: ../cache/locales.php:149 msgid "Use desktop notifications" msgstr "" -#: [general]legend [general]general_title +#: ../cache/locales.php:150 +msgid "Data" +msgstr "" + +#: ../cache/locales.php:151 +msgid "Cache" +msgstr "" + +#: ../cache/locales.php:152 ../cache/locales.php:218 ../cache/locales.php:466 +msgid "Contacts" +msgstr "" + +#: ../cache/locales.php:153 ../cache/locales.php:480 +msgid "Posts" +msgstr "" + +#: ../cache/locales.php:154 +msgid "Messages" +msgstr "" + +#: ../cache/locales.php:155 ../cache/locales.php:423 msgid "General Informations" msgstr "Generell informasjon" -#: [general]name [public_groups]name [chatrooms]name -msgid "Name" -msgstr "Navn" - -#: [general]date_of_birth +#: ../cache/locales.php:158 ../cache/locales.php:427 msgid "Date of Birth" msgstr "Fødselsdato" -#: [general]gender +#: ../cache/locales.php:159 ../cache/locales.php:428 msgid "Gender" msgstr "" -#: [general]marital +#: ../cache/locales.php:160 ../cache/locales.php:429 msgid "Marital Status" msgstr "" -#: [general]email +#: ../cache/locales.php:161 ../cache/locales.php:426 msgid "Email" msgstr "" -#: [general]website +#: ../cache/locales.php:162 ../cache/locales.php:430 msgid "Website" msgstr "Nettside" -#: [general]about +#: ../cache/locales.php:163 ../cache/locales.php:431 msgid "About Me" msgstr "Om meg" -#: [general]accounts +#: ../cache/locales.php:164 msgid "Other Accounts" msgstr "" -#: [general]tune +#: ../cache/locales.php:165 msgid "Is Listening" msgstr "" -#: [position]legend [position]position_title +#: ../cache/locales.php:166 ../cache/locales.php:432 msgid "Geographic Position" msgstr "" -#: [position]locality +#: ../cache/locales.php:167 ../cache/locales.php:433 msgid "Locality" msgstr "" -#: [position]country +#: ../cache/locales.php:168 ../cache/locales.php:434 msgid "Country" msgstr "" -#: [mood]title +#: ../cache/locales.php:169 msgid "Mood" msgstr "" -#: [mood]im +#: ../cache/locales.php:170 msgid "I'm " msgstr "" -#: [listen]title +#: ../cache/locales.php:171 msgid "Listening" msgstr "" -#: [last]title +#: ../cache/locales.php:173 msgid "Last seen" msgstr "" -#: [client]title +#: ../cache/locales.php:174 msgid "Client Informations" msgstr "" -#: [explore]last_registered +#: ../cache/locales.php:175 msgid "Last registered" msgstr "" -#: [explore]explore +#: ../cache/locales.php:176 msgid "Find some new friends" msgstr "" -#: [edit]title [button]edit +#: ../cache/locales.php:177 ../cache/locales.php:533 msgid "Edit" msgstr "" -#: [edit]alias +#: ../cache/locales.php:178 msgid "Alias" msgstr "" -#: [edit]group +#: ../cache/locales.php:179 msgid "Group" msgstr "" -#: [edit]updated [roster]updated +#: ../cache/locales.php:180 ../cache/locales.php:400 msgid "Contact updated" msgstr "" -#: [delete]title +#: ../cache/locales.php:181 msgid "Are you sure?" msgstr "" -#: [delete]text -msgid "You are going to delete one of your contacts, please confirm your action" +#: ../cache/locales.php:182 +msgid "" +"You are going to delete one of your contacts, please confirm your action" msgstr "" -#: [age]years +#: ../cache/locales.php:183 +#, php-format msgid "%s years" msgstr "" -#: [blog]last +#: ../cache/locales.php:184 msgid "Last public post" msgstr "" -#: [subscription]to -#, fuzzy -msgid "You can see this contact status" -msgstr "Fjern denne kontakten" - -#: [subscription]to_button -msgid "Share my status" -msgstr "" - -#: [subscription]to_text -msgid "But this contact cannot see yours" -msgstr "" - -#: [subscription]from -msgid "You are not subscribed to this contact" -msgstr "" - -#: [subscription]from_button -msgid "Ask to subscribe" -msgstr "" - -#: [subscription]from_text -msgid "But this contact can still see if you are online" -msgstr "" - -#: [subscription]nil -msgid "No subscriptions" -msgstr "" - -#: [subscription]nil_button -msgid "Invite" -msgstr "" - -#: [subscription]nil_text -msgid "This contact is in your contact list but there is no subscriptions between the two accounts" -msgstr "" - -#: [group]subscribe +#: ../cache/locales.php:185 msgid "Subscribe" msgstr "" -#: [group]subscribed +#: ../cache/locales.php:186 msgid "Subscribed" msgstr "" -#: [group]unsubscribe +#: ../cache/locales.php:187 msgid "Unsubscribe" msgstr "" -#: [group]unsubscribe_text +#: ../cache/locales.php:188 msgid "You are going to unsubscribe from this Group" msgstr "" -#: [group]unsubscribed +#: ../cache/locales.php:189 msgid "Unsubscribed" msgstr "" -#: [group]share_label +#: ../cache/locales.php:190 msgid "Make your membership to this group public to your friends" msgstr "" -#: [group]label_label +#: ../cache/locales.php:191 msgid "Give a label for this group" msgstr "" -#: [group]sure +#: ../cache/locales.php:192 msgid "Are you sure ?" msgstr "" -#: [group]empty_text +#: ../cache/locales.php:194 msgid "Discover, follow and share" msgstr "" -#: [group]empty +#: ../cache/locales.php:195 msgid "Something bad happened to this group" msgstr "" -#: [group]config_saved +#: ../cache/locales.php:196 msgid "Group configuration saved" msgstr "" -#: [group]delete_title +#: ../cache/locales.php:197 msgid "Delete the group" msgstr "" -#: [group]delete_text -msgid "You are going to delete the following group. Please confirm your action." +#: ../cache/locales.php:198 +msgid "" +"You are going to delete the following group. Please confirm your action." msgstr "" -#: [group]delete_clean_text -msgid "It seems that this group doesn't exists anymore. Do you want to remove it from your subscriptions?" +#: ../cache/locales.php:199 +msgid "" +"It seems that this group doesn't exists anymore. Do you want to remove it " +"from your subscriptions?" msgstr "" -#: [group]counter -msgid "%s groups on this server" -msgstr "" - -#: [group]subscriptions [statistics]subscriptions +#: ../cache/locales.php:201 ../cache/locales.php:408 msgid "Subscriptions" msgstr "" -#: [group]servers -msgid "Groups servers" -msgstr "" - -#: [group]search_server -msgid "Search for a new server" -msgstr "" - -#: [group]help_info1 -msgid "Groups are the perfect way to share posts about topics that you like with all the other Movim's users." -msgstr "" - -#: [group]help_info2 -msgid "Choose a server and a Group and subscribe to it using the %s button in the header. You can also create a new one using the %s button." -msgstr "" - -#: [group]help_info3 -msgid "Done? You can now publish a new post in the Group by using the %s button." -msgstr "" - -#: [group]help_info4 -msgid "You will find a list of all your subscribed Groups in My Subscriptions and receive instantly all the new incoming posts in the %sNews%s page." -msgstr "" - -#: [groups]empty_title +#: ../cache/locales.php:202 ../cache/locales.php:290 msgid "Hello" msgstr "" -#: [groups]contact_post [hello]contact_post [menu]contact_post +#: ../cache/locales.php:203 ../cache/locales.php:225 ../cache/locales.php:291 msgid "Contact post" msgstr "" -#: [groups]empty_text1 -msgid "You don't have any subscriptions yet, select a group server above to start exploring." +#: ../cache/locales.php:204 +msgid "" +"You don't have any subscriptions yet, select a group server above to start " +"exploring." msgstr "" -#: [groups]empty_text2 +#: ../cache/locales.php:205 msgid "Subscribe to your favorite feeds by bookmarking them." msgstr "" -#: [groups]subscriptions +#: ../cache/locales.php:206 msgid "My Subscriptions" msgstr "" -#: [groups]add +#: ../cache/locales.php:207 msgid "Create a new Group" msgstr "" -#: [groups]name +#: ../cache/locales.php:208 msgid "Group name" msgstr "" -#: [groups]name_example +#: ../cache/locales.php:209 msgid "My Little Pony - Fan Club" msgstr "" -#: [groups]created +#: ../cache/locales.php:210 msgid "Group created successfully" msgstr "" -#: [groups]deleted +#: ../cache/locales.php:211 msgid "Group deleted successfully" msgstr "" -#: [groups]name_error +#: ../cache/locales.php:212 msgid "Please provide a valid group name (4 characters minimum)" msgstr "" -#: [groups]no_creation +#: ../cache/locales.php:213 msgid "You cannot create a new Group on this server" msgstr "" -#: [groups]sub +#: ../cache/locales.php:214 +#, php-format msgid "%s subscribers" msgstr "" -#: [groups]num +#: ../cache/locales.php:215 +#, php-format msgid "%s posts" msgstr "" -#: [groups]disco_error -msgid "This server doesn't exists" -msgstr "" - -#: [menu]all +#: ../cache/locales.php:216 msgid "All" msgstr "" -#: [menu]refresh +#: ../cache/locales.php:219 msgid "Refresh all the streams" msgstr "" -#: [roster]search -msgid "Search in your contacts" -msgstr "" - -#: [hello]active_contacts -msgid "Active contacts" -msgstr "" - -#: [hello]chat -msgid "Go on the Chat page" -msgstr "" - -#: [hello]news [page]news -msgid "News" -msgstr "" - -#: [hello]news_page -msgid "Read all theses articles on the News page" -msgstr "" - -#: [hello]blog_title -msgid "Visit your public blog" -msgstr "" - -#: [hello]blog_text -msgid "See your public posts and share them with all your contacts" -msgstr "" - -#: [hello]share_title -msgid "Universal share button" -msgstr "" - -#: [hello]share_text -msgid "Bookmark or drag and drop the following button in your toolbar and use it on all the pages you want to share on Movim" -msgstr "" - -#: [hello]share_button -msgid "Share on Movim" -msgstr "" - -#: [help]faq -msgid "Frequently Asked Questions" -msgstr "" - -#: [banner]title -msgid "What do the little banners refer to ?" -msgstr "" - -#: [banner]info1 -msgid "Thanks to these five little banners, you can quickly identitfy the level of confdentiality applied to the information you provide." -msgstr "" - -#: [banner]white -msgid "White, only you can see the information" -msgstr "" - -#: [banner]green -msgid "Green, you have chosen some contacts who can see your information" -msgstr "" - -#: [banner]orange -msgid "Orange, all your contact list can see your information" -msgstr "" - -#: [banner]red -msgid "Red, everybody in the XMPP network can see your information" -msgstr "" - -#: [banner]black -msgid "Black, the whole Internet can see your information" -msgstr "" - -#: [wiki]question -msgid "Looking for some documentation ?" -msgstr "" - -#: [wiki]button -msgid "Read the Wiki" -msgstr "" - -#: [ml]question -msgid "Talk with us by email ?" -msgstr "" - -#: [ml]button -msgid "Join the Mailing List" -msgstr "" - -#: [chatroom]question -msgid "Chat with the team ?" -msgstr "" - -#: [chatroom]button -msgid "Join the Chatroom" -msgstr "" - -#: [init]location -msgid "Location node created" -msgstr "" - -#: [init]bookmark -msgid "Bookmark node created" -msgstr "" - -#: [init]vcard4 -msgid "Profile node created" -msgstr "" - -#: [init]avatar -msgid "Avatar node created" -msgstr "" - -#: [init]subscriptions -msgid "Subscriptions node created" -msgstr "" - -#: [init]microblog -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 "" - -#: [error]jid -msgid "Invalid JID" -msgstr "" - -#: [error]empty_challenge -msgid "Empty Challenge from the server" -msgstr "" - -#: [error]dns -msgid "XMPP Domain error, your account is not a correct Jabber ID" -msgstr "" - -#: [error]data_missings -msgid "Some data are missing !" -msgstr "" - -#: [error]wrong_password -msgid "Wrong password" -msgstr "Feil passord" - -#: [error]internal -msgid "Internal server error" -msgstr "" - -#: [error]session -msgid "Session error" -msgstr "" - -#: [error]account_created -msgid "Account successfully created" -msgstr "" - -#: [error]xmpp_unauthorized -msgctxt "[error]xmpp_unauthorized" -msgid "Your XMPP server is unauthorized" -msgstr "" - -#: [error]mec_error -msgid "The server takes too much time to respond" -msgstr "" - -#: [error]too_old -msgid "Your web browser is too old to use with Movim." -msgstr "" - -#: [error]websocket -msgid "Movim cannot talk with the server, please try again later (Websocket connection error)" -msgstr "" - -#: [error]impossible -msgid "Impossible login" -msgstr "" - -#: [error]title -msgid "Oops!" -msgstr "" - -#: [error]default [visio]unknown_error -msgid "Unknown error" -msgstr "" - -#: [error]login_format -msgid "Invalid username format" -msgstr "" - -#: [error]password_format -msgid "Invalid password format" -msgstr "" - -#: [error]unauthorized -msgctxt "[error]unauthorized" -msgid "Your XMPP server is unauthorized" -msgstr "" - -#: [error]conflict -msgid "A Movim session is already open on an other device" -msgstr "" - -#: [error]wrong_account -msgid "Movim failed to authenticate. You entered wrong data" -msgstr "" - -#: [error]mechanism -msgid "Authentication mechanism not supported by Movim" -msgstr "" - -#: [error]fail_auth -msgid "The XMPP authentification failed" -msgstr "" - -#: [account]title [accounts]accounts_title -msgid "Accounts" -msgstr "" - -#: [form]username -msgid "My address" -msgstr "Min adresse" - -#: [form]create_one -msgid "Create one !" -msgstr "" - -#: [form]another_account -msgid "Another account" -msgstr "" - -#: [form]no_account -msgid "No account yet ?" -msgstr "" - -#: [form]whitelist.info -msgid "You can login with accounts from theses servers" -msgstr "" - -#: [form]connected -msgid "Connected" -msgstr "" - -#: [form]population -msgid "Population" -msgstr "" - -#: [menu]empty_title -msgid "No news yet..." -msgstr "" - -#: [menu]empty -msgid "Welcome on your news feed, here you will see all the posts published by your contacts and in the groups you have subscribed." -msgstr "" - -#: [menu]refresh -msgid "Refreshing all the streams" -msgstr "" - -#: [menu]public -msgid "This post is public" -msgstr "" - -#: [affiliations]title -msgid "Manage your members" -msgstr "" - -#: [affiliations]get -msgid "Get the members" -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 "" - -#: [notifs]title -msgid "Pending Invitations" -msgstr "" - -#: [notifs]wants_to_talk -msgid "%s wants to talk with you" -msgstr "" - -#: [notifs]manage -msgid "Manage" -msgstr "" - -#: [post]news_feed -msgid "News Feed" -msgstr "" - -#: [post]placeholder -msgid "Discover and register to the groups you are interested in" -msgstr "" - -#: [post]preview [page]preview -msgid "Preview" -msgstr "" - -#: [post]help [page]help -msgid "Help" -msgstr "" - -#: [post]help_more -msgid "More help" -msgstr "" - -#: [post]help_manual -msgid "Markdown syntax manual" -msgstr "" - -#: [post]title -msgid "Title" -msgstr "" - -#: [post]content -msgid "Content" -msgstr "" - -#: [post]link -msgid "Link" -msgstr "" - -#: [post]tags -msgid "Tags" -msgstr "" - -#: [post]valid_url [publish]valid_url -msgid "Please enter a valid url" -msgstr "" - -#: [post]no_content_preview [publish]no_content_preview -msgid "No content to preview" -msgstr "" - -#: [post]no_content [publish]no_content [post]empty -msgid "No content" -msgstr "" - -#: [post]published -msgid "Post published" -msgstr "" - -#: [post]deleted -msgid "Post deleted" -msgstr "" - -#: [post]gallery -msgid "This picture will be added to your gallery" -msgstr "" - -#: [post]hot -msgid "What's Hot" -msgstr "" - -#: [post]hot_text -msgid "Posts recently published in Groups that you are not subscribed (yet)" -msgstr "" - -#: [post]new [publish]new -msgid "New post" -msgstr "" - -#: [post]embed_tip -msgid "You can also use services like Imgur or Flickr to host your picture and paste the link here." -msgstr "" - -#: [post]repost -msgid "This is a re-post from %s" -msgstr "" - -#: [post]repost_profile -msgid "See %s profile" -msgstr "" - -#: [post]public -msgid "Publish this post publicly?" -msgstr "" - -#: [post]blog_add -msgid "Post published on your blog" -msgstr "" - -#: [post]blog_remove -msgid "Post removed from your blog" -msgstr "" - -#: [post]delete_title [post]delete -msgid "Delete this post" -msgstr "" - -#: [post]delete_text -msgid "You are going to delete this post, please confirm your action" -msgstr "" - -#: [post]comments_disabled -msgid "Comments disabled" -msgstr "" - -#: [post]comment_published -msgid "Comment published" -msgstr "" - -#: [status]disconnect -msgid "Disconnect" -msgstr "" - -#: [status]here -msgid "Your status here !" -msgstr "" - -#: [status]updated -msgid "Status updated" -msgstr "" - -#: [status]status -msgid "Status" -msgstr "" - -#: [status]presence -msgid "Presence" -msgstr "" - -#: [status]online -msgid "Online with Movim" -msgstr "" - -#: [publish]title -msgid "Publish" -msgstr "" - -#: [publish]attach -msgid "Add a file or a picture to your post" -msgstr "" - -#: [publish]no_publication -msgid "You cannot publish a post on this Group" -msgstr "" - -#: [publish]form_filled -msgid "Some fields have been filled in. Do you still want to go back and loose their content?" -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 "" - -#: [rooms]empty_text1 -msgid "You don't have any chatroom yet." -msgstr "" - -#: [rooms]empty_text2 -msgid "Add one by clicking on the add button in the header." -msgstr "" - -#: [chatrooms]title -msgid "Chatrooms" -msgstr "" - -#: [chatrooms]name_placeholder -msgid "My Favorite Room" -msgstr "" - -#: [chatrooms]users -msgid "Users in the room" -msgstr "" - -#: [chatrooms]bad_nickname -msgid "Please enter a correct nickname (2 to 40 characters)" -msgstr "" - -#: [room]anonymous_title -msgid "Public chatroom" -msgstr "" - -#: [room]no_room -msgid "Please provide a room address" -msgstr "" - -#: [room]anonymous_text1 -msgid "You are currently logued as an anonymous user." -msgstr "" - -#: [room]anonymous_text2 -msgid "You can join using your own account or create one on the login page by loging out using the cross in the top-right corner." -msgstr "" - -#: [room]anonymous_login -msgid "Login on %s" -msgstr "" - -#: [room]nick -msgid "Your nickname" -msgstr "" - -#: [roster]ungrouped -msgid "Ungrouped" -msgstr "" - -#: [roster]show_disconnected -msgid "Show disconnected contacts" -msgstr "" - -#: [roster]hide_disconnected -msgid "Hide disconnected contacts" -msgstr "" - -#: [roster]show_group -msgid "Show group %s" -msgstr "" - -#: [roster]hide_group -msgid "Hide group %s" -msgstr "" - -#: [roster]jid_error -msgid "Please enter a valid Jabber ID" -msgstr "" - -#: [roster]no_contacts_title -msgid "No contacts ?" -msgstr "" - -#: [roster]no_contacts_text -msgid "You can add one using the + button bellow" -msgstr "" - -#: [roster]show_hide -msgid "Show/Hide" -msgstr "" - -#: [roster]add_contact_info1 -msgid "Enter the Jabber ID of your contact." -msgstr "" - -#: [roster]add_contact_info2 -msgid "Press enter to validate." -msgstr "" - -#: [roster]jid -msgid "JID" -msgstr "" - -#: [roster]results -msgid "Results" -msgstr "" - -#: [roster]added -msgid "Contact added" -msgstr "" - -#: [roster]deleted -msgid "Contact deleted" -msgstr "" - -#: [roster]search +#: ../cache/locales.php:220 ../cache/locales.php:402 msgid "Search" msgstr "" -#: [share]error +#: ../cache/locales.php:221 +msgid "Go on the Chat page" +msgstr "" + +#: ../cache/locales.php:222 +msgid "Read all theses articles on the News page" +msgstr "" + +#: ../cache/locales.php:223 +msgid "Visit your public blog" +msgstr "" + +#: ../cache/locales.php:224 +msgid "See your public posts and share them with all your contacts" +msgstr "" + +#: ../cache/locales.php:226 +msgid "Universal share button" +msgstr "" + +#: ../cache/locales.php:227 +msgid "" +"Bookmark or drag and drop the following button in your toolbar and use it on " +"all the pages you want to share on Movim" +msgstr "" + +#: ../cache/locales.php:228 +msgid "Share on Movim" +msgstr "" + +#: ../cache/locales.php:229 +msgid "Frequently Asked Questions" +msgstr "" + +#: ../cache/locales.php:230 +msgid "What do the little banners refer to ?" +msgstr "" + +#: ../cache/locales.php:231 +msgid "" +"Thanks to these five little banners, you can quickly identitfy the level of " +"confdentiality applied to the information you provide." +msgstr "" + +#: ../cache/locales.php:232 +msgid "White, only you can see the information" +msgstr "" + +#: ../cache/locales.php:233 +msgid "Green, you have chosen some contacts who can see your information" +msgstr "" + +#: ../cache/locales.php:234 +msgid "Orange, all your contact list can see your information" +msgstr "" + +#: ../cache/locales.php:235 +msgid "Red, everybody in the XMPP network can see your information" +msgstr "" + +#: ../cache/locales.php:236 +msgid "Black, the whole Internet can see your information" +msgstr "" + +#: ../cache/locales.php:237 +msgid "Looking for some documentation ?" +msgstr "" + +#: ../cache/locales.php:238 +msgid "Read the Wiki" +msgstr "" + +#: ../cache/locales.php:239 +msgid "Talk with us by email ?" +msgstr "" + +#: ../cache/locales.php:240 +msgid "Join the Mailing List" +msgstr "" + +#: ../cache/locales.php:241 +msgid "Chat with the team ?" +msgstr "" + +#: ../cache/locales.php:242 +msgid "Join the Chatroom" +msgstr "" + +#: ../cache/locales.php:243 +msgid "Location node created" +msgstr "" + +#: ../cache/locales.php:244 +msgid "Bookmark node created" +msgstr "" + +#: ../cache/locales.php:245 +msgid "Profile node created" +msgstr "" + +#: ../cache/locales.php:246 +msgid "Avatar node created" +msgstr "" + +#: ../cache/locales.php:247 +msgid "Subscriptions node created" +msgstr "" + +#: ../cache/locales.php:248 +msgid "Microblog node created" +msgstr "" + +#: ../cache/locales.php:249 +msgid "Location" +msgstr "" + +#: ../cache/locales.php:250 +msgid "Wrong position" +msgstr "" + +#: ../cache/locales.php:251 +msgid "Location updated" +msgstr "" + +#: ../cache/locales.php:252 +msgid "Update my position" +msgstr "" + +#: ../cache/locales.php:253 +msgid "Wrong username" +msgstr "" + +#: ../cache/locales.php:254 +msgid "Invalid JID" +msgstr "" + +#: ../cache/locales.php:255 +msgid "Empty Challenge from the server" +msgstr "" + +#: ../cache/locales.php:256 +msgid "XMPP Domain error, your account is not a correct Jabber ID" +msgstr "" + +#: ../cache/locales.php:257 +msgid "Some data are missing !" +msgstr "" + +#: ../cache/locales.php:258 +msgid "Wrong password" +msgstr "Feil passord" + +#: ../cache/locales.php:259 +msgid "Internal server error" +msgstr "" + +#: ../cache/locales.php:260 +msgid "Session error" +msgstr "" + +#: ../cache/locales.php:261 +msgid "Account successfully created" +msgstr "" + +#: ../cache/locales.php:262 ../cache/locales.php:271 +msgid "Your XMPP server is unauthorized" +msgstr "" + +#: ../cache/locales.php:263 +msgid "The server takes too much time to respond" +msgstr "" + +#: ../cache/locales.php:264 +msgid "Your web browser is too old to use with Movim." +msgstr "" + +#: ../cache/locales.php:265 +msgid "" +"Movim cannot talk with the server, please try again later (Websocket " +"connection error)" +msgstr "" + +#: ../cache/locales.php:266 +msgid "Impossible login" +msgstr "" + +#: ../cache/locales.php:267 +msgid "Oops!" +msgstr "" + +#: ../cache/locales.php:268 ../cache/locales.php:449 ../cache/locales.php:455 +msgid "Unknown error" +msgstr "" + +#: ../cache/locales.php:269 +msgid "Invalid username format" +msgstr "" + +#: ../cache/locales.php:270 +msgid "Invalid password format" +msgstr "" + +#: ../cache/locales.php:272 +msgid "A Movim session is already open on an other device" +msgstr "" + +#: ../cache/locales.php:273 +msgid "Movim failed to authenticate. You entered wrong data" +msgstr "" + +#: ../cache/locales.php:274 +msgid "Authentication mechanism not supported by Movim" +msgstr "" + +#: ../cache/locales.php:275 +msgid "The XMPP authentification failed" +msgstr "" + +#: ../cache/locales.php:276 +#, php-format +msgid "" +"You can login with Facebook (chat only) using %syour.id@chat.facebook.com%s " +"and your password" +msgstr "" + +#: ../cache/locales.php:277 +#, php-format +msgid "%sGmail accounts are also compatible%s but are not fully supported" +msgstr "" + +#: ../cache/locales.php:278 +msgid "You can login using your favorite Jabber account" +msgstr "" + +#: ../cache/locales.php:279 +msgid "or with our demonstration account" +msgstr "" + +#: ../cache/locales.php:280 ../cache/locales.php:435 +msgid "Accounts" +msgstr "" + +#: ../cache/locales.php:281 +msgid "My address" +msgstr "Min adresse" + +#: ../cache/locales.php:283 +msgid "Create one !" +msgstr "" + +#: ../cache/locales.php:284 +msgid "No account yet ?" +msgstr "" + +#: ../cache/locales.php:285 +msgid "Another account" +msgstr "" + +#: ../cache/locales.php:286 +msgid "You can login with accounts from theses servers" +msgstr "" + +#: ../cache/locales.php:287 +msgid "Connected" +msgstr "" + +#: ../cache/locales.php:288 +msgid "Population" +msgstr "" + +#: ../cache/locales.php:289 +msgid "Bad nickname (between 4 and 40 characters)" +msgstr "" + +#: ../cache/locales.php:292 +msgid "" +"Welcome on your news feed, here you will see all the posts published in the " +"groups you have subscribed." +msgstr "" + +#: ../cache/locales.php:293 +msgid "Refreshing all the streams" +msgstr "" + +#: ../cache/locales.php:294 +msgid "This post is public" +msgstr "" + +#: ../cache/locales.php:295 +msgid "Manage your members" +msgstr "" + +#: ../cache/locales.php:296 +msgid "Get the members" +msgstr "" + +#: ../cache/locales.php:297 +msgid "Affiliations saved" +msgstr "" + +#: ../cache/locales.php:298 +msgid "Manage your subscriptions" +msgstr "" + +#: ../cache/locales.php:299 +msgid "Manage the subscriptions" +msgstr "" + +#: ../cache/locales.php:300 +msgid "Get the subscriptions" +msgstr "" + +#: ../cache/locales.php:301 +msgid "Subscriptions saved" +msgstr "" + +#: ../cache/locales.php:302 +msgid "Pending Invitations" +msgstr "" + +#: ../cache/locales.php:303 +#, php-format +msgid "%s wants to talk with you" +msgstr "" + +#: ../cache/locales.php:304 +msgid "Manage" +msgstr "" + +#: ../cache/locales.php:305 ../cache/locales.php:338 +msgid "News Feed" +msgstr "" + +#: ../cache/locales.php:306 ../cache/locales.php:339 +msgid "Discover and register to the groups you are interested in" +msgstr "" + +#: ../cache/locales.php:307 ../cache/locales.php:340 ../cache/locales.php:482 +msgid "Preview" +msgstr "" + +#: ../cache/locales.php:308 ../cache/locales.php:341 ../cache/locales.php:478 +msgid "Help" +msgstr "" + +#: ../cache/locales.php:309 ../cache/locales.php:342 +msgid "More help" +msgstr "" + +#: ../cache/locales.php:310 ../cache/locales.php:343 +msgid "Markdown syntax manual" +msgstr "" + +#: ../cache/locales.php:311 ../cache/locales.php:344 ../cache/locales.php:681 +msgid "Title" +msgstr "" + +#: ../cache/locales.php:312 ../cache/locales.php:345 +msgid "Content" +msgstr "" + +#: ../cache/locales.php:313 ../cache/locales.php:346 +msgid "Link" +msgstr "" + +#: ../cache/locales.php:314 ../cache/locales.php:347 +msgid "Tags" +msgstr "" + +#: ../cache/locales.php:315 ../cache/locales.php:348 +msgid "Please enter a valid url" +msgstr "" + +#: ../cache/locales.php:316 ../cache/locales.php:349 +msgid "No content to preview" +msgstr "" + +#: ../cache/locales.php:317 ../cache/locales.php:350 ../cache/locales.php:687 +msgid "No content" +msgstr "" + +#: ../cache/locales.php:318 ../cache/locales.php:351 +msgid "Post published" +msgstr "" + +#: ../cache/locales.php:319 ../cache/locales.php:352 +msgid "Post deleted" +msgstr "" + +#: ../cache/locales.php:320 ../cache/locales.php:353 +msgid "This picture will be added to your gallery" +msgstr "" + +#: ../cache/locales.php:321 ../cache/locales.php:354 +msgid "What's Hot" +msgstr "" + +#: ../cache/locales.php:322 ../cache/locales.php:355 +msgid "New post" +msgstr "" + +#: ../cache/locales.php:323 ../cache/locales.php:357 +msgid "" +"You can also use services like Imgur or Flickr to host your picture and " +"paste the link here." +msgstr "" + +#: ../cache/locales.php:324 +#, php-format +msgid "This is a re-post from %s" +msgstr "" + +#: ../cache/locales.php:325 +#, php-format +msgid "See %s profile" +msgstr "" + +#: ../cache/locales.php:326 +msgid "Publish this post on your public feed?" +msgstr "" + +#: ../cache/locales.php:327 +msgid "Post published on your blog" +msgstr "" + +#: ../cache/locales.php:328 +msgid "Post removed from your blog" +msgstr "" + +#: ../cache/locales.php:329 ../cache/locales.php:701 +msgid "Delete this post" +msgstr "" + +#: ../cache/locales.php:330 +msgid "You are going to delete this post, please confirm your action" +msgstr "" + +#: ../cache/locales.php:331 +msgid "Comments disabled" +msgstr "" + +#: ../cache/locales.php:332 +msgid "Comment published" +msgstr "" + +#: ../cache/locales.php:333 +msgid "Disconnect" +msgstr "" + +#: ../cache/locales.php:334 +msgid "Your status here !" +msgstr "" + +#: ../cache/locales.php:335 +msgid "Status updated" +msgstr "" + +#: ../cache/locales.php:336 +msgid "Status" +msgstr "" + +#: ../cache/locales.php:337 +msgid "Presence" +msgstr "" + +#: ../cache/locales.php:356 +msgid "Publish" +msgstr "" + +#: ../cache/locales.php:358 +msgid "You cannot publish a post on this Group" +msgstr "" + +#: ../cache/locales.php:359 +msgid "" +"Some fields have been filled in. Do you still want to go back and loose " +"their content?" +msgstr "" + +#: ../cache/locales.php:360 +msgid "Shared" +msgstr "" + +#: ../cache/locales.php:362 +#, php-format +msgid "%s has been added to your public groups" +msgstr "" + +#: ../cache/locales.php:363 +#, php-format +msgid "%s has been removed from your public groups" +msgstr "" + +#: ../cache/locales.php:364 +msgid "Add a chatroom" +msgstr "" + +#: ../cache/locales.php:365 +msgid "You don't have any chatroom yet." +msgstr "" + +#: ../cache/locales.php:366 +msgid "Add one by clicking on the add button in the header." +msgstr "" + +#: ../cache/locales.php:367 +msgid "Chatrooms" +msgstr "" + +#: ../cache/locales.php:370 +msgid "My Favorite Room" +msgstr "" + +#: ../cache/locales.php:374 +msgid "Remove a chatroom" +msgstr "" + +#: ../cache/locales.php:375 +msgid "" +"You are going to remove the following chatroom. Please confirm your action." +msgstr "" + +#: ../cache/locales.php:378 +msgid "Users in the room" +msgstr "" + +#: ../cache/locales.php:379 +msgid "Please enter a correct nickname (6 to 40 characters)" +msgstr "" + +#: ../cache/locales.php:381 +msgid "Public chatroom" +msgstr "" + +#: ../cache/locales.php:382 +msgid "Please provide a room address" +msgstr "" + +#: ../cache/locales.php:383 +msgid "You are currently logued as an anonymous user." +msgstr "" + +#: ../cache/locales.php:384 +msgid "" +"You can join using your own account or create one on the login page by " +"loging out using the cross in the top-right corner." +msgstr "" + +#: ../cache/locales.php:385 +#, php-format +msgid "Login on %s" +msgstr "" + +#: ../cache/locales.php:386 +msgid "Your nickname" +msgstr "" + +#: ../cache/locales.php:387 +msgid "Ungrouped" +msgstr "" + +#: ../cache/locales.php:388 +msgid "Show disconnected contacts" +msgstr "" + +#: ../cache/locales.php:389 +msgid "Hide disconnected contacts" +msgstr "" + +#: ../cache/locales.php:390 +#, php-format +msgid "Show group %s" +msgstr "" + +#: ../cache/locales.php:391 +#, php-format +msgid "Hide group %s" +msgstr "" + +#: ../cache/locales.php:392 +msgid "Please enter a valid Jabber ID" +msgstr "" + +#: ../cache/locales.php:393 +msgid "" +"No contacts ? You can add one using the + button bellow or going to the " +"Explore page" +msgstr "" + +#: ../cache/locales.php:394 +msgid "Show/Hide" +msgstr "" + +#: ../cache/locales.php:395 +msgid "Enter the Jabber ID of your contact." +msgstr "" + +#: ../cache/locales.php:396 +msgid "Press enter to validate." +msgstr "" + +#: ../cache/locales.php:397 +msgid "JID" +msgstr "" + +#: ../cache/locales.php:398 +msgid "Results" +msgstr "" + +#: ../cache/locales.php:399 +msgid "Contact added" +msgstr "" + +#: ../cache/locales.php:401 +msgid "Contact deleted" +msgstr "" + +#: ../cache/locales.php:403 msgid "This is not a valid url" msgstr "" -#: [share]success +#: ../cache/locales.php:404 msgid "Sharing the URL" msgstr "" -#: [statistics]title +#: ../cache/locales.php:405 msgid "Statistics" msgstr "" -#: [statistics]since +#: ../cache/locales.php:406 msgid "Since" msgstr "" -#: [statistics]sessions +#: ../cache/locales.php:407 msgid "Sessions" msgstr "" -#: [statistics]monthly_sub +#: ../cache/locales.php:409 msgid "Monthly Subscriptions" msgstr "" -#: [statistics]monthly_sub_cum +#: ../cache/locales.php:410 msgid "Monthly Subscriptions Cumulated" msgstr "" -#: [subscribe]info -msgid "Movim is a decentralized social network, before creating a new account you need to choose a server to register." +#: ../cache/locales.php:412 +msgid "" +"Movim is a decentralized social network, before creating a new account you " +"need to choose a server to register." msgstr "" -#: [subscribe]server_question +#: ../cache/locales.php:413 msgid "Your server here ?" msgstr "" -#: [subscribe]server_contact +#: ../cache/locales.php:414 msgid "Contact us to add yours to the officially supported servers list" msgstr "" -#: [feed]nope +#: ../cache/locales.php:416 msgid "No public feed for this contact" msgstr "" -#: [feed]nope_contact +#: ../cache/locales.php:417 msgid "No contact specified" msgstr "" -#: [upload]title -msgid "Upload a file" -msgstr "" - -#: [upload]choose -msgid "Choose a file to upload" -msgstr "" - -#: [vcard]title [page]profile +#: ../cache/locales.php:418 ../cache/locales.php:473 msgid "Profile" msgstr "Profil" -#: [vcard]updated +#: ../cache/locales.php:419 msgid "Profile Updated" msgstr "" -#: [vcard]not_updated +#: ../cache/locales.php:420 msgid "Profile Not Updated" msgstr "" -#: [vcard]public +#: ../cache/locales.php:421 msgid "Your profile is now public" msgstr "" -#: [vcard]restricted +#: ../cache/locales.php:422 msgid "Your profile is now restricted" msgstr "" -#: [general]nickname -msgctxt "[general]nickname" -msgid "Nickname" -msgstr "" - -#: [accounts]twitter +#: ../cache/locales.php:436 msgid "Twitter" msgstr "" -#: [accounts]skype +#: ../cache/locales.php:437 msgid "Skype" msgstr "" -#: [accounts]yahoo +#: ../cache/locales.php:438 msgid "Yahoo" msgstr "" -#: [accounts]accounts_nickname -msgctxt "[accounts]accounts_nickname" -msgid "Nickname" -msgstr "" - -#: [accounts]accounts_yahoo -msgid "Yahoo Account" -msgstr "" - -#: [privacy]privacy_title +#: ../cache/locales.php:439 msgid "Privacy Level" msgstr "" -#: [privacy]privacy_question +#: ../cache/locales.php:440 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." +#: ../cache/locales.php:441 +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." msgstr "" -#: [save]submit [button]submit -msgid "Submit" -msgstr "" - -#: [save]reset [button]reset -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 +#: ../cache/locales.php:442 msgid "Call" msgstr "" -#: [visio]hang_up +#: ../cache/locales.php:443 msgid "Hang up" msgstr "" -#: [visio]connection +#: ../cache/locales.php:444 msgid "Connection" msgstr "" -#: [global]no_js +#: ../cache/locales.php:445 ../cache/locales.php:451 +msgid "Hung up" +msgstr "" + +#: ../cache/locales.php:446 ../cache/locales.php:452 +msgid "Your contact is busy" +msgstr "" + +#: ../cache/locales.php:447 ../cache/locales.php:453 +msgid "Declined" +msgstr "" + +#: ../cache/locales.php:448 ../cache/locales.php:454 +msgid "Remote application incompatible" +msgstr "" + +#: ../cache/locales.php:450 ../cache/locales.php:456 +msgid "Is calling you" +msgstr "" + +#: ../cache/locales.php:457 msgid "You don't have javascript enabled. Good luck with that." msgstr "" -#: [global]description -msgid "Movim is a kickass distributed social networking platform that protect your privacy an comes with a set of awesome features." +#: ../cache/locales.php:458 +msgid "" +"Movim is a kickass distributed social networking platform that protect your " +"privacy an comes with a set of awesome features." msgstr "" -#: [page]administration +#: ../cache/locales.php:459 msgid "Administration" msgstr "" -#: [page]home +#: ../cache/locales.php:460 msgid "Home" msgstr "Hjem" -#: [page]discover +#: ../cache/locales.php:461 msgid "Discover" msgstr "" -#: [page]explore +#: ../cache/locales.php:462 msgid "Explore" msgstr "" -#: [page]account_creation +#: ../cache/locales.php:463 msgid "Account Creation" msgstr "" -#: [page]avatar +#: ../cache/locales.php:464 +msgid "News" +msgstr "" + +#: ../cache/locales.php:465 msgid "Avatar" msgstr "Avatar" -#: [page]chats +#: ../cache/locales.php:467 msgid "Chats" msgstr "" -#: [page]server +#: ../cache/locales.php:470 msgid "Server" msgstr "" -#: [page]public_groups +#: ../cache/locales.php:471 msgid "Public Groups" msgstr "" -#: [page]viewer +#: ../cache/locales.php:472 msgid "Viewer" msgstr "" -#: [page]media +#: ../cache/locales.php:474 msgid "Media" msgstr "" -#: [page]blog +#: ../cache/locales.php:475 msgid "Blog" msgstr "" -#: [page]about +#: ../cache/locales.php:476 msgid "About" msgstr "" -#: [page]login +#: ../cache/locales.php:477 msgid "Login" msgstr "" -#: [page]feed +#: ../cache/locales.php:479 msgid "Feed" msgstr "" -#: [page]gallery +#: ../cache/locales.php:481 msgid "Gallery" msgstr "" -#: [page]visio +#: ../cache/locales.php:483 msgid "Visio-conference" msgstr "" -#: [page]pods +#: ../cache/locales.php:484 msgid "Pods" msgstr "" -#: [page]share +#: ../cache/locales.php:485 msgid "Share" msgstr "" -#: [page]room +#: ../cache/locales.php:486 msgid "Room" msgstr "" -#: [error]error +#: ../cache/locales.php:487 +#, php-format msgid "Error: %s" msgstr "Feil %s" -#: [error]cannot_load_file +#: ../cache/locales.php:488 +#, php-format msgid "Cannot load file '%s'" msgstr "" -#: [error]route +#: ../cache/locales.php:489 +#, php-format msgid "Route error, please set all the parameters for the page %s" msgstr "" -#: [error]widget_load_error +#: ../cache/locales.php:490 +#, php-format msgid "Requested widget '%s' doesn't exist." msgstr "" -#: [error]widget_call_error +#: ../cache/locales.php:491 +#, php-format msgid "Requested event '%s' not registered." msgstr "" -#: [error]whoops +#: ../cache/locales.php:492 msgid "Whoops!" msgstr "" -#: [error]media_not_found +#: ../cache/locales.php:493 msgid "It seem that you don't have any pictures here?" msgstr "" -#: [error]media_ask_upload +#: ../cache/locales.php:494 msgid "You can try to upload a couple by going to the Media page" msgstr "" -#: [title]about +#: ../cache/locales.php:495 +#, php-format msgid "%s - About" msgstr "" -#: [title]account +#: ../cache/locales.php:496 +#, php-format msgid "%s - Account" msgstr "" -#: [title]administration +#: ../cache/locales.php:497 +#, php-format msgid "%s - Administration Panel" msgstr "" -#: [title]blog +#: ../cache/locales.php:498 +#, php-format msgid "%s - Blog" msgstr "" -#: [title]configuration +#: ../cache/locales.php:499 +#, php-format msgid "%s - Configuration" msgstr "" -#: [title]discover +#: ../cache/locales.php:500 +#, php-format msgid "%s - Discover" msgstr "" -#: [title]explore +#: ../cache/locales.php:501 +#, php-format msgid "%s - Explore" msgstr "" -#: [title]help +#: ../cache/locales.php:502 +#, php-format msgid "%s - Help Page" msgstr "" -#: [title]login +#: ../cache/locales.php:503 +#, php-format msgid "%s - Login to Movim" msgstr "%s - Logg in på Movim" -#: [title]main +#: ../cache/locales.php:504 +#, php-format msgid "%s - Welcome to Movim" msgstr "%s - Velkommen til Movim" -#: [title]media +#: ../cache/locales.php:505 +#, php-format msgid "%s - Media" msgstr "" -#: [title]news +#: ../cache/locales.php:506 +#, php-format msgid "%s - News" msgstr "" -#: [title]node_configuration +#: ../cache/locales.php:507 +#, php-format msgid "%s - Group Configuration" msgstr "" -#: [title]node +#: ../cache/locales.php:508 +#, php-format msgid "%s - Group" msgstr "" -#: [title]not_found +#: ../cache/locales.php:509 +#, php-format msgid "%s - 404" msgstr "" -#: [title]profile +#: ../cache/locales.php:510 +#, php-format msgid "%s - Profile" msgstr "" -#: [title]server +#: ../cache/locales.php:511 +#, php-format msgid "%s - Server" msgstr "" -#: [button]validate +#: ../cache/locales.php:512 msgid "Validate" msgstr "" -#: [button]refresh +#: ../cache/locales.php:513 msgid "Refresh" msgstr "" -#: [button]add +#: ../cache/locales.php:514 msgid "Add" msgstr "" -#: [button]delete +#: ../cache/locales.php:515 msgid "Delete" msgstr "" -#: [button]cancel +#: ../cache/locales.php:516 +msgid "Remove" +msgstr "" + +#: ../cache/locales.php:517 msgid "Cancel" msgstr "" -#: [button]close +#: ../cache/locales.php:518 msgid "Close" msgstr "" -#: [button]update +#: ../cache/locales.php:519 msgid "Update" msgstr "" -#: [button]updating +#: ../cache/locales.php:520 msgid "Updating" msgstr "" -#: [button]submitting +#: ../cache/locales.php:521 +msgid "Submit" +msgstr "" + +#: ../cache/locales.php:522 msgid "Submitting" msgstr "" -#: [button]register +#: ../cache/locales.php:523 +msgid "Reset" +msgstr "" + +#: ../cache/locales.php:524 msgid "Register" msgstr "" -#: [button]unregister +#: ../cache/locales.php:525 msgid "Unregister" msgstr "" -#: [button]save +#: ../cache/locales.php:526 msgid "Save" msgstr "" -#: [button]clear +#: ../cache/locales.php:527 msgid "Clear" msgstr "" -#: [button]upload +#: ../cache/locales.php:528 msgid "Upload" msgstr "" -#: [button]come_in +#: ../cache/locales.php:529 msgid "Come in!" msgstr "" -#: [button]connecting +#: ../cache/locales.php:530 msgid "Connecting" msgstr "" -#: [button]bool_yes +#: ../cache/locales.php:531 msgid "Yes" msgstr "" -#: [button]bool_no +#: ../cache/locales.php:532 msgid "No" msgstr "" -#: [button]return +#: ../cache/locales.php:534 msgid "Return" msgstr "" -#: [button]accept +#: ../cache/locales.php:535 msgid "Accept" msgstr "Godta" -#: [button]refuse +#: ../cache/locales.php:536 msgid "Refuse" msgstr "" -#: [button]next +#: ../cache/locales.php:537 msgid "Next" msgstr "" -#: [button]previous +#: ../cache/locales.php:538 msgid "Previous" msgstr "" -#: [step]step +#: ../cache/locales.php:539 +#, php-format msgid "Step %s" msgstr "" -#: [day]title +#: ../cache/locales.php:542 msgid "Day" msgstr "" -#: [day]monday +#: ../cache/locales.php:543 msgid "Monday" msgstr "" -#: [day]tuesday +#: ../cache/locales.php:544 msgid "Tuesday" msgstr "" -#: [day]wednesday +#: ../cache/locales.php:545 msgid "Wednesday" msgstr "" -#: [day]thursday +#: ../cache/locales.php:546 msgid "Thursday" msgstr "" -#: [day]friday +#: ../cache/locales.php:547 msgid "Friday" msgstr "" -#: [day]saturday +#: ../cache/locales.php:548 msgid "Saturday" msgstr "" -#: [day]sunday +#: ../cache/locales.php:549 msgid "Sunday" msgstr "" -#: [gender]nil -msgctxt "[gender]nil" +#: ../cache/locales.php:550 ../cache/locales.php:559 msgid "None" msgstr "" -#: [gender]male +#: ../cache/locales.php:551 msgid "Male" msgstr "" -#: [gender]female +#: ../cache/locales.php:552 msgid "Female" msgstr "" -#: [gender]other +#: ../cache/locales.php:553 msgid "Other" msgstr "" -#: [client]bot +#: ../cache/locales.php:554 msgid "Bot" msgstr "" -#: [client]desktop +#: ../cache/locales.php:555 msgid "Desktop" msgstr "" -#: [client]phone +#: ../cache/locales.php:556 msgid "Phone" msgstr "" -#: [client]web +#: ../cache/locales.php:557 msgid "Web" msgstr "" -#: [client]registered +#: ../cache/locales.php:558 msgid "Registered" msgstr "" -#: [marital]nil -msgctxt "[marital]nil" -msgid "None" -msgstr "" - -#: [marital]single +#: ../cache/locales.php:560 msgid "Single" msgstr "" -#: [marital]relationship +#: ../cache/locales.php:561 msgid "In a relationship" msgstr "" -#: [marital]married +#: ../cache/locales.php:562 msgid "Married" msgstr "" -#: [marital]divorced +#: ../cache/locales.php:563 msgid "Divorced" msgstr "" -#: [marital]widowed +#: ../cache/locales.php:564 msgid "Widowed" msgstr "" -#: [marital]cohabiting +#: ../cache/locales.php:565 msgid "Cohabiting" msgstr "" -#: [marital]union +#: ../cache/locales.php:566 msgid "Civil Union" msgstr "" -#: [flag]white +#: ../cache/locales.php:567 msgid "Not shared" msgstr "" -#: [flag]green +#: ../cache/locales.php:568 msgid "Shared with one contact" msgstr "" -#: [flag]orange +#: ../cache/locales.php:569 msgid "Shared with all contacts" msgstr "" -#: [flag]red +#: ../cache/locales.php:570 msgid "Shared with the XMPP network" msgstr "" -#: [flag]black +#: ../cache/locales.php:571 msgid "Shared with the whole Internet" msgstr "" -#: [presence]online +#: ../cache/locales.php:572 msgid "Online" msgstr "" -#: [presence]away +#: ../cache/locales.php:573 msgid "Away" msgstr "Borte" -#: [presence]dnd +#: ../cache/locales.php:574 msgid "Do Not Disturb" msgstr "" -#: [presence]xa +#: ../cache/locales.php:575 msgid "Extended Away" msgstr "" -#: [presence]offline +#: ../cache/locales.php:576 msgid "Offline" msgstr "" -#: [presence]error +#: ../cache/locales.php:577 msgid "Error" msgstr "" -#: [mood]afraid +#: ../cache/locales.php:578 msgid "afraid" msgstr "" -#: [mood]amazed +#: ../cache/locales.php:579 msgid "amazed" msgstr "" -#: [mood]amorous +#: ../cache/locales.php:580 msgid "amorous" msgstr "" -#: [mood]angry +#: ../cache/locales.php:581 msgid "angry" msgstr "" -#: [mood]annoyed +#: ../cache/locales.php:582 msgid "annoyed" msgstr "" -#: [mood]anxious +#: ../cache/locales.php:583 msgid "anxious" msgstr "" -#: [mood]aroused +#: ../cache/locales.php:584 msgid "aroused" msgstr "" -#: [mood]ashamed +#: ../cache/locales.php:585 msgid "ashamed" msgstr "" -#: [mood]bored +#: ../cache/locales.php:586 msgid "bored" msgstr "" -#: [mood]brave +#: ../cache/locales.php:587 msgid "brave" msgstr "" -#: [mood]calm +#: ../cache/locales.php:588 msgid "calm" msgstr "" -#: [mood]cautious +#: ../cache/locales.php:589 msgid "cautious" msgstr "" -#: [mood]cold +#: ../cache/locales.php:590 msgid "cold" msgstr "" -#: [mood]confident +#: ../cache/locales.php:591 msgid "confident" msgstr "" -#: [mood]confused +#: ../cache/locales.php:592 msgid "confused" msgstr "" -#: [mood]contemplative +#: ../cache/locales.php:593 msgid "contemplative" msgstr "" -#: [mood]contented +#: ../cache/locales.php:594 msgid "contented" msgstr "" -#: [mood]cranky +#: ../cache/locales.php:595 msgid "cranky" msgstr "" -#: [mood]crazy +#: ../cache/locales.php:596 msgid "crazy" msgstr "" -#: [mood]creative +#: ../cache/locales.php:597 msgid "creative" msgstr "" -#: [mood]curious +#: ../cache/locales.php:598 msgid "curious" msgstr "" -#: [mood]dejected +#: ../cache/locales.php:599 msgid "dejected" msgstr "" -#: [mood]depressed +#: ../cache/locales.php:600 msgid "depressed" msgstr "" -#: [mood]disappointed +#: ../cache/locales.php:601 msgid "disappointed" msgstr "" -#: [mood]disgusted +#: ../cache/locales.php:602 msgid "disgusted" msgstr "" -#: [mood]dismayed +#: ../cache/locales.php:603 msgid "dismayed" msgstr "" -#: [mood]distracted +#: ../cache/locales.php:604 msgid "distracted" msgstr "" -#: [mood]embarrassed +#: ../cache/locales.php:605 msgid "embarrassed" msgstr "" -#: [mood]envious +#: ../cache/locales.php:606 msgid "envious" msgstr "" -#: [mood]excited +#: ../cache/locales.php:607 msgid "excited" msgstr "" -#: [mood]flirtatious +#: ../cache/locales.php:608 msgid "flirtatious" msgstr "" -#: [mood]frustated +#: ../cache/locales.php:609 msgid "frustated" msgstr "" -#: [mood]grateful +#: ../cache/locales.php:610 msgid "grateful" msgstr "" -#: [mood]grieving +#: ../cache/locales.php:611 msgid "grieving" msgstr "" -#: [mood]grumpy +#: ../cache/locales.php:612 msgid "grumpy" msgstr "" -#: [mood]guilty +#: ../cache/locales.php:613 msgid "guilty" msgstr "" -#: [mood]happy +#: ../cache/locales.php:614 msgid "happy" msgstr "" -#: [mood]hopeful +#: ../cache/locales.php:615 msgid "hopeful" msgstr "" -#: [mood]hot +#: ../cache/locales.php:616 msgid "hot" msgstr "" -#: [mood]humbled +#: ../cache/locales.php:617 msgid "humbled" msgstr "" -#: [mood]humiliated +#: ../cache/locales.php:618 msgid "humiliated" msgstr "" -#: [mood]hungry +#: ../cache/locales.php:619 msgid "hungry" msgstr "" -#: [mood]hurt +#: ../cache/locales.php:620 msgid "hurt" msgstr "" -#: [mood]impressed +#: ../cache/locales.php:621 msgid "impressed" msgstr "" -#: [mood]in_awe +#: ../cache/locales.php:622 msgid "in awe" msgstr "" -#: [mood]in_love +#: ../cache/locales.php:623 msgid "in love" msgstr "" -#: [mood]indignant +#: ../cache/locales.php:624 msgid "indignant" msgstr "" -#: [mood]interested +#: ../cache/locales.php:625 msgid "interested" msgstr "" -#: [mood]intoxicated +#: ../cache/locales.php:626 msgid "intoxicated" msgstr "" -#: [mood]invincible +#: ../cache/locales.php:627 msgid "invincible" msgstr "" -#: [mood]jealous +#: ../cache/locales.php:628 msgid "jealous" msgstr "" -#: [mood]lonely +#: ../cache/locales.php:629 msgid "lonely" msgstr "" -#: [mood]lost +#: ../cache/locales.php:630 msgid "lost" msgstr "" -#: [mood]lucky +#: ../cache/locales.php:631 msgid "lucky" msgstr "" -#: [mood]mean +#: ../cache/locales.php:632 msgid "mean" msgstr "" -#: [mood]moody +#: ../cache/locales.php:633 msgid "moody" msgstr "" -#: [mood]nervous +#: ../cache/locales.php:634 msgid "nervous" msgstr "" -#: [mood]neutral +#: ../cache/locales.php:635 msgid "neutral" msgstr "" -#: [mood]offended +#: ../cache/locales.php:636 msgid "offended" msgstr "" -#: [mood]outraged +#: ../cache/locales.php:637 msgid "outraged" msgstr "" -#: [mood]playful +#: ../cache/locales.php:638 msgid "playful" msgstr "" -#: [mood]proud +#: ../cache/locales.php:639 msgid "proud" msgstr "" -#: [mood]relaxed +#: ../cache/locales.php:640 msgid "relaxed" msgstr "" -#: [mood]relieved +#: ../cache/locales.php:641 msgid "relieved" msgstr "" -#: [mood]restless +#: ../cache/locales.php:642 +msgid "remorseful" +msgstr "" + +#: ../cache/locales.php:643 msgid "restless" msgstr "" -#: [mood]sad +#: ../cache/locales.php:644 msgid "sad" msgstr "" -#: [mood]sarcastic +#: ../cache/locales.php:645 msgid "sarcastic" msgstr "" -#: [mood]satisfied +#: ../cache/locales.php:646 msgid "satisfied" msgstr "" -#: [mood]serious +#: ../cache/locales.php:647 msgid "serious" msgstr "" -#: [mood]shocked +#: ../cache/locales.php:648 msgid "shocked" msgstr "" -#: [mood]shy +#: ../cache/locales.php:649 msgid "shy" msgstr "" -#: [mood]sick +#: ../cache/locales.php:650 msgid "sick" msgstr "" -#: [mood]sleepy +#: ../cache/locales.php:651 msgid "sleepy" msgstr "" -#: [mood]spontaneous +#: ../cache/locales.php:652 msgid "spontaneous" msgstr "" -#: [mood]stressed +#: ../cache/locales.php:653 msgid "stressed" msgstr "" -#: [mood]strong +#: ../cache/locales.php:654 msgid "strong" msgstr "" -#: [mood]surprised +#: ../cache/locales.php:655 msgid "surprised" msgstr "" -#: [mood]thankful +#: ../cache/locales.php:656 msgid "thankful" msgstr "" -#: [mood]thirsty +#: ../cache/locales.php:657 msgid "thirsty" msgstr "" -#: [mood]tired +#: ../cache/locales.php:658 msgid "tired" msgstr "" -#: [mood]undefined +#: ../cache/locales.php:659 msgid "undefined" msgstr "" -#: [mood]weak +#: ../cache/locales.php:660 msgid "weak" msgstr "" -#: [mood]worried +#: ../cache/locales.php:661 msgid "worried" msgstr "" -#: [month]title +#: ../cache/locales.php:662 msgid "Month" msgstr "" -#: [month]january +#: ../cache/locales.php:663 msgid "January" msgstr "" -#: [month]february +#: ../cache/locales.php:664 msgid "February" msgstr "" -#: [month]march +#: ../cache/locales.php:665 msgid "March" msgstr "" -#: [month]april +#: ../cache/locales.php:666 msgid "April" msgstr "" -#: [month]may +#: ../cache/locales.php:667 msgid "May" msgstr "" -#: [month]june +#: ../cache/locales.php:668 msgid "June" msgstr "" -#: [month]july +#: ../cache/locales.php:669 msgid "July" msgstr "" -#: [month]august +#: ../cache/locales.php:670 msgid "August" msgstr "" -#: [month]september +#: ../cache/locales.php:671 msgid "September" msgstr "" -#: [month]october +#: ../cache/locales.php:672 msgid "October" msgstr "" -#: [month]november +#: ../cache/locales.php:673 msgid "November" msgstr "" -#: [month]december +#: ../cache/locales.php:674 msgid "December" msgstr "" -#: [year]title +#: ../cache/locales.php:675 msgid "Year" msgstr "" -#: [date]today +#: ../cache/locales.php:676 msgid "Today" msgstr "" -#: [date]tomorrow +#: ../cache/locales.php:677 msgid "Tomorrow" msgstr "" -#: [date]yesterday +#: ../cache/locales.php:678 msgid "Yesterday" msgstr "" -#: [date]ago -msgid "%d days ago" +#: ../cache/locales.php:679 +#, php-format +msgid " %d days ago" msgstr "" -#: [date]day +#: ../cache/locales.php:680 msgid "day" msgstr "" -#: [post]whats_new +#: ../cache/locales.php:682 msgid "What's new ?" msgstr "" -#: [post]place +#: ../cache/locales.php:683 msgid "Place" msgstr "" -#: [post]by +#: ../cache/locales.php:684 msgid "by" msgstr "" -#: [post]geolocalisation +#: ../cache/locales.php:685 msgid "Geolocalisation" msgstr "" -#: [post]email +#: ../cache/locales.php:686 msgid "email" msgstr "" -#: [post]no_comments +#: ../cache/locales.php:688 msgid "No comments yet" msgstr "" -#: [post]no_comments_stream +#: ../cache/locales.php:689 msgid "No comments stream" msgstr "" -#: [post]no_load +#: ../cache/locales.php:690 msgid "Your feed cannot be loaded." msgstr "" -#: [post]older +#: ../cache/locales.php:691 msgid "Get older posts" msgstr "" -#: [post]new_items +#: ../cache/locales.php:692 +#, php-format msgid "%s new items" msgstr "" -#: [post]comment_error +#: ../cache/locales.php:693 msgid "Comment publication error" msgstr "" -#: [post]comments_older +#: ../cache/locales.php:694 msgid "Show the older comments" msgstr "" -#: [post]comments_loading -msgid "Loading comments..." +#: ../cache/locales.php:695 +msgid "Loading comments ..." msgstr "" -#: [post]comments_get +#: ../cache/locales.php:696 msgid "Get the comments" msgstr "" -#: [post]comment_add +#: ../cache/locales.php:697 msgid "Add a comment" msgstr "" -#: [post]share +#: ../cache/locales.php:698 msgid "Share with" msgstr "" -#: [post]share_everyone +#: ../cache/locales.php:699 msgid "Everyone" msgstr "" -#: [post]share_your_contacts +#: ../cache/locales.php:700 msgid "Your contacts" msgstr "" -#: [post]updated +#: ../cache/locales.php:702 msgid "Updated" msgstr "" -#: [post]content_not_found +#: ../cache/locales.php:703 msgid "Content not found" msgstr "" -#: [post]default_title +#: ../cache/locales.php:704 msgid "Contact publication" msgstr "" -#: [post]comments +#: ../cache/locales.php:705 msgid "Comments" msgstr "" -#: [api]error +#: ../cache/locales.php:706 msgid "The API is not reachable, try again later" msgstr "" -#: [field]type_here +#: ../cache/locales.php:707 msgid "Type here" msgstr "" #~ msgid "User not logged in." #~ msgstr "Bruker ikke logget inn" +#~ msgid "Remove this contact" +#~ msgstr "Fjern denne kontakten" + #~ msgid "wants to talk with you" #~ msgstr "vil snakke med deg" diff --git a/sources/locales/oc.po b/sources/locales/oc.po index 12838f9..caaa16f 100644 --- a/sources/locales/oc.po +++ b/sources/locales/oc.po @@ -1,2739 +1,2606 @@ # Occitan translations for Movim package. # This file is distributed under the same license as the Movim package. # This file was translated from CodingTeam at . -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/About/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Account/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/AccountNext/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/AdHoc/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/AdminDB/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/AdminMain/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/AdminTest/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Api/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Avatar/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Blog/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Bookmark/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Chat/locales.ini -#. #-#-#-#-# 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 -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Group/locales.ini -#. #-#-#-#-# 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 -#. #-#-#-#-# 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 -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Presence/locales.ini -#. #-#-#-#-# 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 -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Share/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Statistics/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Subscribe/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Syndication/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Upload/locales.ini -#. #-#-#-#-# 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-08-20 15:17+0200\n" +"POT-Creation-Date: 2015-06-08 22:06+0200\n" "PO-Revision-Date: 2015-06-09 12:18+0000\n" "Last-Translator: edhelas \n" "Language-Team: LANGUAGE \n" -"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2015-06-18 21:08+0000\n" "X-Generator: Launchpad (build 17570)\n" +"Language: \n" -#: [about]thanks +#: ../cache/locales.php:2 msgid "Thanks" msgstr "" -#: [about]developers +#: ../cache/locales.php:3 msgid "Developers" msgstr "" -#: [about]translators +#: ../cache/locales.php:4 msgid "Translators" msgstr "" -#: [about]software +#: ../cache/locales.php:5 msgid "Software" msgstr "Logicials" -#: [about]resources +#: ../cache/locales.php:6 msgid "Resources" msgstr "" -#: [about]api [schema]api [api]title +#: ../cache/locales.php:7 ../cache/locales.php:83 ../cache/locales.php:85 msgid "API" msgstr "" -#: [about]info -msgid "Movim is an XMPP-based communication platform. All the project, except the following software and resources, is under" +#: ../cache/locales.php:8 +msgid "" +"Movim is an XMPP-based communication platform. All the project, except the " +"following software and resources, is under" msgstr "" -#: [account]title +#: ../cache/locales.php:9 msgid "Account" msgstr "" -#: [account]password_change_title -#, fuzzy -msgid "Change my password" -msgstr "Marrit senhal" - -#: [account]password [db]password [credentials]password [form]password -#: [input]password -msgid "Password" -msgstr "Senhal" - -#: [account]password_confirmation -#, fuzzy -msgid "Password confirmation" -msgstr "%s - Configuracion" - -#: [account]password_changed +#: ../cache/locales.php:10 msgid "The password has been updated" msgstr "" -#: [account]password_not_valid +#: ../cache/locales.php:11 msgid "Please provide a valid password (6 characters minimum)" msgstr "" -#: [account]password_not_same +#: ../cache/locales.php:12 msgid "The provided passwords are not the same" msgstr "" -#: [account]delete_title +#: ../cache/locales.php:13 msgid "Delete my account" msgstr "" -#: [account]delete -#, fuzzy -msgid "Delete your account" -msgstr "Crear un compte novèl" - -#: [account]delete_text -msgid "You will delete your XMPP account and all the relative information linked to it (profile, contacts and publications)." +#: ../cache/locales.php:14 +msgid "" +"You will delete your XMPP account and all the relative information linked to " +"it (profile, contacts and publications)." msgstr "" -#: [account]delete_text_confirm +#: ../cache/locales.php:15 msgid "Are you sure that you want to delete it ?" msgstr "" -#: [account]gateway_title -msgid "Gateway" -msgstr "" - -#: [create]title [subscribe]title +#: ../cache/locales.php:16 ../cache/locales.php:411 msgid "Create a new account" msgstr "Crear un compte novèl" -#: [create]notfound +#: ../cache/locales.php:17 msgid "No account creation form found on the server" msgstr "" -#: [create]server_on +#: ../cache/locales.php:18 ../cache/locales.php:172 msgid "on" msgstr "lo" -#: [create]successfull +#: ../cache/locales.php:19 msgid "Your acccount has been successfully registered" msgstr "" -#: [create]loading +#: ../cache/locales.php:20 msgid "Loading" msgstr "" -#: [error]not_acceptable +#: ../cache/locales.php:21 msgid "Not Acceptable" msgstr "" -#: [error]service_unavailable +#: ../cache/locales.php:22 msgid "The registration system of this server is currently unavailable" msgstr "" -#: [oob]about -msgid "This server use an external system for the registration, please click on the following URL." +#: ../cache/locales.php:23 +msgid "" +"This server use an external system for the registration, please click on the " +"following URL." msgstr "" -#: [adhoc]title +#: ../cache/locales.php:24 msgid "Actions" msgstr "Accions" -#: [db]legend [schema]database +#: ../cache/locales.php:25 ../cache/locales.php:82 msgid "Database" msgstr "" -#: [db]connect_error +#: ../cache/locales.php:26 msgid "Modl wasn't able to connect to the database" msgstr "" -#: [db]connect_success +#: ../cache/locales.php:27 msgid "Movim is connected to the database" msgstr "" -#: [db]update +#: ../cache/locales.php:28 msgid "The database need to be updated" msgstr "" -#: [db]up_to_date +#: ../cache/locales.php:29 msgid "Movim database is up to date" msgstr "" -#: [db]type +#: ../cache/locales.php:30 msgid "Database Type" msgstr "" -#: [db]username [credentials]username [input]username +#: ../cache/locales.php:31 ../cache/locales.php:50 ../cache/locales.php:540 msgid "Username" msgstr "Nom d'utilizaire" -#: [db]host +#: ../cache/locales.php:32 ../cache/locales.php:51 ../cache/locales.php:282 +#: ../cache/locales.php:541 +msgid "Password" +msgstr "Senhal" + +#: ../cache/locales.php:33 msgid "Host" msgstr "" -#: [db]port +#: ../cache/locales.php:34 msgid "Port" msgstr "" -#: [db]name -#, fuzzy -msgid "Database sName" -msgstr "Banca de donadas detectada" +#: ../cache/locales.php:35 +msgid "Database Name" +msgstr "" -#: [admin]general +#: ../cache/locales.php:36 msgid "General Settings" msgstr "Configuracion generala" -#: [general]theme +#: ../cache/locales.php:37 msgid "Theme" msgstr "Tèma" -#: [general]language +#: ../cache/locales.php:38 msgid "Default language" msgstr "Lenga per defaut" -#: [general]log_verbosity +#: ../cache/locales.php:39 +msgid "Environment" +msgstr "Environament" + +#: ../cache/locales.php:40 msgid "Log verbosity" msgstr "Nivèl de jornalizacion" -#: [general]timezone +#: ../cache/locales.php:41 msgid "Server Timezone" msgstr "Fus orari del servidor" -#: [general]limit +#: ../cache/locales.php:42 msgid "User folder size limit (in bytes)" msgstr "" -#: [websocket]title +#: ../cache/locales.php:43 msgid "WebSocket Configuration" msgstr "" -#: [websocket]info +#: ../cache/locales.php:44 msgid "Enter here a valid WebSocket URI in the form" msgstr "" -#: [websocket]label +#: ../cache/locales.php:45 msgid "WebSocket URI" msgstr "" -#: [websocket]save_info -msgid "If you change the URI, please restart the daemon to reload the configuration" +#: ../cache/locales.php:46 +msgid "" +"If you change the URI, please restart the daemon to reload the configuration" msgstr "" -#: [websocket]publics +#: ../cache/locales.php:47 msgid "Public WebSockets" msgstr "" -#: [credentials]title +#: ../cache/locales.php:48 msgid "Administration Credential" msgstr "Identificacion de l'administrator" -#: [credentials]info +#: ../cache/locales.php:49 msgid "Change the default credentials admin/password" msgstr "" -#: [credentials]re_password +#: ../cache/locales.php:52 msgid "Retype password" msgstr "Tornar picar lo senhal" -#: [whitelist]title +#: ../cache/locales.php:53 msgid "Whitelist - XMPP Server" msgstr "Servidors XMPP - Lista blancha" -#: [whitelist]info1 -msgid "If you want to specify a list of authorized XMPP servers on your Movim pod and forbid the connection on all the others please put their domain name here, with comma (ex: movim.eu,jabber.fr)" -msgstr "Si desiratz especificar una lista de servidors XMPP autorizats sus vòstre pòd Movim e interdire la connexion a tots los autres, especificatz si vos plai la lista de lor noms de domeni, separats per de las virgulas (ex: movim.eu, jabber.fr)" +#: ../cache/locales.php:54 +msgid "" +"If you want to specify a list of authorized XMPP servers on your Movim pod " +"and forbid the connection on all the others please put their domain name " +"here, with comma (ex: movim.eu,jabber.fr)" +msgstr "" +"Si desiratz especificar una lista de servidors XMPP autorizats sus vòstre " +"pòd Movim e interdire la connexion a tots los autres, especificatz si vos " +"plai la lista de lor noms de domeni, separats per de las virgulas (ex: " +"movim.eu, jabber.fr)" -#: [whitelist]info2 -msgid "Leave this field blank if you allow the access to all the XMPP accounts." -msgstr "Daissatz aqueste champ void se desiratz autorizar la connexion a totes los comptes XMPP." +#: ../cache/locales.php:55 +msgid "" +"Leave this field blank if you allow the access to all the XMPP accounts." +msgstr "" +"Daissatz aqueste champ void se desiratz autorizar la connexion a totes los " +"comptes XMPP." -#: [whitelist]label +#: ../cache/locales.php:56 msgid "List of whitelisted XMPP servers" msgstr "Lista blancha dels servidors XMPP" -#: [information]title -#, fuzzy -msgctxt "[information]title" +#: ../cache/locales.php:57 ../cache/locales.php:61 msgid "Information Message" msgstr "Messatge d'informacion" -#: [information]description +#: ../cache/locales.php:58 msgid "Description" msgstr "Descripcion" -#: [information]info1 +#: ../cache/locales.php:59 msgid "This message will be displayed on the login page" msgstr "" -#: [information]info2 -#, fuzzy -msgid "Leave this field blank if you dont want to show any message." -msgstr "Daissatz aqueste champ void se desiratz autorizar la connexion a totes los comptes XMPP." +#: ../cache/locales.php:60 +msgid "Leave this field blank if you don't want to show any message." +msgstr "" -#: [information]label -#, fuzzy -msgctxt "[information]label" -msgid "Information Message" -msgstr "Messatge d'informacion" - -#: [log]empty +#: ../cache/locales.php:62 msgid "Empty" msgstr "" -#: [log]syslog +#: ../cache/locales.php:63 msgid "Syslog" msgstr "" -#: [log]syslog_files +#: ../cache/locales.php:64 msgid "Syslog and files" msgstr "" -#: [rewrite]title +#: ../cache/locales.php:65 msgid "URL Rewriting" msgstr "" -#: [rewrite]info +#: ../cache/locales.php:66 msgid "The URL Rewriting can be enabled" msgstr "" -#: [admin]compatibility +#: ../cache/locales.php:67 msgid "General Overview" msgstr "" -#: [compatibility]info -msgid "Movim has found some issues or things that need to be fixed or improved" +#: ../cache/locales.php:68 +msgid "" +"Movim has found some issues or things that need to be fixed or improved" msgstr "" -#: [compatibility]php1 +#: ../cache/locales.php:69 +#, php-format msgid "Update your PHP-Version: %s" msgstr "" -#: [compatibility]php2 +#: ../cache/locales.php:70 msgid "Required: 5.3.0" msgstr "" -#: [compatibility]curl +#: ../cache/locales.php:71 msgid "Install the php5-curl library" msgstr "" -#: [compatibility]imagick +#: ../cache/locales.php:72 msgid "Install the php5-imagick library" msgstr "" -#: [compatibility]gd +#: ../cache/locales.php:73 msgid "Install the php5-gd library" msgstr "" -#: [compatibility]rights -#, fuzzy -msgid "Read and write rights for the webserver in Movims root directory" -msgstr "Movim a pas los dreches de lectura nimai d'escritura dins son dorsier raiç" +#: ../cache/locales.php:74 +msgid "Read and write rights for the webserver in Movim's root directory" +msgstr "" +"Movim a pas los dreches de lectura nimai d'escritura dins son dorsier raiç" -#: [compatibility]rewrite +#: ../cache/locales.php:75 msgid "The URL Rewriting support is currently disabled" msgstr "" -#: [compatibility]db +#: ../cache/locales.php:76 msgid "The database need to be updated, go to the database panel to fix this" msgstr "" -#: [compatibility]websocket -msgid "WebSocket connection error, check if the Movim Daemon is running and is reachable" +#: ../cache/locales.php:77 +msgid "" +"WebSocket connection error, check if the Movim Daemon is running and is " +"reacheable" msgstr "" -#: [compatibility]xmpp_websocket -msgid "XMPP Websocket connection error, please check the validity of the URL given in the General Configuration" +#: ../cache/locales.php:78 +msgid "" +"XMPP Websocket connection error, please check the validity of the URL given " +"in the General Configuration" msgstr "" -#: [schema]browser +#: ../cache/locales.php:79 msgid "Browser" msgstr "" -#: [schema]movim +#: ../cache/locales.php:80 msgid "Movim Core" msgstr "" -#: [schema]daemon +#: ../cache/locales.php:81 msgid "Movim Daemon" msgstr "" -#: [schema]xmpp +#: ../cache/locales.php:84 msgid "XMPP" msgstr "" -#: [api]info -msgid "Here you can register your pod on the official %sMovim API%s and be listed on %sthe pods page%s." +#: ../cache/locales.php:86 +#, php-format +msgid "" +"Here you can register your pod on the official %sMovim API%s and be listed " +"on %sthe pods page%s." msgstr "" -#: [api]register +#: ../cache/locales.php:87 msgid "Your pod is not registered on the API" msgstr "" -#: [api]registered +#: ../cache/locales.php:88 msgid "Your pod is registered on the API" msgstr "" -#: [api]wait +#: ../cache/locales.php:89 msgid "Your pod is not yet validated" msgstr "" -#: [api]validated +#: ../cache/locales.php:90 msgid "Your pod is validated" msgstr "" -#: [api]unregister -msgid "You asked to be removed from the API, this request will be processed in a couple of hours" +#: ../cache/locales.php:91 +msgid "" +"You asked to be removed from the API, this request will be processed in a " +"couple of hours" msgstr "" -#: [api]conf_updated [config]updated +#: ../cache/locales.php:92 ../cache/locales.php:147 msgid "Configuration updated" msgstr "" -#: [avatar]file +#: ../cache/locales.php:93 msgid "File" msgstr "" -#: [avatar]use_it +#: ../cache/locales.php:94 msgid "Use it" msgstr "" -#: [avatar]webcam +#: ../cache/locales.php:95 msgid "Webcam" msgstr "Webcam" -#: [avatar]cheese +#: ../cache/locales.php:96 msgid "Cheese !" msgstr "Sorissètz !" -#: [avatar]snapshot +#: ../cache/locales.php:97 msgid "Take a webcam snapshot" msgstr "Prene una fòto amb vòstre aparelh fòto" -#: [avatar]updated +#: ../cache/locales.php:98 msgid "Avatar Updated" msgstr "" -#: [avatar]not_updated +#: ../cache/locales.php:99 msgid "Avatar Not Updated" msgstr "" -#: [blog]title [feed]title +#: ../cache/locales.php:100 ../cache/locales.php:415 +#, php-format msgid "%s's feed" msgstr "" -#: [blog]empty +#: ../cache/locales.php:101 msgid "This user has not posted anything right now" msgstr "" -#: [title]conferences +#: ../cache/locales.php:102 msgid "Conferences" msgstr "Conferéncias" -#: [title]groups [group]empty_title [menu]groups [page]groups +#: ../cache/locales.php:103 ../cache/locales.php:193 ../cache/locales.php:217 +#: ../cache/locales.php:468 msgid "Groups" msgstr "Gropes" -#: [chatroom]add +#: ../cache/locales.php:104 msgid "Add a new Chat Room" msgstr "" -#: [chatroom]id [chatrooms]id +#: ../cache/locales.php:105 ../cache/locales.php:368 msgid "Chat Room ID" msgstr "" -#: [chatroom]name -#, fuzzy -msgctxt "[chatroom]name" +#: ../cache/locales.php:106 ../cache/locales.php:116 ../cache/locales.php:156 +#: ../cache/locales.php:361 ../cache/locales.php:369 ../cache/locales.php:424 msgid "Name" msgstr "Nom" -#: [chatroom]nickname [general]nickname [chatrooms]nickname +#: ../cache/locales.php:107 ../cache/locales.php:157 ../cache/locales.php:371 +#: ../cache/locales.php:425 msgid "Nickname" msgstr "Escais" -#: [chatroom]autojoin_label +#: ../cache/locales.php:108 msgid "Do you want do join automaticaly this Chat Room ?" msgstr "" -#: [chatroom]bad_id [chatrooms]bad_id +#: ../cache/locales.php:109 ../cache/locales.php:372 msgid "Bad Chatroom ID" msgstr "" -#: [chatroom]empty_name [chatrooms]empty_name +#: ../cache/locales.php:110 ../cache/locales.php:373 msgid "Empty name" msgstr "Nom void" -#: [bookmarks]updated +#: ../cache/locales.php:111 ../cache/locales.php:380 msgid "Bookmarks updated" msgstr "Signets meses a jorn" -#: [bookmarks]error -#, fuzzy -msgid "An error occured :" +#: ../cache/locales.php:112 +msgid "An error occured : " msgstr "Una error s'es produsida : " -#: [bookmarks]configure +#: ../cache/locales.php:113 msgid "Configure" msgstr "" -#: [url]add +#: ../cache/locales.php:114 msgid "Add a new URL" msgstr "" -#: [url]url +#: ../cache/locales.php:115 msgid "URL" msgstr "" -#: [url]name -#, fuzzy -msgctxt "[url]name" -msgid "Name" -msgstr "Nom" - -#: [message]published +#: ../cache/locales.php:117 msgid "Message Published" msgstr "Messatge publicat" -#: [message]encrypted +#: ../cache/locales.php:118 ../cache/locales.php:138 msgid "Encrypted message" msgstr "Messatge chifrat" -#: [message]composing [chats]composing +#: ../cache/locales.php:119 msgid "Composing..." msgstr "A escriure..." -#: [message]paused [chats]paused +#: ../cache/locales.php:120 msgid "Paused..." msgstr "" -#: [message]gone +#: ../cache/locales.php:121 msgid "Contact gone" msgstr "" -#: [chat]attention +#: ../cache/locales.php:122 +#, php-format msgid "%s needs your attention" msgstr "%s a besonh de vòstre atencion" -#: [chat]placeholder +#: ../cache/locales.php:123 msgid "Your message here..." msgstr "" -#: [chat]smileys +#: ../cache/locales.php:124 msgid "Smileys" msgstr "" -#: [chat]empty_title [button]chat +#: ../cache/locales.php:125 ../cache/locales.php:139 msgid "Chat" msgstr "Messatjariá instantanèa (chat)" -#: [chat]empty_text +#: ../cache/locales.php:126 msgid "Discuss with your contacts" msgstr "" -#: [chat]frequent [chats]frequent -msgid "Frequent contacts" -msgstr "" - -#: [chatroom]members +#: ../cache/locales.php:127 msgid "Members" msgstr "" -#: [chatroom]connected [chatrooms]connected +#: ../cache/locales.php:128 ../cache/locales.php:376 msgid "Connected to the chatroom" msgstr "" -#: [chatroom]disconnected [chatrooms]disconnected +#: ../cache/locales.php:129 ../cache/locales.php:377 msgid "Disconnected from the chatroom" msgstr "" -#: [chatroom]config [group]configuration [page]configuration +#: ../cache/locales.php:130 ../cache/locales.php:200 ../cache/locales.php:469 msgid "Configuration" msgstr "Configuracion" -#: [chatroom]config_saved +#: ../cache/locales.php:131 msgid "Configuration saved" msgstr "" -#: [chatroom]subject +#: ../cache/locales.php:132 msgid "Subject" msgstr "" -#: [chatroom]subject_changed +#: ../cache/locales.php:133 msgid "Subject changed" msgstr "" -#: [chats]empty_title -msgid "No chats yet..." +#: ../cache/locales.php:134 +msgid "Open a new conversation by clicking on the plus button bellow" msgstr "" -#: [chats]empty -msgid "Open a new conversation by clicking on the plus button bellow or visit the Contacts page." -msgstr "" - -#: [chats]add +#: ../cache/locales.php:135 msgid "Chat with a contact" msgstr "" -#: [chats]more +#: ../cache/locales.php:136 +msgid "Frequent contacts" +msgstr "" + +#: ../cache/locales.php:137 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 "" - -#: [config]general +#: ../cache/locales.php:140 msgid "General" msgstr "" -#: [config]language +#: ../cache/locales.php:141 msgid "Language" msgstr "Lenga" -#: [config]roster +#: ../cache/locales.php:142 msgid "Roster display" msgstr "" -#: [config]roster_show +#: ../cache/locales.php:143 msgid "Show the offline contacts" msgstr "" -#: [config]roster_hide +#: ../cache/locales.php:144 msgid "Hide the offline contacts" msgstr "" -#: [config]appearence +#: ../cache/locales.php:145 msgid "Appearence" msgstr "" -#: [config]info -msgid "This configuration is shared wherever you are connected" +#: ../cache/locales.php:146 +msgid "This configuration is shared wherever you are connected !" msgstr "" -#: [notifications]message +#: ../cache/locales.php:148 msgid "Notify on incoming message" msgstr "" -#: [notifications]desktop +#: ../cache/locales.php:149 msgid "Use desktop notifications" msgstr "" -#: [general]legend [general]general_title +#: ../cache/locales.php:150 +msgid "Data" +msgstr "" + +#: ../cache/locales.php:151 +msgid "Cache" +msgstr "" + +#: ../cache/locales.php:152 ../cache/locales.php:218 ../cache/locales.php:466 +msgid "Contacts" +msgstr "" + +#: ../cache/locales.php:153 ../cache/locales.php:480 +msgid "Posts" +msgstr "" + +#: ../cache/locales.php:154 +msgid "Messages" +msgstr "" + +#: ../cache/locales.php:155 ../cache/locales.php:423 msgid "General Informations" msgstr "Informacions Generalas" -#: [general]name [public_groups]name [chatrooms]name -msgid "Name" -msgstr "Nom" - -#: [general]date_of_birth +#: ../cache/locales.php:158 ../cache/locales.php:427 msgid "Date of Birth" msgstr "Data de Naissença" -#: [general]gender +#: ../cache/locales.php:159 ../cache/locales.php:428 msgid "Gender" msgstr "Sèxe" -#: [general]marital +#: ../cache/locales.php:160 ../cache/locales.php:429 msgid "Marital Status" msgstr "Situacion familiala" -#: [general]email +#: ../cache/locales.php:161 ../cache/locales.php:426 msgid "Email" msgstr "Adreça electronica" -#: [general]website +#: ../cache/locales.php:162 ../cache/locales.php:430 msgid "Website" msgstr "Site web" -#: [general]about +#: ../cache/locales.php:163 ../cache/locales.php:431 msgid "About Me" msgstr "A prepaus de ieu" -#: [general]accounts +#: ../cache/locales.php:164 msgid "Other Accounts" msgstr "" -#: [general]tune +#: ../cache/locales.php:165 msgid "Is Listening" msgstr "" -#: [position]legend [position]position_title +#: ../cache/locales.php:166 ../cache/locales.php:432 msgid "Geographic Position" msgstr "Posicion geografica" -#: [position]locality +#: ../cache/locales.php:167 ../cache/locales.php:433 msgid "Locality" msgstr "Localitat" -#: [position]country +#: ../cache/locales.php:168 ../cache/locales.php:434 msgid "Country" msgstr "País" -#: [mood]title +#: ../cache/locales.php:169 msgid "Mood" msgstr "Umor" -#: [mood]im +#: ../cache/locales.php:170 msgid "I'm " msgstr "Soi " -#: [listen]title +#: ../cache/locales.php:171 msgid "Listening" msgstr "En escota" -#: [last]title +#: ../cache/locales.php:173 msgid "Last seen" msgstr "Darrièra visita" -#: [client]title +#: ../cache/locales.php:174 msgid "Client Informations" msgstr "Informacions sul client" -#: [explore]last_registered +#: ../cache/locales.php:175 msgid "Last registered" msgstr "Darrièrs marcats" -#: [explore]explore +#: ../cache/locales.php:176 msgid "Find some new friends" msgstr "" -#: [edit]title [button]edit +#: ../cache/locales.php:177 ../cache/locales.php:533 msgid "Edit" msgstr "" -#: [edit]alias +#: ../cache/locales.php:178 msgid "Alias" msgstr "Aliàs" -#: [edit]group +#: ../cache/locales.php:179 msgid "Group" msgstr "Grop" -#: [edit]updated [roster]updated +#: ../cache/locales.php:180 ../cache/locales.php:400 msgid "Contact updated" msgstr "Contacte mes a jorn" -#: [delete]title +#: ../cache/locales.php:181 msgid "Are you sure?" msgstr "" -#: [delete]text -msgid "You are going to delete one of your contacts, please confirm your action" +#: ../cache/locales.php:182 +msgid "" +"You are going to delete one of your contacts, please confirm your action" msgstr "" -#: [age]years +#: ../cache/locales.php:183 +#, php-format msgid "%s years" msgstr "" -#: [blog]last +#: ../cache/locales.php:184 msgid "Last public post" msgstr "" -#: [subscription]to -#, fuzzy -msgid "You can see this contact status" -msgstr "Suprimir aqueste contacte" - -#: [subscription]to_button -msgid "Share my status" -msgstr "" - -#: [subscription]to_text -msgid "But this contact cannot see yours" -msgstr "" - -#: [subscription]from -msgid "You are not subscribed to this contact" -msgstr "" - -#: [subscription]from_button -#, fuzzy -msgid "Ask to subscribe" -msgstr "Abonat" - -#: [subscription]from_text -msgid "But this contact can still see if you are online" -msgstr "" - -#: [subscription]nil -#, fuzzy -msgid "No subscriptions" -msgstr "Recuperar los abonaments" - -#: [subscription]nil_button -msgid "Invite" -msgstr "" - -#: [subscription]nil_text -msgid "This contact is in your contact list but there is no subscriptions between the two accounts" -msgstr "" - -#: [group]subscribe +#: ../cache/locales.php:185 msgid "Subscribe" msgstr "" -#: [group]subscribed +#: ../cache/locales.php:186 msgid "Subscribed" msgstr "Abonat" -#: [group]unsubscribe +#: ../cache/locales.php:187 msgid "Unsubscribe" msgstr "" -#: [group]unsubscribe_text +#: ../cache/locales.php:188 msgid "You are going to unsubscribe from this Group" msgstr "" -#: [group]unsubscribed +#: ../cache/locales.php:189 msgid "Unsubscribed" msgstr "" -#: [group]share_label +#: ../cache/locales.php:190 msgid "Make your membership to this group public to your friends" msgstr "" -#: [group]label_label +#: ../cache/locales.php:191 msgid "Give a label for this group" msgstr "" -#: [group]sure +#: ../cache/locales.php:192 msgid "Are you sure ?" msgstr "" -#: [group]empty_text +#: ../cache/locales.php:194 msgid "Discover, follow and share" msgstr "" -#: [group]empty +#: ../cache/locales.php:195 msgid "Something bad happened to this group" msgstr "" -#: [group]config_saved +#: ../cache/locales.php:196 msgid "Group configuration saved" msgstr "Configuracion del grop salvada" -#: [group]delete_title +#: ../cache/locales.php:197 msgid "Delete the group" msgstr "" -#: [group]delete_text -msgid "You are going to delete the following group. Please confirm your action." +#: ../cache/locales.php:198 +msgid "" +"You are going to delete the following group. Please confirm your action." msgstr "" -#: [group]delete_clean_text -msgid "It seems that this group doesn't exists anymore. Do you want to remove it from your subscriptions?" +#: ../cache/locales.php:199 +msgid "" +"It seems that this group doesn't exists anymore. Do you want to remove it " +"from your subscriptions?" msgstr "" -#: [group]counter -msgid "%s groups on this server" -msgstr "" - -#: [group]subscriptions [statistics]subscriptions +#: ../cache/locales.php:201 ../cache/locales.php:408 msgid "Subscriptions" msgstr "" -#: [group]servers -#, fuzzy -msgid "Groups servers" -msgstr "Gropes" - -#: [group]search_server -msgid "Search for a new server" -msgstr "" - -#: [group]help_info1 -msgid "Groups are the perfect way to share posts about topics that you like with all the other Movim's users." -msgstr "" - -#: [group]help_info2 -msgid "Choose a server and a Group and subscribe to it using the %s button in the header. You can also create a new one using the %s button." -msgstr "" - -#: [group]help_info3 -msgid "Done? You can now publish a new post in the Group by using the %s button." -msgstr "" - -#: [group]help_info4 -msgid "You will find a list of all your subscribed Groups in My Subscriptions and receive instantly all the new incoming posts in the %sNews%s page." -msgstr "" - -#: [groups]empty_title +#: ../cache/locales.php:202 ../cache/locales.php:290 msgid "Hello" msgstr "" -#: [groups]contact_post [hello]contact_post [menu]contact_post +#: ../cache/locales.php:203 ../cache/locales.php:225 ../cache/locales.php:291 msgid "Contact post" msgstr "" -#: [groups]empty_text1 -msgid "You don't have any subscriptions yet, select a group server above to start exploring." +#: ../cache/locales.php:204 +msgid "" +"You don't have any subscriptions yet, select a group server above to start " +"exploring." msgstr "" -#: [groups]empty_text2 +#: ../cache/locales.php:205 msgid "Subscribe to your favorite feeds by bookmarking them." msgstr "" -#: [groups]subscriptions +#: ../cache/locales.php:206 msgid "My Subscriptions" msgstr "" -#: [groups]add +#: ../cache/locales.php:207 msgid "Create a new Group" msgstr "" -#: [groups]name +#: ../cache/locales.php:208 msgid "Group name" msgstr "" -#: [groups]name_example +#: ../cache/locales.php:209 msgid "My Little Pony - Fan Club" msgstr "Mon Pichon Poni - Fan Club" -#: [groups]created +#: ../cache/locales.php:210 msgid "Group created successfully" msgstr "" -#: [groups]deleted +#: ../cache/locales.php:211 msgid "Group deleted successfully" msgstr "" -#: [groups]name_error +#: ../cache/locales.php:212 msgid "Please provide a valid group name (4 characters minimum)" msgstr "" -#: [groups]no_creation +#: ../cache/locales.php:213 msgid "You cannot create a new Group on this server" msgstr "" -#: [groups]sub +#: ../cache/locales.php:214 +#, php-format msgid "%s subscribers" msgstr "" -#: [groups]num +#: ../cache/locales.php:215 +#, php-format msgid "%s posts" msgstr "" -#: [groups]disco_error -msgid "This server doesn't exists" -msgstr "" - -#: [menu]all +#: ../cache/locales.php:216 msgid "All" msgstr "Tot" -#: [menu]refresh +#: ../cache/locales.php:219 msgid "Refresh all the streams" msgstr "" -#: [roster]search -#, fuzzy -msgid "Search in your contacts" -msgstr "Partejat amb un contacte" - -#: [hello]active_contacts -#, fuzzy -msgid "Active contacts" -msgstr "Accions" - -#: [hello]chat -msgid "Go on the Chat page" -msgstr "" - -#: [hello]news [page]news -msgid "News" -msgstr "Actualitats" - -#: [hello]news_page -msgid "Read all theses articles on the News page" -msgstr "" - -#: [hello]blog_title -msgid "Visit your public blog" -msgstr "" - -#: [hello]blog_text -msgid "See your public posts and share them with all your contacts" -msgstr "" - -#: [hello]share_title -msgid "Universal share button" -msgstr "" - -#: [hello]share_text -msgid "Bookmark or drag and drop the following button in your toolbar and use it on all the pages you want to share on Movim" -msgstr "" - -#: [hello]share_button -msgid "Share on Movim" -msgstr "" - -#: [help]faq -msgid "Frequently Asked Questions" -msgstr "" - -#: [banner]title -msgid "What do the little banners refer to ?" -msgstr "" - -#: [banner]info1 -msgid "Thanks to these five little banners, you can quickly identitfy the level of confdentiality applied to the information you provide." -msgstr "" - -#: [banner]white -msgid "White, only you can see the information" -msgstr "" - -#: [banner]green -msgid "Green, you have chosen some contacts who can see your information" -msgstr "" - -#: [banner]orange -msgid "Orange, all your contact list can see your information" -msgstr "" - -#: [banner]red -msgid "Red, everybody in the XMPP network can see your information" -msgstr "" - -#: [banner]black -msgid "Black, the whole Internet can see your information" -msgstr "" - -#: [wiki]question -msgid "Looking for some documentation ?" -msgstr "" - -#: [wiki]button -msgid "Read the Wiki" -msgstr "" - -#: [ml]question -msgid "Talk with us by email ?" -msgstr "" - -#: [ml]button -msgid "Join the Mailing List" -msgstr "" - -#: [chatroom]question -msgid "Chat with the team ?" -msgstr "" - -#: [chatroom]button -msgid "Join the Chatroom" -msgstr "" - -#: [init]location -msgid "Location node created" -msgstr "" - -#: [init]bookmark -msgid "Bookmark node created" -msgstr "" - -#: [init]vcard4 -msgid "Profile node created" -msgstr "" - -#: [init]avatar -msgid "Avatar node created" -msgstr "" - -#: [init]subscriptions -msgid "Subscriptions node created" -msgstr "" - -#: [init]microblog -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" - -#: [error]jid -msgid "Invalid JID" -msgstr "Identificant Jabber invalid" - -#: [error]empty_challenge -msgid "Empty Challenge from the server" -msgstr "" - -#: [error]dns -msgid "XMPP Domain error, your account is not a correct Jabber ID" -msgstr "" - -#: [error]data_missings -msgid "Some data are missing !" -msgstr "Manca d'informacions !" - -#: [error]wrong_password -msgid "Wrong password" -msgstr "Marrit senhal" - -#: [error]internal -msgid "Internal server error" -msgstr "Error intèrna del servidor" - -#: [error]session -msgid "Session error" -msgstr "Error de sesilha" - -#: [error]account_created -msgid "Account successfully created" -msgstr "Compte creat amb succès" - -#: [error]xmpp_unauthorized -msgctxt "[error]xmpp_unauthorized" -msgid "Your XMPP server is unauthorized" -msgstr "" - -#: [error]mec_error -msgid "The server takes too much time to respond" -msgstr "" - -#: [error]too_old -msgid "Your web browser is too old to use with Movim." -msgstr "Vòstre navigador es tròp vielh per utilizar Movim" - -#: [error]websocket -msgid "Movim cannot talk with the server, please try again later (Websocket connection error)" -msgstr "" - -#: [error]impossible -msgid "Impossible login" -msgstr "" - -#: [error]title -msgid "Oops!" -msgstr "" - -#: [error]default [visio]unknown_error -msgid "Unknown error" -msgstr "Error desconeguda" - -#: [error]login_format -msgid "Invalid username format" -msgstr "" - -#: [error]password_format -msgid "Invalid password format" -msgstr "" - -#: [error]unauthorized -msgctxt "[error]unauthorized" -msgid "Your XMPP server is unauthorized" -msgstr "" - -#: [error]conflict -msgid "A Movim session is already open on an other device" -msgstr "" - -#: [error]wrong_account -msgid "Movim failed to authenticate. You entered wrong data" -msgstr "" - -#: [error]mechanism -msgid "Authentication mechanism not supported by Movim" -msgstr "" - -#: [error]fail_auth -msgid "The XMPP authentification failed" -msgstr "Autentificacion al servidor XMPP impossibla" - -#: [account]title [accounts]accounts_title -msgid "Accounts" -msgstr "" - -#: [form]username -msgid "My address" -msgstr "Mon adreça" - -#: [form]create_one -msgid "Create one !" -msgstr "" - -#: [form]another_account -msgid "Another account" -msgstr "" - -#: [form]no_account -msgid "No account yet ?" -msgstr "" - -#: [form]whitelist.info -msgid "You can login with accounts from theses servers" -msgstr "" - -#: [form]connected -msgid "Connected" -msgstr "" - -#: [form]population -msgid "Population" -msgstr "" - -#: [menu]empty_title -msgid "No news yet..." -msgstr "" - -#: [menu]empty -msgid "Welcome on your news feed, here you will see all the posts published by your contacts and in the groups you have subscribed." -msgstr "" - -#: [menu]refresh -msgid "Refreshing all the streams" -msgstr "" - -#: [menu]public -msgid "This post is public" -msgstr "" - -#: [affiliations]title -msgid "Manage your members" -msgstr "Gerir vòstres membres" - -#: [affiliations]get -msgid "Get the members" -msgstr "Recuperar los membres" - -#: [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" -msgstr "" - -#: [notifs]title -msgid "Pending Invitations" -msgstr "" - -#: [notifs]wants_to_talk -msgid "%s wants to talk with you" -msgstr "" - -#: [notifs]manage -msgid "Manage" -msgstr "Gerir" - -#: [post]news_feed -msgid "News Feed" -msgstr "" - -#: [post]placeholder -msgid "Discover and register to the groups you are interested in" -msgstr "" - -#: [post]preview [page]preview -msgid "Preview" -msgstr "" - -#: [post]help [page]help -msgid "Help" -msgstr "Ajuda" - -#: [post]help_more -msgid "More help" -msgstr "" - -#: [post]help_manual -msgid "Markdown syntax manual" -msgstr "" - -#: [post]title -msgid "Title" -msgstr "" - -#: [post]content -msgid "Content" -msgstr "" - -#: [post]link -msgid "Link" -msgstr "Ligam" - -#: [post]tags -msgid "Tags" -msgstr "" - -#: [post]valid_url [publish]valid_url -msgid "Please enter a valid url" -msgstr "" - -#: [post]no_content_preview [publish]no_content_preview -msgid "No content to preview" -msgstr "" - -#: [post]no_content [publish]no_content [post]empty -msgid "No content" -msgstr "Pas cap de contengut" - -#: [post]published -msgid "Post published" -msgstr "" - -#: [post]deleted -msgid "Post deleted" -msgstr "" - -#: [post]gallery -msgid "This picture will be added to your gallery" -msgstr "" - -#: [post]hot -msgid "What's Hot" -msgstr "" - -#: [post]hot_text -msgid "Posts recently published in Groups that you are not subscribed (yet)" -msgstr "" - -#: [post]new [publish]new -msgid "New post" -msgstr "" - -#: [post]embed_tip -msgid "You can also use services like Imgur or Flickr to host your picture and paste the link here." -msgstr "" - -#: [post]repost -msgid "This is a re-post from %s" -msgstr "" - -#: [post]repost_profile -msgid "See %s profile" -msgstr "" - -#: [post]public -#, fuzzy -msgid "Publish this post publicly?" -msgstr "Es lo perfil public ?" - -#: [post]blog_add -msgid "Post published on your blog" -msgstr "" - -#: [post]blog_remove -msgid "Post removed from your blog" -msgstr "" - -#: [post]delete_title [post]delete -msgid "Delete this post" -msgstr "" - -#: [post]delete_text -msgid "You are going to delete this post, please confirm your action" -msgstr "" - -#: [post]comments_disabled -msgid "Comments disabled" -msgstr "" - -#: [post]comment_published -msgid "Comment published" -msgstr "" - -#: [status]disconnect -msgid "Disconnect" -msgstr "Se desconnectar" - -#: [status]here -msgid "Your status here !" -msgstr "Vòstre estatut aicí !" - -#: [status]updated -msgid "Status updated" -msgstr "Estatut mes a jorn" - -#: [status]status -msgid "Status" -msgstr "" - -#: [status]presence -msgid "Presence" -msgstr "" - -#: [status]online -msgid "Online with Movim" -msgstr "" - -#: [publish]title -msgid "Publish" -msgstr "" - -#: [publish]attach -msgid "Add a file or a picture to your post" -msgstr "" - -#: [publish]no_publication -msgid "You cannot publish a post on this Group" -msgstr "" - -#: [publish]form_filled -msgid "Some fields have been filled in. Do you still want to go back and loose their content?" -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 "" - -#: [rooms]empty_text1 -msgid "You don't have any chatroom yet." -msgstr "" - -#: [rooms]empty_text2 -msgid "Add one by clicking on the add button in the header." -msgstr "" - -#: [chatrooms]title -msgid "Chatrooms" -msgstr "Salons de discussion" - -#: [chatrooms]name_placeholder -msgid "My Favorite Room" -msgstr "" - -#: [chatrooms]users -msgid "Users in the room" -msgstr "" - -#: [chatrooms]bad_nickname -msgid "Please enter a correct nickname (2 to 40 characters)" -msgstr "" - -#: [room]anonymous_title -msgid "Public chatroom" -msgstr "" - -#: [room]no_room -msgid "Please provide a room address" -msgstr "" - -#: [room]anonymous_text1 -msgid "You are currently logued as an anonymous user." -msgstr "" - -#: [room]anonymous_text2 -msgid "You can join using your own account or create one on the login page by loging out using the cross in the top-right corner." -msgstr "" - -#: [room]anonymous_login -msgid "Login on %s" -msgstr "" - -#: [room]nick -msgid "Your nickname" -msgstr "" - -#: [roster]ungrouped -msgid "Ungrouped" -msgstr "Pas agropat" - -#: [roster]show_disconnected -msgid "Show disconnected contacts" -msgstr "Contactes desconnectats afichats" - -#: [roster]hide_disconnected -msgid "Hide disconnected contacts" -msgstr "Contactes desconnectats amagats" - -#: [roster]show_group -msgid "Show group %s" -msgstr "Grop %s afichat" - -#: [roster]hide_group -msgid "Hide group %s" -msgstr "Grop %s amagat" - -#: [roster]jid_error -msgid "Please enter a valid Jabber ID" -msgstr "" - -#: [roster]no_contacts_title -#, fuzzy -msgid "No contacts ?" -msgstr "Pas cap de contengut" - -#: [roster]no_contacts_text -msgid "You can add one using the + button bellow" -msgstr "" - -#: [roster]show_hide -msgid "Show/Hide" -msgstr "" - -#: [roster]add_contact_info1 -msgid "Enter the Jabber ID of your contact." -msgstr "" - -#: [roster]add_contact_info2 -msgid "Press enter to validate." -msgstr "" - -#: [roster]jid -msgid "JID" -msgstr "" - -#: [roster]results -msgid "Results" -msgstr "" - -#: [roster]added -msgid "Contact added" -msgstr "" - -#: [roster]deleted -msgid "Contact deleted" -msgstr "" - -#: [roster]search +#: ../cache/locales.php:220 ../cache/locales.php:402 msgid "Search" msgstr "Recercar" -#: [share]error +#: ../cache/locales.php:221 +msgid "Go on the Chat page" +msgstr "" + +#: ../cache/locales.php:222 +msgid "Read all theses articles on the News page" +msgstr "" + +#: ../cache/locales.php:223 +msgid "Visit your public blog" +msgstr "" + +#: ../cache/locales.php:224 +msgid "See your public posts and share them with all your contacts" +msgstr "" + +#: ../cache/locales.php:226 +msgid "Universal share button" +msgstr "" + +#: ../cache/locales.php:227 +msgid "" +"Bookmark or drag and drop the following button in your toolbar and use it on " +"all the pages you want to share on Movim" +msgstr "" + +#: ../cache/locales.php:228 +msgid "Share on Movim" +msgstr "" + +#: ../cache/locales.php:229 +msgid "Frequently Asked Questions" +msgstr "" + +#: ../cache/locales.php:230 +msgid "What do the little banners refer to ?" +msgstr "" + +#: ../cache/locales.php:231 +msgid "" +"Thanks to these five little banners, you can quickly identitfy the level of " +"confdentiality applied to the information you provide." +msgstr "" + +#: ../cache/locales.php:232 +msgid "White, only you can see the information" +msgstr "" + +#: ../cache/locales.php:233 +msgid "Green, you have chosen some contacts who can see your information" +msgstr "" + +#: ../cache/locales.php:234 +msgid "Orange, all your contact list can see your information" +msgstr "" + +#: ../cache/locales.php:235 +msgid "Red, everybody in the XMPP network can see your information" +msgstr "" + +#: ../cache/locales.php:236 +msgid "Black, the whole Internet can see your information" +msgstr "" + +#: ../cache/locales.php:237 +msgid "Looking for some documentation ?" +msgstr "" + +#: ../cache/locales.php:238 +msgid "Read the Wiki" +msgstr "" + +#: ../cache/locales.php:239 +msgid "Talk with us by email ?" +msgstr "" + +#: ../cache/locales.php:240 +msgid "Join the Mailing List" +msgstr "" + +#: ../cache/locales.php:241 +msgid "Chat with the team ?" +msgstr "" + +#: ../cache/locales.php:242 +msgid "Join the Chatroom" +msgstr "" + +#: ../cache/locales.php:243 +msgid "Location node created" +msgstr "" + +#: ../cache/locales.php:244 +msgid "Bookmark node created" +msgstr "" + +#: ../cache/locales.php:245 +msgid "Profile node created" +msgstr "" + +#: ../cache/locales.php:246 +msgid "Avatar node created" +msgstr "" + +#: ../cache/locales.php:247 +msgid "Subscriptions node created" +msgstr "" + +#: ../cache/locales.php:248 +msgid "Microblog node created" +msgstr "" + +#: ../cache/locales.php:249 +msgid "Location" +msgstr "Emplaçament" + +#: ../cache/locales.php:250 +msgid "Wrong position" +msgstr "Marrida posicion" + +#: ../cache/locales.php:251 +msgid "Location updated" +msgstr "Posicion geografica mesa a jorn" + +#: ../cache/locales.php:252 +msgid "Update my position" +msgstr "" + +#: ../cache/locales.php:253 +msgid "Wrong username" +msgstr "Nom d'utilizaire incorrècte" + +#: ../cache/locales.php:254 +msgid "Invalid JID" +msgstr "Identificant Jabber invalid" + +#: ../cache/locales.php:255 +msgid "Empty Challenge from the server" +msgstr "" + +#: ../cache/locales.php:256 +msgid "XMPP Domain error, your account is not a correct Jabber ID" +msgstr "" + +#: ../cache/locales.php:257 +msgid "Some data are missing !" +msgstr "Manca d'informacions !" + +#: ../cache/locales.php:258 +msgid "Wrong password" +msgstr "Marrit senhal" + +#: ../cache/locales.php:259 +msgid "Internal server error" +msgstr "Error intèrna del servidor" + +#: ../cache/locales.php:260 +msgid "Session error" +msgstr "Error de sesilha" + +#: ../cache/locales.php:261 +msgid "Account successfully created" +msgstr "Compte creat amb succès" + +#: ../cache/locales.php:262 ../cache/locales.php:271 +msgid "Your XMPP server is unauthorized" +msgstr "" + +#: ../cache/locales.php:263 +msgid "The server takes too much time to respond" +msgstr "" + +#: ../cache/locales.php:264 +msgid "Your web browser is too old to use with Movim." +msgstr "Vòstre navigador es tròp vielh per utilizar Movim" + +#: ../cache/locales.php:265 +msgid "" +"Movim cannot talk with the server, please try again later (Websocket " +"connection error)" +msgstr "" + +#: ../cache/locales.php:266 +msgid "Impossible login" +msgstr "" + +#: ../cache/locales.php:267 +msgid "Oops!" +msgstr "" + +#: ../cache/locales.php:268 ../cache/locales.php:449 ../cache/locales.php:455 +msgid "Unknown error" +msgstr "Error desconeguda" + +#: ../cache/locales.php:269 +msgid "Invalid username format" +msgstr "" + +#: ../cache/locales.php:270 +msgid "Invalid password format" +msgstr "" + +#: ../cache/locales.php:272 +msgid "A Movim session is already open on an other device" +msgstr "" + +#: ../cache/locales.php:273 +msgid "Movim failed to authenticate. You entered wrong data" +msgstr "" + +#: ../cache/locales.php:274 +msgid "Authentication mechanism not supported by Movim" +msgstr "" + +#: ../cache/locales.php:275 +msgid "The XMPP authentification failed" +msgstr "Autentificacion al servidor XMPP impossibla" + +#: ../cache/locales.php:276 +#, php-format +msgid "" +"You can login with Facebook (chat only) using %syour.id@chat.facebook.com%s " +"and your password" +msgstr "" + +#: ../cache/locales.php:277 +#, php-format +msgid "%sGmail accounts are also compatible%s but are not fully supported" +msgstr "" + +#: ../cache/locales.php:278 +msgid "You can login using your favorite Jabber account" +msgstr "" + +#: ../cache/locales.php:279 +msgid "or with our demonstration account" +msgstr "" + +#: ../cache/locales.php:280 ../cache/locales.php:435 +msgid "Accounts" +msgstr "" + +#: ../cache/locales.php:281 +msgid "My address" +msgstr "Mon adreça" + +#: ../cache/locales.php:283 +msgid "Create one !" +msgstr "" + +#: ../cache/locales.php:284 +msgid "No account yet ?" +msgstr "" + +#: ../cache/locales.php:285 +msgid "Another account" +msgstr "" + +#: ../cache/locales.php:286 +msgid "You can login with accounts from theses servers" +msgstr "" + +#: ../cache/locales.php:287 +msgid "Connected" +msgstr "" + +#: ../cache/locales.php:288 +msgid "Population" +msgstr "" + +#: ../cache/locales.php:289 +msgid "Bad nickname (between 4 and 40 characters)" +msgstr "" + +#: ../cache/locales.php:292 +msgid "" +"Welcome on your news feed, here you will see all the posts published in the " +"groups you have subscribed." +msgstr "" + +#: ../cache/locales.php:293 +msgid "Refreshing all the streams" +msgstr "" + +#: ../cache/locales.php:294 +msgid "This post is public" +msgstr "" + +#: ../cache/locales.php:295 +msgid "Manage your members" +msgstr "Gerir vòstres membres" + +#: ../cache/locales.php:296 +msgid "Get the members" +msgstr "Recuperar los membres" + +#: ../cache/locales.php:297 +msgid "Affiliations saved" +msgstr "Afiliacions salvadas" + +#: ../cache/locales.php:298 +msgid "Manage your subscriptions" +msgstr "Gerir vòstres abonaments" + +#: ../cache/locales.php:299 +msgid "Manage the subscriptions" +msgstr "Gerir los abonaments" + +#: ../cache/locales.php:300 +msgid "Get the subscriptions" +msgstr "Recuperar los abonaments" + +#: ../cache/locales.php:301 +msgid "Subscriptions saved" +msgstr "" + +#: ../cache/locales.php:302 +msgid "Pending Invitations" +msgstr "" + +#: ../cache/locales.php:303 +#, php-format +msgid "%s wants to talk with you" +msgstr "" + +#: ../cache/locales.php:304 +msgid "Manage" +msgstr "Gerir" + +#: ../cache/locales.php:305 ../cache/locales.php:338 +msgid "News Feed" +msgstr "" + +#: ../cache/locales.php:306 ../cache/locales.php:339 +msgid "Discover and register to the groups you are interested in" +msgstr "" + +#: ../cache/locales.php:307 ../cache/locales.php:340 ../cache/locales.php:482 +msgid "Preview" +msgstr "" + +#: ../cache/locales.php:308 ../cache/locales.php:341 ../cache/locales.php:478 +msgid "Help" +msgstr "Ajuda" + +#: ../cache/locales.php:309 ../cache/locales.php:342 +msgid "More help" +msgstr "" + +#: ../cache/locales.php:310 ../cache/locales.php:343 +msgid "Markdown syntax manual" +msgstr "" + +#: ../cache/locales.php:311 ../cache/locales.php:344 ../cache/locales.php:681 +msgid "Title" +msgstr "" + +#: ../cache/locales.php:312 ../cache/locales.php:345 +msgid "Content" +msgstr "" + +#: ../cache/locales.php:313 ../cache/locales.php:346 +msgid "Link" +msgstr "Ligam" + +#: ../cache/locales.php:314 ../cache/locales.php:347 +msgid "Tags" +msgstr "" + +#: ../cache/locales.php:315 ../cache/locales.php:348 +msgid "Please enter a valid url" +msgstr "" + +#: ../cache/locales.php:316 ../cache/locales.php:349 +msgid "No content to preview" +msgstr "" + +#: ../cache/locales.php:317 ../cache/locales.php:350 ../cache/locales.php:687 +msgid "No content" +msgstr "Pas cap de contengut" + +#: ../cache/locales.php:318 ../cache/locales.php:351 +msgid "Post published" +msgstr "" + +#: ../cache/locales.php:319 ../cache/locales.php:352 +msgid "Post deleted" +msgstr "" + +#: ../cache/locales.php:320 ../cache/locales.php:353 +msgid "This picture will be added to your gallery" +msgstr "" + +#: ../cache/locales.php:321 ../cache/locales.php:354 +msgid "What's Hot" +msgstr "" + +#: ../cache/locales.php:322 ../cache/locales.php:355 +msgid "New post" +msgstr "" + +#: ../cache/locales.php:323 ../cache/locales.php:357 +msgid "" +"You can also use services like Imgur or Flickr to host your picture and " +"paste the link here." +msgstr "" + +#: ../cache/locales.php:324 +#, php-format +msgid "This is a re-post from %s" +msgstr "" + +#: ../cache/locales.php:325 +#, php-format +msgid "See %s profile" +msgstr "" + +#: ../cache/locales.php:326 +msgid "Publish this post on your public feed?" +msgstr "" + +#: ../cache/locales.php:327 +msgid "Post published on your blog" +msgstr "" + +#: ../cache/locales.php:328 +msgid "Post removed from your blog" +msgstr "" + +#: ../cache/locales.php:329 ../cache/locales.php:701 +msgid "Delete this post" +msgstr "" + +#: ../cache/locales.php:330 +msgid "You are going to delete this post, please confirm your action" +msgstr "" + +#: ../cache/locales.php:331 +msgid "Comments disabled" +msgstr "" + +#: ../cache/locales.php:332 +msgid "Comment published" +msgstr "" + +#: ../cache/locales.php:333 +msgid "Disconnect" +msgstr "Se desconnectar" + +#: ../cache/locales.php:334 +msgid "Your status here !" +msgstr "Vòstre estatut aicí !" + +#: ../cache/locales.php:335 +msgid "Status updated" +msgstr "Estatut mes a jorn" + +#: ../cache/locales.php:336 +msgid "Status" +msgstr "" + +#: ../cache/locales.php:337 +msgid "Presence" +msgstr "" + +#: ../cache/locales.php:356 +msgid "Publish" +msgstr "" + +#: ../cache/locales.php:358 +msgid "You cannot publish a post on this Group" +msgstr "" + +#: ../cache/locales.php:359 +msgid "" +"Some fields have been filled in. Do you still want to go back and loose " +"their content?" +msgstr "" + +#: ../cache/locales.php:360 +msgid "Shared" +msgstr "" + +#: ../cache/locales.php:362 +#, php-format +msgid "%s has been added to your public groups" +msgstr "" + +#: ../cache/locales.php:363 +#, php-format +msgid "%s has been removed from your public groups" +msgstr "" + +#: ../cache/locales.php:364 +msgid "Add a chatroom" +msgstr "" + +#: ../cache/locales.php:365 +msgid "You don't have any chatroom yet." +msgstr "" + +#: ../cache/locales.php:366 +msgid "Add one by clicking on the add button in the header." +msgstr "" + +#: ../cache/locales.php:367 +msgid "Chatrooms" +msgstr "Salons de discussion" + +#: ../cache/locales.php:370 +msgid "My Favorite Room" +msgstr "" + +#: ../cache/locales.php:374 +msgid "Remove a chatroom" +msgstr "" + +#: ../cache/locales.php:375 +msgid "" +"You are going to remove the following chatroom. Please confirm your action." +msgstr "" + +#: ../cache/locales.php:378 +msgid "Users in the room" +msgstr "" + +#: ../cache/locales.php:379 +msgid "Please enter a correct nickname (6 to 40 characters)" +msgstr "" + +#: ../cache/locales.php:381 +msgid "Public chatroom" +msgstr "" + +#: ../cache/locales.php:382 +msgid "Please provide a room address" +msgstr "" + +#: ../cache/locales.php:383 +msgid "You are currently logued as an anonymous user." +msgstr "" + +#: ../cache/locales.php:384 +msgid "" +"You can join using your own account or create one on the login page by " +"loging out using the cross in the top-right corner." +msgstr "" + +#: ../cache/locales.php:385 +#, php-format +msgid "Login on %s" +msgstr "" + +#: ../cache/locales.php:386 +msgid "Your nickname" +msgstr "" + +#: ../cache/locales.php:387 +msgid "Ungrouped" +msgstr "Pas agropat" + +#: ../cache/locales.php:388 +msgid "Show disconnected contacts" +msgstr "Contactes desconnectats afichats" + +#: ../cache/locales.php:389 +msgid "Hide disconnected contacts" +msgstr "Contactes desconnectats amagats" + +#: ../cache/locales.php:390 +#, php-format +msgid "Show group %s" +msgstr "Grop %s afichat" + +#: ../cache/locales.php:391 +#, php-format +msgid "Hide group %s" +msgstr "Grop %s amagat" + +#: ../cache/locales.php:392 +msgid "Please enter a valid Jabber ID" +msgstr "" + +#: ../cache/locales.php:393 +msgid "" +"No contacts ? You can add one using the + button bellow or going to the " +"Explore page" +msgstr "" + +#: ../cache/locales.php:394 +msgid "Show/Hide" +msgstr "" + +#: ../cache/locales.php:395 +msgid "Enter the Jabber ID of your contact." +msgstr "" + +#: ../cache/locales.php:396 +msgid "Press enter to validate." +msgstr "" + +#: ../cache/locales.php:397 +msgid "JID" +msgstr "" + +#: ../cache/locales.php:398 +msgid "Results" +msgstr "" + +#: ../cache/locales.php:399 +msgid "Contact added" +msgstr "" + +#: ../cache/locales.php:401 +msgid "Contact deleted" +msgstr "" + +#: ../cache/locales.php:403 msgid "This is not a valid url" msgstr "" -#: [share]success +#: ../cache/locales.php:404 msgid "Sharing the URL" msgstr "" -#: [statistics]title +#: ../cache/locales.php:405 msgid "Statistics" msgstr "" -#: [statistics]since +#: ../cache/locales.php:406 msgid "Since" msgstr "" -#: [statistics]sessions +#: ../cache/locales.php:407 msgid "Sessions" msgstr "" -#: [statistics]monthly_sub +#: ../cache/locales.php:409 msgid "Monthly Subscriptions" msgstr "" -#: [statistics]monthly_sub_cum +#: ../cache/locales.php:410 msgid "Monthly Subscriptions Cumulated" msgstr "" -#: [subscribe]info -msgid "Movim is a decentralized social network, before creating a new account you need to choose a server to register." +#: ../cache/locales.php:412 +msgid "" +"Movim is a decentralized social network, before creating a new account you " +"need to choose a server to register." msgstr "" -#: [subscribe]server_question +#: ../cache/locales.php:413 msgid "Your server here ?" msgstr "" -#: [subscribe]server_contact +#: ../cache/locales.php:414 msgid "Contact us to add yours to the officially supported servers list" msgstr "" -#: [feed]nope +#: ../cache/locales.php:416 msgid "No public feed for this contact" msgstr "" -#: [feed]nope_contact +#: ../cache/locales.php:417 msgid "No contact specified" msgstr "" -#: [upload]title -#, fuzzy -msgid "Upload a file" -msgstr "Mandar" - -#: [upload]choose -msgid "Choose a file to upload" -msgstr "" - -#: [vcard]title [page]profile +#: ../cache/locales.php:418 ../cache/locales.php:473 msgid "Profile" msgstr "Perfil" -#: [vcard]updated +#: ../cache/locales.php:419 msgid "Profile Updated" msgstr "Perfil mes a jorn" -#: [vcard]not_updated +#: ../cache/locales.php:420 msgid "Profile Not Updated" msgstr "" -#: [vcard]public +#: ../cache/locales.php:421 msgid "Your profile is now public" msgstr "" -#: [vcard]restricted +#: ../cache/locales.php:422 msgid "Your profile is now restricted" msgstr "" -#: [general]nickname -#, fuzzy -msgctxt "[general]nickname" -msgid "Nickname" -msgstr "Escais" - -#: [accounts]twitter +#: ../cache/locales.php:436 msgid "Twitter" msgstr "" -#: [accounts]skype +#: ../cache/locales.php:437 msgid "Skype" msgstr "" -#: [accounts]yahoo +#: ../cache/locales.php:438 msgid "Yahoo" msgstr "" -#: [accounts]accounts_nickname -#, fuzzy -msgctxt "[accounts]accounts_nickname" -msgid "Nickname" -msgstr "Escais" - -#: [accounts]accounts_yahoo -#, fuzzy -msgid "Yahoo Account" -msgstr "%s - Compte" - -#: [privacy]privacy_title +#: ../cache/locales.php:439 msgid "Privacy Level" msgstr "Nivèl de confidencialitat" -#: [privacy]privacy_question +#: ../cache/locales.php:440 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." +#: ../cache/locales.php:441 +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." msgstr "" -#: [save]submit [button]submit -msgid "Submit" -msgstr "Validar" - -#: [save]reset [button]reset -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 +#: ../cache/locales.php:442 msgid "Call" msgstr "" -#: [visio]hang_up +#: ../cache/locales.php:443 msgid "Hang up" msgstr "" -#: [visio]connection +#: ../cache/locales.php:444 msgid "Connection" msgstr "" -#: [global]no_js +#: ../cache/locales.php:445 ../cache/locales.php:451 +msgid "Hung up" +msgstr "" + +#: ../cache/locales.php:446 ../cache/locales.php:452 +msgid "Your contact is busy" +msgstr "" + +#: ../cache/locales.php:447 ../cache/locales.php:453 +msgid "Declined" +msgstr "" + +#: ../cache/locales.php:448 ../cache/locales.php:454 +msgid "Remote application incompatible" +msgstr "" + +#: ../cache/locales.php:450 ../cache/locales.php:456 +msgid "Is calling you" +msgstr "" + +#: ../cache/locales.php:457 msgid "You don't have javascript enabled. Good luck with that." msgstr "" -#: [global]description -msgid "Movim is a kickass distributed social networking platform that protect your privacy an comes with a set of awesome features." +#: ../cache/locales.php:458 +msgid "" +"Movim is a kickass distributed social networking platform that protect your " +"privacy an comes with a set of awesome features." msgstr "" -#: [page]administration +#: ../cache/locales.php:459 msgid "Administration" msgstr "Administracion" -#: [page]home +#: ../cache/locales.php:460 msgid "Home" msgstr "Dorsièr personal" -#: [page]discover +#: ../cache/locales.php:461 msgid "Discover" msgstr "Descobrir" -#: [page]explore +#: ../cache/locales.php:462 msgid "Explore" msgstr "Explorar" -#: [page]account_creation +#: ../cache/locales.php:463 msgid "Account Creation" msgstr "Creacion de compte" -#: [page]avatar +#: ../cache/locales.php:464 +msgid "News" +msgstr "Actualitats" + +#: ../cache/locales.php:465 msgid "Avatar" msgstr "Avatar" -#: [page]chats +#: ../cache/locales.php:467 msgid "Chats" msgstr "" -#: [page]server +#: ../cache/locales.php:470 msgid "Server" msgstr "Servidor" -#: [page]public_groups +#: ../cache/locales.php:471 msgid "Public Groups" msgstr "Gropes publics" -#: [page]viewer +#: ../cache/locales.php:472 msgid "Viewer" msgstr "Visionadoira" -#: [page]media +#: ../cache/locales.php:474 msgid "Media" msgstr "Mèdia" -#: [page]blog +#: ../cache/locales.php:475 msgid "Blog" msgstr "Blòg" -#: [page]about +#: ../cache/locales.php:476 msgid "About" msgstr "A prepaus" -#: [page]login +#: ../cache/locales.php:477 msgid "Login" msgstr "" -#: [page]feed +#: ../cache/locales.php:479 msgid "Feed" msgstr "Flux" -#: [page]gallery +#: ../cache/locales.php:481 msgid "Gallery" msgstr "" -#: [page]visio +#: ../cache/locales.php:483 msgid "Visio-conference" msgstr "Visioconferéncia" -#: [page]pods +#: ../cache/locales.php:484 msgid "Pods" msgstr "" -#: [page]share +#: ../cache/locales.php:485 msgid "Share" msgstr "" -#: [page]room +#: ../cache/locales.php:486 msgid "Room" msgstr "" -#: [error]error +#: ../cache/locales.php:487 +#, php-format msgid "Error: %s" msgstr "Error : %s" -#: [error]cannot_load_file +#: ../cache/locales.php:488 +#, php-format msgid "Cannot load file '%s'" msgstr "Lo fichier '%s' es pas accessible" -#: [error]route +#: ../cache/locales.php:489 +#, php-format msgid "Route error, please set all the parameters for the page %s" msgstr "" -#: [error]widget_load_error +#: ../cache/locales.php:490 +#, php-format msgid "Requested widget '%s' doesn't exist." msgstr "" -#: [error]widget_call_error +#: ../cache/locales.php:491 +#, php-format msgid "Requested event '%s' not registered." msgstr "" -#: [error]whoops +#: ../cache/locales.php:492 msgid "Whoops!" msgstr "" -#: [error]media_not_found +#: ../cache/locales.php:493 msgid "It seem that you don't have any pictures here?" msgstr "" -#: [error]media_ask_upload +#: ../cache/locales.php:494 msgid "You can try to upload a couple by going to the Media page" msgstr "" -#: [title]about +#: ../cache/locales.php:495 +#, php-format msgid "%s - About" msgstr "%s - A prepaus" -#: [title]account +#: ../cache/locales.php:496 +#, php-format msgid "%s - Account" msgstr "%s - Compte" -#: [title]administration +#: ../cache/locales.php:497 +#, php-format msgid "%s - Administration Panel" msgstr "%s - Panèl d'Administracion" -#: [title]blog +#: ../cache/locales.php:498 +#, php-format msgid "%s - Blog" msgstr "" -#: [title]configuration +#: ../cache/locales.php:499 +#, php-format msgid "%s - Configuration" msgstr "%s - Configuracion" -#: [title]discover +#: ../cache/locales.php:500 +#, php-format msgid "%s - Discover" msgstr "%s - Descobrir" -#: [title]explore +#: ../cache/locales.php:501 +#, php-format msgid "%s - Explore" msgstr "%s - Explorar" -#: [title]help +#: ../cache/locales.php:502 +#, php-format msgid "%s - Help Page" msgstr "%s - Pagina d'Ajuda" -#: [title]login +#: ../cache/locales.php:503 +#, php-format msgid "%s - Login to Movim" msgstr "%s - Dobrir una sesilha MOVIM" -#: [title]main +#: ../cache/locales.php:504 +#, php-format msgid "%s - Welcome to Movim" msgstr "%s - Benvengut sus MOVIM" -#: [title]media +#: ../cache/locales.php:505 +#, php-format msgid "%s - Media" msgstr "" -#: [title]news +#: ../cache/locales.php:506 +#, php-format msgid "%s - News" msgstr "%s - Actualitats" -#: [title]node_configuration +#: ../cache/locales.php:507 +#, php-format msgid "%s - Group Configuration" msgstr "" -#: [title]node +#: ../cache/locales.php:508 +#, php-format msgid "%s - Group" msgstr "" -#: [title]not_found +#: ../cache/locales.php:509 +#, php-format msgid "%s - 404" msgstr "" -#: [title]profile +#: ../cache/locales.php:510 +#, php-format msgid "%s - Profile" msgstr "%s - Perfil" -#: [title]server +#: ../cache/locales.php:511 +#, php-format msgid "%s - Server" msgstr "" -#: [button]validate +#: ../cache/locales.php:512 msgid "Validate" msgstr "Validar" -#: [button]refresh +#: ../cache/locales.php:513 msgid "Refresh" msgstr "Metre a jorn" -#: [button]add +#: ../cache/locales.php:514 msgid "Add" msgstr "Apondre" -#: [button]delete +#: ../cache/locales.php:515 msgid "Delete" msgstr "" -#: [button]cancel +#: ../cache/locales.php:516 +msgid "Remove" +msgstr "" + +#: ../cache/locales.php:517 msgid "Cancel" msgstr "Abandonar" -#: [button]close +#: ../cache/locales.php:518 msgid "Close" msgstr "Tampar" -#: [button]update +#: ../cache/locales.php:519 msgid "Update" msgstr "Metre a jorn" -#: [button]updating +#: ../cache/locales.php:520 msgid "Updating" msgstr "Mesa a jorn" -#: [button]submitting +#: ../cache/locales.php:521 +msgid "Submit" +msgstr "Validar" + +#: ../cache/locales.php:522 msgid "Submitting" msgstr "Somission en cors" -#: [button]register +#: ../cache/locales.php:523 +msgid "Reset" +msgstr "Reïnicializar" + +#: ../cache/locales.php:524 msgid "Register" msgstr "" -#: [button]unregister +#: ../cache/locales.php:525 msgid "Unregister" msgstr "" -#: [button]save +#: ../cache/locales.php:526 msgid "Save" msgstr "Enregistrar" -#: [button]clear +#: ../cache/locales.php:527 msgid "Clear" msgstr "" -#: [button]upload +#: ../cache/locales.php:528 msgid "Upload" msgstr "Mandar" -#: [button]come_in +#: ../cache/locales.php:529 msgid "Come in!" msgstr "'Chabatz d'entrar !" -#: [button]connecting +#: ../cache/locales.php:530 msgid "Connecting" msgstr "" -#: [button]bool_yes +#: ../cache/locales.php:531 msgid "Yes" msgstr "Òc" -#: [button]bool_no +#: ../cache/locales.php:532 msgid "No" msgstr "Non" -#: [button]return +#: ../cache/locales.php:534 msgid "Return" msgstr "" -#: [button]accept +#: ../cache/locales.php:535 msgid "Accept" msgstr "Acceptar" -#: [button]refuse +#: ../cache/locales.php:536 msgid "Refuse" msgstr "" -#: [button]next +#: ../cache/locales.php:537 msgid "Next" msgstr "" -#: [button]previous +#: ../cache/locales.php:538 msgid "Previous" msgstr "" -#: [step]step +#: ../cache/locales.php:539 +#, php-format msgid "Step %s" msgstr "" -#: [day]title +#: ../cache/locales.php:542 msgid "Day" msgstr "Jorn" -#: [day]monday +#: ../cache/locales.php:543 msgid "Monday" msgstr "Diluns" -#: [day]tuesday +#: ../cache/locales.php:544 msgid "Tuesday" msgstr "Dimars" -#: [day]wednesday +#: ../cache/locales.php:545 msgid "Wednesday" msgstr "Dimècres" -#: [day]thursday +#: ../cache/locales.php:546 msgid "Thursday" msgstr "Dijòus" -#: [day]friday +#: ../cache/locales.php:547 msgid "Friday" msgstr "Divendres" -#: [day]saturday +#: ../cache/locales.php:548 msgid "Saturday" msgstr "Dissabte" -#: [day]sunday +#: ../cache/locales.php:549 msgid "Sunday" msgstr "" -#: [gender]nil -#, fuzzy -msgctxt "[gender]nil" +#: ../cache/locales.php:550 ../cache/locales.php:559 msgid "None" msgstr "Pas cap" -#: [gender]male +#: ../cache/locales.php:551 msgid "Male" msgstr "Òme" -#: [gender]female +#: ../cache/locales.php:552 msgid "Female" msgstr "Femna" -#: [gender]other +#: ../cache/locales.php:553 msgid "Other" msgstr "Autre" -#: [client]bot +#: ../cache/locales.php:554 msgid "Bot" msgstr "Robòt" -#: [client]desktop +#: ../cache/locales.php:555 msgid "Desktop" msgstr "Burèu" -#: [client]phone +#: ../cache/locales.php:556 msgid "Phone" msgstr "Telefòn" -#: [client]web +#: ../cache/locales.php:557 msgid "Web" msgstr "Internet" -#: [client]registered +#: ../cache/locales.php:558 msgid "Registered" msgstr "Enregistrat" -#: [marital]nil -#, fuzzy -msgctxt "[marital]nil" -msgid "None" -msgstr "Pas cap" - -#: [marital]single +#: ../cache/locales.php:560 msgid "Single" msgstr "Celibatari(ària)" -#: [marital]relationship +#: ../cache/locales.php:561 msgid "In a relationship" msgstr "En parelh" -#: [marital]married +#: ../cache/locales.php:562 msgid "Married" msgstr "Maridat(ada)" -#: [marital]divorced +#: ../cache/locales.php:563 msgid "Divorced" msgstr "Divorciat(ada)" -#: [marital]widowed +#: ../cache/locales.php:564 msgid "Widowed" msgstr "Veuse(a)" -#: [marital]cohabiting +#: ../cache/locales.php:565 msgid "Cohabiting" msgstr "Associat" -#: [marital]union +#: ../cache/locales.php:566 msgid "Civil Union" msgstr "Union civila" -#: [flag]white +#: ../cache/locales.php:567 msgid "Not shared" msgstr "Pas partejat" -#: [flag]green +#: ../cache/locales.php:568 msgid "Shared with one contact" msgstr "Partejat amb un contacte" -#: [flag]orange +#: ../cache/locales.php:569 msgid "Shared with all contacts" msgstr "Partejat amb totes los contactes" -#: [flag]red +#: ../cache/locales.php:570 msgid "Shared with the XMPP network" msgstr "Partejat amb la ret XMPP" -#: [flag]black +#: ../cache/locales.php:571 msgid "Shared with the whole Internet" msgstr "Partejat amb tot Internet" -#: [presence]online +#: ../cache/locales.php:572 msgid "Online" msgstr "En linha" -#: [presence]away +#: ../cache/locales.php:573 msgid "Away" msgstr "Absent(a)" -#: [presence]dnd +#: ../cache/locales.php:574 msgid "Do Not Disturb" msgstr "De derengar pas" -#: [presence]xa +#: ../cache/locales.php:575 msgid "Extended Away" msgstr "Abséncia longa" -#: [presence]offline +#: ../cache/locales.php:576 msgid "Offline" msgstr "Desconnectat" -#: [presence]error +#: ../cache/locales.php:577 msgid "Error" msgstr "Error" -#: [mood]afraid +#: ../cache/locales.php:578 msgid "afraid" msgstr "" -#: [mood]amazed +#: ../cache/locales.php:579 msgid "amazed" msgstr "estonat(ada)" -#: [mood]amorous +#: ../cache/locales.php:580 msgid "amorous" msgstr "Amorós/osa" -#: [mood]angry +#: ../cache/locales.php:581 msgid "angry" msgstr "en colèra" -#: [mood]annoyed +#: ../cache/locales.php:582 msgid "annoyed" msgstr "contrariat/ada" -#: [mood]anxious +#: ../cache/locales.php:583 msgid "anxious" msgstr "" -#: [mood]aroused +#: ../cache/locales.php:584 msgid "aroused" msgstr "estimulat(ada)" -#: [mood]ashamed +#: ../cache/locales.php:585 msgid "ashamed" msgstr "vergonhós(osa)" -#: [mood]bored +#: ../cache/locales.php:586 msgid "bored" msgstr "alassat(ada)" -#: [mood]brave +#: ../cache/locales.php:587 msgid "brave" msgstr "coratjós(osa)" -#: [mood]calm +#: ../cache/locales.php:588 msgid "calm" msgstr "calm(a)" -#: [mood]cautious +#: ../cache/locales.php:589 msgid "cautious" msgstr "prudent(a)" -#: [mood]cold +#: ../cache/locales.php:590 msgid "cold" msgstr "" -#: [mood]confident +#: ../cache/locales.php:591 msgid "confident" msgstr "Fisançós/osa" -#: [mood]confused +#: ../cache/locales.php:592 msgid "confused" msgstr "perplèxe(a)" -#: [mood]contemplative +#: ../cache/locales.php:593 msgid "contemplative" msgstr "contemplatiu(va)" -#: [mood]contented +#: ../cache/locales.php:594 msgid "contented" msgstr "satisfach(a)" -#: [mood]cranky +#: ../cache/locales.php:595 msgid "cranky" msgstr "" -#: [mood]crazy +#: ../cache/locales.php:596 msgid "crazy" msgstr "Franc fadard(a)" -#: [mood]creative +#: ../cache/locales.php:597 msgid "creative" msgstr "creatiu(va)" -#: [mood]curious +#: ../cache/locales.php:598 msgid "curious" msgstr "curiós(osa)" -#: [mood]dejected +#: ../cache/locales.php:599 msgid "dejected" msgstr "" -#: [mood]depressed +#: ../cache/locales.php:600 msgid "depressed" msgstr "deprimit(ida)" -#: [mood]disappointed +#: ../cache/locales.php:601 msgid "disappointed" msgstr "decebut(uda)" -#: [mood]disgusted +#: ../cache/locales.php:602 msgid "disgusted" msgstr "" -#: [mood]dismayed +#: ../cache/locales.php:603 msgid "dismayed" msgstr "" -#: [mood]distracted +#: ../cache/locales.php:604 msgid "distracted" msgstr "distrach(a)" -#: [mood]embarrassed +#: ../cache/locales.php:605 msgid "embarrassed" msgstr "" -#: [mood]envious +#: ../cache/locales.php:606 msgid "envious" msgstr "" -#: [mood]excited +#: ../cache/locales.php:607 msgid "excited" msgstr "Excitat/ada" -#: [mood]flirtatious +#: ../cache/locales.php:608 msgid "flirtatious" msgstr "seductor" -#: [mood]frustated +#: ../cache/locales.php:609 msgid "frustated" msgstr "" -#: [mood]grateful +#: ../cache/locales.php:610 msgid "grateful" msgstr "reconeissent" -#: [mood]grieving +#: ../cache/locales.php:611 msgid "grieving" msgstr "" -#: [mood]grumpy +#: ../cache/locales.php:612 msgid "grumpy" msgstr "romegós" -#: [mood]guilty +#: ../cache/locales.php:613 msgid "guilty" msgstr "copable" -#: [mood]happy +#: ../cache/locales.php:614 msgid "happy" msgstr "Urós/osa" -#: [mood]hopeful +#: ../cache/locales.php:615 msgid "hopeful" msgstr "optimista" -#: [mood]hot +#: ../cache/locales.php:616 msgid "hot" msgstr "Caud(a)" -#: [mood]humbled +#: ../cache/locales.php:617 msgid "humbled" msgstr "esmougut" -#: [mood]humiliated +#: ../cache/locales.php:618 msgid "humiliated" msgstr "umiliat" -#: [mood]hungry +#: ../cache/locales.php:619 msgid "hungry" msgstr "" -#: [mood]hurt +#: ../cache/locales.php:620 msgid "hurt" msgstr "" -#: [mood]impressed +#: ../cache/locales.php:621 msgid "impressed" msgstr "impressionat" -#: [mood]in_awe +#: ../cache/locales.php:622 msgid "in awe" msgstr "" -#: [mood]in_love +#: ../cache/locales.php:623 msgid "in love" msgstr "amorós" -#: [mood]indignant +#: ../cache/locales.php:624 msgid "indignant" msgstr "" -#: [mood]interested +#: ../cache/locales.php:625 msgid "interested" msgstr "interessat" -#: [mood]intoxicated +#: ../cache/locales.php:626 msgid "intoxicated" msgstr "intoxicat" -#: [mood]invincible +#: ../cache/locales.php:627 msgid "invincible" msgstr "" -#: [mood]jealous +#: ../cache/locales.php:628 msgid "jealous" msgstr "gelós" -#: [mood]lonely +#: ../cache/locales.php:629 msgid "lonely" msgstr "sol" -#: [mood]lost +#: ../cache/locales.php:630 msgid "lost" msgstr "perdut" -#: [mood]lucky +#: ../cache/locales.php:631 msgid "lucky" msgstr "astruc" -#: [mood]mean +#: ../cache/locales.php:632 msgid "mean" msgstr "missant" -#: [mood]moody +#: ../cache/locales.php:633 msgid "moody" msgstr "ronhós" -#: [mood]nervous +#: ../cache/locales.php:634 msgid "nervous" msgstr "nerviós" -#: [mood]neutral +#: ../cache/locales.php:635 msgid "neutral" msgstr "neutre" -#: [mood]offended +#: ../cache/locales.php:636 msgid "offended" msgstr "ofensat" -#: [mood]outraged +#: ../cache/locales.php:637 msgid "outraged" msgstr "" -#: [mood]playful +#: ../cache/locales.php:638 msgid "playful" msgstr "jogaire" -#: [mood]proud +#: ../cache/locales.php:639 msgid "proud" msgstr "fièr" -#: [mood]relaxed +#: ../cache/locales.php:640 msgid "relaxed" msgstr "" -#: [mood]relieved +#: ../cache/locales.php:641 msgid "relieved" msgstr "" -#: [mood]restless +#: ../cache/locales.php:642 +msgid "remorseful" +msgstr "" + +#: ../cache/locales.php:643 msgid "restless" msgstr "impacient" -#: [mood]sad +#: ../cache/locales.php:644 msgid "sad" msgstr "triste" -#: [mood]sarcastic +#: ../cache/locales.php:645 msgid "sarcastic" msgstr "sarcastic" -#: [mood]satisfied +#: ../cache/locales.php:646 msgid "satisfied" msgstr "satisfach" -#: [mood]serious +#: ../cache/locales.php:647 msgid "serious" msgstr "seriós" -#: [mood]shocked +#: ../cache/locales.php:648 msgid "shocked" msgstr "" -#: [mood]shy +#: ../cache/locales.php:649 msgid "shy" msgstr "timid" -#: [mood]sick +#: ../cache/locales.php:650 msgid "sick" msgstr "malaut" -#: [mood]sleepy +#: ../cache/locales.php:651 msgid "sleepy" msgstr "endormit" -#: [mood]spontaneous +#: ../cache/locales.php:652 msgid "spontaneous" msgstr "espontanèu" -#: [mood]stressed +#: ../cache/locales.php:653 msgid "stressed" msgstr "estressat" -#: [mood]strong +#: ../cache/locales.php:654 msgid "strong" msgstr "fòrt" -#: [mood]surprised +#: ../cache/locales.php:655 msgid "surprised" msgstr "susprés" -#: [mood]thankful +#: ../cache/locales.php:656 msgid "thankful" msgstr "reconeissent" -#: [mood]thirsty +#: ../cache/locales.php:657 msgid "thirsty" msgstr "" -#: [mood]tired +#: ../cache/locales.php:658 msgid "tired" msgstr "alassat" -#: [mood]undefined +#: ../cache/locales.php:659 msgid "undefined" msgstr "pas definit" -#: [mood]weak +#: ../cache/locales.php:660 msgid "weak" msgstr "feble" -#: [mood]worried +#: ../cache/locales.php:661 msgid "worried" msgstr "preocupat" -#: [month]title +#: ../cache/locales.php:662 msgid "Month" msgstr "Mes" -#: [month]january +#: ../cache/locales.php:663 msgid "January" msgstr "Genièr" -#: [month]february +#: ../cache/locales.php:664 msgid "February" msgstr "Febrièr" -#: [month]march +#: ../cache/locales.php:665 msgid "March" msgstr "Març" -#: [month]april +#: ../cache/locales.php:666 msgid "April" msgstr "Abril" -#: [month]may +#: ../cache/locales.php:667 msgid "May" msgstr "Mai" -#: [month]june +#: ../cache/locales.php:668 msgid "June" msgstr "Junh" -#: [month]july +#: ../cache/locales.php:669 msgid "July" msgstr "Julhet" -#: [month]august +#: ../cache/locales.php:670 msgid "August" msgstr "Agost" -#: [month]september +#: ../cache/locales.php:671 msgid "September" msgstr "Setembre" -#: [month]october +#: ../cache/locales.php:672 msgid "October" msgstr "Octobre" -#: [month]november +#: ../cache/locales.php:673 msgid "November" msgstr "Novembre" -#: [month]december +#: ../cache/locales.php:674 msgid "December" msgstr "Decembre" -#: [year]title +#: ../cache/locales.php:675 msgid "Year" msgstr "Annada" -#: [date]today +#: ../cache/locales.php:676 msgid "Today" msgstr "Uèi" -#: [date]tomorrow +#: ../cache/locales.php:677 msgid "Tomorrow" msgstr "Deman" -#: [date]yesterday +#: ../cache/locales.php:678 msgid "Yesterday" msgstr "Ièr" -#: [date]ago -#, fuzzy -msgid "%d days ago" +#: ../cache/locales.php:679 +#, php-format +msgid " %d days ago" msgstr " i a %d jorns" -#: [date]day +#: ../cache/locales.php:680 msgid "day" msgstr "jorn" -#: [post]whats_new +#: ../cache/locales.php:682 msgid "What's new ?" msgstr "" -#: [post]place +#: ../cache/locales.php:683 msgid "Place" msgstr "Luòc" -#: [post]by +#: ../cache/locales.php:684 msgid "by" msgstr "per" -#: [post]geolocalisation +#: ../cache/locales.php:685 msgid "Geolocalisation" msgstr "" -#: [post]email +#: ../cache/locales.php:686 msgid "email" msgstr "E-mail" -#: [post]no_comments +#: ../cache/locales.php:688 msgid "No comments yet" msgstr "" -#: [post]no_comments_stream +#: ../cache/locales.php:689 msgid "No comments stream" msgstr "Pas de flux de comentaris" -#: [post]no_load +#: ../cache/locales.php:690 msgid "Your feed cannot be loaded." msgstr "Vòstre fial es pas accessible." -#: [post]older +#: ../cache/locales.php:691 msgid "Get older posts" msgstr "Recuperar los ancians pòsts" -#: [post]new_items +#: ../cache/locales.php:692 +#, php-format msgid "%s new items" msgstr "" -#: [post]comment_error +#: ../cache/locales.php:693 msgid "Comment publication error" msgstr "" -#: [post]comments_older +#: ../cache/locales.php:694 msgid "Show the older comments" msgstr "Afichar los autres comentaris" -#: [post]comments_loading -#, fuzzy -msgid "Loading comments..." -msgstr "Cargament de vòstre flux ..." +#: ../cache/locales.php:695 +msgid "Loading comments ..." +msgstr "" -#: [post]comments_get +#: ../cache/locales.php:696 msgid "Get the comments" msgstr "" -#: [post]comment_add +#: ../cache/locales.php:697 msgid "Add a comment" msgstr "" -#: [post]share +#: ../cache/locales.php:698 msgid "Share with" msgstr "" -#: [post]share_everyone +#: ../cache/locales.php:699 msgid "Everyone" msgstr "" -#: [post]share_your_contacts +#: ../cache/locales.php:700 msgid "Your contacts" msgstr "" -#: [post]updated +#: ../cache/locales.php:702 msgid "Updated" msgstr "" -#: [post]content_not_found +#: ../cache/locales.php:703 msgid "Content not found" msgstr "" -#: [post]default_title +#: ../cache/locales.php:704 msgid "Contact publication" msgstr "" -#: [post]comments +#: ../cache/locales.php:705 msgid "Comments" msgstr "" -#: [api]error +#: ../cache/locales.php:706 msgid "The API is not reachable, try again later" msgstr "" -#: [field]type_here +#: ../cache/locales.php:707 msgid "Type here" msgstr "" -#~ msgid "Environment" -#~ msgstr "Environament" - +#, php-format #~ msgid "Couldn't create configuration file '%s'." #~ msgstr "La creacion dau fichier de configuracion '%s' es impossibla." #~ msgid "JID not provided." #~ msgstr "JID indisponible." +#, php-format #~ msgid "Cannot open log file '%s'" #~ msgstr "Impossible de dubrir lo jornau '%s'" +#, php-format #~ msgid "%s - Account Creation" #~ msgstr "%s - Creacion de compte" @@ -2746,6 +2613,7 @@ msgstr "" #~ msgid "Actual version : " #~ msgstr "Version actuala : " +#, php-format #~ msgid "Install the %s package" #~ msgstr "Installar lo paquet %s" @@ -2759,7 +2627,9 @@ msgstr "" #~ msgstr "Òsca !" #~ msgid "Update your PHP version or contact your server administrator" -#~ msgstr "Actualizatz vòstra version de PHP o contactatz l'administrador de vòstre servidor" +#~ msgstr "" +#~ "Actualizatz vòstra version de PHP o contactatz l'administrador de vòstre " +#~ "servidor" #~ msgid "BOSH Connection Preferences" #~ msgstr "Configuracion de la connexion BOSH" @@ -2786,28 +2656,37 @@ msgstr "" #~ msgstr "Crear ma vCard" #~ msgid "PHP version mismatch. Movim requires PHP 5.3 minimum." -#~ msgstr "Avètz pas la bona version de PHP. Movim a mestièr al mens de PHP 5.3." +#~ msgstr "" +#~ "Avètz pas la bona version de PHP. Movim a mestièr al mens de PHP 5.3." #~ msgid "Enable read and write rights on Movim's root folder" -#~ msgstr "Activatz los drechess de lectura e d'escritura sul dorsièr raiç de Movim" +#~ msgstr "" +#~ "Activatz los drechess de lectura e d'escritura sul dorsièr raiç de Movim" +#, php-format #~ msgid "Install %s and %s packages" #~ msgstr "Installatz los paquets %s e %s" #~ msgid "Movim's folder must be writable." #~ msgstr "Lo dorsièr Movim deu èsser accessible en escritura" +#, php-format #~ msgid "Movim requires the %s extension." #~ msgstr "Movim a mestièr de l'extension %s." #~ msgid "Proxy Preferences" #~ msgstr "Preferéncias du Proxy" +#, php-format #~ msgid "Couldn't create directory '%s'." #~ msgstr "La creacion del repertòri '%s' es impossibla." -#~ msgid "The following requirements were not met. Please make sure they are all satisfied in order to install Movim." -#~ msgstr "Los elements seguents son pas disponibles. Siatz segur que sián corregits per poder installar Movim." +#~ msgid "" +#~ "The following requirements were not met. Please make sure they are all " +#~ "satisfied in order to install Movim." +#~ msgstr "" +#~ "Los elements seguents son pas disponibles. Siatz segur que sián corregits " +#~ "per poder installar Movim." #~ msgid "Compatibility Test" #~ msgstr "Tèst de compatibilitat" @@ -2818,15 +2697,21 @@ msgstr "" #~ msgid "User not logged in." #~ msgstr "Sètz pas autentificat." +#, php-format #~ msgid "Please remove the %s folder in order to complete the installation" #~ msgstr "Si vos plai, suprimètz lo dorsièr %s per acabar l'installacion" +#, php-format #~ msgid "You can now access your shiny Movim instance %sJump In !%s" #~ msgstr "Ara, podètz accedir a vòstra version de Movim tota nòva %sAnem !%s" #~ msgid "Database Movim schema installed" #~ msgstr "L'esquèma de la banca de donadas es estat installat" +#~ msgid "Database Detected" +#~ msgstr "Banca de donadas detectada" + +#, php-format #~ msgid "jid '%s' is incorrect" #~ msgstr "Lo jid '%s' es incorrècte" @@ -2848,9 +2733,15 @@ msgstr "" #~ msgid "8 characters" #~ msgstr "8 caractèrs" +#~ msgid "Remove this contact" +#~ msgstr "Suprimir aqueste contacte" + #~ msgid "Address" #~ msgstr "Adreça" +#~ msgid "Loading your feed ..." +#~ msgstr "Cargament de vòstre flux ..." + #~ msgid "Debug console" #~ msgstr "Consòla de desbugatge" @@ -2864,10 +2755,16 @@ msgstr "" #~ msgstr "Seguir" #~ msgid "A capital letter, a digit and a special character are recommended" -#~ msgstr "Un bon senhal es compausat d'al mens una majuscula, una chifra e un caractèr especial" +#~ msgstr "" +#~ "Un bon senhal es compausat d'al mens una majuscula, una chifra e un caractèr " +#~ "especial" -#~ msgid "Firstly fill in this blank with a brand new account ID, this address will follow you on all the Movim network !" -#~ msgstr "D'en prumier, completatz quel espaci emb una identificacion de compte tota novela, quela adreça vos segrà pertot sus lo malhum Movim !" +#~ msgid "" +#~ "Firstly fill in this blank with a brand new account ID, this address will " +#~ "follow you on all the Movim network !" +#~ msgstr "" +#~ "D'en prumier, completatz quel espaci emb una identificacion de compte tota " +#~ "novela, quela adreça vos segrà pertot sus lo malhum Movim !" #~ msgid "Client Name" #~ msgstr "Nom dau client" @@ -2875,11 +2772,19 @@ msgstr "" #~ msgid "Client Type" #~ msgstr "Tipe de Client" -#~ msgid "Keep in mind that Movim is still under development and will handle many personal details. Its use can potentially endanger your data. Always pay attention to information that you submit." -#~ msgstr "Oblidatz pas que Movim es enquera en desvelopament e vai manipular de la sinformacions personalaS. Son utilizacion las pòt far córrer un dangier. Fasetz totjorn 'tencion a las informacions qu'enviatz." +#~ msgid "" +#~ "Keep in mind that Movim is still under development and will handle many " +#~ "personal details. Its use can potentially endanger your data. Always pay " +#~ "attention to information that you submit." +#~ msgstr "" +#~ "Oblidatz pas que Movim es enquera en desvelopament e vai manipular de la " +#~ "sinformacions personalaS. Son utilizacion las pòt far córrer un dangier. " +#~ "Fasetz totjorn 'tencion a las informacions qu'enviatz." -#~ msgid "Before you enjoy your social network, a few adjustements are required." -#~ msgstr "Davant d'utilizar vòstre malhum sociau, quauques ajsutaments son necessaris." +#~ msgid "" +#~ "Before you enjoy your social network, a few adjustements are required." +#~ msgstr "" +#~ "Davant d'utilizar vòstre malhum sociau, quauques ajsutaments son necessaris." #~ msgid "Thank you for downloading Movim!" #~ msgstr "Mercés per lo descharjament de Movim !" diff --git a/sources/locales/pt.po b/sources/locales/pt.po index b02e9a3..8c74497 100644 --- a/sources/locales/pt.po +++ b/sources/locales/pt.po @@ -1,2722 +1,2594 @@ # Portuguese translations for Movim package. # This file is distributed under the same license as the Movim package. # This file was translated from CodingTeam at . -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/About/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Account/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/AccountNext/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/AdHoc/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/AdminDB/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/AdminMain/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/AdminTest/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Api/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Avatar/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Blog/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Bookmark/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Chat/locales.ini -#. #-#-#-#-# 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 -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Group/locales.ini -#. #-#-#-#-# 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 -#. #-#-#-#-# 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 -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Presence/locales.ini -#. #-#-#-#-# 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 -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Share/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Statistics/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Subscribe/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Syndication/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Upload/locales.ini -#. #-#-#-#-# 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-08-20 15:17+0200\n" +"POT-Creation-Date: 2015-06-08 22:06+0200\n" "PO-Revision-Date: 2014-06-01 23:11+0000\n" "Last-Translator: edhelas \n" "Language-Team: LANGUAGE \n" -"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2015-06-18 21:08+0000\n" "X-Generator: Launchpad (build 17570)\n" +"Language: \n" -#: [about]thanks +#: ../cache/locales.php:2 msgid "Thanks" msgstr "" -#: [about]developers +#: ../cache/locales.php:3 msgid "Developers" msgstr "" -#: [about]translators +#: ../cache/locales.php:4 msgid "Translators" msgstr "" -#: [about]software +#: ../cache/locales.php:5 msgid "Software" msgstr "" -#: [about]resources +#: ../cache/locales.php:6 msgid "Resources" msgstr "" -#: [about]api [schema]api [api]title +#: ../cache/locales.php:7 ../cache/locales.php:83 ../cache/locales.php:85 msgid "API" msgstr "" -#: [about]info -msgid "Movim is an XMPP-based communication platform. All the project, except the following software and resources, is under" +#: ../cache/locales.php:8 +msgid "" +"Movim is an XMPP-based communication platform. All the project, except the " +"following software and resources, is under" msgstr "" -#: [account]title +#: ../cache/locales.php:9 msgid "Account" msgstr "" -#: [account]password_change_title -#, fuzzy -msgid "Change my password" -msgstr "Senha incorreta" - -#: [account]password [db]password [credentials]password [form]password -#: [input]password -msgid "Password" -msgstr "Senha" - -#: [account]password_confirmation -#, fuzzy -msgid "Password confirmation" -msgstr "%s - Configuraçāo" - -#: [account]password_changed +#: ../cache/locales.php:10 msgid "The password has been updated" msgstr "" -#: [account]password_not_valid +#: ../cache/locales.php:11 msgid "Please provide a valid password (6 characters minimum)" msgstr "" -#: [account]password_not_same +#: ../cache/locales.php:12 msgid "The provided passwords are not the same" msgstr "" -#: [account]delete_title +#: ../cache/locales.php:13 msgid "Delete my account" msgstr "" -#: [account]delete -#, fuzzy -msgid "Delete your account" -msgstr "Criar uma nova conta" - -#: [account]delete_text -msgid "You will delete your XMPP account and all the relative information linked to it (profile, contacts and publications)." +#: ../cache/locales.php:14 +msgid "" +"You will delete your XMPP account and all the relative information linked to " +"it (profile, contacts and publications)." msgstr "" -#: [account]delete_text_confirm +#: ../cache/locales.php:15 msgid "Are you sure that you want to delete it ?" msgstr "" -#: [account]gateway_title -msgid "Gateway" -msgstr "" - -#: [create]title [subscribe]title +#: ../cache/locales.php:16 ../cache/locales.php:411 msgid "Create a new account" msgstr "Criar uma nova conta" -#: [create]notfound +#: ../cache/locales.php:17 msgid "No account creation form found on the server" msgstr "" -#: [create]server_on +#: ../cache/locales.php:18 ../cache/locales.php:172 msgid "on" msgstr "" -#: [create]successfull +#: ../cache/locales.php:19 msgid "Your acccount has been successfully registered" msgstr "" -#: [create]loading +#: ../cache/locales.php:20 msgid "Loading" msgstr "" -#: [error]not_acceptable +#: ../cache/locales.php:21 msgid "Not Acceptable" msgstr "" -#: [error]service_unavailable +#: ../cache/locales.php:22 msgid "The registration system of this server is currently unavailable" msgstr "" -#: [oob]about -msgid "This server use an external system for the registration, please click on the following URL." +#: ../cache/locales.php:23 +msgid "" +"This server use an external system for the registration, please click on the " +"following URL." msgstr "" -#: [adhoc]title +#: ../cache/locales.php:24 msgid "Actions" msgstr "Ações" -#: [db]legend [schema]database +#: ../cache/locales.php:25 ../cache/locales.php:82 msgid "Database" msgstr "" -#: [db]connect_error +#: ../cache/locales.php:26 msgid "Modl wasn't able to connect to the database" msgstr "" -#: [db]connect_success +#: ../cache/locales.php:27 msgid "Movim is connected to the database" msgstr "" -#: [db]update +#: ../cache/locales.php:28 msgid "The database need to be updated" msgstr "" -#: [db]up_to_date +#: ../cache/locales.php:29 msgid "Movim database is up to date" msgstr "" -#: [db]type +#: ../cache/locales.php:30 msgid "Database Type" msgstr "" -#: [db]username [credentials]username [input]username +#: ../cache/locales.php:31 ../cache/locales.php:50 ../cache/locales.php:540 msgid "Username" msgstr "" -#: [db]host +#: ../cache/locales.php:32 ../cache/locales.php:51 ../cache/locales.php:282 +#: ../cache/locales.php:541 +msgid "Password" +msgstr "Senha" + +#: ../cache/locales.php:33 msgid "Host" msgstr "" -#: [db]port +#: ../cache/locales.php:34 msgid "Port" msgstr "" -#: [db]name -#, fuzzy -msgid "Database sName" -msgstr "Banco de dados detectado" +#: ../cache/locales.php:35 +msgid "Database Name" +msgstr "" -#: [admin]general +#: ../cache/locales.php:36 msgid "General Settings" msgstr "" -#: [general]theme +#: ../cache/locales.php:37 msgid "Theme" msgstr "" -#: [general]language +#: ../cache/locales.php:38 msgid "Default language" msgstr "" -#: [general]log_verbosity +#: ../cache/locales.php:39 +msgid "Environment" +msgstr "" + +#: ../cache/locales.php:40 msgid "Log verbosity" msgstr "" -#: [general]timezone +#: ../cache/locales.php:41 msgid "Server Timezone" msgstr "" -#: [general]limit +#: ../cache/locales.php:42 msgid "User folder size limit (in bytes)" msgstr "" -#: [websocket]title +#: ../cache/locales.php:43 msgid "WebSocket Configuration" msgstr "" -#: [websocket]info +#: ../cache/locales.php:44 msgid "Enter here a valid WebSocket URI in the form" msgstr "" -#: [websocket]label +#: ../cache/locales.php:45 msgid "WebSocket URI" msgstr "" -#: [websocket]save_info -msgid "If you change the URI, please restart the daemon to reload the configuration" +#: ../cache/locales.php:46 +msgid "" +"If you change the URI, please restart the daemon to reload the configuration" msgstr "" -#: [websocket]publics +#: ../cache/locales.php:47 msgid "Public WebSockets" msgstr "" -#: [credentials]title +#: ../cache/locales.php:48 msgid "Administration Credential" msgstr "" -#: [credentials]info +#: ../cache/locales.php:49 msgid "Change the default credentials admin/password" msgstr "" -#: [credentials]re_password +#: ../cache/locales.php:52 msgid "Retype password" msgstr "" -#: [whitelist]title +#: ../cache/locales.php:53 msgid "Whitelist - XMPP Server" msgstr "" -#: [whitelist]info1 -msgid "If you want to specify a list of authorized XMPP servers on your Movim pod and forbid the connection on all the others please put their domain name here, with comma (ex: movim.eu,jabber.fr)" +#: ../cache/locales.php:54 +msgid "" +"If you want to specify a list of authorized XMPP servers on your Movim pod " +"and forbid the connection on all the others please put their domain name " +"here, with comma (ex: movim.eu,jabber.fr)" msgstr "" -#: [whitelist]info2 -msgid "Leave this field blank if you allow the access to all the XMPP accounts." +#: ../cache/locales.php:55 +msgid "" +"Leave this field blank if you allow the access to all the XMPP accounts." msgstr "" -#: [whitelist]label +#: ../cache/locales.php:56 msgid "List of whitelisted XMPP servers" msgstr "" -#: [information]title -#, fuzzy -msgctxt "[information]title" +#: ../cache/locales.php:57 ../cache/locales.php:61 msgid "Information Message" -msgstr "Informações do Cliente" +msgstr "" -#: [information]description +#: ../cache/locales.php:58 msgid "Description" msgstr "" -#: [information]info1 +#: ../cache/locales.php:59 msgid "This message will be displayed on the login page" msgstr "" -#: [information]info2 -msgid "Leave this field blank if you dont want to show any message." +#: ../cache/locales.php:60 +msgid "Leave this field blank if you don't want to show any message." msgstr "" -#: [information]label -#, fuzzy -msgctxt "[information]label" -msgid "Information Message" -msgstr "Informações do Cliente" - -#: [log]empty +#: ../cache/locales.php:62 msgid "Empty" msgstr "" -#: [log]syslog +#: ../cache/locales.php:63 msgid "Syslog" msgstr "" -#: [log]syslog_files +#: ../cache/locales.php:64 msgid "Syslog and files" msgstr "" -#: [rewrite]title +#: ../cache/locales.php:65 msgid "URL Rewriting" msgstr "" -#: [rewrite]info +#: ../cache/locales.php:66 msgid "The URL Rewriting can be enabled" msgstr "" -#: [admin]compatibility +#: ../cache/locales.php:67 msgid "General Overview" msgstr "" -#: [compatibility]info -msgid "Movim has found some issues or things that need to be fixed or improved" +#: ../cache/locales.php:68 +msgid "" +"Movim has found some issues or things that need to be fixed or improved" msgstr "" -#: [compatibility]php1 +#: ../cache/locales.php:69 +#, php-format msgid "Update your PHP-Version: %s" msgstr "" -#: [compatibility]php2 +#: ../cache/locales.php:70 msgid "Required: 5.3.0" msgstr "" -#: [compatibility]curl +#: ../cache/locales.php:71 msgid "Install the php5-curl library" msgstr "" -#: [compatibility]imagick +#: ../cache/locales.php:72 msgid "Install the php5-imagick library" msgstr "" -#: [compatibility]gd +#: ../cache/locales.php:73 msgid "Install the php5-gd library" msgstr "" -#: [compatibility]rights -#, fuzzy -msgid "Read and write rights for the webserver in Movims root directory" -msgstr "Habilitar permissões de leitura e escrita na pasta raiz do Movim" +#: ../cache/locales.php:74 +msgid "Read and write rights for the webserver in Movim's root directory" +msgstr "" -#: [compatibility]rewrite +#: ../cache/locales.php:75 msgid "The URL Rewriting support is currently disabled" msgstr "" -#: [compatibility]db +#: ../cache/locales.php:76 msgid "The database need to be updated, go to the database panel to fix this" msgstr "" -#: [compatibility]websocket -msgid "WebSocket connection error, check if the Movim Daemon is running and is reachable" +#: ../cache/locales.php:77 +msgid "" +"WebSocket connection error, check if the Movim Daemon is running and is " +"reacheable" msgstr "" -#: [compatibility]xmpp_websocket -msgid "XMPP Websocket connection error, please check the validity of the URL given in the General Configuration" +#: ../cache/locales.php:78 +msgid "" +"XMPP Websocket connection error, please check the validity of the URL given " +"in the General Configuration" msgstr "" -#: [schema]browser +#: ../cache/locales.php:79 msgid "Browser" msgstr "" -#: [schema]movim +#: ../cache/locales.php:80 msgid "Movim Core" msgstr "" -#: [schema]daemon +#: ../cache/locales.php:81 msgid "Movim Daemon" msgstr "" -#: [schema]xmpp +#: ../cache/locales.php:84 msgid "XMPP" msgstr "" -#: [api]info -msgid "Here you can register your pod on the official %sMovim API%s and be listed on %sthe pods page%s." +#: ../cache/locales.php:86 +#, php-format +msgid "" +"Here you can register your pod on the official %sMovim API%s and be listed " +"on %sthe pods page%s." msgstr "" -#: [api]register +#: ../cache/locales.php:87 msgid "Your pod is not registered on the API" msgstr "" -#: [api]registered +#: ../cache/locales.php:88 msgid "Your pod is registered on the API" msgstr "" -#: [api]wait +#: ../cache/locales.php:89 msgid "Your pod is not yet validated" msgstr "" -#: [api]validated +#: ../cache/locales.php:90 msgid "Your pod is validated" msgstr "" -#: [api]unregister -msgid "You asked to be removed from the API, this request will be processed in a couple of hours" +#: ../cache/locales.php:91 +msgid "" +"You asked to be removed from the API, this request will be processed in a " +"couple of hours" msgstr "" -#: [api]conf_updated [config]updated +#: ../cache/locales.php:92 ../cache/locales.php:147 msgid "Configuration updated" msgstr "" -#: [avatar]file +#: ../cache/locales.php:93 msgid "File" msgstr "" -#: [avatar]use_it +#: ../cache/locales.php:94 msgid "Use it" msgstr "" -#: [avatar]webcam +#: ../cache/locales.php:95 msgid "Webcam" msgstr "" -#: [avatar]cheese +#: ../cache/locales.php:96 msgid "Cheese !" msgstr "" -#: [avatar]snapshot +#: ../cache/locales.php:97 msgid "Take a webcam snapshot" msgstr "" -#: [avatar]updated +#: ../cache/locales.php:98 msgid "Avatar Updated" msgstr "" -#: [avatar]not_updated +#: ../cache/locales.php:99 msgid "Avatar Not Updated" msgstr "" -#: [blog]title [feed]title +#: ../cache/locales.php:100 ../cache/locales.php:415 +#, php-format msgid "%s's feed" msgstr "" -#: [blog]empty +#: ../cache/locales.php:101 msgid "This user has not posted anything right now" msgstr "" -#: [title]conferences +#: ../cache/locales.php:102 msgid "Conferences" msgstr "" -#: [title]groups [group]empty_title [menu]groups [page]groups +#: ../cache/locales.php:103 ../cache/locales.php:193 ../cache/locales.php:217 +#: ../cache/locales.php:468 msgid "Groups" msgstr "" -#: [chatroom]add +#: ../cache/locales.php:104 msgid "Add a new Chat Room" msgstr "" -#: [chatroom]id [chatrooms]id +#: ../cache/locales.php:105 ../cache/locales.php:368 msgid "Chat Room ID" msgstr "" -#: [chatroom]name -#, fuzzy -msgctxt "[chatroom]name" +#: ../cache/locales.php:106 ../cache/locales.php:116 ../cache/locales.php:156 +#: ../cache/locales.php:361 ../cache/locales.php:369 ../cache/locales.php:424 msgid "Name" msgstr "Nome" -#: [chatroom]nickname [general]nickname [chatrooms]nickname +#: ../cache/locales.php:107 ../cache/locales.php:157 ../cache/locales.php:371 +#: ../cache/locales.php:425 msgid "Nickname" msgstr "Apelido" -#: [chatroom]autojoin_label +#: ../cache/locales.php:108 msgid "Do you want do join automaticaly this Chat Room ?" msgstr "" -#: [chatroom]bad_id [chatrooms]bad_id +#: ../cache/locales.php:109 ../cache/locales.php:372 msgid "Bad Chatroom ID" msgstr "" -#: [chatroom]empty_name [chatrooms]empty_name +#: ../cache/locales.php:110 ../cache/locales.php:373 msgid "Empty name" msgstr "" -#: [bookmarks]updated +#: ../cache/locales.php:111 ../cache/locales.php:380 msgid "Bookmarks updated" msgstr "" -#: [bookmarks]error -msgid "An error occured :" +#: ../cache/locales.php:112 +msgid "An error occured : " msgstr "" -#: [bookmarks]configure +#: ../cache/locales.php:113 msgid "Configure" msgstr "" -#: [url]add +#: ../cache/locales.php:114 msgid "Add a new URL" msgstr "" -#: [url]url +#: ../cache/locales.php:115 msgid "URL" msgstr "" -#: [url]name -#, fuzzy -msgctxt "[url]name" -msgid "Name" -msgstr "Nome" - -#: [message]published +#: ../cache/locales.php:117 msgid "Message Published" msgstr "" -#: [message]encrypted +#: ../cache/locales.php:118 ../cache/locales.php:138 msgid "Encrypted message" msgstr "" -#: [message]composing [chats]composing +#: ../cache/locales.php:119 msgid "Composing..." msgstr "Escrevendo..." -#: [message]paused [chats]paused +#: ../cache/locales.php:120 msgid "Paused..." msgstr "" -#: [message]gone +#: ../cache/locales.php:121 msgid "Contact gone" msgstr "" -#: [chat]attention +#: ../cache/locales.php:122 +#, php-format msgid "%s needs your attention" msgstr "" -#: [chat]placeholder +#: ../cache/locales.php:123 msgid "Your message here..." msgstr "" -#: [chat]smileys +#: ../cache/locales.php:124 msgid "Smileys" msgstr "" -#: [chat]empty_title [button]chat +#: ../cache/locales.php:125 ../cache/locales.php:139 msgid "Chat" msgstr "Chat" -#: [chat]empty_text +#: ../cache/locales.php:126 msgid "Discuss with your contacts" msgstr "" -#: [chat]frequent [chats]frequent -msgid "Frequent contacts" -msgstr "" - -#: [chatroom]members +#: ../cache/locales.php:127 msgid "Members" msgstr "" -#: [chatroom]connected [chatrooms]connected +#: ../cache/locales.php:128 ../cache/locales.php:376 msgid "Connected to the chatroom" msgstr "" -#: [chatroom]disconnected [chatrooms]disconnected +#: ../cache/locales.php:129 ../cache/locales.php:377 msgid "Disconnected from the chatroom" msgstr "" -#: [chatroom]config [group]configuration [page]configuration +#: ../cache/locales.php:130 ../cache/locales.php:200 ../cache/locales.php:469 msgid "Configuration" msgstr "Configuraçāo" -#: [chatroom]config_saved +#: ../cache/locales.php:131 msgid "Configuration saved" msgstr "" -#: [chatroom]subject +#: ../cache/locales.php:132 msgid "Subject" msgstr "" -#: [chatroom]subject_changed +#: ../cache/locales.php:133 msgid "Subject changed" msgstr "" -#: [chats]empty_title -msgid "No chats yet..." +#: ../cache/locales.php:134 +msgid "Open a new conversation by clicking on the plus button bellow" msgstr "" -#: [chats]empty -msgid "Open a new conversation by clicking on the plus button bellow or visit the Contacts page." -msgstr "" - -#: [chats]add +#: ../cache/locales.php:135 msgid "Chat with a contact" msgstr "" -#: [chats]more +#: ../cache/locales.php:136 +msgid "Frequent contacts" +msgstr "" + +#: ../cache/locales.php:137 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 "" - -#: [config]general +#: ../cache/locales.php:140 msgid "General" msgstr "" -#: [config]language +#: ../cache/locales.php:141 msgid "Language" msgstr "Idioma" -#: [config]roster +#: ../cache/locales.php:142 msgid "Roster display" msgstr "" -#: [config]roster_show +#: ../cache/locales.php:143 msgid "Show the offline contacts" msgstr "" -#: [config]roster_hide +#: ../cache/locales.php:144 msgid "Hide the offline contacts" msgstr "" -#: [config]appearence +#: ../cache/locales.php:145 msgid "Appearence" msgstr "" -#: [config]info -msgid "This configuration is shared wherever you are connected" +#: ../cache/locales.php:146 +msgid "This configuration is shared wherever you are connected !" msgstr "" -#: [notifications]message +#: ../cache/locales.php:148 msgid "Notify on incoming message" msgstr "" -#: [notifications]desktop +#: ../cache/locales.php:149 msgid "Use desktop notifications" msgstr "" -#: [general]legend [general]general_title +#: ../cache/locales.php:150 +msgid "Data" +msgstr "" + +#: ../cache/locales.php:151 +msgid "Cache" +msgstr "" + +#: ../cache/locales.php:152 ../cache/locales.php:218 ../cache/locales.php:466 +msgid "Contacts" +msgstr "" + +#: ../cache/locales.php:153 ../cache/locales.php:480 +msgid "Posts" +msgstr "" + +#: ../cache/locales.php:154 +msgid "Messages" +msgstr "" + +#: ../cache/locales.php:155 ../cache/locales.php:423 msgid "General Informations" msgstr "Informações gerais" -#: [general]name [public_groups]name [chatrooms]name -msgid "Name" -msgstr "Nome" - -#: [general]date_of_birth +#: ../cache/locales.php:158 ../cache/locales.php:427 msgid "Date of Birth" msgstr "Data de Nascimento" -#: [general]gender +#: ../cache/locales.php:159 ../cache/locales.php:428 msgid "Gender" msgstr "Sexo" -#: [general]marital +#: ../cache/locales.php:160 ../cache/locales.php:429 msgid "Marital Status" msgstr "Estado Civil" -#: [general]email +#: ../cache/locales.php:161 ../cache/locales.php:426 msgid "Email" msgstr "" -#: [general]website +#: ../cache/locales.php:162 ../cache/locales.php:430 msgid "Website" msgstr "Página Web" -#: [general]about +#: ../cache/locales.php:163 ../cache/locales.php:431 msgid "About Me" msgstr "Sobre Mim" -#: [general]accounts +#: ../cache/locales.php:164 msgid "Other Accounts" msgstr "" -#: [general]tune +#: ../cache/locales.php:165 msgid "Is Listening" msgstr "" -#: [position]legend [position]position_title +#: ../cache/locales.php:166 ../cache/locales.php:432 msgid "Geographic Position" msgstr "" -#: [position]locality +#: ../cache/locales.php:167 ../cache/locales.php:433 msgid "Locality" msgstr "" -#: [position]country +#: ../cache/locales.php:168 ../cache/locales.php:434 msgid "Country" msgstr "" -#: [mood]title +#: ../cache/locales.php:169 msgid "Mood" msgstr "" -#: [mood]im +#: ../cache/locales.php:170 msgid "I'm " msgstr "" -#: [listen]title +#: ../cache/locales.php:171 msgid "Listening" msgstr "" -#: [last]title +#: ../cache/locales.php:173 msgid "Last seen" msgstr "" -#: [client]title +#: ../cache/locales.php:174 msgid "Client Informations" msgstr "Informações do Cliente" -#: [explore]last_registered +#: ../cache/locales.php:175 msgid "Last registered" msgstr "" -#: [explore]explore +#: ../cache/locales.php:176 msgid "Find some new friends" msgstr "" -#: [edit]title [button]edit +#: ../cache/locales.php:177 ../cache/locales.php:533 msgid "Edit" msgstr "" -#: [edit]alias +#: ../cache/locales.php:178 msgid "Alias" msgstr "Alias" -#: [edit]group +#: ../cache/locales.php:179 msgid "Group" msgstr "" -#: [edit]updated [roster]updated +#: ../cache/locales.php:180 ../cache/locales.php:400 msgid "Contact updated" msgstr "" -#: [delete]title +#: ../cache/locales.php:181 msgid "Are you sure?" msgstr "" -#: [delete]text -msgid "You are going to delete one of your contacts, please confirm your action" +#: ../cache/locales.php:182 +msgid "" +"You are going to delete one of your contacts, please confirm your action" msgstr "" -#: [age]years +#: ../cache/locales.php:183 +#, php-format msgid "%s years" msgstr "" -#: [blog]last +#: ../cache/locales.php:184 msgid "Last public post" msgstr "" -#: [subscription]to -#, fuzzy -msgid "You can see this contact status" -msgstr "Remover este contato" - -#: [subscription]to_button -msgid "Share my status" -msgstr "" - -#: [subscription]to_text -msgid "But this contact cannot see yours" -msgstr "" - -#: [subscription]from -msgid "You are not subscribed to this contact" -msgstr "" - -#: [subscription]from_button -msgid "Ask to subscribe" -msgstr "" - -#: [subscription]from_text -msgid "But this contact can still see if you are online" -msgstr "" - -#: [subscription]nil -msgid "No subscriptions" -msgstr "" - -#: [subscription]nil_button -msgid "Invite" -msgstr "" - -#: [subscription]nil_text -msgid "This contact is in your contact list but there is no subscriptions between the two accounts" -msgstr "" - -#: [group]subscribe +#: ../cache/locales.php:185 msgid "Subscribe" msgstr "" -#: [group]subscribed +#: ../cache/locales.php:186 msgid "Subscribed" msgstr "" -#: [group]unsubscribe +#: ../cache/locales.php:187 msgid "Unsubscribe" msgstr "" -#: [group]unsubscribe_text +#: ../cache/locales.php:188 msgid "You are going to unsubscribe from this Group" msgstr "" -#: [group]unsubscribed +#: ../cache/locales.php:189 msgid "Unsubscribed" msgstr "" -#: [group]share_label +#: ../cache/locales.php:190 msgid "Make your membership to this group public to your friends" msgstr "" -#: [group]label_label +#: ../cache/locales.php:191 msgid "Give a label for this group" msgstr "" -#: [group]sure +#: ../cache/locales.php:192 msgid "Are you sure ?" msgstr "" -#: [group]empty_text +#: ../cache/locales.php:194 msgid "Discover, follow and share" msgstr "" -#: [group]empty +#: ../cache/locales.php:195 msgid "Something bad happened to this group" msgstr "" -#: [group]config_saved +#: ../cache/locales.php:196 msgid "Group configuration saved" msgstr "" -#: [group]delete_title +#: ../cache/locales.php:197 msgid "Delete the group" msgstr "" -#: [group]delete_text -msgid "You are going to delete the following group. Please confirm your action." +#: ../cache/locales.php:198 +msgid "" +"You are going to delete the following group. Please confirm your action." msgstr "" -#: [group]delete_clean_text -msgid "It seems that this group doesn't exists anymore. Do you want to remove it from your subscriptions?" +#: ../cache/locales.php:199 +msgid "" +"It seems that this group doesn't exists anymore. Do you want to remove it " +"from your subscriptions?" msgstr "" -#: [group]counter -msgid "%s groups on this server" -msgstr "" - -#: [group]subscriptions [statistics]subscriptions +#: ../cache/locales.php:201 ../cache/locales.php:408 msgid "Subscriptions" msgstr "" -#: [group]servers -msgid "Groups servers" -msgstr "" - -#: [group]search_server -msgid "Search for a new server" -msgstr "" - -#: [group]help_info1 -msgid "Groups are the perfect way to share posts about topics that you like with all the other Movim's users." -msgstr "" - -#: [group]help_info2 -msgid "Choose a server and a Group and subscribe to it using the %s button in the header. You can also create a new one using the %s button." -msgstr "" - -#: [group]help_info3 -msgid "Done? You can now publish a new post in the Group by using the %s button." -msgstr "" - -#: [group]help_info4 -msgid "You will find a list of all your subscribed Groups in My Subscriptions and receive instantly all the new incoming posts in the %sNews%s page." -msgstr "" - -#: [groups]empty_title +#: ../cache/locales.php:202 ../cache/locales.php:290 msgid "Hello" msgstr "" -#: [groups]contact_post [hello]contact_post [menu]contact_post +#: ../cache/locales.php:203 ../cache/locales.php:225 ../cache/locales.php:291 msgid "Contact post" msgstr "" -#: [groups]empty_text1 -msgid "You don't have any subscriptions yet, select a group server above to start exploring." +#: ../cache/locales.php:204 +msgid "" +"You don't have any subscriptions yet, select a group server above to start " +"exploring." msgstr "" -#: [groups]empty_text2 +#: ../cache/locales.php:205 msgid "Subscribe to your favorite feeds by bookmarking them." msgstr "" -#: [groups]subscriptions +#: ../cache/locales.php:206 msgid "My Subscriptions" msgstr "" -#: [groups]add +#: ../cache/locales.php:207 msgid "Create a new Group" msgstr "" -#: [groups]name +#: ../cache/locales.php:208 msgid "Group name" msgstr "" -#: [groups]name_example +#: ../cache/locales.php:209 msgid "My Little Pony - Fan Club" msgstr "" -#: [groups]created +#: ../cache/locales.php:210 msgid "Group created successfully" msgstr "" -#: [groups]deleted +#: ../cache/locales.php:211 msgid "Group deleted successfully" msgstr "" -#: [groups]name_error +#: ../cache/locales.php:212 msgid "Please provide a valid group name (4 characters minimum)" msgstr "" -#: [groups]no_creation +#: ../cache/locales.php:213 msgid "You cannot create a new Group on this server" msgstr "" -#: [groups]sub +#: ../cache/locales.php:214 +#, php-format msgid "%s subscribers" msgstr "" -#: [groups]num +#: ../cache/locales.php:215 +#, php-format msgid "%s posts" msgstr "" -#: [groups]disco_error -#, fuzzy -msgid "This server doesn't exists" -msgstr "Este servidor hospeda %s contas" - -#: [menu]all +#: ../cache/locales.php:216 msgid "All" msgstr "Tudo" -#: [menu]refresh +#: ../cache/locales.php:219 msgid "Refresh all the streams" msgstr "" -#: [roster]search -msgid "Search in your contacts" -msgstr "" - -#: [hello]active_contacts -#, fuzzy -msgid "Active contacts" -msgstr "Ações" - -#: [hello]chat -msgid "Go on the Chat page" -msgstr "" - -#: [hello]news [page]news -msgid "News" -msgstr "" - -#: [hello]news_page -msgid "Read all theses articles on the News page" -msgstr "" - -#: [hello]blog_title -msgid "Visit your public blog" -msgstr "" - -#: [hello]blog_text -msgid "See your public posts and share them with all your contacts" -msgstr "" - -#: [hello]share_title -msgid "Universal share button" -msgstr "" - -#: [hello]share_text -msgid "Bookmark or drag and drop the following button in your toolbar and use it on all the pages you want to share on Movim" -msgstr "" - -#: [hello]share_button -msgid "Share on Movim" -msgstr "" - -#: [help]faq -msgid "Frequently Asked Questions" -msgstr "" - -#: [banner]title -msgid "What do the little banners refer to ?" -msgstr "O que os banners pequenos se refere ?" - -#: [banner]info1 -msgid "Thanks to these five little banners, you can quickly identitfy the level of confdentiality applied to the information you provide." -msgstr "Graças a estes cinco banners pequenos, você pode rapidamente identitfy o nível de confdentiality aplicada às informações que você fornecer." - -#: [banner]white -msgid "White, only you can see the information" -msgstr "Branco, somente você pode ver a informação" - -#: [banner]green -msgid "Green, you have chosen some contacts who can see your information" -msgstr "Verde, você deve ter escolhido alguns contatos que podem ver suas informações" - -#: [banner]orange -msgid "Orange, all your contact list can see your information" -msgstr "Laranja, todos os seus contatos podem ver suas informações" - -#: [banner]red -msgid "Red, everybody in the XMPP network can see your information" -msgstr "Vermelho, todos na rede XMPP podem ver suas informações" - -#: [banner]black -msgid "Black, the whole Internet can see your information" -msgstr "Preto, a internet inteira pode ver suas informações" - -#: [wiki]question -msgid "Looking for some documentation ?" -msgstr "" - -#: [wiki]button -msgid "Read the Wiki" -msgstr "" - -#: [ml]question -msgid "Talk with us by email ?" -msgstr "" - -#: [ml]button -msgid "Join the Mailing List" -msgstr "" - -#: [chatroom]question -msgid "Chat with the team ?" -msgstr "" - -#: [chatroom]button -msgid "Join the Chatroom" -msgstr "" - -#: [init]location -msgid "Location node created" -msgstr "" - -#: [init]bookmark -msgid "Bookmark node created" -msgstr "" - -#: [init]vcard4 -msgid "Profile node created" -msgstr "" - -#: [init]avatar -msgid "Avatar node created" -msgstr "" - -#: [init]subscriptions -msgid "Subscriptions node created" -msgstr "" - -#: [init]microblog -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 "Nome de usuário errado" - -#: [error]jid -msgid "Invalid JID" -msgstr "JID Inválido" - -#: [error]empty_challenge -msgid "Empty Challenge from the server" -msgstr "" - -#: [error]dns -msgid "XMPP Domain error, your account is not a correct Jabber ID" -msgstr "Erro de domínio XMPP, sua conta não é um Jabber ID correta" - -#: [error]data_missings -msgid "Some data are missing !" -msgstr "Alguns dados estão perdidos!" - -#: [error]wrong_password -msgid "Wrong password" -msgstr "Senha incorreta" - -#: [error]internal -msgid "Internal server error" -msgstr "Erro interno de servidor" - -#: [error]session -msgid "Session error" -msgstr "Erro de sessão" - -#: [error]account_created -msgid "Account successfully created" -msgstr "Conta criada com sucesso" - -#: [error]xmpp_unauthorized -msgctxt "[error]xmpp_unauthorized" -msgid "Your XMPP server is unauthorized" -msgstr "" - -#: [error]mec_error -msgid "The server takes too much time to respond" -msgstr "" - -#: [error]too_old -msgid "Your web browser is too old to use with Movim." -msgstr "seu navegador é muito antigo para usar com o Movim" - -#: [error]websocket -msgid "Movim cannot talk with the server, please try again later (Websocket connection error)" -msgstr "" - -#: [error]impossible -msgid "Impossible login" -msgstr "" - -#: [error]title -msgid "Oops!" -msgstr "" - -#: [error]default [visio]unknown_error -msgid "Unknown error" -msgstr "Erro desconhecido" - -#: [error]login_format -msgid "Invalid username format" -msgstr "" - -#: [error]password_format -msgid "Invalid password format" -msgstr "" - -#: [error]unauthorized -msgctxt "[error]unauthorized" -msgid "Your XMPP server is unauthorized" -msgstr "" - -#: [error]conflict -msgid "A Movim session is already open on an other device" -msgstr "" - -#: [error]wrong_account -msgid "Movim failed to authenticate. You entered wrong data" -msgstr "Falha na autenticação do Movim. Dado errados foram inseridos." - -#: [error]mechanism -msgid "Authentication mechanism not supported by Movim" -msgstr "" - -#: [error]fail_auth -msgid "The XMPP authentification failed" -msgstr "A autenticação XMPP falhou" - -#: [account]title [accounts]accounts_title -msgid "Accounts" -msgstr "" - -#: [form]username -msgid "My address" -msgstr "Meu endereço" - -#: [form]create_one -msgid "Create one !" -msgstr "" - -#: [form]another_account -msgid "Another account" -msgstr "" - -#: [form]no_account -msgid "No account yet ?" -msgstr "" - -#: [form]whitelist.info -msgid "You can login with accounts from theses servers" -msgstr "" - -#: [form]connected -msgid "Connected" -msgstr "" - -#: [form]population -msgid "Population" -msgstr "" - -#: [menu]empty_title -msgid "No news yet..." -msgstr "" - -#: [menu]empty -msgid "Welcome on your news feed, here you will see all the posts published by your contacts and in the groups you have subscribed." -msgstr "" - -#: [menu]refresh -msgid "Refreshing all the streams" -msgstr "" - -#: [menu]public -msgid "This post is public" -msgstr "" - -#: [affiliations]title -msgid "Manage your members" -msgstr "" - -#: [affiliations]get -msgid "Get the members" -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 "" - -#: [notifs]title -msgid "Pending Invitations" -msgstr "" - -#: [notifs]wants_to_talk -msgid "%s wants to talk with you" -msgstr "" - -#: [notifs]manage -msgid "Manage" -msgstr "" - -#: [post]news_feed -msgid "News Feed" -msgstr "" - -#: [post]placeholder -msgid "Discover and register to the groups you are interested in" -msgstr "" - -#: [post]preview [page]preview -msgid "Preview" -msgstr "" - -#: [post]help [page]help -msgid "Help" -msgstr "Ajuda" - -#: [post]help_more -msgid "More help" -msgstr "" - -#: [post]help_manual -msgid "Markdown syntax manual" -msgstr "" - -#: [post]title -msgid "Title" -msgstr "" - -#: [post]content -msgid "Content" -msgstr "" - -#: [post]link -msgid "Link" -msgstr "" - -#: [post]tags -msgid "Tags" -msgstr "" - -#: [post]valid_url [publish]valid_url -msgid "Please enter a valid url" -msgstr "" - -#: [post]no_content_preview [publish]no_content_preview -msgid "No content to preview" -msgstr "" - -#: [post]no_content [publish]no_content [post]empty -msgid "No content" -msgstr "" - -#: [post]published -msgid "Post published" -msgstr "" - -#: [post]deleted -msgid "Post deleted" -msgstr "" - -#: [post]gallery -msgid "This picture will be added to your gallery" -msgstr "" - -#: [post]hot -msgid "What's Hot" -msgstr "" - -#: [post]hot_text -msgid "Posts recently published in Groups that you are not subscribed (yet)" -msgstr "" - -#: [post]new [publish]new -msgid "New post" -msgstr "" - -#: [post]embed_tip -msgid "You can also use services like Imgur or Flickr to host your picture and paste the link here." -msgstr "" - -#: [post]repost -msgid "This is a re-post from %s" -msgstr "" - -#: [post]repost_profile -msgid "See %s profile" -msgstr "" - -#: [post]public -msgid "Publish this post publicly?" -msgstr "" - -#: [post]blog_add -msgid "Post published on your blog" -msgstr "" - -#: [post]blog_remove -msgid "Post removed from your blog" -msgstr "" - -#: [post]delete_title [post]delete -msgid "Delete this post" -msgstr "" - -#: [post]delete_text -msgid "You are going to delete this post, please confirm your action" -msgstr "" - -#: [post]comments_disabled -msgid "Comments disabled" -msgstr "" - -#: [post]comment_published -msgid "Comment published" -msgstr "" - -#: [status]disconnect -msgid "Disconnect" -msgstr "" - -#: [status]here -msgid "Your status here !" -msgstr "" - -#: [status]updated -msgid "Status updated" -msgstr "" - -#: [status]status -msgid "Status" -msgstr "" - -#: [status]presence -msgid "Presence" -msgstr "" - -#: [status]online -msgid "Online with Movim" -msgstr "" - -#: [publish]title -msgid "Publish" -msgstr "" - -#: [publish]attach -msgid "Add a file or a picture to your post" -msgstr "" - -#: [publish]no_publication -msgid "You cannot publish a post on this Group" -msgstr "" - -#: [publish]form_filled -msgid "Some fields have been filled in. Do you still want to go back and loose their content?" -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 "" - -#: [rooms]empty_text1 -msgid "You don't have any chatroom yet." -msgstr "" - -#: [rooms]empty_text2 -msgid "Add one by clicking on the add button in the header." -msgstr "" - -#: [chatrooms]title -msgid "Chatrooms" -msgstr "" - -#: [chatrooms]name_placeholder -msgid "My Favorite Room" -msgstr "" - -#: [chatrooms]users -msgid "Users in the room" -msgstr "" - -#: [chatrooms]bad_nickname -msgid "Please enter a correct nickname (2 to 40 characters)" -msgstr "" - -#: [room]anonymous_title -msgid "Public chatroom" -msgstr "" - -#: [room]no_room -msgid "Please provide a room address" -msgstr "" - -#: [room]anonymous_text1 -msgid "You are currently logued as an anonymous user." -msgstr "" - -#: [room]anonymous_text2 -msgid "You can join using your own account or create one on the login page by loging out using the cross in the top-right corner." -msgstr "" - -#: [room]anonymous_login -msgid "Login on %s" -msgstr "" - -#: [room]nick -msgid "Your nickname" -msgstr "" - -#: [roster]ungrouped -msgid "Ungrouped" -msgstr "Sem Grupo" - -#: [roster]show_disconnected -msgid "Show disconnected contacts" -msgstr "" - -#: [roster]hide_disconnected -msgid "Hide disconnected contacts" -msgstr "" - -#: [roster]show_group -msgid "Show group %s" -msgstr "" - -#: [roster]hide_group -msgid "Hide group %s" -msgstr "" - -#: [roster]jid_error -msgid "Please enter a valid Jabber ID" -msgstr "" - -#: [roster]no_contacts_title -#, fuzzy -msgid "No contacts ?" -msgstr "Contatos (%s)" - -#: [roster]no_contacts_text -msgid "You can add one using the + button bellow" -msgstr "" - -#: [roster]show_hide -msgid "Show/Hide" -msgstr "" - -#: [roster]add_contact_info1 -msgid "Enter the Jabber ID of your contact." -msgstr "" - -#: [roster]add_contact_info2 -msgid "Press enter to validate." -msgstr "" - -#: [roster]jid -msgid "JID" -msgstr "" - -#: [roster]results -msgid "Results" -msgstr "" - -#: [roster]added -msgid "Contact added" -msgstr "" - -#: [roster]deleted -msgid "Contact deleted" -msgstr "" - -#: [roster]search +#: ../cache/locales.php:220 ../cache/locales.php:402 msgid "Search" msgstr "" -#: [share]error +#: ../cache/locales.php:221 +msgid "Go on the Chat page" +msgstr "" + +#: ../cache/locales.php:222 +msgid "Read all theses articles on the News page" +msgstr "" + +#: ../cache/locales.php:223 +msgid "Visit your public blog" +msgstr "" + +#: ../cache/locales.php:224 +msgid "See your public posts and share them with all your contacts" +msgstr "" + +#: ../cache/locales.php:226 +msgid "Universal share button" +msgstr "" + +#: ../cache/locales.php:227 +msgid "" +"Bookmark or drag and drop the following button in your toolbar and use it on " +"all the pages you want to share on Movim" +msgstr "" + +#: ../cache/locales.php:228 +msgid "Share on Movim" +msgstr "" + +#: ../cache/locales.php:229 +msgid "Frequently Asked Questions" +msgstr "" + +#: ../cache/locales.php:230 +msgid "What do the little banners refer to ?" +msgstr "O que os banners pequenos se refere ?" + +#: ../cache/locales.php:231 +msgid "" +"Thanks to these five little banners, you can quickly identitfy the level of " +"confdentiality applied to the information you provide." +msgstr "" +"Graças a estes cinco banners pequenos, você pode rapidamente identitfy o " +"nível de confdentiality aplicada às informações que você fornecer." + +#: ../cache/locales.php:232 +msgid "White, only you can see the information" +msgstr "Branco, somente você pode ver a informação" + +#: ../cache/locales.php:233 +msgid "Green, you have chosen some contacts who can see your information" +msgstr "" +"Verde, você deve ter escolhido alguns contatos que podem ver suas informações" + +#: ../cache/locales.php:234 +msgid "Orange, all your contact list can see your information" +msgstr "Laranja, todos os seus contatos podem ver suas informações" + +#: ../cache/locales.php:235 +msgid "Red, everybody in the XMPP network can see your information" +msgstr "Vermelho, todos na rede XMPP podem ver suas informações" + +#: ../cache/locales.php:236 +msgid "Black, the whole Internet can see your information" +msgstr "Preto, a internet inteira pode ver suas informações" + +#: ../cache/locales.php:237 +msgid "Looking for some documentation ?" +msgstr "" + +#: ../cache/locales.php:238 +msgid "Read the Wiki" +msgstr "" + +#: ../cache/locales.php:239 +msgid "Talk with us by email ?" +msgstr "" + +#: ../cache/locales.php:240 +msgid "Join the Mailing List" +msgstr "" + +#: ../cache/locales.php:241 +msgid "Chat with the team ?" +msgstr "" + +#: ../cache/locales.php:242 +msgid "Join the Chatroom" +msgstr "" + +#: ../cache/locales.php:243 +msgid "Location node created" +msgstr "" + +#: ../cache/locales.php:244 +msgid "Bookmark node created" +msgstr "" + +#: ../cache/locales.php:245 +msgid "Profile node created" +msgstr "" + +#: ../cache/locales.php:246 +msgid "Avatar node created" +msgstr "" + +#: ../cache/locales.php:247 +msgid "Subscriptions node created" +msgstr "" + +#: ../cache/locales.php:248 +msgid "Microblog node created" +msgstr "" + +#: ../cache/locales.php:249 +msgid "Location" +msgstr "" + +#: ../cache/locales.php:250 +msgid "Wrong position" +msgstr "" + +#: ../cache/locales.php:251 +msgid "Location updated" +msgstr "" + +#: ../cache/locales.php:252 +msgid "Update my position" +msgstr "" + +#: ../cache/locales.php:253 +msgid "Wrong username" +msgstr "Nome de usuário errado" + +#: ../cache/locales.php:254 +msgid "Invalid JID" +msgstr "JID Inválido" + +#: ../cache/locales.php:255 +msgid "Empty Challenge from the server" +msgstr "" + +#: ../cache/locales.php:256 +msgid "XMPP Domain error, your account is not a correct Jabber ID" +msgstr "Erro de domínio XMPP, sua conta não é um Jabber ID correta" + +#: ../cache/locales.php:257 +msgid "Some data are missing !" +msgstr "Alguns dados estão perdidos!" + +#: ../cache/locales.php:258 +msgid "Wrong password" +msgstr "Senha incorreta" + +#: ../cache/locales.php:259 +msgid "Internal server error" +msgstr "Erro interno de servidor" + +#: ../cache/locales.php:260 +msgid "Session error" +msgstr "Erro de sessão" + +#: ../cache/locales.php:261 +msgid "Account successfully created" +msgstr "Conta criada com sucesso" + +#: ../cache/locales.php:262 ../cache/locales.php:271 +msgid "Your XMPP server is unauthorized" +msgstr "" + +#: ../cache/locales.php:263 +msgid "The server takes too much time to respond" +msgstr "" + +#: ../cache/locales.php:264 +msgid "Your web browser is too old to use with Movim." +msgstr "seu navegador é muito antigo para usar com o Movim" + +#: ../cache/locales.php:265 +msgid "" +"Movim cannot talk with the server, please try again later (Websocket " +"connection error)" +msgstr "" + +#: ../cache/locales.php:266 +msgid "Impossible login" +msgstr "" + +#: ../cache/locales.php:267 +msgid "Oops!" +msgstr "" + +#: ../cache/locales.php:268 ../cache/locales.php:449 ../cache/locales.php:455 +msgid "Unknown error" +msgstr "Erro desconhecido" + +#: ../cache/locales.php:269 +msgid "Invalid username format" +msgstr "" + +#: ../cache/locales.php:270 +msgid "Invalid password format" +msgstr "" + +#: ../cache/locales.php:272 +msgid "A Movim session is already open on an other device" +msgstr "" + +#: ../cache/locales.php:273 +msgid "Movim failed to authenticate. You entered wrong data" +msgstr "Falha na autenticação do Movim. Dado errados foram inseridos." + +#: ../cache/locales.php:274 +msgid "Authentication mechanism not supported by Movim" +msgstr "" + +#: ../cache/locales.php:275 +msgid "The XMPP authentification failed" +msgstr "A autenticação XMPP falhou" + +#: ../cache/locales.php:276 +#, php-format +msgid "" +"You can login with Facebook (chat only) using %syour.id@chat.facebook.com%s " +"and your password" +msgstr "" + +#: ../cache/locales.php:277 +#, php-format +msgid "%sGmail accounts are also compatible%s but are not fully supported" +msgstr "" + +#: ../cache/locales.php:278 +msgid "You can login using your favorite Jabber account" +msgstr "" + +#: ../cache/locales.php:279 +msgid "or with our demonstration account" +msgstr "" + +#: ../cache/locales.php:280 ../cache/locales.php:435 +msgid "Accounts" +msgstr "" + +#: ../cache/locales.php:281 +msgid "My address" +msgstr "Meu endereço" + +#: ../cache/locales.php:283 +msgid "Create one !" +msgstr "" + +#: ../cache/locales.php:284 +msgid "No account yet ?" +msgstr "" + +#: ../cache/locales.php:285 +msgid "Another account" +msgstr "" + +#: ../cache/locales.php:286 +msgid "You can login with accounts from theses servers" +msgstr "" + +#: ../cache/locales.php:287 +msgid "Connected" +msgstr "" + +#: ../cache/locales.php:288 +msgid "Population" +msgstr "" + +#: ../cache/locales.php:289 +msgid "Bad nickname (between 4 and 40 characters)" +msgstr "" + +#: ../cache/locales.php:292 +msgid "" +"Welcome on your news feed, here you will see all the posts published in the " +"groups you have subscribed." +msgstr "" + +#: ../cache/locales.php:293 +msgid "Refreshing all the streams" +msgstr "" + +#: ../cache/locales.php:294 +msgid "This post is public" +msgstr "" + +#: ../cache/locales.php:295 +msgid "Manage your members" +msgstr "" + +#: ../cache/locales.php:296 +msgid "Get the members" +msgstr "" + +#: ../cache/locales.php:297 +msgid "Affiliations saved" +msgstr "" + +#: ../cache/locales.php:298 +msgid "Manage your subscriptions" +msgstr "" + +#: ../cache/locales.php:299 +msgid "Manage the subscriptions" +msgstr "" + +#: ../cache/locales.php:300 +msgid "Get the subscriptions" +msgstr "" + +#: ../cache/locales.php:301 +msgid "Subscriptions saved" +msgstr "" + +#: ../cache/locales.php:302 +msgid "Pending Invitations" +msgstr "" + +#: ../cache/locales.php:303 +#, php-format +msgid "%s wants to talk with you" +msgstr "" + +#: ../cache/locales.php:304 +msgid "Manage" +msgstr "" + +#: ../cache/locales.php:305 ../cache/locales.php:338 +msgid "News Feed" +msgstr "" + +#: ../cache/locales.php:306 ../cache/locales.php:339 +msgid "Discover and register to the groups you are interested in" +msgstr "" + +#: ../cache/locales.php:307 ../cache/locales.php:340 ../cache/locales.php:482 +msgid "Preview" +msgstr "" + +#: ../cache/locales.php:308 ../cache/locales.php:341 ../cache/locales.php:478 +msgid "Help" +msgstr "Ajuda" + +#: ../cache/locales.php:309 ../cache/locales.php:342 +msgid "More help" +msgstr "" + +#: ../cache/locales.php:310 ../cache/locales.php:343 +msgid "Markdown syntax manual" +msgstr "" + +#: ../cache/locales.php:311 ../cache/locales.php:344 ../cache/locales.php:681 +msgid "Title" +msgstr "" + +#: ../cache/locales.php:312 ../cache/locales.php:345 +msgid "Content" +msgstr "" + +#: ../cache/locales.php:313 ../cache/locales.php:346 +msgid "Link" +msgstr "" + +#: ../cache/locales.php:314 ../cache/locales.php:347 +msgid "Tags" +msgstr "" + +#: ../cache/locales.php:315 ../cache/locales.php:348 +msgid "Please enter a valid url" +msgstr "" + +#: ../cache/locales.php:316 ../cache/locales.php:349 +msgid "No content to preview" +msgstr "" + +#: ../cache/locales.php:317 ../cache/locales.php:350 ../cache/locales.php:687 +msgid "No content" +msgstr "" + +#: ../cache/locales.php:318 ../cache/locales.php:351 +msgid "Post published" +msgstr "" + +#: ../cache/locales.php:319 ../cache/locales.php:352 +msgid "Post deleted" +msgstr "" + +#: ../cache/locales.php:320 ../cache/locales.php:353 +msgid "This picture will be added to your gallery" +msgstr "" + +#: ../cache/locales.php:321 ../cache/locales.php:354 +msgid "What's Hot" +msgstr "" + +#: ../cache/locales.php:322 ../cache/locales.php:355 +msgid "New post" +msgstr "" + +#: ../cache/locales.php:323 ../cache/locales.php:357 +msgid "" +"You can also use services like Imgur or Flickr to host your picture and " +"paste the link here." +msgstr "" + +#: ../cache/locales.php:324 +#, php-format +msgid "This is a re-post from %s" +msgstr "" + +#: ../cache/locales.php:325 +#, php-format +msgid "See %s profile" +msgstr "" + +#: ../cache/locales.php:326 +msgid "Publish this post on your public feed?" +msgstr "" + +#: ../cache/locales.php:327 +msgid "Post published on your blog" +msgstr "" + +#: ../cache/locales.php:328 +msgid "Post removed from your blog" +msgstr "" + +#: ../cache/locales.php:329 ../cache/locales.php:701 +msgid "Delete this post" +msgstr "" + +#: ../cache/locales.php:330 +msgid "You are going to delete this post, please confirm your action" +msgstr "" + +#: ../cache/locales.php:331 +msgid "Comments disabled" +msgstr "" + +#: ../cache/locales.php:332 +msgid "Comment published" +msgstr "" + +#: ../cache/locales.php:333 +msgid "Disconnect" +msgstr "" + +#: ../cache/locales.php:334 +msgid "Your status here !" +msgstr "" + +#: ../cache/locales.php:335 +msgid "Status updated" +msgstr "" + +#: ../cache/locales.php:336 +msgid "Status" +msgstr "" + +#: ../cache/locales.php:337 +msgid "Presence" +msgstr "" + +#: ../cache/locales.php:356 +msgid "Publish" +msgstr "" + +#: ../cache/locales.php:358 +msgid "You cannot publish a post on this Group" +msgstr "" + +#: ../cache/locales.php:359 +msgid "" +"Some fields have been filled in. Do you still want to go back and loose " +"their content?" +msgstr "" + +#: ../cache/locales.php:360 +msgid "Shared" +msgstr "" + +#: ../cache/locales.php:362 +#, php-format +msgid "%s has been added to your public groups" +msgstr "" + +#: ../cache/locales.php:363 +#, php-format +msgid "%s has been removed from your public groups" +msgstr "" + +#: ../cache/locales.php:364 +msgid "Add a chatroom" +msgstr "" + +#: ../cache/locales.php:365 +msgid "You don't have any chatroom yet." +msgstr "" + +#: ../cache/locales.php:366 +msgid "Add one by clicking on the add button in the header." +msgstr "" + +#: ../cache/locales.php:367 +msgid "Chatrooms" +msgstr "" + +#: ../cache/locales.php:370 +msgid "My Favorite Room" +msgstr "" + +#: ../cache/locales.php:374 +msgid "Remove a chatroom" +msgstr "" + +#: ../cache/locales.php:375 +msgid "" +"You are going to remove the following chatroom. Please confirm your action." +msgstr "" + +#: ../cache/locales.php:378 +msgid "Users in the room" +msgstr "" + +#: ../cache/locales.php:379 +msgid "Please enter a correct nickname (6 to 40 characters)" +msgstr "" + +#: ../cache/locales.php:381 +msgid "Public chatroom" +msgstr "" + +#: ../cache/locales.php:382 +msgid "Please provide a room address" +msgstr "" + +#: ../cache/locales.php:383 +msgid "You are currently logued as an anonymous user." +msgstr "" + +#: ../cache/locales.php:384 +msgid "" +"You can join using your own account or create one on the login page by " +"loging out using the cross in the top-right corner." +msgstr "" + +#: ../cache/locales.php:385 +#, php-format +msgid "Login on %s" +msgstr "" + +#: ../cache/locales.php:386 +msgid "Your nickname" +msgstr "" + +#: ../cache/locales.php:387 +msgid "Ungrouped" +msgstr "Sem Grupo" + +#: ../cache/locales.php:388 +msgid "Show disconnected contacts" +msgstr "" + +#: ../cache/locales.php:389 +msgid "Hide disconnected contacts" +msgstr "" + +#: ../cache/locales.php:390 +#, php-format +msgid "Show group %s" +msgstr "" + +#: ../cache/locales.php:391 +#, php-format +msgid "Hide group %s" +msgstr "" + +#: ../cache/locales.php:392 +msgid "Please enter a valid Jabber ID" +msgstr "" + +#: ../cache/locales.php:393 +msgid "" +"No contacts ? You can add one using the + button bellow or going to the " +"Explore page" +msgstr "" + +#: ../cache/locales.php:394 +msgid "Show/Hide" +msgstr "" + +#: ../cache/locales.php:395 +msgid "Enter the Jabber ID of your contact." +msgstr "" + +#: ../cache/locales.php:396 +msgid "Press enter to validate." +msgstr "" + +#: ../cache/locales.php:397 +msgid "JID" +msgstr "" + +#: ../cache/locales.php:398 +msgid "Results" +msgstr "" + +#: ../cache/locales.php:399 +msgid "Contact added" +msgstr "" + +#: ../cache/locales.php:401 +msgid "Contact deleted" +msgstr "" + +#: ../cache/locales.php:403 msgid "This is not a valid url" msgstr "" -#: [share]success +#: ../cache/locales.php:404 msgid "Sharing the URL" msgstr "" -#: [statistics]title +#: ../cache/locales.php:405 msgid "Statistics" msgstr "" -#: [statistics]since +#: ../cache/locales.php:406 msgid "Since" msgstr "" -#: [statistics]sessions +#: ../cache/locales.php:407 msgid "Sessions" msgstr "" -#: [statistics]monthly_sub +#: ../cache/locales.php:409 msgid "Monthly Subscriptions" msgstr "" -#: [statistics]monthly_sub_cum +#: ../cache/locales.php:410 msgid "Monthly Subscriptions Cumulated" msgstr "" -#: [subscribe]info -msgid "Movim is a decentralized social network, before creating a new account you need to choose a server to register." +#: ../cache/locales.php:412 +msgid "" +"Movim is a decentralized social network, before creating a new account you " +"need to choose a server to register." msgstr "" -#: [subscribe]server_question +#: ../cache/locales.php:413 msgid "Your server here ?" msgstr "" -#: [subscribe]server_contact +#: ../cache/locales.php:414 msgid "Contact us to add yours to the officially supported servers list" msgstr "" -#: [feed]nope +#: ../cache/locales.php:416 msgid "No public feed for this contact" msgstr "" -#: [feed]nope_contact +#: ../cache/locales.php:417 msgid "No contact specified" msgstr "" -#: [upload]title -msgid "Upload a file" -msgstr "" - -#: [upload]choose -msgid "Choose a file to upload" -msgstr "" - -#: [vcard]title [page]profile +#: ../cache/locales.php:418 ../cache/locales.php:473 msgid "Profile" msgstr "Perfil" -#: [vcard]updated +#: ../cache/locales.php:419 msgid "Profile Updated" msgstr "" -#: [vcard]not_updated +#: ../cache/locales.php:420 msgid "Profile Not Updated" msgstr "" -#: [vcard]public +#: ../cache/locales.php:421 msgid "Your profile is now public" msgstr "" -#: [vcard]restricted +#: ../cache/locales.php:422 msgid "Your profile is now restricted" msgstr "" -#: [general]nickname -#, fuzzy -msgctxt "[general]nickname" -msgid "Nickname" -msgstr "Apelido" - -#: [accounts]twitter +#: ../cache/locales.php:436 msgid "Twitter" msgstr "" -#: [accounts]skype +#: ../cache/locales.php:437 msgid "Skype" msgstr "" -#: [accounts]yahoo +#: ../cache/locales.php:438 msgid "Yahoo" msgstr "" -#: [accounts]accounts_nickname -#, fuzzy -msgctxt "[accounts]accounts_nickname" -msgid "Nickname" -msgstr "Apelido" - -#: [accounts]accounts_yahoo -msgid "Yahoo Account" -msgstr "" - -#: [privacy]privacy_title +#: ../cache/locales.php:439 msgid "Privacy Level" msgstr "" -#: [privacy]privacy_question +#: ../cache/locales.php:440 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." +#: ../cache/locales.php:441 +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." msgstr "" -#: [save]submit [button]submit -msgid "Submit" -msgstr "Enviar" - -#: [save]reset [button]reset -msgid "Reset" -msgstr "Limpar" - -#: [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 +#: ../cache/locales.php:442 msgid "Call" msgstr "" -#: [visio]hang_up +#: ../cache/locales.php:443 msgid "Hang up" msgstr "" -#: [visio]connection +#: ../cache/locales.php:444 msgid "Connection" msgstr "" -#: [global]no_js +#: ../cache/locales.php:445 ../cache/locales.php:451 +msgid "Hung up" +msgstr "" + +#: ../cache/locales.php:446 ../cache/locales.php:452 +msgid "Your contact is busy" +msgstr "" + +#: ../cache/locales.php:447 ../cache/locales.php:453 +msgid "Declined" +msgstr "" + +#: ../cache/locales.php:448 ../cache/locales.php:454 +msgid "Remote application incompatible" +msgstr "" + +#: ../cache/locales.php:450 ../cache/locales.php:456 +msgid "Is calling you" +msgstr "" + +#: ../cache/locales.php:457 msgid "You don't have javascript enabled. Good luck with that." msgstr "" -#: [global]description -msgid "Movim is a kickass distributed social networking platform that protect your privacy an comes with a set of awesome features." +#: ../cache/locales.php:458 +msgid "" +"Movim is a kickass distributed social networking platform that protect your " +"privacy an comes with a set of awesome features." msgstr "" -#: [page]administration +#: ../cache/locales.php:459 msgid "Administration" msgstr "" -#: [page]home +#: ../cache/locales.php:460 msgid "Home" msgstr "Início" -#: [page]discover +#: ../cache/locales.php:461 msgid "Discover" msgstr "" -#: [page]explore +#: ../cache/locales.php:462 msgid "Explore" msgstr "" -#: [page]account_creation +#: ../cache/locales.php:463 msgid "Account Creation" msgstr "Criar uma Conta" -#: [page]avatar +#: ../cache/locales.php:464 +msgid "News" +msgstr "" + +#: ../cache/locales.php:465 msgid "Avatar" msgstr "Avatar" -#: [page]chats +#: ../cache/locales.php:467 msgid "Chats" msgstr "" -#: [page]server +#: ../cache/locales.php:470 msgid "Server" msgstr "" -#: [page]public_groups +#: ../cache/locales.php:471 msgid "Public Groups" msgstr "" -#: [page]viewer +#: ../cache/locales.php:472 msgid "Viewer" msgstr "" -#: [page]media +#: ../cache/locales.php:474 msgid "Media" msgstr "" -#: [page]blog +#: ../cache/locales.php:475 msgid "Blog" msgstr "" -#: [page]about +#: ../cache/locales.php:476 msgid "About" msgstr "" -#: [page]login +#: ../cache/locales.php:477 msgid "Login" msgstr "" -#: [page]feed +#: ../cache/locales.php:479 msgid "Feed" msgstr "Retorno do contato" -#: [page]gallery +#: ../cache/locales.php:481 msgid "Gallery" msgstr "" -#: [page]visio +#: ../cache/locales.php:483 msgid "Visio-conference" msgstr "" -#: [page]pods +#: ../cache/locales.php:484 msgid "Pods" msgstr "" -#: [page]share +#: ../cache/locales.php:485 msgid "Share" msgstr "" -#: [page]room +#: ../cache/locales.php:486 msgid "Room" msgstr "" -#: [error]error +#: ../cache/locales.php:487 +#, php-format msgid "Error: %s" msgstr "Erro: %s" -#: [error]cannot_load_file +#: ../cache/locales.php:488 +#, php-format msgid "Cannot load file '%s'" msgstr "Não carregou arquivo '%s'" -#: [error]route +#: ../cache/locales.php:489 +#, php-format msgid "Route error, please set all the parameters for the page %s" msgstr "" -#: [error]widget_load_error +#: ../cache/locales.php:490 +#, php-format msgid "Requested widget '%s' doesn't exist." msgstr "" -#: [error]widget_call_error +#: ../cache/locales.php:491 +#, php-format msgid "Requested event '%s' not registered." msgstr "" -#: [error]whoops +#: ../cache/locales.php:492 msgid "Whoops!" msgstr "" -#: [error]media_not_found +#: ../cache/locales.php:493 msgid "It seem that you don't have any pictures here?" msgstr "" -#: [error]media_ask_upload +#: ../cache/locales.php:494 msgid "You can try to upload a couple by going to the Media page" msgstr "" -#: [title]about +#: ../cache/locales.php:495 +#, php-format msgid "%s - About" msgstr "" -#: [title]account +#: ../cache/locales.php:496 +#, php-format msgid "%s - Account" msgstr "" -#: [title]administration +#: ../cache/locales.php:497 +#, php-format msgid "%s - Administration Panel" msgstr "" -#: [title]blog +#: ../cache/locales.php:498 +#, php-format msgid "%s - Blog" msgstr "" -#: [title]configuration +#: ../cache/locales.php:499 +#, php-format msgid "%s - Configuration" msgstr "%s - Configuraçāo" -#: [title]discover +#: ../cache/locales.php:500 +#, php-format msgid "%s - Discover" msgstr "" -#: [title]explore +#: ../cache/locales.php:501 +#, php-format msgid "%s - Explore" msgstr "" -#: [title]help +#: ../cache/locales.php:502 +#, php-format msgid "%s - Help Page" msgstr "%s - Página de ajuda" -#: [title]login +#: ../cache/locales.php:503 +#, php-format msgid "%s - Login to Movim" msgstr "%s - Entrar no Movim" -#: [title]main +#: ../cache/locales.php:504 +#, php-format msgid "%s - Welcome to Movim" msgstr "%s - Bem vindo ao Movim" -#: [title]media +#: ../cache/locales.php:505 +#, php-format msgid "%s - Media" msgstr "" -#: [title]news +#: ../cache/locales.php:506 +#, php-format msgid "%s - News" msgstr "" -#: [title]node_configuration +#: ../cache/locales.php:507 +#, php-format msgid "%s - Group Configuration" msgstr "" -#: [title]node +#: ../cache/locales.php:508 +#, php-format msgid "%s - Group" msgstr "" -#: [title]not_found +#: ../cache/locales.php:509 +#, php-format msgid "%s - 404" msgstr "" -#: [title]profile +#: ../cache/locales.php:510 +#, php-format msgid "%s - Profile" msgstr "%s - Perfil" -#: [title]server +#: ../cache/locales.php:511 +#, php-format msgid "%s - Server" msgstr "" -#: [button]validate +#: ../cache/locales.php:512 msgid "Validate" msgstr "" -#: [button]refresh +#: ../cache/locales.php:513 msgid "Refresh" msgstr "" -#: [button]add +#: ../cache/locales.php:514 msgid "Add" msgstr "Adicionar" -#: [button]delete +#: ../cache/locales.php:515 msgid "Delete" msgstr "" -#: [button]cancel +#: ../cache/locales.php:516 +msgid "Remove" +msgstr "" + +#: ../cache/locales.php:517 msgid "Cancel" msgstr "Cancelar" -#: [button]close +#: ../cache/locales.php:518 msgid "Close" msgstr "" -#: [button]update +#: ../cache/locales.php:519 msgid "Update" msgstr "" -#: [button]updating +#: ../cache/locales.php:520 msgid "Updating" msgstr "" -#: [button]submitting +#: ../cache/locales.php:521 +msgid "Submit" +msgstr "Enviar" + +#: ../cache/locales.php:522 msgid "Submitting" msgstr "Submeter" -#: [button]register +#: ../cache/locales.php:523 +msgid "Reset" +msgstr "Limpar" + +#: ../cache/locales.php:524 msgid "Register" msgstr "" -#: [button]unregister +#: ../cache/locales.php:525 msgid "Unregister" msgstr "" -#: [button]save +#: ../cache/locales.php:526 msgid "Save" msgstr "" -#: [button]clear +#: ../cache/locales.php:527 msgid "Clear" msgstr "" -#: [button]upload +#: ../cache/locales.php:528 msgid "Upload" msgstr "" -#: [button]come_in +#: ../cache/locales.php:529 msgid "Come in!" msgstr "Faça Parte!" -#: [button]connecting +#: ../cache/locales.php:530 msgid "Connecting" msgstr "" -#: [button]bool_yes +#: ../cache/locales.php:531 msgid "Yes" msgstr "Sim" -#: [button]bool_no +#: ../cache/locales.php:532 msgid "No" msgstr "Não" -#: [button]return +#: ../cache/locales.php:534 msgid "Return" msgstr "" -#: [button]accept +#: ../cache/locales.php:535 msgid "Accept" msgstr "Aceitar" -#: [button]refuse +#: ../cache/locales.php:536 msgid "Refuse" msgstr "" -#: [button]next +#: ../cache/locales.php:537 msgid "Next" msgstr "" -#: [button]previous +#: ../cache/locales.php:538 msgid "Previous" msgstr "" -#: [step]step +#: ../cache/locales.php:539 +#, php-format msgid "Step %s" msgstr "" -#: [day]title +#: ../cache/locales.php:542 msgid "Day" msgstr "Dia" -#: [day]monday +#: ../cache/locales.php:543 msgid "Monday" msgstr "Segunda-feira" -#: [day]tuesday +#: ../cache/locales.php:544 msgid "Tuesday" msgstr "Terça-feira" -#: [day]wednesday +#: ../cache/locales.php:545 msgid "Wednesday" msgstr "Quarta-feira" -#: [day]thursday +#: ../cache/locales.php:546 msgid "Thursday" msgstr "Quinta-feira" -#: [day]friday +#: ../cache/locales.php:547 msgid "Friday" msgstr "Sexta-feira" -#: [day]saturday +#: ../cache/locales.php:548 msgid "Saturday" msgstr "Sábado" -#: [day]sunday +#: ../cache/locales.php:549 msgid "Sunday" msgstr "" -#: [gender]nil -#, fuzzy -msgctxt "[gender]nil" +#: ../cache/locales.php:550 ../cache/locales.php:559 msgid "None" msgstr "Nenhum" -#: [gender]male +#: ../cache/locales.php:551 msgid "Male" msgstr "Masculino" -#: [gender]female +#: ../cache/locales.php:552 msgid "Female" msgstr "Feminino" -#: [gender]other +#: ../cache/locales.php:553 msgid "Other" msgstr "Outro" -#: [client]bot +#: ../cache/locales.php:554 msgid "Bot" msgstr "Bot" -#: [client]desktop +#: ../cache/locales.php:555 msgid "Desktop" msgstr "Ambiente de trabalho" -#: [client]phone +#: ../cache/locales.php:556 msgid "Phone" msgstr "Telefone" -#: [client]web +#: ../cache/locales.php:557 msgid "Web" msgstr "" -#: [client]registered +#: ../cache/locales.php:558 msgid "Registered" msgstr "" -#: [marital]nil -#, fuzzy -msgctxt "[marital]nil" -msgid "None" -msgstr "Nenhum" - -#: [marital]single +#: ../cache/locales.php:560 msgid "Single" msgstr "Solteiro(a)" -#: [marital]relationship +#: ../cache/locales.php:561 msgid "In a relationship" msgstr "Em um relacionamento" -#: [marital]married +#: ../cache/locales.php:562 msgid "Married" msgstr "Casado(a)" -#: [marital]divorced +#: ../cache/locales.php:563 msgid "Divorced" msgstr "Divorciado(a)" -#: [marital]widowed +#: ../cache/locales.php:564 msgid "Widowed" msgstr "Viúvo(a)" -#: [marital]cohabiting +#: ../cache/locales.php:565 msgid "Cohabiting" msgstr "Morando junto" -#: [marital]union +#: ../cache/locales.php:566 msgid "Civil Union" msgstr "União Civil" -#: [flag]white +#: ../cache/locales.php:567 msgid "Not shared" msgstr "" -#: [flag]green +#: ../cache/locales.php:568 msgid "Shared with one contact" msgstr "" -#: [flag]orange +#: ../cache/locales.php:569 msgid "Shared with all contacts" msgstr "" -#: [flag]red +#: ../cache/locales.php:570 msgid "Shared with the XMPP network" msgstr "" -#: [flag]black +#: ../cache/locales.php:571 msgid "Shared with the whole Internet" msgstr "" -#: [presence]online +#: ../cache/locales.php:572 msgid "Online" msgstr "Online" -#: [presence]away +#: ../cache/locales.php:573 msgid "Away" msgstr "Ausente" -#: [presence]dnd +#: ../cache/locales.php:574 msgid "Do Not Disturb" msgstr "Não Perturbe" -#: [presence]xa +#: ../cache/locales.php:575 msgid "Extended Away" msgstr "Ausência Prolongada" -#: [presence]offline +#: ../cache/locales.php:576 msgid "Offline" msgstr "Indisponível" -#: [presence]error +#: ../cache/locales.php:577 msgid "Error" msgstr "" -#: [mood]afraid +#: ../cache/locales.php:578 msgid "afraid" msgstr "" -#: [mood]amazed +#: ../cache/locales.php:579 msgid "amazed" msgstr "" -#: [mood]amorous +#: ../cache/locales.php:580 msgid "amorous" msgstr "" -#: [mood]angry +#: ../cache/locales.php:581 msgid "angry" msgstr "zangado" -#: [mood]annoyed +#: ../cache/locales.php:582 msgid "annoyed" msgstr "" -#: [mood]anxious +#: ../cache/locales.php:583 msgid "anxious" msgstr "" -#: [mood]aroused +#: ../cache/locales.php:584 msgid "aroused" msgstr "" -#: [mood]ashamed +#: ../cache/locales.php:585 msgid "ashamed" msgstr "" -#: [mood]bored +#: ../cache/locales.php:586 msgid "bored" msgstr "" -#: [mood]brave +#: ../cache/locales.php:587 msgid "brave" msgstr "" -#: [mood]calm +#: ../cache/locales.php:588 msgid "calm" msgstr "" -#: [mood]cautious +#: ../cache/locales.php:589 msgid "cautious" msgstr "" -#: [mood]cold +#: ../cache/locales.php:590 msgid "cold" msgstr "" -#: [mood]confident +#: ../cache/locales.php:591 msgid "confident" msgstr "" -#: [mood]confused +#: ../cache/locales.php:592 msgid "confused" msgstr "" -#: [mood]contemplative +#: ../cache/locales.php:593 msgid "contemplative" msgstr "" -#: [mood]contented +#: ../cache/locales.php:594 msgid "contented" msgstr "" -#: [mood]cranky +#: ../cache/locales.php:595 msgid "cranky" msgstr "" -#: [mood]crazy +#: ../cache/locales.php:596 msgid "crazy" msgstr "" -#: [mood]creative +#: ../cache/locales.php:597 msgid "creative" msgstr "" -#: [mood]curious +#: ../cache/locales.php:598 msgid "curious" msgstr "" -#: [mood]dejected +#: ../cache/locales.php:599 msgid "dejected" msgstr "" -#: [mood]depressed +#: ../cache/locales.php:600 msgid "depressed" msgstr "" -#: [mood]disappointed +#: ../cache/locales.php:601 msgid "disappointed" msgstr "" -#: [mood]disgusted +#: ../cache/locales.php:602 msgid "disgusted" msgstr "" -#: [mood]dismayed +#: ../cache/locales.php:603 msgid "dismayed" msgstr "" -#: [mood]distracted +#: ../cache/locales.php:604 msgid "distracted" msgstr "" -#: [mood]embarrassed +#: ../cache/locales.php:605 msgid "embarrassed" msgstr "" -#: [mood]envious +#: ../cache/locales.php:606 msgid "envious" msgstr "" -#: [mood]excited +#: ../cache/locales.php:607 msgid "excited" msgstr "" -#: [mood]flirtatious +#: ../cache/locales.php:608 msgid "flirtatious" msgstr "" -#: [mood]frustated +#: ../cache/locales.php:609 msgid "frustated" msgstr "" -#: [mood]grateful +#: ../cache/locales.php:610 msgid "grateful" msgstr "" -#: [mood]grieving +#: ../cache/locales.php:611 msgid "grieving" msgstr "" -#: [mood]grumpy +#: ../cache/locales.php:612 msgid "grumpy" msgstr "" -#: [mood]guilty +#: ../cache/locales.php:613 msgid "guilty" msgstr "" -#: [mood]happy +#: ../cache/locales.php:614 msgid "happy" msgstr "" -#: [mood]hopeful +#: ../cache/locales.php:615 msgid "hopeful" msgstr "" -#: [mood]hot +#: ../cache/locales.php:616 msgid "hot" msgstr "" -#: [mood]humbled +#: ../cache/locales.php:617 msgid "humbled" msgstr "" -#: [mood]humiliated +#: ../cache/locales.php:618 msgid "humiliated" msgstr "" -#: [mood]hungry +#: ../cache/locales.php:619 msgid "hungry" msgstr "" -#: [mood]hurt +#: ../cache/locales.php:620 msgid "hurt" msgstr "" -#: [mood]impressed +#: ../cache/locales.php:621 msgid "impressed" msgstr "" -#: [mood]in_awe +#: ../cache/locales.php:622 msgid "in awe" msgstr "" -#: [mood]in_love +#: ../cache/locales.php:623 msgid "in love" msgstr "" -#: [mood]indignant +#: ../cache/locales.php:624 msgid "indignant" msgstr "" -#: [mood]interested +#: ../cache/locales.php:625 msgid "interested" msgstr "" -#: [mood]intoxicated +#: ../cache/locales.php:626 msgid "intoxicated" msgstr "" -#: [mood]invincible +#: ../cache/locales.php:627 msgid "invincible" msgstr "" -#: [mood]jealous +#: ../cache/locales.php:628 msgid "jealous" msgstr "" -#: [mood]lonely +#: ../cache/locales.php:629 msgid "lonely" msgstr "" -#: [mood]lost +#: ../cache/locales.php:630 msgid "lost" msgstr "" -#: [mood]lucky +#: ../cache/locales.php:631 msgid "lucky" msgstr "" -#: [mood]mean +#: ../cache/locales.php:632 msgid "mean" msgstr "" -#: [mood]moody +#: ../cache/locales.php:633 msgid "moody" msgstr "" -#: [mood]nervous +#: ../cache/locales.php:634 msgid "nervous" msgstr "" -#: [mood]neutral +#: ../cache/locales.php:635 msgid "neutral" msgstr "" -#: [mood]offended +#: ../cache/locales.php:636 msgid "offended" msgstr "" -#: [mood]outraged +#: ../cache/locales.php:637 msgid "outraged" msgstr "" -#: [mood]playful +#: ../cache/locales.php:638 msgid "playful" msgstr "" -#: [mood]proud +#: ../cache/locales.php:639 msgid "proud" msgstr "" -#: [mood]relaxed +#: ../cache/locales.php:640 msgid "relaxed" msgstr "" -#: [mood]relieved +#: ../cache/locales.php:641 msgid "relieved" msgstr "" -#: [mood]restless +#: ../cache/locales.php:642 +msgid "remorseful" +msgstr "" + +#: ../cache/locales.php:643 msgid "restless" msgstr "" -#: [mood]sad +#: ../cache/locales.php:644 msgid "sad" msgstr "" -#: [mood]sarcastic +#: ../cache/locales.php:645 msgid "sarcastic" msgstr "" -#: [mood]satisfied +#: ../cache/locales.php:646 msgid "satisfied" msgstr "" -#: [mood]serious +#: ../cache/locales.php:647 msgid "serious" msgstr "" -#: [mood]shocked +#: ../cache/locales.php:648 msgid "shocked" msgstr "" -#: [mood]shy +#: ../cache/locales.php:649 msgid "shy" msgstr "" -#: [mood]sick +#: ../cache/locales.php:650 msgid "sick" msgstr "" -#: [mood]sleepy +#: ../cache/locales.php:651 msgid "sleepy" msgstr "" -#: [mood]spontaneous +#: ../cache/locales.php:652 msgid "spontaneous" msgstr "" -#: [mood]stressed +#: ../cache/locales.php:653 msgid "stressed" msgstr "" -#: [mood]strong +#: ../cache/locales.php:654 msgid "strong" msgstr "" -#: [mood]surprised +#: ../cache/locales.php:655 msgid "surprised" msgstr "" -#: [mood]thankful +#: ../cache/locales.php:656 msgid "thankful" msgstr "" -#: [mood]thirsty +#: ../cache/locales.php:657 msgid "thirsty" msgstr "" -#: [mood]tired +#: ../cache/locales.php:658 msgid "tired" msgstr "" -#: [mood]undefined +#: ../cache/locales.php:659 msgid "undefined" msgstr "" -#: [mood]weak +#: ../cache/locales.php:660 msgid "weak" msgstr "" -#: [mood]worried +#: ../cache/locales.php:661 msgid "worried" msgstr "" -#: [month]title +#: ../cache/locales.php:662 msgid "Month" msgstr "Mês" -#: [month]january +#: ../cache/locales.php:663 msgid "January" msgstr "Janeiro" -#: [month]february +#: ../cache/locales.php:664 msgid "February" msgstr "Fevereiro" -#: [month]march +#: ../cache/locales.php:665 msgid "March" msgstr "Março" -#: [month]april +#: ../cache/locales.php:666 msgid "April" msgstr "Abril" -#: [month]may +#: ../cache/locales.php:667 msgid "May" msgstr "Maio" -#: [month]june +#: ../cache/locales.php:668 msgid "June" msgstr "Junho" -#: [month]july +#: ../cache/locales.php:669 msgid "July" msgstr "Julho" -#: [month]august +#: ../cache/locales.php:670 msgid "August" msgstr "Agosto" -#: [month]september +#: ../cache/locales.php:671 msgid "September" msgstr "Setembro" -#: [month]october +#: ../cache/locales.php:672 msgid "October" msgstr "Outubro" -#: [month]november +#: ../cache/locales.php:673 msgid "November" msgstr "Novembro" -#: [month]december +#: ../cache/locales.php:674 msgid "December" msgstr "Dezembro" -#: [year]title +#: ../cache/locales.php:675 msgid "Year" msgstr "Ano" -#: [date]today +#: ../cache/locales.php:676 msgid "Today" msgstr "Hoje" -#: [date]tomorrow +#: ../cache/locales.php:677 msgid "Tomorrow" msgstr "Amanhã" -#: [date]yesterday +#: ../cache/locales.php:678 msgid "Yesterday" msgstr "Ontem" -#: [date]ago -#, fuzzy -msgid "%d days ago" +#: ../cache/locales.php:679 +#, php-format +msgid " %d days ago" msgstr " %d dias atrás" -#: [date]day +#: ../cache/locales.php:680 msgid "day" msgstr "Dia" -#: [post]whats_new +#: ../cache/locales.php:682 msgid "What's new ?" msgstr "" -#: [post]place +#: ../cache/locales.php:683 msgid "Place" msgstr "" -#: [post]by +#: ../cache/locales.php:684 msgid "by" msgstr "" -#: [post]geolocalisation +#: ../cache/locales.php:685 msgid "Geolocalisation" msgstr "" -#: [post]email +#: ../cache/locales.php:686 msgid "email" msgstr "" -#: [post]no_comments +#: ../cache/locales.php:688 msgid "No comments yet" msgstr "" -#: [post]no_comments_stream +#: ../cache/locales.php:689 msgid "No comments stream" msgstr "" -#: [post]no_load +#: ../cache/locales.php:690 msgid "Your feed cannot be loaded." msgstr "Sua feed não pode ser carregado." -#: [post]older +#: ../cache/locales.php:691 msgid "Get older posts" msgstr "Obter postagens mais antigas" -#: [post]new_items +#: ../cache/locales.php:692 +#, php-format msgid "%s new items" msgstr "" -#: [post]comment_error +#: ../cache/locales.php:693 msgid "Comment publication error" msgstr "" -#: [post]comments_older +#: ../cache/locales.php:694 msgid "Show the older comments" msgstr "" -#: [post]comments_loading -#, fuzzy -msgid "Loading comments..." -msgstr "Carregando seu feed ..." +#: ../cache/locales.php:695 +msgid "Loading comments ..." +msgstr "" -#: [post]comments_get +#: ../cache/locales.php:696 msgid "Get the comments" msgstr "" -#: [post]comment_add +#: ../cache/locales.php:697 msgid "Add a comment" msgstr "" -#: [post]share +#: ../cache/locales.php:698 msgid "Share with" msgstr "" -#: [post]share_everyone +#: ../cache/locales.php:699 msgid "Everyone" msgstr "" -#: [post]share_your_contacts +#: ../cache/locales.php:700 msgid "Your contacts" msgstr "" -#: [post]updated +#: ../cache/locales.php:702 msgid "Updated" msgstr "" -#: [post]content_not_found +#: ../cache/locales.php:703 msgid "Content not found" msgstr "" -#: [post]default_title +#: ../cache/locales.php:704 msgid "Contact publication" msgstr "" -#: [post]comments +#: ../cache/locales.php:705 msgid "Comments" msgstr "" -#: [api]error +#: ../cache/locales.php:706 msgid "The API is not reachable, try again later" msgstr "" -#: [field]type_here +#: ../cache/locales.php:707 msgid "Type here" msgstr "" #~ msgid "PHP version mismatch. Movim requires PHP 5.3 minimum." #~ msgstr "Versão errada do PHP. O Movim requer no mínimo PHP 5.3." +#, php-format #~ msgid "Movim requires the %s extension." #~ msgstr "Movim requer a extensão %s." @@ -2726,17 +2598,23 @@ msgstr "" #~ msgid "Movim Installer" #~ msgstr "Instalar Movim" +#, php-format #~ msgid "Couldn't create directory '%s'." #~ msgstr "Não foi possível criar o diretório '%s'." +#, php-format #~ msgid "Couldn't create configuration file '%s'." #~ msgstr "Não foi possível criar o arquivo de configuração '%s'." #~ msgid "Compatibility Test" #~ msgstr "Teste de compatibilidade" -#~ msgid "The following requirements were not met. Please make sure they are all satisfied in order to install Movim." -#~ msgstr "Os seguintes requisitos não foram encontrados. Por favor, tenha certeza de que todos estão satisfeitos para que a instalação prossiga." +#~ msgid "" +#~ "The following requirements were not met. Please make sure they are all " +#~ "satisfied in order to install Movim." +#~ msgstr "" +#~ "Os seguintes requisitos não foram encontrados. Por favor, tenha certeza de " +#~ "que todos estão satisfeitos para que a instalação prossiga." #~ msgid "User not logged in." #~ msgstr "Usuário não logado." @@ -2744,15 +2622,21 @@ msgstr "" #~ msgid "JID not provided." #~ msgstr "JID não disponível." +#, php-format #~ msgid "jid '%s' is incorrect" #~ msgstr "O jid '%s' está incorreto" +#, php-format #~ msgid "Cannot open log file '%s'" #~ msgstr "Não foi possível abrir o arquivo de log '%s'." +#, php-format #~ msgid "%s - Account Creation" #~ msgstr "%s - Criação da conta" +#~ msgid "Remove this contact" +#~ msgstr "Remover este contato" + #~ msgid "Debug console" #~ msgstr "Console de debug" @@ -2768,6 +2652,7 @@ msgstr "" #~ msgid "Loading the contact feed ..." #~ msgstr "Carregando retorno do contacto" +#, php-format #~ msgid "Install the %s package" #~ msgstr "Instalar o pacote %s" @@ -2777,11 +2662,16 @@ msgstr "" #~ msgid "Actual version : " #~ msgstr "Versão atual: " +#, php-format #~ msgid "Install %s and %s packages" #~ msgstr "Instalar %s e pacotes %s" #~ msgid "Update your PHP version or contact your server administrator" -#~ msgstr "Atualize a sua versão do PHP ou contate seu administrador do servidor" +#~ msgstr "" +#~ "Atualize a sua versão do PHP ou contate seu administrador do servidor" + +#~ msgid "Enable read and write rights on Movim's root folder" +#~ msgstr "Habilitar permissões de leitura e escrita na pasta raiz do Movim" #~ msgid "Thank you for downloading Movim!" #~ msgstr "Obrigado por baixar o Movim!" @@ -2795,11 +2685,18 @@ msgstr "" #~ msgid "empty" #~ msgstr "vazio" -#~ msgid "Some errors were detected. Please correct them for the installation to proceed." -#~ msgstr "Alguns erros foram detectados. Por favor, corrija-os para prosseguir com a instalação." +#~ msgid "" +#~ "Some errors were detected. Please correct them for the installation to " +#~ "proceed." +#~ msgstr "" +#~ "Alguns erros foram detectados. Por favor, corrija-os para prosseguir com a " +#~ "instalação." -#~ msgid "Before you enjoy your social network, a few adjustements are required." -#~ msgstr "Antes de você aproveitar nossa rede social, uns poucos ajustes devem ser feitos." +#~ msgid "" +#~ "Before you enjoy your social network, a few adjustements are required." +#~ msgstr "" +#~ "Antes de você aproveitar nossa rede social, uns poucos ajustes devem ser " +#~ "feitos." #~ msgid "BOSH Connection Preferences" #~ msgstr "Preferências da conexão BOSH" @@ -2807,6 +2704,7 @@ msgstr "" #~ msgid "Proxy Preferences" #~ msgstr "Preferências do proxy" +#, php-format #~ msgid "Please remove the %s folder in order to complete the installation" #~ msgstr "Por favor, remova a pasta %s para completar a instalação" @@ -2816,6 +2714,9 @@ msgstr "" #~ msgid "Database Movim schema installed" #~ msgstr "Banco de dados Movim instalado" +#~ msgid "Database Detected" +#~ msgstr "Banco de dados detectado" + #~ msgid "Valid Bosh" #~ msgstr "Bosh válido" @@ -2838,7 +2739,8 @@ msgstr "" #~ msgstr "Tenha certeza que sua senha é segura:" #~ msgid "A capital letter, a digit and a special character are recommended" -#~ msgstr "Recomenda-se o uso de uma letra maiúscula, um número e um caracter especial" +#~ msgstr "" +#~ "Recomenda-se o uso de uma letra maiúscula, um número e um caracter especial" #~ msgid "8 characters" #~ msgstr "8 caracteres" @@ -2879,23 +2781,39 @@ msgstr "" #~ msgid "My Posts" #~ msgstr "Minhas Postagens" +#, php-format #~ msgid "%s - Add An Account" #~ msgstr "%s - Adicionar Uma Conta" #~ msgid "Could not connect to the XMPP server" #~ msgstr "Não foi possível conectar ao servidor XMPP" -#~ msgid "Go to the %s to the Frequently Asked Questions %s or come ask your question on the official chatroom %s or via our mailing-list (%s see the dedicated page %s)." -#~ msgstr "Vá para %s Perguntas Frequentes (FAQ) %s ou faça sua pergunta na sala de chat oficial %s ou via nossa lista de email (%s veja a página específica %s)." +#, php-format +#~ msgid "" +#~ "Go to the %s to the Frequently Asked Questions %s or come ask your question " +#~ "on the official chatroom %s or via our mailing-list (%s see the dedicated " +#~ "page %s)." +#~ msgstr "" +#~ "Vá para %s Perguntas Frequentes (FAQ) %s ou faça sua pergunta na sala de " +#~ "chat oficial %s ou via nossa lista de email (%s veja a página específica %s)." -#~ msgid "Don't forget that Movim is an open source project, a helping hand is always welcome (see %s Can I participate %s)" -#~ msgstr "Não se esqueça que Movim é um projeto de código aberto (open source), qualquer ajuda é sempre bemvinda (veja %s Como posso participar %s)" +#, php-format +#~ msgid "" +#~ "Don't forget that Movim is an open source project, a helping hand is always " +#~ "welcome (see %s Can I participate %s)" +#~ msgstr "" +#~ "Não se esqueça que Movim é um projeto de código aberto (open source), " +#~ "qualquer ajuda é sempre bemvinda (veja %s Como posso participar %s)" #~ msgid "I can't find the answer to my question here" #~ msgstr "Não consigo encontrar a resposta para a minha pergunta aqui" -#~ msgid "Some features are missing/I can't do everything I used to do on other social networks" -#~ msgstr "Alguns recursos estão faltando/Eu não posso fazer nada do que eu costumava fazer em outras redes sociais" +#~ msgid "" +#~ "Some features are missing/I can't do everything I used to do on other social " +#~ "networks" +#~ msgstr "" +#~ "Alguns recursos estão faltando/Eu não posso fazer nada do que eu costumava " +#~ "fazer em outras redes sociais" #~ msgid "The current BOSH URL in invalid" #~ msgstr "A URL BOSH atual não é válida." @@ -2903,6 +2821,10 @@ msgstr "" #~ msgid "No profile yet ?" #~ msgstr "Sem perfil ainda?" +#, php-format +#~ msgid "Contacts (%s)" +#~ msgstr "Contatos (%s)" + #~ msgid "Edit my Profile" #~ msgstr "Editar meu Perfil" @@ -2924,44 +2846,81 @@ msgstr "" #~ msgid "terse" #~ msgstr "terso" -#~ msgid "Keep in mind that Movim is still under development and will handle many personal details. Its use can potentially endanger your data. Always pay attention to information that you submit." -#~ msgstr "Tenha em mente que Movim ainda está em desenvolvimento e irá lidar com muitos detalhes pessoais. Seu uso pode eventualmente comprometer seus dados. Sempre preste atenção às informações que você envia." +#~ msgid "" +#~ "Keep in mind that Movim is still under development and will handle many " +#~ "personal details. Its use can potentially endanger your data. Always pay " +#~ "attention to information that you submit." +#~ msgstr "" +#~ "Tenha em mente que Movim ainda está em desenvolvimento e irá lidar com " +#~ "muitos detalhes pessoais. Seu uso pode eventualmente comprometer seus dados. " +#~ "Sempre preste atenção às informações que você envia." +#, php-format #~ msgid "You can now access your shiny Movim instance %sJump In !%s" #~ msgstr "Agora você pode acessar Ir seu exemplo brilhante Movim %s em ! %s" -#~ msgid "Firstly fill in this blank with a brand new account ID, this address will follow you on all the Movim network !" -#~ msgstr "Em primeiro lugar preencher este vazio com uma ID de conta nova, este endereço vai segui-lo em todos os Movim rede!" +#~ msgid "" +#~ "Firstly fill in this blank with a brand new account ID, this address will " +#~ "follow you on all the Movim network !" +#~ msgstr "" +#~ "Em primeiro lugar preencher este vazio com uma ID de conta nova, este " +#~ "endereço vai segui-lo em todos os Movim rede!" -#~ msgid "Your server doesn't support post publication, you can only read contact's feeds" -#~ msgstr "Seu servidor não suporta a publicação post, você só pode ler feeds contato" +#~ msgid "Loading your feed ..." +#~ msgstr "Carregando seu feed ..." + +#~ msgid "" +#~ "Your server doesn't support post publication, you can only read contact's " +#~ "feeds" +#~ msgstr "" +#~ "Seu servidor não suporta a publicação post, você só pode ler feeds contato" #~ msgid "Link my current account" #~ msgstr "Vincular a minha conta corrente" -#~ msgid "Visit the page %s What is Movim ? %s to know more about the project, its aims and understand how it works." -#~ msgstr "Visite a página %s ¿ Que é Movim ? %s para saber mais sobre o projeto, seus objetivos e compreender como ele funciona." +#, php-format +#~ msgid "" +#~ "Visit the page %s What is Movim ? %s to know more about the project, its " +#~ "aims and understand how it works." +#~ msgstr "" +#~ "Visite a página %s ¿ Que é Movim ? %s para saber mais sobre o projeto, seus " +#~ "objetivos e compreender como ele funciona." -#~ msgid "Although Movim is evolving fast, many (many) features are missing. Be patient ;). You can have a look %s at next versions's roadmaps %s to know if the one you want is on its way." -#~ msgstr "Embora Movim está evoluindo rápido, muitos (muitos) recursos estão faltando. Seja paciente ;). Você pode ter um %s olhada roteiros próximas versões das %s para saber se o que você quer é o seu caminho." +#, php-format +#~ msgid "" +#~ "Although Movim is evolving fast, many (many) features are missing. Be " +#~ "patient ;). You can have a look %s at next versions's roadmaps %s to know if " +#~ "the one you want is on its way." +#~ msgstr "" +#~ "Embora Movim está evoluindo rápido, muitos (muitos) recursos estão faltando. " +#~ "Seja paciente ;). Você pode ter um %s olhada roteiros próximas versões das " +#~ "%s para saber se o que você quer é o seu caminho." +#, php-format #~ msgid "Cannot load element value '%s'" #~ msgstr "Não foi possível carregar o valor do elemento '%s'" #~ msgid "What is Movim?" #~ msgstr "O que é o Movim?" +#, php-format #~ msgid "Bosh connection failed with error '%s'" #~ msgstr "A conexão Bosh falhou com erro '%s'" #~ msgid "Send request" #~ msgstr "Enviar pedido" +#, php-format #~ msgid "XMPP connection through Bosh failed with error '%s'" #~ msgstr "A conexão XMPP através do Bosh falhou com erro '%s'" +#, php-format +#~ msgid "This server hosts %s accounts" +#~ msgstr "Este servidor hospeda %s contas" + #~ msgid "Invite this user" #~ msgstr "Convidar este usuário" +#, php-format #~ msgid "Database connection failed with error '%s'" #~ msgstr "A conexão com o banco de dados falhou com erro '%s'" diff --git a/sources/locales/ro.po b/sources/locales/ro.po index 769f603..2df6175 100644 --- a/sources/locales/ro.po +++ b/sources/locales/ro.po @@ -1,2712 +1,2590 @@ # Romanian translations for Movim package. # This file is distributed under the same license as the Movim package. # This file was translated from CodingTeam at . -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/About/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Account/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/AccountNext/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/AdHoc/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/AdminDB/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/AdminMain/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/AdminTest/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Api/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Avatar/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Blog/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Bookmark/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Chat/locales.ini -#. #-#-#-#-# 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 -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Group/locales.ini -#. #-#-#-#-# 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 -#. #-#-#-#-# 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 -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Presence/locales.ini -#. #-#-#-#-# 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 -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Share/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Statistics/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Subscribe/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Syndication/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Upload/locales.ini -#. #-#-#-#-# 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-08-20 15:17+0200\n" +"POT-Creation-Date: 2015-06-08 22:06+0200\n" "PO-Revision-Date: 2011-10-26 21:35+0000\n" "Last-Translator: edhelas \n" "Language-Team: LANGUAGE \n" -"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2015-06-18 21:08+0000\n" "X-Generator: Launchpad (build 17570)\n" -#: [about]thanks +#: ../cache/locales.php:2 msgid "Thanks" msgstr "" -#: [about]developers +#: ../cache/locales.php:3 msgid "Developers" msgstr "" -#: [about]translators +#: ../cache/locales.php:4 msgid "Translators" msgstr "" -#: [about]software +#: ../cache/locales.php:5 msgid "Software" msgstr "" -#: [about]resources +#: ../cache/locales.php:6 msgid "Resources" msgstr "" -#: [about]api [schema]api [api]title +#: ../cache/locales.php:7 ../cache/locales.php:83 ../cache/locales.php:85 msgid "API" msgstr "" -#: [about]info -msgid "Movim is an XMPP-based communication platform. All the project, except the following software and resources, is under" +#: ../cache/locales.php:8 +msgid "" +"Movim is an XMPP-based communication platform. All the project, except the " +"following software and resources, is under" msgstr "" -#: [account]title +#: ../cache/locales.php:9 msgid "Account" msgstr "" -#: [account]password_change_title -#, fuzzy -msgid "Change my password" -msgstr "Parola gresita" - -#: [account]password [db]password [credentials]password [form]password -#: [input]password -msgid "Password" -msgstr "Parola" - -#: [account]password_confirmation -#, fuzzy -msgid "Password confirmation" -msgstr "%s - Configurare" - -#: [account]password_changed +#: ../cache/locales.php:10 msgid "The password has been updated" msgstr "" -#: [account]password_not_valid +#: ../cache/locales.php:11 msgid "Please provide a valid password (6 characters minimum)" msgstr "" -#: [account]password_not_same +#: ../cache/locales.php:12 msgid "The provided passwords are not the same" msgstr "" -#: [account]delete_title +#: ../cache/locales.php:13 msgid "Delete my account" msgstr "" -#: [account]delete -msgid "Delete your account" +#: ../cache/locales.php:14 +msgid "" +"You will delete your XMPP account and all the relative information linked to " +"it (profile, contacts and publications)." msgstr "" -#: [account]delete_text -msgid "You will delete your XMPP account and all the relative information linked to it (profile, contacts and publications)." -msgstr "" - -#: [account]delete_text_confirm +#: ../cache/locales.php:15 msgid "Are you sure that you want to delete it ?" msgstr "" -#: [account]gateway_title -msgid "Gateway" -msgstr "" - -#: [create]title [subscribe]title +#: ../cache/locales.php:16 ../cache/locales.php:411 msgid "Create a new account" msgstr "" -#: [create]notfound +#: ../cache/locales.php:17 msgid "No account creation form found on the server" msgstr "" -#: [create]server_on +#: ../cache/locales.php:18 ../cache/locales.php:172 msgid "on" msgstr "" -#: [create]successfull +#: ../cache/locales.php:19 msgid "Your acccount has been successfully registered" msgstr "" -#: [create]loading +#: ../cache/locales.php:20 msgid "Loading" msgstr "" -#: [error]not_acceptable +#: ../cache/locales.php:21 msgid "Not Acceptable" msgstr "" -#: [error]service_unavailable +#: ../cache/locales.php:22 msgid "The registration system of this server is currently unavailable" msgstr "" -#: [oob]about -msgid "This server use an external system for the registration, please click on the following URL." +#: ../cache/locales.php:23 +msgid "" +"This server use an external system for the registration, please click on the " +"following URL." msgstr "" -#: [adhoc]title +#: ../cache/locales.php:24 msgid "Actions" msgstr "" -#: [db]legend [schema]database +#: ../cache/locales.php:25 ../cache/locales.php:82 msgid "Database" msgstr "" -#: [db]connect_error +#: ../cache/locales.php:26 msgid "Modl wasn't able to connect to the database" msgstr "" -#: [db]connect_success +#: ../cache/locales.php:27 msgid "Movim is connected to the database" msgstr "" -#: [db]update +#: ../cache/locales.php:28 msgid "The database need to be updated" msgstr "" -#: [db]up_to_date +#: ../cache/locales.php:29 msgid "Movim database is up to date" msgstr "" -#: [db]type +#: ../cache/locales.php:30 msgid "Database Type" msgstr "" -#: [db]username [credentials]username [input]username +#: ../cache/locales.php:31 ../cache/locales.php:50 ../cache/locales.php:540 msgid "Username" msgstr "" -#: [db]host +#: ../cache/locales.php:32 ../cache/locales.php:51 ../cache/locales.php:282 +#: ../cache/locales.php:541 +msgid "Password" +msgstr "Parola" + +#: ../cache/locales.php:33 msgid "Host" msgstr "" -#: [db]port +#: ../cache/locales.php:34 msgid "Port" msgstr "" -#: [db]name -msgid "Database sName" +#: ../cache/locales.php:35 +msgid "Database Name" msgstr "" -#: [admin]general +#: ../cache/locales.php:36 msgid "General Settings" msgstr "" -#: [general]theme +#: ../cache/locales.php:37 msgid "Theme" msgstr "" -#: [general]language +#: ../cache/locales.php:38 msgid "Default language" msgstr "" -#: [general]log_verbosity +#: ../cache/locales.php:39 +msgid "Environment" +msgstr "" + +#: ../cache/locales.php:40 msgid "Log verbosity" msgstr "" -#: [general]timezone +#: ../cache/locales.php:41 msgid "Server Timezone" msgstr "" -#: [general]limit +#: ../cache/locales.php:42 msgid "User folder size limit (in bytes)" msgstr "" -#: [websocket]title +#: ../cache/locales.php:43 msgid "WebSocket Configuration" msgstr "" -#: [websocket]info +#: ../cache/locales.php:44 msgid "Enter here a valid WebSocket URI in the form" msgstr "" -#: [websocket]label +#: ../cache/locales.php:45 msgid "WebSocket URI" msgstr "" -#: [websocket]save_info -msgid "If you change the URI, please restart the daemon to reload the configuration" +#: ../cache/locales.php:46 +msgid "" +"If you change the URI, please restart the daemon to reload the configuration" msgstr "" -#: [websocket]publics +#: ../cache/locales.php:47 msgid "Public WebSockets" msgstr "" -#: [credentials]title +#: ../cache/locales.php:48 msgid "Administration Credential" msgstr "" -#: [credentials]info +#: ../cache/locales.php:49 msgid "Change the default credentials admin/password" msgstr "" -#: [credentials]re_password +#: ../cache/locales.php:52 msgid "Retype password" msgstr "" -#: [whitelist]title +#: ../cache/locales.php:53 msgid "Whitelist - XMPP Server" msgstr "" -#: [whitelist]info1 -msgid "If you want to specify a list of authorized XMPP servers on your Movim pod and forbid the connection on all the others please put their domain name here, with comma (ex: movim.eu,jabber.fr)" +#: ../cache/locales.php:54 +msgid "" +"If you want to specify a list of authorized XMPP servers on your Movim pod " +"and forbid the connection on all the others please put their domain name " +"here, with comma (ex: movim.eu,jabber.fr)" msgstr "" -#: [whitelist]info2 -msgid "Leave this field blank if you allow the access to all the XMPP accounts." +#: ../cache/locales.php:55 +msgid "" +"Leave this field blank if you allow the access to all the XMPP accounts." msgstr "" -#: [whitelist]label +#: ../cache/locales.php:56 msgid "List of whitelisted XMPP servers" msgstr "" -#: [information]title -#, fuzzy -msgctxt "[information]title" +#: ../cache/locales.php:57 ../cache/locales.php:61 msgid "Information Message" -msgstr "Informatii generale" +msgstr "" -#: [information]description +#: ../cache/locales.php:58 msgid "Description" msgstr "" -#: [information]info1 +#: ../cache/locales.php:59 msgid "This message will be displayed on the login page" msgstr "" -#: [information]info2 -msgid "Leave this field blank if you dont want to show any message." +#: ../cache/locales.php:60 +msgid "Leave this field blank if you don't want to show any message." msgstr "" -#: [information]label -#, fuzzy -msgctxt "[information]label" -msgid "Information Message" -msgstr "Informatii generale" - -#: [log]empty +#: ../cache/locales.php:62 msgid "Empty" msgstr "" -#: [log]syslog +#: ../cache/locales.php:63 msgid "Syslog" msgstr "" -#: [log]syslog_files +#: ../cache/locales.php:64 msgid "Syslog and files" msgstr "" -#: [rewrite]title +#: ../cache/locales.php:65 msgid "URL Rewriting" msgstr "" -#: [rewrite]info +#: ../cache/locales.php:66 msgid "The URL Rewriting can be enabled" msgstr "" -#: [admin]compatibility +#: ../cache/locales.php:67 msgid "General Overview" msgstr "" -#: [compatibility]info -msgid "Movim has found some issues or things that need to be fixed or improved" +#: ../cache/locales.php:68 +msgid "" +"Movim has found some issues or things that need to be fixed or improved" msgstr "" -#: [compatibility]php1 +#: ../cache/locales.php:69 +#, php-format msgid "Update your PHP-Version: %s" msgstr "" -#: [compatibility]php2 +#: ../cache/locales.php:70 msgid "Required: 5.3.0" msgstr "" -#: [compatibility]curl +#: ../cache/locales.php:71 msgid "Install the php5-curl library" msgstr "" -#: [compatibility]imagick +#: ../cache/locales.php:72 msgid "Install the php5-imagick library" msgstr "" -#: [compatibility]gd +#: ../cache/locales.php:73 msgid "Install the php5-gd library" msgstr "" -#: [compatibility]rights -msgid "Read and write rights for the webserver in Movims root directory" +#: ../cache/locales.php:74 +msgid "Read and write rights for the webserver in Movim's root directory" msgstr "" -#: [compatibility]rewrite +#: ../cache/locales.php:75 msgid "The URL Rewriting support is currently disabled" msgstr "" -#: [compatibility]db +#: ../cache/locales.php:76 msgid "The database need to be updated, go to the database panel to fix this" msgstr "" -#: [compatibility]websocket -msgid "WebSocket connection error, check if the Movim Daemon is running and is reachable" +#: ../cache/locales.php:77 +msgid "" +"WebSocket connection error, check if the Movim Daemon is running and is " +"reacheable" msgstr "" -#: [compatibility]xmpp_websocket -msgid "XMPP Websocket connection error, please check the validity of the URL given in the General Configuration" +#: ../cache/locales.php:78 +msgid "" +"XMPP Websocket connection error, please check the validity of the URL given " +"in the General Configuration" msgstr "" -#: [schema]browser +#: ../cache/locales.php:79 msgid "Browser" msgstr "" -#: [schema]movim +#: ../cache/locales.php:80 msgid "Movim Core" msgstr "" -#: [schema]daemon +#: ../cache/locales.php:81 msgid "Movim Daemon" msgstr "" -#: [schema]xmpp +#: ../cache/locales.php:84 msgid "XMPP" msgstr "" -#: [api]info -msgid "Here you can register your pod on the official %sMovim API%s and be listed on %sthe pods page%s." +#: ../cache/locales.php:86 +#, php-format +msgid "" +"Here you can register your pod on the official %sMovim API%s and be listed " +"on %sthe pods page%s." msgstr "" -#: [api]register +#: ../cache/locales.php:87 msgid "Your pod is not registered on the API" msgstr "" -#: [api]registered +#: ../cache/locales.php:88 msgid "Your pod is registered on the API" msgstr "" -#: [api]wait +#: ../cache/locales.php:89 msgid "Your pod is not yet validated" msgstr "" -#: [api]validated +#: ../cache/locales.php:90 msgid "Your pod is validated" msgstr "" -#: [api]unregister -msgid "You asked to be removed from the API, this request will be processed in a couple of hours" +#: ../cache/locales.php:91 +msgid "" +"You asked to be removed from the API, this request will be processed in a " +"couple of hours" msgstr "" -#: [api]conf_updated [config]updated +#: ../cache/locales.php:92 ../cache/locales.php:147 msgid "Configuration updated" msgstr "" -#: [avatar]file +#: ../cache/locales.php:93 msgid "File" msgstr "" -#: [avatar]use_it +#: ../cache/locales.php:94 msgid "Use it" msgstr "" -#: [avatar]webcam +#: ../cache/locales.php:95 msgid "Webcam" msgstr "" -#: [avatar]cheese +#: ../cache/locales.php:96 msgid "Cheese !" msgstr "" -#: [avatar]snapshot +#: ../cache/locales.php:97 msgid "Take a webcam snapshot" msgstr "" -#: [avatar]updated +#: ../cache/locales.php:98 msgid "Avatar Updated" msgstr "" -#: [avatar]not_updated +#: ../cache/locales.php:99 msgid "Avatar Not Updated" msgstr "" -#: [blog]title [feed]title +#: ../cache/locales.php:100 ../cache/locales.php:415 +#, php-format msgid "%s's feed" msgstr "" -#: [blog]empty +#: ../cache/locales.php:101 msgid "This user has not posted anything right now" msgstr "" -#: [title]conferences +#: ../cache/locales.php:102 msgid "Conferences" msgstr "" -#: [title]groups [group]empty_title [menu]groups [page]groups +#: ../cache/locales.php:103 ../cache/locales.php:193 ../cache/locales.php:217 +#: ../cache/locales.php:468 msgid "Groups" msgstr "" -#: [chatroom]add +#: ../cache/locales.php:104 msgid "Add a new Chat Room" msgstr "" -#: [chatroom]id [chatrooms]id +#: ../cache/locales.php:105 ../cache/locales.php:368 msgid "Chat Room ID" msgstr "" -#: [chatroom]name -#, fuzzy -msgctxt "[chatroom]name" +#: ../cache/locales.php:106 ../cache/locales.php:116 ../cache/locales.php:156 +#: ../cache/locales.php:361 ../cache/locales.php:369 ../cache/locales.php:424 msgid "Name" msgstr "Nume" -#: [chatroom]nickname [general]nickname [chatrooms]nickname +#: ../cache/locales.php:107 ../cache/locales.php:157 ../cache/locales.php:371 +#: ../cache/locales.php:425 msgid "Nickname" msgstr "Porecla" -#: [chatroom]autojoin_label +#: ../cache/locales.php:108 msgid "Do you want do join automaticaly this Chat Room ?" msgstr "" -#: [chatroom]bad_id [chatrooms]bad_id +#: ../cache/locales.php:109 ../cache/locales.php:372 msgid "Bad Chatroom ID" msgstr "" -#: [chatroom]empty_name [chatrooms]empty_name +#: ../cache/locales.php:110 ../cache/locales.php:373 msgid "Empty name" msgstr "" -#: [bookmarks]updated +#: ../cache/locales.php:111 ../cache/locales.php:380 msgid "Bookmarks updated" msgstr "" -#: [bookmarks]error -msgid "An error occured :" +#: ../cache/locales.php:112 +msgid "An error occured : " msgstr "" -#: [bookmarks]configure +#: ../cache/locales.php:113 msgid "Configure" msgstr "" -#: [url]add +#: ../cache/locales.php:114 msgid "Add a new URL" msgstr "" -#: [url]url +#: ../cache/locales.php:115 msgid "URL" msgstr "" -#: [url]name -#, fuzzy -msgctxt "[url]name" -msgid "Name" -msgstr "Nume" - -#: [message]published +#: ../cache/locales.php:117 msgid "Message Published" msgstr "" -#: [message]encrypted +#: ../cache/locales.php:118 ../cache/locales.php:138 msgid "Encrypted message" msgstr "" -#: [message]composing [chats]composing +#: ../cache/locales.php:119 msgid "Composing..." msgstr "" -#: [message]paused [chats]paused +#: ../cache/locales.php:120 msgid "Paused..." msgstr "" -#: [message]gone +#: ../cache/locales.php:121 msgid "Contact gone" msgstr "" -#: [chat]attention +#: ../cache/locales.php:122 +#, php-format msgid "%s needs your attention" msgstr "" -#: [chat]placeholder +#: ../cache/locales.php:123 msgid "Your message here..." msgstr "" -#: [chat]smileys +#: ../cache/locales.php:124 msgid "Smileys" msgstr "" -#: [chat]empty_title [button]chat +#: ../cache/locales.php:125 ../cache/locales.php:139 msgid "Chat" msgstr "Chat" -#: [chat]empty_text +#: ../cache/locales.php:126 msgid "Discuss with your contacts" msgstr "" -#: [chat]frequent [chats]frequent -msgid "Frequent contacts" -msgstr "" - -#: [chatroom]members +#: ../cache/locales.php:127 msgid "Members" msgstr "" -#: [chatroom]connected [chatrooms]connected +#: ../cache/locales.php:128 ../cache/locales.php:376 msgid "Connected to the chatroom" msgstr "" -#: [chatroom]disconnected [chatrooms]disconnected +#: ../cache/locales.php:129 ../cache/locales.php:377 msgid "Disconnected from the chatroom" msgstr "" -#: [chatroom]config [group]configuration [page]configuration +#: ../cache/locales.php:130 ../cache/locales.php:200 ../cache/locales.php:469 msgid "Configuration" msgstr "Configurare" -#: [chatroom]config_saved +#: ../cache/locales.php:131 msgid "Configuration saved" msgstr "" -#: [chatroom]subject +#: ../cache/locales.php:132 msgid "Subject" msgstr "" -#: [chatroom]subject_changed +#: ../cache/locales.php:133 msgid "Subject changed" msgstr "" -#: [chats]empty_title -msgid "No chats yet..." +#: ../cache/locales.php:134 +msgid "Open a new conversation by clicking on the plus button bellow" msgstr "" -#: [chats]empty -msgid "Open a new conversation by clicking on the plus button bellow or visit the Contacts page." -msgstr "" - -#: [chats]add +#: ../cache/locales.php:135 msgid "Chat with a contact" msgstr "" -#: [chats]more +#: ../cache/locales.php:136 +msgid "Frequent contacts" +msgstr "" + +#: ../cache/locales.php:137 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 "" - -#: [config]general +#: ../cache/locales.php:140 msgid "General" msgstr "" -#: [config]language +#: ../cache/locales.php:141 msgid "Language" msgstr "Limba" -#: [config]roster +#: ../cache/locales.php:142 msgid "Roster display" msgstr "" -#: [config]roster_show +#: ../cache/locales.php:143 msgid "Show the offline contacts" msgstr "" -#: [config]roster_hide +#: ../cache/locales.php:144 msgid "Hide the offline contacts" msgstr "" -#: [config]appearence +#: ../cache/locales.php:145 msgid "Appearence" msgstr "" -#: [config]info -msgid "This configuration is shared wherever you are connected" +#: ../cache/locales.php:146 +msgid "This configuration is shared wherever you are connected !" msgstr "" -#: [notifications]message +#: ../cache/locales.php:148 msgid "Notify on incoming message" msgstr "" -#: [notifications]desktop +#: ../cache/locales.php:149 msgid "Use desktop notifications" msgstr "" -#: [general]legend [general]general_title +#: ../cache/locales.php:150 +msgid "Data" +msgstr "" + +#: ../cache/locales.php:151 +msgid "Cache" +msgstr "" + +#: ../cache/locales.php:152 ../cache/locales.php:218 ../cache/locales.php:466 +msgid "Contacts" +msgstr "" + +#: ../cache/locales.php:153 ../cache/locales.php:480 +msgid "Posts" +msgstr "" + +#: ../cache/locales.php:154 +msgid "Messages" +msgstr "" + +#: ../cache/locales.php:155 ../cache/locales.php:423 msgid "General Informations" msgstr "Informatii generale" -#: [general]name [public_groups]name [chatrooms]name -msgid "Name" -msgstr "Nume" - -#: [general]date_of_birth +#: ../cache/locales.php:158 ../cache/locales.php:427 msgid "Date of Birth" msgstr "Data nasterii" -#: [general]gender +#: ../cache/locales.php:159 ../cache/locales.php:428 msgid "Gender" msgstr "" -#: [general]marital +#: ../cache/locales.php:160 ../cache/locales.php:429 msgid "Marital Status" msgstr "" -#: [general]email +#: ../cache/locales.php:161 ../cache/locales.php:426 msgid "Email" msgstr "" -#: [general]website +#: ../cache/locales.php:162 ../cache/locales.php:430 msgid "Website" msgstr "Website" -#: [general]about +#: ../cache/locales.php:163 ../cache/locales.php:431 msgid "About Me" msgstr "" -#: [general]accounts +#: ../cache/locales.php:164 msgid "Other Accounts" msgstr "" -#: [general]tune +#: ../cache/locales.php:165 msgid "Is Listening" msgstr "" -#: [position]legend [position]position_title +#: ../cache/locales.php:166 ../cache/locales.php:432 msgid "Geographic Position" msgstr "" -#: [position]locality +#: ../cache/locales.php:167 ../cache/locales.php:433 msgid "Locality" msgstr "" -#: [position]country +#: ../cache/locales.php:168 ../cache/locales.php:434 msgid "Country" msgstr "" -#: [mood]title +#: ../cache/locales.php:169 msgid "Mood" msgstr "" -#: [mood]im +#: ../cache/locales.php:170 msgid "I'm " msgstr "" -#: [listen]title +#: ../cache/locales.php:171 msgid "Listening" msgstr "" -#: [last]title +#: ../cache/locales.php:173 msgid "Last seen" msgstr "" -#: [client]title +#: ../cache/locales.php:174 msgid "Client Informations" msgstr "" -#: [explore]last_registered +#: ../cache/locales.php:175 msgid "Last registered" msgstr "" -#: [explore]explore +#: ../cache/locales.php:176 msgid "Find some new friends" msgstr "" -#: [edit]title [button]edit +#: ../cache/locales.php:177 ../cache/locales.php:533 msgid "Edit" msgstr "" -#: [edit]alias +#: ../cache/locales.php:178 msgid "Alias" msgstr "Alias" -#: [edit]group +#: ../cache/locales.php:179 msgid "Group" msgstr "" -#: [edit]updated [roster]updated +#: ../cache/locales.php:180 ../cache/locales.php:400 msgid "Contact updated" msgstr "" -#: [delete]title +#: ../cache/locales.php:181 msgid "Are you sure?" msgstr "" -#: [delete]text -msgid "You are going to delete one of your contacts, please confirm your action" +#: ../cache/locales.php:182 +msgid "" +"You are going to delete one of your contacts, please confirm your action" msgstr "" -#: [age]years +#: ../cache/locales.php:183 +#, php-format msgid "%s years" msgstr "" -#: [blog]last +#: ../cache/locales.php:184 msgid "Last public post" msgstr "" -#: [subscription]to -#, fuzzy -msgid "You can see this contact status" -msgstr "Sterge acest contact" - -#: [subscription]to_button -msgid "Share my status" -msgstr "" - -#: [subscription]to_text -msgid "But this contact cannot see yours" -msgstr "" - -#: [subscription]from -msgid "You are not subscribed to this contact" -msgstr "" - -#: [subscription]from_button -msgid "Ask to subscribe" -msgstr "" - -#: [subscription]from_text -msgid "But this contact can still see if you are online" -msgstr "" - -#: [subscription]nil -msgid "No subscriptions" -msgstr "" - -#: [subscription]nil_button -msgid "Invite" -msgstr "" - -#: [subscription]nil_text -msgid "This contact is in your contact list but there is no subscriptions between the two accounts" -msgstr "" - -#: [group]subscribe +#: ../cache/locales.php:185 msgid "Subscribe" msgstr "" -#: [group]subscribed +#: ../cache/locales.php:186 msgid "Subscribed" msgstr "" -#: [group]unsubscribe +#: ../cache/locales.php:187 msgid "Unsubscribe" msgstr "" -#: [group]unsubscribe_text +#: ../cache/locales.php:188 msgid "You are going to unsubscribe from this Group" msgstr "" -#: [group]unsubscribed +#: ../cache/locales.php:189 msgid "Unsubscribed" msgstr "" -#: [group]share_label +#: ../cache/locales.php:190 msgid "Make your membership to this group public to your friends" msgstr "" -#: [group]label_label +#: ../cache/locales.php:191 msgid "Give a label for this group" msgstr "" -#: [group]sure +#: ../cache/locales.php:192 msgid "Are you sure ?" msgstr "" -#: [group]empty_text +#: ../cache/locales.php:194 msgid "Discover, follow and share" msgstr "" -#: [group]empty +#: ../cache/locales.php:195 msgid "Something bad happened to this group" msgstr "" -#: [group]config_saved +#: ../cache/locales.php:196 msgid "Group configuration saved" msgstr "" -#: [group]delete_title +#: ../cache/locales.php:197 msgid "Delete the group" msgstr "" -#: [group]delete_text -msgid "You are going to delete the following group. Please confirm your action." +#: ../cache/locales.php:198 +msgid "" +"You are going to delete the following group. Please confirm your action." msgstr "" -#: [group]delete_clean_text -msgid "It seems that this group doesn't exists anymore. Do you want to remove it from your subscriptions?" +#: ../cache/locales.php:199 +msgid "" +"It seems that this group doesn't exists anymore. Do you want to remove it " +"from your subscriptions?" msgstr "" -#: [group]counter -msgid "%s groups on this server" -msgstr "" - -#: [group]subscriptions [statistics]subscriptions +#: ../cache/locales.php:201 ../cache/locales.php:408 msgid "Subscriptions" msgstr "" -#: [group]servers -msgid "Groups servers" -msgstr "" - -#: [group]search_server -msgid "Search for a new server" -msgstr "" - -#: [group]help_info1 -msgid "Groups are the perfect way to share posts about topics that you like with all the other Movim's users." -msgstr "" - -#: [group]help_info2 -msgid "Choose a server and a Group and subscribe to it using the %s button in the header. You can also create a new one using the %s button." -msgstr "" - -#: [group]help_info3 -msgid "Done? You can now publish a new post in the Group by using the %s button." -msgstr "" - -#: [group]help_info4 -msgid "You will find a list of all your subscribed Groups in My Subscriptions and receive instantly all the new incoming posts in the %sNews%s page." -msgstr "" - -#: [groups]empty_title +#: ../cache/locales.php:202 ../cache/locales.php:290 msgid "Hello" msgstr "" -#: [groups]contact_post [hello]contact_post [menu]contact_post +#: ../cache/locales.php:203 ../cache/locales.php:225 ../cache/locales.php:291 msgid "Contact post" msgstr "" -#: [groups]empty_text1 -msgid "You don't have any subscriptions yet, select a group server above to start exploring." +#: ../cache/locales.php:204 +msgid "" +"You don't have any subscriptions yet, select a group server above to start " +"exploring." msgstr "" -#: [groups]empty_text2 +#: ../cache/locales.php:205 msgid "Subscribe to your favorite feeds by bookmarking them." msgstr "" -#: [groups]subscriptions +#: ../cache/locales.php:206 msgid "My Subscriptions" msgstr "" -#: [groups]add +#: ../cache/locales.php:207 msgid "Create a new Group" msgstr "" -#: [groups]name +#: ../cache/locales.php:208 msgid "Group name" msgstr "" -#: [groups]name_example +#: ../cache/locales.php:209 msgid "My Little Pony - Fan Club" msgstr "" -#: [groups]created +#: ../cache/locales.php:210 msgid "Group created successfully" msgstr "" -#: [groups]deleted +#: ../cache/locales.php:211 msgid "Group deleted successfully" msgstr "" -#: [groups]name_error +#: ../cache/locales.php:212 msgid "Please provide a valid group name (4 characters minimum)" msgstr "" -#: [groups]no_creation +#: ../cache/locales.php:213 msgid "You cannot create a new Group on this server" msgstr "" -#: [groups]sub +#: ../cache/locales.php:214 +#, php-format msgid "%s subscribers" msgstr "" -#: [groups]num +#: ../cache/locales.php:215 +#, php-format msgid "%s posts" msgstr "" -#: [groups]disco_error -msgid "This server doesn't exists" -msgstr "" - -#: [menu]all +#: ../cache/locales.php:216 msgid "All" msgstr "" -#: [menu]refresh +#: ../cache/locales.php:219 msgid "Refresh all the streams" msgstr "" -#: [roster]search -msgid "Search in your contacts" -msgstr "" - -#: [hello]active_contacts -msgid "Active contacts" -msgstr "" - -#: [hello]chat -msgid "Go on the Chat page" -msgstr "" - -#: [hello]news [page]news -msgid "News" -msgstr "" - -#: [hello]news_page -msgid "Read all theses articles on the News page" -msgstr "" - -#: [hello]blog_title -msgid "Visit your public blog" -msgstr "" - -#: [hello]blog_text -msgid "See your public posts and share them with all your contacts" -msgstr "" - -#: [hello]share_title -msgid "Universal share button" -msgstr "" - -#: [hello]share_text -msgid "Bookmark or drag and drop the following button in your toolbar and use it on all the pages you want to share on Movim" -msgstr "" - -#: [hello]share_button -msgid "Share on Movim" -msgstr "" - -#: [help]faq -msgid "Frequently Asked Questions" -msgstr "" - -#: [banner]title -msgid "What do the little banners refer to ?" -msgstr "" - -#: [banner]info1 -msgid "Thanks to these five little banners, you can quickly identitfy the level of confdentiality applied to the information you provide." -msgstr "" - -#: [banner]white -msgid "White, only you can see the information" -msgstr "" - -#: [banner]green -msgid "Green, you have chosen some contacts who can see your information" -msgstr "" - -#: [banner]orange -msgid "Orange, all your contact list can see your information" -msgstr "" - -#: [banner]red -msgid "Red, everybody in the XMPP network can see your information" -msgstr "" - -#: [banner]black -msgid "Black, the whole Internet can see your information" -msgstr "" - -#: [wiki]question -msgid "Looking for some documentation ?" -msgstr "" - -#: [wiki]button -msgid "Read the Wiki" -msgstr "" - -#: [ml]question -msgid "Talk with us by email ?" -msgstr "" - -#: [ml]button -msgid "Join the Mailing List" -msgstr "" - -#: [chatroom]question -msgid "Chat with the team ?" -msgstr "" - -#: [chatroom]button -msgid "Join the Chatroom" -msgstr "" - -#: [init]location -msgid "Location node created" -msgstr "" - -#: [init]bookmark -msgid "Bookmark node created" -msgstr "" - -#: [init]vcard4 -msgid "Profile node created" -msgstr "" - -#: [init]avatar -msgid "Avatar node created" -msgstr "" - -#: [init]subscriptions -msgid "Subscriptions node created" -msgstr "" - -#: [init]microblog -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 "" - -#: [error]jid -msgid "Invalid JID" -msgstr "" - -#: [error]empty_challenge -msgid "Empty Challenge from the server" -msgstr "" - -#: [error]dns -msgid "XMPP Domain error, your account is not a correct Jabber ID" -msgstr "" - -#: [error]data_missings -msgid "Some data are missing !" -msgstr "" - -#: [error]wrong_password -msgid "Wrong password" -msgstr "Parola gresita" - -#: [error]internal -msgid "Internal server error" -msgstr "" - -#: [error]session -msgid "Session error" -msgstr "" - -#: [error]account_created -msgid "Account successfully created" -msgstr "" - -#: [error]xmpp_unauthorized -msgctxt "[error]xmpp_unauthorized" -msgid "Your XMPP server is unauthorized" -msgstr "" - -#: [error]mec_error -msgid "The server takes too much time to respond" -msgstr "" - -#: [error]too_old -msgid "Your web browser is too old to use with Movim." -msgstr "" - -#: [error]websocket -msgid "Movim cannot talk with the server, please try again later (Websocket connection error)" -msgstr "" - -#: [error]impossible -msgid "Impossible login" -msgstr "" - -#: [error]title -msgid "Oops!" -msgstr "" - -#: [error]default [visio]unknown_error -msgid "Unknown error" -msgstr "" - -#: [error]login_format -msgid "Invalid username format" -msgstr "" - -#: [error]password_format -msgid "Invalid password format" -msgstr "" - -#: [error]unauthorized -msgctxt "[error]unauthorized" -msgid "Your XMPP server is unauthorized" -msgstr "" - -#: [error]conflict -msgid "A Movim session is already open on an other device" -msgstr "" - -#: [error]wrong_account -msgid "Movim failed to authenticate. You entered wrong data" -msgstr "" - -#: [error]mechanism -msgid "Authentication mechanism not supported by Movim" -msgstr "" - -#: [error]fail_auth -msgid "The XMPP authentification failed" -msgstr "" - -#: [account]title [accounts]accounts_title -msgid "Accounts" -msgstr "" - -#: [form]username -msgid "My address" -msgstr "Adresa mea" - -#: [form]create_one -msgid "Create one !" -msgstr "" - -#: [form]another_account -msgid "Another account" -msgstr "" - -#: [form]no_account -msgid "No account yet ?" -msgstr "" - -#: [form]whitelist.info -msgid "You can login with accounts from theses servers" -msgstr "" - -#: [form]connected -msgid "Connected" -msgstr "" - -#: [form]population -msgid "Population" -msgstr "" - -#: [menu]empty_title -msgid "No news yet..." -msgstr "" - -#: [menu]empty -msgid "Welcome on your news feed, here you will see all the posts published by your contacts and in the groups you have subscribed." -msgstr "" - -#: [menu]refresh -msgid "Refreshing all the streams" -msgstr "" - -#: [menu]public -msgid "This post is public" -msgstr "" - -#: [affiliations]title -msgid "Manage your members" -msgstr "" - -#: [affiliations]get -msgid "Get the members" -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 "" - -#: [notifs]title -msgid "Pending Invitations" -msgstr "" - -#: [notifs]wants_to_talk -msgid "%s wants to talk with you" -msgstr "" - -#: [notifs]manage -msgid "Manage" -msgstr "" - -#: [post]news_feed -msgid "News Feed" -msgstr "" - -#: [post]placeholder -msgid "Discover and register to the groups you are interested in" -msgstr "" - -#: [post]preview [page]preview -msgid "Preview" -msgstr "" - -#: [post]help [page]help -msgid "Help" -msgstr "" - -#: [post]help_more -msgid "More help" -msgstr "" - -#: [post]help_manual -msgid "Markdown syntax manual" -msgstr "" - -#: [post]title -msgid "Title" -msgstr "" - -#: [post]content -msgid "Content" -msgstr "" - -#: [post]link -msgid "Link" -msgstr "" - -#: [post]tags -msgid "Tags" -msgstr "" - -#: [post]valid_url [publish]valid_url -msgid "Please enter a valid url" -msgstr "" - -#: [post]no_content_preview [publish]no_content_preview -msgid "No content to preview" -msgstr "" - -#: [post]no_content [publish]no_content [post]empty -msgid "No content" -msgstr "" - -#: [post]published -msgid "Post published" -msgstr "" - -#: [post]deleted -msgid "Post deleted" -msgstr "" - -#: [post]gallery -msgid "This picture will be added to your gallery" -msgstr "" - -#: [post]hot -msgid "What's Hot" -msgstr "" - -#: [post]hot_text -msgid "Posts recently published in Groups that you are not subscribed (yet)" -msgstr "" - -#: [post]new [publish]new -msgid "New post" -msgstr "" - -#: [post]embed_tip -msgid "You can also use services like Imgur or Flickr to host your picture and paste the link here." -msgstr "" - -#: [post]repost -msgid "This is a re-post from %s" -msgstr "" - -#: [post]repost_profile -msgid "See %s profile" -msgstr "" - -#: [post]public -msgid "Publish this post publicly?" -msgstr "" - -#: [post]blog_add -msgid "Post published on your blog" -msgstr "" - -#: [post]blog_remove -msgid "Post removed from your blog" -msgstr "" - -#: [post]delete_title [post]delete -msgid "Delete this post" -msgstr "" - -#: [post]delete_text -msgid "You are going to delete this post, please confirm your action" -msgstr "" - -#: [post]comments_disabled -msgid "Comments disabled" -msgstr "" - -#: [post]comment_published -msgid "Comment published" -msgstr "" - -#: [status]disconnect -msgid "Disconnect" -msgstr "" - -#: [status]here -msgid "Your status here !" -msgstr "" - -#: [status]updated -msgid "Status updated" -msgstr "" - -#: [status]status -msgid "Status" -msgstr "" - -#: [status]presence -msgid "Presence" -msgstr "" - -#: [status]online -msgid "Online with Movim" -msgstr "" - -#: [publish]title -msgid "Publish" -msgstr "" - -#: [publish]attach -msgid "Add a file or a picture to your post" -msgstr "" - -#: [publish]no_publication -msgid "You cannot publish a post on this Group" -msgstr "" - -#: [publish]form_filled -msgid "Some fields have been filled in. Do you still want to go back and loose their content?" -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 "" - -#: [rooms]empty_text1 -msgid "You don't have any chatroom yet." -msgstr "" - -#: [rooms]empty_text2 -msgid "Add one by clicking on the add button in the header." -msgstr "" - -#: [chatrooms]title -msgid "Chatrooms" -msgstr "" - -#: [chatrooms]name_placeholder -msgid "My Favorite Room" -msgstr "" - -#: [chatrooms]users -msgid "Users in the room" -msgstr "" - -#: [chatrooms]bad_nickname -msgid "Please enter a correct nickname (2 to 40 characters)" -msgstr "" - -#: [room]anonymous_title -msgid "Public chatroom" -msgstr "" - -#: [room]no_room -msgid "Please provide a room address" -msgstr "" - -#: [room]anonymous_text1 -msgid "You are currently logued as an anonymous user." -msgstr "" - -#: [room]anonymous_text2 -msgid "You can join using your own account or create one on the login page by loging out using the cross in the top-right corner." -msgstr "" - -#: [room]anonymous_login -msgid "Login on %s" -msgstr "" - -#: [room]nick -msgid "Your nickname" -msgstr "" - -#: [roster]ungrouped -msgid "Ungrouped" -msgstr "" - -#: [roster]show_disconnected -msgid "Show disconnected contacts" -msgstr "" - -#: [roster]hide_disconnected -msgid "Hide disconnected contacts" -msgstr "" - -#: [roster]show_group -msgid "Show group %s" -msgstr "" - -#: [roster]hide_group -msgid "Hide group %s" -msgstr "" - -#: [roster]jid_error -msgid "Please enter a valid Jabber ID" -msgstr "" - -#: [roster]no_contacts_title -msgid "No contacts ?" -msgstr "" - -#: [roster]no_contacts_text -msgid "You can add one using the + button bellow" -msgstr "" - -#: [roster]show_hide -msgid "Show/Hide" -msgstr "" - -#: [roster]add_contact_info1 -msgid "Enter the Jabber ID of your contact." -msgstr "" - -#: [roster]add_contact_info2 -msgid "Press enter to validate." -msgstr "" - -#: [roster]jid -msgid "JID" -msgstr "" - -#: [roster]results -msgid "Results" -msgstr "" - -#: [roster]added -msgid "Contact added" -msgstr "" - -#: [roster]deleted -msgid "Contact deleted" -msgstr "" - -#: [roster]search +#: ../cache/locales.php:220 ../cache/locales.php:402 msgid "Search" msgstr "" -#: [share]error +#: ../cache/locales.php:221 +msgid "Go on the Chat page" +msgstr "" + +#: ../cache/locales.php:222 +msgid "Read all theses articles on the News page" +msgstr "" + +#: ../cache/locales.php:223 +msgid "Visit your public blog" +msgstr "" + +#: ../cache/locales.php:224 +msgid "See your public posts and share them with all your contacts" +msgstr "" + +#: ../cache/locales.php:226 +msgid "Universal share button" +msgstr "" + +#: ../cache/locales.php:227 +msgid "" +"Bookmark or drag and drop the following button in your toolbar and use it on " +"all the pages you want to share on Movim" +msgstr "" + +#: ../cache/locales.php:228 +msgid "Share on Movim" +msgstr "" + +#: ../cache/locales.php:229 +msgid "Frequently Asked Questions" +msgstr "" + +#: ../cache/locales.php:230 +msgid "What do the little banners refer to ?" +msgstr "" + +#: ../cache/locales.php:231 +msgid "" +"Thanks to these five little banners, you can quickly identitfy the level of " +"confdentiality applied to the information you provide." +msgstr "" + +#: ../cache/locales.php:232 +msgid "White, only you can see the information" +msgstr "" + +#: ../cache/locales.php:233 +msgid "Green, you have chosen some contacts who can see your information" +msgstr "" + +#: ../cache/locales.php:234 +msgid "Orange, all your contact list can see your information" +msgstr "" + +#: ../cache/locales.php:235 +msgid "Red, everybody in the XMPP network can see your information" +msgstr "" + +#: ../cache/locales.php:236 +msgid "Black, the whole Internet can see your information" +msgstr "" + +#: ../cache/locales.php:237 +msgid "Looking for some documentation ?" +msgstr "" + +#: ../cache/locales.php:238 +msgid "Read the Wiki" +msgstr "" + +#: ../cache/locales.php:239 +msgid "Talk with us by email ?" +msgstr "" + +#: ../cache/locales.php:240 +msgid "Join the Mailing List" +msgstr "" + +#: ../cache/locales.php:241 +msgid "Chat with the team ?" +msgstr "" + +#: ../cache/locales.php:242 +msgid "Join the Chatroom" +msgstr "" + +#: ../cache/locales.php:243 +msgid "Location node created" +msgstr "" + +#: ../cache/locales.php:244 +msgid "Bookmark node created" +msgstr "" + +#: ../cache/locales.php:245 +msgid "Profile node created" +msgstr "" + +#: ../cache/locales.php:246 +msgid "Avatar node created" +msgstr "" + +#: ../cache/locales.php:247 +msgid "Subscriptions node created" +msgstr "" + +#: ../cache/locales.php:248 +msgid "Microblog node created" +msgstr "" + +#: ../cache/locales.php:249 +msgid "Location" +msgstr "" + +#: ../cache/locales.php:250 +msgid "Wrong position" +msgstr "" + +#: ../cache/locales.php:251 +msgid "Location updated" +msgstr "" + +#: ../cache/locales.php:252 +msgid "Update my position" +msgstr "" + +#: ../cache/locales.php:253 +msgid "Wrong username" +msgstr "" + +#: ../cache/locales.php:254 +msgid "Invalid JID" +msgstr "" + +#: ../cache/locales.php:255 +msgid "Empty Challenge from the server" +msgstr "" + +#: ../cache/locales.php:256 +msgid "XMPP Domain error, your account is not a correct Jabber ID" +msgstr "" + +#: ../cache/locales.php:257 +msgid "Some data are missing !" +msgstr "" + +#: ../cache/locales.php:258 +msgid "Wrong password" +msgstr "Parola gresita" + +#: ../cache/locales.php:259 +msgid "Internal server error" +msgstr "" + +#: ../cache/locales.php:260 +msgid "Session error" +msgstr "" + +#: ../cache/locales.php:261 +msgid "Account successfully created" +msgstr "" + +#: ../cache/locales.php:262 ../cache/locales.php:271 +msgid "Your XMPP server is unauthorized" +msgstr "" + +#: ../cache/locales.php:263 +msgid "The server takes too much time to respond" +msgstr "" + +#: ../cache/locales.php:264 +msgid "Your web browser is too old to use with Movim." +msgstr "" + +#: ../cache/locales.php:265 +msgid "" +"Movim cannot talk with the server, please try again later (Websocket " +"connection error)" +msgstr "" + +#: ../cache/locales.php:266 +msgid "Impossible login" +msgstr "" + +#: ../cache/locales.php:267 +msgid "Oops!" +msgstr "" + +#: ../cache/locales.php:268 ../cache/locales.php:449 ../cache/locales.php:455 +msgid "Unknown error" +msgstr "" + +#: ../cache/locales.php:269 +msgid "Invalid username format" +msgstr "" + +#: ../cache/locales.php:270 +msgid "Invalid password format" +msgstr "" + +#: ../cache/locales.php:272 +msgid "A Movim session is already open on an other device" +msgstr "" + +#: ../cache/locales.php:273 +msgid "Movim failed to authenticate. You entered wrong data" +msgstr "" + +#: ../cache/locales.php:274 +msgid "Authentication mechanism not supported by Movim" +msgstr "" + +#: ../cache/locales.php:275 +msgid "The XMPP authentification failed" +msgstr "" + +#: ../cache/locales.php:276 +#, php-format +msgid "" +"You can login with Facebook (chat only) using %syour.id@chat.facebook.com%s " +"and your password" +msgstr "" + +#: ../cache/locales.php:277 +#, php-format +msgid "%sGmail accounts are also compatible%s but are not fully supported" +msgstr "" + +#: ../cache/locales.php:278 +msgid "You can login using your favorite Jabber account" +msgstr "" + +#: ../cache/locales.php:279 +msgid "or with our demonstration account" +msgstr "" + +#: ../cache/locales.php:280 ../cache/locales.php:435 +msgid "Accounts" +msgstr "" + +#: ../cache/locales.php:281 +msgid "My address" +msgstr "Adresa mea" + +#: ../cache/locales.php:283 +msgid "Create one !" +msgstr "" + +#: ../cache/locales.php:284 +msgid "No account yet ?" +msgstr "" + +#: ../cache/locales.php:285 +msgid "Another account" +msgstr "" + +#: ../cache/locales.php:286 +msgid "You can login with accounts from theses servers" +msgstr "" + +#: ../cache/locales.php:287 +msgid "Connected" +msgstr "" + +#: ../cache/locales.php:288 +msgid "Population" +msgstr "" + +#: ../cache/locales.php:289 +msgid "Bad nickname (between 4 and 40 characters)" +msgstr "" + +#: ../cache/locales.php:292 +msgid "" +"Welcome on your news feed, here you will see all the posts published in the " +"groups you have subscribed." +msgstr "" + +#: ../cache/locales.php:293 +msgid "Refreshing all the streams" +msgstr "" + +#: ../cache/locales.php:294 +msgid "This post is public" +msgstr "" + +#: ../cache/locales.php:295 +msgid "Manage your members" +msgstr "" + +#: ../cache/locales.php:296 +msgid "Get the members" +msgstr "" + +#: ../cache/locales.php:297 +msgid "Affiliations saved" +msgstr "" + +#: ../cache/locales.php:298 +msgid "Manage your subscriptions" +msgstr "" + +#: ../cache/locales.php:299 +msgid "Manage the subscriptions" +msgstr "" + +#: ../cache/locales.php:300 +msgid "Get the subscriptions" +msgstr "" + +#: ../cache/locales.php:301 +msgid "Subscriptions saved" +msgstr "" + +#: ../cache/locales.php:302 +msgid "Pending Invitations" +msgstr "" + +#: ../cache/locales.php:303 +#, php-format +msgid "%s wants to talk with you" +msgstr "" + +#: ../cache/locales.php:304 +msgid "Manage" +msgstr "" + +#: ../cache/locales.php:305 ../cache/locales.php:338 +msgid "News Feed" +msgstr "" + +#: ../cache/locales.php:306 ../cache/locales.php:339 +msgid "Discover and register to the groups you are interested in" +msgstr "" + +#: ../cache/locales.php:307 ../cache/locales.php:340 ../cache/locales.php:482 +msgid "Preview" +msgstr "" + +#: ../cache/locales.php:308 ../cache/locales.php:341 ../cache/locales.php:478 +msgid "Help" +msgstr "" + +#: ../cache/locales.php:309 ../cache/locales.php:342 +msgid "More help" +msgstr "" + +#: ../cache/locales.php:310 ../cache/locales.php:343 +msgid "Markdown syntax manual" +msgstr "" + +#: ../cache/locales.php:311 ../cache/locales.php:344 ../cache/locales.php:681 +msgid "Title" +msgstr "" + +#: ../cache/locales.php:312 ../cache/locales.php:345 +msgid "Content" +msgstr "" + +#: ../cache/locales.php:313 ../cache/locales.php:346 +msgid "Link" +msgstr "" + +#: ../cache/locales.php:314 ../cache/locales.php:347 +msgid "Tags" +msgstr "" + +#: ../cache/locales.php:315 ../cache/locales.php:348 +msgid "Please enter a valid url" +msgstr "" + +#: ../cache/locales.php:316 ../cache/locales.php:349 +msgid "No content to preview" +msgstr "" + +#: ../cache/locales.php:317 ../cache/locales.php:350 ../cache/locales.php:687 +msgid "No content" +msgstr "" + +#: ../cache/locales.php:318 ../cache/locales.php:351 +msgid "Post published" +msgstr "" + +#: ../cache/locales.php:319 ../cache/locales.php:352 +msgid "Post deleted" +msgstr "" + +#: ../cache/locales.php:320 ../cache/locales.php:353 +msgid "This picture will be added to your gallery" +msgstr "" + +#: ../cache/locales.php:321 ../cache/locales.php:354 +msgid "What's Hot" +msgstr "" + +#: ../cache/locales.php:322 ../cache/locales.php:355 +msgid "New post" +msgstr "" + +#: ../cache/locales.php:323 ../cache/locales.php:357 +msgid "" +"You can also use services like Imgur or Flickr to host your picture and " +"paste the link here." +msgstr "" + +#: ../cache/locales.php:324 +#, php-format +msgid "This is a re-post from %s" +msgstr "" + +#: ../cache/locales.php:325 +#, php-format +msgid "See %s profile" +msgstr "" + +#: ../cache/locales.php:326 +msgid "Publish this post on your public feed?" +msgstr "" + +#: ../cache/locales.php:327 +msgid "Post published on your blog" +msgstr "" + +#: ../cache/locales.php:328 +msgid "Post removed from your blog" +msgstr "" + +#: ../cache/locales.php:329 ../cache/locales.php:701 +msgid "Delete this post" +msgstr "" + +#: ../cache/locales.php:330 +msgid "You are going to delete this post, please confirm your action" +msgstr "" + +#: ../cache/locales.php:331 +msgid "Comments disabled" +msgstr "" + +#: ../cache/locales.php:332 +msgid "Comment published" +msgstr "" + +#: ../cache/locales.php:333 +msgid "Disconnect" +msgstr "" + +#: ../cache/locales.php:334 +msgid "Your status here !" +msgstr "" + +#: ../cache/locales.php:335 +msgid "Status updated" +msgstr "" + +#: ../cache/locales.php:336 +msgid "Status" +msgstr "" + +#: ../cache/locales.php:337 +msgid "Presence" +msgstr "" + +#: ../cache/locales.php:356 +msgid "Publish" +msgstr "" + +#: ../cache/locales.php:358 +msgid "You cannot publish a post on this Group" +msgstr "" + +#: ../cache/locales.php:359 +msgid "" +"Some fields have been filled in. Do you still want to go back and loose " +"their content?" +msgstr "" + +#: ../cache/locales.php:360 +msgid "Shared" +msgstr "" + +#: ../cache/locales.php:362 +#, php-format +msgid "%s has been added to your public groups" +msgstr "" + +#: ../cache/locales.php:363 +#, php-format +msgid "%s has been removed from your public groups" +msgstr "" + +#: ../cache/locales.php:364 +msgid "Add a chatroom" +msgstr "" + +#: ../cache/locales.php:365 +msgid "You don't have any chatroom yet." +msgstr "" + +#: ../cache/locales.php:366 +msgid "Add one by clicking on the add button in the header." +msgstr "" + +#: ../cache/locales.php:367 +msgid "Chatrooms" +msgstr "" + +#: ../cache/locales.php:370 +msgid "My Favorite Room" +msgstr "" + +#: ../cache/locales.php:374 +msgid "Remove a chatroom" +msgstr "" + +#: ../cache/locales.php:375 +msgid "" +"You are going to remove the following chatroom. Please confirm your action." +msgstr "" + +#: ../cache/locales.php:378 +msgid "Users in the room" +msgstr "" + +#: ../cache/locales.php:379 +msgid "Please enter a correct nickname (6 to 40 characters)" +msgstr "" + +#: ../cache/locales.php:381 +msgid "Public chatroom" +msgstr "" + +#: ../cache/locales.php:382 +msgid "Please provide a room address" +msgstr "" + +#: ../cache/locales.php:383 +msgid "You are currently logued as an anonymous user." +msgstr "" + +#: ../cache/locales.php:384 +msgid "" +"You can join using your own account or create one on the login page by " +"loging out using the cross in the top-right corner." +msgstr "" + +#: ../cache/locales.php:385 +#, php-format +msgid "Login on %s" +msgstr "" + +#: ../cache/locales.php:386 +msgid "Your nickname" +msgstr "" + +#: ../cache/locales.php:387 +msgid "Ungrouped" +msgstr "" + +#: ../cache/locales.php:388 +msgid "Show disconnected contacts" +msgstr "" + +#: ../cache/locales.php:389 +msgid "Hide disconnected contacts" +msgstr "" + +#: ../cache/locales.php:390 +#, php-format +msgid "Show group %s" +msgstr "" + +#: ../cache/locales.php:391 +#, php-format +msgid "Hide group %s" +msgstr "" + +#: ../cache/locales.php:392 +msgid "Please enter a valid Jabber ID" +msgstr "" + +#: ../cache/locales.php:393 +msgid "" +"No contacts ? You can add one using the + button bellow or going to the " +"Explore page" +msgstr "" + +#: ../cache/locales.php:394 +msgid "Show/Hide" +msgstr "" + +#: ../cache/locales.php:395 +msgid "Enter the Jabber ID of your contact." +msgstr "" + +#: ../cache/locales.php:396 +msgid "Press enter to validate." +msgstr "" + +#: ../cache/locales.php:397 +msgid "JID" +msgstr "" + +#: ../cache/locales.php:398 +msgid "Results" +msgstr "" + +#: ../cache/locales.php:399 +msgid "Contact added" +msgstr "" + +#: ../cache/locales.php:401 +msgid "Contact deleted" +msgstr "" + +#: ../cache/locales.php:403 msgid "This is not a valid url" msgstr "" -#: [share]success +#: ../cache/locales.php:404 msgid "Sharing the URL" msgstr "" -#: [statistics]title +#: ../cache/locales.php:405 msgid "Statistics" msgstr "" -#: [statistics]since +#: ../cache/locales.php:406 msgid "Since" msgstr "" -#: [statistics]sessions +#: ../cache/locales.php:407 msgid "Sessions" msgstr "" -#: [statistics]monthly_sub +#: ../cache/locales.php:409 msgid "Monthly Subscriptions" msgstr "" -#: [statistics]monthly_sub_cum +#: ../cache/locales.php:410 msgid "Monthly Subscriptions Cumulated" msgstr "" -#: [subscribe]info -msgid "Movim is a decentralized social network, before creating a new account you need to choose a server to register." +#: ../cache/locales.php:412 +msgid "" +"Movim is a decentralized social network, before creating a new account you " +"need to choose a server to register." msgstr "" -#: [subscribe]server_question +#: ../cache/locales.php:413 msgid "Your server here ?" msgstr "" -#: [subscribe]server_contact +#: ../cache/locales.php:414 msgid "Contact us to add yours to the officially supported servers list" msgstr "" -#: [feed]nope +#: ../cache/locales.php:416 msgid "No public feed for this contact" msgstr "" -#: [feed]nope_contact +#: ../cache/locales.php:417 msgid "No contact specified" msgstr "" -#: [upload]title -msgid "Upload a file" -msgstr "" - -#: [upload]choose -msgid "Choose a file to upload" -msgstr "" - -#: [vcard]title [page]profile +#: ../cache/locales.php:418 ../cache/locales.php:473 msgid "Profile" msgstr "Profil" -#: [vcard]updated +#: ../cache/locales.php:419 msgid "Profile Updated" msgstr "" -#: [vcard]not_updated +#: ../cache/locales.php:420 msgid "Profile Not Updated" msgstr "" -#: [vcard]public +#: ../cache/locales.php:421 msgid "Your profile is now public" msgstr "" -#: [vcard]restricted +#: ../cache/locales.php:422 msgid "Your profile is now restricted" msgstr "" -#: [general]nickname -#, fuzzy -msgctxt "[general]nickname" -msgid "Nickname" -msgstr "Porecla" - -#: [accounts]twitter +#: ../cache/locales.php:436 msgid "Twitter" msgstr "" -#: [accounts]skype +#: ../cache/locales.php:437 msgid "Skype" msgstr "" -#: [accounts]yahoo +#: ../cache/locales.php:438 msgid "Yahoo" msgstr "" -#: [accounts]accounts_nickname -#, fuzzy -msgctxt "[accounts]accounts_nickname" -msgid "Nickname" -msgstr "Porecla" - -#: [accounts]accounts_yahoo -msgid "Yahoo Account" -msgstr "" - -#: [privacy]privacy_title +#: ../cache/locales.php:439 msgid "Privacy Level" msgstr "" -#: [privacy]privacy_question +#: ../cache/locales.php:440 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." +#: ../cache/locales.php:441 +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." msgstr "" -#: [save]submit [button]submit -msgid "Submit" -msgstr "Inregistrare" - -#: [save]reset [button]reset -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 +#: ../cache/locales.php:442 msgid "Call" msgstr "" -#: [visio]hang_up +#: ../cache/locales.php:443 msgid "Hang up" msgstr "" -#: [visio]connection +#: ../cache/locales.php:444 msgid "Connection" msgstr "" -#: [global]no_js +#: ../cache/locales.php:445 ../cache/locales.php:451 +msgid "Hung up" +msgstr "" + +#: ../cache/locales.php:446 ../cache/locales.php:452 +msgid "Your contact is busy" +msgstr "" + +#: ../cache/locales.php:447 ../cache/locales.php:453 +msgid "Declined" +msgstr "" + +#: ../cache/locales.php:448 ../cache/locales.php:454 +msgid "Remote application incompatible" +msgstr "" + +#: ../cache/locales.php:450 ../cache/locales.php:456 +msgid "Is calling you" +msgstr "" + +#: ../cache/locales.php:457 msgid "You don't have javascript enabled. Good luck with that." msgstr "" -#: [global]description -msgid "Movim is a kickass distributed social networking platform that protect your privacy an comes with a set of awesome features." +#: ../cache/locales.php:458 +msgid "" +"Movim is a kickass distributed social networking platform that protect your " +"privacy an comes with a set of awesome features." msgstr "" -#: [page]administration +#: ../cache/locales.php:459 msgid "Administration" msgstr "" -#: [page]home +#: ../cache/locales.php:460 msgid "Home" msgstr "Pagina Principala" -#: [page]discover +#: ../cache/locales.php:461 msgid "Discover" msgstr "" -#: [page]explore +#: ../cache/locales.php:462 msgid "Explore" msgstr "" -#: [page]account_creation +#: ../cache/locales.php:463 msgid "Account Creation" msgstr "Cont nou" -#: [page]avatar +#: ../cache/locales.php:464 +msgid "News" +msgstr "" + +#: ../cache/locales.php:465 msgid "Avatar" msgstr "Avatar" -#: [page]chats +#: ../cache/locales.php:467 msgid "Chats" msgstr "" -#: [page]server +#: ../cache/locales.php:470 msgid "Server" msgstr "" -#: [page]public_groups +#: ../cache/locales.php:471 msgid "Public Groups" msgstr "" -#: [page]viewer +#: ../cache/locales.php:472 msgid "Viewer" msgstr "" -#: [page]media +#: ../cache/locales.php:474 msgid "Media" msgstr "" -#: [page]blog +#: ../cache/locales.php:475 msgid "Blog" msgstr "" -#: [page]about +#: ../cache/locales.php:476 msgid "About" msgstr "" -#: [page]login +#: ../cache/locales.php:477 msgid "Login" msgstr "" -#: [page]feed +#: ../cache/locales.php:479 msgid "Feed" msgstr "" -#: [page]gallery +#: ../cache/locales.php:481 msgid "Gallery" msgstr "" -#: [page]visio +#: ../cache/locales.php:483 msgid "Visio-conference" msgstr "" -#: [page]pods +#: ../cache/locales.php:484 msgid "Pods" msgstr "" -#: [page]share +#: ../cache/locales.php:485 msgid "Share" msgstr "" -#: [page]room +#: ../cache/locales.php:486 msgid "Room" msgstr "" -#: [error]error +#: ../cache/locales.php:487 +#, php-format msgid "Error: %s" msgstr "Eroare: %s" -#: [error]cannot_load_file +#: ../cache/locales.php:488 +#, php-format msgid "Cannot load file '%s'" msgstr "Fisierul '%s' nu poate fi incarcat." -#: [error]route +#: ../cache/locales.php:489 +#, php-format msgid "Route error, please set all the parameters for the page %s" msgstr "" -#: [error]widget_load_error +#: ../cache/locales.php:490 +#, php-format msgid "Requested widget '%s' doesn't exist." msgstr "" -#: [error]widget_call_error +#: ../cache/locales.php:491 +#, php-format msgid "Requested event '%s' not registered." msgstr "" -#: [error]whoops +#: ../cache/locales.php:492 msgid "Whoops!" msgstr "" -#: [error]media_not_found +#: ../cache/locales.php:493 msgid "It seem that you don't have any pictures here?" msgstr "" -#: [error]media_ask_upload +#: ../cache/locales.php:494 msgid "You can try to upload a couple by going to the Media page" msgstr "" -#: [title]about +#: ../cache/locales.php:495 +#, php-format msgid "%s - About" msgstr "" -#: [title]account +#: ../cache/locales.php:496 +#, php-format msgid "%s - Account" msgstr "" -#: [title]administration +#: ../cache/locales.php:497 +#, php-format msgid "%s - Administration Panel" msgstr "" -#: [title]blog +#: ../cache/locales.php:498 +#, php-format msgid "%s - Blog" msgstr "" -#: [title]configuration +#: ../cache/locales.php:499 +#, php-format msgid "%s - Configuration" msgstr "%s - Configurare" -#: [title]discover +#: ../cache/locales.php:500 +#, php-format msgid "%s - Discover" msgstr "" -#: [title]explore +#: ../cache/locales.php:501 +#, php-format msgid "%s - Explore" msgstr "" -#: [title]help +#: ../cache/locales.php:502 +#, php-format msgid "%s - Help Page" msgstr "" -#: [title]login +#: ../cache/locales.php:503 +#, php-format msgid "%s - Login to Movim" msgstr "%s - Conectare pe Movim" -#: [title]main +#: ../cache/locales.php:504 +#, php-format msgid "%s - Welcome to Movim" msgstr "%s - Bine ati venit pe MOVIM" -#: [title]media +#: ../cache/locales.php:505 +#, php-format msgid "%s - Media" msgstr "" -#: [title]news +#: ../cache/locales.php:506 +#, php-format msgid "%s - News" msgstr "" -#: [title]node_configuration +#: ../cache/locales.php:507 +#, php-format msgid "%s - Group Configuration" msgstr "" -#: [title]node +#: ../cache/locales.php:508 +#, php-format msgid "%s - Group" msgstr "" -#: [title]not_found +#: ../cache/locales.php:509 +#, php-format msgid "%s - 404" msgstr "" -#: [title]profile +#: ../cache/locales.php:510 +#, php-format msgid "%s - Profile" msgstr "" -#: [title]server +#: ../cache/locales.php:511 +#, php-format msgid "%s - Server" msgstr "" -#: [button]validate +#: ../cache/locales.php:512 msgid "Validate" msgstr "" -#: [button]refresh +#: ../cache/locales.php:513 msgid "Refresh" msgstr "" -#: [button]add +#: ../cache/locales.php:514 msgid "Add" msgstr "" -#: [button]delete +#: ../cache/locales.php:515 msgid "Delete" msgstr "" -#: [button]cancel +#: ../cache/locales.php:516 +msgid "Remove" +msgstr "" + +#: ../cache/locales.php:517 msgid "Cancel" msgstr "" -#: [button]close +#: ../cache/locales.php:518 msgid "Close" msgstr "" -#: [button]update +#: ../cache/locales.php:519 msgid "Update" msgstr "" -#: [button]updating +#: ../cache/locales.php:520 msgid "Updating" msgstr "" -#: [button]submitting +#: ../cache/locales.php:521 +msgid "Submit" +msgstr "Inregistrare" + +#: ../cache/locales.php:522 msgid "Submitting" msgstr "" -#: [button]register +#: ../cache/locales.php:523 +msgid "Reset" +msgstr "Reinitializeaza" + +#: ../cache/locales.php:524 msgid "Register" msgstr "" -#: [button]unregister +#: ../cache/locales.php:525 msgid "Unregister" msgstr "" -#: [button]save +#: ../cache/locales.php:526 msgid "Save" msgstr "" -#: [button]clear +#: ../cache/locales.php:527 msgid "Clear" msgstr "" -#: [button]upload +#: ../cache/locales.php:528 msgid "Upload" msgstr "" -#: [button]come_in +#: ../cache/locales.php:529 msgid "Come in!" msgstr "Intrati!" -#: [button]connecting +#: ../cache/locales.php:530 msgid "Connecting" msgstr "" -#: [button]bool_yes +#: ../cache/locales.php:531 msgid "Yes" msgstr "" -#: [button]bool_no +#: ../cache/locales.php:532 msgid "No" msgstr "" -#: [button]return +#: ../cache/locales.php:534 msgid "Return" msgstr "" -#: [button]accept +#: ../cache/locales.php:535 msgid "Accept" msgstr "Accepta" -#: [button]refuse +#: ../cache/locales.php:536 msgid "Refuse" msgstr "" -#: [button]next +#: ../cache/locales.php:537 msgid "Next" msgstr "" -#: [button]previous +#: ../cache/locales.php:538 msgid "Previous" msgstr "" -#: [step]step +#: ../cache/locales.php:539 +#, php-format msgid "Step %s" msgstr "" -#: [day]title +#: ../cache/locales.php:542 msgid "Day" msgstr "" -#: [day]monday +#: ../cache/locales.php:543 msgid "Monday" msgstr "" -#: [day]tuesday +#: ../cache/locales.php:544 msgid "Tuesday" msgstr "" -#: [day]wednesday +#: ../cache/locales.php:545 msgid "Wednesday" msgstr "" -#: [day]thursday +#: ../cache/locales.php:546 msgid "Thursday" msgstr "" -#: [day]friday +#: ../cache/locales.php:547 msgid "Friday" msgstr "" -#: [day]saturday +#: ../cache/locales.php:548 msgid "Saturday" msgstr "" -#: [day]sunday +#: ../cache/locales.php:549 msgid "Sunday" msgstr "" -#: [gender]nil -msgctxt "[gender]nil" +#: ../cache/locales.php:550 ../cache/locales.php:559 msgid "None" msgstr "" -#: [gender]male +#: ../cache/locales.php:551 msgid "Male" msgstr "" -#: [gender]female +#: ../cache/locales.php:552 msgid "Female" msgstr "" -#: [gender]other +#: ../cache/locales.php:553 msgid "Other" msgstr "" -#: [client]bot +#: ../cache/locales.php:554 msgid "Bot" msgstr "" -#: [client]desktop +#: ../cache/locales.php:555 msgid "Desktop" msgstr "" -#: [client]phone +#: ../cache/locales.php:556 msgid "Phone" msgstr "" -#: [client]web +#: ../cache/locales.php:557 msgid "Web" msgstr "" -#: [client]registered +#: ../cache/locales.php:558 msgid "Registered" msgstr "" -#: [marital]nil -msgctxt "[marital]nil" -msgid "None" -msgstr "" - -#: [marital]single +#: ../cache/locales.php:560 msgid "Single" msgstr "" -#: [marital]relationship +#: ../cache/locales.php:561 msgid "In a relationship" msgstr "" -#: [marital]married +#: ../cache/locales.php:562 msgid "Married" msgstr "" -#: [marital]divorced +#: ../cache/locales.php:563 msgid "Divorced" msgstr "" -#: [marital]widowed +#: ../cache/locales.php:564 msgid "Widowed" msgstr "" -#: [marital]cohabiting +#: ../cache/locales.php:565 msgid "Cohabiting" msgstr "" -#: [marital]union +#: ../cache/locales.php:566 msgid "Civil Union" msgstr "" -#: [flag]white +#: ../cache/locales.php:567 msgid "Not shared" msgstr "" -#: [flag]green +#: ../cache/locales.php:568 msgid "Shared with one contact" msgstr "" -#: [flag]orange +#: ../cache/locales.php:569 msgid "Shared with all contacts" msgstr "" -#: [flag]red +#: ../cache/locales.php:570 msgid "Shared with the XMPP network" msgstr "" -#: [flag]black +#: ../cache/locales.php:571 msgid "Shared with the whole Internet" msgstr "" -#: [presence]online +#: ../cache/locales.php:572 msgid "Online" msgstr "" -#: [presence]away +#: ../cache/locales.php:573 msgid "Away" msgstr "Plecat" -#: [presence]dnd +#: ../cache/locales.php:574 msgid "Do Not Disturb" msgstr "" -#: [presence]xa +#: ../cache/locales.php:575 msgid "Extended Away" msgstr "" -#: [presence]offline +#: ../cache/locales.php:576 msgid "Offline" msgstr "" -#: [presence]error +#: ../cache/locales.php:577 msgid "Error" msgstr "" -#: [mood]afraid +#: ../cache/locales.php:578 msgid "afraid" msgstr "" -#: [mood]amazed +#: ../cache/locales.php:579 msgid "amazed" msgstr "" -#: [mood]amorous +#: ../cache/locales.php:580 msgid "amorous" msgstr "" -#: [mood]angry +#: ../cache/locales.php:581 msgid "angry" msgstr "" -#: [mood]annoyed +#: ../cache/locales.php:582 msgid "annoyed" msgstr "" -#: [mood]anxious +#: ../cache/locales.php:583 msgid "anxious" msgstr "" -#: [mood]aroused +#: ../cache/locales.php:584 msgid "aroused" msgstr "" -#: [mood]ashamed +#: ../cache/locales.php:585 msgid "ashamed" msgstr "" -#: [mood]bored +#: ../cache/locales.php:586 msgid "bored" msgstr "" -#: [mood]brave +#: ../cache/locales.php:587 msgid "brave" msgstr "" -#: [mood]calm +#: ../cache/locales.php:588 msgid "calm" msgstr "" -#: [mood]cautious +#: ../cache/locales.php:589 msgid "cautious" msgstr "" -#: [mood]cold +#: ../cache/locales.php:590 msgid "cold" msgstr "" -#: [mood]confident +#: ../cache/locales.php:591 msgid "confident" msgstr "" -#: [mood]confused +#: ../cache/locales.php:592 msgid "confused" msgstr "" -#: [mood]contemplative +#: ../cache/locales.php:593 msgid "contemplative" msgstr "" -#: [mood]contented +#: ../cache/locales.php:594 msgid "contented" msgstr "" -#: [mood]cranky +#: ../cache/locales.php:595 msgid "cranky" msgstr "" -#: [mood]crazy +#: ../cache/locales.php:596 msgid "crazy" msgstr "" -#: [mood]creative +#: ../cache/locales.php:597 msgid "creative" msgstr "" -#: [mood]curious +#: ../cache/locales.php:598 msgid "curious" msgstr "" -#: [mood]dejected +#: ../cache/locales.php:599 msgid "dejected" msgstr "" -#: [mood]depressed +#: ../cache/locales.php:600 msgid "depressed" msgstr "" -#: [mood]disappointed +#: ../cache/locales.php:601 msgid "disappointed" msgstr "" -#: [mood]disgusted +#: ../cache/locales.php:602 msgid "disgusted" msgstr "" -#: [mood]dismayed +#: ../cache/locales.php:603 msgid "dismayed" msgstr "" -#: [mood]distracted +#: ../cache/locales.php:604 msgid "distracted" msgstr "" -#: [mood]embarrassed +#: ../cache/locales.php:605 msgid "embarrassed" msgstr "" -#: [mood]envious +#: ../cache/locales.php:606 msgid "envious" msgstr "" -#: [mood]excited +#: ../cache/locales.php:607 msgid "excited" msgstr "" -#: [mood]flirtatious +#: ../cache/locales.php:608 msgid "flirtatious" msgstr "" -#: [mood]frustated +#: ../cache/locales.php:609 msgid "frustated" msgstr "" -#: [mood]grateful +#: ../cache/locales.php:610 msgid "grateful" msgstr "" -#: [mood]grieving +#: ../cache/locales.php:611 msgid "grieving" msgstr "" -#: [mood]grumpy +#: ../cache/locales.php:612 msgid "grumpy" msgstr "" -#: [mood]guilty +#: ../cache/locales.php:613 msgid "guilty" msgstr "" -#: [mood]happy +#: ../cache/locales.php:614 msgid "happy" msgstr "" -#: [mood]hopeful +#: ../cache/locales.php:615 msgid "hopeful" msgstr "" -#: [mood]hot +#: ../cache/locales.php:616 msgid "hot" msgstr "" -#: [mood]humbled +#: ../cache/locales.php:617 msgid "humbled" msgstr "" -#: [mood]humiliated +#: ../cache/locales.php:618 msgid "humiliated" msgstr "" -#: [mood]hungry +#: ../cache/locales.php:619 msgid "hungry" msgstr "" -#: [mood]hurt +#: ../cache/locales.php:620 msgid "hurt" msgstr "" -#: [mood]impressed +#: ../cache/locales.php:621 msgid "impressed" msgstr "" -#: [mood]in_awe +#: ../cache/locales.php:622 msgid "in awe" msgstr "" -#: [mood]in_love +#: ../cache/locales.php:623 msgid "in love" msgstr "" -#: [mood]indignant +#: ../cache/locales.php:624 msgid "indignant" msgstr "" -#: [mood]interested +#: ../cache/locales.php:625 msgid "interested" msgstr "" -#: [mood]intoxicated +#: ../cache/locales.php:626 msgid "intoxicated" msgstr "" -#: [mood]invincible +#: ../cache/locales.php:627 msgid "invincible" msgstr "" -#: [mood]jealous +#: ../cache/locales.php:628 msgid "jealous" msgstr "" -#: [mood]lonely +#: ../cache/locales.php:629 msgid "lonely" msgstr "" -#: [mood]lost +#: ../cache/locales.php:630 msgid "lost" msgstr "" -#: [mood]lucky +#: ../cache/locales.php:631 msgid "lucky" msgstr "" -#: [mood]mean +#: ../cache/locales.php:632 msgid "mean" msgstr "" -#: [mood]moody +#: ../cache/locales.php:633 msgid "moody" msgstr "" -#: [mood]nervous +#: ../cache/locales.php:634 msgid "nervous" msgstr "" -#: [mood]neutral +#: ../cache/locales.php:635 msgid "neutral" msgstr "" -#: [mood]offended +#: ../cache/locales.php:636 msgid "offended" msgstr "" -#: [mood]outraged +#: ../cache/locales.php:637 msgid "outraged" msgstr "" -#: [mood]playful +#: ../cache/locales.php:638 msgid "playful" msgstr "" -#: [mood]proud +#: ../cache/locales.php:639 msgid "proud" msgstr "" -#: [mood]relaxed +#: ../cache/locales.php:640 msgid "relaxed" msgstr "" -#: [mood]relieved +#: ../cache/locales.php:641 msgid "relieved" msgstr "" -#: [mood]restless +#: ../cache/locales.php:642 +msgid "remorseful" +msgstr "" + +#: ../cache/locales.php:643 msgid "restless" msgstr "" -#: [mood]sad +#: ../cache/locales.php:644 msgid "sad" msgstr "" -#: [mood]sarcastic +#: ../cache/locales.php:645 msgid "sarcastic" msgstr "" -#: [mood]satisfied +#: ../cache/locales.php:646 msgid "satisfied" msgstr "" -#: [mood]serious +#: ../cache/locales.php:647 msgid "serious" msgstr "" -#: [mood]shocked +#: ../cache/locales.php:648 msgid "shocked" msgstr "" -#: [mood]shy +#: ../cache/locales.php:649 msgid "shy" msgstr "" -#: [mood]sick +#: ../cache/locales.php:650 msgid "sick" msgstr "" -#: [mood]sleepy +#: ../cache/locales.php:651 msgid "sleepy" msgstr "" -#: [mood]spontaneous +#: ../cache/locales.php:652 msgid "spontaneous" msgstr "" -#: [mood]stressed +#: ../cache/locales.php:653 msgid "stressed" msgstr "" -#: [mood]strong +#: ../cache/locales.php:654 msgid "strong" msgstr "" -#: [mood]surprised +#: ../cache/locales.php:655 msgid "surprised" msgstr "" -#: [mood]thankful +#: ../cache/locales.php:656 msgid "thankful" msgstr "" -#: [mood]thirsty +#: ../cache/locales.php:657 msgid "thirsty" msgstr "" -#: [mood]tired +#: ../cache/locales.php:658 msgid "tired" msgstr "" -#: [mood]undefined +#: ../cache/locales.php:659 msgid "undefined" msgstr "" -#: [mood]weak +#: ../cache/locales.php:660 msgid "weak" msgstr "" -#: [mood]worried +#: ../cache/locales.php:661 msgid "worried" msgstr "" -#: [month]title +#: ../cache/locales.php:662 msgid "Month" msgstr "" -#: [month]january +#: ../cache/locales.php:663 msgid "January" msgstr "" -#: [month]february +#: ../cache/locales.php:664 msgid "February" msgstr "" -#: [month]march +#: ../cache/locales.php:665 msgid "March" msgstr "" -#: [month]april +#: ../cache/locales.php:666 msgid "April" msgstr "" -#: [month]may +#: ../cache/locales.php:667 msgid "May" msgstr "" -#: [month]june +#: ../cache/locales.php:668 msgid "June" msgstr "" -#: [month]july +#: ../cache/locales.php:669 msgid "July" msgstr "" -#: [month]august +#: ../cache/locales.php:670 msgid "August" msgstr "" -#: [month]september +#: ../cache/locales.php:671 msgid "September" msgstr "" -#: [month]october +#: ../cache/locales.php:672 msgid "October" msgstr "" -#: [month]november +#: ../cache/locales.php:673 msgid "November" msgstr "" -#: [month]december +#: ../cache/locales.php:674 msgid "December" msgstr "" -#: [year]title +#: ../cache/locales.php:675 msgid "Year" msgstr "" -#: [date]today +#: ../cache/locales.php:676 msgid "Today" msgstr "" -#: [date]tomorrow +#: ../cache/locales.php:677 msgid "Tomorrow" msgstr "" -#: [date]yesterday +#: ../cache/locales.php:678 msgid "Yesterday" msgstr "" -#: [date]ago -msgid "%d days ago" +#: ../cache/locales.php:679 +#, php-format +msgid " %d days ago" msgstr "" -#: [date]day +#: ../cache/locales.php:680 msgid "day" msgstr "" -#: [post]whats_new +#: ../cache/locales.php:682 msgid "What's new ?" msgstr "" -#: [post]place +#: ../cache/locales.php:683 msgid "Place" msgstr "" -#: [post]by +#: ../cache/locales.php:684 msgid "by" msgstr "" -#: [post]geolocalisation +#: ../cache/locales.php:685 msgid "Geolocalisation" msgstr "" -#: [post]email +#: ../cache/locales.php:686 msgid "email" msgstr "" -#: [post]no_comments +#: ../cache/locales.php:688 msgid "No comments yet" msgstr "" -#: [post]no_comments_stream +#: ../cache/locales.php:689 msgid "No comments stream" msgstr "" -#: [post]no_load +#: ../cache/locales.php:690 msgid "Your feed cannot be loaded." msgstr "" -#: [post]older +#: ../cache/locales.php:691 msgid "Get older posts" msgstr "" -#: [post]new_items +#: ../cache/locales.php:692 +#, php-format msgid "%s new items" msgstr "" -#: [post]comment_error +#: ../cache/locales.php:693 msgid "Comment publication error" msgstr "" -#: [post]comments_older +#: ../cache/locales.php:694 msgid "Show the older comments" msgstr "" -#: [post]comments_loading -msgid "Loading comments..." +#: ../cache/locales.php:695 +msgid "Loading comments ..." msgstr "" -#: [post]comments_get +#: ../cache/locales.php:696 msgid "Get the comments" msgstr "" -#: [post]comment_add +#: ../cache/locales.php:697 msgid "Add a comment" msgstr "" -#: [post]share +#: ../cache/locales.php:698 msgid "Share with" msgstr "" -#: [post]share_everyone +#: ../cache/locales.php:699 msgid "Everyone" msgstr "" -#: [post]share_your_contacts +#: ../cache/locales.php:700 msgid "Your contacts" msgstr "" -#: [post]updated +#: ../cache/locales.php:702 msgid "Updated" msgstr "" -#: [post]content_not_found +#: ../cache/locales.php:703 msgid "Content not found" msgstr "" -#: [post]default_title +#: ../cache/locales.php:704 msgid "Contact publication" msgstr "" -#: [post]comments +#: ../cache/locales.php:705 msgid "Comments" msgstr "" -#: [api]error +#: ../cache/locales.php:706 msgid "The API is not reachable, try again later" msgstr "" -#: [field]type_here +#: ../cache/locales.php:707 msgid "Type here" msgstr "" #~ msgid "Logout" #~ msgstr "Delogare" +#, php-format #~ msgid "%s - Account Creation" #~ msgstr "%s - Cont nou" @@ -2716,6 +2594,7 @@ msgstr "" #~ msgid "PHP version mismatch. Movim requires PHP 5.3 minimum." #~ msgstr "Versiune de PHP nepotrivita. Movim necesita PHP 5.3 sau mai mare." +#, php-format #~ msgid "Movim requires the %s extension." #~ msgstr "Movin necesita extensia %s." @@ -2725,24 +2604,34 @@ msgstr "" #~ msgid "Movim Installer" #~ msgstr "Instalator Movim" +#, php-format #~ msgid "Couldn't create directory '%s'." #~ msgstr "Directorul '%s' nu a putut fi creat." +#, php-format #~ msgid "Couldn't create configuration file '%s'." #~ msgstr "Fisierul de configuratie '%s' nu poate fi creat" #~ msgid "Compatibility Test" #~ msgstr "Test de compatibilitate" -#~ msgid "The following requirements were not met. Please make sure they are all satisfied in order to install Movim." -#~ msgstr "Urmatoarele cerinte nu sunt satisfacute. Asigura-te ca sunt satisfacute toate inainte sa instalezi Movim." +#~ msgid "" +#~ "The following requirements were not met. Please make sure they are all " +#~ "satisfied in order to install Movim." +#~ msgstr "" +#~ "Urmatoarele cerinte nu sunt satisfacute. Asigura-te ca sunt satisfacute " +#~ "toate inainte sa instalezi Movim." #~ msgid "User not logged in." #~ msgstr "Utilizatorul nu este logat." +#, php-format #~ msgid "Cannot open log file '%s'" #~ msgstr "Fisierul jurnal %s un a putut fi deschis." +#~ msgid "Remove this contact" +#~ msgstr "Sterge acest contact" + #~ msgid "wants to talk with you" #~ msgstr "vrea sa vorbeasca cu tine" diff --git a/sources/locales/ru.po b/sources/locales/ru.po index f32bbbe..aa794b9 100644 --- a/sources/locales/ru.po +++ b/sources/locales/ru.po @@ -1,2767 +1,2630 @@ # Russian translations for Movim package. # This file is distributed under the same license as the Movim package. # This file was translated from CodingTeam at . -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/About/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Account/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/AccountNext/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/AdHoc/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/AdminDB/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/AdminMain/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/AdminTest/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Api/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Avatar/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Blog/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Bookmark/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Chat/locales.ini -#. #-#-#-#-# 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 -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Group/locales.ini -#. #-#-#-#-# 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 -#. #-#-#-#-# 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 -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Presence/locales.ini -#. #-#-#-#-# 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 -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Share/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Statistics/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Subscribe/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Syndication/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Upload/locales.ini -#. #-#-#-#-# 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-08-20 15:17+0200\n" +"POT-Creation-Date: 2015-06-08 22:06+0200\n" "PO-Revision-Date: 2015-06-09 12:19+0000\n" "Last-Translator: Paul \n" "Language-Team: LANGUAGE \n" -"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2015-06-18 21:08+0000\n" "X-Generator: Launchpad (build 17570)\n" +"Language: \n" -#: [about]thanks +#: ../cache/locales.php:2 msgid "Thanks" msgstr "Спасибо" -#: [about]developers +#: ../cache/locales.php:3 msgid "Developers" msgstr "Разработчики" -#: [about]translators +#: ../cache/locales.php:4 msgid "Translators" msgstr "Переводчики" -#: [about]software +#: ../cache/locales.php:5 msgid "Software" msgstr "Программа" -#: [about]resources +#: ../cache/locales.php:6 msgid "Resources" msgstr "Ресурсы" -#: [about]api [schema]api [api]title +#: ../cache/locales.php:7 ../cache/locales.php:83 ../cache/locales.php:85 msgid "API" msgstr "API" -#: [about]info -msgid "Movim is an XMPP-based communication platform. All the project, except the following software and resources, is under" -msgstr "Movim — основанная на XMPP платформа для коммуникаций. Весь проект, кроме следующих программ, находится под" +#: ../cache/locales.php:8 +msgid "" +"Movim is an XMPP-based communication platform. All the project, except the " +"following software and resources, is under" +msgstr "" +"Movim — основанная на XMPP платформа для коммуникаций. Весь проект, кроме " +"следующих программ, находится под" -#: [account]title +#: ../cache/locales.php:9 msgid "Account" msgstr "" -#: [account]password_change_title -#, fuzzy -msgid "Change my password" -msgstr "Неверный пароль" - -#: [account]password [db]password [credentials]password [form]password -#: [input]password -msgid "Password" -msgstr "Пароль" - -#: [account]password_confirmation -#, fuzzy -msgid "Password confirmation" -msgstr "%s - настройки" - -#: [account]password_changed +#: ../cache/locales.php:10 msgid "The password has been updated" msgstr "" -#: [account]password_not_valid +#: ../cache/locales.php:11 msgid "Please provide a valid password (6 characters minimum)" msgstr "" -#: [account]password_not_same +#: ../cache/locales.php:12 msgid "The provided passwords are not the same" msgstr "" -#: [account]delete_title +#: ../cache/locales.php:13 msgid "Delete my account" msgstr "" -#: [account]delete -#, fuzzy -msgid "Delete your account" -msgstr "Другая учётная запись" - -#: [account]delete_text -msgid "You will delete your XMPP account and all the relative information linked to it (profile, contacts and publications)." +#: ../cache/locales.php:14 +msgid "" +"You will delete your XMPP account and all the relative information linked to " +"it (profile, contacts and publications)." msgstr "" -#: [account]delete_text_confirm +#: ../cache/locales.php:15 msgid "Are you sure that you want to delete it ?" msgstr "" -#: [account]gateway_title -msgid "Gateway" -msgstr "" - -#: [create]title [subscribe]title +#: ../cache/locales.php:16 ../cache/locales.php:411 msgid "Create a new account" msgstr "Создать новую учётную запись" -#: [create]notfound +#: ../cache/locales.php:17 msgid "No account creation form found on the server" msgstr "На сервере не найдена форма создания учетной записи" -#: [create]server_on +#: ../cache/locales.php:18 ../cache/locales.php:172 msgid "on" msgstr "на" -#: [create]successfull +#: ../cache/locales.php:19 msgid "Your acccount has been successfully registered" msgstr "Ваша учётная запись была успешно зарегистрирована" -#: [create]loading +#: ../cache/locales.php:20 msgid "Loading" msgstr "Идёт загрузка" -#: [error]not_acceptable +#: ../cache/locales.php:21 msgid "Not Acceptable" msgstr "Неприменимо" -#: [error]service_unavailable +#: ../cache/locales.php:22 msgid "The registration system of this server is currently unavailable" msgstr "Регистрация на этом сервере в данный момент недоступна" -#: [oob]about -msgid "This server use an external system for the registration, please click on the following URL." -msgstr "Серве использует внешнюю систему регистрации, пожалуйста, проследуйте по этому адресу." +#: ../cache/locales.php:23 +msgid "" +"This server use an external system for the registration, please click on the " +"following URL." +msgstr "" +"Серве использует внешнюю систему регистрации, пожалуйста, проследуйте по " +"этому адресу." -#: [adhoc]title +#: ../cache/locales.php:24 msgid "Actions" msgstr "Действия" -#: [db]legend [schema]database +#: ../cache/locales.php:25 ../cache/locales.php:82 msgid "Database" msgstr "База данных" -#: [db]connect_error +#: ../cache/locales.php:26 msgid "Modl wasn't able to connect to the database" msgstr "Modl не смог подключиться к базе данных" -#: [db]connect_success +#: ../cache/locales.php:27 msgid "Movim is connected to the database" msgstr "Movim подключился к базе данных" -#: [db]update +#: ../cache/locales.php:28 msgid "The database need to be updated" msgstr "База данных нуждается в обновление" -#: [db]up_to_date +#: ../cache/locales.php:29 msgid "Movim database is up to date" msgstr "База данных Movim обновлена" -#: [db]type +#: ../cache/locales.php:30 msgid "Database Type" msgstr "Тип базы данных" -#: [db]username [credentials]username [input]username +#: ../cache/locales.php:31 ../cache/locales.php:50 ../cache/locales.php:540 msgid "Username" msgstr "Имя пользователя" -#: [db]host +#: ../cache/locales.php:32 ../cache/locales.php:51 ../cache/locales.php:282 +#: ../cache/locales.php:541 +msgid "Password" +msgstr "Пароль" + +#: ../cache/locales.php:33 msgid "Host" msgstr "Сервер" -#: [db]port +#: ../cache/locales.php:34 msgid "Port" msgstr "Порт" -#: [db]name -#, fuzzy -msgid "Database sName" +#: ../cache/locales.php:35 +msgid "Database Name" msgstr "Имя базы данных" -#: [admin]general +#: ../cache/locales.php:36 msgid "General Settings" msgstr "Общие параметры" -#: [general]theme +#: ../cache/locales.php:37 msgid "Theme" msgstr "Тема" -#: [general]language +#: ../cache/locales.php:38 msgid "Default language" msgstr "Язык по-умолчанию" -#: [general]log_verbosity +#: ../cache/locales.php:39 +msgid "Environment" +msgstr "Окружение" + +#: ../cache/locales.php:40 msgid "Log verbosity" msgstr "Детализация лога" -#: [general]timezone +#: ../cache/locales.php:41 msgid "Server Timezone" msgstr "Часовой пояс сервера" -#: [general]limit +#: ../cache/locales.php:42 msgid "User folder size limit (in bytes)" msgstr "Предельный размер папки пользователя (в байтах)" -#: [websocket]title +#: ../cache/locales.php:43 msgid "WebSocket Configuration" msgstr "Конфигурация WebSocket" -#: [websocket]info +#: ../cache/locales.php:44 msgid "Enter here a valid WebSocket URI in the form" msgstr "Введите верный WebSocket URI в форму" -#: [websocket]label +#: ../cache/locales.php:45 msgid "WebSocket URI" msgstr "WebSocket URI" -#: [websocket]save_info -msgid "If you change the URI, please restart the daemon to reload the configuration" -msgstr "Если вы изменили URI, пожалуйста, перезапустите демон для перезагрузки конфигурации" +#: ../cache/locales.php:46 +msgid "" +"If you change the URI, please restart the daemon to reload the configuration" +msgstr "" +"Если вы изменили URI, пожалуйста, перезапустите демон для перезагрузки " +"конфигурации" -#: [websocket]publics +#: ../cache/locales.php:47 msgid "Public WebSockets" msgstr "Публичные WebSockets" -#: [credentials]title +#: ../cache/locales.php:48 msgid "Administration Credential" msgstr "Управление учетными данными" -#: [credentials]info +#: ../cache/locales.php:49 msgid "Change the default credentials admin/password" msgstr "Изменение учетных данных по умолчанию admin/password" -#: [credentials]re_password +#: ../cache/locales.php:52 msgid "Retype password" msgstr "Введите пароль ещё раз" -#: [whitelist]title +#: ../cache/locales.php:53 msgid "Whitelist - XMPP Server" msgstr "Белый список - XMPP Сервер" -#: [whitelist]info1 -msgid "If you want to specify a list of authorized XMPP servers on your Movim pod and forbid the connection on all the others please put their domain name here, with comma (ex: movim.eu,jabber.fr)" -msgstr "Если вы хотите задать список авторизованных XMPP серверов в вашей Movim модуле и запретить подключение всех остальных поставьте их доменное имя здесь, с запятой (например: movim.eu, jabber.fr)" +#: ../cache/locales.php:54 +msgid "" +"If you want to specify a list of authorized XMPP servers on your Movim pod " +"and forbid the connection on all the others please put their domain name " +"here, with comma (ex: movim.eu,jabber.fr)" +msgstr "" +"Если вы хотите задать список авторизованных XMPP серверов в вашей Movim " +"модуле и запретить подключение всех остальных поставьте их доменное имя " +"здесь, с запятой (например: movim.eu, jabber.fr)" -#: [whitelist]info2 -msgid "Leave this field blank if you allow the access to all the XMPP accounts." -msgstr "Оставьте это поле пустым, если вы позволите доступ ко всем XMPP аккаунтам." +#: ../cache/locales.php:55 +msgid "" +"Leave this field blank if you allow the access to all the XMPP accounts." +msgstr "" +"Оставьте это поле пустым, если вы позволите доступ ко всем XMPP аккаунтам." -#: [whitelist]label +#: ../cache/locales.php:56 msgid "List of whitelisted XMPP servers" msgstr "Белый список серверов XMPP" -#: [information]title -#, fuzzy -msgctxt "[information]title" +#: ../cache/locales.php:57 ../cache/locales.php:61 msgid "Information Message" msgstr "Информационное сообщение" -#: [information]description +#: ../cache/locales.php:58 msgid "Description" msgstr "Описание" -#: [information]info1 +#: ../cache/locales.php:59 msgid "This message will be displayed on the login page" msgstr "Это сообщение будет отображаться на странице входа" -#: [information]info2 -#, fuzzy -msgid "Leave this field blank if you dont want to show any message." -msgstr "Оставьте это поле пустым, если ты не хочешь показывать любое сообщение." +#: ../cache/locales.php:60 +msgid "Leave this field blank if you don't want to show any message." +msgstr "" +"Оставьте это поле пустым, если ты не хочешь показывать любое сообщение." -#: [information]label -#, fuzzy -msgctxt "[information]label" -msgid "Information Message" -msgstr "Информационное сообщение" - -#: [log]empty +#: ../cache/locales.php:62 msgid "Empty" msgstr "Пусто" -#: [log]syslog +#: ../cache/locales.php:63 msgid "Syslog" msgstr "Syslog" -#: [log]syslog_files +#: ../cache/locales.php:64 msgid "Syslog and files" msgstr "Syslog и файлы" -#: [rewrite]title +#: ../cache/locales.php:65 msgid "URL Rewriting" msgstr "" -#: [rewrite]info +#: ../cache/locales.php:66 msgid "The URL Rewriting can be enabled" msgstr "" -#: [admin]compatibility +#: ../cache/locales.php:67 msgid "General Overview" msgstr "Общие сведения" -#: [compatibility]info -msgid "Movim has found some issues or things that need to be fixed or improved" -msgstr "Movim обнаружил проблемы или вещи, которые должны быть исправлены или улучшены" +#: ../cache/locales.php:68 +msgid "" +"Movim has found some issues or things that need to be fixed or improved" +msgstr "" +"Movim обнаружил проблемы или вещи, которые должны быть исправлены или " +"улучшены" -#: [compatibility]php1 +#: ../cache/locales.php:69 +#, php-format msgid "Update your PHP-Version: %s" msgstr "Обновите вашу версию PHP: %s" -#: [compatibility]php2 +#: ../cache/locales.php:70 msgid "Required: 5.3.0" msgstr "Необходима: 5.3.0" -#: [compatibility]curl +#: ../cache/locales.php:71 msgid "Install the php5-curl library" msgstr "Установите библиотеку php5-curl" -#: [compatibility]imagick +#: ../cache/locales.php:72 msgid "Install the php5-imagick library" msgstr "" -#: [compatibility]gd +#: ../cache/locales.php:73 msgid "Install the php5-gd library" msgstr "" -#: [compatibility]rights -#, fuzzy -msgid "Read and write rights for the webserver in Movims root directory" +#: ../cache/locales.php:74 +msgid "Read and write rights for the webserver in Movim's root directory" msgstr "Права на чтение и запись на веб-сервере для корневого каталога Movim" -#: [compatibility]rewrite +#: ../cache/locales.php:75 msgid "The URL Rewriting support is currently disabled" msgstr "Поддержка URL Rewrite, на текущий момент, отключена" -#: [compatibility]db +#: ../cache/locales.php:76 msgid "The database need to be updated, go to the database panel to fix this" msgstr "" -#: [compatibility]websocket -msgid "WebSocket connection error, check if the Movim Daemon is running and is reachable" +#: ../cache/locales.php:77 +msgid "" +"WebSocket connection error, check if the Movim Daemon is running and is " +"reacheable" msgstr "" -#: [compatibility]xmpp_websocket -msgid "XMPP Websocket connection error, please check the validity of the URL given in the General Configuration" +#: ../cache/locales.php:78 +msgid "" +"XMPP Websocket connection error, please check the validity of the URL given " +"in the General Configuration" msgstr "" -#: [schema]browser +#: ../cache/locales.php:79 msgid "Browser" msgstr "" -#: [schema]movim +#: ../cache/locales.php:80 msgid "Movim Core" msgstr "" -#: [schema]daemon +#: ../cache/locales.php:81 msgid "Movim Daemon" msgstr "" -#: [schema]xmpp +#: ../cache/locales.php:84 msgid "XMPP" msgstr "" -#: [api]info -msgid "Here you can register your pod on the official %sMovim API%s and be listed on %sthe pods page%s." -msgstr "Здесь Вы можете зарегистрировать свою установку Movim в %sMovim API%s с упомянанием на %sстранице установок%s." +#: ../cache/locales.php:86 +#, php-format +msgid "" +"Here you can register your pod on the official %sMovim API%s and be listed " +"on %sthe pods page%s." +msgstr "" +"Здесь Вы можете зарегистрировать свою установку Movim в %sMovim API%s с " +"упомянанием на %sстранице установок%s." -#: [api]register +#: ../cache/locales.php:87 msgid "Your pod is not registered on the API" msgstr "Ваша установка не зарегистрирована в API" -#: [api]registered +#: ../cache/locales.php:88 msgid "Your pod is registered on the API" msgstr "Ваша установка зарегистрирована в API" -#: [api]wait +#: ../cache/locales.php:89 msgid "Your pod is not yet validated" msgstr "Ваша установка не прошла проверку" -#: [api]validated +#: ../cache/locales.php:90 msgid "Your pod is validated" msgstr "Ваша установка прошла проверку" -#: [api]unregister -msgid "You asked to be removed from the API, this request will be processed in a couple of hours" -msgstr "Вы запросили удаление из API, данный запрос будет выполнен в течение нескольких часов" +#: ../cache/locales.php:91 +msgid "" +"You asked to be removed from the API, this request will be processed in a " +"couple of hours" +msgstr "" +"Вы запросили удаление из API, данный запрос будет выполнен в течение " +"нескольких часов" -#: [api]conf_updated [config]updated +#: ../cache/locales.php:92 ../cache/locales.php:147 msgid "Configuration updated" msgstr "Конфигурация обновлена" -#: [avatar]file +#: ../cache/locales.php:93 msgid "File" msgstr "" -#: [avatar]use_it +#: ../cache/locales.php:94 msgid "Use it" msgstr "" -#: [avatar]webcam +#: ../cache/locales.php:95 msgid "Webcam" msgstr "Веб-камера" -#: [avatar]cheese +#: ../cache/locales.php:96 msgid "Cheese !" msgstr "Сыыр!" -#: [avatar]snapshot +#: ../cache/locales.php:97 msgid "Take a webcam snapshot" msgstr "Сделать фотографиюс помощью веб-камеры" -#: [avatar]updated +#: ../cache/locales.php:98 msgid "Avatar Updated" msgstr "Аватара обновлена" -#: [avatar]not_updated +#: ../cache/locales.php:99 msgid "Avatar Not Updated" msgstr "Аватара не обновлена" -#: [blog]title [feed]title +#: ../cache/locales.php:100 ../cache/locales.php:415 +#, php-format msgid "%s's feed" msgstr "лента пользователя %s" -#: [blog]empty +#: ../cache/locales.php:101 msgid "This user has not posted anything right now" msgstr "" -#: [title]conferences +#: ../cache/locales.php:102 msgid "Conferences" msgstr "Конференции" -#: [title]groups [group]empty_title [menu]groups [page]groups +#: ../cache/locales.php:103 ../cache/locales.php:193 ../cache/locales.php:217 +#: ../cache/locales.php:468 msgid "Groups" msgstr "Группы" -#: [chatroom]add +#: ../cache/locales.php:104 msgid "Add a new Chat Room" msgstr "Создать Беседку" -#: [chatroom]id [chatrooms]id +#: ../cache/locales.php:105 ../cache/locales.php:368 msgid "Chat Room ID" msgstr "ID Беседки" -#: [chatroom]name -#, fuzzy -msgctxt "[chatroom]name" +#: ../cache/locales.php:106 ../cache/locales.php:116 ../cache/locales.php:156 +#: ../cache/locales.php:361 ../cache/locales.php:369 ../cache/locales.php:424 msgid "Name" msgstr "Имя" -#: [chatroom]nickname [general]nickname [chatrooms]nickname +#: ../cache/locales.php:107 ../cache/locales.php:157 ../cache/locales.php:371 +#: ../cache/locales.php:425 msgid "Nickname" msgstr "Псевдоним" -#: [chatroom]autojoin_label +#: ../cache/locales.php:108 msgid "Do you want do join automaticaly this Chat Room ?" msgstr "Хотите автоматически войти в эту Беседку?" -#: [chatroom]bad_id [chatrooms]bad_id +#: ../cache/locales.php:109 ../cache/locales.php:372 msgid "Bad Chatroom ID" msgstr "Неверный ID Беседки" -#: [chatroom]empty_name [chatrooms]empty_name +#: ../cache/locales.php:110 ../cache/locales.php:373 msgid "Empty name" msgstr "Имя не задано" -#: [bookmarks]updated +#: ../cache/locales.php:111 ../cache/locales.php:380 msgid "Bookmarks updated" msgstr "Закладки обновлены" -#: [bookmarks]error -#, fuzzy -msgid "An error occured :" +#: ../cache/locales.php:112 +msgid "An error occured : " msgstr "Произошла ошибка: " -#: [bookmarks]configure +#: ../cache/locales.php:113 msgid "Configure" msgstr "Настройка" -#: [url]add +#: ../cache/locales.php:114 msgid "Add a new URL" msgstr "Добавить новый URL" -#: [url]url +#: ../cache/locales.php:115 msgid "URL" msgstr "URL" -#: [url]name -#, fuzzy -msgctxt "[url]name" -msgid "Name" -msgstr "Имя" - -#: [message]published +#: ../cache/locales.php:117 msgid "Message Published" msgstr "Сообщение опубликовано" -#: [message]encrypted +#: ../cache/locales.php:118 ../cache/locales.php:138 msgid "Encrypted message" msgstr "Зашифрованное сообщение" -#: [message]composing [chats]composing +#: ../cache/locales.php:119 msgid "Composing..." msgstr "Печатает..." -#: [message]paused [chats]paused +#: ../cache/locales.php:120 msgid "Paused..." msgstr "Пауза..." -#: [message]gone +#: ../cache/locales.php:121 msgid "Contact gone" msgstr "" -#: [chat]attention +#: ../cache/locales.php:122 +#, php-format msgid "%s needs your attention" msgstr "%s нуждается в Вашем внимании" -#: [chat]placeholder +#: ../cache/locales.php:123 msgid "Your message here..." msgstr "Введите ваше сообщение здесь..." -#: [chat]smileys +#: ../cache/locales.php:124 msgid "Smileys" msgstr "Смайлики" -#: [chat]empty_title [button]chat +#: ../cache/locales.php:125 ../cache/locales.php:139 msgid "Chat" msgstr "Чат" -#: [chat]empty_text +#: ../cache/locales.php:126 msgid "Discuss with your contacts" msgstr "Обсудить с вашими контактами" -#: [chat]frequent [chats]frequent -msgid "Frequent contacts" -msgstr "" - -#: [chatroom]members +#: ../cache/locales.php:127 msgid "Members" msgstr "" -#: [chatroom]connected [chatrooms]connected +#: ../cache/locales.php:128 ../cache/locales.php:376 msgid "Connected to the chatroom" msgstr "Подключились к Беседке" -#: [chatroom]disconnected [chatrooms]disconnected +#: ../cache/locales.php:129 ../cache/locales.php:377 msgid "Disconnected from the chatroom" msgstr "Отключились от Беседки" -#: [chatroom]config [group]configuration [page]configuration +#: ../cache/locales.php:130 ../cache/locales.php:200 ../cache/locales.php:469 msgid "Configuration" msgstr "Настройки" -#: [chatroom]config_saved +#: ../cache/locales.php:131 msgid "Configuration saved" msgstr "" -#: [chatroom]subject +#: ../cache/locales.php:132 msgid "Subject" msgstr "" -#: [chatroom]subject_changed +#: ../cache/locales.php:133 msgid "Subject changed" msgstr "" -#: [chats]empty_title -msgid "No chats yet..." +#: ../cache/locales.php:134 +msgid "Open a new conversation by clicking on the plus button bellow" msgstr "" -#: [chats]empty -msgid "Open a new conversation by clicking on the plus button bellow or visit the Contacts page." -msgstr "" - -#: [chats]add +#: ../cache/locales.php:135 msgid "Chat with a contact" msgstr "Пообщаться с контактом" -#: [chats]more +#: ../cache/locales.php:136 +msgid "Frequent contacts" +msgstr "" + +#: ../cache/locales.php:137 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 "Сообщения" - -#: [config]general +#: ../cache/locales.php:140 msgid "General" msgstr "Общие" -#: [config]language +#: ../cache/locales.php:141 msgid "Language" msgstr "Язык" -#: [config]roster +#: ../cache/locales.php:142 msgid "Roster display" msgstr "" -#: [config]roster_show +#: ../cache/locales.php:143 msgid "Show the offline contacts" msgstr "" -#: [config]roster_hide +#: ../cache/locales.php:144 msgid "Hide the offline contacts" msgstr "" -#: [config]appearence +#: ../cache/locales.php:145 msgid "Appearence" msgstr "Внешний вид" -#: [config]info -#, fuzzy -msgid "This configuration is shared wherever you are connected" +#: ../cache/locales.php:146 +msgid "This configuration is shared wherever you are connected !" msgstr "Эта конфигурация действительна откуда бы Вы не подключились" -#: [notifications]message +#: ../cache/locales.php:148 msgid "Notify on incoming message" msgstr "Оповещать о входящих сообщениях" -#: [notifications]desktop +#: ../cache/locales.php:149 msgid "Use desktop notifications" msgstr "Использовать оповещения ОС" -#: [general]legend [general]general_title +#: ../cache/locales.php:150 +msgid "Data" +msgstr "Данные" + +#: ../cache/locales.php:151 +msgid "Cache" +msgstr "Кэш" + +#: ../cache/locales.php:152 ../cache/locales.php:218 ../cache/locales.php:466 +msgid "Contacts" +msgstr "Контакты" + +#: ../cache/locales.php:153 ../cache/locales.php:480 +msgid "Posts" +msgstr "Записи" + +#: ../cache/locales.php:154 +msgid "Messages" +msgstr "Сообщения" + +#: ../cache/locales.php:155 ../cache/locales.php:423 msgid "General Informations" msgstr "Общая информация" -#: [general]name [public_groups]name [chatrooms]name -msgid "Name" -msgstr "Имя" - -#: [general]date_of_birth +#: ../cache/locales.php:158 ../cache/locales.php:427 msgid "Date of Birth" msgstr "Дата рождения" -#: [general]gender +#: ../cache/locales.php:159 ../cache/locales.php:428 msgid "Gender" msgstr "Пол" -#: [general]marital +#: ../cache/locales.php:160 ../cache/locales.php:429 msgid "Marital Status" msgstr "Семейное положение" -#: [general]email +#: ../cache/locales.php:161 ../cache/locales.php:426 msgid "Email" msgstr "Эл. почта" -#: [general]website +#: ../cache/locales.php:162 ../cache/locales.php:430 msgid "Website" msgstr "Веб-сайт" -#: [general]about +#: ../cache/locales.php:163 ../cache/locales.php:431 msgid "About Me" msgstr "О себе" -#: [general]accounts +#: ../cache/locales.php:164 msgid "Other Accounts" msgstr "Другие учётные записи" -#: [general]tune +#: ../cache/locales.php:165 msgid "Is Listening" msgstr "" -#: [position]legend [position]position_title +#: ../cache/locales.php:166 ../cache/locales.php:432 msgid "Geographic Position" msgstr "Географическое расположение" -#: [position]locality +#: ../cache/locales.php:167 ../cache/locales.php:433 msgid "Locality" msgstr "Местоположение" -#: [position]country +#: ../cache/locales.php:168 ../cache/locales.php:434 msgid "Country" msgstr "Страна" -#: [mood]title +#: ../cache/locales.php:169 msgid "Mood" msgstr "Настроение" -#: [mood]im +#: ../cache/locales.php:170 msgid "I'm " msgstr "Я " -#: [listen]title +#: ../cache/locales.php:171 msgid "Listening" msgstr "Слушаю" -#: [last]title +#: ../cache/locales.php:173 msgid "Last seen" msgstr "Последнее посещение" -#: [client]title +#: ../cache/locales.php:174 msgid "Client Informations" msgstr "Информация о клиенте" -#: [explore]last_registered +#: ../cache/locales.php:175 msgid "Last registered" msgstr "Последний зарегестрированый" -#: [explore]explore +#: ../cache/locales.php:176 msgid "Find some new friends" msgstr "" -#: [edit]title [button]edit +#: ../cache/locales.php:177 ../cache/locales.php:533 msgid "Edit" msgstr "Редактировать" -#: [edit]alias +#: ../cache/locales.php:178 msgid "Alias" msgstr "привязка" -#: [edit]group +#: ../cache/locales.php:179 msgid "Group" msgstr "Группа" -#: [edit]updated [roster]updated +#: ../cache/locales.php:180 ../cache/locales.php:400 msgid "Contact updated" msgstr "Контакты обновлены" -#: [delete]title +#: ../cache/locales.php:181 msgid "Are you sure?" msgstr "Вы уверены?" -#: [delete]text -msgid "You are going to delete one of your contacts, please confirm your action" -msgstr "Вы собираетесь удалить один из ваших контактов. Пожалуйста, подтвердите это." +#: ../cache/locales.php:182 +msgid "" +"You are going to delete one of your contacts, please confirm your action" +msgstr "" +"Вы собираетесь удалить один из ваших контактов. Пожалуйста, подтвердите это." -#: [age]years +#: ../cache/locales.php:183 +#, php-format msgid "%s years" msgstr "" -#: [blog]last +#: ../cache/locales.php:184 msgid "Last public post" msgstr "" -#: [subscription]to -#, fuzzy -msgid "You can see this contact status" -msgstr "Нет публичной ленты для этого контакта" - -#: [subscription]to_button -msgid "Share my status" -msgstr "" - -#: [subscription]to_text -msgid "But this contact cannot see yours" -msgstr "" - -#: [subscription]from -#, fuzzy -msgid "You are not subscribed to this contact" -msgstr "Нет публичной ленты для этого контакта" - -#: [subscription]from_button -#, fuzzy -msgid "Ask to subscribe" -msgstr "Отписаться" - -#: [subscription]from_text -msgid "But this contact can still see if you are online" -msgstr "" - -#: [subscription]nil -#, fuzzy -msgid "No subscriptions" -msgstr "Подписки" - -#: [subscription]nil_button -msgid "Invite" -msgstr "" - -#: [subscription]nil_text -msgid "This contact is in your contact list but there is no subscriptions between the two accounts" -msgstr "" - -#: [group]subscribe +#: ../cache/locales.php:185 msgid "Subscribe" msgstr "Подписаться" -#: [group]subscribed +#: ../cache/locales.php:186 msgid "Subscribed" msgstr "Подписано" -#: [group]unsubscribe +#: ../cache/locales.php:187 msgid "Unsubscribe" msgstr "Отписаться" -#: [group]unsubscribe_text +#: ../cache/locales.php:188 msgid "You are going to unsubscribe from this Group" msgstr "" -#: [group]unsubscribed +#: ../cache/locales.php:189 msgid "Unsubscribed" msgstr "" -#: [group]share_label +#: ../cache/locales.php:190 msgid "Make your membership to this group public to your friends" msgstr "Раскрыть ваше членство в данной группе вашим друзьям" -#: [group]label_label +#: ../cache/locales.php:191 msgid "Give a label for this group" msgstr "" -#: [group]sure +#: ../cache/locales.php:192 msgid "Are you sure ?" msgstr "Вы уверены?" -#: [group]empty_text +#: ../cache/locales.php:194 msgid "Discover, follow and share" msgstr "" -#: [group]empty +#: ../cache/locales.php:195 msgid "Something bad happened to this group" msgstr "" -#: [group]config_saved +#: ../cache/locales.php:196 msgid "Group configuration saved" msgstr "Настройки группы сохранены" -#: [group]delete_title +#: ../cache/locales.php:197 msgid "Delete the group" msgstr "" -#: [group]delete_text -msgid "You are going to delete the following group. Please confirm your action." +#: ../cache/locales.php:198 +msgid "" +"You are going to delete the following group. Please confirm your action." msgstr "" -#: [group]delete_clean_text -msgid "It seems that this group doesn't exists anymore. Do you want to remove it from your subscriptions?" +#: ../cache/locales.php:199 +msgid "" +"It seems that this group doesn't exists anymore. Do you want to remove it " +"from your subscriptions?" msgstr "" -#: [group]counter -msgid "%s groups on this server" -msgstr "" - -#: [group]subscriptions [statistics]subscriptions +#: ../cache/locales.php:201 ../cache/locales.php:408 msgid "Subscriptions" msgstr "Подписки" -#: [group]servers -#, fuzzy -msgid "Groups servers" -msgstr "Группы" - -#: [group]search_server -msgid "Search for a new server" -msgstr "" - -#: [group]help_info1 -msgid "Groups are the perfect way to share posts about topics that you like with all the other Movim's users." -msgstr "" - -#: [group]help_info2 -msgid "Choose a server and a Group and subscribe to it using the %s button in the header. You can also create a new one using the %s button." -msgstr "" - -#: [group]help_info3 -msgid "Done? You can now publish a new post in the Group by using the %s button." -msgstr "" - -#: [group]help_info4 -msgid "You will find a list of all your subscribed Groups in My Subscriptions and receive instantly all the new incoming posts in the %sNews%s page." -msgstr "" - -#: [groups]empty_title +#: ../cache/locales.php:202 ../cache/locales.php:290 msgid "Hello" msgstr "Здравствуйте" -#: [groups]contact_post [hello]contact_post [menu]contact_post +#: ../cache/locales.php:203 ../cache/locales.php:225 ../cache/locales.php:291 msgid "Contact post" msgstr "Для связи" -#: [groups]empty_text1 -msgid "You don't have any subscriptions yet, select a group server above to start exploring." +#: ../cache/locales.php:204 +msgid "" +"You don't have any subscriptions yet, select a group server above to start " +"exploring." msgstr "" -#: [groups]empty_text2 +#: ../cache/locales.php:205 msgid "Subscribe to your favorite feeds by bookmarking them." msgstr "" -#: [groups]subscriptions +#: ../cache/locales.php:206 msgid "My Subscriptions" msgstr "" -#: [groups]add +#: ../cache/locales.php:207 msgid "Create a new Group" msgstr "" -#: [groups]name +#: ../cache/locales.php:208 msgid "Group name" msgstr "" -#: [groups]name_example +#: ../cache/locales.php:209 msgid "My Little Pony - Fan Club" msgstr "My Little Pony -Фан Клуб" -#: [groups]created +#: ../cache/locales.php:210 msgid "Group created successfully" msgstr "" -#: [groups]deleted +#: ../cache/locales.php:211 msgid "Group deleted successfully" msgstr "" -#: [groups]name_error +#: ../cache/locales.php:212 msgid "Please provide a valid group name (4 characters minimum)" msgstr "" -#: [groups]no_creation +#: ../cache/locales.php:213 msgid "You cannot create a new Group on this server" msgstr "" -#: [groups]sub +#: ../cache/locales.php:214 +#, php-format msgid "%s subscribers" msgstr "" -#: [groups]num +#: ../cache/locales.php:215 +#, php-format msgid "%s posts" msgstr "" -#: [groups]disco_error -#, fuzzy -msgid "This server doesn't exists" -msgstr "На этом сервере %s аккаунтов" - -#: [menu]all +#: ../cache/locales.php:216 msgid "All" msgstr "Все" -#: [menu]refresh +#: ../cache/locales.php:219 msgid "Refresh all the streams" msgstr "Обновить все потоки" -#: [roster]search -#, fuzzy -msgid "Search in your contacts" -msgstr "Обсудить с вашими контактами" - -#: [hello]active_contacts -#, fuzzy -msgid "Active contacts" -msgstr "Ваши контакты" - -#: [hello]chat -msgid "Go on the Chat page" -msgstr "" - -#: [hello]news [page]news -msgid "News" -msgstr "Новости" - -#: [hello]news_page -msgid "Read all theses articles on the News page" -msgstr "" - -#: [hello]blog_title -msgid "Visit your public blog" -msgstr "" - -#: [hello]blog_text -msgid "See your public posts and share them with all your contacts" -msgstr "" - -#: [hello]share_title -msgid "Universal share button" -msgstr "" - -#: [hello]share_text -msgid "Bookmark or drag and drop the following button in your toolbar and use it on all the pages you want to share on Movim" -msgstr "" - -#: [hello]share_button -msgid "Share on Movim" -msgstr "" - -#: [help]faq -msgid "Frequently Asked Questions" -msgstr "Часто Задаваемые Вопросы (FAQ)" - -#: [banner]title -msgid "What do the little banners refer to ?" -msgstr "Зачем нужны небольшие баннеры?" - -#: [banner]info1 -msgid "Thanks to these five little banners, you can quickly identitfy the level of confdentiality applied to the information you provide." -msgstr "при помощи этих пяти небольших баннеров Вы можете быстро определить уровень конфиденциальности информации, которую вы представляете" - -#: [banner]white -msgid "White, only you can see the information" -msgstr "Белый: только вы можете видеть эту информацию" - -#: [banner]green -msgid "Green, you have chosen some contacts who can see your information" -msgstr "Зеленый: вы выбрали несколько своих контактов, которые увидят эту информацию" - -#: [banner]orange -msgid "Orange, all your contact list can see your information" -msgstr "Оранжевый: все из вашего контактного листа могут видеть эту информацию" - -#: [banner]red -msgid "Red, everybody in the XMPP network can see your information" -msgstr "Красный: любой в сети ХМРР может видеть вашу информацию" - -#: [banner]black -msgid "Black, the whole Internet can see your information" -msgstr "Черный: весь Интернет может видеть вашу информацию" - -#: [wiki]question -msgid "Looking for some documentation ?" -msgstr "Ищите документацию?" - -#: [wiki]button -msgid "Read the Wiki" -msgstr "Почитать Wiki" - -#: [ml]question -msgid "Talk with us by email ?" -msgstr "Желаете связаться с нами по email?" - -#: [ml]button -msgid "Join the Mailing List" -msgstr "Присоединиться к списку рассылки" - -#: [chatroom]question -msgid "Chat with the team ?" -msgstr "Желаете пообщаться с нашей командой?" - -#: [chatroom]button -msgid "Join the Chatroom" -msgstr "Присоединиться к конференции" - -#: [init]location -msgid "Location node created" -msgstr "Создан узел геолокации" - -#: [init]bookmark -msgid "Bookmark node created" -msgstr "Создан узел закладок" - -#: [init]vcard4 -msgid "Profile node created" -msgstr "Создан узел профиля" - -#: [init]avatar -msgid "Avatar node created" -msgstr "Создан узел аватара" - -#: [init]subscriptions -msgid "Subscriptions node created" -msgstr "Создан узел подписок" - -#: [init]microblog -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 "Неверное имя пользователя" - -#: [error]jid -msgid "Invalid JID" -msgstr "Недействительный JID" - -#: [error]empty_challenge -msgid "Empty Challenge from the server" -msgstr "Пустая Соль пришла с сервера" - -#: [error]dns -msgid "XMPP Domain error, your account is not a correct Jabber ID" -msgstr "Ошибочный XMPP домен, недопустимый JID в вашей учетной записи" - -#: [error]data_missings -msgid "Some data are missing !" -msgstr "Некоторые данные утеряны !" - -#: [error]wrong_password -msgid "Wrong password" -msgstr "Неверный пароль" - -#: [error]internal -msgid "Internal server error" -msgstr "Внутренняя ошибка сервера" - -#: [error]session -msgid "Session error" -msgstr "Ошибка сеанса" - -#: [error]account_created -msgid "Account successfully created" -msgstr "Учётная запись успешно создана" - -#: [error]xmpp_unauthorized -#, fuzzy -msgctxt "[error]xmpp_unauthorized" -msgid "Your XMPP server is unauthorized" -msgstr "Ваш XMPP-сервер не авторизован" - -#: [error]mec_error -msgid "The server takes too much time to respond" -msgstr "Сервер потребовал слишком много времени на ответ" - -#: [error]too_old -msgid "Your web browser is too old to use with Movim." -msgstr "Версия вашего браузера устарела для использования с Movin" - -#: [error]websocket -msgid "Movim cannot talk with the server, please try again later (Websocket connection error)" -msgstr "Movim не может связаться с сервером, пожалуйста, попробуйте снова попозже (Ошибка соединения с Websocket)" - -#: [error]impossible -msgid "Impossible login" -msgstr "" - -#: [error]title -msgid "Oops!" -msgstr "Упс!" - -#: [error]default [visio]unknown_error -msgid "Unknown error" -msgstr "Неизвестная ошибка" - -#: [error]login_format -msgid "Invalid username format" -msgstr "" - -#: [error]password_format -msgid "Invalid password format" -msgstr "" - -#: [error]unauthorized -#, fuzzy -msgctxt "[error]unauthorized" -msgid "Your XMPP server is unauthorized" -msgstr "Ваш XMPP-сервер не авторизован" - -#: [error]conflict -msgid "A Movim session is already open on an other device" -msgstr "" - -#: [error]wrong_account -msgid "Movim failed to authenticate. You entered wrong data" -msgstr "Идентификация в Movim неудалась. Вы ввели неверные данные." - -#: [error]mechanism -msgid "Authentication mechanism not supported by Movim" -msgstr "Данный механизм аутентификации не поддерживается Movim" - -#: [error]fail_auth -msgid "The XMPP authentification failed" -msgstr "XMPP-аутентификация не прошла" - -#: [account]title [accounts]accounts_title -msgid "Accounts" -msgstr "Учётные записи" - -#: [form]username -msgid "My address" -msgstr "Мой адрес" - -#: [form]create_one -msgid "Create one !" -msgstr "Создайте учетную запись!" - -#: [form]another_account -msgid "Another account" -msgstr "Другая учётная запись" - -#: [form]no_account -msgid "No account yet ?" -msgstr "Еще нет учетной записи?" - -#: [form]whitelist.info -msgid "You can login with accounts from theses servers" -msgstr "" - -#: [form]connected -msgid "Connected" -msgstr "Соединение установлено" - -#: [form]population -msgid "Population" -msgstr "Население" - -#: [menu]empty_title -msgid "No news yet..." -msgstr "" - -#: [menu]empty -#, fuzzy -msgid "Welcome on your news feed, here you will see all the posts published by your contacts and in the groups you have subscribed." -msgstr "Добро пожаловать в вашу новостную ленту, здесь вы увидите все записи, опубликованные в группах, на которые вы подписаны" - -#: [menu]refresh -msgid "Refreshing all the streams" -msgstr "Обновляются все потоки" - -#: [menu]public -msgid "This post is public" -msgstr "" - -#: [affiliations]title -msgid "Manage your members" -msgstr "Управление позицией пользователей" - -#: [affiliations]get -msgid "Get the members" -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 "Подписки сохранены" - -#: [notifs]title -msgid "Pending Invitations" -msgstr "Ожидающие решения приглашения" - -#: [notifs]wants_to_talk -msgid "%s wants to talk with you" -msgstr "%s хочет поговорить с Вами" - -#: [notifs]manage -msgid "Manage" -msgstr "Управлять" - -#: [post]news_feed -msgid "News Feed" -msgstr "Новостная лента" - -#: [post]placeholder -msgid "Discover and register to the groups you are interested in" -msgstr "Найдите и зарегистрируйтесь в интересных вам группах" - -#: [post]preview [page]preview -msgid "Preview" -msgstr "Предпросмотр" - -#: [post]help [page]help -msgid "Help" -msgstr "Помощь" - -#: [post]help_more -msgid "More help" -msgstr "" - -#: [post]help_manual -msgid "Markdown syntax manual" -msgstr "" - -#: [post]title -msgid "Title" -msgstr "Название" - -#: [post]content -msgid "Content" -msgstr "" - -#: [post]link -msgid "Link" -msgstr "Ссылка" - -#: [post]tags -msgid "Tags" -msgstr "" - -#: [post]valid_url [publish]valid_url -msgid "Please enter a valid url" -msgstr "" - -#: [post]no_content_preview [publish]no_content_preview -msgid "No content to preview" -msgstr "" - -#: [post]no_content [publish]no_content [post]empty -msgid "No content" -msgstr "Нет данных" - -#: [post]published -msgid "Post published" -msgstr "" - -#: [post]deleted -msgid "Post deleted" -msgstr "" - -#: [post]gallery -msgid "This picture will be added to your gallery" -msgstr "" - -#: [post]hot -msgid "What's Hot" -msgstr "Что актуально" - -#: [post]hot_text -msgid "Posts recently published in Groups that you are not subscribed (yet)" -msgstr "" - -#: [post]new [publish]new -msgid "New post" -msgstr "" - -#: [post]embed_tip -msgid "You can also use services like Imgur or Flickr to host your picture and paste the link here." -msgstr "" - -#: [post]repost -msgid "This is a re-post from %s" -msgstr "" - -#: [post]repost_profile -msgid "See %s profile" -msgstr "" - -#: [post]public -#, fuzzy -msgid "Publish this post publicly?" -msgstr "Этот профиль общедоступен?" - -#: [post]blog_add -msgid "Post published on your blog" -msgstr "" - -#: [post]blog_remove -msgid "Post removed from your blog" -msgstr "" - -#: [post]delete_title [post]delete -msgid "Delete this post" -msgstr "Удалить этот пост" - -#: [post]delete_text -msgid "You are going to delete this post, please confirm your action" -msgstr "" - -#: [post]comments_disabled -msgid "Comments disabled" -msgstr "" - -#: [post]comment_published -msgid "Comment published" -msgstr "" - -#: [status]disconnect -msgid "Disconnect" -msgstr "Отсоединиться" - -#: [status]here -msgid "Your status here !" -msgstr "Ваш статус здесь !" - -#: [status]updated -msgid "Status updated" -msgstr "Статус обновлен" - -#: [status]status -msgid "Status" -msgstr "Состояние" - -#: [status]presence -msgid "Presence" -msgstr "Присутствие" - -#: [status]online -msgid "Online with Movim" -msgstr "" - -#: [publish]title -msgid "Publish" -msgstr "" - -#: [publish]attach -msgid "Add a file or a picture to your post" -msgstr "" - -#: [publish]no_publication -msgid "You cannot publish a post on this Group" -msgstr "" - -#: [publish]form_filled -msgid "Some fields have been filled in. Do you still want to go back and loose their content?" -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 "Добавить комнату" - -#: [rooms]empty_text1 -msgid "You don't have any chatroom yet." -msgstr "" - -#: [rooms]empty_text2 -msgid "Add one by clicking on the add button in the header." -msgstr "" - -#: [chatrooms]title -msgid "Chatrooms" -msgstr "Беседки" - -#: [chatrooms]name_placeholder -msgid "My Favorite Room" -msgstr "Мои любимые комнаты" - -#: [chatrooms]users -msgid "Users in the room" -msgstr "Пользователи в комнате" - -#: [chatrooms]bad_nickname -msgid "Please enter a correct nickname (2 to 40 characters)" -msgstr "" - -#: [room]anonymous_title -msgid "Public chatroom" -msgstr "" - -#: [room]no_room -msgid "Please provide a room address" -msgstr "" - -#: [room]anonymous_text1 -msgid "You are currently logued as an anonymous user." -msgstr "" - -#: [room]anonymous_text2 -msgid "You can join using your own account or create one on the login page by loging out using the cross in the top-right corner." -msgstr "" - -#: [room]anonymous_login -msgid "Login on %s" -msgstr "" - -#: [room]nick -msgid "Your nickname" -msgstr "" - -#: [roster]ungrouped -msgid "Ungrouped" -msgstr "Разное" - -#: [roster]show_disconnected -msgid "Show disconnected contacts" -msgstr "Показать отключенные контакты" - -#: [roster]hide_disconnected -msgid "Hide disconnected contacts" -msgstr "Скрыть отключенные контакты" - -#: [roster]show_group -msgid "Show group %s" -msgstr "Показать группу %s" - -#: [roster]hide_group -msgid "Hide group %s" -msgstr "Скрыть группу %s" - -#: [roster]jid_error -msgid "Please enter a valid Jabber ID" -msgstr "Пожалуйста, введи правильный Jabber ID" - -#: [roster]no_contacts_title -#, fuzzy -msgid "No contacts ?" -msgstr "Ваши контакты" - -#: [roster]no_contacts_text -#, fuzzy -msgid "You can add one using the + button bellow" -msgstr "Нет контактов? Вы можете добавить их с помощью кнопки + ниже или перейдя на страничку Обозревателя." - -#: [roster]show_hide -msgid "Show/Hide" -msgstr "Показать/Скрыть" - -#: [roster]add_contact_info1 -msgid "Enter the Jabber ID of your contact." -msgstr "Введите Jabber ID" - -#: [roster]add_contact_info2 -msgid "Press enter to validate." -msgstr "Нажмите Enter для проверки." - -#: [roster]jid -msgid "JID" -msgstr "JID" - -#: [roster]results -msgid "Results" -msgstr "Результаты" - -#: [roster]added -msgid "Contact added" -msgstr "Контакт добавлен" - -#: [roster]deleted -msgid "Contact deleted" -msgstr "Контакт удалён" - -#: [roster]search +#: ../cache/locales.php:220 ../cache/locales.php:402 msgid "Search" msgstr "Поиск" -#: [share]error +#: ../cache/locales.php:221 +msgid "Go on the Chat page" +msgstr "" + +#: ../cache/locales.php:222 +msgid "Read all theses articles on the News page" +msgstr "" + +#: ../cache/locales.php:223 +msgid "Visit your public blog" +msgstr "" + +#: ../cache/locales.php:224 +msgid "See your public posts and share them with all your contacts" +msgstr "" + +#: ../cache/locales.php:226 +msgid "Universal share button" +msgstr "" + +#: ../cache/locales.php:227 +msgid "" +"Bookmark or drag and drop the following button in your toolbar and use it on " +"all the pages you want to share on Movim" +msgstr "" + +#: ../cache/locales.php:228 +msgid "Share on Movim" +msgstr "" + +#: ../cache/locales.php:229 +msgid "Frequently Asked Questions" +msgstr "Часто Задаваемые Вопросы (FAQ)" + +#: ../cache/locales.php:230 +msgid "What do the little banners refer to ?" +msgstr "Зачем нужны небольшие баннеры?" + +#: ../cache/locales.php:231 +msgid "" +"Thanks to these five little banners, you can quickly identitfy the level of " +"confdentiality applied to the information you provide." +msgstr "" +"при помощи этих пяти небольших баннеров Вы можете быстро определить уровень " +"конфиденциальности информации, которую вы представляете" + +#: ../cache/locales.php:232 +msgid "White, only you can see the information" +msgstr "Белый: только вы можете видеть эту информацию" + +#: ../cache/locales.php:233 +msgid "Green, you have chosen some contacts who can see your information" +msgstr "" +"Зеленый: вы выбрали несколько своих контактов, которые увидят эту информацию" + +#: ../cache/locales.php:234 +msgid "Orange, all your contact list can see your information" +msgstr "" +"Оранжевый: все из вашего контактного листа могут видеть эту информацию" + +#: ../cache/locales.php:235 +msgid "Red, everybody in the XMPP network can see your information" +msgstr "Красный: любой в сети ХМРР может видеть вашу информацию" + +#: ../cache/locales.php:236 +msgid "Black, the whole Internet can see your information" +msgstr "Черный: весь Интернет может видеть вашу информацию" + +#: ../cache/locales.php:237 +msgid "Looking for some documentation ?" +msgstr "Ищите документацию?" + +#: ../cache/locales.php:238 +msgid "Read the Wiki" +msgstr "Почитать Wiki" + +#: ../cache/locales.php:239 +msgid "Talk with us by email ?" +msgstr "Желаете связаться с нами по email?" + +#: ../cache/locales.php:240 +msgid "Join the Mailing List" +msgstr "Присоединиться к списку рассылки" + +#: ../cache/locales.php:241 +msgid "Chat with the team ?" +msgstr "Желаете пообщаться с нашей командой?" + +#: ../cache/locales.php:242 +msgid "Join the Chatroom" +msgstr "Присоединиться к конференции" + +#: ../cache/locales.php:243 +msgid "Location node created" +msgstr "Создан узел геолокации" + +#: ../cache/locales.php:244 +msgid "Bookmark node created" +msgstr "Создан узел закладок" + +#: ../cache/locales.php:245 +msgid "Profile node created" +msgstr "Создан узел профиля" + +#: ../cache/locales.php:246 +msgid "Avatar node created" +msgstr "Создан узел аватара" + +#: ../cache/locales.php:247 +msgid "Subscriptions node created" +msgstr "Создан узел подписок" + +#: ../cache/locales.php:248 +msgid "Microblog node created" +msgstr "Создан узел микроблога" + +#: ../cache/locales.php:249 +msgid "Location" +msgstr "Местоположение" + +#: ../cache/locales.php:250 +msgid "Wrong position" +msgstr "Неправильная позиция" + +#: ../cache/locales.php:251 +msgid "Location updated" +msgstr "Местонахождение обновлено" + +#: ../cache/locales.php:252 +msgid "Update my position" +msgstr "Обновить моё местоположение" + +#: ../cache/locales.php:253 +msgid "Wrong username" +msgstr "Неверное имя пользователя" + +#: ../cache/locales.php:254 +msgid "Invalid JID" +msgstr "Недействительный JID" + +#: ../cache/locales.php:255 +msgid "Empty Challenge from the server" +msgstr "Пустая Соль пришла с сервера" + +#: ../cache/locales.php:256 +msgid "XMPP Domain error, your account is not a correct Jabber ID" +msgstr "Ошибочный XMPP домен, недопустимый JID в вашей учетной записи" + +#: ../cache/locales.php:257 +msgid "Some data are missing !" +msgstr "Некоторые данные утеряны !" + +#: ../cache/locales.php:258 +msgid "Wrong password" +msgstr "Неверный пароль" + +#: ../cache/locales.php:259 +msgid "Internal server error" +msgstr "Внутренняя ошибка сервера" + +#: ../cache/locales.php:260 +msgid "Session error" +msgstr "Ошибка сеанса" + +#: ../cache/locales.php:261 +msgid "Account successfully created" +msgstr "Учётная запись успешно создана" + +#: ../cache/locales.php:262 ../cache/locales.php:271 +msgid "Your XMPP server is unauthorized" +msgstr "Ваш XMPP-сервер не авторизован" + +#: ../cache/locales.php:263 +msgid "The server takes too much time to respond" +msgstr "Сервер потребовал слишком много времени на ответ" + +#: ../cache/locales.php:264 +msgid "Your web browser is too old to use with Movim." +msgstr "Версия вашего браузера устарела для использования с Movin" + +#: ../cache/locales.php:265 +msgid "" +"Movim cannot talk with the server, please try again later (Websocket " +"connection error)" +msgstr "" +"Movim не может связаться с сервером, пожалуйста, попробуйте снова попозже " +"(Ошибка соединения с Websocket)" + +#: ../cache/locales.php:266 +msgid "Impossible login" +msgstr "" + +#: ../cache/locales.php:267 +msgid "Oops!" +msgstr "Упс!" + +#: ../cache/locales.php:268 ../cache/locales.php:449 ../cache/locales.php:455 +msgid "Unknown error" +msgstr "Неизвестная ошибка" + +#: ../cache/locales.php:269 +msgid "Invalid username format" +msgstr "" + +#: ../cache/locales.php:270 +msgid "Invalid password format" +msgstr "" + +#: ../cache/locales.php:272 +msgid "A Movim session is already open on an other device" +msgstr "" + +#: ../cache/locales.php:273 +msgid "Movim failed to authenticate. You entered wrong data" +msgstr "Идентификация в Movim неудалась. Вы ввели неверные данные." + +#: ../cache/locales.php:274 +msgid "Authentication mechanism not supported by Movim" +msgstr "Данный механизм аутентификации не поддерживается Movim" + +#: ../cache/locales.php:275 +msgid "The XMPP authentification failed" +msgstr "XMPP-аутентификация не прошла" + +#: ../cache/locales.php:276 +#, php-format +msgid "" +"You can login with Facebook (chat only) using %syour.id@chat.facebook.com%s " +"and your password" +msgstr "" +"Вы можете войти в Facebook (только чат), используя " +"%syour.id@chat.facebook.com%s и Ваш пароль" + +#: ../cache/locales.php:277 +#, php-format +msgid "%sGmail accounts are also compatible%s but are not fully supported" +msgstr "" +"%sУчетные записи Gmail%s также совместимы, но поддерживаются не полностью" + +#: ../cache/locales.php:278 +msgid "You can login using your favorite Jabber account" +msgstr "Вы можете войти используя ваш любимый Jabber" + +#: ../cache/locales.php:279 +msgid "or with our demonstration account" +msgstr "или с помощью нашей демо учетной записи" + +#: ../cache/locales.php:280 ../cache/locales.php:435 +msgid "Accounts" +msgstr "Учётные записи" + +#: ../cache/locales.php:281 +msgid "My address" +msgstr "Мой адрес" + +#: ../cache/locales.php:283 +msgid "Create one !" +msgstr "Создайте учетную запись!" + +#: ../cache/locales.php:284 +msgid "No account yet ?" +msgstr "Еще нет учетной записи?" + +#: ../cache/locales.php:285 +msgid "Another account" +msgstr "Другая учётная запись" + +#: ../cache/locales.php:286 +msgid "You can login with accounts from theses servers" +msgstr "" + +#: ../cache/locales.php:287 +msgid "Connected" +msgstr "Соединение установлено" + +#: ../cache/locales.php:288 +msgid "Population" +msgstr "Население" + +#: ../cache/locales.php:289 +msgid "Bad nickname (between 4 and 40 characters)" +msgstr "" + +#: ../cache/locales.php:292 +msgid "" +"Welcome on your news feed, here you will see all the posts published in the " +"groups you have subscribed." +msgstr "" +"Добро пожаловать в вашу новостную ленту, здесь вы увидите все записи, " +"опубликованные в группах, на которые вы подписаны" + +#: ../cache/locales.php:293 +msgid "Refreshing all the streams" +msgstr "Обновляются все потоки" + +#: ../cache/locales.php:294 +msgid "This post is public" +msgstr "" + +#: ../cache/locales.php:295 +msgid "Manage your members" +msgstr "Управление позицией пользователей" + +#: ../cache/locales.php:296 +msgid "Get the members" +msgstr "Получить членство" + +#: ../cache/locales.php:297 +msgid "Affiliations saved" +msgstr "Принадлежность сохраняется" + +#: ../cache/locales.php:298 +msgid "Manage your subscriptions" +msgstr "Управлять моими подписками" + +#: ../cache/locales.php:299 +msgid "Manage the subscriptions" +msgstr "Управлять подписками" + +#: ../cache/locales.php:300 +msgid "Get the subscriptions" +msgstr "Получить подписки" + +#: ../cache/locales.php:301 +msgid "Subscriptions saved" +msgstr "Подписки сохранены" + +#: ../cache/locales.php:302 +msgid "Pending Invitations" +msgstr "Ожидающие решения приглашения" + +#: ../cache/locales.php:303 +#, php-format +msgid "%s wants to talk with you" +msgstr "%s хочет поговорить с Вами" + +#: ../cache/locales.php:304 +msgid "Manage" +msgstr "Управлять" + +#: ../cache/locales.php:305 ../cache/locales.php:338 +msgid "News Feed" +msgstr "Новостная лента" + +#: ../cache/locales.php:306 ../cache/locales.php:339 +msgid "Discover and register to the groups you are interested in" +msgstr "Найдите и зарегистрируйтесь в интересных вам группах" + +#: ../cache/locales.php:307 ../cache/locales.php:340 ../cache/locales.php:482 +msgid "Preview" +msgstr "Предпросмотр" + +#: ../cache/locales.php:308 ../cache/locales.php:341 ../cache/locales.php:478 +msgid "Help" +msgstr "Помощь" + +#: ../cache/locales.php:309 ../cache/locales.php:342 +msgid "More help" +msgstr "" + +#: ../cache/locales.php:310 ../cache/locales.php:343 +msgid "Markdown syntax manual" +msgstr "" + +#: ../cache/locales.php:311 ../cache/locales.php:344 ../cache/locales.php:681 +msgid "Title" +msgstr "Название" + +#: ../cache/locales.php:312 ../cache/locales.php:345 +msgid "Content" +msgstr "" + +#: ../cache/locales.php:313 ../cache/locales.php:346 +msgid "Link" +msgstr "Ссылка" + +#: ../cache/locales.php:314 ../cache/locales.php:347 +msgid "Tags" +msgstr "" + +#: ../cache/locales.php:315 ../cache/locales.php:348 +msgid "Please enter a valid url" +msgstr "" + +#: ../cache/locales.php:316 ../cache/locales.php:349 +msgid "No content to preview" +msgstr "" + +#: ../cache/locales.php:317 ../cache/locales.php:350 ../cache/locales.php:687 +msgid "No content" +msgstr "Нет данных" + +#: ../cache/locales.php:318 ../cache/locales.php:351 +msgid "Post published" +msgstr "" + +#: ../cache/locales.php:319 ../cache/locales.php:352 +msgid "Post deleted" +msgstr "" + +#: ../cache/locales.php:320 ../cache/locales.php:353 +msgid "This picture will be added to your gallery" +msgstr "" + +#: ../cache/locales.php:321 ../cache/locales.php:354 +msgid "What's Hot" +msgstr "Что актуально" + +#: ../cache/locales.php:322 ../cache/locales.php:355 +msgid "New post" +msgstr "" + +#: ../cache/locales.php:323 ../cache/locales.php:357 +msgid "" +"You can also use services like Imgur or Flickr to host your picture and " +"paste the link here." +msgstr "" + +#: ../cache/locales.php:324 +#, php-format +msgid "This is a re-post from %s" +msgstr "" + +#: ../cache/locales.php:325 +#, php-format +msgid "See %s profile" +msgstr "" + +#: ../cache/locales.php:326 +msgid "Publish this post on your public feed?" +msgstr "" + +#: ../cache/locales.php:327 +msgid "Post published on your blog" +msgstr "" + +#: ../cache/locales.php:328 +msgid "Post removed from your blog" +msgstr "" + +#: ../cache/locales.php:329 ../cache/locales.php:701 +msgid "Delete this post" +msgstr "Удалить этот пост" + +#: ../cache/locales.php:330 +msgid "You are going to delete this post, please confirm your action" +msgstr "" + +#: ../cache/locales.php:331 +msgid "Comments disabled" +msgstr "" + +#: ../cache/locales.php:332 +msgid "Comment published" +msgstr "" + +#: ../cache/locales.php:333 +msgid "Disconnect" +msgstr "Отсоединиться" + +#: ../cache/locales.php:334 +msgid "Your status here !" +msgstr "Ваш статус здесь !" + +#: ../cache/locales.php:335 +msgid "Status updated" +msgstr "Статус обновлен" + +#: ../cache/locales.php:336 +msgid "Status" +msgstr "Состояние" + +#: ../cache/locales.php:337 +msgid "Presence" +msgstr "Присутствие" + +#: ../cache/locales.php:356 +msgid "Publish" +msgstr "" + +#: ../cache/locales.php:358 +msgid "You cannot publish a post on this Group" +msgstr "" + +#: ../cache/locales.php:359 +msgid "" +"Some fields have been filled in. Do you still want to go back and loose " +"their content?" +msgstr "" + +#: ../cache/locales.php:360 +msgid "Shared" +msgstr "Общее" + +#: ../cache/locales.php:362 +#, php-format +msgid "%s has been added to your public groups" +msgstr "Группа %s была добавлена в список ваших публичных групп" + +#: ../cache/locales.php:363 +#, php-format +msgid "%s has been removed from your public groups" +msgstr "Группа %s была удалена из списка ваших публичных групп" + +#: ../cache/locales.php:364 +msgid "Add a chatroom" +msgstr "Добавить комнату" + +#: ../cache/locales.php:365 +msgid "You don't have any chatroom yet." +msgstr "" + +#: ../cache/locales.php:366 +msgid "Add one by clicking on the add button in the header." +msgstr "" + +#: ../cache/locales.php:367 +msgid "Chatrooms" +msgstr "Беседки" + +#: ../cache/locales.php:370 +msgid "My Favorite Room" +msgstr "Мои любимые комнаты" + +#: ../cache/locales.php:374 +msgid "Remove a chatroom" +msgstr "Удалить комнату" + +#: ../cache/locales.php:375 +msgid "" +"You are going to remove the following chatroom. Please confirm your action." +msgstr "" +"Вы собирается удалить комнату, на которую вы подписаны. Пожулуйста, " +"подтвердите это." + +#: ../cache/locales.php:378 +msgid "Users in the room" +msgstr "Пользователи в комнате" + +#: ../cache/locales.php:379 +msgid "Please enter a correct nickname (6 to 40 characters)" +msgstr "" + +#: ../cache/locales.php:381 +msgid "Public chatroom" +msgstr "" + +#: ../cache/locales.php:382 +msgid "Please provide a room address" +msgstr "" + +#: ../cache/locales.php:383 +msgid "You are currently logued as an anonymous user." +msgstr "" + +#: ../cache/locales.php:384 +msgid "" +"You can join using your own account or create one on the login page by " +"loging out using the cross in the top-right corner." +msgstr "" + +#: ../cache/locales.php:385 +#, php-format +msgid "Login on %s" +msgstr "" + +#: ../cache/locales.php:386 +msgid "Your nickname" +msgstr "" + +#: ../cache/locales.php:387 +msgid "Ungrouped" +msgstr "Разное" + +#: ../cache/locales.php:388 +msgid "Show disconnected contacts" +msgstr "Показать отключенные контакты" + +#: ../cache/locales.php:389 +msgid "Hide disconnected contacts" +msgstr "Скрыть отключенные контакты" + +#: ../cache/locales.php:390 +#, php-format +msgid "Show group %s" +msgstr "Показать группу %s" + +#: ../cache/locales.php:391 +#, php-format +msgid "Hide group %s" +msgstr "Скрыть группу %s" + +#: ../cache/locales.php:392 +msgid "Please enter a valid Jabber ID" +msgstr "Пожалуйста, введи правильный Jabber ID" + +#: ../cache/locales.php:393 +msgid "" +"No contacts ? You can add one using the + button bellow or going to the " +"Explore page" +msgstr "" +"Нет контактов? Вы можете добавить их с помощью кнопки + ниже или перейдя на " +"страничку Обозревателя." + +#: ../cache/locales.php:394 +msgid "Show/Hide" +msgstr "Показать/Скрыть" + +#: ../cache/locales.php:395 +msgid "Enter the Jabber ID of your contact." +msgstr "Введите Jabber ID" + +#: ../cache/locales.php:396 +msgid "Press enter to validate." +msgstr "Нажмите Enter для проверки." + +#: ../cache/locales.php:397 +msgid "JID" +msgstr "JID" + +#: ../cache/locales.php:398 +msgid "Results" +msgstr "Результаты" + +#: ../cache/locales.php:399 +msgid "Contact added" +msgstr "Контакт добавлен" + +#: ../cache/locales.php:401 +msgid "Contact deleted" +msgstr "Контакт удалён" + +#: ../cache/locales.php:403 msgid "This is not a valid url" msgstr "" -#: [share]success +#: ../cache/locales.php:404 msgid "Sharing the URL" msgstr "" -#: [statistics]title +#: ../cache/locales.php:405 msgid "Statistics" msgstr "Статистика" -#: [statistics]since +#: ../cache/locales.php:406 msgid "Since" msgstr "С" -#: [statistics]sessions +#: ../cache/locales.php:407 msgid "Sessions" msgstr "Сеансы" -#: [statistics]monthly_sub +#: ../cache/locales.php:409 msgid "Monthly Subscriptions" msgstr "Ежемесячные подписки" -#: [statistics]monthly_sub_cum +#: ../cache/locales.php:410 msgid "Monthly Subscriptions Cumulated" 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 — это децентрализованная социальная сеть. Перед созданием учетной записи нужно выбрать сервер." +#: ../cache/locales.php:412 +msgid "" +"Movim is a decentralized social network, before creating a new account you " +"need to choose a server to register." +msgstr "" +"Movim — это децентрализованная социальная сеть. Перед созданием учетной " +"записи нужно выбрать сервер." -#: [subscribe]server_question +#: ../cache/locales.php:413 msgid "Your server here ?" msgstr "Ваш сервер здесь ?" -#: [subscribe]server_contact +#: ../cache/locales.php:414 msgid "Contact us to add yours to the officially supported servers list" -msgstr "Свяжитесь с нами чтобы добавить свой сервер в список официальных серверов" +msgstr "" +"Свяжитесь с нами чтобы добавить свой сервер в список официальных серверов" -#: [feed]nope +#: ../cache/locales.php:416 msgid "No public feed for this contact" msgstr "Нет публичной ленты для этого контакта" -#: [feed]nope_contact +#: ../cache/locales.php:417 msgid "No contact specified" msgstr "Контакт не задан" -#: [upload]title -#, fuzzy -msgid "Upload a file" -msgstr "Загрузить" - -#: [upload]choose -msgid "Choose a file to upload" -msgstr "" - -#: [vcard]title [page]profile +#: ../cache/locales.php:418 ../cache/locales.php:473 msgid "Profile" msgstr "Профиль" -#: [vcard]updated +#: ../cache/locales.php:419 msgid "Profile Updated" msgstr "Профиль обновлён" -#: [vcard]not_updated +#: ../cache/locales.php:420 msgid "Profile Not Updated" msgstr "Профиль не обновлён" -#: [vcard]public +#: ../cache/locales.php:421 msgid "Your profile is now public" msgstr "Ваш профиль теперь общедоступен" -#: [vcard]restricted +#: ../cache/locales.php:422 msgid "Your profile is now restricted" msgstr "Ваш профиль теперь скрыт" -#: [general]nickname -#, fuzzy -msgctxt "[general]nickname" -msgid "Nickname" -msgstr "Псевдоним" - -#: [accounts]twitter +#: ../cache/locales.php:436 msgid "Twitter" msgstr "Твиттер" -#: [accounts]skype +#: ../cache/locales.php:437 msgid "Skype" msgstr "Skype" -#: [accounts]yahoo +#: ../cache/locales.php:438 msgid "Yahoo" msgstr "Yahoo" -#: [accounts]accounts_nickname -#, fuzzy -msgctxt "[accounts]accounts_nickname" -msgid "Nickname" -msgstr "Псевдоним" - -#: [accounts]accounts_yahoo -#, fuzzy -msgid "Yahoo Account" -msgstr "Другие учётные записи" - -#: [privacy]privacy_title +#: ../cache/locales.php:439 msgid "Privacy Level" msgstr "Уровень приватности" -#: [privacy]privacy_question +#: ../cache/locales.php:440 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." -msgstr "Внимание! Делая свой профиль общедоступным, вы соглашаетесь с тем, что вся нижеперечисленная информация станет доступна всем пользователям Movim и всему Интернету." +#: ../cache/locales.php:441 +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." +msgstr "" +"Внимание! Делая свой профиль общедоступным, вы соглашаетесь с тем, что вся " +"нижеперечисленная информация станет доступна всем пользователям Movim и " +"всему Интернету." -#: [save]submit [button]submit -msgid "Submit" -msgstr "Отправить" - -#: [save]reset [button]reset -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 +#: ../cache/locales.php:442 msgid "Call" msgstr "Вызов" -#: [visio]hang_up +#: ../cache/locales.php:443 msgid "Hang up" msgstr "Повесить трубку" -#: [visio]connection +#: ../cache/locales.php:444 msgid "Connection" msgstr "Соединение" -#: [global]no_js +#: ../cache/locales.php:445 ../cache/locales.php:451 +msgid "Hung up" +msgstr "Вызов завершен" + +#: ../cache/locales.php:446 ../cache/locales.php:452 +msgid "Your contact is busy" +msgstr "Ваш контакт занят" + +#: ../cache/locales.php:447 ../cache/locales.php:453 +msgid "Declined" +msgstr "Отклонено" + +#: ../cache/locales.php:448 ../cache/locales.php:454 +msgid "Remote application incompatible" +msgstr "Удаленное приложение несовместимо" + +#: ../cache/locales.php:450 ../cache/locales.php:456 +msgid "Is calling you" +msgstr "Звонит вам" + +#: ../cache/locales.php:457 msgid "You don't have javascript enabled. Good luck with that." msgstr "У вас не активирован javascript. Удачи вам в этом." -#: [global]description -msgid "Movim is a kickass distributed social networking platform that protect your privacy an comes with a set of awesome features." -msgstr "Movim — пацанская распределенная платформа социальная активности, которая защищает вашу приватность и имеет много классных фишек." +#: ../cache/locales.php:458 +msgid "" +"Movim is a kickass distributed social networking platform that protect your " +"privacy an comes with a set of awesome features." +msgstr "" +"Movim — пацанская распределенная платформа социальная активности, которая " +"защищает вашу приватность и имеет много классных фишек." -#: [page]administration +#: ../cache/locales.php:459 msgid "Administration" msgstr "Администрирование" -#: [page]home +#: ../cache/locales.php:460 msgid "Home" msgstr "Домой" -#: [page]discover +#: ../cache/locales.php:461 msgid "Discover" msgstr "Открытие" -#: [page]explore +#: ../cache/locales.php:462 msgid "Explore" msgstr "Обзор" -#: [page]account_creation +#: ../cache/locales.php:463 msgid "Account Creation" msgstr "Создание учётной записи" -#: [page]avatar +#: ../cache/locales.php:464 +msgid "News" +msgstr "Новости" + +#: ../cache/locales.php:465 msgid "Avatar" msgstr "Фотография" -#: [page]chats +#: ../cache/locales.php:467 msgid "Chats" msgstr "Чаты" -#: [page]server +#: ../cache/locales.php:470 msgid "Server" msgstr "Сервер" -#: [page]public_groups +#: ../cache/locales.php:471 msgid "Public Groups" msgstr "Открытые Группы" -#: [page]viewer +#: ../cache/locales.php:472 msgid "Viewer" msgstr "Зритель" -#: [page]media +#: ../cache/locales.php:474 msgid "Media" msgstr "Мультимедиа" -#: [page]blog +#: ../cache/locales.php:475 msgid "Blog" msgstr "Блог" -#: [page]about +#: ../cache/locales.php:476 msgid "About" msgstr "О" -#: [page]login +#: ../cache/locales.php:477 msgid "Login" msgstr "Имя пользователя" -#: [page]feed +#: ../cache/locales.php:479 msgid "Feed" msgstr "Лента" -#: [page]gallery +#: ../cache/locales.php:481 msgid "Gallery" msgstr "Галерея" -#: [page]visio +#: ../cache/locales.php:483 msgid "Visio-conference" msgstr "Visio-конференция" -#: [page]pods +#: ../cache/locales.php:484 msgid "Pods" msgstr "Поды" -#: [page]share +#: ../cache/locales.php:485 msgid "Share" msgstr "" -#: [page]room +#: ../cache/locales.php:486 msgid "Room" msgstr "" -#: [error]error +#: ../cache/locales.php:487 +#, php-format msgid "Error: %s" msgstr "Ошибка: %s" -#: [error]cannot_load_file +#: ../cache/locales.php:488 +#, php-format msgid "Cannot load file '%s'" msgstr "Не удаётся получить файл '%s'" -#: [error]route +#: ../cache/locales.php:489 +#, php-format msgid "Route error, please set all the parameters for the page %s" msgstr "Ошибка маршрута, пожалуйста, настройте все параметры на странице %s" -#: [error]widget_load_error +#: ../cache/locales.php:490 +#, php-format msgid "Requested widget '%s' doesn't exist." msgstr "Запрашиваемый виджет '%s' не существует." -#: [error]widget_call_error +#: ../cache/locales.php:491 +#, php-format msgid "Requested event '%s' not registered." msgstr "Запрашиваемое событие '%s' не зарегистрировано." -#: [error]whoops +#: ../cache/locales.php:492 msgid "Whoops!" msgstr "Ой-ой!" -#: [error]media_not_found +#: ../cache/locales.php:493 msgid "It seem that you don't have any pictures here?" msgstr "Кажется, у вас нет никаких изображений здесь?" -#: [error]media_ask_upload +#: ../cache/locales.php:494 msgid "You can try to upload a couple by going to the Media page" -msgstr "Вы можете попытаться загрузить парочку, перейдя на страницу \"Медиа\"" +msgstr "" +"Вы можете попытаться загрузить парочку, перейдя на страницу \"Медиа\"" -#: [title]about +#: ../cache/locales.php:495 +#, php-format msgid "%s - About" msgstr "%s - об" -#: [title]account +#: ../cache/locales.php:496 +#, php-format msgid "%s - Account" msgstr "%s - Аккаунт" -#: [title]administration +#: ../cache/locales.php:497 +#, php-format msgid "%s - Administration Panel" msgstr "%s - Панель управления" -#: [title]blog +#: ../cache/locales.php:498 +#, php-format msgid "%s - Blog" msgstr "%s - Блог" -#: [title]configuration +#: ../cache/locales.php:499 +#, php-format msgid "%s - Configuration" msgstr "%s - настройки" -#: [title]discover +#: ../cache/locales.php:500 +#, php-format msgid "%s - Discover" msgstr "%s - Открытия" -#: [title]explore +#: ../cache/locales.php:501 +#, php-format msgid "%s - Explore" msgstr "%s - Обзор" -#: [title]help +#: ../cache/locales.php:502 +#, php-format msgid "%s - Help Page" msgstr "%s - Страница помощи" -#: [title]login +#: ../cache/locales.php:503 +#, php-format msgid "%s - Login to Movim" msgstr "%s - Вход в MOVIM" -#: [title]main +#: ../cache/locales.php:504 +#, php-format msgid "%s - Welcome to Movim" msgstr "%s - Добро пожаловать в MOVIM" -#: [title]media +#: ../cache/locales.php:505 +#, php-format msgid "%s - Media" msgstr "%s - Медиа" -#: [title]news +#: ../cache/locales.php:506 +#, php-format msgid "%s - News" msgstr "%s - Новости" -#: [title]node_configuration +#: ../cache/locales.php:507 +#, php-format msgid "%s - Group Configuration" msgstr "%s - Настройки группы" -#: [title]node +#: ../cache/locales.php:508 +#, php-format msgid "%s - Group" msgstr "%s - Группа" -#: [title]not_found +#: ../cache/locales.php:509 +#, php-format msgid "%s - 404" msgstr "%s - 404" -#: [title]profile +#: ../cache/locales.php:510 +#, php-format msgid "%s - Profile" msgstr "%s - Профиль" -#: [title]server +#: ../cache/locales.php:511 +#, php-format msgid "%s - Server" msgstr "%s - Сервер" -#: [button]validate +#: ../cache/locales.php:512 msgid "Validate" msgstr "Проверить" -#: [button]refresh +#: ../cache/locales.php:513 msgid "Refresh" msgstr "Обновить" -#: [button]add +#: ../cache/locales.php:514 msgid "Add" msgstr "Добавить" -#: [button]delete +#: ../cache/locales.php:515 msgid "Delete" msgstr "Удалить" -#: [button]cancel +#: ../cache/locales.php:516 +msgid "Remove" +msgstr "Удалить" + +#: ../cache/locales.php:517 msgid "Cancel" msgstr "Отменить" -#: [button]close +#: ../cache/locales.php:518 msgid "Close" msgstr "Закрыть" -#: [button]update +#: ../cache/locales.php:519 msgid "Update" msgstr "Обновить" -#: [button]updating +#: ../cache/locales.php:520 msgid "Updating" msgstr "Идёт обновление" -#: [button]submitting +#: ../cache/locales.php:521 +msgid "Submit" +msgstr "Отправить" + +#: ../cache/locales.php:522 msgid "Submitting" msgstr "Отправление" -#: [button]register +#: ../cache/locales.php:523 +msgid "Reset" +msgstr "Сброс" + +#: ../cache/locales.php:524 msgid "Register" msgstr "Зарегистрировать" -#: [button]unregister +#: ../cache/locales.php:525 msgid "Unregister" msgstr "Отменить регистрацию" -#: [button]save +#: ../cache/locales.php:526 msgid "Save" msgstr "Сохранить" -#: [button]clear +#: ../cache/locales.php:527 msgid "Clear" msgstr "Очистить" -#: [button]upload +#: ../cache/locales.php:528 msgid "Upload" msgstr "Загрузить" -#: [button]come_in +#: ../cache/locales.php:529 msgid "Come in!" msgstr "Войти!" -#: [button]connecting +#: ../cache/locales.php:530 msgid "Connecting" msgstr "Идет подключение" -#: [button]bool_yes +#: ../cache/locales.php:531 msgid "Yes" msgstr "Да" -#: [button]bool_no +#: ../cache/locales.php:532 msgid "No" msgstr "Нет" -#: [button]return +#: ../cache/locales.php:534 msgid "Return" msgstr "Назад" -#: [button]accept +#: ../cache/locales.php:535 msgid "Accept" msgstr "Принять" -#: [button]refuse +#: ../cache/locales.php:536 msgid "Refuse" msgstr "" -#: [button]next +#: ../cache/locales.php:537 msgid "Next" msgstr "" -#: [button]previous +#: ../cache/locales.php:538 msgid "Previous" msgstr "" -#: [step]step +#: ../cache/locales.php:539 +#, php-format msgid "Step %s" msgstr "Шаг %s" -#: [day]title +#: ../cache/locales.php:542 msgid "Day" msgstr "День" -#: [day]monday +#: ../cache/locales.php:543 msgid "Monday" msgstr "Понедельник" -#: [day]tuesday +#: ../cache/locales.php:544 msgid "Tuesday" msgstr "Вторник" -#: [day]wednesday +#: ../cache/locales.php:545 msgid "Wednesday" msgstr "Среда" -#: [day]thursday +#: ../cache/locales.php:546 msgid "Thursday" msgstr "Четверг" -#: [day]friday +#: ../cache/locales.php:547 msgid "Friday" msgstr "Пятница" -#: [day]saturday +#: ../cache/locales.php:548 msgid "Saturday" msgstr "Суббота" -#: [day]sunday +#: ../cache/locales.php:549 msgid "Sunday" msgstr "Воскресенье" -#: [gender]nil -#, fuzzy -msgctxt "[gender]nil" +#: ../cache/locales.php:550 ../cache/locales.php:559 msgid "None" msgstr "Нет" -#: [gender]male +#: ../cache/locales.php:551 msgid "Male" msgstr "Мужчина" -#: [gender]female +#: ../cache/locales.php:552 msgid "Female" msgstr "Женщина" -#: [gender]other +#: ../cache/locales.php:553 msgid "Other" msgstr "Прочее" -#: [client]bot +#: ../cache/locales.php:554 msgid "Bot" msgstr "Бот" -#: [client]desktop +#: ../cache/locales.php:555 msgid "Desktop" msgstr "Настольный компьютер" -#: [client]phone +#: ../cache/locales.php:556 msgid "Phone" msgstr "Телефон" -#: [client]web +#: ../cache/locales.php:557 msgid "Web" msgstr "Веб" -#: [client]registered +#: ../cache/locales.php:558 msgid "Registered" msgstr "Зарегистрировано" -#: [marital]nil -#, fuzzy -msgctxt "[marital]nil" -msgid "None" -msgstr "Нет" - -#: [marital]single +#: ../cache/locales.php:560 msgid "Single" msgstr "Холост(не замужем)" -#: [marital]relationship +#: ../cache/locales.php:561 msgid "In a relationship" msgstr "В отношениях" -#: [marital]married +#: ../cache/locales.php:562 msgid "Married" msgstr "В браке" -#: [marital]divorced +#: ../cache/locales.php:563 msgid "Divorced" msgstr "Разведён (разведена)" -#: [marital]widowed +#: ../cache/locales.php:564 msgid "Widowed" msgstr "Вдовец (вдова)" -#: [marital]cohabiting +#: ../cache/locales.php:565 msgid "Cohabiting" msgstr "Живём вместе" -#: [marital]union +#: ../cache/locales.php:566 msgid "Civil Union" msgstr "В гражданском браке" -#: [flag]white +#: ../cache/locales.php:567 msgid "Not shared" msgstr "Не является общим" -#: [flag]green +#: ../cache/locales.php:568 msgid "Shared with one contact" msgstr "Общий с одним контактом" -#: [flag]orange +#: ../cache/locales.php:569 msgid "Shared with all contacts" msgstr "Общий со всеми контактами" -#: [flag]red +#: ../cache/locales.php:570 msgid "Shared with the XMPP network" msgstr "Общий с сетью XMPP" -#: [flag]black +#: ../cache/locales.php:571 msgid "Shared with the whole Internet" msgstr "Общий со всей Интернете" -#: [presence]online +#: ../cache/locales.php:572 msgid "Online" msgstr "В сети" -#: [presence]away +#: ../cache/locales.php:573 msgid "Away" msgstr "В отсутствии" -#: [presence]dnd +#: ../cache/locales.php:574 msgid "Do Not Disturb" msgstr "Не беспокоить" -#: [presence]xa +#: ../cache/locales.php:575 msgid "Extended Away" msgstr "Давно нет на месте" -#: [presence]offline +#: ../cache/locales.php:576 msgid "Offline" msgstr "Не в сети" -#: [presence]error +#: ../cache/locales.php:577 msgid "Error" msgstr "Ошибка" -#: [mood]afraid +#: ../cache/locales.php:578 msgid "afraid" msgstr "боятся" -#: [mood]amazed +#: ../cache/locales.php:579 msgid "amazed" msgstr "пораженный" -#: [mood]amorous +#: ../cache/locales.php:580 msgid "amorous" msgstr "влюбчивый" -#: [mood]angry +#: ../cache/locales.php:581 msgid "angry" msgstr "злой" -#: [mood]annoyed +#: ../cache/locales.php:582 msgid "annoyed" msgstr "раздраженный" -#: [mood]anxious +#: ../cache/locales.php:583 msgid "anxious" msgstr "тревожный" -#: [mood]aroused +#: ../cache/locales.php:584 msgid "aroused" msgstr "вызвал" -#: [mood]ashamed +#: ../cache/locales.php:585 msgid "ashamed" msgstr "стыдно" -#: [mood]bored +#: ../cache/locales.php:586 msgid "bored" msgstr "скучающий" -#: [mood]brave +#: ../cache/locales.php:587 msgid "brave" msgstr "храбрый" -#: [mood]calm +#: ../cache/locales.php:588 msgid "calm" msgstr "спокойно" -#: [mood]cautious +#: ../cache/locales.php:589 msgid "cautious" msgstr "осторожный" -#: [mood]cold +#: ../cache/locales.php:590 msgid "cold" msgstr "холод" -#: [mood]confident +#: ../cache/locales.php:591 msgid "confident" msgstr "уверенный" -#: [mood]confused +#: ../cache/locales.php:592 msgid "confused" msgstr "смущен" -#: [mood]contemplative +#: ../cache/locales.php:593 msgid "contemplative" msgstr "созерцательный" -#: [mood]contented +#: ../cache/locales.php:594 msgid "contented" msgstr "довольный" -#: [mood]cranky +#: ../cache/locales.php:595 msgid "cranky" msgstr "капризный" -#: [mood]crazy +#: ../cache/locales.php:596 msgid "crazy" msgstr "сумасшедший" -#: [mood]creative +#: ../cache/locales.php:597 msgid "creative" msgstr "творческий" -#: [mood]curious +#: ../cache/locales.php:598 msgid "curious" msgstr "любопытный" -#: [mood]dejected +#: ../cache/locales.php:599 msgid "dejected" msgstr "удрученный" -#: [mood]depressed +#: ../cache/locales.php:600 msgid "depressed" msgstr "подавленный" -#: [mood]disappointed +#: ../cache/locales.php:601 msgid "disappointed" msgstr "разочарованный" -#: [mood]disgusted +#: ../cache/locales.php:602 msgid "disgusted" msgstr "отвращение" -#: [mood]dismayed +#: ../cache/locales.php:603 msgid "dismayed" msgstr "встревоженный" -#: [mood]distracted +#: ../cache/locales.php:604 msgid "distracted" msgstr "рассеянный" -#: [mood]embarrassed +#: ../cache/locales.php:605 msgid "embarrassed" msgstr "смущенный" -#: [mood]envious +#: ../cache/locales.php:606 msgid "envious" msgstr "завистливый" -#: [mood]excited +#: ../cache/locales.php:607 msgid "excited" msgstr "возбужденный" -#: [mood]flirtatious +#: ../cache/locales.php:608 msgid "flirtatious" msgstr "кокетливый" -#: [mood]frustated +#: ../cache/locales.php:609 msgid "frustated" msgstr "испуган" -#: [mood]grateful +#: ../cache/locales.php:610 msgid "grateful" msgstr "благодарный" -#: [mood]grieving +#: ../cache/locales.php:611 msgid "grieving" msgstr "горевать" -#: [mood]grumpy +#: ../cache/locales.php:612 msgid "grumpy" msgstr "раздражительный" -#: [mood]guilty +#: ../cache/locales.php:613 msgid "guilty" msgstr "виновный" -#: [mood]happy +#: ../cache/locales.php:614 msgid "happy" msgstr "счастливый" -#: [mood]hopeful +#: ../cache/locales.php:615 msgid "hopeful" msgstr "многообещающий" -#: [mood]hot +#: ../cache/locales.php:616 msgid "hot" msgstr "горячий" -#: [mood]humbled +#: ../cache/locales.php:617 msgid "humbled" msgstr "приниженный" -#: [mood]humiliated +#: ../cache/locales.php:618 msgid "humiliated" msgstr "униженный" -#: [mood]hungry +#: ../cache/locales.php:619 msgid "hungry" msgstr "голодный" -#: [mood]hurt +#: ../cache/locales.php:620 msgid "hurt" msgstr "больной" -#: [mood]impressed +#: ../cache/locales.php:621 msgid "impressed" msgstr "впечатленный" -#: [mood]in_awe +#: ../cache/locales.php:622 msgid "in awe" msgstr "в страхе" -#: [mood]in_love +#: ../cache/locales.php:623 msgid "in love" msgstr "влюбленный" -#: [mood]indignant +#: ../cache/locales.php:624 msgid "indignant" msgstr "негодует" -#: [mood]interested +#: ../cache/locales.php:625 msgid "interested" msgstr "заинтересованный" -#: [mood]intoxicated +#: ../cache/locales.php:626 msgid "intoxicated" msgstr "пьяный" -#: [mood]invincible +#: ../cache/locales.php:627 msgid "invincible" msgstr "непобедимый" -#: [mood]jealous +#: ../cache/locales.php:628 msgid "jealous" msgstr "ревнивый" -#: [mood]lonely +#: ../cache/locales.php:629 msgid "lonely" msgstr "одинокий" -#: [mood]lost +#: ../cache/locales.php:630 msgid "lost" msgstr "потерян" -#: [mood]lucky +#: ../cache/locales.php:631 msgid "lucky" msgstr "счастливый" -#: [mood]mean +#: ../cache/locales.php:632 msgid "mean" msgstr "имею в виду" -#: [mood]moody +#: ../cache/locales.php:633 msgid "moody" msgstr "угрюмый" -#: [mood]nervous +#: ../cache/locales.php:634 msgid "nervous" msgstr "нервный" -#: [mood]neutral +#: ../cache/locales.php:635 msgid "neutral" msgstr "нейтрален" -#: [mood]offended +#: ../cache/locales.php:636 msgid "offended" msgstr "обидел" -#: [mood]outraged +#: ../cache/locales.php:637 msgid "outraged" msgstr "возмущен" -#: [mood]playful +#: ../cache/locales.php:638 msgid "playful" msgstr "игривый" -#: [mood]proud +#: ../cache/locales.php:639 msgid "proud" msgstr "гордый" -#: [mood]relaxed +#: ../cache/locales.php:640 msgid "relaxed" msgstr "расслабленный" -#: [mood]relieved +#: ../cache/locales.php:641 msgid "relieved" msgstr "уволен" -#: [mood]restless +#: ../cache/locales.php:642 +msgid "remorseful" +msgstr "полный раскаяния" + +#: ../cache/locales.php:643 msgid "restless" msgstr "беспокойный" -#: [mood]sad +#: ../cache/locales.php:644 msgid "sad" msgstr "печальный" -#: [mood]sarcastic +#: ../cache/locales.php:645 msgid "sarcastic" msgstr "саркастический" -#: [mood]satisfied +#: ../cache/locales.php:646 msgid "satisfied" msgstr "удовлетворенный" -#: [mood]serious +#: ../cache/locales.php:647 msgid "serious" msgstr "серьезный" -#: [mood]shocked +#: ../cache/locales.php:648 msgid "shocked" msgstr "потрясенный" -#: [mood]shy +#: ../cache/locales.php:649 msgid "shy" msgstr "застенчивый" -#: [mood]sick +#: ../cache/locales.php:650 msgid "sick" msgstr "больной" -#: [mood]sleepy +#: ../cache/locales.php:651 msgid "sleepy" msgstr "сонный" -#: [mood]spontaneous +#: ../cache/locales.php:652 msgid "spontaneous" msgstr "спонтанный" -#: [mood]stressed +#: ../cache/locales.php:653 msgid "stressed" msgstr "подчеркнул" -#: [mood]strong +#: ../cache/locales.php:654 msgid "strong" msgstr "сильный" -#: [mood]surprised +#: ../cache/locales.php:655 msgid "surprised" msgstr "удивленный" -#: [mood]thankful +#: ../cache/locales.php:656 msgid "thankful" msgstr "благодарный" -#: [mood]thirsty +#: ../cache/locales.php:657 msgid "thirsty" msgstr "жаждущий" -#: [mood]tired +#: ../cache/locales.php:658 msgid "tired" msgstr "устал" -#: [mood]undefined +#: ../cache/locales.php:659 msgid "undefined" msgstr "не определено" -#: [mood]weak +#: ../cache/locales.php:660 msgid "weak" msgstr "слаб" -#: [mood]worried +#: ../cache/locales.php:661 msgid "worried" msgstr "тревожный" -#: [month]title +#: ../cache/locales.php:662 msgid "Month" msgstr "Месяц" -#: [month]january +#: ../cache/locales.php:663 msgid "January" msgstr "Январь" -#: [month]february +#: ../cache/locales.php:664 msgid "February" msgstr "Февраль" -#: [month]march +#: ../cache/locales.php:665 msgid "March" msgstr "Март" -#: [month]april +#: ../cache/locales.php:666 msgid "April" msgstr "Апрель" -#: [month]may +#: ../cache/locales.php:667 msgid "May" msgstr "Май" -#: [month]june +#: ../cache/locales.php:668 msgid "June" msgstr "Июнь" -#: [month]july +#: ../cache/locales.php:669 msgid "July" msgstr "Июль" -#: [month]august +#: ../cache/locales.php:670 msgid "August" msgstr "Август" -#: [month]september +#: ../cache/locales.php:671 msgid "September" msgstr "Сентябрь" -#: [month]october +#: ../cache/locales.php:672 msgid "October" msgstr "Октябрь" -#: [month]november +#: ../cache/locales.php:673 msgid "November" msgstr "Ноябрь" -#: [month]december +#: ../cache/locales.php:674 msgid "December" msgstr "Декабрь" -#: [year]title +#: ../cache/locales.php:675 msgid "Year" msgstr "Год" -#: [date]today +#: ../cache/locales.php:676 msgid "Today" msgstr "Сегодня" -#: [date]tomorrow +#: ../cache/locales.php:677 msgid "Tomorrow" msgstr "Завтра" -#: [date]yesterday +#: ../cache/locales.php:678 msgid "Yesterday" msgstr "Вчера" -#: [date]ago -#, fuzzy -msgid "%d days ago" +#: ../cache/locales.php:679 +#, php-format +msgid " %d days ago" msgstr " %d дней назад" -#: [date]day +#: ../cache/locales.php:680 msgid "day" msgstr "день" -#: [post]whats_new +#: ../cache/locales.php:682 msgid "What's new ?" msgstr "Что нового?" -#: [post]place +#: ../cache/locales.php:683 msgid "Place" msgstr "Место" -#: [post]by +#: ../cache/locales.php:684 msgid "by" msgstr "по" -#: [post]geolocalisation +#: ../cache/locales.php:685 msgid "Geolocalisation" msgstr "Геолокация" -#: [post]email +#: ../cache/locales.php:686 msgid "email" msgstr "электронная почта" -#: [post]no_comments +#: ../cache/locales.php:688 msgid "No comments yet" msgstr "" -#: [post]no_comments_stream +#: ../cache/locales.php:689 msgid "No comments stream" msgstr "Нет потока с комментариями" -#: [post]no_load +#: ../cache/locales.php:690 msgid "Your feed cannot be loaded." msgstr "Ваша лента не может быть загружена." -#: [post]older +#: ../cache/locales.php:691 msgid "Get older posts" msgstr "Получить предыдущие сообщения" -#: [post]new_items +#: ../cache/locales.php:692 +#, php-format msgid "%s new items" msgstr "%s новых записей" -#: [post]comment_error +#: ../cache/locales.php:693 msgid "Comment publication error" msgstr "Ошибка добавления комментария" -#: [post]comments_older +#: ../cache/locales.php:694 msgid "Show the older comments" msgstr "Показать более старые комментарии" -#: [post]comments_loading -#, fuzzy -msgid "Loading comments..." +#: ../cache/locales.php:695 +msgid "Loading comments ..." msgstr "Идет загрузка комментариев..." -#: [post]comments_get +#: ../cache/locales.php:696 msgid "Get the comments" msgstr "Загрузить комментарии" -#: [post]comment_add +#: ../cache/locales.php:697 msgid "Add a comment" msgstr "Добавить комментарий" -#: [post]share +#: ../cache/locales.php:698 msgid "Share with" msgstr "Поделиться с" -#: [post]share_everyone +#: ../cache/locales.php:699 msgid "Everyone" msgstr "Все" -#: [post]share_your_contacts +#: ../cache/locales.php:700 msgid "Your contacts" msgstr "Ваши контакты" -#: [post]updated +#: ../cache/locales.php:702 msgid "Updated" msgstr "Обновлено" -#: [post]content_not_found +#: ../cache/locales.php:703 msgid "Content not found" msgstr "Содержание не найдено" -#: [post]default_title +#: ../cache/locales.php:704 msgid "Contact publication" msgstr "Публикация контакта" -#: [post]comments +#: ../cache/locales.php:705 msgid "Comments" msgstr "" -#: [api]error +#: ../cache/locales.php:706 msgid "The API is not reachable, try again later" msgstr "API недоступен, попробуйте позже" -#: [field]type_here +#: ../cache/locales.php:707 msgid "Type here" msgstr "" -#~ msgid "Environment" -#~ msgstr "Окружение" - -#~ msgid "You can login with Facebook (chat only) using %syour.id@chat.facebook.com%s and your password" -#~ msgstr "Вы можете войти в Facebook (только чат), используя %syour.id@chat.facebook.com%s и Ваш пароль" - -#~ msgid "%sGmail accounts are also compatible%s but are not fully supported" -#~ msgstr "%sУчетные записи Gmail%s также совместимы, но поддерживаются не полностью" - -#~ msgid "You can login using your favorite Jabber account" -#~ msgstr "Вы можете войти используя ваш любимый Jabber" - -#~ msgid "or with our demonstration account" -#~ msgstr "или с помощью нашей демо учетной записи" - -#~ msgid "%s has been removed from your public groups" -#~ msgstr "Группа %s была удалена из списка ваших публичных групп" - -#~ msgid "Remove a chatroom" -#~ msgstr "Удалить комнату" - -#~ msgid "You are going to remove the following chatroom. Please confirm your action." -#~ msgstr "Вы собирается удалить комнату, на которую вы подписаны. Пожулуйста, подтвердите это." - -#~ msgid "Remote application incompatible" -#~ msgstr "Удаленное приложение несовместимо" - -#~ msgid "Remove" -#~ msgstr "Удалить" - -#~ msgid "remorseful" -#~ msgstr "полный раскаяния" - +#, php-format #~ msgid "%s - Account Creation" #~ msgstr "%s - создание учётной записи" @@ -2771,9 +2634,11 @@ msgstr "" #~ msgid "Movim Installer" #~ msgstr "Установщик Movim" +#, php-format #~ msgid "Install the %s package" #~ msgstr "Установите пакет %s" +#, php-format #~ msgid "Movim requires the %s extension." #~ msgstr "Movim требует расширение %s." @@ -2784,7 +2649,9 @@ msgstr "" #~ msgstr "Актуальная версия : " #~ msgid "PHP version mismatch. Movim requires PHP 5.3 minimum." -#~ msgstr "Версии интерпретатора PHP не совпадают. Movim требует версию PHP 5.3 или выше." +#~ msgstr "" +#~ "Версии интерпретатора PHP не совпадают. Movim требует версию PHP 5.3 или " +#~ "выше." #~ msgid "Update your PHP version or contact your server administrator" #~ msgstr "Обновите Вашу версию PHP или обратитесь к системному администратору" @@ -2795,17 +2662,23 @@ msgstr "" #~ msgid "Movim's folder must be writable." #~ msgstr "Папка с Movim должна быть доступна для записи." +#, php-format #~ msgid "Install %s and %s packages" #~ msgstr "установите пакеты %s и %s" #~ msgid "XMPP Connection Preferences" #~ msgstr "Настройки соединения XMPP" +#, php-format #~ msgid "Couldn't create directory '%s'." #~ msgstr "Невозможно создать папку '%s'." -#~ msgid "The following requirements were not met. Please make sure they are all satisfied in order to install Movim." -#~ msgstr "Следующие требования не были удовлетворены. Пожалуйста, удостоверьтесь, что у Вас есть разрешения на установку Movim." +#~ msgid "" +#~ "The following requirements were not met. Please make sure they are all " +#~ "satisfied in order to install Movim." +#~ msgstr "" +#~ "Следующие требования не были удовлетворены. Пожалуйста, удостоверьтесь, что " +#~ "у Вас есть разрешения на установку Movim." #~ msgid "Compatibility Test" #~ msgstr "Тест совместимости" @@ -2819,6 +2692,7 @@ msgstr "" #~ msgid "BOSH Connection Preferences" #~ msgstr "Настройки соединения BOSH" +#, php-format #~ msgid "Couldn't create configuration file '%s'." #~ msgstr "Невозможно создать файл конфигурации '%s'." @@ -2831,9 +2705,11 @@ msgstr "" #~ msgid "User not logged in." #~ msgstr "Пользователь не выполнил вход." +#, php-format #~ msgid "Cannot open log file '%s'" #~ msgstr "Невозможно открыть файл отчета '%s'" +#, php-format #~ msgid "Please remove the %s folder in order to complete the installation" #~ msgstr "Пожалуйста, удалите папку %s для завершения установки" @@ -2888,6 +2764,7 @@ msgstr "" #~ msgid "Add your login informations" #~ msgstr "Добавьте Вашу информацию для соединения" +#, php-format #~ msgid "%s - Add An Account" #~ msgstr "%s - Добавить запись" @@ -2903,8 +2780,13 @@ msgstr "" #~ msgid "My Posts" #~ msgstr "Мои сообщения" -#~ msgid "Visit the page %s What is Movim ? %s to know more about the project, its aims and understand how it works." -#~ msgstr "Посетите страницу %s Что такое Movin? %s чтобы узнать больше об этом проектк, его целях и для понимания принципов его работы." +#, php-format +#~ msgid "" +#~ "Visit the page %s What is Movim ? %s to know more about the project, its " +#~ "aims and understand how it works." +#~ msgstr "" +#~ "Посетите страницу %s Что такое Movin? %s чтобы узнать больше об этом " +#~ "проектк, его целях и для понимания принципов его работы." #~ msgid "I can't find the answer to my question here" #~ msgstr "Я не нашёл здесь ответа на мой вопрос" @@ -2927,6 +2809,7 @@ msgstr "" #~ msgid "Link my current account" #~ msgstr "Соединить с моим текущим счётом" +#, php-format #~ msgid "Contacts (%s)" #~ msgstr "Контакты (%s)" @@ -2936,8 +2819,12 @@ msgstr "" #~ msgid "Show All" #~ msgstr "Показать всё" -#~ msgid "Some errors were detected. Please correct them for the installation to proceed." -#~ msgstr "Обнаружены ошибки. Пожалуйста исправльте их, чтобы продолжить процесс инсталляции." +#~ msgid "" +#~ "Some errors were detected. Please correct them for the installation to " +#~ "proceed." +#~ msgstr "" +#~ "Обнаружены ошибки. Пожалуйста исправльте их, чтобы продолжить процесс " +#~ "инсталляции." #~ msgid "Retype" #~ msgstr "Переписать" @@ -2945,8 +2832,12 @@ msgstr "" #~ msgid "Loading your feed ..." #~ msgstr "Загрузка Вашей ленты" -#~ msgid "Your server doesn't support post publication, you can only read contact's feeds" -#~ msgstr "Ваш сервер не поддерживает публикацию сообщений, Вы можете только читать контактные ленты" +#~ msgid "" +#~ "Your server doesn't support post publication, you can only read contact's " +#~ "feeds" +#~ msgstr "" +#~ "Ваш сервер не поддерживает публикацию сообщений, Вы можете только читать " +#~ "контактные ленты" #~ msgid "Only alphanumerics elements are authorized" #~ msgstr "Использовать только буквы и цифры" @@ -2954,8 +2845,15 @@ msgstr "" #~ msgid "terse" #~ msgstr "кратко" -#~ msgid "Keep in mind that Movim is still under development and will handle many personal details. Its use can potentially endanger your data. Always pay attention to information that you submit." -#~ msgstr "Имейте в виду, что Movim только развивается и имеет дело с большим объёмом персональной информации. Её использование потенциально угрожает Вашей безопасности. Всегда будьте внимательны к информации, которую Вы предоставляете." +#~ msgid "" +#~ "Keep in mind that Movim is still under development and will handle many " +#~ "personal details. Its use can potentially endanger your data. Always pay " +#~ "attention to information that you submit." +#~ msgstr "" +#~ "Имейте в виду, что Movim только развивается и имеет дело с большим объёмом " +#~ "персональной информации. Её использование потенциально угрожает Вашей " +#~ "безопасности. Всегда будьте внимательны к информации, которую Вы " +#~ "предоставляете." #~ msgid "Same here !" #~ msgstr "Я тоже!" @@ -2963,21 +2861,34 @@ msgstr "" #~ msgid "Loading the contact feed ..." #~ msgstr "Грузится лента контакта" -#~ msgid "Before you enjoy your social network, a few adjustements are required." -#~ msgstr "Прежде чем Вы насладитесь Вашей социальной сетью требуются некоторые поправки" +#~ msgid "" +#~ "Before you enjoy your social network, a few adjustements are required." +#~ msgstr "" +#~ "Прежде чем Вы насладитесь Вашей социальной сетью требуются некоторые поправки" #~ msgid "JID not provided." #~ msgstr "JID не предоставлен." +#, php-format #~ msgid "jid '%s' is incorrect" #~ msgstr "jid '%s' некорректный" +#, php-format #~ msgid "You can now access your shiny Movim instance %sJump In !%s" #~ msgstr "Вы имеет теперь доступ к Movin при помощи %sJump In !%s" -#~ msgid "Firstly fill in this blank with a brand new account ID, this address will follow you on all the Movim network !" -#~ msgstr "Оставьте пустым это поле, этот адрес позволит Вам следовать за всей сетью Movin !" +#~ msgid "" +#~ "Firstly fill in this blank with a brand new account ID, this address will " +#~ "follow you on all the Movim network !" +#~ msgstr "" +#~ "Оставьте пустым это поле, этот адрес позволит Вам следовать за всей сетью " +#~ "Movin !" +#, php-format +#~ msgid "This server hosts %s accounts" +#~ msgstr "На этом сервере %s аккаунтов" + +#, php-format #~ msgid "Cannot load element value '%s'" #~ msgstr "Не удаётся загрузить элемент '%s'" @@ -2987,12 +2898,15 @@ msgstr "" #~ msgid "Invite this user" #~ msgstr "пригласить этого пользователя" +#, php-format #~ msgid "Bosh connection failed with error '%s'" #~ msgstr "Некорректное соединение с BOSH, ошибка '%s'" +#, php-format #~ msgid "Database connection failed with error '%s'" #~ msgstr "Неудачное соединение с базой данных, ошибка '%s'" +#, php-format #~ msgid "XMPP connection through Bosh failed with error '%s'" #~ msgstr "XMPP соединене через BOSH неудачно, ошибка '%s'" @@ -3011,17 +2925,39 @@ msgstr "" #~ msgid "talkative" #~ msgstr "подробно" -#~ msgid "Although Movim is evolving fast, many (many) features are missing. Be patient ;). You can have a look %s at next versions's roadmaps %s to know if the one you want is on its way." -#~ msgstr "Хотя Movim быстро развивается, в нём (очень) много чего не хватает. Будьте терпеливы ;). Вы можете посмотреть %s планы развития новых версий %s , чтобы узнать, что из желаемого уже на подходе." +#, php-format +#~ msgid "" +#~ "Although Movim is evolving fast, many (many) features are missing. Be " +#~ "patient ;). You can have a look %s at next versions's roadmaps %s to know if " +#~ "the one you want is on its way." +#~ msgstr "" +#~ "Хотя Movim быстро развивается, в нём (очень) много чего не хватает. Будьте " +#~ "терпеливы ;). Вы можете посмотреть %s планы развития новых версий %s , чтобы " +#~ "узнать, что из желаемого уже на подходе." -#~ msgid "Don't forget that Movim is an open source project, a helping hand is always welcome (see %s Can I participate %s)" -#~ msgstr "Не забывайте, что Movim - проект с открытым кодом, помощь всячески приветствуется (смотри %s Могу ли я участвовать %s)" +#, php-format +#~ msgid "" +#~ "Don't forget that Movim is an open source project, a helping hand is always " +#~ "welcome (see %s Can I participate %s)" +#~ msgstr "" +#~ "Не забывайте, что Movim - проект с открытым кодом, помощь всячески " +#~ "приветствуется (смотри %s Могу ли я участвовать %s)" -#~ msgid "Some features are missing/I can't do everything I used to do on other social networks" -#~ msgstr "Не хватает некоторых функций/Мне нельзя делать то же, что в других соцсетях" +#~ msgid "" +#~ "Some features are missing/I can't do everything I used to do on other social " +#~ "networks" +#~ msgstr "" +#~ "Не хватает некоторых функций/Мне нельзя делать то же, что в других соцсетях" -#~ msgid "Go to the %s to the Frequently Asked Questions %s or come ask your question on the official chatroom %s or via our mailing-list (%s see the dedicated page %s)." -#~ msgstr "Перейдите на %s Частые Вопросы (ЧаВо?) %s , или задайте свой вопрос в конференции %s , или через нашу почтовую рассылку (%s смотри соответствующую страницу %s)." +#, php-format +#~ msgid "" +#~ "Go to the %s to the Frequently Asked Questions %s or come ask your question " +#~ "on the official chatroom %s or via our mailing-list (%s see the dedicated " +#~ "page %s)." +#~ msgstr "" +#~ "Перейдите на %s Частые Вопросы (ЧаВо?) %s , или задайте свой вопрос в " +#~ "конференции %s , или через нашу почтовую рассылку (%s смотри соответствующую " +#~ "страницу %s)." #~ msgid "The current BOSH URL in invalid" #~ msgstr "Текущий BOSH URL недействителен" diff --git a/sources/locales/uk.po b/sources/locales/uk.po index 5d148d6..8d2530a 100644 --- a/sources/locales/uk.po +++ b/sources/locales/uk.po @@ -1,2699 +1,2584 @@ # Ukrainian translations for Movim package. # This file is distributed under the same license as the Movim package. # This file was translated from CodingTeam at . -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/About/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Account/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/AccountNext/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/AdHoc/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/AdminDB/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/AdminMain/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/AdminTest/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Api/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Avatar/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Blog/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Bookmark/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Chat/locales.ini -#. #-#-#-#-# 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 -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Group/locales.ini -#. #-#-#-#-# 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 -#. #-#-#-#-# 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 -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Presence/locales.ini -#. #-#-#-#-# 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 -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Share/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Statistics/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Subscribe/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Syndication/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Upload/locales.ini -#. #-#-#-#-# 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-08-20 15:17+0200\n" +"POT-Creation-Date: 2015-06-08 22:06+0200\n" "PO-Revision-Date: 2012-08-02 15:08+0000\n" "Last-Translator: Nazar Banakh \n" "Language-Team: LANGUAGE \n" -"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2015-06-18 21:08+0000\n" "X-Generator: Launchpad (build 17570)\n" +"Language: \n" -#: [about]thanks +#: ../cache/locales.php:2 msgid "Thanks" msgstr "" -#: [about]developers +#: ../cache/locales.php:3 msgid "Developers" msgstr "" -#: [about]translators +#: ../cache/locales.php:4 msgid "Translators" msgstr "" -#: [about]software +#: ../cache/locales.php:5 msgid "Software" msgstr "" -#: [about]resources +#: ../cache/locales.php:6 msgid "Resources" msgstr "" -#: [about]api [schema]api [api]title +#: ../cache/locales.php:7 ../cache/locales.php:83 ../cache/locales.php:85 msgid "API" msgstr "" -#: [about]info -msgid "Movim is an XMPP-based communication platform. All the project, except the following software and resources, is under" +#: ../cache/locales.php:8 +msgid "" +"Movim is an XMPP-based communication platform. All the project, except the " +"following software and resources, is under" msgstr "" -#: [account]title +#: ../cache/locales.php:9 msgid "Account" msgstr "" -#: [account]password_change_title -msgid "Change my password" -msgstr "" - -#: [account]password [db]password [credentials]password [form]password -#: [input]password -msgid "Password" -msgstr "" - -#: [account]password_confirmation -#, fuzzy -msgid "Password confirmation" -msgstr "%s - Конфігурація" - -#: [account]password_changed +#: ../cache/locales.php:10 msgid "The password has been updated" msgstr "" -#: [account]password_not_valid +#: ../cache/locales.php:11 msgid "Please provide a valid password (6 characters minimum)" msgstr "" -#: [account]password_not_same +#: ../cache/locales.php:12 msgid "The provided passwords are not the same" msgstr "" -#: [account]delete_title +#: ../cache/locales.php:13 msgid "Delete my account" msgstr "" -#: [account]delete -msgid "Delete your account" +#: ../cache/locales.php:14 +msgid "" +"You will delete your XMPP account and all the relative information linked to " +"it (profile, contacts and publications)." msgstr "" -#: [account]delete_text -msgid "You will delete your XMPP account and all the relative information linked to it (profile, contacts and publications)." -msgstr "" - -#: [account]delete_text_confirm +#: ../cache/locales.php:15 msgid "Are you sure that you want to delete it ?" msgstr "" -#: [account]gateway_title -msgid "Gateway" -msgstr "" - -#: [create]title [subscribe]title +#: ../cache/locales.php:16 ../cache/locales.php:411 msgid "Create a new account" msgstr "" -#: [create]notfound +#: ../cache/locales.php:17 msgid "No account creation form found on the server" msgstr "" -#: [create]server_on +#: ../cache/locales.php:18 ../cache/locales.php:172 msgid "on" msgstr "" -#: [create]successfull +#: ../cache/locales.php:19 msgid "Your acccount has been successfully registered" msgstr "" -#: [create]loading +#: ../cache/locales.php:20 msgid "Loading" msgstr "" -#: [error]not_acceptable +#: ../cache/locales.php:21 msgid "Not Acceptable" msgstr "" -#: [error]service_unavailable +#: ../cache/locales.php:22 msgid "The registration system of this server is currently unavailable" msgstr "" -#: [oob]about -msgid "This server use an external system for the registration, please click on the following URL." +#: ../cache/locales.php:23 +msgid "" +"This server use an external system for the registration, please click on the " +"following URL." msgstr "" -#: [adhoc]title +#: ../cache/locales.php:24 msgid "Actions" msgstr "" -#: [db]legend [schema]database +#: ../cache/locales.php:25 ../cache/locales.php:82 msgid "Database" msgstr "" -#: [db]connect_error +#: ../cache/locales.php:26 msgid "Modl wasn't able to connect to the database" msgstr "" -#: [db]connect_success +#: ../cache/locales.php:27 msgid "Movim is connected to the database" msgstr "" -#: [db]update +#: ../cache/locales.php:28 msgid "The database need to be updated" msgstr "" -#: [db]up_to_date +#: ../cache/locales.php:29 msgid "Movim database is up to date" msgstr "" -#: [db]type +#: ../cache/locales.php:30 msgid "Database Type" msgstr "" -#: [db]username [credentials]username [input]username +#: ../cache/locales.php:31 ../cache/locales.php:50 ../cache/locales.php:540 msgid "Username" msgstr "" -#: [db]host +#: ../cache/locales.php:32 ../cache/locales.php:51 ../cache/locales.php:282 +#: ../cache/locales.php:541 +msgid "Password" +msgstr "" + +#: ../cache/locales.php:33 msgid "Host" msgstr "" -#: [db]port +#: ../cache/locales.php:34 msgid "Port" msgstr "" -#: [db]name -msgid "Database sName" +#: ../cache/locales.php:35 +msgid "Database Name" msgstr "" -#: [admin]general +#: ../cache/locales.php:36 msgid "General Settings" msgstr "" -#: [general]theme +#: ../cache/locales.php:37 msgid "Theme" msgstr "" -#: [general]language +#: ../cache/locales.php:38 msgid "Default language" msgstr "" -#: [general]log_verbosity +#: ../cache/locales.php:39 +msgid "Environment" +msgstr "" + +#: ../cache/locales.php:40 msgid "Log verbosity" msgstr "" -#: [general]timezone +#: ../cache/locales.php:41 msgid "Server Timezone" msgstr "" -#: [general]limit +#: ../cache/locales.php:42 msgid "User folder size limit (in bytes)" msgstr "" -#: [websocket]title +#: ../cache/locales.php:43 msgid "WebSocket Configuration" msgstr "" -#: [websocket]info +#: ../cache/locales.php:44 msgid "Enter here a valid WebSocket URI in the form" msgstr "" -#: [websocket]label +#: ../cache/locales.php:45 msgid "WebSocket URI" msgstr "" -#: [websocket]save_info -msgid "If you change the URI, please restart the daemon to reload the configuration" +#: ../cache/locales.php:46 +msgid "" +"If you change the URI, please restart the daemon to reload the configuration" msgstr "" -#: [websocket]publics +#: ../cache/locales.php:47 msgid "Public WebSockets" msgstr "" -#: [credentials]title +#: ../cache/locales.php:48 msgid "Administration Credential" msgstr "" -#: [credentials]info +#: ../cache/locales.php:49 msgid "Change the default credentials admin/password" msgstr "" -#: [credentials]re_password +#: ../cache/locales.php:52 msgid "Retype password" msgstr "" -#: [whitelist]title +#: ../cache/locales.php:53 msgid "Whitelist - XMPP Server" msgstr "" -#: [whitelist]info1 -msgid "If you want to specify a list of authorized XMPP servers on your Movim pod and forbid the connection on all the others please put their domain name here, with comma (ex: movim.eu,jabber.fr)" +#: ../cache/locales.php:54 +msgid "" +"If you want to specify a list of authorized XMPP servers on your Movim pod " +"and forbid the connection on all the others please put their domain name " +"here, with comma (ex: movim.eu,jabber.fr)" msgstr "" -#: [whitelist]info2 -msgid "Leave this field blank if you allow the access to all the XMPP accounts." +#: ../cache/locales.php:55 +msgid "" +"Leave this field blank if you allow the access to all the XMPP accounts." msgstr "" -#: [whitelist]label +#: ../cache/locales.php:56 msgid "List of whitelisted XMPP servers" msgstr "" -#: [information]title -msgctxt "[information]title" +#: ../cache/locales.php:57 ../cache/locales.php:61 msgid "Information Message" msgstr "" -#: [information]description +#: ../cache/locales.php:58 msgid "Description" msgstr "" -#: [information]info1 +#: ../cache/locales.php:59 msgid "This message will be displayed on the login page" msgstr "" -#: [information]info2 -msgid "Leave this field blank if you dont want to show any message." +#: ../cache/locales.php:60 +msgid "Leave this field blank if you don't want to show any message." msgstr "" -#: [information]label -msgctxt "[information]label" -msgid "Information Message" -msgstr "" - -#: [log]empty +#: ../cache/locales.php:62 msgid "Empty" msgstr "" -#: [log]syslog +#: ../cache/locales.php:63 msgid "Syslog" msgstr "" -#: [log]syslog_files +#: ../cache/locales.php:64 msgid "Syslog and files" msgstr "" -#: [rewrite]title +#: ../cache/locales.php:65 msgid "URL Rewriting" msgstr "" -#: [rewrite]info +#: ../cache/locales.php:66 msgid "The URL Rewriting can be enabled" msgstr "" -#: [admin]compatibility +#: ../cache/locales.php:67 msgid "General Overview" msgstr "" -#: [compatibility]info -msgid "Movim has found some issues or things that need to be fixed or improved" +#: ../cache/locales.php:68 +msgid "" +"Movim has found some issues or things that need to be fixed or improved" msgstr "" -#: [compatibility]php1 +#: ../cache/locales.php:69 +#, php-format msgid "Update your PHP-Version: %s" msgstr "" -#: [compatibility]php2 +#: ../cache/locales.php:70 msgid "Required: 5.3.0" msgstr "" -#: [compatibility]curl +#: ../cache/locales.php:71 msgid "Install the php5-curl library" msgstr "" -#: [compatibility]imagick +#: ../cache/locales.php:72 msgid "Install the php5-imagick library" msgstr "" -#: [compatibility]gd +#: ../cache/locales.php:73 msgid "Install the php5-gd library" msgstr "" -#: [compatibility]rights -#, fuzzy -msgid "Read and write rights for the webserver in Movims root directory" -msgstr "Включити права читання і запису на кореневу папку Movim" +#: ../cache/locales.php:74 +msgid "Read and write rights for the webserver in Movim's root directory" +msgstr "" -#: [compatibility]rewrite +#: ../cache/locales.php:75 msgid "The URL Rewriting support is currently disabled" msgstr "" -#: [compatibility]db +#: ../cache/locales.php:76 msgid "The database need to be updated, go to the database panel to fix this" msgstr "" -#: [compatibility]websocket -msgid "WebSocket connection error, check if the Movim Daemon is running and is reachable" +#: ../cache/locales.php:77 +msgid "" +"WebSocket connection error, check if the Movim Daemon is running and is " +"reacheable" msgstr "" -#: [compatibility]xmpp_websocket -msgid "XMPP Websocket connection error, please check the validity of the URL given in the General Configuration" +#: ../cache/locales.php:78 +msgid "" +"XMPP Websocket connection error, please check the validity of the URL given " +"in the General Configuration" msgstr "" -#: [schema]browser +#: ../cache/locales.php:79 msgid "Browser" msgstr "" -#: [schema]movim +#: ../cache/locales.php:80 msgid "Movim Core" msgstr "" -#: [schema]daemon +#: ../cache/locales.php:81 msgid "Movim Daemon" msgstr "" -#: [schema]xmpp +#: ../cache/locales.php:84 msgid "XMPP" msgstr "" -#: [api]info -msgid "Here you can register your pod on the official %sMovim API%s and be listed on %sthe pods page%s." +#: ../cache/locales.php:86 +#, php-format +msgid "" +"Here you can register your pod on the official %sMovim API%s and be listed " +"on %sthe pods page%s." msgstr "" -#: [api]register +#: ../cache/locales.php:87 msgid "Your pod is not registered on the API" msgstr "" -#: [api]registered +#: ../cache/locales.php:88 msgid "Your pod is registered on the API" msgstr "" -#: [api]wait +#: ../cache/locales.php:89 msgid "Your pod is not yet validated" msgstr "" -#: [api]validated +#: ../cache/locales.php:90 msgid "Your pod is validated" msgstr "" -#: [api]unregister -msgid "You asked to be removed from the API, this request will be processed in a couple of hours" +#: ../cache/locales.php:91 +msgid "" +"You asked to be removed from the API, this request will be processed in a " +"couple of hours" msgstr "" -#: [api]conf_updated [config]updated +#: ../cache/locales.php:92 ../cache/locales.php:147 msgid "Configuration updated" msgstr "" -#: [avatar]file +#: ../cache/locales.php:93 msgid "File" msgstr "" -#: [avatar]use_it +#: ../cache/locales.php:94 msgid "Use it" msgstr "" -#: [avatar]webcam +#: ../cache/locales.php:95 msgid "Webcam" msgstr "" -#: [avatar]cheese +#: ../cache/locales.php:96 msgid "Cheese !" msgstr "" -#: [avatar]snapshot +#: ../cache/locales.php:97 msgid "Take a webcam snapshot" msgstr "" -#: [avatar]updated +#: ../cache/locales.php:98 msgid "Avatar Updated" msgstr "" -#: [avatar]not_updated +#: ../cache/locales.php:99 msgid "Avatar Not Updated" msgstr "" -#: [blog]title [feed]title +#: ../cache/locales.php:100 ../cache/locales.php:415 +#, php-format msgid "%s's feed" msgstr "" -#: [blog]empty +#: ../cache/locales.php:101 msgid "This user has not posted anything right now" msgstr "" -#: [title]conferences +#: ../cache/locales.php:102 msgid "Conferences" msgstr "" -#: [title]groups [group]empty_title [menu]groups [page]groups +#: ../cache/locales.php:103 ../cache/locales.php:193 ../cache/locales.php:217 +#: ../cache/locales.php:468 msgid "Groups" msgstr "" -#: [chatroom]add +#: ../cache/locales.php:104 msgid "Add a new Chat Room" msgstr "" -#: [chatroom]id [chatrooms]id +#: ../cache/locales.php:105 ../cache/locales.php:368 msgid "Chat Room ID" msgstr "" -#: [chatroom]name -msgctxt "[chatroom]name" +#: ../cache/locales.php:106 ../cache/locales.php:116 ../cache/locales.php:156 +#: ../cache/locales.php:361 ../cache/locales.php:369 ../cache/locales.php:424 msgid "Name" msgstr "" -#: [chatroom]nickname [general]nickname [chatrooms]nickname +#: ../cache/locales.php:107 ../cache/locales.php:157 ../cache/locales.php:371 +#: ../cache/locales.php:425 msgid "Nickname" msgstr "" -#: [chatroom]autojoin_label +#: ../cache/locales.php:108 msgid "Do you want do join automaticaly this Chat Room ?" msgstr "" -#: [chatroom]bad_id [chatrooms]bad_id +#: ../cache/locales.php:109 ../cache/locales.php:372 msgid "Bad Chatroom ID" msgstr "" -#: [chatroom]empty_name [chatrooms]empty_name +#: ../cache/locales.php:110 ../cache/locales.php:373 msgid "Empty name" msgstr "" -#: [bookmarks]updated +#: ../cache/locales.php:111 ../cache/locales.php:380 msgid "Bookmarks updated" msgstr "" -#: [bookmarks]error -msgid "An error occured :" +#: ../cache/locales.php:112 +msgid "An error occured : " msgstr "" -#: [bookmarks]configure +#: ../cache/locales.php:113 msgid "Configure" msgstr "" -#: [url]add +#: ../cache/locales.php:114 msgid "Add a new URL" msgstr "" -#: [url]url +#: ../cache/locales.php:115 msgid "URL" msgstr "" -#: [url]name -msgctxt "[url]name" -msgid "Name" -msgstr "" - -#: [message]published +#: ../cache/locales.php:117 msgid "Message Published" msgstr "" -#: [message]encrypted +#: ../cache/locales.php:118 ../cache/locales.php:138 msgid "Encrypted message" msgstr "" -#: [message]composing [chats]composing +#: ../cache/locales.php:119 msgid "Composing..." msgstr "" -#: [message]paused [chats]paused +#: ../cache/locales.php:120 msgid "Paused..." msgstr "" -#: [message]gone +#: ../cache/locales.php:121 msgid "Contact gone" msgstr "" -#: [chat]attention +#: ../cache/locales.php:122 +#, php-format msgid "%s needs your attention" msgstr "" -#: [chat]placeholder +#: ../cache/locales.php:123 msgid "Your message here..." msgstr "" -#: [chat]smileys +#: ../cache/locales.php:124 msgid "Smileys" msgstr "" -#: [chat]empty_title [button]chat +#: ../cache/locales.php:125 ../cache/locales.php:139 msgid "Chat" msgstr "" -#: [chat]empty_text +#: ../cache/locales.php:126 msgid "Discuss with your contacts" msgstr "" -#: [chat]frequent [chats]frequent -msgid "Frequent contacts" -msgstr "" - -#: [chatroom]members +#: ../cache/locales.php:127 msgid "Members" msgstr "" -#: [chatroom]connected [chatrooms]connected +#: ../cache/locales.php:128 ../cache/locales.php:376 msgid "Connected to the chatroom" msgstr "" -#: [chatroom]disconnected [chatrooms]disconnected +#: ../cache/locales.php:129 ../cache/locales.php:377 msgid "Disconnected from the chatroom" msgstr "" -#: [chatroom]config [group]configuration [page]configuration +#: ../cache/locales.php:130 ../cache/locales.php:200 ../cache/locales.php:469 msgid "Configuration" msgstr "Конфігурація" -#: [chatroom]config_saved +#: ../cache/locales.php:131 msgid "Configuration saved" msgstr "" -#: [chatroom]subject +#: ../cache/locales.php:132 msgid "Subject" msgstr "" -#: [chatroom]subject_changed +#: ../cache/locales.php:133 msgid "Subject changed" msgstr "" -#: [chats]empty_title -msgid "No chats yet..." +#: ../cache/locales.php:134 +msgid "Open a new conversation by clicking on the plus button bellow" msgstr "" -#: [chats]empty -msgid "Open a new conversation by clicking on the plus button bellow or visit the Contacts page." -msgstr "" - -#: [chats]add +#: ../cache/locales.php:135 msgid "Chat with a contact" msgstr "" -#: [chats]more +#: ../cache/locales.php:136 +msgid "Frequent contacts" +msgstr "" + +#: ../cache/locales.php:137 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 "" - -#: [config]general +#: ../cache/locales.php:140 msgid "General" msgstr "" -#: [config]language +#: ../cache/locales.php:141 msgid "Language" msgstr "" -#: [config]roster +#: ../cache/locales.php:142 msgid "Roster display" msgstr "" -#: [config]roster_show +#: ../cache/locales.php:143 msgid "Show the offline contacts" msgstr "" -#: [config]roster_hide +#: ../cache/locales.php:144 msgid "Hide the offline contacts" msgstr "" -#: [config]appearence +#: ../cache/locales.php:145 msgid "Appearence" msgstr "" -#: [config]info -msgid "This configuration is shared wherever you are connected" +#: ../cache/locales.php:146 +msgid "This configuration is shared wherever you are connected !" msgstr "" -#: [notifications]message +#: ../cache/locales.php:148 msgid "Notify on incoming message" msgstr "" -#: [notifications]desktop +#: ../cache/locales.php:149 msgid "Use desktop notifications" msgstr "" -#: [general]legend [general]general_title +#: ../cache/locales.php:150 +msgid "Data" +msgstr "" + +#: ../cache/locales.php:151 +msgid "Cache" +msgstr "" + +#: ../cache/locales.php:152 ../cache/locales.php:218 ../cache/locales.php:466 +msgid "Contacts" +msgstr "" + +#: ../cache/locales.php:153 ../cache/locales.php:480 +msgid "Posts" +msgstr "" + +#: ../cache/locales.php:154 +msgid "Messages" +msgstr "" + +#: ../cache/locales.php:155 ../cache/locales.php:423 msgid "General Informations" msgstr "" -#: [general]name [public_groups]name [chatrooms]name -msgid "Name" -msgstr "" - -#: [general]date_of_birth +#: ../cache/locales.php:158 ../cache/locales.php:427 msgid "Date of Birth" msgstr "" -#: [general]gender +#: ../cache/locales.php:159 ../cache/locales.php:428 msgid "Gender" msgstr "" -#: [general]marital +#: ../cache/locales.php:160 ../cache/locales.php:429 msgid "Marital Status" msgstr "" -#: [general]email +#: ../cache/locales.php:161 ../cache/locales.php:426 msgid "Email" msgstr "" -#: [general]website +#: ../cache/locales.php:162 ../cache/locales.php:430 msgid "Website" msgstr "" -#: [general]about +#: ../cache/locales.php:163 ../cache/locales.php:431 msgid "About Me" msgstr "" -#: [general]accounts +#: ../cache/locales.php:164 msgid "Other Accounts" msgstr "" -#: [general]tune +#: ../cache/locales.php:165 msgid "Is Listening" msgstr "" -#: [position]legend [position]position_title +#: ../cache/locales.php:166 ../cache/locales.php:432 msgid "Geographic Position" msgstr "" -#: [position]locality +#: ../cache/locales.php:167 ../cache/locales.php:433 msgid "Locality" msgstr "" -#: [position]country +#: ../cache/locales.php:168 ../cache/locales.php:434 msgid "Country" msgstr "" -#: [mood]title +#: ../cache/locales.php:169 msgid "Mood" msgstr "" -#: [mood]im +#: ../cache/locales.php:170 msgid "I'm " msgstr "" -#: [listen]title +#: ../cache/locales.php:171 msgid "Listening" msgstr "" -#: [last]title +#: ../cache/locales.php:173 msgid "Last seen" msgstr "" -#: [client]title +#: ../cache/locales.php:174 msgid "Client Informations" msgstr "" -#: [explore]last_registered +#: ../cache/locales.php:175 msgid "Last registered" msgstr "" -#: [explore]explore +#: ../cache/locales.php:176 msgid "Find some new friends" msgstr "" -#: [edit]title [button]edit +#: ../cache/locales.php:177 ../cache/locales.php:533 msgid "Edit" msgstr "" -#: [edit]alias +#: ../cache/locales.php:178 msgid "Alias" msgstr "" -#: [edit]group +#: ../cache/locales.php:179 msgid "Group" msgstr "" -#: [edit]updated [roster]updated +#: ../cache/locales.php:180 ../cache/locales.php:400 msgid "Contact updated" msgstr "" -#: [delete]title +#: ../cache/locales.php:181 msgid "Are you sure?" msgstr "" -#: [delete]text -msgid "You are going to delete one of your contacts, please confirm your action" +#: ../cache/locales.php:182 +msgid "" +"You are going to delete one of your contacts, please confirm your action" msgstr "" -#: [age]years +#: ../cache/locales.php:183 +#, php-format msgid "%s years" msgstr "" -#: [blog]last +#: ../cache/locales.php:184 msgid "Last public post" msgstr "" -#: [subscription]to -msgid "You can see this contact status" -msgstr "" - -#: [subscription]to_button -msgid "Share my status" -msgstr "" - -#: [subscription]to_text -msgid "But this contact cannot see yours" -msgstr "" - -#: [subscription]from -msgid "You are not subscribed to this contact" -msgstr "" - -#: [subscription]from_button -msgid "Ask to subscribe" -msgstr "" - -#: [subscription]from_text -msgid "But this contact can still see if you are online" -msgstr "" - -#: [subscription]nil -msgid "No subscriptions" -msgstr "" - -#: [subscription]nil_button -msgid "Invite" -msgstr "" - -#: [subscription]nil_text -msgid "This contact is in your contact list but there is no subscriptions between the two accounts" -msgstr "" - -#: [group]subscribe +#: ../cache/locales.php:185 msgid "Subscribe" msgstr "" -#: [group]subscribed +#: ../cache/locales.php:186 msgid "Subscribed" msgstr "" -#: [group]unsubscribe +#: ../cache/locales.php:187 msgid "Unsubscribe" msgstr "" -#: [group]unsubscribe_text +#: ../cache/locales.php:188 msgid "You are going to unsubscribe from this Group" msgstr "" -#: [group]unsubscribed +#: ../cache/locales.php:189 msgid "Unsubscribed" msgstr "" -#: [group]share_label +#: ../cache/locales.php:190 msgid "Make your membership to this group public to your friends" msgstr "" -#: [group]label_label +#: ../cache/locales.php:191 msgid "Give a label for this group" msgstr "" -#: [group]sure +#: ../cache/locales.php:192 msgid "Are you sure ?" msgstr "" -#: [group]empty_text +#: ../cache/locales.php:194 msgid "Discover, follow and share" msgstr "" -#: [group]empty +#: ../cache/locales.php:195 msgid "Something bad happened to this group" msgstr "" -#: [group]config_saved +#: ../cache/locales.php:196 msgid "Group configuration saved" msgstr "" -#: [group]delete_title +#: ../cache/locales.php:197 msgid "Delete the group" msgstr "" -#: [group]delete_text -msgid "You are going to delete the following group. Please confirm your action." +#: ../cache/locales.php:198 +msgid "" +"You are going to delete the following group. Please confirm your action." msgstr "" -#: [group]delete_clean_text -msgid "It seems that this group doesn't exists anymore. Do you want to remove it from your subscriptions?" +#: ../cache/locales.php:199 +msgid "" +"It seems that this group doesn't exists anymore. Do you want to remove it " +"from your subscriptions?" msgstr "" -#: [group]counter -msgid "%s groups on this server" -msgstr "" - -#: [group]subscriptions [statistics]subscriptions +#: ../cache/locales.php:201 ../cache/locales.php:408 msgid "Subscriptions" msgstr "" -#: [group]servers -msgid "Groups servers" -msgstr "" - -#: [group]search_server -msgid "Search for a new server" -msgstr "" - -#: [group]help_info1 -msgid "Groups are the perfect way to share posts about topics that you like with all the other Movim's users." -msgstr "" - -#: [group]help_info2 -msgid "Choose a server and a Group and subscribe to it using the %s button in the header. You can also create a new one using the %s button." -msgstr "" - -#: [group]help_info3 -msgid "Done? You can now publish a new post in the Group by using the %s button." -msgstr "" - -#: [group]help_info4 -msgid "You will find a list of all your subscribed Groups in My Subscriptions and receive instantly all the new incoming posts in the %sNews%s page." -msgstr "" - -#: [groups]empty_title +#: ../cache/locales.php:202 ../cache/locales.php:290 msgid "Hello" msgstr "" -#: [groups]contact_post [hello]contact_post [menu]contact_post +#: ../cache/locales.php:203 ../cache/locales.php:225 ../cache/locales.php:291 msgid "Contact post" msgstr "" -#: [groups]empty_text1 -msgid "You don't have any subscriptions yet, select a group server above to start exploring." +#: ../cache/locales.php:204 +msgid "" +"You don't have any subscriptions yet, select a group server above to start " +"exploring." msgstr "" -#: [groups]empty_text2 +#: ../cache/locales.php:205 msgid "Subscribe to your favorite feeds by bookmarking them." msgstr "" -#: [groups]subscriptions +#: ../cache/locales.php:206 msgid "My Subscriptions" msgstr "" -#: [groups]add +#: ../cache/locales.php:207 msgid "Create a new Group" msgstr "" -#: [groups]name +#: ../cache/locales.php:208 msgid "Group name" msgstr "" -#: [groups]name_example +#: ../cache/locales.php:209 msgid "My Little Pony - Fan Club" msgstr "" -#: [groups]created +#: ../cache/locales.php:210 msgid "Group created successfully" msgstr "" -#: [groups]deleted +#: ../cache/locales.php:211 msgid "Group deleted successfully" msgstr "" -#: [groups]name_error +#: ../cache/locales.php:212 msgid "Please provide a valid group name (4 characters minimum)" msgstr "" -#: [groups]no_creation +#: ../cache/locales.php:213 msgid "You cannot create a new Group on this server" msgstr "" -#: [groups]sub +#: ../cache/locales.php:214 +#, php-format msgid "%s subscribers" msgstr "" -#: [groups]num +#: ../cache/locales.php:215 +#, php-format msgid "%s posts" msgstr "" -#: [groups]disco_error -msgid "This server doesn't exists" -msgstr "" - -#: [menu]all +#: ../cache/locales.php:216 msgid "All" msgstr "" -#: [menu]refresh +#: ../cache/locales.php:219 msgid "Refresh all the streams" msgstr "" -#: [roster]search -msgid "Search in your contacts" -msgstr "" - -#: [hello]active_contacts -msgid "Active contacts" -msgstr "" - -#: [hello]chat -msgid "Go on the Chat page" -msgstr "" - -#: [hello]news [page]news -msgid "News" -msgstr "" - -#: [hello]news_page -msgid "Read all theses articles on the News page" -msgstr "" - -#: [hello]blog_title -msgid "Visit your public blog" -msgstr "" - -#: [hello]blog_text -msgid "See your public posts and share them with all your contacts" -msgstr "" - -#: [hello]share_title -msgid "Universal share button" -msgstr "" - -#: [hello]share_text -msgid "Bookmark or drag and drop the following button in your toolbar and use it on all the pages you want to share on Movim" -msgstr "" - -#: [hello]share_button -msgid "Share on Movim" -msgstr "" - -#: [help]faq -msgid "Frequently Asked Questions" -msgstr "" - -#: [banner]title -msgid "What do the little banners refer to ?" -msgstr "" - -#: [banner]info1 -msgid "Thanks to these five little banners, you can quickly identitfy the level of confdentiality applied to the information you provide." -msgstr "" - -#: [banner]white -msgid "White, only you can see the information" -msgstr "" - -#: [banner]green -msgid "Green, you have chosen some contacts who can see your information" -msgstr "" - -#: [banner]orange -msgid "Orange, all your contact list can see your information" -msgstr "" - -#: [banner]red -msgid "Red, everybody in the XMPP network can see your information" -msgstr "" - -#: [banner]black -msgid "Black, the whole Internet can see your information" -msgstr "" - -#: [wiki]question -msgid "Looking for some documentation ?" -msgstr "" - -#: [wiki]button -msgid "Read the Wiki" -msgstr "" - -#: [ml]question -msgid "Talk with us by email ?" -msgstr "" - -#: [ml]button -msgid "Join the Mailing List" -msgstr "" - -#: [chatroom]question -msgid "Chat with the team ?" -msgstr "" - -#: [chatroom]button -msgid "Join the Chatroom" -msgstr "" - -#: [init]location -msgid "Location node created" -msgstr "" - -#: [init]bookmark -msgid "Bookmark node created" -msgstr "" - -#: [init]vcard4 -msgid "Profile node created" -msgstr "" - -#: [init]avatar -msgid "Avatar node created" -msgstr "" - -#: [init]subscriptions -msgid "Subscriptions node created" -msgstr "" - -#: [init]microblog -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 "" - -#: [error]jid -msgid "Invalid JID" -msgstr "" - -#: [error]empty_challenge -msgid "Empty Challenge from the server" -msgstr "" - -#: [error]dns -msgid "XMPP Domain error, your account is not a correct Jabber ID" -msgstr "" - -#: [error]data_missings -msgid "Some data are missing !" -msgstr "" - -#: [error]wrong_password -msgid "Wrong password" -msgstr "" - -#: [error]internal -msgid "Internal server error" -msgstr "" - -#: [error]session -msgid "Session error" -msgstr "" - -#: [error]account_created -msgid "Account successfully created" -msgstr "" - -#: [error]xmpp_unauthorized -msgctxt "[error]xmpp_unauthorized" -msgid "Your XMPP server is unauthorized" -msgstr "" - -#: [error]mec_error -msgid "The server takes too much time to respond" -msgstr "" - -#: [error]too_old -msgid "Your web browser is too old to use with Movim." -msgstr "" - -#: [error]websocket -msgid "Movim cannot talk with the server, please try again later (Websocket connection error)" -msgstr "" - -#: [error]impossible -msgid "Impossible login" -msgstr "" - -#: [error]title -msgid "Oops!" -msgstr "" - -#: [error]default [visio]unknown_error -msgid "Unknown error" -msgstr "" - -#: [error]login_format -msgid "Invalid username format" -msgstr "" - -#: [error]password_format -msgid "Invalid password format" -msgstr "" - -#: [error]unauthorized -msgctxt "[error]unauthorized" -msgid "Your XMPP server is unauthorized" -msgstr "" - -#: [error]conflict -msgid "A Movim session is already open on an other device" -msgstr "" - -#: [error]wrong_account -msgid "Movim failed to authenticate. You entered wrong data" -msgstr "" - -#: [error]mechanism -msgid "Authentication mechanism not supported by Movim" -msgstr "" - -#: [error]fail_auth -msgid "The XMPP authentification failed" -msgstr "" - -#: [account]title [accounts]accounts_title -msgid "Accounts" -msgstr "" - -#: [form]username -msgid "My address" -msgstr "" - -#: [form]create_one -msgid "Create one !" -msgstr "" - -#: [form]another_account -msgid "Another account" -msgstr "" - -#: [form]no_account -msgid "No account yet ?" -msgstr "" - -#: [form]whitelist.info -msgid "You can login with accounts from theses servers" -msgstr "" - -#: [form]connected -msgid "Connected" -msgstr "" - -#: [form]population -msgid "Population" -msgstr "" - -#: [menu]empty_title -msgid "No news yet..." -msgstr "" - -#: [menu]empty -msgid "Welcome on your news feed, here you will see all the posts published by your contacts and in the groups you have subscribed." -msgstr "" - -#: [menu]refresh -msgid "Refreshing all the streams" -msgstr "" - -#: [menu]public -msgid "This post is public" -msgstr "" - -#: [affiliations]title -msgid "Manage your members" -msgstr "" - -#: [affiliations]get -msgid "Get the members" -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 "" - -#: [notifs]title -msgid "Pending Invitations" -msgstr "" - -#: [notifs]wants_to_talk -msgid "%s wants to talk with you" -msgstr "" - -#: [notifs]manage -msgid "Manage" -msgstr "" - -#: [post]news_feed -msgid "News Feed" -msgstr "" - -#: [post]placeholder -msgid "Discover and register to the groups you are interested in" -msgstr "" - -#: [post]preview [page]preview -msgid "Preview" -msgstr "" - -#: [post]help [page]help -msgid "Help" -msgstr "" - -#: [post]help_more -msgid "More help" -msgstr "" - -#: [post]help_manual -msgid "Markdown syntax manual" -msgstr "" - -#: [post]title -msgid "Title" -msgstr "" - -#: [post]content -msgid "Content" -msgstr "" - -#: [post]link -msgid "Link" -msgstr "" - -#: [post]tags -msgid "Tags" -msgstr "" - -#: [post]valid_url [publish]valid_url -msgid "Please enter a valid url" -msgstr "" - -#: [post]no_content_preview [publish]no_content_preview -msgid "No content to preview" -msgstr "" - -#: [post]no_content [publish]no_content [post]empty -msgid "No content" -msgstr "" - -#: [post]published -msgid "Post published" -msgstr "" - -#: [post]deleted -msgid "Post deleted" -msgstr "" - -#: [post]gallery -msgid "This picture will be added to your gallery" -msgstr "" - -#: [post]hot -msgid "What's Hot" -msgstr "" - -#: [post]hot_text -msgid "Posts recently published in Groups that you are not subscribed (yet)" -msgstr "" - -#: [post]new [publish]new -msgid "New post" -msgstr "" - -#: [post]embed_tip -msgid "You can also use services like Imgur or Flickr to host your picture and paste the link here." -msgstr "" - -#: [post]repost -msgid "This is a re-post from %s" -msgstr "" - -#: [post]repost_profile -msgid "See %s profile" -msgstr "" - -#: [post]public -msgid "Publish this post publicly?" -msgstr "" - -#: [post]blog_add -msgid "Post published on your blog" -msgstr "" - -#: [post]blog_remove -msgid "Post removed from your blog" -msgstr "" - -#: [post]delete_title [post]delete -msgid "Delete this post" -msgstr "" - -#: [post]delete_text -msgid "You are going to delete this post, please confirm your action" -msgstr "" - -#: [post]comments_disabled -msgid "Comments disabled" -msgstr "" - -#: [post]comment_published -msgid "Comment published" -msgstr "" - -#: [status]disconnect -msgid "Disconnect" -msgstr "" - -#: [status]here -msgid "Your status here !" -msgstr "" - -#: [status]updated -msgid "Status updated" -msgstr "" - -#: [status]status -msgid "Status" -msgstr "" - -#: [status]presence -msgid "Presence" -msgstr "" - -#: [status]online -msgid "Online with Movim" -msgstr "" - -#: [publish]title -msgid "Publish" -msgstr "" - -#: [publish]attach -msgid "Add a file or a picture to your post" -msgstr "" - -#: [publish]no_publication -msgid "You cannot publish a post on this Group" -msgstr "" - -#: [publish]form_filled -msgid "Some fields have been filled in. Do you still want to go back and loose their content?" -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 "" - -#: [rooms]empty_text1 -msgid "You don't have any chatroom yet." -msgstr "" - -#: [rooms]empty_text2 -msgid "Add one by clicking on the add button in the header." -msgstr "" - -#: [chatrooms]title -msgid "Chatrooms" -msgstr "" - -#: [chatrooms]name_placeholder -msgid "My Favorite Room" -msgstr "" - -#: [chatrooms]users -msgid "Users in the room" -msgstr "" - -#: [chatrooms]bad_nickname -msgid "Please enter a correct nickname (2 to 40 characters)" -msgstr "" - -#: [room]anonymous_title -msgid "Public chatroom" -msgstr "" - -#: [room]no_room -msgid "Please provide a room address" -msgstr "" - -#: [room]anonymous_text1 -msgid "You are currently logued as an anonymous user." -msgstr "" - -#: [room]anonymous_text2 -msgid "You can join using your own account or create one on the login page by loging out using the cross in the top-right corner." -msgstr "" - -#: [room]anonymous_login -msgid "Login on %s" -msgstr "" - -#: [room]nick -msgid "Your nickname" -msgstr "" - -#: [roster]ungrouped -msgid "Ungrouped" -msgstr "" - -#: [roster]show_disconnected -msgid "Show disconnected contacts" -msgstr "" - -#: [roster]hide_disconnected -msgid "Hide disconnected contacts" -msgstr "" - -#: [roster]show_group -msgid "Show group %s" -msgstr "" - -#: [roster]hide_group -msgid "Hide group %s" -msgstr "" - -#: [roster]jid_error -msgid "Please enter a valid Jabber ID" -msgstr "" - -#: [roster]no_contacts_title -msgid "No contacts ?" -msgstr "" - -#: [roster]no_contacts_text -msgid "You can add one using the + button bellow" -msgstr "" - -#: [roster]show_hide -msgid "Show/Hide" -msgstr "" - -#: [roster]add_contact_info1 -msgid "Enter the Jabber ID of your contact." -msgstr "" - -#: [roster]add_contact_info2 -msgid "Press enter to validate." -msgstr "" - -#: [roster]jid -msgid "JID" -msgstr "" - -#: [roster]results -msgid "Results" -msgstr "" - -#: [roster]added -msgid "Contact added" -msgstr "" - -#: [roster]deleted -msgid "Contact deleted" -msgstr "" - -#: [roster]search +#: ../cache/locales.php:220 ../cache/locales.php:402 msgid "Search" msgstr "" -#: [share]error +#: ../cache/locales.php:221 +msgid "Go on the Chat page" +msgstr "" + +#: ../cache/locales.php:222 +msgid "Read all theses articles on the News page" +msgstr "" + +#: ../cache/locales.php:223 +msgid "Visit your public blog" +msgstr "" + +#: ../cache/locales.php:224 +msgid "See your public posts and share them with all your contacts" +msgstr "" + +#: ../cache/locales.php:226 +msgid "Universal share button" +msgstr "" + +#: ../cache/locales.php:227 +msgid "" +"Bookmark or drag and drop the following button in your toolbar and use it on " +"all the pages you want to share on Movim" +msgstr "" + +#: ../cache/locales.php:228 +msgid "Share on Movim" +msgstr "" + +#: ../cache/locales.php:229 +msgid "Frequently Asked Questions" +msgstr "" + +#: ../cache/locales.php:230 +msgid "What do the little banners refer to ?" +msgstr "" + +#: ../cache/locales.php:231 +msgid "" +"Thanks to these five little banners, you can quickly identitfy the level of " +"confdentiality applied to the information you provide." +msgstr "" + +#: ../cache/locales.php:232 +msgid "White, only you can see the information" +msgstr "" + +#: ../cache/locales.php:233 +msgid "Green, you have chosen some contacts who can see your information" +msgstr "" + +#: ../cache/locales.php:234 +msgid "Orange, all your contact list can see your information" +msgstr "" + +#: ../cache/locales.php:235 +msgid "Red, everybody in the XMPP network can see your information" +msgstr "" + +#: ../cache/locales.php:236 +msgid "Black, the whole Internet can see your information" +msgstr "" + +#: ../cache/locales.php:237 +msgid "Looking for some documentation ?" +msgstr "" + +#: ../cache/locales.php:238 +msgid "Read the Wiki" +msgstr "" + +#: ../cache/locales.php:239 +msgid "Talk with us by email ?" +msgstr "" + +#: ../cache/locales.php:240 +msgid "Join the Mailing List" +msgstr "" + +#: ../cache/locales.php:241 +msgid "Chat with the team ?" +msgstr "" + +#: ../cache/locales.php:242 +msgid "Join the Chatroom" +msgstr "" + +#: ../cache/locales.php:243 +msgid "Location node created" +msgstr "" + +#: ../cache/locales.php:244 +msgid "Bookmark node created" +msgstr "" + +#: ../cache/locales.php:245 +msgid "Profile node created" +msgstr "" + +#: ../cache/locales.php:246 +msgid "Avatar node created" +msgstr "" + +#: ../cache/locales.php:247 +msgid "Subscriptions node created" +msgstr "" + +#: ../cache/locales.php:248 +msgid "Microblog node created" +msgstr "" + +#: ../cache/locales.php:249 +msgid "Location" +msgstr "" + +#: ../cache/locales.php:250 +msgid "Wrong position" +msgstr "" + +#: ../cache/locales.php:251 +msgid "Location updated" +msgstr "" + +#: ../cache/locales.php:252 +msgid "Update my position" +msgstr "" + +#: ../cache/locales.php:253 +msgid "Wrong username" +msgstr "" + +#: ../cache/locales.php:254 +msgid "Invalid JID" +msgstr "" + +#: ../cache/locales.php:255 +msgid "Empty Challenge from the server" +msgstr "" + +#: ../cache/locales.php:256 +msgid "XMPP Domain error, your account is not a correct Jabber ID" +msgstr "" + +#: ../cache/locales.php:257 +msgid "Some data are missing !" +msgstr "" + +#: ../cache/locales.php:258 +msgid "Wrong password" +msgstr "" + +#: ../cache/locales.php:259 +msgid "Internal server error" +msgstr "" + +#: ../cache/locales.php:260 +msgid "Session error" +msgstr "" + +#: ../cache/locales.php:261 +msgid "Account successfully created" +msgstr "" + +#: ../cache/locales.php:262 ../cache/locales.php:271 +msgid "Your XMPP server is unauthorized" +msgstr "" + +#: ../cache/locales.php:263 +msgid "The server takes too much time to respond" +msgstr "" + +#: ../cache/locales.php:264 +msgid "Your web browser is too old to use with Movim." +msgstr "" + +#: ../cache/locales.php:265 +msgid "" +"Movim cannot talk with the server, please try again later (Websocket " +"connection error)" +msgstr "" + +#: ../cache/locales.php:266 +msgid "Impossible login" +msgstr "" + +#: ../cache/locales.php:267 +msgid "Oops!" +msgstr "" + +#: ../cache/locales.php:268 ../cache/locales.php:449 ../cache/locales.php:455 +msgid "Unknown error" +msgstr "" + +#: ../cache/locales.php:269 +msgid "Invalid username format" +msgstr "" + +#: ../cache/locales.php:270 +msgid "Invalid password format" +msgstr "" + +#: ../cache/locales.php:272 +msgid "A Movim session is already open on an other device" +msgstr "" + +#: ../cache/locales.php:273 +msgid "Movim failed to authenticate. You entered wrong data" +msgstr "" + +#: ../cache/locales.php:274 +msgid "Authentication mechanism not supported by Movim" +msgstr "" + +#: ../cache/locales.php:275 +msgid "The XMPP authentification failed" +msgstr "" + +#: ../cache/locales.php:276 +#, php-format +msgid "" +"You can login with Facebook (chat only) using %syour.id@chat.facebook.com%s " +"and your password" +msgstr "" + +#: ../cache/locales.php:277 +#, php-format +msgid "%sGmail accounts are also compatible%s but are not fully supported" +msgstr "" + +#: ../cache/locales.php:278 +msgid "You can login using your favorite Jabber account" +msgstr "" + +#: ../cache/locales.php:279 +msgid "or with our demonstration account" +msgstr "" + +#: ../cache/locales.php:280 ../cache/locales.php:435 +msgid "Accounts" +msgstr "" + +#: ../cache/locales.php:281 +msgid "My address" +msgstr "" + +#: ../cache/locales.php:283 +msgid "Create one !" +msgstr "" + +#: ../cache/locales.php:284 +msgid "No account yet ?" +msgstr "" + +#: ../cache/locales.php:285 +msgid "Another account" +msgstr "" + +#: ../cache/locales.php:286 +msgid "You can login with accounts from theses servers" +msgstr "" + +#: ../cache/locales.php:287 +msgid "Connected" +msgstr "" + +#: ../cache/locales.php:288 +msgid "Population" +msgstr "" + +#: ../cache/locales.php:289 +msgid "Bad nickname (between 4 and 40 characters)" +msgstr "" + +#: ../cache/locales.php:292 +msgid "" +"Welcome on your news feed, here you will see all the posts published in the " +"groups you have subscribed." +msgstr "" + +#: ../cache/locales.php:293 +msgid "Refreshing all the streams" +msgstr "" + +#: ../cache/locales.php:294 +msgid "This post is public" +msgstr "" + +#: ../cache/locales.php:295 +msgid "Manage your members" +msgstr "" + +#: ../cache/locales.php:296 +msgid "Get the members" +msgstr "" + +#: ../cache/locales.php:297 +msgid "Affiliations saved" +msgstr "" + +#: ../cache/locales.php:298 +msgid "Manage your subscriptions" +msgstr "" + +#: ../cache/locales.php:299 +msgid "Manage the subscriptions" +msgstr "" + +#: ../cache/locales.php:300 +msgid "Get the subscriptions" +msgstr "" + +#: ../cache/locales.php:301 +msgid "Subscriptions saved" +msgstr "" + +#: ../cache/locales.php:302 +msgid "Pending Invitations" +msgstr "" + +#: ../cache/locales.php:303 +#, php-format +msgid "%s wants to talk with you" +msgstr "" + +#: ../cache/locales.php:304 +msgid "Manage" +msgstr "" + +#: ../cache/locales.php:305 ../cache/locales.php:338 +msgid "News Feed" +msgstr "" + +#: ../cache/locales.php:306 ../cache/locales.php:339 +msgid "Discover and register to the groups you are interested in" +msgstr "" + +#: ../cache/locales.php:307 ../cache/locales.php:340 ../cache/locales.php:482 +msgid "Preview" +msgstr "" + +#: ../cache/locales.php:308 ../cache/locales.php:341 ../cache/locales.php:478 +msgid "Help" +msgstr "" + +#: ../cache/locales.php:309 ../cache/locales.php:342 +msgid "More help" +msgstr "" + +#: ../cache/locales.php:310 ../cache/locales.php:343 +msgid "Markdown syntax manual" +msgstr "" + +#: ../cache/locales.php:311 ../cache/locales.php:344 ../cache/locales.php:681 +msgid "Title" +msgstr "" + +#: ../cache/locales.php:312 ../cache/locales.php:345 +msgid "Content" +msgstr "" + +#: ../cache/locales.php:313 ../cache/locales.php:346 +msgid "Link" +msgstr "" + +#: ../cache/locales.php:314 ../cache/locales.php:347 +msgid "Tags" +msgstr "" + +#: ../cache/locales.php:315 ../cache/locales.php:348 +msgid "Please enter a valid url" +msgstr "" + +#: ../cache/locales.php:316 ../cache/locales.php:349 +msgid "No content to preview" +msgstr "" + +#: ../cache/locales.php:317 ../cache/locales.php:350 ../cache/locales.php:687 +msgid "No content" +msgstr "" + +#: ../cache/locales.php:318 ../cache/locales.php:351 +msgid "Post published" +msgstr "" + +#: ../cache/locales.php:319 ../cache/locales.php:352 +msgid "Post deleted" +msgstr "" + +#: ../cache/locales.php:320 ../cache/locales.php:353 +msgid "This picture will be added to your gallery" +msgstr "" + +#: ../cache/locales.php:321 ../cache/locales.php:354 +msgid "What's Hot" +msgstr "" + +#: ../cache/locales.php:322 ../cache/locales.php:355 +msgid "New post" +msgstr "" + +#: ../cache/locales.php:323 ../cache/locales.php:357 +msgid "" +"You can also use services like Imgur or Flickr to host your picture and " +"paste the link here." +msgstr "" + +#: ../cache/locales.php:324 +#, php-format +msgid "This is a re-post from %s" +msgstr "" + +#: ../cache/locales.php:325 +#, php-format +msgid "See %s profile" +msgstr "" + +#: ../cache/locales.php:326 +msgid "Publish this post on your public feed?" +msgstr "" + +#: ../cache/locales.php:327 +msgid "Post published on your blog" +msgstr "" + +#: ../cache/locales.php:328 +msgid "Post removed from your blog" +msgstr "" + +#: ../cache/locales.php:329 ../cache/locales.php:701 +msgid "Delete this post" +msgstr "" + +#: ../cache/locales.php:330 +msgid "You are going to delete this post, please confirm your action" +msgstr "" + +#: ../cache/locales.php:331 +msgid "Comments disabled" +msgstr "" + +#: ../cache/locales.php:332 +msgid "Comment published" +msgstr "" + +#: ../cache/locales.php:333 +msgid "Disconnect" +msgstr "" + +#: ../cache/locales.php:334 +msgid "Your status here !" +msgstr "" + +#: ../cache/locales.php:335 +msgid "Status updated" +msgstr "" + +#: ../cache/locales.php:336 +msgid "Status" +msgstr "" + +#: ../cache/locales.php:337 +msgid "Presence" +msgstr "" + +#: ../cache/locales.php:356 +msgid "Publish" +msgstr "" + +#: ../cache/locales.php:358 +msgid "You cannot publish a post on this Group" +msgstr "" + +#: ../cache/locales.php:359 +msgid "" +"Some fields have been filled in. Do you still want to go back and loose " +"their content?" +msgstr "" + +#: ../cache/locales.php:360 +msgid "Shared" +msgstr "" + +#: ../cache/locales.php:362 +#, php-format +msgid "%s has been added to your public groups" +msgstr "" + +#: ../cache/locales.php:363 +#, php-format +msgid "%s has been removed from your public groups" +msgstr "" + +#: ../cache/locales.php:364 +msgid "Add a chatroom" +msgstr "" + +#: ../cache/locales.php:365 +msgid "You don't have any chatroom yet." +msgstr "" + +#: ../cache/locales.php:366 +msgid "Add one by clicking on the add button in the header." +msgstr "" + +#: ../cache/locales.php:367 +msgid "Chatrooms" +msgstr "" + +#: ../cache/locales.php:370 +msgid "My Favorite Room" +msgstr "" + +#: ../cache/locales.php:374 +msgid "Remove a chatroom" +msgstr "" + +#: ../cache/locales.php:375 +msgid "" +"You are going to remove the following chatroom. Please confirm your action." +msgstr "" + +#: ../cache/locales.php:378 +msgid "Users in the room" +msgstr "" + +#: ../cache/locales.php:379 +msgid "Please enter a correct nickname (6 to 40 characters)" +msgstr "" + +#: ../cache/locales.php:381 +msgid "Public chatroom" +msgstr "" + +#: ../cache/locales.php:382 +msgid "Please provide a room address" +msgstr "" + +#: ../cache/locales.php:383 +msgid "You are currently logued as an anonymous user." +msgstr "" + +#: ../cache/locales.php:384 +msgid "" +"You can join using your own account or create one on the login page by " +"loging out using the cross in the top-right corner." +msgstr "" + +#: ../cache/locales.php:385 +#, php-format +msgid "Login on %s" +msgstr "" + +#: ../cache/locales.php:386 +msgid "Your nickname" +msgstr "" + +#: ../cache/locales.php:387 +msgid "Ungrouped" +msgstr "" + +#: ../cache/locales.php:388 +msgid "Show disconnected contacts" +msgstr "" + +#: ../cache/locales.php:389 +msgid "Hide disconnected contacts" +msgstr "" + +#: ../cache/locales.php:390 +#, php-format +msgid "Show group %s" +msgstr "" + +#: ../cache/locales.php:391 +#, php-format +msgid "Hide group %s" +msgstr "" + +#: ../cache/locales.php:392 +msgid "Please enter a valid Jabber ID" +msgstr "" + +#: ../cache/locales.php:393 +msgid "" +"No contacts ? You can add one using the + button bellow or going to the " +"Explore page" +msgstr "" + +#: ../cache/locales.php:394 +msgid "Show/Hide" +msgstr "" + +#: ../cache/locales.php:395 +msgid "Enter the Jabber ID of your contact." +msgstr "" + +#: ../cache/locales.php:396 +msgid "Press enter to validate." +msgstr "" + +#: ../cache/locales.php:397 +msgid "JID" +msgstr "" + +#: ../cache/locales.php:398 +msgid "Results" +msgstr "" + +#: ../cache/locales.php:399 +msgid "Contact added" +msgstr "" + +#: ../cache/locales.php:401 +msgid "Contact deleted" +msgstr "" + +#: ../cache/locales.php:403 msgid "This is not a valid url" msgstr "" -#: [share]success +#: ../cache/locales.php:404 msgid "Sharing the URL" msgstr "" -#: [statistics]title +#: ../cache/locales.php:405 msgid "Statistics" msgstr "" -#: [statistics]since +#: ../cache/locales.php:406 msgid "Since" msgstr "" -#: [statistics]sessions +#: ../cache/locales.php:407 msgid "Sessions" msgstr "" -#: [statistics]monthly_sub +#: ../cache/locales.php:409 msgid "Monthly Subscriptions" msgstr "" -#: [statistics]monthly_sub_cum +#: ../cache/locales.php:410 msgid "Monthly Subscriptions Cumulated" msgstr "" -#: [subscribe]info -msgid "Movim is a decentralized social network, before creating a new account you need to choose a server to register." +#: ../cache/locales.php:412 +msgid "" +"Movim is a decentralized social network, before creating a new account you " +"need to choose a server to register." msgstr "" -#: [subscribe]server_question +#: ../cache/locales.php:413 msgid "Your server here ?" msgstr "" -#: [subscribe]server_contact +#: ../cache/locales.php:414 msgid "Contact us to add yours to the officially supported servers list" msgstr "" -#: [feed]nope +#: ../cache/locales.php:416 msgid "No public feed for this contact" msgstr "" -#: [feed]nope_contact +#: ../cache/locales.php:417 msgid "No contact specified" msgstr "" -#: [upload]title -msgid "Upload a file" -msgstr "" - -#: [upload]choose -msgid "Choose a file to upload" -msgstr "" - -#: [vcard]title [page]profile +#: ../cache/locales.php:418 ../cache/locales.php:473 msgid "Profile" msgstr "" -#: [vcard]updated +#: ../cache/locales.php:419 msgid "Profile Updated" msgstr "" -#: [vcard]not_updated +#: ../cache/locales.php:420 msgid "Profile Not Updated" msgstr "" -#: [vcard]public +#: ../cache/locales.php:421 msgid "Your profile is now public" msgstr "" -#: [vcard]restricted +#: ../cache/locales.php:422 msgid "Your profile is now restricted" msgstr "" -#: [general]nickname -msgctxt "[general]nickname" -msgid "Nickname" -msgstr "" - -#: [accounts]twitter +#: ../cache/locales.php:436 msgid "Twitter" msgstr "" -#: [accounts]skype +#: ../cache/locales.php:437 msgid "Skype" msgstr "" -#: [accounts]yahoo +#: ../cache/locales.php:438 msgid "Yahoo" msgstr "" -#: [accounts]accounts_nickname -msgctxt "[accounts]accounts_nickname" -msgid "Nickname" -msgstr "" - -#: [accounts]accounts_yahoo -msgid "Yahoo Account" -msgstr "" - -#: [privacy]privacy_title +#: ../cache/locales.php:439 msgid "Privacy Level" msgstr "" -#: [privacy]privacy_question +#: ../cache/locales.php:440 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." +#: ../cache/locales.php:441 +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." msgstr "" -#: [save]submit [button]submit -msgid "Submit" -msgstr "" - -#: [save]reset [button]reset -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 +#: ../cache/locales.php:442 msgid "Call" msgstr "" -#: [visio]hang_up +#: ../cache/locales.php:443 msgid "Hang up" msgstr "" -#: [visio]connection +#: ../cache/locales.php:444 msgid "Connection" msgstr "" -#: [global]no_js +#: ../cache/locales.php:445 ../cache/locales.php:451 +msgid "Hung up" +msgstr "" + +#: ../cache/locales.php:446 ../cache/locales.php:452 +msgid "Your contact is busy" +msgstr "" + +#: ../cache/locales.php:447 ../cache/locales.php:453 +msgid "Declined" +msgstr "" + +#: ../cache/locales.php:448 ../cache/locales.php:454 +msgid "Remote application incompatible" +msgstr "" + +#: ../cache/locales.php:450 ../cache/locales.php:456 +msgid "Is calling you" +msgstr "" + +#: ../cache/locales.php:457 msgid "You don't have javascript enabled. Good luck with that." msgstr "" -#: [global]description -msgid "Movim is a kickass distributed social networking platform that protect your privacy an comes with a set of awesome features." +#: ../cache/locales.php:458 +msgid "" +"Movim is a kickass distributed social networking platform that protect your " +"privacy an comes with a set of awesome features." msgstr "" -#: [page]administration +#: ../cache/locales.php:459 msgid "Administration" msgstr "" -#: [page]home +#: ../cache/locales.php:460 msgid "Home" msgstr "" -#: [page]discover +#: ../cache/locales.php:461 msgid "Discover" msgstr "" -#: [page]explore +#: ../cache/locales.php:462 msgid "Explore" msgstr "" -#: [page]account_creation +#: ../cache/locales.php:463 msgid "Account Creation" msgstr "" -#: [page]avatar +#: ../cache/locales.php:464 +msgid "News" +msgstr "" + +#: ../cache/locales.php:465 msgid "Avatar" msgstr "" -#: [page]chats +#: ../cache/locales.php:467 msgid "Chats" msgstr "" -#: [page]server +#: ../cache/locales.php:470 msgid "Server" msgstr "" -#: [page]public_groups +#: ../cache/locales.php:471 msgid "Public Groups" msgstr "" -#: [page]viewer +#: ../cache/locales.php:472 msgid "Viewer" msgstr "" -#: [page]media +#: ../cache/locales.php:474 msgid "Media" msgstr "" -#: [page]blog +#: ../cache/locales.php:475 msgid "Blog" msgstr "" -#: [page]about +#: ../cache/locales.php:476 msgid "About" msgstr "" -#: [page]login +#: ../cache/locales.php:477 msgid "Login" msgstr "" -#: [page]feed +#: ../cache/locales.php:479 msgid "Feed" msgstr "" -#: [page]gallery +#: ../cache/locales.php:481 msgid "Gallery" msgstr "" -#: [page]visio +#: ../cache/locales.php:483 msgid "Visio-conference" msgstr "" -#: [page]pods +#: ../cache/locales.php:484 msgid "Pods" msgstr "" -#: [page]share +#: ../cache/locales.php:485 msgid "Share" msgstr "" -#: [page]room +#: ../cache/locales.php:486 msgid "Room" msgstr "" -#: [error]error +#: ../cache/locales.php:487 +#, php-format msgid "Error: %s" msgstr "" -#: [error]cannot_load_file +#: ../cache/locales.php:488 +#, php-format msgid "Cannot load file '%s'" msgstr "" -#: [error]route +#: ../cache/locales.php:489 +#, php-format msgid "Route error, please set all the parameters for the page %s" msgstr "" -#: [error]widget_load_error +#: ../cache/locales.php:490 +#, php-format msgid "Requested widget '%s' doesn't exist." msgstr "" -#: [error]widget_call_error +#: ../cache/locales.php:491 +#, php-format msgid "Requested event '%s' not registered." msgstr "" -#: [error]whoops +#: ../cache/locales.php:492 msgid "Whoops!" msgstr "" -#: [error]media_not_found +#: ../cache/locales.php:493 msgid "It seem that you don't have any pictures here?" msgstr "" -#: [error]media_ask_upload +#: ../cache/locales.php:494 msgid "You can try to upload a couple by going to the Media page" msgstr "" -#: [title]about +#: ../cache/locales.php:495 +#, php-format msgid "%s - About" msgstr "" -#: [title]account +#: ../cache/locales.php:496 +#, php-format msgid "%s - Account" msgstr "" -#: [title]administration +#: ../cache/locales.php:497 +#, php-format msgid "%s - Administration Panel" msgstr "" -#: [title]blog +#: ../cache/locales.php:498 +#, php-format msgid "%s - Blog" msgstr "" -#: [title]configuration +#: ../cache/locales.php:499 +#, php-format msgid "%s - Configuration" msgstr "%s - Конфігурація" -#: [title]discover +#: ../cache/locales.php:500 +#, php-format msgid "%s - Discover" msgstr "" -#: [title]explore +#: ../cache/locales.php:501 +#, php-format msgid "%s - Explore" msgstr "" -#: [title]help +#: ../cache/locales.php:502 +#, php-format msgid "%s - Help Page" msgstr "" -#: [title]login +#: ../cache/locales.php:503 +#, php-format msgid "%s - Login to Movim" msgstr "" -#: [title]main +#: ../cache/locales.php:504 +#, php-format msgid "%s - Welcome to Movim" msgstr "" -#: [title]media +#: ../cache/locales.php:505 +#, php-format msgid "%s - Media" msgstr "" -#: [title]news +#: ../cache/locales.php:506 +#, php-format msgid "%s - News" msgstr "" -#: [title]node_configuration +#: ../cache/locales.php:507 +#, php-format msgid "%s - Group Configuration" msgstr "" -#: [title]node +#: ../cache/locales.php:508 +#, php-format msgid "%s - Group" msgstr "" -#: [title]not_found +#: ../cache/locales.php:509 +#, php-format msgid "%s - 404" msgstr "" -#: [title]profile +#: ../cache/locales.php:510 +#, php-format msgid "%s - Profile" msgstr "" -#: [title]server +#: ../cache/locales.php:511 +#, php-format msgid "%s - Server" msgstr "" -#: [button]validate +#: ../cache/locales.php:512 msgid "Validate" msgstr "" -#: [button]refresh +#: ../cache/locales.php:513 msgid "Refresh" msgstr "" -#: [button]add +#: ../cache/locales.php:514 msgid "Add" msgstr "" -#: [button]delete +#: ../cache/locales.php:515 msgid "Delete" msgstr "" -#: [button]cancel +#: ../cache/locales.php:516 +msgid "Remove" +msgstr "" + +#: ../cache/locales.php:517 msgid "Cancel" msgstr "" -#: [button]close +#: ../cache/locales.php:518 msgid "Close" msgstr "" -#: [button]update +#: ../cache/locales.php:519 msgid "Update" msgstr "" -#: [button]updating +#: ../cache/locales.php:520 msgid "Updating" msgstr "" -#: [button]submitting +#: ../cache/locales.php:521 +msgid "Submit" +msgstr "" + +#: ../cache/locales.php:522 msgid "Submitting" msgstr "" -#: [button]register +#: ../cache/locales.php:523 +msgid "Reset" +msgstr "" + +#: ../cache/locales.php:524 msgid "Register" msgstr "" -#: [button]unregister +#: ../cache/locales.php:525 msgid "Unregister" msgstr "" -#: [button]save +#: ../cache/locales.php:526 msgid "Save" msgstr "" -#: [button]clear +#: ../cache/locales.php:527 msgid "Clear" msgstr "" -#: [button]upload +#: ../cache/locales.php:528 msgid "Upload" msgstr "" -#: [button]come_in +#: ../cache/locales.php:529 msgid "Come in!" msgstr "" -#: [button]connecting +#: ../cache/locales.php:530 msgid "Connecting" msgstr "" -#: [button]bool_yes +#: ../cache/locales.php:531 msgid "Yes" msgstr "" -#: [button]bool_no +#: ../cache/locales.php:532 msgid "No" msgstr "" -#: [button]return +#: ../cache/locales.php:534 msgid "Return" msgstr "" -#: [button]accept +#: ../cache/locales.php:535 msgid "Accept" msgstr "" -#: [button]refuse +#: ../cache/locales.php:536 msgid "Refuse" msgstr "" -#: [button]next +#: ../cache/locales.php:537 msgid "Next" msgstr "" -#: [button]previous +#: ../cache/locales.php:538 msgid "Previous" msgstr "" -#: [step]step +#: ../cache/locales.php:539 +#, php-format msgid "Step %s" msgstr "" -#: [day]title +#: ../cache/locales.php:542 msgid "Day" msgstr "" -#: [day]monday +#: ../cache/locales.php:543 msgid "Monday" msgstr "" -#: [day]tuesday +#: ../cache/locales.php:544 msgid "Tuesday" msgstr "" -#: [day]wednesday +#: ../cache/locales.php:545 msgid "Wednesday" msgstr "" -#: [day]thursday +#: ../cache/locales.php:546 msgid "Thursday" msgstr "" -#: [day]friday +#: ../cache/locales.php:547 msgid "Friday" msgstr "" -#: [day]saturday +#: ../cache/locales.php:548 msgid "Saturday" msgstr "" -#: [day]sunday +#: ../cache/locales.php:549 msgid "Sunday" msgstr "" -#: [gender]nil -msgctxt "[gender]nil" +#: ../cache/locales.php:550 ../cache/locales.php:559 msgid "None" msgstr "" -#: [gender]male +#: ../cache/locales.php:551 msgid "Male" msgstr "" -#: [gender]female +#: ../cache/locales.php:552 msgid "Female" msgstr "" -#: [gender]other +#: ../cache/locales.php:553 msgid "Other" msgstr "" -#: [client]bot +#: ../cache/locales.php:554 msgid "Bot" msgstr "" -#: [client]desktop +#: ../cache/locales.php:555 msgid "Desktop" msgstr "" -#: [client]phone +#: ../cache/locales.php:556 msgid "Phone" msgstr "" -#: [client]web +#: ../cache/locales.php:557 msgid "Web" msgstr "" -#: [client]registered +#: ../cache/locales.php:558 msgid "Registered" msgstr "" -#: [marital]nil -msgctxt "[marital]nil" -msgid "None" -msgstr "" - -#: [marital]single +#: ../cache/locales.php:560 msgid "Single" msgstr "" -#: [marital]relationship +#: ../cache/locales.php:561 msgid "In a relationship" msgstr "" -#: [marital]married +#: ../cache/locales.php:562 msgid "Married" msgstr "" -#: [marital]divorced +#: ../cache/locales.php:563 msgid "Divorced" msgstr "" -#: [marital]widowed +#: ../cache/locales.php:564 msgid "Widowed" msgstr "" -#: [marital]cohabiting +#: ../cache/locales.php:565 msgid "Cohabiting" msgstr "" -#: [marital]union +#: ../cache/locales.php:566 msgid "Civil Union" msgstr "" -#: [flag]white +#: ../cache/locales.php:567 msgid "Not shared" msgstr "" -#: [flag]green +#: ../cache/locales.php:568 msgid "Shared with one contact" msgstr "" -#: [flag]orange +#: ../cache/locales.php:569 msgid "Shared with all contacts" msgstr "" -#: [flag]red +#: ../cache/locales.php:570 msgid "Shared with the XMPP network" msgstr "" -#: [flag]black +#: ../cache/locales.php:571 msgid "Shared with the whole Internet" msgstr "" -#: [presence]online +#: ../cache/locales.php:572 msgid "Online" msgstr "" -#: [presence]away +#: ../cache/locales.php:573 msgid "Away" msgstr "" -#: [presence]dnd +#: ../cache/locales.php:574 msgid "Do Not Disturb" msgstr "" -#: [presence]xa +#: ../cache/locales.php:575 msgid "Extended Away" msgstr "" -#: [presence]offline +#: ../cache/locales.php:576 msgid "Offline" msgstr "" -#: [presence]error +#: ../cache/locales.php:577 msgid "Error" msgstr "" -#: [mood]afraid +#: ../cache/locales.php:578 msgid "afraid" msgstr "" -#: [mood]amazed +#: ../cache/locales.php:579 msgid "amazed" msgstr "" -#: [mood]amorous +#: ../cache/locales.php:580 msgid "amorous" msgstr "" -#: [mood]angry +#: ../cache/locales.php:581 msgid "angry" msgstr "" -#: [mood]annoyed +#: ../cache/locales.php:582 msgid "annoyed" msgstr "" -#: [mood]anxious +#: ../cache/locales.php:583 msgid "anxious" msgstr "" -#: [mood]aroused +#: ../cache/locales.php:584 msgid "aroused" msgstr "" -#: [mood]ashamed +#: ../cache/locales.php:585 msgid "ashamed" msgstr "" -#: [mood]bored +#: ../cache/locales.php:586 msgid "bored" msgstr "" -#: [mood]brave +#: ../cache/locales.php:587 msgid "brave" msgstr "" -#: [mood]calm +#: ../cache/locales.php:588 msgid "calm" msgstr "" -#: [mood]cautious +#: ../cache/locales.php:589 msgid "cautious" msgstr "" -#: [mood]cold +#: ../cache/locales.php:590 msgid "cold" msgstr "" -#: [mood]confident +#: ../cache/locales.php:591 msgid "confident" msgstr "" -#: [mood]confused +#: ../cache/locales.php:592 msgid "confused" msgstr "" -#: [mood]contemplative +#: ../cache/locales.php:593 msgid "contemplative" msgstr "" -#: [mood]contented +#: ../cache/locales.php:594 msgid "contented" msgstr "" -#: [mood]cranky +#: ../cache/locales.php:595 msgid "cranky" msgstr "" -#: [mood]crazy +#: ../cache/locales.php:596 msgid "crazy" msgstr "" -#: [mood]creative +#: ../cache/locales.php:597 msgid "creative" msgstr "" -#: [mood]curious +#: ../cache/locales.php:598 msgid "curious" msgstr "" -#: [mood]dejected +#: ../cache/locales.php:599 msgid "dejected" msgstr "" -#: [mood]depressed +#: ../cache/locales.php:600 msgid "depressed" msgstr "" -#: [mood]disappointed +#: ../cache/locales.php:601 msgid "disappointed" msgstr "" -#: [mood]disgusted +#: ../cache/locales.php:602 msgid "disgusted" msgstr "" -#: [mood]dismayed +#: ../cache/locales.php:603 msgid "dismayed" msgstr "" -#: [mood]distracted +#: ../cache/locales.php:604 msgid "distracted" msgstr "" -#: [mood]embarrassed +#: ../cache/locales.php:605 msgid "embarrassed" msgstr "" -#: [mood]envious +#: ../cache/locales.php:606 msgid "envious" msgstr "" -#: [mood]excited +#: ../cache/locales.php:607 msgid "excited" msgstr "" -#: [mood]flirtatious +#: ../cache/locales.php:608 msgid "flirtatious" msgstr "" -#: [mood]frustated +#: ../cache/locales.php:609 msgid "frustated" msgstr "" -#: [mood]grateful +#: ../cache/locales.php:610 msgid "grateful" msgstr "" -#: [mood]grieving +#: ../cache/locales.php:611 msgid "grieving" msgstr "" -#: [mood]grumpy +#: ../cache/locales.php:612 msgid "grumpy" msgstr "" -#: [mood]guilty +#: ../cache/locales.php:613 msgid "guilty" msgstr "" -#: [mood]happy +#: ../cache/locales.php:614 msgid "happy" msgstr "" -#: [mood]hopeful +#: ../cache/locales.php:615 msgid "hopeful" msgstr "" -#: [mood]hot +#: ../cache/locales.php:616 msgid "hot" msgstr "" -#: [mood]humbled +#: ../cache/locales.php:617 msgid "humbled" msgstr "" -#: [mood]humiliated +#: ../cache/locales.php:618 msgid "humiliated" msgstr "" -#: [mood]hungry +#: ../cache/locales.php:619 msgid "hungry" msgstr "" -#: [mood]hurt +#: ../cache/locales.php:620 msgid "hurt" msgstr "" -#: [mood]impressed +#: ../cache/locales.php:621 msgid "impressed" msgstr "" -#: [mood]in_awe +#: ../cache/locales.php:622 msgid "in awe" msgstr "" -#: [mood]in_love +#: ../cache/locales.php:623 msgid "in love" msgstr "" -#: [mood]indignant +#: ../cache/locales.php:624 msgid "indignant" msgstr "" -#: [mood]interested +#: ../cache/locales.php:625 msgid "interested" msgstr "" -#: [mood]intoxicated +#: ../cache/locales.php:626 msgid "intoxicated" msgstr "" -#: [mood]invincible +#: ../cache/locales.php:627 msgid "invincible" msgstr "" -#: [mood]jealous +#: ../cache/locales.php:628 msgid "jealous" msgstr "" -#: [mood]lonely +#: ../cache/locales.php:629 msgid "lonely" msgstr "" -#: [mood]lost +#: ../cache/locales.php:630 msgid "lost" msgstr "" -#: [mood]lucky +#: ../cache/locales.php:631 msgid "lucky" msgstr "" -#: [mood]mean +#: ../cache/locales.php:632 msgid "mean" msgstr "" -#: [mood]moody +#: ../cache/locales.php:633 msgid "moody" msgstr "" -#: [mood]nervous +#: ../cache/locales.php:634 msgid "nervous" msgstr "" -#: [mood]neutral +#: ../cache/locales.php:635 msgid "neutral" msgstr "" -#: [mood]offended +#: ../cache/locales.php:636 msgid "offended" msgstr "" -#: [mood]outraged +#: ../cache/locales.php:637 msgid "outraged" msgstr "" -#: [mood]playful +#: ../cache/locales.php:638 msgid "playful" msgstr "" -#: [mood]proud +#: ../cache/locales.php:639 msgid "proud" msgstr "" -#: [mood]relaxed +#: ../cache/locales.php:640 msgid "relaxed" msgstr "" -#: [mood]relieved +#: ../cache/locales.php:641 msgid "relieved" msgstr "" -#: [mood]restless +#: ../cache/locales.php:642 +msgid "remorseful" +msgstr "" + +#: ../cache/locales.php:643 msgid "restless" msgstr "" -#: [mood]sad +#: ../cache/locales.php:644 msgid "sad" msgstr "" -#: [mood]sarcastic +#: ../cache/locales.php:645 msgid "sarcastic" msgstr "" -#: [mood]satisfied +#: ../cache/locales.php:646 msgid "satisfied" msgstr "" -#: [mood]serious +#: ../cache/locales.php:647 msgid "serious" msgstr "" -#: [mood]shocked +#: ../cache/locales.php:648 msgid "shocked" msgstr "" -#: [mood]shy +#: ../cache/locales.php:649 msgid "shy" msgstr "" -#: [mood]sick +#: ../cache/locales.php:650 msgid "sick" msgstr "" -#: [mood]sleepy +#: ../cache/locales.php:651 msgid "sleepy" msgstr "" -#: [mood]spontaneous +#: ../cache/locales.php:652 msgid "spontaneous" msgstr "" -#: [mood]stressed +#: ../cache/locales.php:653 msgid "stressed" msgstr "" -#: [mood]strong +#: ../cache/locales.php:654 msgid "strong" msgstr "" -#: [mood]surprised +#: ../cache/locales.php:655 msgid "surprised" msgstr "" -#: [mood]thankful +#: ../cache/locales.php:656 msgid "thankful" msgstr "" -#: [mood]thirsty +#: ../cache/locales.php:657 msgid "thirsty" msgstr "" -#: [mood]tired +#: ../cache/locales.php:658 msgid "tired" msgstr "" -#: [mood]undefined +#: ../cache/locales.php:659 msgid "undefined" msgstr "" -#: [mood]weak +#: ../cache/locales.php:660 msgid "weak" msgstr "" -#: [mood]worried +#: ../cache/locales.php:661 msgid "worried" msgstr "" -#: [month]title +#: ../cache/locales.php:662 msgid "Month" msgstr "" -#: [month]january +#: ../cache/locales.php:663 msgid "January" msgstr "" -#: [month]february +#: ../cache/locales.php:664 msgid "February" msgstr "" -#: [month]march +#: ../cache/locales.php:665 msgid "March" msgstr "" -#: [month]april +#: ../cache/locales.php:666 msgid "April" msgstr "" -#: [month]may +#: ../cache/locales.php:667 msgid "May" msgstr "" -#: [month]june +#: ../cache/locales.php:668 msgid "June" msgstr "" -#: [month]july +#: ../cache/locales.php:669 msgid "July" msgstr "" -#: [month]august +#: ../cache/locales.php:670 msgid "August" msgstr "" -#: [month]september +#: ../cache/locales.php:671 msgid "September" msgstr "" -#: [month]october +#: ../cache/locales.php:672 msgid "October" msgstr "" -#: [month]november +#: ../cache/locales.php:673 msgid "November" msgstr "" -#: [month]december +#: ../cache/locales.php:674 msgid "December" msgstr "" -#: [year]title +#: ../cache/locales.php:675 msgid "Year" msgstr "" -#: [date]today +#: ../cache/locales.php:676 msgid "Today" msgstr "" -#: [date]tomorrow +#: ../cache/locales.php:677 msgid "Tomorrow" msgstr "" -#: [date]yesterday +#: ../cache/locales.php:678 msgid "Yesterday" msgstr "" -#: [date]ago -msgid "%d days ago" +#: ../cache/locales.php:679 +#, php-format +msgid " %d days ago" msgstr "" -#: [date]day +#: ../cache/locales.php:680 msgid "day" msgstr "" -#: [post]whats_new +#: ../cache/locales.php:682 msgid "What's new ?" msgstr "" -#: [post]place +#: ../cache/locales.php:683 msgid "Place" msgstr "" -#: [post]by +#: ../cache/locales.php:684 msgid "by" msgstr "" -#: [post]geolocalisation +#: ../cache/locales.php:685 msgid "Geolocalisation" msgstr "" -#: [post]email +#: ../cache/locales.php:686 msgid "email" msgstr "" -#: [post]no_comments +#: ../cache/locales.php:688 msgid "No comments yet" msgstr "" -#: [post]no_comments_stream +#: ../cache/locales.php:689 msgid "No comments stream" msgstr "" -#: [post]no_load +#: ../cache/locales.php:690 msgid "Your feed cannot be loaded." msgstr "" -#: [post]older +#: ../cache/locales.php:691 msgid "Get older posts" msgstr "" -#: [post]new_items +#: ../cache/locales.php:692 +#, php-format msgid "%s new items" msgstr "" -#: [post]comment_error +#: ../cache/locales.php:693 msgid "Comment publication error" msgstr "" -#: [post]comments_older +#: ../cache/locales.php:694 msgid "Show the older comments" msgstr "" -#: [post]comments_loading -msgid "Loading comments..." +#: ../cache/locales.php:695 +msgid "Loading comments ..." msgstr "" -#: [post]comments_get +#: ../cache/locales.php:696 msgid "Get the comments" msgstr "" -#: [post]comment_add +#: ../cache/locales.php:697 msgid "Add a comment" msgstr "" -#: [post]share +#: ../cache/locales.php:698 msgid "Share with" msgstr "" -#: [post]share_everyone +#: ../cache/locales.php:699 msgid "Everyone" msgstr "" -#: [post]share_your_contacts +#: ../cache/locales.php:700 msgid "Your contacts" msgstr "" -#: [post]updated +#: ../cache/locales.php:702 msgid "Updated" msgstr "" -#: [post]content_not_found +#: ../cache/locales.php:703 msgid "Content not found" msgstr "" -#: [post]default_title +#: ../cache/locales.php:704 msgid "Contact publication" msgstr "" -#: [post]comments +#: ../cache/locales.php:705 msgid "Comments" msgstr "" -#: [api]error +#: ../cache/locales.php:706 msgid "The API is not reachable, try again later" msgstr "" -#: [field]type_here +#: ../cache/locales.php:707 msgid "Type here" msgstr "" @@ -2706,27 +2591,36 @@ msgstr "" #~ msgid "Update your PHP version or contact your server administrator" #~ msgstr "Оновіть вашу версію PHP або зверніться до адміністратора сервера" +#, php-format #~ msgid "Movim requires the %s extension." #~ msgstr "Movim вимагає розширення %s ." +#, php-format #~ msgid "Install %s and %s packages" #~ msgstr "Встановити %s і %s пакетів." #~ msgid "Movim's folder must be writable." #~ msgstr "Папка Movim повинна бути доступна для запису" +#~ msgid "Enable read and write rights on Movim's root folder" +#~ msgstr "Включити права читання і запису на кореневу папку Movim" + +#, php-format #~ msgid "Install the %s package" #~ msgstr "Установка пакету %s" #~ msgid "or" #~ msgstr "або" +#, php-format #~ msgid "Bosh connection failed with error '%s'" #~ msgstr "Сталася помилка '%s'" +#, php-format #~ msgid "XMPP connection through Bosh failed with error '%s'" #~ msgstr "XMPP з'єднання з помилкою '%s'" +#, php-format #~ msgid "Couldn't create directory '%s'." #~ msgstr "Не вдалося створити '%s' каталог." @@ -2742,29 +2636,48 @@ msgstr "" #~ msgid "empty" #~ msgstr "порожній" -#~ msgid "Some errors were detected. Please correct them for the installation to proceed." -#~ msgstr "Були виявлено деякі помилки . Будь ласка, виправте їх, щоб продовжити установку." +#~ msgid "" +#~ "Some errors were detected. Please correct them for the installation to " +#~ "proceed." +#~ msgstr "" +#~ "Були виявлено деякі помилки . Будь ласка, виправте їх, щоб продовжити " +#~ "установку." #~ msgid "talkative" #~ msgstr "мовність" +#, php-format #~ msgid "Database connection failed with error '%s'" #~ msgstr "Підключення до бази даних з помилкою '%s'" -#~ msgid "Before you enjoy your social network, a few adjustements are required." -#~ msgstr "Перед тим, як користуватися вашою соціальною мережею, потрібно кілька налаштувань." +#~ msgid "" +#~ "Before you enjoy your social network, a few adjustements are required." +#~ msgstr "" +#~ "Перед тим, як користуватися вашою соціальною мережею, потрібно кілька " +#~ "налаштувань." #~ msgid "Thank you for downloading Movim!" #~ msgstr "Дякуємо Вам за завантаження Movim!" +#, php-format #~ msgid "Couldn't create configuration file '%s'." #~ msgstr "Не вдається створити файл конфігурації '%s'." -#~ msgid "Keep in mind that Movim is still under development and will handle many personal details. Its use can potentially endanger your data. Always pay attention to information that you submit." -#~ msgstr "Майте на увазі, що Movim знаходиться на стадії розробки і буде обробляти багато особистих даних. Його використання може потенційно загрожувати вашим даним. Завжди звертайте увагу на інформацію, яку Ви представляєте." +#~ msgid "" +#~ "Keep in mind that Movim is still under development and will handle many " +#~ "personal details. Its use can potentially endanger your data. Always pay " +#~ "attention to information that you submit." +#~ msgstr "" +#~ "Майте на увазі, що Movim знаходиться на стадії розробки і буде обробляти " +#~ "багато особистих даних. Його використання може потенційно загрожувати вашим " +#~ "даним. Завжди звертайте увагу на інформацію, яку Ви представляєте." -#~ msgid "The following requirements were not met. Please make sure they are all satisfied in order to install Movim." -#~ msgstr "Наступні вимоги не були виконані. Будь ласка, переконайтеся, що всі вони були виконані для того, щоб встановити Movim." +#~ msgid "" +#~ "The following requirements were not met. Please make sure they are all " +#~ "satisfied in order to install Movim." +#~ msgstr "" +#~ "Наступні вимоги не були виконані. Будь ласка, переконайтеся, що всі вони " +#~ "були виконані для того, щоб встановити Movim." #~ msgid "Compatibility Test" #~ msgstr "Тест на сумісність" diff --git a/sources/locales/zh.po b/sources/locales/zh.po index c1789e1..26816db 100644 --- a/sources/locales/zh.po +++ b/sources/locales/zh.po @@ -1,2761 +1,2590 @@ # Chinese translations for Movim package. # This file is distributed under the same license as the Movim package. # This file was translated from CodingTeam at . -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/About/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Account/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/AccountNext/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/AdHoc/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/AdminDB/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/AdminMain/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/AdminTest/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Api/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Avatar/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Blog/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Bookmark/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Chat/locales.ini -#. #-#-#-#-# 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 -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Group/locales.ini -#. #-#-#-#-# 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 -#. #-#-#-#-# 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 -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Presence/locales.ini -#. #-#-#-#-# 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 -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Share/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Statistics/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Subscribe/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Syndication/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Upload/locales.ini -#. #-#-#-#-# 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-08-20 15:17+0200\n" +"POT-Creation-Date: 2015-06-08 22:06+0200\n" "PO-Revision-Date: 2015-06-09 12:21+0000\n" "Last-Translator: edhelas \n" "Language-Team: LANGUAGE \n" -"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2015-06-18 21:08+0000\n" "X-Generator: Launchpad (build 17570)\n" +"Language: \n" -#: [about]thanks +#: ../cache/locales.php:2 msgid "Thanks" msgstr "谢谢" -#: [about]developers +#: ../cache/locales.php:3 msgid "Developers" msgstr "开发者" -#: [about]translators +#: ../cache/locales.php:4 msgid "Translators" msgstr "翻译者" -#: [about]software +#: ../cache/locales.php:5 msgid "Software" msgstr "软件" -#: [about]resources +#: ../cache/locales.php:6 msgid "Resources" msgstr "资源文件" -#: [about]api [schema]api [api]title +#: ../cache/locales.php:7 ../cache/locales.php:83 ../cache/locales.php:85 msgid "API" msgstr "API" -#: [about]info -msgid "Movim is an XMPP-based communication platform. All the project, except the following software and resources, is under" +#: ../cache/locales.php:8 +msgid "" +"Movim is an XMPP-based communication platform. All the project, except the " +"following software and resources, is under" msgstr "Movim是一款基于XMPP的交流平台. 除了以下的软件和资源, 整个项目都是位于" -#: [account]title +#: ../cache/locales.php:9 msgid "Account" msgstr "" -#: [account]password_change_title -#, fuzzy -msgid "Change my password" -msgstr "错误密码" - -#: [account]password [db]password [credentials]password [form]password -#: [input]password -msgid "Password" -msgstr "密码" - -#: [account]password_confirmation -#, fuzzy -msgid "Password confirmation" -msgstr "%s - 配置" - -#: [account]password_changed +#: ../cache/locales.php:10 msgid "The password has been updated" msgstr "" -#: [account]password_not_valid +#: ../cache/locales.php:11 msgid "Please provide a valid password (6 characters minimum)" msgstr "" -#: [account]password_not_same +#: ../cache/locales.php:12 msgid "The provided passwords are not the same" msgstr "" -#: [account]delete_title +#: ../cache/locales.php:13 msgid "Delete my account" msgstr "" -#: [account]delete -#, fuzzy -msgid "Delete your account" -msgstr "另一个账户" - -#: [account]delete_text -msgid "You will delete your XMPP account and all the relative information linked to it (profile, contacts and publications)." +#: ../cache/locales.php:14 +msgid "" +"You will delete your XMPP account and all the relative information linked to " +"it (profile, contacts and publications)." msgstr "" -#: [account]delete_text_confirm +#: ../cache/locales.php:15 msgid "Are you sure that you want to delete it ?" msgstr "" -#: [account]gateway_title -msgid "Gateway" -msgstr "" - -#: [create]title [subscribe]title +#: ../cache/locales.php:16 ../cache/locales.php:411 msgid "Create a new account" msgstr "建立一个新账户" -#: [create]notfound +#: ../cache/locales.php:17 msgid "No account creation form found on the server" msgstr "在服务器上没有找到建立账户的表格" -#: [create]server_on +#: ../cache/locales.php:18 ../cache/locales.php:172 msgid "on" msgstr "在线" -#: [create]successfull +#: ../cache/locales.php:19 msgid "Your acccount has been successfully registered" msgstr "您的账户已经成功注册" -#: [create]loading +#: ../cache/locales.php:20 msgid "Loading" msgstr "载入中" -#: [error]not_acceptable +#: ../cache/locales.php:21 msgid "Not Acceptable" msgstr "不能接受" -#: [error]service_unavailable +#: ../cache/locales.php:22 msgid "The registration system of this server is currently unavailable" msgstr "该服务的注册系统当前不可用" -#: [oob]about -msgid "This server use an external system for the registration, please click on the following URL." +#: ../cache/locales.php:23 +msgid "" +"This server use an external system for the registration, please click on the " +"following URL." msgstr "该服务使用一个外部的注册系统, 请点击以下的URL." -#: [adhoc]title +#: ../cache/locales.php:24 msgid "Actions" msgstr "操作" -#: [db]legend [schema]database +#: ../cache/locales.php:25 ../cache/locales.php:82 msgid "Database" msgstr "数据库" -#: [db]connect_error +#: ../cache/locales.php:26 msgid "Modl wasn't able to connect to the database" msgstr "Modl不能够连接数据库" -#: [db]connect_success +#: ../cache/locales.php:27 msgid "Movim is connected to the database" msgstr "Movim已经连接到数据库" -#: [db]update +#: ../cache/locales.php:28 msgid "The database need to be updated" msgstr "数据库需要更新" -#: [db]up_to_date +#: ../cache/locales.php:29 msgid "Movim database is up to date" msgstr "Movim数据库已经最新" -#: [db]type +#: ../cache/locales.php:30 msgid "Database Type" msgstr "数据库类型" -#: [db]username [credentials]username [input]username +#: ../cache/locales.php:31 ../cache/locales.php:50 ../cache/locales.php:540 msgid "Username" msgstr "用户名" -#: [db]host +#: ../cache/locales.php:32 ../cache/locales.php:51 ../cache/locales.php:282 +#: ../cache/locales.php:541 +msgid "Password" +msgstr "密码" + +#: ../cache/locales.php:33 msgid "Host" msgstr "" -#: [db]port +#: ../cache/locales.php:34 msgid "Port" msgstr "" -#: [db]name -#, fuzzy -msgid "Database sName" +#: ../cache/locales.php:35 +msgid "Database Name" msgstr "数据库名称" -#: [admin]general +#: ../cache/locales.php:36 msgid "General Settings" msgstr "一般设置" -#: [general]theme +#: ../cache/locales.php:37 msgid "Theme" msgstr "主题" -#: [general]language +#: ../cache/locales.php:38 msgid "Default language" msgstr "默认语言" -#: [general]log_verbosity +#: ../cache/locales.php:39 +msgid "Environment" +msgstr "环境" + +#: ../cache/locales.php:40 msgid "Log verbosity" msgstr "日志输出" -#: [general]timezone +#: ../cache/locales.php:41 msgid "Server Timezone" msgstr "服务器时区" -#: [general]limit +#: ../cache/locales.php:42 msgid "User folder size limit (in bytes)" msgstr "用户文件夹大小限制(以字节为单位)" -#: [websocket]title +#: ../cache/locales.php:43 msgid "WebSocket Configuration" msgstr "WebSocket 配置" -#: [websocket]info +#: ../cache/locales.php:44 msgid "Enter here a valid WebSocket URI in the form" msgstr "在表格中输入一个有效的 WebSocket 地址" -#: [websocket]label +#: ../cache/locales.php:45 msgid "WebSocket URI" msgstr "" -#: [websocket]save_info -msgid "If you change the URI, please restart the daemon to reload the configuration" +#: ../cache/locales.php:46 +msgid "" +"If you change the URI, please restart the daemon to reload the configuration" msgstr "如果你更改了URI, 请重启后台程序来重载配置" -#: [websocket]publics +#: ../cache/locales.php:47 msgid "Public WebSockets" msgstr "公共 WebSocket" -#: [credentials]title +#: ../cache/locales.php:48 msgid "Administration Credential" msgstr "管理证书" -#: [credentials]info +#: ../cache/locales.php:49 msgid "Change the default credentials admin/password" msgstr "更改默认密码" -#: [credentials]re_password +#: ../cache/locales.php:52 msgid "Retype password" msgstr "重新输入密码" -#: [whitelist]title +#: ../cache/locales.php:53 msgid "Whitelist - XMPP Server" msgstr "白名单——XMPP服务器" -#: [whitelist]info1 -msgid "If you want to specify a list of authorized XMPP servers on your Movim pod and forbid the connection on all the others please put their domain name here, with comma (ex: movim.eu,jabber.fr)" -msgstr "如果您想在Movim pod中指定一部分授权的XMPP服务器, 并且禁止余下的, 请将它们的域名在这里输入, 用英文逗号分隔 (例如: movim.eu, jabber.fr)" +#: ../cache/locales.php:54 +msgid "" +"If you want to specify a list of authorized XMPP servers on your Movim pod " +"and forbid the connection on all the others please put their domain name " +"here, with comma (ex: movim.eu,jabber.fr)" +msgstr "" +"如果您想在Movim pod中指定一部分授权的XMPP服务器, 并且禁止余下的, 请将它们的域名在这里输入, 用英文逗号分隔 (例如: " +"movim.eu, jabber.fr)" -#: [whitelist]info2 -msgid "Leave this field blank if you allow the access to all the XMPP accounts." +#: ../cache/locales.php:55 +msgid "" +"Leave this field blank if you allow the access to all the XMPP accounts." msgstr "如果你允许访问所有的XMPP账户,请将此字段留空," -#: [whitelist]label +#: ../cache/locales.php:56 msgid "List of whitelisted XMPP servers" msgstr "XMPP服务器白名单列表" -#: [information]title -#, fuzzy -msgctxt "[information]title" +#: ../cache/locales.php:57 ../cache/locales.php:61 msgid "Information Message" msgstr "通知消息" -#: [information]description +#: ../cache/locales.php:58 msgid "Description" msgstr "描述" -#: [information]info1 +#: ../cache/locales.php:59 msgid "This message will be displayed on the login page" msgstr "这条信息将显示在登录页面" -#: [information]info2 -#, fuzzy -msgid "Leave this field blank if you dont want to show any message." +#: ../cache/locales.php:60 +msgid "Leave this field blank if you don't want to show any message." msgstr "如果您不想显示任何信息,请在此留空" -#: [information]label -#, fuzzy -msgctxt "[information]label" -msgid "Information Message" -msgstr "通知消息" - -#: [log]empty +#: ../cache/locales.php:62 msgid "Empty" msgstr "空的" -#: [log]syslog +#: ../cache/locales.php:63 msgid "Syslog" msgstr "系统日志" -#: [log]syslog_files +#: ../cache/locales.php:64 msgid "Syslog and files" msgstr "系统日志和文件" -#: [rewrite]title +#: ../cache/locales.php:65 msgid "URL Rewriting" msgstr "" -#: [rewrite]info +#: ../cache/locales.php:66 msgid "The URL Rewriting can be enabled" msgstr "" -#: [admin]compatibility +#: ../cache/locales.php:67 msgid "General Overview" msgstr "概览" -#: [compatibility]info -msgid "Movim has found some issues or things that need to be fixed or improved" +#: ../cache/locales.php:68 +msgid "" +"Movim has found some issues or things that need to be fixed or improved" msgstr "Movim已经发现一些问题需要被修复或改善" -#: [compatibility]php1 +#: ../cache/locales.php:69 +#, php-format msgid "Update your PHP-Version: %s" msgstr "更新您的PHP版本: %s" -#: [compatibility]php2 +#: ../cache/locales.php:70 msgid "Required: 5.3.0" msgstr "需要: 5.3.0" -#: [compatibility]curl +#: ../cache/locales.php:71 msgid "Install the php5-curl library" msgstr "安装 php5-curl 库" -#: [compatibility]imagick +#: ../cache/locales.php:72 msgid "Install the php5-imagick library" msgstr "" -#: [compatibility]gd +#: ../cache/locales.php:73 msgid "Install the php5-gd library" msgstr "" -#: [compatibility]rights -#, fuzzy -msgid "Read and write rights for the webserver in Movims root directory" +#: ../cache/locales.php:74 +msgid "Read and write rights for the webserver in Movim's root directory" msgstr "阅读和写Movim的根目录写的web服务器权限" -#: [compatibility]rewrite +#: ../cache/locales.php:75 msgid "The URL Rewriting support is currently disabled" msgstr "URL 重写支持已经被禁用" -#: [compatibility]db +#: ../cache/locales.php:76 msgid "The database need to be updated, go to the database panel to fix this" msgstr "" -#: [compatibility]websocket -msgid "WebSocket connection error, check if the Movim Daemon is running and is reachable" +#: ../cache/locales.php:77 +msgid "" +"WebSocket connection error, check if the Movim Daemon is running and is " +"reacheable" msgstr "" -#: [compatibility]xmpp_websocket -msgid "XMPP Websocket connection error, please check the validity of the URL given in the General Configuration" +#: ../cache/locales.php:78 +msgid "" +"XMPP Websocket connection error, please check the validity of the URL given " +"in the General Configuration" msgstr "" -#: [schema]browser +#: ../cache/locales.php:79 msgid "Browser" msgstr "" -#: [schema]movim +#: ../cache/locales.php:80 msgid "Movim Core" msgstr "" -#: [schema]daemon +#: ../cache/locales.php:81 msgid "Movim Daemon" msgstr "" -#: [schema]xmpp +#: ../cache/locales.php:84 msgid "XMPP" msgstr "" -#: [api]info -msgid "Here you can register your pod on the official %sMovim API%s and be listed on %sthe pods page%s." +#: ../cache/locales.php:86 +#, php-format +msgid "" +"Here you can register your pod on the official %sMovim API%s and be listed " +"on %sthe pods page%s." msgstr "" -#: [api]register +#: ../cache/locales.php:87 msgid "Your pod is not registered on the API" msgstr "" -#: [api]registered +#: ../cache/locales.php:88 msgid "Your pod is registered on the API" msgstr "" -#: [api]wait +#: ../cache/locales.php:89 msgid "Your pod is not yet validated" msgstr "" -#: [api]validated +#: ../cache/locales.php:90 msgid "Your pod is validated" msgstr "" -#: [api]unregister -msgid "You asked to be removed from the API, this request will be processed in a couple of hours" +#: ../cache/locales.php:91 +msgid "" +"You asked to be removed from the API, this request will be processed in a " +"couple of hours" msgstr "您请求从API中移除, 该请求会在几小时内被处理" -#: [api]conf_updated [config]updated +#: ../cache/locales.php:92 ../cache/locales.php:147 msgid "Configuration updated" msgstr "配置已更新" -#: [avatar]file +#: ../cache/locales.php:93 msgid "File" msgstr "" -#: [avatar]use_it +#: ../cache/locales.php:94 msgid "Use it" msgstr "" -#: [avatar]webcam +#: ../cache/locales.php:95 msgid "Webcam" msgstr "摄像头" -#: [avatar]cheese +#: ../cache/locales.php:96 msgid "Cheese !" msgstr "(说)茄~子~ !" -#: [avatar]snapshot +#: ../cache/locales.php:97 msgid "Take a webcam snapshot" msgstr "进行摄像头快照" -#: [avatar]updated +#: ../cache/locales.php:98 msgid "Avatar Updated" msgstr "头像已更新" -#: [avatar]not_updated +#: ../cache/locales.php:99 msgid "Avatar Not Updated" msgstr "头像未更新" -#: [blog]title [feed]title +#: ../cache/locales.php:100 ../cache/locales.php:415 +#, php-format msgid "%s's feed" msgstr "%s的 feed" -#: [blog]empty +#: ../cache/locales.php:101 msgid "This user has not posted anything right now" msgstr "" -#: [title]conferences +#: ../cache/locales.php:102 msgid "Conferences" msgstr "会议" -#: [title]groups [group]empty_title [menu]groups [page]groups +#: ../cache/locales.php:103 ../cache/locales.php:193 ../cache/locales.php:217 +#: ../cache/locales.php:468 msgid "Groups" msgstr "分组" -#: [chatroom]add +#: ../cache/locales.php:104 msgid "Add a new Chat Room" msgstr "添加一个新的聊天室" -#: [chatroom]id [chatrooms]id +#: ../cache/locales.php:105 ../cache/locales.php:368 msgid "Chat Room ID" msgstr "聊天室ID" -#: [chatroom]name -#, fuzzy -msgctxt "[chatroom]name" +#: ../cache/locales.php:106 ../cache/locales.php:116 ../cache/locales.php:156 +#: ../cache/locales.php:361 ../cache/locales.php:369 ../cache/locales.php:424 msgid "Name" msgstr "姓名" -#: [chatroom]nickname [general]nickname [chatrooms]nickname +#: ../cache/locales.php:107 ../cache/locales.php:157 ../cache/locales.php:371 +#: ../cache/locales.php:425 msgid "Nickname" msgstr "昵称" -#: [chatroom]autojoin_label +#: ../cache/locales.php:108 msgid "Do you want do join automaticaly this Chat Room ?" msgstr "您想自动加入该聊天室么?" -#: [chatroom]bad_id [chatrooms]bad_id +#: ../cache/locales.php:109 ../cache/locales.php:372 msgid "Bad Chatroom ID" msgstr "无效的聊天室ID" -#: [chatroom]empty_name [chatrooms]empty_name +#: ../cache/locales.php:110 ../cache/locales.php:373 msgid "Empty name" msgstr "用户名为空" -#: [bookmarks]updated +#: ../cache/locales.php:111 ../cache/locales.php:380 msgid "Bookmarks updated" msgstr "更新书签" -#: [bookmarks]error -#, fuzzy -msgid "An error occured :" +#: ../cache/locales.php:112 +msgid "An error occured : " msgstr "发生一个错误: " -#: [bookmarks]configure +#: ../cache/locales.php:113 msgid "Configure" msgstr "配置" -#: [url]add +#: ../cache/locales.php:114 msgid "Add a new URL" msgstr "添加一个新的URL" -#: [url]url +#: ../cache/locales.php:115 msgid "URL" msgstr "" -#: [url]name -#, fuzzy -msgctxt "[url]name" -msgid "Name" -msgstr "姓名" - -#: [message]published +#: ../cache/locales.php:117 msgid "Message Published" msgstr "消息发布" -#: [message]encrypted +#: ../cache/locales.php:118 ../cache/locales.php:138 msgid "Encrypted message" msgstr "加密消息" -#: [message]composing [chats]composing +#: ../cache/locales.php:119 msgid "Composing..." msgstr "" -#: [message]paused [chats]paused +#: ../cache/locales.php:120 msgid "Paused..." msgstr "暂停..." -#: [message]gone +#: ../cache/locales.php:121 msgid "Contact gone" msgstr "" -#: [chat]attention +#: ../cache/locales.php:122 +#, php-format msgid "%s needs your attention" msgstr "%s需要您的注意" -#: [chat]placeholder +#: ../cache/locales.php:123 msgid "Your message here..." msgstr "您的消息..." -#: [chat]smileys +#: ../cache/locales.php:124 msgid "Smileys" msgstr "表情" -#: [chat]empty_title [button]chat +#: ../cache/locales.php:125 ../cache/locales.php:139 msgid "Chat" msgstr "聊天" -#: [chat]empty_text +#: ../cache/locales.php:126 msgid "Discuss with your contacts" msgstr "同联系人讨论" -#: [chat]frequent [chats]frequent -msgid "Frequent contacts" -msgstr "" - -#: [chatroom]members +#: ../cache/locales.php:127 msgid "Members" msgstr "" -#: [chatroom]connected [chatrooms]connected +#: ../cache/locales.php:128 ../cache/locales.php:376 msgid "Connected to the chatroom" msgstr "已连接到聊天室" -#: [chatroom]disconnected [chatrooms]disconnected +#: ../cache/locales.php:129 ../cache/locales.php:377 msgid "Disconnected from the chatroom" msgstr "离开聊天室" -#: [chatroom]config [group]configuration [page]configuration +#: ../cache/locales.php:130 ../cache/locales.php:200 ../cache/locales.php:469 msgid "Configuration" msgstr "配置" -#: [chatroom]config_saved +#: ../cache/locales.php:131 msgid "Configuration saved" msgstr "" -#: [chatroom]subject +#: ../cache/locales.php:132 msgid "Subject" msgstr "" -#: [chatroom]subject_changed +#: ../cache/locales.php:133 msgid "Subject changed" msgstr "" -#: [chats]empty_title -msgid "No chats yet..." +#: ../cache/locales.php:134 +msgid "Open a new conversation by clicking on the plus button bellow" msgstr "" -#: [chats]empty -msgid "Open a new conversation by clicking on the plus button bellow or visit the Contacts page." -msgstr "" - -#: [chats]add +#: ../cache/locales.php:135 msgid "Chat with a contact" msgstr "同联系人聊天" -#: [chats]more +#: ../cache/locales.php:136 +msgid "Frequent contacts" +msgstr "" + +#: ../cache/locales.php:137 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 "消息" - -#: [config]general +#: ../cache/locales.php:140 msgid "General" msgstr "" -#: [config]language +#: ../cache/locales.php:141 msgid "Language" msgstr "语言" -#: [config]roster +#: ../cache/locales.php:142 msgid "Roster display" msgstr "" -#: [config]roster_show +#: ../cache/locales.php:143 msgid "Show the offline contacts" msgstr "" -#: [config]roster_hide +#: ../cache/locales.php:144 msgid "Hide the offline contacts" msgstr "" -#: [config]appearence +#: ../cache/locales.php:145 msgid "Appearence" msgstr "外观" -#: [config]info -msgid "This configuration is shared wherever you are connected" +#: ../cache/locales.php:146 +msgid "This configuration is shared wherever you are connected !" msgstr "" -#: [notifications]message +#: ../cache/locales.php:148 msgid "Notify on incoming message" msgstr "通知新消息" -#: [notifications]desktop +#: ../cache/locales.php:149 msgid "Use desktop notifications" msgstr "使用桌面通知" -#: [general]legend [general]general_title +#: ../cache/locales.php:150 +msgid "Data" +msgstr "数据" + +#: ../cache/locales.php:151 +msgid "Cache" +msgstr "缓存" + +#: ../cache/locales.php:152 ../cache/locales.php:218 ../cache/locales.php:466 +msgid "Contacts" +msgstr "联系人" + +#: ../cache/locales.php:153 ../cache/locales.php:480 +msgid "Posts" +msgstr "" + +#: ../cache/locales.php:154 +msgid "Messages" +msgstr "消息" + +#: ../cache/locales.php:155 ../cache/locales.php:423 msgid "General Informations" msgstr "一般信息" -#: [general]name [public_groups]name [chatrooms]name -msgid "Name" -msgstr "姓名" - -#: [general]date_of_birth +#: ../cache/locales.php:158 ../cache/locales.php:427 msgid "Date of Birth" msgstr "出生日期" -#: [general]gender +#: ../cache/locales.php:159 ../cache/locales.php:428 msgid "Gender" msgstr "性别" -#: [general]marital +#: ../cache/locales.php:160 ../cache/locales.php:429 msgid "Marital Status" msgstr "婚姻状况" -#: [general]email +#: ../cache/locales.php:161 ../cache/locales.php:426 msgid "Email" msgstr "邮件" -#: [general]website +#: ../cache/locales.php:162 ../cache/locales.php:430 msgid "Website" msgstr "你的网站" -#: [general]about +#: ../cache/locales.php:163 ../cache/locales.php:431 msgid "About Me" msgstr "关于自己" -#: [general]accounts +#: ../cache/locales.php:164 msgid "Other Accounts" msgstr "其它帐号" -#: [general]tune +#: ../cache/locales.php:165 msgid "Is Listening" msgstr "" -#: [position]legend [position]position_title +#: ../cache/locales.php:166 ../cache/locales.php:432 msgid "Geographic Position" msgstr "地理位置" -#: [position]locality +#: ../cache/locales.php:167 ../cache/locales.php:433 msgid "Locality" msgstr "地点" -#: [position]country +#: ../cache/locales.php:168 ../cache/locales.php:434 msgid "Country" msgstr "国家" -#: [mood]title +#: ../cache/locales.php:169 msgid "Mood" msgstr "心情" -#: [mood]im +#: ../cache/locales.php:170 msgid "I'm " msgstr "我是 " -#: [listen]title +#: ../cache/locales.php:171 msgid "Listening" msgstr "听" -#: [last]title +#: ../cache/locales.php:173 msgid "Last seen" msgstr "最后一次访问" -#: [client]title +#: ../cache/locales.php:174 msgid "Client Informations" msgstr "客户信息" -#: [explore]last_registered +#: ../cache/locales.php:175 msgid "Last registered" msgstr "最近注册的" -#: [explore]explore +#: ../cache/locales.php:176 msgid "Find some new friends" msgstr "" -#: [edit]title [button]edit +#: ../cache/locales.php:177 ../cache/locales.php:533 msgid "Edit" msgstr "编辑" -#: [edit]alias +#: ../cache/locales.php:178 msgid "Alias" msgstr "别名" -#: [edit]group +#: ../cache/locales.php:179 msgid "Group" msgstr "分组" -#: [edit]updated [roster]updated +#: ../cache/locales.php:180 ../cache/locales.php:400 msgid "Contact updated" msgstr "更新联系人" -#: [delete]title +#: ../cache/locales.php:181 msgid "Are you sure?" msgstr "您确定么?" -#: [delete]text -msgid "You are going to delete one of your contacts, please confirm your action" +#: ../cache/locales.php:182 +msgid "" +"You are going to delete one of your contacts, please confirm your action" msgstr "您将删除其中一个联系人, 请确认" -#: [age]years +#: ../cache/locales.php:183 +#, php-format msgid "%s years" msgstr "" -#: [blog]last +#: ../cache/locales.php:184 msgid "Last public post" msgstr "" -#: [subscription]to -#, fuzzy -msgid "You can see this contact status" -msgstr "该账户没有公共订阅" - -#: [subscription]to_button -msgid "Share my status" -msgstr "" - -#: [subscription]to_text -msgid "But this contact cannot see yours" -msgstr "" - -#: [subscription]from -#, fuzzy -msgid "You are not subscribed to this contact" -msgstr "该账户没有公共订阅" - -#: [subscription]from_button -#, fuzzy -msgid "Ask to subscribe" -msgstr "取消订阅" - -#: [subscription]from_text -msgid "But this contact can still see if you are online" -msgstr "" - -#: [subscription]nil -#, fuzzy -msgid "No subscriptions" -msgstr "订阅" - -#: [subscription]nil_button -msgid "Invite" -msgstr "" - -#: [subscription]nil_text -msgid "This contact is in your contact list but there is no subscriptions between the two accounts" -msgstr "" - -#: [group]subscribe +#: ../cache/locales.php:185 msgid "Subscribe" msgstr "订阅" -#: [group]subscribed +#: ../cache/locales.php:186 msgid "Subscribed" msgstr "订阅" -#: [group]unsubscribe +#: ../cache/locales.php:187 msgid "Unsubscribe" msgstr "取消订阅" -#: [group]unsubscribe_text +#: ../cache/locales.php:188 msgid "You are going to unsubscribe from this Group" msgstr "" -#: [group]unsubscribed +#: ../cache/locales.php:189 msgid "Unsubscribed" msgstr "" -#: [group]share_label +#: ../cache/locales.php:190 msgid "Make your membership to this group public to your friends" msgstr "" -#: [group]label_label +#: ../cache/locales.php:191 msgid "Give a label for this group" msgstr "" -#: [group]sure +#: ../cache/locales.php:192 msgid "Are you sure ?" msgstr "您确定吗 ?" -#: [group]empty_text +#: ../cache/locales.php:194 msgid "Discover, follow and share" msgstr "" -#: [group]empty +#: ../cache/locales.php:195 msgid "Something bad happened to this group" msgstr "" -#: [group]config_saved +#: ../cache/locales.php:196 msgid "Group configuration saved" msgstr "保存分组结构" -#: [group]delete_title +#: ../cache/locales.php:197 msgid "Delete the group" msgstr "" -#: [group]delete_text -msgid "You are going to delete the following group. Please confirm your action." +#: ../cache/locales.php:198 +msgid "" +"You are going to delete the following group. Please confirm your action." msgstr "" -#: [group]delete_clean_text -msgid "It seems that this group doesn't exists anymore. Do you want to remove it from your subscriptions?" +#: ../cache/locales.php:199 +msgid "" +"It seems that this group doesn't exists anymore. Do you want to remove it " +"from your subscriptions?" msgstr "" -#: [group]counter -msgid "%s groups on this server" -msgstr "" - -#: [group]subscriptions [statistics]subscriptions +#: ../cache/locales.php:201 ../cache/locales.php:408 msgid "Subscriptions" msgstr "订阅" -#: [group]servers -#, fuzzy -msgid "Groups servers" -msgstr "分组" - -#: [group]search_server -msgid "Search for a new server" -msgstr "" - -#: [group]help_info1 -msgid "Groups are the perfect way to share posts about topics that you like with all the other Movim's users." -msgstr "" - -#: [group]help_info2 -msgid "Choose a server and a Group and subscribe to it using the %s button in the header. You can also create a new one using the %s button." -msgstr "" - -#: [group]help_info3 -msgid "Done? You can now publish a new post in the Group by using the %s button." -msgstr "" - -#: [group]help_info4 -msgid "You will find a list of all your subscribed Groups in My Subscriptions and receive instantly all the new incoming posts in the %sNews%s page." -msgstr "" - -#: [groups]empty_title +#: ../cache/locales.php:202 ../cache/locales.php:290 msgid "Hello" msgstr "您好" -#: [groups]contact_post [hello]contact_post [menu]contact_post +#: ../cache/locales.php:203 ../cache/locales.php:225 ../cache/locales.php:291 msgid "Contact post" msgstr "" -#: [groups]empty_text1 -msgid "You don't have any subscriptions yet, select a group server above to start exploring." +#: ../cache/locales.php:204 +msgid "" +"You don't have any subscriptions yet, select a group server above to start " +"exploring." msgstr "" -#: [groups]empty_text2 +#: ../cache/locales.php:205 msgid "Subscribe to your favorite feeds by bookmarking them." msgstr "" -#: [groups]subscriptions +#: ../cache/locales.php:206 msgid "My Subscriptions" msgstr "" -#: [groups]add +#: ../cache/locales.php:207 msgid "Create a new Group" msgstr "" -#: [groups]name +#: ../cache/locales.php:208 msgid "Group name" msgstr "" -#: [groups]name_example +#: ../cache/locales.php:209 msgid "My Little Pony - Fan Club" msgstr "My Little Pony - Fan Club" -#: [groups]created +#: ../cache/locales.php:210 msgid "Group created successfully" msgstr "" -#: [groups]deleted +#: ../cache/locales.php:211 msgid "Group deleted successfully" msgstr "" -#: [groups]name_error +#: ../cache/locales.php:212 msgid "Please provide a valid group name (4 characters minimum)" msgstr "" -#: [groups]no_creation +#: ../cache/locales.php:213 msgid "You cannot create a new Group on this server" msgstr "" -#: [groups]sub +#: ../cache/locales.php:214 +#, php-format msgid "%s subscribers" msgstr "" -#: [groups]num +#: ../cache/locales.php:215 +#, php-format msgid "%s posts" msgstr "" -#: [groups]disco_error -msgid "This server doesn't exists" -msgstr "" - -#: [menu]all +#: ../cache/locales.php:216 msgid "All" msgstr "所有" -#: [menu]refresh +#: ../cache/locales.php:219 msgid "Refresh all the streams" msgstr "刷新所有流" -#: [roster]search -#, fuzzy -msgid "Search in your contacts" -msgstr "同联系人讨论" - -#: [hello]active_contacts -#, fuzzy -msgid "Active contacts" -msgstr "您的联系人" - -#: [hello]chat -msgid "Go on the Chat page" -msgstr "" - -#: [hello]news [page]news -msgid "News" -msgstr "新闻" - -#: [hello]news_page -msgid "Read all theses articles on the News page" -msgstr "" - -#: [hello]blog_title -msgid "Visit your public blog" -msgstr "" - -#: [hello]blog_text -msgid "See your public posts and share them with all your contacts" -msgstr "" - -#: [hello]share_title -msgid "Universal share button" -msgstr "" - -#: [hello]share_text -msgid "Bookmark or drag and drop the following button in your toolbar and use it on all the pages you want to share on Movim" -msgstr "" - -#: [hello]share_button -msgid "Share on Movim" -msgstr "" - -#: [help]faq -msgid "Frequently Asked Questions" -msgstr "FAQ" - -#: [banner]title -msgid "What do the little banners refer to ?" -msgstr "这些小横幅与什么相关" - -#: [banner]info1 -msgid "Thanks to these five little banners, you can quickly identitfy the level of confdentiality applied to the information you provide." -msgstr "根据一下五种颜色,您可以快速设置个人信息的私密等级" - -#: [banner]white -msgid "White, only you can see the information" -msgstr "白色,仅自己可见" - -#: [banner]green -msgid "Green, you have chosen some contacts who can see your information" -msgstr "绿色,指定联系人可见" - -#: [banner]orange -msgid "Orange, all your contact list can see your information" -msgstr "橙色,对所有联系人可见" - -#: [banner]red -msgid "Red, everybody in the XMPP network can see your information" -msgstr "红色,XMPP上的用户能看见您的信息" - -#: [banner]black -msgid "Black, the whole Internet can see your information" -msgstr "黑色,整个互联网可以看见您的信息" - -#: [wiki]question -msgid "Looking for some documentation ?" -msgstr "需要查找一些帮助文档?" - -#: [wiki]button -msgid "Read the Wiki" -msgstr "" - -#: [ml]question -msgid "Talk with us by email ?" -msgstr "用email同我们联系" - -#: [ml]button -msgid "Join the Mailing List" -msgstr "加入邮件列表" - -#: [chatroom]question -msgid "Chat with the team ?" -msgstr "同开发团队交流?" - -#: [chatroom]button -msgid "Join the Chatroom" -msgstr "加入聊天室" - -#: [init]location -msgid "Location node created" -msgstr "" - -#: [init]bookmark -msgid "Bookmark node created" -msgstr "" - -#: [init]vcard4 -msgid "Profile node created" -msgstr "" - -#: [init]avatar -msgid "Avatar node created" -msgstr "" - -#: [init]subscriptions -msgid "Subscriptions node created" -msgstr "" - -#: [init]microblog -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 "错误的用户名" - -#: [error]jid -msgid "Invalid JID" -msgstr "无效的JID" - -#: [error]empty_challenge -msgid "Empty Challenge from the server" -msgstr "" - -#: [error]dns -msgid "XMPP Domain error, your account is not a correct Jabber ID" -msgstr "XMPP域错误,您的账户不能连接到Jabber ID" - -#: [error]data_missings -msgid "Some data are missing !" -msgstr "部分数据丢失" - -#: [error]wrong_password -msgid "Wrong password" -msgstr "错误密码" - -#: [error]internal -msgid "Internal server error" -msgstr "Internal服务器错误" - -#: [error]session -msgid "Session error" -msgstr "Session错误" - -#: [error]account_created -msgid "Account successfully created" -msgstr "创建账户成功" - -#: [error]xmpp_unauthorized -#, fuzzy -msgctxt "[error]xmpp_unauthorized" -msgid "Your XMPP server is unauthorized" -msgstr "你的XMPP服务没有被授权" - -#: [error]mec_error -msgid "The server takes too much time to respond" -msgstr "服务器未响应" - -#: [error]too_old -msgid "Your web browser is too old to use with Movim." -msgstr "您的浏览器太老不支持Movim" - -#: [error]websocket -msgid "Movim cannot talk with the server, please try again later (Websocket connection error)" -msgstr "Movim无法连接服务器, 请稍后重试(WebSocket连接错误)" - -#: [error]impossible -msgid "Impossible login" -msgstr "" - -#: [error]title -msgid "Oops!" -msgstr "糟糕!Oops!" - -#: [error]default [visio]unknown_error -msgid "Unknown error" -msgstr "未知错误" - -#: [error]login_format -msgid "Invalid username format" -msgstr "" - -#: [error]password_format -msgid "Invalid password format" -msgstr "" - -#: [error]unauthorized -#, fuzzy -msgctxt "[error]unauthorized" -msgid "Your XMPP server is unauthorized" -msgstr "你的XMPP服务没有被授权" - -#: [error]conflict -msgid "A Movim session is already open on an other device" -msgstr "" - -#: [error]wrong_account -msgid "Movim failed to authenticate. You entered wrong data" -msgstr "您输入的数据有误,Movim不能认证" - -#: [error]mechanism -msgid "Authentication mechanism not supported by Movim" -msgstr "Movim暂不支持此认证机制" - -#: [error]fail_auth -msgid "The XMPP authentification failed" -msgstr "XMPP鉴别错误" - -#: [account]title [accounts]accounts_title -msgid "Accounts" -msgstr "帐户" - -#: [form]username -msgid "My address" -msgstr "用户名" - -#: [form]create_one -msgid "Create one !" -msgstr "新建一个 !" - -#: [form]another_account -msgid "Another account" -msgstr "另一个账户" - -#: [form]no_account -msgid "No account yet ?" -msgstr "还没有账户 ?" - -#: [form]whitelist.info -msgid "You can login with accounts from theses servers" -msgstr "" - -#: [form]connected -msgid "Connected" -msgstr "已连接" - -#: [form]population -msgid "Population" -msgstr "" - -#: [menu]empty_title -msgid "No news yet..." -msgstr "" - -#: [menu]empty -msgid "Welcome on your news feed, here you will see all the posts published by your contacts and in the groups you have subscribed." -msgstr "" - -#: [menu]refresh -msgid "Refreshing all the streams" -msgstr "正在刷行所有流" - -#: [menu]public -msgid "This post is public" -msgstr "" - -#: [affiliations]title -msgid "Manage your members" -msgstr "管理你的成员" - -#: [affiliations]get -msgid "Get the members" -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 "" - -#: [notifs]title -msgid "Pending Invitations" -msgstr "" - -#: [notifs]wants_to_talk -msgid "%s wants to talk with you" -msgstr "%s 想同您聊天" - -#: [notifs]manage -msgid "Manage" -msgstr "管理" - -#: [post]news_feed -msgid "News Feed" -msgstr "新闻订阅" - -#: [post]placeholder -msgid "Discover and register to the groups you are interested in" -msgstr "" - -#: [post]preview [page]preview -msgid "Preview" -msgstr "预览" - -#: [post]help [page]help -msgid "Help" -msgstr "帮助" - -#: [post]help_more -msgid "More help" -msgstr "" - -#: [post]help_manual -msgid "Markdown syntax manual" -msgstr "" - -#: [post]title -msgid "Title" -msgstr "标题" - -#: [post]content -msgid "Content" -msgstr "" - -#: [post]link -msgid "Link" -msgstr "连接" - -#: [post]tags -msgid "Tags" -msgstr "" - -#: [post]valid_url [publish]valid_url -msgid "Please enter a valid url" -msgstr "" - -#: [post]no_content_preview [publish]no_content_preview -msgid "No content to preview" -msgstr "" - -#: [post]no_content [publish]no_content [post]empty -msgid "No content" -msgstr "没有内容" - -#: [post]published -msgid "Post published" -msgstr "" - -#: [post]deleted -msgid "Post deleted" -msgstr "" - -#: [post]gallery -msgid "This picture will be added to your gallery" -msgstr "" - -#: [post]hot -msgid "What's Hot" -msgstr "当前热门" - -#: [post]hot_text -msgid "Posts recently published in Groups that you are not subscribed (yet)" -msgstr "" - -#: [post]new [publish]new -msgid "New post" -msgstr "" - -#: [post]embed_tip -msgid "You can also use services like Imgur or Flickr to host your picture and paste the link here." -msgstr "" - -#: [post]repost -msgid "This is a re-post from %s" -msgstr "" - -#: [post]repost_profile -msgid "See %s profile" -msgstr "" - -#: [post]public -#, fuzzy -msgid "Publish this post publicly?" -msgstr "公开您的档案么?" - -#: [post]blog_add -msgid "Post published on your blog" -msgstr "" - -#: [post]blog_remove -msgid "Post removed from your blog" -msgstr "" - -#: [post]delete_title [post]delete -msgid "Delete this post" -msgstr "" - -#: [post]delete_text -msgid "You are going to delete this post, please confirm your action" -msgstr "" - -#: [post]comments_disabled -msgid "Comments disabled" -msgstr "" - -#: [post]comment_published -msgid "Comment published" -msgstr "" - -#: [status]disconnect -msgid "Disconnect" -msgstr "断开" - -#: [status]here -msgid "Your status here !" -msgstr "状态栏" - -#: [status]updated -msgid "Status updated" -msgstr "更新状态" - -#: [status]status -msgid "Status" -msgstr "状态" - -#: [status]presence -msgid "Presence" -msgstr "" - -#: [status]online -msgid "Online with Movim" -msgstr "" - -#: [publish]title -msgid "Publish" -msgstr "" - -#: [publish]attach -msgid "Add a file or a picture to your post" -msgstr "" - -#: [publish]no_publication -msgid "You cannot publish a post on this Group" -msgstr "" - -#: [publish]form_filled -msgid "Some fields have been filled in. Do you still want to go back and loose their content?" -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 "添加一个聊天室" - -#: [rooms]empty_text1 -msgid "You don't have any chatroom yet." -msgstr "" - -#: [rooms]empty_text2 -msgid "Add one by clicking on the add button in the header." -msgstr "" - -#: [chatrooms]title -msgid "Chatrooms" -msgstr "聊天室" - -#: [chatrooms]name_placeholder -msgid "My Favorite Room" -msgstr "" - -#: [chatrooms]users -msgid "Users in the room" -msgstr "聊天室用户" - -#: [chatrooms]bad_nickname -msgid "Please enter a correct nickname (2 to 40 characters)" -msgstr "" - -#: [room]anonymous_title -msgid "Public chatroom" -msgstr "" - -#: [room]no_room -msgid "Please provide a room address" -msgstr "" - -#: [room]anonymous_text1 -msgid "You are currently logued as an anonymous user." -msgstr "" - -#: [room]anonymous_text2 -msgid "You can join using your own account or create one on the login page by loging out using the cross in the top-right corner." -msgstr "" - -#: [room]anonymous_login -msgid "Login on %s" -msgstr "" - -#: [room]nick -msgid "Your nickname" -msgstr "" - -#: [roster]ungrouped -msgid "Ungrouped" -msgstr "未分组" - -#: [roster]show_disconnected -msgid "Show disconnected contacts" -msgstr "显示未联系的联系人" - -#: [roster]hide_disconnected -msgid "Hide disconnected contacts" -msgstr "隐藏未联系的联系人" - -#: [roster]show_group -msgid "Show group %s" -msgstr "显示分组 %s" - -#: [roster]hide_group -msgid "Hide group %s" -msgstr "隐藏分组 %s" - -#: [roster]jid_error -msgid "Please enter a valid Jabber ID" -msgstr "请输入有效的Jabber ID" - -#: [roster]no_contacts_title -#, fuzzy -msgid "No contacts ?" -msgstr "您的联系人" - -#: [roster]no_contacts_text -#, fuzzy -msgid "You can add one using the + button bellow" -msgstr "没有联系人? 您可以使用下面的加号按钮来进入探索页面" - -#: [roster]show_hide -msgid "Show/Hide" -msgstr "显示/隐藏" - -#: [roster]add_contact_info1 -msgid "Enter the Jabber ID of your contact." -msgstr "输入您帐号的 Jabber ID" - -#: [roster]add_contact_info2 -msgid "Press enter to validate." -msgstr "回车验证" - -#: [roster]jid -msgid "JID" -msgstr "" - -#: [roster]results -msgid "Results" -msgstr "结果" - -#: [roster]added -msgid "Contact added" -msgstr "联系人已添加" - -#: [roster]deleted -msgid "Contact deleted" -msgstr "联系人已删除" - -#: [roster]search +#: ../cache/locales.php:220 ../cache/locales.php:402 msgid "Search" msgstr "搜索" -#: [share]error +#: ../cache/locales.php:221 +msgid "Go on the Chat page" +msgstr "" + +#: ../cache/locales.php:222 +msgid "Read all theses articles on the News page" +msgstr "" + +#: ../cache/locales.php:223 +msgid "Visit your public blog" +msgstr "" + +#: ../cache/locales.php:224 +msgid "See your public posts and share them with all your contacts" +msgstr "" + +#: ../cache/locales.php:226 +msgid "Universal share button" +msgstr "" + +#: ../cache/locales.php:227 +msgid "" +"Bookmark or drag and drop the following button in your toolbar and use it on " +"all the pages you want to share on Movim" +msgstr "" + +#: ../cache/locales.php:228 +msgid "Share on Movim" +msgstr "" + +#: ../cache/locales.php:229 +msgid "Frequently Asked Questions" +msgstr "FAQ" + +#: ../cache/locales.php:230 +msgid "What do the little banners refer to ?" +msgstr "这些小横幅与什么相关" + +#: ../cache/locales.php:231 +msgid "" +"Thanks to these five little banners, you can quickly identitfy the level of " +"confdentiality applied to the information you provide." +msgstr "根据一下五种颜色,您可以快速设置个人信息的私密等级" + +#: ../cache/locales.php:232 +msgid "White, only you can see the information" +msgstr "白色,仅自己可见" + +#: ../cache/locales.php:233 +msgid "Green, you have chosen some contacts who can see your information" +msgstr "绿色,指定联系人可见" + +#: ../cache/locales.php:234 +msgid "Orange, all your contact list can see your information" +msgstr "橙色,对所有联系人可见" + +#: ../cache/locales.php:235 +msgid "Red, everybody in the XMPP network can see your information" +msgstr "红色,XMPP上的用户能看见您的信息" + +#: ../cache/locales.php:236 +msgid "Black, the whole Internet can see your information" +msgstr "黑色,整个互联网可以看见您的信息" + +#: ../cache/locales.php:237 +msgid "Looking for some documentation ?" +msgstr "需要查找一些帮助文档?" + +#: ../cache/locales.php:238 +msgid "Read the Wiki" +msgstr "" + +#: ../cache/locales.php:239 +msgid "Talk with us by email ?" +msgstr "用email同我们联系" + +#: ../cache/locales.php:240 +msgid "Join the Mailing List" +msgstr "加入邮件列表" + +#: ../cache/locales.php:241 +msgid "Chat with the team ?" +msgstr "同开发团队交流?" + +#: ../cache/locales.php:242 +msgid "Join the Chatroom" +msgstr "加入聊天室" + +#: ../cache/locales.php:243 +msgid "Location node created" +msgstr "" + +#: ../cache/locales.php:244 +msgid "Bookmark node created" +msgstr "" + +#: ../cache/locales.php:245 +msgid "Profile node created" +msgstr "" + +#: ../cache/locales.php:246 +msgid "Avatar node created" +msgstr "" + +#: ../cache/locales.php:247 +msgid "Subscriptions node created" +msgstr "" + +#: ../cache/locales.php:248 +msgid "Microblog node created" +msgstr "" + +#: ../cache/locales.php:249 +msgid "Location" +msgstr "位置" + +#: ../cache/locales.php:250 +msgid "Wrong position" +msgstr "错误位置" + +#: ../cache/locales.php:251 +msgid "Location updated" +msgstr "位置已更新" + +#: ../cache/locales.php:252 +msgid "Update my position" +msgstr "更新我的位置" + +#: ../cache/locales.php:253 +msgid "Wrong username" +msgstr "错误的用户名" + +#: ../cache/locales.php:254 +msgid "Invalid JID" +msgstr "无效的JID" + +#: ../cache/locales.php:255 +msgid "Empty Challenge from the server" +msgstr "" + +#: ../cache/locales.php:256 +msgid "XMPP Domain error, your account is not a correct Jabber ID" +msgstr "XMPP域错误,您的账户不能连接到Jabber ID" + +#: ../cache/locales.php:257 +msgid "Some data are missing !" +msgstr "部分数据丢失" + +#: ../cache/locales.php:258 +msgid "Wrong password" +msgstr "错误密码" + +#: ../cache/locales.php:259 +msgid "Internal server error" +msgstr "Internal服务器错误" + +#: ../cache/locales.php:260 +msgid "Session error" +msgstr "Session错误" + +#: ../cache/locales.php:261 +msgid "Account successfully created" +msgstr "创建账户成功" + +#: ../cache/locales.php:262 ../cache/locales.php:271 +msgid "Your XMPP server is unauthorized" +msgstr "你的XMPP服务没有被授权" + +#: ../cache/locales.php:263 +msgid "The server takes too much time to respond" +msgstr "服务器未响应" + +#: ../cache/locales.php:264 +msgid "Your web browser is too old to use with Movim." +msgstr "您的浏览器太老不支持Movim" + +#: ../cache/locales.php:265 +msgid "" +"Movim cannot talk with the server, please try again later (Websocket " +"connection error)" +msgstr "Movim无法连接服务器, 请稍后重试(WebSocket连接错误)" + +#: ../cache/locales.php:266 +msgid "Impossible login" +msgstr "" + +#: ../cache/locales.php:267 +msgid "Oops!" +msgstr "糟糕!Oops!" + +#: ../cache/locales.php:268 ../cache/locales.php:449 ../cache/locales.php:455 +msgid "Unknown error" +msgstr "未知错误" + +#: ../cache/locales.php:269 +msgid "Invalid username format" +msgstr "" + +#: ../cache/locales.php:270 +msgid "Invalid password format" +msgstr "" + +#: ../cache/locales.php:272 +msgid "A Movim session is already open on an other device" +msgstr "" + +#: ../cache/locales.php:273 +msgid "Movim failed to authenticate. You entered wrong data" +msgstr "您输入的数据有误,Movim不能认证" + +#: ../cache/locales.php:274 +msgid "Authentication mechanism not supported by Movim" +msgstr "Movim暂不支持此认证机制" + +#: ../cache/locales.php:275 +msgid "The XMPP authentification failed" +msgstr "XMPP鉴别错误" + +#: ../cache/locales.php:276 +#, php-format +msgid "" +"You can login with Facebook (chat only) using %syour.id@chat.facebook.com%s " +"and your password" +msgstr "你可以使用Facebook帐号来登录, 如 %s您的id@chat.facebook.com%s 和您的密码. (只能聊天)" + +#: ../cache/locales.php:277 +#, php-format +msgid "%sGmail accounts are also compatible%s but are not fully supported" +msgstr "%sGmail 账户可用%s,但是部分功能不支持" + +#: ../cache/locales.php:278 +msgid "You can login using your favorite Jabber account" +msgstr "您可以使用您喜欢的Jabber账户登录" + +#: ../cache/locales.php:279 +msgid "or with our demonstration account" +msgstr "或使用我们的演示账户" + +#: ../cache/locales.php:280 ../cache/locales.php:435 +msgid "Accounts" +msgstr "帐户" + +#: ../cache/locales.php:281 +msgid "My address" +msgstr "用户名" + +#: ../cache/locales.php:283 +msgid "Create one !" +msgstr "新建一个 !" + +#: ../cache/locales.php:284 +msgid "No account yet ?" +msgstr "还没有账户 ?" + +#: ../cache/locales.php:285 +msgid "Another account" +msgstr "另一个账户" + +#: ../cache/locales.php:286 +msgid "You can login with accounts from theses servers" +msgstr "" + +#: ../cache/locales.php:287 +msgid "Connected" +msgstr "已连接" + +#: ../cache/locales.php:288 +msgid "Population" +msgstr "" + +#: ../cache/locales.php:289 +msgid "Bad nickname (between 4 and 40 characters)" +msgstr "" + +#: ../cache/locales.php:292 +msgid "" +"Welcome on your news feed, here you will see all the posts published in the " +"groups you have subscribed." +msgstr "" + +#: ../cache/locales.php:293 +msgid "Refreshing all the streams" +msgstr "正在刷行所有流" + +#: ../cache/locales.php:294 +msgid "This post is public" +msgstr "" + +#: ../cache/locales.php:295 +msgid "Manage your members" +msgstr "管理你的成员" + +#: ../cache/locales.php:296 +msgid "Get the members" +msgstr "添加成员" + +#: ../cache/locales.php:297 +msgid "Affiliations saved" +msgstr "保存设置" + +#: ../cache/locales.php:298 +msgid "Manage your subscriptions" +msgstr "管理您的订阅" + +#: ../cache/locales.php:299 +msgid "Manage the subscriptions" +msgstr "管理此订阅" + +#: ../cache/locales.php:300 +msgid "Get the subscriptions" +msgstr "增加此订阅" + +#: ../cache/locales.php:301 +msgid "Subscriptions saved" +msgstr "" + +#: ../cache/locales.php:302 +msgid "Pending Invitations" +msgstr "" + +#: ../cache/locales.php:303 +#, php-format +msgid "%s wants to talk with you" +msgstr "%s 想同您聊天" + +#: ../cache/locales.php:304 +msgid "Manage" +msgstr "管理" + +#: ../cache/locales.php:305 ../cache/locales.php:338 +msgid "News Feed" +msgstr "新闻订阅" + +#: ../cache/locales.php:306 ../cache/locales.php:339 +msgid "Discover and register to the groups you are interested in" +msgstr "" + +#: ../cache/locales.php:307 ../cache/locales.php:340 ../cache/locales.php:482 +msgid "Preview" +msgstr "预览" + +#: ../cache/locales.php:308 ../cache/locales.php:341 ../cache/locales.php:478 +msgid "Help" +msgstr "帮助" + +#: ../cache/locales.php:309 ../cache/locales.php:342 +msgid "More help" +msgstr "" + +#: ../cache/locales.php:310 ../cache/locales.php:343 +msgid "Markdown syntax manual" +msgstr "" + +#: ../cache/locales.php:311 ../cache/locales.php:344 ../cache/locales.php:681 +msgid "Title" +msgstr "标题" + +#: ../cache/locales.php:312 ../cache/locales.php:345 +msgid "Content" +msgstr "" + +#: ../cache/locales.php:313 ../cache/locales.php:346 +msgid "Link" +msgstr "连接" + +#: ../cache/locales.php:314 ../cache/locales.php:347 +msgid "Tags" +msgstr "" + +#: ../cache/locales.php:315 ../cache/locales.php:348 +msgid "Please enter a valid url" +msgstr "" + +#: ../cache/locales.php:316 ../cache/locales.php:349 +msgid "No content to preview" +msgstr "" + +#: ../cache/locales.php:317 ../cache/locales.php:350 ../cache/locales.php:687 +msgid "No content" +msgstr "没有内容" + +#: ../cache/locales.php:318 ../cache/locales.php:351 +msgid "Post published" +msgstr "" + +#: ../cache/locales.php:319 ../cache/locales.php:352 +msgid "Post deleted" +msgstr "" + +#: ../cache/locales.php:320 ../cache/locales.php:353 +msgid "This picture will be added to your gallery" +msgstr "" + +#: ../cache/locales.php:321 ../cache/locales.php:354 +msgid "What's Hot" +msgstr "当前热门" + +#: ../cache/locales.php:322 ../cache/locales.php:355 +msgid "New post" +msgstr "" + +#: ../cache/locales.php:323 ../cache/locales.php:357 +msgid "" +"You can also use services like Imgur or Flickr to host your picture and " +"paste the link here." +msgstr "" + +#: ../cache/locales.php:324 +#, php-format +msgid "This is a re-post from %s" +msgstr "" + +#: ../cache/locales.php:325 +#, php-format +msgid "See %s profile" +msgstr "" + +#: ../cache/locales.php:326 +msgid "Publish this post on your public feed?" +msgstr "" + +#: ../cache/locales.php:327 +msgid "Post published on your blog" +msgstr "" + +#: ../cache/locales.php:328 +msgid "Post removed from your blog" +msgstr "" + +#: ../cache/locales.php:329 ../cache/locales.php:701 +msgid "Delete this post" +msgstr "" + +#: ../cache/locales.php:330 +msgid "You are going to delete this post, please confirm your action" +msgstr "" + +#: ../cache/locales.php:331 +msgid "Comments disabled" +msgstr "" + +#: ../cache/locales.php:332 +msgid "Comment published" +msgstr "" + +#: ../cache/locales.php:333 +msgid "Disconnect" +msgstr "断开" + +#: ../cache/locales.php:334 +msgid "Your status here !" +msgstr "状态栏" + +#: ../cache/locales.php:335 +msgid "Status updated" +msgstr "更新状态" + +#: ../cache/locales.php:336 +msgid "Status" +msgstr "状态" + +#: ../cache/locales.php:337 +msgid "Presence" +msgstr "" + +#: ../cache/locales.php:356 +msgid "Publish" +msgstr "" + +#: ../cache/locales.php:358 +msgid "You cannot publish a post on this Group" +msgstr "" + +#: ../cache/locales.php:359 +msgid "" +"Some fields have been filled in. Do you still want to go back and loose " +"their content?" +msgstr "" + +#: ../cache/locales.php:360 +msgid "Shared" +msgstr "" + +#: ../cache/locales.php:362 +#, php-format +msgid "%s has been added to your public groups" +msgstr "%s已经添加到了您的公共分组" + +#: ../cache/locales.php:363 +#, php-format +msgid "%s has been removed from your public groups" +msgstr "%s 已经从您分组移除" + +#: ../cache/locales.php:364 +msgid "Add a chatroom" +msgstr "添加一个聊天室" + +#: ../cache/locales.php:365 +msgid "You don't have any chatroom yet." +msgstr "" + +#: ../cache/locales.php:366 +msgid "Add one by clicking on the add button in the header." +msgstr "" + +#: ../cache/locales.php:367 +msgid "Chatrooms" +msgstr "聊天室" + +#: ../cache/locales.php:370 +msgid "My Favorite Room" +msgstr "" + +#: ../cache/locales.php:374 +msgid "Remove a chatroom" +msgstr "移除一个聊天室" + +#: ../cache/locales.php:375 +msgid "" +"You are going to remove the following chatroom. Please confirm your action." +msgstr "您将移除以下的聊天室, 请确认." + +#: ../cache/locales.php:378 +msgid "Users in the room" +msgstr "聊天室用户" + +#: ../cache/locales.php:379 +msgid "Please enter a correct nickname (6 to 40 characters)" +msgstr "" + +#: ../cache/locales.php:381 +msgid "Public chatroom" +msgstr "" + +#: ../cache/locales.php:382 +msgid "Please provide a room address" +msgstr "" + +#: ../cache/locales.php:383 +msgid "You are currently logued as an anonymous user." +msgstr "" + +#: ../cache/locales.php:384 +msgid "" +"You can join using your own account or create one on the login page by " +"loging out using the cross in the top-right corner." +msgstr "" + +#: ../cache/locales.php:385 +#, php-format +msgid "Login on %s" +msgstr "" + +#: ../cache/locales.php:386 +msgid "Your nickname" +msgstr "" + +#: ../cache/locales.php:387 +msgid "Ungrouped" +msgstr "未分组" + +#: ../cache/locales.php:388 +msgid "Show disconnected contacts" +msgstr "显示未联系的联系人" + +#: ../cache/locales.php:389 +msgid "Hide disconnected contacts" +msgstr "隐藏未联系的联系人" + +#: ../cache/locales.php:390 +#, php-format +msgid "Show group %s" +msgstr "显示分组 %s" + +#: ../cache/locales.php:391 +#, php-format +msgid "Hide group %s" +msgstr "隐藏分组 %s" + +#: ../cache/locales.php:392 +msgid "Please enter a valid Jabber ID" +msgstr "请输入有效的Jabber ID" + +#: ../cache/locales.php:393 +msgid "" +"No contacts ? You can add one using the + button bellow or going to the " +"Explore page" +msgstr "没有联系人? 您可以使用下面的加号按钮来进入探索页面" + +#: ../cache/locales.php:394 +msgid "Show/Hide" +msgstr "显示/隐藏" + +#: ../cache/locales.php:395 +msgid "Enter the Jabber ID of your contact." +msgstr "输入您帐号的 Jabber ID" + +#: ../cache/locales.php:396 +msgid "Press enter to validate." +msgstr "回车验证" + +#: ../cache/locales.php:397 +msgid "JID" +msgstr "" + +#: ../cache/locales.php:398 +msgid "Results" +msgstr "结果" + +#: ../cache/locales.php:399 +msgid "Contact added" +msgstr "联系人已添加" + +#: ../cache/locales.php:401 +msgid "Contact deleted" +msgstr "联系人已删除" + +#: ../cache/locales.php:403 msgid "This is not a valid url" msgstr "" -#: [share]success +#: ../cache/locales.php:404 msgid "Sharing the URL" msgstr "" -#: [statistics]title +#: ../cache/locales.php:405 msgid "Statistics" msgstr "统计" -#: [statistics]since +#: ../cache/locales.php:406 msgid "Since" msgstr "" -#: [statistics]sessions +#: ../cache/locales.php:407 msgid "Sessions" msgstr "" -#: [statistics]monthly_sub +#: ../cache/locales.php:409 msgid "Monthly Subscriptions" msgstr "" -#: [statistics]monthly_sub_cum +#: ../cache/locales.php:410 msgid "Monthly Subscriptions Cumulated" msgstr "" -#: [subscribe]info -msgid "Movim is a decentralized social network, before creating a new account you need to choose a server to register." +#: ../cache/locales.php:412 +msgid "" +"Movim is a decentralized social network, before creating a new account you " +"need to choose a server to register." msgstr "Movim 是一个分散式管理的社交网络,在建立一个新账户之前,你需要选择一个服务器注册。" -#: [subscribe]server_question +#: ../cache/locales.php:413 msgid "Your server here ?" msgstr "" -#: [subscribe]server_contact +#: ../cache/locales.php:414 msgid "Contact us to add yours to the officially supported servers list" msgstr "联系我们以加入官方支持服务列表" -#: [feed]nope +#: ../cache/locales.php:416 msgid "No public feed for this contact" msgstr "该账户没有公共订阅" -#: [feed]nope_contact +#: ../cache/locales.php:417 msgid "No contact specified" msgstr "没有指定联系人" -#: [upload]title -#, fuzzy -msgid "Upload a file" -msgstr "上传" - -#: [upload]choose -msgid "Choose a file to upload" -msgstr "" - -#: [vcard]title [page]profile +#: ../cache/locales.php:418 ../cache/locales.php:473 msgid "Profile" msgstr "简介" -#: [vcard]updated +#: ../cache/locales.php:419 msgid "Profile Updated" msgstr "更新简介" -#: [vcard]not_updated +#: ../cache/locales.php:420 msgid "Profile Not Updated" msgstr "未更新简介" -#: [vcard]public +#: ../cache/locales.php:421 msgid "Your profile is now public" msgstr "您的档案现在是公开的" -#: [vcard]restricted +#: ../cache/locales.php:422 msgid "Your profile is now restricted" msgstr "现在您的档案是保密的" -#: [general]nickname -#, fuzzy -msgctxt "[general]nickname" -msgid "Nickname" -msgstr "昵称" - -#: [accounts]twitter +#: ../cache/locales.php:436 msgid "Twitter" msgstr "Twitter" -#: [accounts]skype +#: ../cache/locales.php:437 msgid "Skype" msgstr "Skype" -#: [accounts]yahoo +#: ../cache/locales.php:438 msgid "Yahoo" msgstr "Yahoo" -#: [accounts]accounts_nickname -#, fuzzy -msgctxt "[accounts]accounts_nickname" -msgid "Nickname" -msgstr "昵称" - -#: [accounts]accounts_yahoo -#, fuzzy -msgid "Yahoo Account" -msgstr "其它帐号" - -#: [privacy]privacy_title +#: ../cache/locales.php:439 msgid "Privacy Level" msgstr "隐私等级" -#: [privacy]privacy_question +#: ../cache/locales.php:440 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." +#: ../cache/locales.php:441 +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." msgstr "请注意!公开您的档案,上面列出的所有信息将对Movim的所有用户和整个互联网公开" -#: [save]submit [button]submit -msgid "Submit" -msgstr "提交" - -#: [save]reset [button]reset -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 +#: ../cache/locales.php:442 msgid "Call" msgstr "" -#: [visio]hang_up +#: ../cache/locales.php:443 msgid "Hang up" msgstr "" -#: [visio]connection +#: ../cache/locales.php:444 msgid "Connection" msgstr "连接" -#: [global]no_js +#: ../cache/locales.php:445 ../cache/locales.php:451 +msgid "Hung up" +msgstr "" + +#: ../cache/locales.php:446 ../cache/locales.php:452 +msgid "Your contact is busy" +msgstr "您的联系人正忙" + +#: ../cache/locales.php:447 ../cache/locales.php:453 +msgid "Declined" +msgstr "" + +#: ../cache/locales.php:448 ../cache/locales.php:454 +msgid "Remote application incompatible" +msgstr "" + +#: ../cache/locales.php:450 ../cache/locales.php:456 +msgid "Is calling you" +msgstr "" + +#: ../cache/locales.php:457 msgid "You don't have javascript enabled. Good luck with that." msgstr "您的浏览器没有开启javascript,请排查一下" -#: [global]description -msgid "Movim is a kickass distributed social networking platform that protect your privacy an comes with a set of awesome features." +#: ../cache/locales.php:458 +msgid "" +"Movim is a kickass distributed social networking platform that protect your " +"privacy an comes with a set of awesome features." msgstr "" -#: [page]administration +#: ../cache/locales.php:459 msgid "Administration" msgstr "管理" -#: [page]home +#: ../cache/locales.php:460 msgid "Home" msgstr "主页" -#: [page]discover +#: ../cache/locales.php:461 msgid "Discover" msgstr "发现" -#: [page]explore +#: ../cache/locales.php:462 msgid "Explore" msgstr "探索" -#: [page]account_creation +#: ../cache/locales.php:463 msgid "Account Creation" msgstr "建立帐号" -#: [page]avatar +#: ../cache/locales.php:464 +msgid "News" +msgstr "新闻" + +#: ../cache/locales.php:465 msgid "Avatar" msgstr "头像" -#: [page]chats +#: ../cache/locales.php:467 msgid "Chats" msgstr "" -#: [page]server +#: ../cache/locales.php:470 msgid "Server" msgstr "服务器" -#: [page]public_groups +#: ../cache/locales.php:471 msgid "Public Groups" msgstr "" -#: [page]viewer +#: ../cache/locales.php:472 msgid "Viewer" msgstr "游客" -#: [page]media +#: ../cache/locales.php:474 msgid "Media" msgstr "媒体" -#: [page]blog +#: ../cache/locales.php:475 msgid "Blog" msgstr "博客" -#: [page]about +#: ../cache/locales.php:476 msgid "About" msgstr "关于" -#: [page]login +#: ../cache/locales.php:477 msgid "Login" msgstr "登录" -#: [page]feed +#: ../cache/locales.php:479 msgid "Feed" msgstr "Feed" -#: [page]gallery +#: ../cache/locales.php:481 msgid "Gallery" msgstr "" -#: [page]visio +#: ../cache/locales.php:483 msgid "Visio-conference" msgstr "视频" -#: [page]pods +#: ../cache/locales.php:484 msgid "Pods" msgstr "" -#: [page]share +#: ../cache/locales.php:485 msgid "Share" msgstr "" -#: [page]room +#: ../cache/locales.php:486 msgid "Room" msgstr "" -#: [error]error +#: ../cache/locales.php:487 +#, php-format msgid "Error: %s" msgstr "错误: %s" -#: [error]cannot_load_file +#: ../cache/locales.php:488 +#, php-format msgid "Cannot load file '%s'" msgstr "不能加载文件 '%s'" -#: [error]route +#: ../cache/locales.php:489 +#, php-format msgid "Route error, please set all the parameters for the page %s" msgstr "路径错误,请设置所有的参数%s" -#: [error]widget_load_error +#: ../cache/locales.php:490 +#, php-format msgid "Requested widget '%s' doesn't exist." msgstr "请求的小工具 '%s' 不存在." -#: [error]widget_call_error +#: ../cache/locales.php:491 +#, php-format msgid "Requested event '%s' not registered." msgstr "请求的事件 '%s' 未注册." -#: [error]whoops +#: ../cache/locales.php:492 msgid "Whoops!" msgstr "" -#: [error]media_not_found +#: ../cache/locales.php:493 msgid "It seem that you don't have any pictures here?" msgstr "似乎您还没有任何图片?" -#: [error]media_ask_upload +#: ../cache/locales.php:494 msgid "You can try to upload a couple by going to the Media page" msgstr "您可以通过进入媒体页面来试图上传一些" -#: [title]about +#: ../cache/locales.php:495 +#, php-format msgid "%s - About" msgstr "%s - 关于" -#: [title]account +#: ../cache/locales.php:496 +#, php-format msgid "%s - Account" msgstr "%s -账户" -#: [title]administration +#: ../cache/locales.php:497 +#, php-format msgid "%s - Administration Panel" msgstr "%s - 管理员面板" -#: [title]blog +#: ../cache/locales.php:498 +#, php-format msgid "%s - Blog" msgstr "" -#: [title]configuration +#: ../cache/locales.php:499 +#, php-format msgid "%s - Configuration" msgstr "%s - 配置" -#: [title]discover +#: ../cache/locales.php:500 +#, php-format msgid "%s - Discover" msgstr "%s - 发现" -#: [title]explore +#: ../cache/locales.php:501 +#, php-format msgid "%s - Explore" msgstr "%s -探索" -#: [title]help +#: ../cache/locales.php:502 +#, php-format msgid "%s - Help Page" msgstr "%s - 帮助" -#: [title]login +#: ../cache/locales.php:503 +#, php-format msgid "%s - Login to Movim" msgstr "%s - 登录 Movim" -#: [title]main +#: ../cache/locales.php:504 +#, php-format msgid "%s - Welcome to Movim" msgstr "%s - 欢迎来到 MOVIM" -#: [title]media +#: ../cache/locales.php:505 +#, php-format msgid "%s - Media" msgstr "" -#: [title]news +#: ../cache/locales.php:506 +#, php-format msgid "%s - News" msgstr "%s - 新闻" -#: [title]node_configuration +#: ../cache/locales.php:507 +#, php-format msgid "%s - Group Configuration" msgstr "" -#: [title]node +#: ../cache/locales.php:508 +#, php-format msgid "%s - Group" msgstr "" -#: [title]not_found +#: ../cache/locales.php:509 +#, php-format msgid "%s - 404" msgstr "" -#: [title]profile +#: ../cache/locales.php:510 +#, php-format msgid "%s - Profile" msgstr "%s - 档案" -#: [title]server +#: ../cache/locales.php:511 +#, php-format msgid "%s - Server" msgstr "" -#: [button]validate +#: ../cache/locales.php:512 msgid "Validate" msgstr "验证" -#: [button]refresh +#: ../cache/locales.php:513 msgid "Refresh" msgstr "刷新" -#: [button]add +#: ../cache/locales.php:514 msgid "Add" msgstr "添加" -#: [button]delete +#: ../cache/locales.php:515 msgid "Delete" msgstr "删除" -#: [button]cancel +#: ../cache/locales.php:516 +msgid "Remove" +msgstr "移除" + +#: ../cache/locales.php:517 msgid "Cancel" msgstr "取消" -#: [button]close +#: ../cache/locales.php:518 msgid "Close" msgstr "关闭" -#: [button]update +#: ../cache/locales.php:519 msgid "Update" msgstr "更新" -#: [button]updating +#: ../cache/locales.php:520 msgid "Updating" msgstr "更新中" -#: [button]submitting +#: ../cache/locales.php:521 +msgid "Submit" +msgstr "提交" + +#: ../cache/locales.php:522 msgid "Submitting" msgstr "提交中" -#: [button]register +#: ../cache/locales.php:523 +msgid "Reset" +msgstr "重置" + +#: ../cache/locales.php:524 msgid "Register" msgstr "注册" -#: [button]unregister +#: ../cache/locales.php:525 msgid "Unregister" msgstr "" -#: [button]save +#: ../cache/locales.php:526 msgid "Save" msgstr "保存" -#: [button]clear +#: ../cache/locales.php:527 msgid "Clear" msgstr "清除" -#: [button]upload +#: ../cache/locales.php:528 msgid "Upload" msgstr "上传" -#: [button]come_in +#: ../cache/locales.php:529 msgid "Come in!" msgstr "登录" -#: [button]connecting +#: ../cache/locales.php:530 msgid "Connecting" msgstr "连接中" -#: [button]bool_yes +#: ../cache/locales.php:531 msgid "Yes" msgstr "是" -#: [button]bool_no +#: ../cache/locales.php:532 msgid "No" msgstr "否" -#: [button]return +#: ../cache/locales.php:534 msgid "Return" msgstr "返回" -#: [button]accept +#: ../cache/locales.php:535 msgid "Accept" msgstr "接收" -#: [button]refuse +#: ../cache/locales.php:536 msgid "Refuse" msgstr "" -#: [button]next +#: ../cache/locales.php:537 msgid "Next" msgstr "" -#: [button]previous +#: ../cache/locales.php:538 msgid "Previous" msgstr "" -#: [step]step +#: ../cache/locales.php:539 +#, php-format msgid "Step %s" msgstr "" -#: [day]title +#: ../cache/locales.php:542 msgid "Day" msgstr "天" -#: [day]monday +#: ../cache/locales.php:543 msgid "Monday" msgstr "星期一" -#: [day]tuesday +#: ../cache/locales.php:544 msgid "Tuesday" msgstr "星期二" -#: [day]wednesday +#: ../cache/locales.php:545 msgid "Wednesday" msgstr "星期三" -#: [day]thursday +#: ../cache/locales.php:546 msgid "Thursday" msgstr "星期四" -#: [day]friday +#: ../cache/locales.php:547 msgid "Friday" msgstr "星期五" -#: [day]saturday +#: ../cache/locales.php:548 msgid "Saturday" msgstr "星期六" -#: [day]sunday +#: ../cache/locales.php:549 msgid "Sunday" msgstr "星期日" -#: [gender]nil -#, fuzzy -msgctxt "[gender]nil" +#: ../cache/locales.php:550 ../cache/locales.php:559 msgid "None" msgstr "无" -#: [gender]male +#: ../cache/locales.php:551 msgid "Male" msgstr "男性" -#: [gender]female +#: ../cache/locales.php:552 msgid "Female" msgstr "女性" -#: [gender]other +#: ../cache/locales.php:553 msgid "Other" msgstr "其他" -#: [client]bot +#: ../cache/locales.php:554 msgid "Bot" msgstr "Bot" -#: [client]desktop +#: ../cache/locales.php:555 msgid "Desktop" msgstr "桌面" -#: [client]phone +#: ../cache/locales.php:556 msgid "Phone" msgstr "电话" -#: [client]web +#: ../cache/locales.php:557 msgid "Web" msgstr "网站" -#: [client]registered +#: ../cache/locales.php:558 msgid "Registered" msgstr "已注册" -#: [marital]nil -#, fuzzy -msgctxt "[marital]nil" -msgid "None" -msgstr "无" - -#: [marital]single +#: ../cache/locales.php:560 msgid "Single" msgstr "单身" -#: [marital]relationship +#: ../cache/locales.php:561 msgid "In a relationship" msgstr "热恋中" -#: [marital]married +#: ../cache/locales.php:562 msgid "Married" msgstr "已婚" -#: [marital]divorced +#: ../cache/locales.php:563 msgid "Divorced" msgstr "离异" -#: [marital]widowed +#: ../cache/locales.php:564 msgid "Widowed" msgstr "丧偶" -#: [marital]cohabiting +#: ../cache/locales.php:565 msgid "Cohabiting" msgstr "同居" -#: [marital]union +#: ../cache/locales.php:566 msgid "Civil Union" msgstr "伴侣关系" -#: [flag]white +#: ../cache/locales.php:567 msgid "Not shared" msgstr "私密" -#: [flag]green +#: ../cache/locales.php:568 msgid "Shared with one contact" msgstr "与一个联系人共享" -#: [flag]orange +#: ../cache/locales.php:569 msgid "Shared with all contacts" msgstr "与所有联系人共享" -#: [flag]red +#: ../cache/locales.php:570 msgid "Shared with the XMPP network" msgstr "在XMPP网络共享" -#: [flag]black +#: ../cache/locales.php:571 msgid "Shared with the whole Internet" msgstr "完全公开" -#: [presence]online +#: ../cache/locales.php:572 msgid "Online" msgstr "在线" -#: [presence]away +#: ../cache/locales.php:573 msgid "Away" msgstr "离开" -#: [presence]dnd +#: ../cache/locales.php:574 msgid "Do Not Disturb" msgstr "请勿打扰" -#: [presence]xa +#: ../cache/locales.php:575 msgid "Extended Away" msgstr "扩展" -#: [presence]offline +#: ../cache/locales.php:576 msgid "Offline" msgstr "离线" -#: [presence]error +#: ../cache/locales.php:577 msgid "Error" msgstr "错误" -#: [mood]afraid +#: ../cache/locales.php:578 msgid "afraid" msgstr "害怕" -#: [mood]amazed +#: ../cache/locales.php:579 msgid "amazed" msgstr "吃惊" -#: [mood]amorous +#: ../cache/locales.php:580 msgid "amorous" msgstr "恋爱" -#: [mood]angry +#: ../cache/locales.php:581 msgid "angry" msgstr "生气" -#: [mood]annoyed +#: ../cache/locales.php:582 msgid "annoyed" msgstr "恼怒" -#: [mood]anxious +#: ../cache/locales.php:583 msgid "anxious" msgstr "焦虑" -#: [mood]aroused +#: ../cache/locales.php:584 msgid "aroused" msgstr "亢奋" -#: [mood]ashamed +#: ../cache/locales.php:585 msgid "ashamed" msgstr "惭愧" -#: [mood]bored +#: ../cache/locales.php:586 msgid "bored" msgstr "无聊" -#: [mood]brave +#: ../cache/locales.php:587 msgid "brave" msgstr "勇敢" -#: [mood]calm +#: ../cache/locales.php:588 msgid "calm" msgstr "平静" -#: [mood]cautious +#: ../cache/locales.php:589 msgid "cautious" msgstr "小心" -#: [mood]cold +#: ../cache/locales.php:590 msgid "cold" msgstr "冷" -#: [mood]confident +#: ../cache/locales.php:591 msgid "confident" msgstr "自信" -#: [mood]confused +#: ../cache/locales.php:592 msgid "confused" msgstr "迷惑" -#: [mood]contemplative +#: ../cache/locales.php:593 msgid "contemplative" msgstr "沉思" -#: [mood]contented +#: ../cache/locales.php:594 msgid "contented" msgstr "满意" -#: [mood]cranky +#: ../cache/locales.php:595 msgid "cranky" msgstr "古怪" -#: [mood]crazy +#: ../cache/locales.php:596 msgid "crazy" msgstr "疯狂" -#: [mood]creative +#: ../cache/locales.php:597 msgid "creative" msgstr "创意" -#: [mood]curious +#: ../cache/locales.php:598 msgid "curious" msgstr "好奇" -#: [mood]dejected +#: ../cache/locales.php:599 msgid "dejected" msgstr "沮丧" -#: [mood]depressed +#: ../cache/locales.php:600 msgid "depressed" msgstr "郁闷" -#: [mood]disappointed +#: ../cache/locales.php:601 msgid "disappointed" msgstr "失望" -#: [mood]disgusted +#: ../cache/locales.php:602 msgid "disgusted" msgstr "讨厌" -#: [mood]dismayed +#: ../cache/locales.php:603 msgid "dismayed" msgstr "灰心" -#: [mood]distracted +#: ../cache/locales.php:604 msgid "distracted" msgstr "烦躁" -#: [mood]embarrassed +#: ../cache/locales.php:605 msgid "embarrassed" msgstr "尴尬" -#: [mood]envious +#: ../cache/locales.php:606 msgid "envious" msgstr "羡慕" -#: [mood]excited +#: ../cache/locales.php:607 msgid "excited" msgstr "兴奋" -#: [mood]flirtatious +#: ../cache/locales.php:608 msgid "flirtatious" msgstr "挑逗" -#: [mood]frustated +#: ../cache/locales.php:609 msgid "frustated" msgstr "" -#: [mood]grateful +#: ../cache/locales.php:610 msgid "grateful" msgstr "感谢" -#: [mood]grieving +#: ../cache/locales.php:611 msgid "grieving" msgstr "伤心" -#: [mood]grumpy +#: ../cache/locales.php:612 msgid "grumpy" msgstr "暴躁" -#: [mood]guilty +#: ../cache/locales.php:613 msgid "guilty" msgstr "内疚" -#: [mood]happy +#: ../cache/locales.php:614 msgid "happy" msgstr "幸福" -#: [mood]hopeful +#: ../cache/locales.php:615 msgid "hopeful" msgstr "希望" -#: [mood]hot +#: ../cache/locales.php:616 msgid "hot" msgstr "热" -#: [mood]humbled +#: ../cache/locales.php:617 msgid "humbled" msgstr "贬低" -#: [mood]humiliated +#: ../cache/locales.php:618 msgid "humiliated" msgstr "丢脸" -#: [mood]hungry +#: ../cache/locales.php:619 msgid "hungry" msgstr "饿" -#: [mood]hurt +#: ../cache/locales.php:620 msgid "hurt" msgstr "痛苦" -#: [mood]impressed +#: ../cache/locales.php:621 msgid "impressed" msgstr "感动" -#: [mood]in_awe +#: ../cache/locales.php:622 msgid "in awe" msgstr "佩服" -#: [mood]in_love +#: ../cache/locales.php:623 msgid "in love" msgstr "示爱" -#: [mood]indignant +#: ../cache/locales.php:624 msgid "indignant" msgstr "" -#: [mood]interested +#: ../cache/locales.php:625 msgid "interested" msgstr "有趣" -#: [mood]intoxicated +#: ../cache/locales.php:626 msgid "intoxicated" msgstr "中毒" -#: [mood]invincible +#: ../cache/locales.php:627 msgid "invincible" msgstr "无敌的" -#: [mood]jealous +#: ../cache/locales.php:628 msgid "jealous" msgstr "妒忌" -#: [mood]lonely +#: ../cache/locales.php:629 msgid "lonely" msgstr "孤独" -#: [mood]lost +#: ../cache/locales.php:630 msgid "lost" msgstr "迷惑" -#: [mood]lucky +#: ../cache/locales.php:631 msgid "lucky" msgstr "好运" -#: [mood]mean +#: ../cache/locales.php:632 msgid "mean" msgstr "吝啬" -#: [mood]moody +#: ../cache/locales.php:633 msgid "moody" msgstr "易怒的" -#: [mood]nervous +#: ../cache/locales.php:634 msgid "nervous" msgstr "紧张" -#: [mood]neutral +#: ../cache/locales.php:635 msgid "neutral" msgstr "中立" -#: [mood]offended +#: ../cache/locales.php:636 msgid "offended" msgstr "生气" -#: [mood]outraged +#: ../cache/locales.php:637 msgid "outraged" msgstr "愤怒" -#: [mood]playful +#: ../cache/locales.php:638 msgid "playful" msgstr "幽默" -#: [mood]proud +#: ../cache/locales.php:639 msgid "proud" msgstr "自豪" -#: [mood]relaxed +#: ../cache/locales.php:640 msgid "relaxed" msgstr "宽慰" -#: [mood]relieved +#: ../cache/locales.php:641 msgid "relieved" msgstr "放松" -#: [mood]restless +#: ../cache/locales.php:642 +msgid "remorseful" +msgstr "悔恨" + +#: ../cache/locales.php:643 msgid "restless" msgstr "不安" -#: [mood]sad +#: ../cache/locales.php:644 msgid "sad" msgstr "悲伤" -#: [mood]sarcastic +#: ../cache/locales.php:645 msgid "sarcastic" msgstr "讽刺" -#: [mood]satisfied +#: ../cache/locales.php:646 msgid "satisfied" msgstr "满意" -#: [mood]serious +#: ../cache/locales.php:647 msgid "serious" msgstr "严肃" -#: [mood]shocked +#: ../cache/locales.php:648 msgid "shocked" msgstr "惊讶" -#: [mood]shy +#: ../cache/locales.php:649 msgid "shy" msgstr "害羞" -#: [mood]sick +#: ../cache/locales.php:650 msgid "sick" msgstr "生病" -#: [mood]sleepy +#: ../cache/locales.php:651 msgid "sleepy" msgstr "困" -#: [mood]spontaneous +#: ../cache/locales.php:652 msgid "spontaneous" msgstr "随意" -#: [mood]stressed +#: ../cache/locales.php:653 msgid "stressed" msgstr "紧张" -#: [mood]strong +#: ../cache/locales.php:654 msgid "strong" msgstr "得意" -#: [mood]surprised +#: ../cache/locales.php:655 msgid "surprised" msgstr "惊喜" -#: [mood]thankful +#: ../cache/locales.php:656 msgid "thankful" msgstr "感谢" -#: [mood]thirsty +#: ../cache/locales.php:657 msgid "thirsty" msgstr "口渴" -#: [mood]tired +#: ../cache/locales.php:658 msgid "tired" msgstr "疲劳" -#: [mood]undefined +#: ../cache/locales.php:659 msgid "undefined" msgstr "未定义" -#: [mood]weak +#: ../cache/locales.php:660 msgid "weak" msgstr "虚弱" -#: [mood]worried +#: ../cache/locales.php:661 msgid "worried" msgstr "担心" -#: [month]title +#: ../cache/locales.php:662 msgid "Month" msgstr "月" -#: [month]january +#: ../cache/locales.php:663 msgid "January" msgstr "一月" -#: [month]february +#: ../cache/locales.php:664 msgid "February" msgstr "二月" -#: [month]march +#: ../cache/locales.php:665 msgid "March" msgstr "三月" -#: [month]april +#: ../cache/locales.php:666 msgid "April" msgstr "四月" -#: [month]may +#: ../cache/locales.php:667 msgid "May" msgstr "五月" -#: [month]june +#: ../cache/locales.php:668 msgid "June" msgstr "六月" -#: [month]july +#: ../cache/locales.php:669 msgid "July" msgstr "七月" -#: [month]august +#: ../cache/locales.php:670 msgid "August" msgstr "八月" -#: [month]september +#: ../cache/locales.php:671 msgid "September" msgstr "九月" -#: [month]october +#: ../cache/locales.php:672 msgid "October" msgstr "十月" -#: [month]november +#: ../cache/locales.php:673 msgid "November" msgstr "十一月" -#: [month]december +#: ../cache/locales.php:674 msgid "December" msgstr "十二月" -#: [year]title +#: ../cache/locales.php:675 msgid "Year" msgstr "年" -#: [date]today +#: ../cache/locales.php:676 msgid "Today" msgstr "今天" -#: [date]tomorrow +#: ../cache/locales.php:677 msgid "Tomorrow" msgstr "明天" -#: [date]yesterday +#: ../cache/locales.php:678 msgid "Yesterday" msgstr "昨天" -#: [date]ago -#, fuzzy -msgid "%d days ago" +#: ../cache/locales.php:679 +#, php-format +msgid " %d days ago" msgstr " %d 天以前" -#: [date]day +#: ../cache/locales.php:680 msgid "day" msgstr "日期" -#: [post]whats_new +#: ../cache/locales.php:682 msgid "What's new ?" msgstr "" -#: [post]place +#: ../cache/locales.php:683 msgid "Place" msgstr "地点" -#: [post]by +#: ../cache/locales.php:684 msgid "by" msgstr "通过" -#: [post]geolocalisation +#: ../cache/locales.php:685 msgid "Geolocalisation" msgstr "" -#: [post]email +#: ../cache/locales.php:686 msgid "email" msgstr "邮件" -#: [post]no_comments +#: ../cache/locales.php:688 msgid "No comments yet" msgstr "" -#: [post]no_comments_stream +#: ../cache/locales.php:689 msgid "No comments stream" msgstr "没有评论集" -#: [post]no_load +#: ../cache/locales.php:690 msgid "Your feed cannot be loaded." msgstr "不能加载到您的feed" -#: [post]older +#: ../cache/locales.php:691 msgid "Get older posts" msgstr "查看以前公告" -#: [post]new_items +#: ../cache/locales.php:692 +#, php-format msgid "%s new items" msgstr "" -#: [post]comment_error +#: ../cache/locales.php:693 msgid "Comment publication error" msgstr "发表评论失败" -#: [post]comments_older +#: ../cache/locales.php:694 msgid "Show the older comments" msgstr "显示以前的评论" -#: [post]comments_loading -#, fuzzy -msgid "Loading comments..." +#: ../cache/locales.php:695 +msgid "Loading comments ..." msgstr "载入评论..." -#: [post]comments_get +#: ../cache/locales.php:696 msgid "Get the comments" msgstr "" -#: [post]comment_add +#: ../cache/locales.php:697 msgid "Add a comment" msgstr "添加评论" -#: [post]share +#: ../cache/locales.php:698 msgid "Share with" msgstr "" -#: [post]share_everyone +#: ../cache/locales.php:699 msgid "Everyone" msgstr "每个人" -#: [post]share_your_contacts +#: ../cache/locales.php:700 msgid "Your contacts" msgstr "您的联系人" -#: [post]updated +#: ../cache/locales.php:702 msgid "Updated" msgstr "已更新" -#: [post]content_not_found +#: ../cache/locales.php:703 msgid "Content not found" msgstr "内容未找到" -#: [post]default_title +#: ../cache/locales.php:704 msgid "Contact publication" msgstr "" -#: [post]comments +#: ../cache/locales.php:705 msgid "Comments" msgstr "" -#: [api]error +#: ../cache/locales.php:706 msgid "The API is not reachable, try again later" msgstr "API无法连接, 请稍后重试" -#: [field]type_here +#: ../cache/locales.php:707 msgid "Type here" msgstr "" -#~ msgid "Environment" -#~ msgstr "环境" - -#~ msgid "You can login with Facebook (chat only) using %syour.id@chat.facebook.com%s and your password" -#~ msgstr "你可以使用Facebook帐号来登录, 如 %s您的id@chat.facebook.com%s 和您的密码. (只能聊天)" - -#~ msgid "%sGmail accounts are also compatible%s but are not fully supported" -#~ msgstr "%sGmail 账户可用%s,但是部分功能不支持" - -#~ msgid "You can login using your favorite Jabber account" -#~ msgstr "您可以使用您喜欢的Jabber账户登录" - -#~ msgid "or with our demonstration account" -#~ msgstr "或使用我们的演示账户" - -#~ msgid "%s has been removed from your public groups" -#~ msgstr "%s 已经从您分组移除" - -#~ msgid "Remove a chatroom" -#~ msgstr "移除一个聊天室" - -#~ msgid "You are going to remove the following chatroom. Please confirm your action." -#~ msgstr "您将移除以下的聊天室, 请确认." - -#~ msgid "Remove" -#~ msgstr "移除" - -#~ msgid "remorseful" -#~ msgstr "悔恨" - +#, php-format #~ msgid "%s - Account Creation" #~ msgstr "%s - 建立帐号" @@ -2768,6 +2597,7 @@ msgstr "" #~ msgid "PHP version mismatch. Movim requires PHP 5.3 minimum." #~ msgstr "PHP 版本不符。 Movim 需要 PHP 5.3以上的版本。" +#, php-format #~ msgid "Movim requires the %s extension." #~ msgstr "Movim 需要 %s 扩展名。" @@ -2777,16 +2607,20 @@ msgstr "" #~ msgid "Movim Installer" #~ msgstr "Movim 安装程序。" +#, php-format #~ msgid "Couldn't create directory '%s'." #~ msgstr "不能建立目录 '%s'。" +#, php-format #~ msgid "Couldn't create configuration file '%s'." #~ msgstr "不能建立配置文件 '%s'。" #~ msgid "Compatibility Test" #~ msgstr "兼容性测试" -#~ msgid "The following requirements were not met. Please make sure they are all satisfied in order to install Movim." +#~ msgid "" +#~ "The following requirements were not met. Please make sure they are all " +#~ "satisfied in order to install Movim." #~ msgstr "没有达到符合安装 Movim的软件要求。请检查后再安装。" #~ msgid "User not logged in." @@ -2795,6 +2629,7 @@ msgstr "" #~ msgid "JID not provided." #~ msgstr "还未提供JID。" +#, php-format #~ msgid "jid '%s' is incorrect" #~ msgstr "JID %s 是不正确" @@ -2846,16 +2681,28 @@ msgstr "" #~ msgid "What is Movim?" #~ msgstr "什么是Movim'" -#~ msgid "Visit the page %s What is Movim ? %s to know more about the project, its aims and understand how it works." +#, php-format +#~ msgid "" +#~ "Visit the page %s What is Movim ? %s to know more about the project, its " +#~ "aims and understand how it works." #~ msgstr "访问页面 %s什么是Movim? %s 了解更多,关于这个程序的目的和怎样运行" -#~ msgid "Some features are missing/I can't do everything I used to do on other social networks" +#~ msgid "" +#~ "Some features are missing/I can't do everything I used to do on other social " +#~ "networks" #~ msgstr "特色正在消失/对我没用,我更喜欢其他的社交网站。" -#~ msgid "Although Movim is evolving fast, many (many) features are missing. Be patient ;). You can have a look %s at next versions's roadmaps %s to know if the one you want is on its way." +#, php-format +#~ msgid "" +#~ "Although Movim is evolving fast, many (many) features are missing. Be " +#~ "patient ;). You can have a look %s at next versions's roadmaps %s to know if " +#~ "the one you want is on its way." #~ msgstr "即使Movim正在快速发展,很多特色仍然在丢失。请耐心地期待我们,您可以查看%s版本的路线图%s以了解我们是否在往您设想的方向发展" -#~ msgid "Don't forget that Movim is an open source project, a helping hand is always welcome (see %s Can I participate %s)" +#, php-format +#~ msgid "" +#~ "Don't forget that Movim is an open source project, a helping hand is always " +#~ "welcome (see %s Can I participate %s)" #~ msgstr "不要忘了Movim是一个开放性的程序,我们期待您的参与(see %s 我能加入吗 %s" #~ msgid "I can't find the answer to my question here" @@ -2873,8 +2720,14 @@ msgstr "" #~ msgid "Remove this contact" #~ msgstr "移除联系人" -#~ msgid "Your server doesn't support post publication, you can only read contact's feeds" +#~ msgid "" +#~ "Your server doesn't support post publication, you can only read contact's " +#~ "feeds" #~ msgstr "您的服务器不支持该版本,您只能读取联系人的feeds" -#~ msgid "Go to the %s to the Frequently Asked Questions %s or come ask your question on the official chatroom %s or via our mailing-list (%s see the dedicated page %s)." +#, php-format +#~ msgid "" +#~ "Go to the %s to the Frequently Asked Questions %s or come ask your question " +#~ "on the official chatroom %s or via our mailing-list (%s see the dedicated " +#~ "page %s)." #~ msgstr "转到%s到的常见问题解答%s或来问你的问题官方聊天室%s或通过我们的邮件列表(%s看看专用页%s)。" diff --git a/sources/system/Utils.php b/sources/system/Utils.php index a4960f6..6786697 100644 --- a/sources/system/Utils.php +++ b/sources/system/Utils.php @@ -431,7 +431,7 @@ function getMood() { 'envious' => __('mood.envious'), // Feeling pain by the excellence or good fortune of another. 'excited' => __('mood.excited'), // Having great enthusiasm. 'flirtatious' => __('mood.flirtatious'), // In the mood for flirting. - 'frustrated' => __('mood.frustrated'), // Suffering from frustration; dissatisfied, agitated, or discontented because one is unable to perform an action or fulfill a desire. + 'frustated' => __('mood.frustrated'), // Suffering from frustration; dissatisfied, agitated, or discontented because one is unable to perform an action or fulfill a desire. 'grateful' => __('mood.grateful'), // Feeling appreciation or thanks. 'grieving' => __('mood.grieving'), // Feeling very sad about something, especially something lost; mournful; sorrowful. 'grumpy' => __('mood.grumpy'), // Unhappy and irritable. diff --git a/sources/themes/material/css/form.css b/sources/themes/material/css/form.css index 6d969ec..7ea0dfd 100644 --- a/sources/themes/material/css/form.css +++ b/sources/themes/material/css/form.css @@ -339,7 +339,7 @@ header.big ~ .button.action { @media screen and (min-width: 1025px) { main > section > div:first-child:nth-last-child(2) .button.action { - right: calc(65% + 3rem); + right: calc(70% + 3rem); } } diff --git a/sources/themes/material/css/style.css b/sources/themes/material/css/style.css index f2cd9a1..bf505b3 100644 --- a/sources/themes/material/css/style.css +++ b/sources/themes/material/css/style.css @@ -180,7 +180,7 @@ body > nav li { /* Little hack for the navbar */ } } -@media screen and (min-width: 1024px) and (max-width: 1680px) { +@media screen and (min-width: 1024px) { body > nav:hover { width: 45rem; box-shadow: 0 2.5rem 5rem rgba(0,0,0,0.30), 0 2rem 1.5rem rgba(0,0,0,0.22); @@ -200,18 +200,6 @@ body > nav li { /* Little hack for the navbar */ } } -@media screen and (min-width: 1680px) { - body > nav, - body > nav:hover { - width: 15%; - } - - body > nav + main, - body > nav:hover + main { - width: 85%; - } -} - body > nav.active:before, body > nav:hover:before { display: none; @@ -246,7 +234,7 @@ main > header { main > header > div { padding-left: 9rem; position: relative; - width: 35%; + width: 30%; display: inline-block; /*overflow: hidden;*/ box-sizing: border-box; @@ -287,7 +275,7 @@ main > header > div > ul.active:not(.context_menu) li.thin span.icon { } main > header > div:first-child:nth-last-child(2) ~ div { - width: 65%; + width: 70%; position: absolute; top: 0; right: 0; @@ -382,10 +370,10 @@ main > section > div > * { /* Two blocks*/ main > section > div:first-child:nth-last-child(2) { - width: 35%; + width: 30%; } main > section > div:first-child:nth-last-child(2) ~ div { - width: 65%; + width: 70%; position: absolute; top: 0; right: 0;