mirror of
https://github.com/YunoHost-Apps/movim_ynh.git
synced 2024-09-03 19:46:19 +02:00
Merge branch 'dev'
Conflicts: CHANGELOG
This commit is contained in:
commit
55ff37d042
46 changed files with 6204 additions and 2883 deletions
|
@ -1,5 +1,13 @@
|
|||
**Changelog**
|
||||
|
||||
1.5 2016-01-13
|
||||
- Update to movim 0.9 git2016-01-07
|
||||
- fix #16 (Installing movim crashes agendav)
|
||||
- script/install : removed skipped_uris
|
||||
- script/install : sed DisconnectController.php to avoid redirect to ?login after ?disconnect
|
||||
- script/upgrade : removed skipped_uris
|
||||
- script/upgrade : sed DisconnectController.php to avoid redirect to ?login after ?disconnect
|
||||
|
||||
1.4 2015-12-28
|
||||
- IMPORTANT (upgrades only): public pod option has been removed and replaced by SSO option.
|
||||
If you had a public pod --> SSO will be disabled, but xmpp whitelist will allow only your domain. This can be changed using Movim admin (example.org/movim/?admin).
|
||||
|
|
|
@ -5,7 +5,7 @@ Movim is a decentralized social network, written in PHP and HTML5 and based on t
|
|||
|
||||
It is recommended to use a "valid" certificate to use Movim, auto-signed is sometimes problematic. You might want to take a look a StartSSL or Let's Encrypt.
|
||||
|
||||
Current Movim version : 0.9 git2015-12-28
|
||||
Provided Movim version : 0.9 git2015-01-07
|
||||
|
||||
Please read CHANGELOG.
|
||||
|
||||
|
@ -20,7 +20,7 @@ Please read CHANGELOG.
|
|||
**Options**
|
||||
|
||||
* domain : Your domain name.
|
||||
* path : Path for you Movim pod (will be https://example.com/path).
|
||||
* path : Path for you Movim pod (https://example.com/path).
|
||||
* admin : Who can access /?admin (pod options).
|
||||
* password : Password to access /?admin.
|
||||
* language : Pod language, currently en or fr.
|
||||
|
|
10
TESTS
10
TESTS
|
@ -1,10 +0,0 @@
|
|||
Checklist before pushing to master :
|
||||
|
||||
* Installation
|
||||
* Upgrade
|
||||
* Remove
|
||||
* Auto start on boot
|
||||
* Movim login
|
||||
* Log output
|
||||
|
||||
On Debian 8 x86_64 & Debian 7 armhf.
|
|
@ -132,7 +132,8 @@ then
|
|||
sudo su -c "cd $final_path && php mud.php config xmppwhitelist:$domain" movim
|
||||
else
|
||||
sudo yunohost app setting movim unprotected_uris -v "/"
|
||||
sudo yunohost app setting movim skipped_regex -v "login"
|
||||
# Next line is to avoid SSO to auto-connect just after disconnect
|
||||
sudo sed -i "s@redirect('login')@redirect('')@g" $final_path/app/controllers/DisconnectController.php
|
||||
sudo yunohost app ssowatconf
|
||||
fi
|
||||
|
||||
|
|
|
@ -66,7 +66,8 @@ then
|
|||
sudo su -c "cd $final_path && php mud.php config xmppwhitelist:$domain" movim
|
||||
else
|
||||
sudo yunohost app setting movim unprotected_uris -v "/"
|
||||
sudo yunohost app setting movim skipped_regex -v "login"
|
||||
# Next line is to avoid SSO to auto-connect just after disconnect
|
||||
sudo sed -i "s@redirect('login')@redirect('')@g" $final_path/app/controllers/DisconnectController.php
|
||||
sudo yunohost app ssowatconf
|
||||
fi
|
||||
|
||||
|
|
|
@ -16,7 +16,7 @@ set(VERSION_PATCH "${MOVIM_VERSION_PATCH}")
|
|||
install(DIRECTORY "debian/etc" DESTINATION "/")
|
||||
install(DIRECTORY "debian/lib" DESTINATION "/")
|
||||
install(DIRECTORY "app" DESTINATION "/usr/share/${CMAKE_PROJECT_NAME}")
|
||||
install(DIRECTORY "src" DESTINATION "/usr/share/${CMAKE_PROJECT_NAME}")
|
||||
install(DIRECTORY "src" DESTINATION "/var/lib/${CMAKE_PROJECT_NAME}")
|
||||
install(DIRECTORY "system" DESTINATION "/usr/share/${CMAKE_PROJECT_NAME}")
|
||||
install(DIRECTORY "lib" DESTINATION "/var/lib/${CMAKE_PROJECT_NAME}")
|
||||
install(DIRECTORY "locales" DESTINATION "/var/lib/${CMAKE_PROJECT_NAME}")
|
||||
|
|
|
@ -52,7 +52,7 @@ class Blog extends WidgetBase {
|
|||
$pd = new \modl\PostnDAO();
|
||||
|
||||
if($this->_id = $this->get('i')) {
|
||||
if(Validator::intType()->between(1, 100)->validate((int)$this->_id)) {
|
||||
if(Validator::stringType()->between('1', '100')->validate($this->_id)) {
|
||||
if(isset($this->_tag)) {
|
||||
$this->_messages = $pd->getPublicTag($this->get('t'), $this->_id * $this->_paging, $this->_paging + 1);
|
||||
} else {
|
||||
|
|
|
@ -36,8 +36,8 @@
|
|||
</li>
|
||||
</ul>
|
||||
|
||||
<ul class="list thick">
|
||||
<li>
|
||||
<ul class="list thick flex">
|
||||
<li class="block">
|
||||
{if="$url"}
|
||||
<span class="primary icon bubble color {if="isset($presence)"}status {$presence}{/if}">
|
||||
<img src="{$url}">
|
||||
|
@ -50,10 +50,9 @@
|
|||
<p class="line">{$contact->getTrueName()}</p>
|
||||
<p class="line">{$contact->jid}</p>
|
||||
</li>
|
||||
<!--
|
||||
{if="$caps"}
|
||||
<li>
|
||||
<span class="icon">
|
||||
<li class="block">
|
||||
<span class="primary icon">
|
||||
<i class="zmdi
|
||||
{if="$caps->type == 'handheld' || $caps->type == 'phone'"}
|
||||
zmdi-smartphone-android
|
||||
|
@ -65,14 +64,14 @@
|
|||
">
|
||||
</i>
|
||||
</span>
|
||||
<span>
|
||||
<p class="normal line">
|
||||
{$caps->name}
|
||||
{if="isset($clienttype[$caps->type])"}
|
||||
- {$clienttype[$caps->type]}
|
||||
{/if}
|
||||
</span>
|
||||
</p>
|
||||
</li>
|
||||
{/if}-->
|
||||
{/if}
|
||||
</ul>
|
||||
</header>
|
||||
|
||||
|
|
|
@ -15,4 +15,4 @@ results = Results
|
|||
added = Contact added
|
||||
updated = Contact updated
|
||||
deleted = Contact deleted
|
||||
search = Search
|
||||
search = Search in your contacts
|
||||
|
|
|
@ -5,22 +5,6 @@ not_updated = Profile Not Updated
|
|||
public = Your profile is now public
|
||||
restricted = Your profile is now restricted
|
||||
|
||||
[general]
|
||||
general_title = General Informations
|
||||
name = Name
|
||||
nickname = Nickname
|
||||
email = Email
|
||||
date_of_birth = Date of Birth
|
||||
gender = Gender
|
||||
marital = Marital Status
|
||||
website = Website
|
||||
about = About Me
|
||||
|
||||
[position]
|
||||
position_title = Geographic Position
|
||||
locality = Locality
|
||||
country = Country
|
||||
|
||||
[accounts]
|
||||
accounts_title = Accounts
|
||||
twitter = Twitter
|
||||
|
|
|
@ -255,7 +255,7 @@ class Bootstrap {
|
|||
$cd = new \Modl\ConfigDAO();
|
||||
$config = $cd->get();
|
||||
|
||||
$l = Movim\i18n\Locale::start();
|
||||
$l = \Movim\i18n\Locale::start();
|
||||
|
||||
if($user->isLogged()) {
|
||||
$lang = $user->getConfig('language');
|
||||
|
|
|
@ -7,6 +7,9 @@ User=www-data
|
|||
Type=simple
|
||||
ExecStart=/usr/bin/php daemon.php https://localhost/movim/ 8080
|
||||
WorkingDirectory=/usr/share/movim/
|
||||
StandardOutput=syslog
|
||||
SyslogIdentifier=movim
|
||||
PIDFile=/run/movim.pid
|
||||
|
||||
[Install]
|
||||
WantedBy=multi-user.target
|
||||
|
|
|
@ -124,6 +124,7 @@ ln -s /var/lib/movim/lib /usr/share/movim/ 2>/dev/null
|
|||
ln -s /var/lib/movim/locales /usr/share/movim/ 2>/dev/null
|
||||
ln -s /var/lib/movim/themes /usr/share/movim/ 2>/dev/null
|
||||
ln -s /var/lib/movim/vendor /usr/share/movim/ 2>/dev/null
|
||||
ln -s /var/lib/movim/src /usr/share/movim/ 2>/dev/null
|
||||
|
||||
# We create the cache folder
|
||||
mkdir -p /var/cache/movim/cache 2>/dev/null
|
||||
|
|
|
@ -92,7 +92,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: movim\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-10-06 23:33+0200\n"
|
||||
"POT-Creation-Date: 2015-12-29 13:42+0200\n"
|
||||
"PO-Revision-Date: 2015-10-06 21:34+0000\n"
|
||||
"Last-Translator: Jaussoin Timothée <edhelas@movim.eu>\n"
|
||||
"Language-Team: Arabic (http://www.transifex.com/movim/movim/language/ar/)\n"
|
||||
|
@ -204,6 +204,10 @@ msgstr ""
|
|||
msgid "Loading"
|
||||
msgstr ""
|
||||
|
||||
#: [create]placeholder
|
||||
msgid "…and start playing"
|
||||
msgstr ""
|
||||
|
||||
#: [error]not_acceptable
|
||||
msgid "Not Acceptable"
|
||||
msgstr ""
|
||||
|
@ -257,8 +261,9 @@ msgid "Port"
|
|||
msgstr "المَنفذ"
|
||||
|
||||
#: [db]name
|
||||
msgid "Database sName"
|
||||
msgstr ""
|
||||
#, fuzzy
|
||||
msgid "Database Name"
|
||||
msgstr "نوع قاعدة البيانات"
|
||||
|
||||
#: [admin]general
|
||||
msgid "General Settings"
|
||||
|
@ -366,14 +371,6 @@ msgstr ""
|
|||
msgid "Syslog and files"
|
||||
msgstr ""
|
||||
|
||||
#: [rewrite]title
|
||||
msgid "URL Rewriting"
|
||||
msgstr ""
|
||||
|
||||
#: [rewrite]info
|
||||
msgid "The URL Rewriting can be enabled"
|
||||
msgstr ""
|
||||
|
||||
#: [admin]compatibility
|
||||
msgid "General Overview"
|
||||
msgstr ""
|
||||
|
@ -406,10 +403,6 @@ msgstr ""
|
|||
msgid "Read and write rights for the webserver in Movims root directory"
|
||||
msgstr ""
|
||||
|
||||
#: [compatibility]rewrite
|
||||
msgid "The URL Rewriting support is currently disabled"
|
||||
msgstr ""
|
||||
|
||||
#: [compatibility]db
|
||||
msgid "The database need to be updated, go to the database panel to fix this"
|
||||
msgstr ""
|
||||
|
@ -494,6 +487,10 @@ msgstr ""
|
|||
msgid "Avatar Not Updated"
|
||||
msgstr ""
|
||||
|
||||
#: [avatar]missing
|
||||
msgid "No avatar defined yet"
|
||||
msgstr ""
|
||||
|
||||
#: [blog]title [feed]title
|
||||
msgid "%s's feed"
|
||||
msgstr ""
|
||||
|
@ -502,6 +499,10 @@ msgstr ""
|
|||
msgid "This user has not posted anything right now"
|
||||
msgstr ""
|
||||
|
||||
#: [blog]private
|
||||
msgid "This content is private, please login to see it"
|
||||
msgstr ""
|
||||
|
||||
#: [title]conferences
|
||||
msgid "Conferences"
|
||||
msgstr ""
|
||||
|
@ -584,6 +585,10 @@ msgstr ""
|
|||
msgid "Contact gone"
|
||||
msgstr ""
|
||||
|
||||
#: [message]history
|
||||
msgid "%s messages retrieved"
|
||||
msgstr ""
|
||||
|
||||
#: [chat]attention
|
||||
msgid "%s needs your attention"
|
||||
msgstr ""
|
||||
|
@ -641,7 +646,7 @@ msgid "No chats yet..."
|
|||
msgstr ""
|
||||
|
||||
#: [chats]empty
|
||||
msgid "Open a new conversation by clicking on the %s button bellow or visit the %s Contacts%s page."
|
||||
msgid "Open a new conversation by clicking on the %s button bellow or visit the %sContacts%s page."
|
||||
msgstr ""
|
||||
|
||||
#: [chats]add
|
||||
|
@ -696,9 +701,15 @@ msgstr ""
|
|||
msgid "Appearence"
|
||||
msgstr ""
|
||||
|
||||
#: [config]info
|
||||
msgid "This configuration is shared wherever you are connected"
|
||||
msgstr ""
|
||||
#: [config]not_valid
|
||||
#, fuzzy
|
||||
msgid "Configuration invalid"
|
||||
msgstr "ضبط"
|
||||
|
||||
#: [config]advanced
|
||||
#, fuzzy
|
||||
msgid "Advanced Configuration"
|
||||
msgstr "ضبط"
|
||||
|
||||
#: [notifications]message
|
||||
msgid "Notify on incoming message"
|
||||
|
@ -708,6 +719,10 @@ msgstr ""
|
|||
msgid "Use desktop notifications"
|
||||
msgstr ""
|
||||
|
||||
#: [cssurl]label
|
||||
msgid "Custom CSS URL for your blog"
|
||||
msgstr ""
|
||||
|
||||
#: [general]legend [general]general_title
|
||||
msgid "General Informations"
|
||||
msgstr "معلومات عامة"
|
||||
|
@ -820,6 +835,10 @@ msgstr ""
|
|||
msgid "Last public post"
|
||||
msgstr ""
|
||||
|
||||
#: [blog]visit
|
||||
msgid "Visit the blog to see all the public posts"
|
||||
msgstr ""
|
||||
|
||||
#: [subscription]to
|
||||
msgid "You can see this contact status"
|
||||
msgstr ""
|
||||
|
@ -1004,18 +1023,6 @@ msgstr ""
|
|||
msgid "This server doesn't exists"
|
||||
msgstr ""
|
||||
|
||||
#: [menu]all
|
||||
msgid "All"
|
||||
msgstr "الكل"
|
||||
|
||||
#: [menu]refresh
|
||||
msgid "Refresh all the streams"
|
||||
msgstr ""
|
||||
|
||||
#: [menu]me
|
||||
msgid "My publications"
|
||||
msgstr ""
|
||||
|
||||
#: [roster]search
|
||||
msgid "Search in your contacts"
|
||||
msgstr ""
|
||||
|
@ -1121,7 +1128,7 @@ msgid "Chat with the team ?"
|
|||
msgstr ""
|
||||
|
||||
#: [chatroom]button
|
||||
msgid "Join the Chatroom"
|
||||
msgid "Add the chatroom"
|
||||
msgstr ""
|
||||
|
||||
#: [init]location
|
||||
|
@ -1213,10 +1220,6 @@ msgstr ""
|
|||
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 ""
|
||||
|
@ -1299,13 +1302,17 @@ msgid "Welcome on your news feed, here you will see all the posts published by y
|
|||
msgstr ""
|
||||
|
||||
#: [menu]refresh
|
||||
msgid "Refreshing all the streams"
|
||||
msgid "Refresh all the streams"
|
||||
msgstr ""
|
||||
|
||||
#: [menu]public
|
||||
msgid "This post is public"
|
||||
msgstr ""
|
||||
|
||||
#: [menu]all
|
||||
msgid "All"
|
||||
msgstr "الكل"
|
||||
|
||||
#: [affiliations]title
|
||||
msgid "Manage your members"
|
||||
msgstr ""
|
||||
|
@ -1342,10 +1349,6 @@ msgstr ""
|
|||
msgid "%s wants to talk with you"
|
||||
msgstr ""
|
||||
|
||||
#: [notifs]manage
|
||||
msgid "Manage"
|
||||
msgstr ""
|
||||
|
||||
#: [post]news_feed
|
||||
msgid "News Feed"
|
||||
msgstr ""
|
||||
|
@ -1390,12 +1393,12 @@ msgstr ""
|
|||
msgid "Publish this post publicly?"
|
||||
msgstr ""
|
||||
|
||||
#: [post]blog_add
|
||||
msgid "Post published on your blog"
|
||||
#: [post]public_yes
|
||||
msgid "This post is now public"
|
||||
msgstr ""
|
||||
|
||||
#: [post]blog_remove
|
||||
msgid "Post removed from your blog"
|
||||
#: [post]public_no
|
||||
msgid "This post is now private"
|
||||
msgstr ""
|
||||
|
||||
#: [post]delete_title [post]delete
|
||||
|
@ -1406,6 +1409,10 @@ msgstr "حذف هذه التدوينة"
|
|||
msgid "You are going to delete this post, please confirm your action"
|
||||
msgstr ""
|
||||
|
||||
#: [post]discover
|
||||
msgid "Discover more articles on the Groups page"
|
||||
msgstr ""
|
||||
|
||||
#: [post]comments_disabled
|
||||
msgid "Comments disabled"
|
||||
msgstr ""
|
||||
|
@ -1470,10 +1477,6 @@ msgstr ""
|
|||
msgid "This picture will be added to your gallery"
|
||||
msgstr ""
|
||||
|
||||
#: [post]embed_tip
|
||||
msgid "You can also use services like Imgur or Flickr to host your picture and paste the link here."
|
||||
msgstr ""
|
||||
|
||||
#: [publish]valid_url
|
||||
msgid "Please enter a valid url"
|
||||
msgstr ""
|
||||
|
@ -1486,6 +1489,10 @@ msgstr ""
|
|||
msgid "Please provide a title"
|
||||
msgstr ""
|
||||
|
||||
#: [publish]edit
|
||||
msgid "Edit post"
|
||||
msgstr ""
|
||||
|
||||
#: [publish]title
|
||||
msgid "Publish"
|
||||
msgstr ""
|
||||
|
@ -1876,6 +1883,10 @@ msgstr ""
|
|||
msgid "Room"
|
||||
msgstr ""
|
||||
|
||||
#: [page]tag
|
||||
msgid "Tag"
|
||||
msgstr ""
|
||||
|
||||
#: [error]error
|
||||
msgid "Error: %s"
|
||||
msgstr "خطأ: %s"
|
||||
|
@ -2729,3 +2740,6 @@ msgstr ""
|
|||
#: [field]type_here
|
||||
msgid "Type here"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Your web browser is too old to use with Movim."
|
||||
#~ msgstr "المتصفح الذي تستخدمه أقدم من أن يُشغّل Movim!"
|
||||
|
|
|
@ -93,7 +93,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Movim\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-10-06 23:33+0200\n"
|
||||
"POT-Creation-Date: 2015-12-29 13:42+0200\n"
|
||||
"PO-Revision-Date: 2011-10-26 21:31+0000\n"
|
||||
"Last-Translator: edhelas <edhelas@movim.eu>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
@ -207,6 +207,10 @@ msgstr ""
|
|||
msgid "Loading"
|
||||
msgstr ""
|
||||
|
||||
#: [create]placeholder
|
||||
msgid "…and start playing"
|
||||
msgstr ""
|
||||
|
||||
#: [error]not_acceptable
|
||||
msgid "Not Acceptable"
|
||||
msgstr ""
|
||||
|
@ -260,7 +264,7 @@ msgid "Port"
|
|||
msgstr ""
|
||||
|
||||
#: [db]name
|
||||
msgid "Database sName"
|
||||
msgid "Database Name"
|
||||
msgstr ""
|
||||
|
||||
#: [admin]general
|
||||
|
@ -369,14 +373,6 @@ msgstr ""
|
|||
msgid "Syslog and files"
|
||||
msgstr ""
|
||||
|
||||
#: [rewrite]title
|
||||
msgid "URL Rewriting"
|
||||
msgstr ""
|
||||
|
||||
#: [rewrite]info
|
||||
msgid "The URL Rewriting can be enabled"
|
||||
msgstr ""
|
||||
|
||||
#: [admin]compatibility
|
||||
msgid "General Overview"
|
||||
msgstr ""
|
||||
|
@ -409,10 +405,6 @@ msgstr ""
|
|||
msgid "Read and write rights for the webserver in Movims root directory"
|
||||
msgstr ""
|
||||
|
||||
#: [compatibility]rewrite
|
||||
msgid "The URL Rewriting support is currently disabled"
|
||||
msgstr ""
|
||||
|
||||
#: [compatibility]db
|
||||
msgid "The database need to be updated, go to the database panel to fix this"
|
||||
msgstr ""
|
||||
|
@ -497,6 +489,10 @@ msgstr ""
|
|||
msgid "Avatar Not Updated"
|
||||
msgstr ""
|
||||
|
||||
#: [avatar]missing
|
||||
msgid "No avatar defined yet"
|
||||
msgstr ""
|
||||
|
||||
#: [blog]title [feed]title
|
||||
msgid "%s's feed"
|
||||
msgstr ""
|
||||
|
@ -505,6 +501,10 @@ msgstr ""
|
|||
msgid "This user has not posted anything right now"
|
||||
msgstr ""
|
||||
|
||||
#: [blog]private
|
||||
msgid "This content is private, please login to see it"
|
||||
msgstr ""
|
||||
|
||||
#: [title]conferences
|
||||
msgid "Conferences"
|
||||
msgstr ""
|
||||
|
@ -587,6 +587,10 @@ msgstr ""
|
|||
msgid "Contact gone"
|
||||
msgstr ""
|
||||
|
||||
#: [message]history
|
||||
msgid "%s messages retrieved"
|
||||
msgstr ""
|
||||
|
||||
#: [chat]attention
|
||||
msgid "%s needs your attention"
|
||||
msgstr ""
|
||||
|
@ -644,7 +648,7 @@ msgid "No chats yet..."
|
|||
msgstr ""
|
||||
|
||||
#: [chats]empty
|
||||
msgid "Open a new conversation by clicking on the %s button bellow or visit the %s Contacts%s page."
|
||||
msgid "Open a new conversation by clicking on the %s button bellow or visit the %sContacts%s page."
|
||||
msgstr ""
|
||||
|
||||
#: [chats]add
|
||||
|
@ -699,9 +703,15 @@ msgstr ""
|
|||
msgid "Appearence"
|
||||
msgstr ""
|
||||
|
||||
#: [config]info
|
||||
msgid "This configuration is shared wherever you are connected"
|
||||
msgstr ""
|
||||
#: [config]not_valid
|
||||
#, fuzzy
|
||||
msgid "Configuration invalid"
|
||||
msgstr "Канфігурацыя"
|
||||
|
||||
#: [config]advanced
|
||||
#, fuzzy
|
||||
msgid "Advanced Configuration"
|
||||
msgstr "Канфігурацыя"
|
||||
|
||||
#: [notifications]message
|
||||
msgid "Notify on incoming message"
|
||||
|
@ -711,6 +721,10 @@ msgstr ""
|
|||
msgid "Use desktop notifications"
|
||||
msgstr ""
|
||||
|
||||
#: [cssurl]label
|
||||
msgid "Custom CSS URL for your blog"
|
||||
msgstr ""
|
||||
|
||||
#: [general]legend [general]general_title
|
||||
msgid "General Informations"
|
||||
msgstr ""
|
||||
|
@ -823,6 +837,10 @@ msgstr ""
|
|||
msgid "Last public post"
|
||||
msgstr ""
|
||||
|
||||
#: [blog]visit
|
||||
msgid "Visit the blog to see all the public posts"
|
||||
msgstr ""
|
||||
|
||||
#: [subscription]to
|
||||
msgid "You can see this contact status"
|
||||
msgstr ""
|
||||
|
@ -1007,18 +1025,6 @@ msgstr ""
|
|||
msgid "This server doesn't exists"
|
||||
msgstr ""
|
||||
|
||||
#: [menu]all
|
||||
msgid "All"
|
||||
msgstr ""
|
||||
|
||||
#: [menu]refresh
|
||||
msgid "Refresh all the streams"
|
||||
msgstr ""
|
||||
|
||||
#: [menu]me
|
||||
msgid "My publications"
|
||||
msgstr ""
|
||||
|
||||
#: [roster]search
|
||||
msgid "Search in your contacts"
|
||||
msgstr ""
|
||||
|
@ -1124,7 +1130,7 @@ msgid "Chat with the team ?"
|
|||
msgstr ""
|
||||
|
||||
#: [chatroom]button
|
||||
msgid "Join the Chatroom"
|
||||
msgid "Add the chatroom"
|
||||
msgstr ""
|
||||
|
||||
#: [init]location
|
||||
|
@ -1216,10 +1222,6 @@ msgstr ""
|
|||
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 ""
|
||||
|
@ -1302,13 +1304,17 @@ msgid "Welcome on your news feed, here you will see all the posts published by y
|
|||
msgstr ""
|
||||
|
||||
#: [menu]refresh
|
||||
msgid "Refreshing all the streams"
|
||||
msgid "Refresh all the streams"
|
||||
msgstr ""
|
||||
|
||||
#: [menu]public
|
||||
msgid "This post is public"
|
||||
msgstr ""
|
||||
|
||||
#: [menu]all
|
||||
msgid "All"
|
||||
msgstr ""
|
||||
|
||||
#: [affiliations]title
|
||||
msgid "Manage your members"
|
||||
msgstr ""
|
||||
|
@ -1345,10 +1351,6 @@ msgstr ""
|
|||
msgid "%s wants to talk with you"
|
||||
msgstr ""
|
||||
|
||||
#: [notifs]manage
|
||||
msgid "Manage"
|
||||
msgstr ""
|
||||
|
||||
#: [post]news_feed
|
||||
msgid "News Feed"
|
||||
msgstr ""
|
||||
|
@ -1393,12 +1395,12 @@ msgstr ""
|
|||
msgid "Publish this post publicly?"
|
||||
msgstr ""
|
||||
|
||||
#: [post]blog_add
|
||||
msgid "Post published on your blog"
|
||||
#: [post]public_yes
|
||||
msgid "This post is now public"
|
||||
msgstr ""
|
||||
|
||||
#: [post]blog_remove
|
||||
msgid "Post removed from your blog"
|
||||
#: [post]public_no
|
||||
msgid "This post is now private"
|
||||
msgstr ""
|
||||
|
||||
#: [post]delete_title [post]delete
|
||||
|
@ -1409,6 +1411,10 @@ msgstr ""
|
|||
msgid "You are going to delete this post, please confirm your action"
|
||||
msgstr ""
|
||||
|
||||
#: [post]discover
|
||||
msgid "Discover more articles on the Groups page"
|
||||
msgstr ""
|
||||
|
||||
#: [post]comments_disabled
|
||||
msgid "Comments disabled"
|
||||
msgstr ""
|
||||
|
@ -1473,10 +1479,6 @@ msgstr ""
|
|||
msgid "This picture will be added to your gallery"
|
||||
msgstr ""
|
||||
|
||||
#: [post]embed_tip
|
||||
msgid "You can also use services like Imgur or Flickr to host your picture and paste the link here."
|
||||
msgstr ""
|
||||
|
||||
#: [publish]valid_url
|
||||
msgid "Please enter a valid url"
|
||||
msgstr ""
|
||||
|
@ -1489,6 +1491,10 @@ msgstr ""
|
|||
msgid "Please provide a title"
|
||||
msgstr ""
|
||||
|
||||
#: [publish]edit
|
||||
msgid "Edit post"
|
||||
msgstr ""
|
||||
|
||||
#: [publish]title
|
||||
msgid "Publish"
|
||||
msgstr ""
|
||||
|
@ -1879,6 +1885,10 @@ msgstr ""
|
|||
msgid "Room"
|
||||
msgstr ""
|
||||
|
||||
#: [page]tag
|
||||
msgid "Tag"
|
||||
msgstr ""
|
||||
|
||||
#: [error]error
|
||||
msgid "Error: %s"
|
||||
msgstr ""
|
||||
|
|
|
@ -95,7 +95,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: movim\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-10-06 23:33+0200\n"
|
||||
"POT-Creation-Date: 2015-12-29 13:42+0200\n"
|
||||
"PO-Revision-Date: 2014-05-23 12:58+0000\n"
|
||||
"Last-Translator: Guruvai Oronno Bangalee <guruvai.morpheus@yandex.com>\n"
|
||||
"Language-Team: Bengali <bn@li.org>\n"
|
||||
|
@ -207,6 +207,10 @@ msgstr ""
|
|||
msgid "Loading"
|
||||
msgstr ""
|
||||
|
||||
#: [create]placeholder
|
||||
msgid "…and start playing"
|
||||
msgstr ""
|
||||
|
||||
#: [error]not_acceptable
|
||||
msgid "Not Acceptable"
|
||||
msgstr ""
|
||||
|
@ -260,7 +264,7 @@ msgid "Port"
|
|||
msgstr ""
|
||||
|
||||
#: [db]name
|
||||
msgid "Database sName"
|
||||
msgid "Database Name"
|
||||
msgstr ""
|
||||
|
||||
#: [admin]general
|
||||
|
@ -369,14 +373,6 @@ msgstr ""
|
|||
msgid "Syslog and files"
|
||||
msgstr ""
|
||||
|
||||
#: [rewrite]title
|
||||
msgid "URL Rewriting"
|
||||
msgstr ""
|
||||
|
||||
#: [rewrite]info
|
||||
msgid "The URL Rewriting can be enabled"
|
||||
msgstr ""
|
||||
|
||||
#: [admin]compatibility
|
||||
msgid "General Overview"
|
||||
msgstr ""
|
||||
|
@ -409,10 +405,6 @@ msgstr ""
|
|||
msgid "Read and write rights for the webserver in Movims root directory"
|
||||
msgstr ""
|
||||
|
||||
#: [compatibility]rewrite
|
||||
msgid "The URL Rewriting support is currently disabled"
|
||||
msgstr ""
|
||||
|
||||
#: [compatibility]db
|
||||
msgid "The database need to be updated, go to the database panel to fix this"
|
||||
msgstr ""
|
||||
|
@ -497,6 +489,10 @@ msgstr ""
|
|||
msgid "Avatar Not Updated"
|
||||
msgstr ""
|
||||
|
||||
#: [avatar]missing
|
||||
msgid "No avatar defined yet"
|
||||
msgstr ""
|
||||
|
||||
#: [blog]title [feed]title
|
||||
msgid "%s's feed"
|
||||
msgstr ""
|
||||
|
@ -505,6 +501,10 @@ msgstr ""
|
|||
msgid "This user has not posted anything right now"
|
||||
msgstr ""
|
||||
|
||||
#: [blog]private
|
||||
msgid "This content is private, please login to see it"
|
||||
msgstr ""
|
||||
|
||||
#: [title]conferences
|
||||
msgid "Conferences"
|
||||
msgstr ""
|
||||
|
@ -587,6 +587,10 @@ msgstr ""
|
|||
msgid "Contact gone"
|
||||
msgstr ""
|
||||
|
||||
#: [message]history
|
||||
msgid "%s messages retrieved"
|
||||
msgstr ""
|
||||
|
||||
#: [chat]attention
|
||||
msgid "%s needs your attention"
|
||||
msgstr ""
|
||||
|
@ -644,7 +648,7 @@ msgid "No chats yet..."
|
|||
msgstr ""
|
||||
|
||||
#: [chats]empty
|
||||
msgid "Open a new conversation by clicking on the %s button bellow or visit the %s Contacts%s page."
|
||||
msgid "Open a new conversation by clicking on the %s button bellow or visit the %sContacts%s page."
|
||||
msgstr ""
|
||||
|
||||
#: [chats]add
|
||||
|
@ -699,8 +703,12 @@ msgstr ""
|
|||
msgid "Appearence"
|
||||
msgstr ""
|
||||
|
||||
#: [config]info
|
||||
msgid "This configuration is shared wherever you are connected"
|
||||
#: [config]not_valid
|
||||
msgid "Configuration invalid"
|
||||
msgstr ""
|
||||
|
||||
#: [config]advanced
|
||||
msgid "Advanced Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: [notifications]message
|
||||
|
@ -711,6 +719,10 @@ msgstr ""
|
|||
msgid "Use desktop notifications"
|
||||
msgstr ""
|
||||
|
||||
#: [cssurl]label
|
||||
msgid "Custom CSS URL for your blog"
|
||||
msgstr ""
|
||||
|
||||
#: [general]legend [general]general_title
|
||||
msgid "General Informations"
|
||||
msgstr ""
|
||||
|
@ -823,6 +835,10 @@ msgstr ""
|
|||
msgid "Last public post"
|
||||
msgstr ""
|
||||
|
||||
#: [blog]visit
|
||||
msgid "Visit the blog to see all the public posts"
|
||||
msgstr ""
|
||||
|
||||
#: [subscription]to
|
||||
msgid "You can see this contact status"
|
||||
msgstr ""
|
||||
|
@ -1007,18 +1023,6 @@ msgstr ""
|
|||
msgid "This server doesn't exists"
|
||||
msgstr ""
|
||||
|
||||
#: [menu]all
|
||||
msgid "All"
|
||||
msgstr ""
|
||||
|
||||
#: [menu]refresh
|
||||
msgid "Refresh all the streams"
|
||||
msgstr ""
|
||||
|
||||
#: [menu]me
|
||||
msgid "My publications"
|
||||
msgstr ""
|
||||
|
||||
#: [roster]search
|
||||
msgid "Search in your contacts"
|
||||
msgstr ""
|
||||
|
@ -1124,7 +1128,7 @@ msgid "Chat with the team ?"
|
|||
msgstr ""
|
||||
|
||||
#: [chatroom]button
|
||||
msgid "Join the Chatroom"
|
||||
msgid "Add the chatroom"
|
||||
msgstr ""
|
||||
|
||||
#: [init]location
|
||||
|
@ -1216,10 +1220,6 @@ msgstr ""
|
|||
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 ""
|
||||
|
@ -1302,13 +1302,17 @@ msgid "Welcome on your news feed, here you will see all the posts published by y
|
|||
msgstr ""
|
||||
|
||||
#: [menu]refresh
|
||||
msgid "Refreshing all the streams"
|
||||
msgid "Refresh all the streams"
|
||||
msgstr ""
|
||||
|
||||
#: [menu]public
|
||||
msgid "This post is public"
|
||||
msgstr ""
|
||||
|
||||
#: [menu]all
|
||||
msgid "All"
|
||||
msgstr ""
|
||||
|
||||
#: [affiliations]title
|
||||
msgid "Manage your members"
|
||||
msgstr ""
|
||||
|
@ -1345,10 +1349,6 @@ msgstr ""
|
|||
msgid "%s wants to talk with you"
|
||||
msgstr ""
|
||||
|
||||
#: [notifs]manage
|
||||
msgid "Manage"
|
||||
msgstr ""
|
||||
|
||||
#: [post]news_feed
|
||||
msgid "News Feed"
|
||||
msgstr ""
|
||||
|
@ -1393,12 +1393,12 @@ msgstr ""
|
|||
msgid "Publish this post publicly?"
|
||||
msgstr ""
|
||||
|
||||
#: [post]blog_add
|
||||
msgid "Post published on your blog"
|
||||
#: [post]public_yes
|
||||
msgid "This post is now public"
|
||||
msgstr ""
|
||||
|
||||
#: [post]blog_remove
|
||||
msgid "Post removed from your blog"
|
||||
#: [post]public_no
|
||||
msgid "This post is now private"
|
||||
msgstr ""
|
||||
|
||||
#: [post]delete_title [post]delete
|
||||
|
@ -1409,6 +1409,10 @@ msgstr ""
|
|||
msgid "You are going to delete this post, please confirm your action"
|
||||
msgstr ""
|
||||
|
||||
#: [post]discover
|
||||
msgid "Discover more articles on the Groups page"
|
||||
msgstr ""
|
||||
|
||||
#: [post]comments_disabled
|
||||
msgid "Comments disabled"
|
||||
msgstr ""
|
||||
|
@ -1473,10 +1477,6 @@ msgstr ""
|
|||
msgid "This picture will be added to your gallery"
|
||||
msgstr ""
|
||||
|
||||
#: [post]embed_tip
|
||||
msgid "You can also use services like Imgur or Flickr to host your picture and paste the link here."
|
||||
msgstr ""
|
||||
|
||||
#: [publish]valid_url
|
||||
msgid "Please enter a valid url"
|
||||
msgstr ""
|
||||
|
@ -1489,6 +1489,10 @@ msgstr ""
|
|||
msgid "Please provide a title"
|
||||
msgstr ""
|
||||
|
||||
#: [publish]edit
|
||||
msgid "Edit post"
|
||||
msgstr ""
|
||||
|
||||
#: [publish]title
|
||||
msgid "Publish"
|
||||
msgstr ""
|
||||
|
@ -1879,6 +1883,10 @@ msgstr ""
|
|||
msgid "Room"
|
||||
msgstr ""
|
||||
|
||||
#: [page]tag
|
||||
msgid "Tag"
|
||||
msgstr ""
|
||||
|
||||
#: [error]error
|
||||
msgid "Error: %s"
|
||||
msgstr ""
|
||||
|
|
|
@ -93,7 +93,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Movim\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-10-06 23:33+0200\n"
|
||||
"POT-Creation-Date: 2015-12-29 13:42+0200\n"
|
||||
"PO-Revision-Date: 2013-07-27 17:06+0000\n"
|
||||
"Last-Translator: Gwenn M <Unknown>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
@ -208,6 +208,10 @@ msgstr ""
|
|||
msgid "Loading"
|
||||
msgstr ""
|
||||
|
||||
#: [create]placeholder
|
||||
msgid "…and start playing"
|
||||
msgstr ""
|
||||
|
||||
#: [error]not_acceptable
|
||||
msgid "Not Acceptable"
|
||||
msgstr ""
|
||||
|
@ -261,7 +265,7 @@ msgid "Port"
|
|||
msgstr ""
|
||||
|
||||
#: [db]name
|
||||
msgid "Database sName"
|
||||
msgid "Database Name"
|
||||
msgstr ""
|
||||
|
||||
#: [admin]general
|
||||
|
@ -372,14 +376,6 @@ msgstr ""
|
|||
msgid "Syslog and files"
|
||||
msgstr ""
|
||||
|
||||
#: [rewrite]title
|
||||
msgid "URL Rewriting"
|
||||
msgstr ""
|
||||
|
||||
#: [rewrite]info
|
||||
msgid "The URL Rewriting can be enabled"
|
||||
msgstr ""
|
||||
|
||||
#: [admin]compatibility
|
||||
msgid "General Overview"
|
||||
msgstr ""
|
||||
|
@ -412,10 +408,6 @@ msgstr ""
|
|||
msgid "Read and write rights for the webserver in Movims root directory"
|
||||
msgstr ""
|
||||
|
||||
#: [compatibility]rewrite
|
||||
msgid "The URL Rewriting support is currently disabled"
|
||||
msgstr ""
|
||||
|
||||
#: [compatibility]db
|
||||
msgid "The database need to be updated, go to the database panel to fix this"
|
||||
msgstr ""
|
||||
|
@ -500,6 +492,10 @@ msgstr ""
|
|||
msgid "Avatar Not Updated"
|
||||
msgstr ""
|
||||
|
||||
#: [avatar]missing
|
||||
msgid "No avatar defined yet"
|
||||
msgstr ""
|
||||
|
||||
#: [blog]title [feed]title
|
||||
msgid "%s's feed"
|
||||
msgstr ""
|
||||
|
@ -508,6 +504,10 @@ msgstr ""
|
|||
msgid "This user has not posted anything right now"
|
||||
msgstr ""
|
||||
|
||||
#: [blog]private
|
||||
msgid "This content is private, please login to see it"
|
||||
msgstr ""
|
||||
|
||||
#: [title]conferences
|
||||
msgid "Conferences"
|
||||
msgstr ""
|
||||
|
@ -592,6 +592,10 @@ msgstr ""
|
|||
msgid "Contact gone"
|
||||
msgstr ""
|
||||
|
||||
#: [message]history
|
||||
msgid "%s messages retrieved"
|
||||
msgstr ""
|
||||
|
||||
#: [chat]attention
|
||||
msgid "%s needs your attention"
|
||||
msgstr ""
|
||||
|
@ -649,7 +653,7 @@ msgid "No chats yet..."
|
|||
msgstr ""
|
||||
|
||||
#: [chats]empty
|
||||
msgid "Open a new conversation by clicking on the %s button bellow or visit the %s Contacts%s page."
|
||||
msgid "Open a new conversation by clicking on the %s button bellow or visit the %sContacts%s page."
|
||||
msgstr ""
|
||||
|
||||
#: [chats]add
|
||||
|
@ -704,9 +708,15 @@ msgstr ""
|
|||
msgid "Appearence"
|
||||
msgstr ""
|
||||
|
||||
#: [config]info
|
||||
msgid "This configuration is shared wherever you are connected"
|
||||
msgstr ""
|
||||
#: [config]not_valid
|
||||
#, fuzzy
|
||||
msgid "Configuration invalid"
|
||||
msgstr "Kefluniadur"
|
||||
|
||||
#: [config]advanced
|
||||
#, fuzzy
|
||||
msgid "Advanced Configuration"
|
||||
msgstr "Kefluniadur"
|
||||
|
||||
#: [notifications]message
|
||||
msgid "Notify on incoming message"
|
||||
|
@ -716,6 +726,10 @@ msgstr ""
|
|||
msgid "Use desktop notifications"
|
||||
msgstr ""
|
||||
|
||||
#: [cssurl]label
|
||||
msgid "Custom CSS URL for your blog"
|
||||
msgstr ""
|
||||
|
||||
#: [general]legend [general]general_title
|
||||
msgid "General Informations"
|
||||
msgstr "Titouroù hollek"
|
||||
|
@ -828,6 +842,10 @@ msgstr ""
|
|||
msgid "Last public post"
|
||||
msgstr ""
|
||||
|
||||
#: [blog]visit
|
||||
msgid "Visit the blog to see all the public posts"
|
||||
msgstr ""
|
||||
|
||||
#: [subscription]to
|
||||
#, fuzzy
|
||||
msgid "You can see this contact status"
|
||||
|
@ -1013,18 +1031,6 @@ msgstr ""
|
|||
msgid "This server doesn't exists"
|
||||
msgstr ""
|
||||
|
||||
#: [menu]all
|
||||
msgid "All"
|
||||
msgstr ""
|
||||
|
||||
#: [menu]refresh
|
||||
msgid "Refresh all the streams"
|
||||
msgstr ""
|
||||
|
||||
#: [menu]me
|
||||
msgid "My publications"
|
||||
msgstr ""
|
||||
|
||||
#: [roster]search
|
||||
msgid "Search in your contacts"
|
||||
msgstr ""
|
||||
|
@ -1130,7 +1136,7 @@ msgid "Chat with the team ?"
|
|||
msgstr ""
|
||||
|
||||
#: [chatroom]button
|
||||
msgid "Join the Chatroom"
|
||||
msgid "Add the chatroom"
|
||||
msgstr ""
|
||||
|
||||
#: [init]location
|
||||
|
@ -1222,10 +1228,6 @@ msgstr ""
|
|||
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 ""
|
||||
|
@ -1308,13 +1310,17 @@ msgid "Welcome on your news feed, here you will see all the posts published by y
|
|||
msgstr ""
|
||||
|
||||
#: [menu]refresh
|
||||
msgid "Refreshing all the streams"
|
||||
msgid "Refresh all the streams"
|
||||
msgstr ""
|
||||
|
||||
#: [menu]public
|
||||
msgid "This post is public"
|
||||
msgstr ""
|
||||
|
||||
#: [menu]all
|
||||
msgid "All"
|
||||
msgstr ""
|
||||
|
||||
#: [affiliations]title
|
||||
msgid "Manage your members"
|
||||
msgstr ""
|
||||
|
@ -1351,10 +1357,6 @@ msgstr ""
|
|||
msgid "%s wants to talk with you"
|
||||
msgstr ""
|
||||
|
||||
#: [notifs]manage
|
||||
msgid "Manage"
|
||||
msgstr ""
|
||||
|
||||
#: [post]news_feed
|
||||
msgid "News Feed"
|
||||
msgstr ""
|
||||
|
@ -1399,12 +1401,12 @@ msgstr ""
|
|||
msgid "Publish this post publicly?"
|
||||
msgstr ""
|
||||
|
||||
#: [post]blog_add
|
||||
msgid "Post published on your blog"
|
||||
#: [post]public_yes
|
||||
msgid "This post is now public"
|
||||
msgstr ""
|
||||
|
||||
#: [post]blog_remove
|
||||
msgid "Post removed from your blog"
|
||||
#: [post]public_no
|
||||
msgid "This post is now private"
|
||||
msgstr ""
|
||||
|
||||
#: [post]delete_title [post]delete
|
||||
|
@ -1415,6 +1417,10 @@ msgstr ""
|
|||
msgid "You are going to delete this post, please confirm your action"
|
||||
msgstr ""
|
||||
|
||||
#: [post]discover
|
||||
msgid "Discover more articles on the Groups page"
|
||||
msgstr ""
|
||||
|
||||
#: [post]comments_disabled
|
||||
msgid "Comments disabled"
|
||||
msgstr ""
|
||||
|
@ -1479,10 +1485,6 @@ msgstr ""
|
|||
msgid "This picture will be added to your gallery"
|
||||
msgstr ""
|
||||
|
||||
#: [post]embed_tip
|
||||
msgid "You can also use services like Imgur or Flickr to host your picture and paste the link here."
|
||||
msgstr ""
|
||||
|
||||
#: [publish]valid_url
|
||||
msgid "Please enter a valid url"
|
||||
msgstr ""
|
||||
|
@ -1495,6 +1497,10 @@ msgstr ""
|
|||
msgid "Please provide a title"
|
||||
msgstr ""
|
||||
|
||||
#: [publish]edit
|
||||
msgid "Edit post"
|
||||
msgstr ""
|
||||
|
||||
#: [publish]title
|
||||
msgid "Publish"
|
||||
msgstr ""
|
||||
|
@ -1887,6 +1893,10 @@ msgstr ""
|
|||
msgid "Room"
|
||||
msgstr ""
|
||||
|
||||
#: [page]tag
|
||||
msgid "Tag"
|
||||
msgstr ""
|
||||
|
||||
#: [error]error
|
||||
msgid "Error: %s"
|
||||
msgstr "Kudenn: %s"
|
||||
|
@ -2744,6 +2754,9 @@ msgstr ""
|
|||
msgid "Type here"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Your web browser is too old to use with Movim."
|
||||
#~ msgstr "Ho merdeer a zo re gozh evit implij Movim"
|
||||
|
||||
#, fuzzy
|
||||
#~ msgid "Active contacts"
|
||||
#~ msgstr "Oberennoù"
|
||||
|
|
|
@ -92,7 +92,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: movim\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-10-06 23:33+0200\n"
|
||||
"POT-Creation-Date: 2015-12-29 13:42+0200\n"
|
||||
"PO-Revision-Date: 2015-10-06 21:34+0000\n"
|
||||
"Last-Translator: Jaussoin Timothée <edhelas@movim.eu>\n"
|
||||
"Language-Team: Danish (http://www.transifex.com/movim/movim/language/da/)\n"
|
||||
|
@ -204,6 +204,10 @@ msgstr ""
|
|||
msgid "Loading"
|
||||
msgstr ""
|
||||
|
||||
#: [create]placeholder
|
||||
msgid "…and start playing"
|
||||
msgstr ""
|
||||
|
||||
#: [error]not_acceptable
|
||||
msgid "Not Acceptable"
|
||||
msgstr ""
|
||||
|
@ -257,8 +261,9 @@ msgid "Port"
|
|||
msgstr "Port"
|
||||
|
||||
#: [db]name
|
||||
msgid "Database sName"
|
||||
msgstr ""
|
||||
#, fuzzy
|
||||
msgid "Database Name"
|
||||
msgstr "Databasetype"
|
||||
|
||||
#: [admin]general
|
||||
msgid "General Settings"
|
||||
|
@ -366,14 +371,6 @@ msgstr "Syslog"
|
|||
msgid "Syslog and files"
|
||||
msgstr "Syslog og filer"
|
||||
|
||||
#: [rewrite]title
|
||||
msgid "URL Rewriting"
|
||||
msgstr "URL omskrivning"
|
||||
|
||||
#: [rewrite]info
|
||||
msgid "The URL Rewriting can be enabled"
|
||||
msgstr "URL omskrivning kan slås til"
|
||||
|
||||
#: [admin]compatibility
|
||||
msgid "General Overview"
|
||||
msgstr "Generel oversigt"
|
||||
|
@ -406,10 +403,6 @@ msgstr ""
|
|||
msgid "Read and write rights for the webserver in Movims root directory"
|
||||
msgstr ""
|
||||
|
||||
#: [compatibility]rewrite
|
||||
msgid "The URL Rewriting support is currently disabled"
|
||||
msgstr "URL omskrivnings understøttelse er i øjeblikket slået fra"
|
||||
|
||||
#: [compatibility]db
|
||||
msgid "The database need to be updated, go to the database panel to fix this"
|
||||
msgstr ""
|
||||
|
@ -494,6 +487,10 @@ msgstr "Avatar opdateret"
|
|||
msgid "Avatar Not Updated"
|
||||
msgstr "Avatar ikke opdateret"
|
||||
|
||||
#: [avatar]missing
|
||||
msgid "No avatar defined yet"
|
||||
msgstr ""
|
||||
|
||||
#: [blog]title [feed]title
|
||||
msgid "%s's feed"
|
||||
msgstr "%s's feed"
|
||||
|
@ -502,6 +499,10 @@ msgstr "%s's feed"
|
|||
msgid "This user has not posted anything right now"
|
||||
msgstr "Denne bruger har ikke postet noget endnu"
|
||||
|
||||
#: [blog]private
|
||||
msgid "This content is private, please login to see it"
|
||||
msgstr ""
|
||||
|
||||
#: [title]conferences
|
||||
msgid "Conferences"
|
||||
msgstr "Konferencer"
|
||||
|
@ -584,6 +585,10 @@ msgstr "Sat i pause..."
|
|||
msgid "Contact gone"
|
||||
msgstr "Kontakt er væk"
|
||||
|
||||
#: [message]history
|
||||
msgid "%s messages retrieved"
|
||||
msgstr ""
|
||||
|
||||
#: [chat]attention
|
||||
msgid "%s needs your attention"
|
||||
msgstr "%s har brug for din opmærksomhed"
|
||||
|
@ -641,7 +646,7 @@ msgid "No chats yet..."
|
|||
msgstr ""
|
||||
|
||||
#: [chats]empty
|
||||
msgid "Open a new conversation by clicking on the %s button bellow or visit the %s Contacts%s page."
|
||||
msgid "Open a new conversation by clicking on the %s button bellow or visit the %sContacts%s page."
|
||||
msgstr ""
|
||||
|
||||
#: [chats]add
|
||||
|
@ -696,9 +701,15 @@ msgstr "Skjul offline kontakter"
|
|||
msgid "Appearence"
|
||||
msgstr "Udseende"
|
||||
|
||||
#: [config]info
|
||||
msgid "This configuration is shared wherever you are connected"
|
||||
msgstr ""
|
||||
#: [config]not_valid
|
||||
#, fuzzy
|
||||
msgid "Configuration invalid"
|
||||
msgstr "Opsætning gemt"
|
||||
|
||||
#: [config]advanced
|
||||
#, fuzzy
|
||||
msgid "Advanced Configuration"
|
||||
msgstr "Opsætning"
|
||||
|
||||
#: [notifications]message
|
||||
msgid "Notify on incoming message"
|
||||
|
@ -708,6 +719,10 @@ msgstr "Giv besked om indkomne beskeder"
|
|||
msgid "Use desktop notifications"
|
||||
msgstr "Brug skrivebordsmeddelelser"
|
||||
|
||||
#: [cssurl]label
|
||||
msgid "Custom CSS URL for your blog"
|
||||
msgstr ""
|
||||
|
||||
#: [general]legend [general]general_title
|
||||
msgid "General Informations"
|
||||
msgstr "Generelle informationer"
|
||||
|
@ -820,6 +835,10 @@ msgstr "%s år"
|
|||
msgid "Last public post"
|
||||
msgstr "Sidste offentige indlæg"
|
||||
|
||||
#: [blog]visit
|
||||
msgid "Visit the blog to see all the public posts"
|
||||
msgstr ""
|
||||
|
||||
#: [subscription]to
|
||||
msgid "You can see this contact status"
|
||||
msgstr ""
|
||||
|
@ -1004,18 +1023,6 @@ msgstr "%s indlæg"
|
|||
msgid "This server doesn't exists"
|
||||
msgstr ""
|
||||
|
||||
#: [menu]all
|
||||
msgid "All"
|
||||
msgstr "Alle"
|
||||
|
||||
#: [menu]refresh
|
||||
msgid "Refresh all the streams"
|
||||
msgstr "Genopfrisk alle strømmene"
|
||||
|
||||
#: [menu]me
|
||||
msgid "My publications"
|
||||
msgstr ""
|
||||
|
||||
#: [roster]search
|
||||
msgid "Search in your contacts"
|
||||
msgstr ""
|
||||
|
@ -1121,8 +1128,9 @@ msgid "Chat with the team ?"
|
|||
msgstr "Chat med teamet ?"
|
||||
|
||||
#: [chatroom]button
|
||||
msgid "Join the Chatroom"
|
||||
msgstr "Gå ind i chatrummet"
|
||||
#, fuzzy
|
||||
msgid "Add the chatroom"
|
||||
msgstr "Tilføj et chatrum"
|
||||
|
||||
#: [init]location
|
||||
msgid "Location node created"
|
||||
|
@ -1213,10 +1221,6 @@ msgstr ""
|
|||
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)"
|
||||
|
@ -1299,13 +1303,17 @@ msgid "Welcome on your news feed, here you will see all the posts published by y
|
|||
msgstr ""
|
||||
|
||||
#: [menu]refresh
|
||||
msgid "Refreshing all the streams"
|
||||
msgstr "Genopfriksker alle strømmende"
|
||||
msgid "Refresh all the streams"
|
||||
msgstr "Genopfrisk alle strømmene"
|
||||
|
||||
#: [menu]public
|
||||
msgid "This post is public"
|
||||
msgstr "Dette indlæg er offentligt"
|
||||
|
||||
#: [menu]all
|
||||
msgid "All"
|
||||
msgstr "Alle"
|
||||
|
||||
#: [affiliations]title
|
||||
msgid "Manage your members"
|
||||
msgstr "Administrér dine medlemmer"
|
||||
|
@ -1342,10 +1350,6 @@ msgstr "Ventende invitationer"
|
|||
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"
|
||||
|
@ -1390,13 +1394,15 @@ msgstr ""
|
|||
msgid "Publish this post publicly?"
|
||||
msgstr ""
|
||||
|
||||
#: [post]blog_add
|
||||
msgid "Post published on your blog"
|
||||
msgstr "Indlæg udgivet på din blog"
|
||||
#: [post]public_yes
|
||||
#, fuzzy
|
||||
msgid "This post is now public"
|
||||
msgstr "Dette indlæg er offentligt"
|
||||
|
||||
#: [post]blog_remove
|
||||
msgid "Post removed from your blog"
|
||||
msgstr "Indlæg fjernet fra din blog"
|
||||
#: [post]public_no
|
||||
#, fuzzy
|
||||
msgid "This post is now private"
|
||||
msgstr "Dette indlæg er offentligt"
|
||||
|
||||
#: [post]delete_title [post]delete
|
||||
msgid "Delete this post"
|
||||
|
@ -1406,6 +1412,11 @@ msgstr "Slet dette indlæg"
|
|||
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]discover
|
||||
#, fuzzy
|
||||
msgid "Discover more articles on the Groups page"
|
||||
msgstr "Læs alle disse artikler på nyhedssiden"
|
||||
|
||||
#: [post]comments_disabled
|
||||
msgid "Comments disabled"
|
||||
msgstr "Kommentarer slået fra"
|
||||
|
@ -1470,10 +1481,6 @@ msgstr "Tags"
|
|||
msgid "This picture will be added to your gallery"
|
||||
msgstr "Dette billede vil blive tilføjet til dit galleri"
|
||||
|
||||
#: [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."
|
||||
|
||||
#: [publish]valid_url
|
||||
msgid "Please enter a valid url"
|
||||
msgstr "Skriv venligst en gyldig url"
|
||||
|
@ -1486,6 +1493,11 @@ msgstr "Intet indhold at forhåndsvise"
|
|||
msgid "Please provide a title"
|
||||
msgstr ""
|
||||
|
||||
#: [publish]edit
|
||||
#, fuzzy
|
||||
msgid "Edit post"
|
||||
msgstr "Redigér"
|
||||
|
||||
#: [publish]title
|
||||
msgid "Publish"
|
||||
msgstr ""
|
||||
|
@ -1876,6 +1888,11 @@ msgstr "Del"
|
|||
msgid "Room"
|
||||
msgstr ""
|
||||
|
||||
#: [page]tag
|
||||
#, fuzzy
|
||||
msgid "Tag"
|
||||
msgstr "Tags"
|
||||
|
||||
#: [error]error
|
||||
msgid "Error: %s"
|
||||
msgstr "Fejl: '%s'"
|
||||
|
@ -2729,3 +2746,33 @@ msgstr "API'en kan ikke nåes, prøv igen senere"
|
|||
#: [field]type_here
|
||||
msgid "Type here"
|
||||
msgstr "Skriv her"
|
||||
|
||||
#~ msgid "URL Rewriting"
|
||||
#~ msgstr "URL omskrivning"
|
||||
|
||||
#~ msgid "The URL Rewriting can be enabled"
|
||||
#~ msgstr "URL omskrivning kan slås til"
|
||||
|
||||
#~ msgid "The URL Rewriting support is currently disabled"
|
||||
#~ msgstr "URL omskrivnings understøttelse er i øjeblikket slået fra"
|
||||
|
||||
#~ msgid "Join the Chatroom"
|
||||
#~ msgstr "Gå ind i chatrummet"
|
||||
|
||||
#~ msgid "Your web browser is too old to use with Movim."
|
||||
#~ msgstr "Din internet browser er for gammel til at bruge Movim."
|
||||
|
||||
#~ msgid "Refreshing all the streams"
|
||||
#~ msgstr "Genopfriksker alle strømmende"
|
||||
|
||||
#~ msgid "Manage"
|
||||
#~ msgstr "Administrér"
|
||||
|
||||
#~ msgid "Post published on your blog"
|
||||
#~ msgstr "Indlæg udgivet på din blog"
|
||||
|
||||
#~ msgid "Post removed from your blog"
|
||||
#~ msgstr "Indlæg fjernet fra din blog"
|
||||
|
||||
#~ 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."
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
#
|
||||
# Translators:
|
||||
# Lazalatin <chris.parnitzke@googlemail.com>, 2015
|
||||
# Johann Philipp Strathausen <strathausen@gmail.com>, 2015
|
||||
# Maurice Breznik <valentingehrke@gmx.de>, 2015
|
||||
# No <quetschwalze@punkbeer.me>, 2015
|
||||
|
@ -97,8 +98,8 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: movim\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-10-06 23:33+0200\n"
|
||||
"PO-Revision-Date: 2015-10-06 21:34+0000\n"
|
||||
"POT-Creation-Date: 2015-12-29 13:42+0200\n"
|
||||
"PO-Revision-Date: 2015-12-29 12:43+0000\n"
|
||||
"Last-Translator: Jaussoin Timothée <edhelas@movim.eu>\n"
|
||||
"Language-Team: German (http://www.transifex.com/movim/movim/language/de/)\n"
|
||||
"Language: de\n"
|
||||
|
@ -122,7 +123,7 @@ msgstr "Übersetzer"
|
|||
|
||||
#: [about]translators_text
|
||||
msgid "Thanks to all the translators"
|
||||
msgstr ""
|
||||
msgstr "Danke an alle Übersetzer"
|
||||
|
||||
#: [about]software
|
||||
msgid "Software"
|
||||
|
@ -187,7 +188,7 @@ msgstr "Sind Sie sicher, dass Sie es löschen wollen?"
|
|||
|
||||
#: [account]gateway_title
|
||||
msgid "Gateway"
|
||||
msgstr "Gateway"
|
||||
msgstr "Zugang"
|
||||
|
||||
#: [create]title [subscribe]title
|
||||
msgid "Create a new account"
|
||||
|
@ -207,7 +208,11 @@ msgstr "Ihr Konto wurde erfolgreich eingerichtet"
|
|||
|
||||
#: [create]loading
|
||||
msgid "Loading"
|
||||
msgstr "Lade"
|
||||
msgstr "Wird geladen"
|
||||
|
||||
#: [create]placeholder
|
||||
msgid "…and start playing"
|
||||
msgstr ""
|
||||
|
||||
#: [error]not_acceptable
|
||||
msgid "Not Acceptable"
|
||||
|
@ -262,8 +267,8 @@ msgid "Port"
|
|||
msgstr "Anschluss (Port)"
|
||||
|
||||
#: [db]name
|
||||
msgid "Database sName"
|
||||
msgstr "Datenbank sName"
|
||||
msgid "Database Name"
|
||||
msgstr ""
|
||||
|
||||
#: [admin]general
|
||||
msgid "General Settings"
|
||||
|
@ -371,14 +376,6 @@ msgstr "Systemprotokoll"
|
|||
msgid "Syslog and files"
|
||||
msgstr "Systemprotokoll und Dateien"
|
||||
|
||||
#: [rewrite]title
|
||||
msgid "URL Rewriting"
|
||||
msgstr "Adressumschreiben"
|
||||
|
||||
#: [rewrite]info
|
||||
msgid "The URL Rewriting can be enabled"
|
||||
msgstr "Adressumschreiben kann aktiviert werden"
|
||||
|
||||
#: [admin]compatibility
|
||||
msgid "General Overview"
|
||||
msgstr "Allgemeiner Überblick"
|
||||
|
@ -389,7 +386,7 @@ msgstr "Movim hat Probleme oder Dinge gefunden, die repariert oder verbessert we
|
|||
|
||||
#: [compatibility]php1
|
||||
msgid "Update your PHP-Version: %s"
|
||||
msgstr "Bitte aktualisieren Sie Ihre PHP-Version : %s"
|
||||
msgstr "Bitte aktualisieren Sie Ihre PHP-Version: %s"
|
||||
|
||||
#: [compatibility]php2
|
||||
msgid "Required: 5.3.0"
|
||||
|
@ -411,10 +408,6 @@ msgstr "Die php5-gd-Bibliothek installieren"
|
|||
msgid "Read and write rights for the webserver in Movims root directory"
|
||||
msgstr "Lese- und Schreibrechte für den Webserver im Wurzelverzeichnis von Movim"
|
||||
|
||||
#: [compatibility]rewrite
|
||||
msgid "The URL Rewriting support is currently disabled"
|
||||
msgstr "Das Adressumschreiben ist derzeit deaktiviert"
|
||||
|
||||
#: [compatibility]db
|
||||
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."
|
||||
|
@ -425,7 +418,7 @@ msgstr "WebSocket-Verbindung fehlgeschlagen. Überprüfen Sie ob der Movim Serve
|
|||
|
||||
#: [compatibility]xmpp_websocket
|
||||
msgid "XMPP Websocket connection error, please check the validity of the URL given in the General Configuration"
|
||||
msgstr "XMPP Websocket-Verbindung fehlgeschlagen. Bitte überprüfen Sie, ob die URL in den allgemeinen Einstellungen korrekt ist."
|
||||
msgstr "XMPP-Websocket-Verbindung fehlgeschlagen. Bitte überprüfen Sie, ob die Adresse in den allgemeinen Einstellungen korrekt ist."
|
||||
|
||||
#: [schema]browser
|
||||
msgid "Browser"
|
||||
|
@ -499,6 +492,10 @@ msgstr "Benutzerbild aktualisiert"
|
|||
msgid "Avatar Not Updated"
|
||||
msgstr "Benutzerbild nicht aktualisiert"
|
||||
|
||||
#: [avatar]missing
|
||||
msgid "No avatar defined yet"
|
||||
msgstr ""
|
||||
|
||||
#: [blog]title [feed]title
|
||||
msgid "%s's feed"
|
||||
msgstr "%ss Datenstrom"
|
||||
|
@ -507,6 +504,10 @@ msgstr "%ss Datenstrom"
|
|||
msgid "This user has not posted anything right now"
|
||||
msgstr "Dieser Benutzer hat noch nichts veröffentlicht"
|
||||
|
||||
#: [blog]private
|
||||
msgid "This content is private, please login to see it"
|
||||
msgstr ""
|
||||
|
||||
#: [title]conferences
|
||||
msgid "Conferences"
|
||||
msgstr "Chaträume"
|
||||
|
@ -589,6 +590,10 @@ msgstr "Angehalten …"
|
|||
msgid "Contact gone"
|
||||
msgstr "Kontakt verschwunden"
|
||||
|
||||
#: [message]history
|
||||
msgid "%s messages retrieved"
|
||||
msgstr ""
|
||||
|
||||
#: [chat]attention
|
||||
msgid "%s needs your attention"
|
||||
msgstr "%s braucht Ihre Aufmerksamkeit"
|
||||
|
@ -646,7 +651,7 @@ msgid "No chats yet..."
|
|||
msgstr "Noch keine Unterhaltungen …"
|
||||
|
||||
#: [chats]empty
|
||||
msgid "Open a new conversation by clicking on the %s button bellow or visit the %s Contacts%s page."
|
||||
msgid "Open a new conversation by clicking on the %s button bellow or visit the %sContacts%s page."
|
||||
msgstr ""
|
||||
|
||||
#: [chats]add
|
||||
|
@ -701,9 +706,13 @@ msgstr "Abgemeldete Kontakte ausblenden"
|
|||
msgid "Appearence"
|
||||
msgstr "Erscheinungsbild"
|
||||
|
||||
#: [config]info
|
||||
msgid "This configuration is shared wherever you are connected"
|
||||
msgstr "Diese Konfiguration wird verwendet, wo auch immer Sie sich verbinden"
|
||||
#: [config]not_valid
|
||||
msgid "Configuration invalid"
|
||||
msgstr ""
|
||||
|
||||
#: [config]advanced
|
||||
msgid "Advanced Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: [notifications]message
|
||||
msgid "Notify on incoming message"
|
||||
|
@ -713,6 +722,10 @@ msgstr "Benachrichtigung über eingehende Nachricht"
|
|||
msgid "Use desktop notifications"
|
||||
msgstr "Schreibtischbenachrichtigung nutzen"
|
||||
|
||||
#: [cssurl]label
|
||||
msgid "Custom CSS URL for your blog"
|
||||
msgstr ""
|
||||
|
||||
#: [general]legend [general]general_title
|
||||
msgid "General Informations"
|
||||
msgstr "Allgemeine Angaben"
|
||||
|
@ -825,21 +838,25 @@ msgstr "%s Jahre"
|
|||
msgid "Last public post"
|
||||
msgstr "Letzer öffentlicher Beitrag"
|
||||
|
||||
#: [blog]visit
|
||||
msgid "Visit the blog to see all the public posts"
|
||||
msgstr ""
|
||||
|
||||
#: [subscription]to
|
||||
msgid "You can see this contact status"
|
||||
msgstr "Du kannst diesen Kontaktstatus sehen"
|
||||
msgstr "Sie können diesen Kontaktstatus sehen"
|
||||
|
||||
#: [subscription]to_button
|
||||
msgid "Share my status"
|
||||
msgstr "Teile meinen Status"
|
||||
msgstr "Meinen Status freigeben"
|
||||
|
||||
#: [subscription]to_text
|
||||
msgid "But this contact cannot see yours"
|
||||
msgstr "Aber dieser Kontakt kann deinen nicht sehen"
|
||||
msgstr "Aber dieser Kontakt kann Ihren nicht sehen"
|
||||
|
||||
#: [subscription]from
|
||||
msgid "You are not subscribed to this contact"
|
||||
msgstr "Sie haben diesen Kontakt nicht abonniert."
|
||||
msgstr "Sie haben diesen Kontakt nicht abonniert"
|
||||
|
||||
#: [subscription]from_button
|
||||
msgid "Ask to subscribe"
|
||||
|
@ -847,7 +864,7 @@ msgstr "Abonnement erfragen"
|
|||
|
||||
#: [subscription]from_text
|
||||
msgid "But this contact can still see if you are online"
|
||||
msgstr "Aber dieser Kontakt kann immer noch sehen, ob Sie online sind."
|
||||
msgstr "Aber dieser Kontakt kann immer noch sehen, ob Sie verbunden sind"
|
||||
|
||||
#: [subscription]nil
|
||||
msgid "No subscriptions"
|
||||
|
@ -959,11 +976,11 @@ msgstr "Kontaktnachricht"
|
|||
|
||||
#: [groups]empty_text1
|
||||
msgid "You don't have any group subscriptions yet."
|
||||
msgstr ""
|
||||
msgstr "Sie haben noch keine Gruppen abonniert."
|
||||
|
||||
#: [groups]empty_text2
|
||||
msgid "Here you will be able to manage all your subscriptions."
|
||||
msgstr ""
|
||||
msgstr "Hier können Sie Ihre Abonnements verwalten."
|
||||
|
||||
#: [groups]subscriptions
|
||||
msgid "My Subscriptions"
|
||||
|
@ -991,7 +1008,7 @@ msgstr "Gruppe erfolgreich gelöscht"
|
|||
|
||||
#: [groups]name_error
|
||||
msgid "Please provide a valid group name (4 characters minimum)"
|
||||
msgstr "Bitte geben Sie einen validen Gruppennamen ein (mindestens 4 Zeichen)"
|
||||
msgstr "Bitte geben Sie einen gültigen Gruppennamen ein (mindestens 4 Zeichen)"
|
||||
|
||||
#: [groups]no_creation
|
||||
msgid "You cannot create a new Group on this server"
|
||||
|
@ -1009,18 +1026,6 @@ msgstr "%s Beiträge"
|
|||
msgid "This server doesn't exists"
|
||||
msgstr "Dieser Server existiert nicht"
|
||||
|
||||
#: [menu]all
|
||||
msgid "All"
|
||||
msgstr "Alle"
|
||||
|
||||
#: [menu]refresh
|
||||
msgid "Refresh all the streams"
|
||||
msgstr "Alle Daten auffrischen"
|
||||
|
||||
#: [menu]me
|
||||
msgid "My publications"
|
||||
msgstr ""
|
||||
|
||||
#: [roster]search
|
||||
msgid "Search in your contacts"
|
||||
msgstr "Kontakte durchsuchen"
|
||||
|
@ -1051,7 +1056,7 @@ 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 "Erstelle ein Lesezeichen oder ziehe den folgenden Button in deine Toolbar und benutze ihn auf allen Seiten die du in Movim teilen möchtest."
|
||||
msgstr "Ein Lesezeichen erstellen oder den folgenden Knopf in Ihre Werkzeugleiste ziehen und ihn auf allen Seiten die Sie in Movim teilen möchten benutzen."
|
||||
|
||||
#: [hello]share_button
|
||||
msgid "Share on Movim"
|
||||
|
@ -1059,19 +1064,19 @@ msgstr "Auf Movim teilen"
|
|||
|
||||
#: [hello]enter_title
|
||||
msgid "Oh! Hello!"
|
||||
msgstr ""
|
||||
msgstr "Oh, hallo!"
|
||||
|
||||
#: [hello]enter_paragraph
|
||||
msgid "It seems that you're new there! Welcome on Movim!"
|
||||
msgstr ""
|
||||
msgstr "Scheint, als sind Sie neu hier. Willkommen bei Movim!"
|
||||
|
||||
#: [hello]menu_title
|
||||
msgid "Check the Menu"
|
||||
msgstr ""
|
||||
msgstr "Menü ansehen"
|
||||
|
||||
#: [hello]menu_paragraph
|
||||
msgid "All the main Movim features are accessible there. Don't hesitate to navigate through the pages to discover more!"
|
||||
msgstr ""
|
||||
msgstr "Alle wichtigen Funktionen von Movim können Sie hier erreichen. Zögern Sie nicht durch die Seiten zu navigieren, um mehr zu erfahren!"
|
||||
|
||||
#: [help]faq
|
||||
msgid "Frequently Asked Questions"
|
||||
|
@ -1126,8 +1131,8 @@ msgid "Chat with the team ?"
|
|||
msgstr "Mit dem Team sprechen?"
|
||||
|
||||
#: [chatroom]button
|
||||
msgid "Join the Chatroom"
|
||||
msgstr "Den Chatraum betreten"
|
||||
msgid "Add the chatroom"
|
||||
msgstr ""
|
||||
|
||||
#: [init]location
|
||||
msgid "Location node created"
|
||||
|
@ -1212,16 +1217,12 @@ msgstr "Das Benutzerkonto wurde erfolgreich angelegt."
|
|||
#: [error]xmpp_unauthorized
|
||||
msgctxt "[error]xmpp_unauthorized"
|
||||
msgid "Your XMPP server is unauthorized"
|
||||
msgstr "Ihr XMPP Server ist nicht authorisiert."
|
||||
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)"
|
||||
|
@ -1249,7 +1250,7 @@ msgstr "Ungültiges Passwortformat"
|
|||
#: [error]unauthorized
|
||||
msgctxt "[error]unauthorized"
|
||||
msgid "Your XMPP server is unauthorized"
|
||||
msgstr "Ihr XMPP-Server ist nicht authorisiert."
|
||||
msgstr "Ihr XMPP-Server ist nicht legitimiert"
|
||||
|
||||
#: [error]conflict
|
||||
msgid "A Movim session is already open on an other device"
|
||||
|
@ -1304,13 +1305,17 @@ msgid "Welcome on your news feed, here you will see all the posts published by y
|
|||
msgstr "Willkommen zu Ihren Neuigkeiten, hier können Sie alle Beiträge sehen, welche von Ihren Kontakten oder in Ihren abonnierten Gruppen veröffentlicht wurden."
|
||||
|
||||
#: [menu]refresh
|
||||
msgid "Refreshing all the streams"
|
||||
msgstr "Alle Daten werden aufgefrischt"
|
||||
msgid "Refresh all the streams"
|
||||
msgstr "Alle Daten auffrischen"
|
||||
|
||||
#: [menu]public
|
||||
msgid "This post is public"
|
||||
msgstr "Dieser Beitrag ist öffentlich"
|
||||
|
||||
#: [menu]all
|
||||
msgid "All"
|
||||
msgstr "Alle"
|
||||
|
||||
#: [affiliations]title
|
||||
msgid "Manage your members"
|
||||
msgstr "Mitglieder verwalten"
|
||||
|
@ -1347,10 +1352,6 @@ msgstr "Neue Einladungen"
|
|||
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"
|
||||
|
@ -1395,13 +1396,13 @@ msgstr "Profil %s ansehen"
|
|||
msgid "Publish this post publicly?"
|
||||
msgstr "Diesen Beitrag öffentlich zeigen?"
|
||||
|
||||
#: [post]blog_add
|
||||
msgid "Post published on your blog"
|
||||
msgstr "Beitrag in Ihrem Blog veröffentlicht"
|
||||
#: [post]public_yes
|
||||
msgid "This post is now public"
|
||||
msgstr ""
|
||||
|
||||
#: [post]blog_remove
|
||||
msgid "Post removed from your blog"
|
||||
msgstr "Beitrag von Ihrem Blog entfernt"
|
||||
#: [post]public_no
|
||||
msgid "This post is now private"
|
||||
msgstr ""
|
||||
|
||||
#: [post]delete_title [post]delete
|
||||
msgid "Delete this post"
|
||||
|
@ -1411,6 +1412,10 @@ msgstr "Diesen Beitrag löschen"
|
|||
msgid "You are going to delete this post, please confirm your action"
|
||||
msgstr "Sie sind dabei Ihren Beitrag zu löschen. Möchten Sie fortfahren?"
|
||||
|
||||
#: [post]discover
|
||||
msgid "Discover more articles on the Groups page"
|
||||
msgstr ""
|
||||
|
||||
#: [post]comments_disabled
|
||||
msgid "Comments disabled"
|
||||
msgstr "Kommentare deaktiviert"
|
||||
|
@ -1461,7 +1466,7 @@ msgstr "Markdown-Anleitung"
|
|||
|
||||
#: [post]content_text
|
||||
msgid "You can format your content using Markdown"
|
||||
msgstr ""
|
||||
msgstr "Sie können ihren Text mithilfe der Markdown-Sprache formatieren"
|
||||
|
||||
#: [post]link
|
||||
msgid "Link"
|
||||
|
@ -1475,10 +1480,6 @@ msgstr "Schlagwörter"
|
|||
msgid "This picture will be added to your gallery"
|
||||
msgstr "Dieses Bild wird zu Ihrer Galerie hinzugefügt."
|
||||
|
||||
#: [post]embed_tip
|
||||
msgid "You can also use services like Imgur or Flickr to host your picture and paste the link here."
|
||||
msgstr "Sie können Dienste, wie Imgur oder Flickr dazu benutzen, um Ihre Bilder hochzuladen und deren Link hier einzufügen."
|
||||
|
||||
#: [publish]valid_url
|
||||
msgid "Please enter a valid url"
|
||||
msgstr "Bitte eine gültige Adresse eingeben"
|
||||
|
@ -1489,6 +1490,10 @@ msgstr "Kein Inhalt zur Vorschau"
|
|||
|
||||
#: [publish]no_title
|
||||
msgid "Please provide a title"
|
||||
msgstr "Bitte einen Titel angeben"
|
||||
|
||||
#: [publish]edit
|
||||
msgid "Edit post"
|
||||
msgstr ""
|
||||
|
||||
#: [publish]title
|
||||
|
@ -1505,15 +1510,15 @@ msgstr "Sie können in dieser Gruppe keine Beiträge veröffentlichen."
|
|||
|
||||
#: [publish]form_filled
|
||||
msgid "Some fields have been filled in. Do you still want to go back and loose their content?"
|
||||
msgstr "Einige Felder wurden bereits ausgefüllt. Möchtest du dennoch zurückgehen und die Einträge verwerfen?"
|
||||
msgstr "Einige Felder wurden bereits ausgefüllt. Möchten Sie dennoch zurückgehen und die Einträge verwerfen?"
|
||||
|
||||
#: [publish]add_text
|
||||
msgid "Click here to add some text to your publication"
|
||||
msgstr ""
|
||||
msgstr "Klicken Sie hier um ihrer Veröffentlichung einen Text hinzuzufügen"
|
||||
|
||||
#: [publish]add_text_label
|
||||
msgid "Add some text"
|
||||
msgstr ""
|
||||
msgstr "Text hinzufügen"
|
||||
|
||||
#: [public_groups]shared
|
||||
msgid "Shared"
|
||||
|
@ -1533,7 +1538,7 @@ msgstr "Sie sind noch keinem Chatraum beigetreten."
|
|||
|
||||
#: [rooms]empty_text2
|
||||
msgid "Add one by clicking on the add button."
|
||||
msgstr ""
|
||||
msgstr "Zum Hinzufügen klicken Sie oben auf den Hinzufügen-Knopf."
|
||||
|
||||
#: [chatrooms]title
|
||||
msgid "Chatrooms"
|
||||
|
@ -1553,7 +1558,7 @@ msgstr "Bitte geben Sie einen korrekten Spitznamen ein (zwischen 2 und 40 Zeiche
|
|||
|
||||
#: [chatrooms]conflict
|
||||
msgid "Username already taken"
|
||||
msgstr ""
|
||||
msgstr "Benutzername bereits vergeben"
|
||||
|
||||
#: [room]anonymous_title
|
||||
msgid "Public chatroom"
|
||||
|
@ -1565,11 +1570,11 @@ msgstr "Bitte eine Raumadresse übermitteln"
|
|||
|
||||
#: [room]anonymous_text1
|
||||
msgid "You are currently logued as an anonymous user."
|
||||
msgstr "Sie sind gerade als anonymer Nutzer eingeloggt."
|
||||
msgstr "Sie sind gerade als anonymer Nutzer angemeldet."
|
||||
|
||||
#: [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 "Sie können mit einem eigenen Konto beitreten oder ein neues Konto erstellen, indem Sie sich mit dem Kreuz in der oberen rechten Ecke ausloggen."
|
||||
msgstr "Sie können mit einem eigenen Konto beitreten oder ein neues Konto erstellen, indem Sie sich mit dem Kreuz in der oberen rechten Ecke abmelden."
|
||||
|
||||
#: [room]anonymous_login
|
||||
msgid "Login on %s"
|
||||
|
@ -1605,7 +1610,7 @@ msgstr "Bitte eine gültige Jabber-Kennung eingeben"
|
|||
|
||||
#: [roster]no_contacts_title
|
||||
msgid "No contacts ?"
|
||||
msgstr "Keine Kontakte ?"
|
||||
msgstr "Keine Kontakte?"
|
||||
|
||||
#: [roster]no_contacts_text
|
||||
msgid "You can add one using the + button bellow"
|
||||
|
@ -1881,6 +1886,10 @@ msgstr "Teilen"
|
|||
msgid "Room"
|
||||
msgstr "Raum"
|
||||
|
||||
#: [page]tag
|
||||
msgid "Tag"
|
||||
msgstr ""
|
||||
|
||||
#: [error]error
|
||||
msgid "Error: %s"
|
||||
msgstr "Fehler: %s"
|
||||
|
@ -2689,7 +2698,7 @@ msgstr "Ältere Kommentare anzeigen"
|
|||
|
||||
#: [post]comments_loading
|
||||
msgid "Loading comments..."
|
||||
msgstr "Kommentare werden geladen…"
|
||||
msgstr "Kommentare werden geladen …"
|
||||
|
||||
#: [post]comments_get
|
||||
msgid "Get the comments"
|
||||
|
|
|
@ -93,7 +93,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Movim\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-10-06 23:33+0200\n"
|
||||
"POT-Creation-Date: 2015-12-29 13:42+0200\n"
|
||||
"PO-Revision-Date: 2013-12-07 17:27+0000\n"
|
||||
"Last-Translator: aitolos <Unknown>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
@ -208,6 +208,10 @@ msgstr ""
|
|||
msgid "Loading"
|
||||
msgstr ""
|
||||
|
||||
#: [create]placeholder
|
||||
msgid "…and start playing"
|
||||
msgstr ""
|
||||
|
||||
#: [error]not_acceptable
|
||||
msgid "Not Acceptable"
|
||||
msgstr ""
|
||||
|
@ -262,7 +266,7 @@ msgstr ""
|
|||
|
||||
#: [db]name
|
||||
#, fuzzy
|
||||
msgid "Database sName"
|
||||
msgid "Database Name"
|
||||
msgstr "Εντοπίστηκε βάση δεδομένων"
|
||||
|
||||
#: [admin]general
|
||||
|
@ -373,14 +377,6 @@ msgstr ""
|
|||
msgid "Syslog and files"
|
||||
msgstr ""
|
||||
|
||||
#: [rewrite]title
|
||||
msgid "URL Rewriting"
|
||||
msgstr ""
|
||||
|
||||
#: [rewrite]info
|
||||
msgid "The URL Rewriting can be enabled"
|
||||
msgstr ""
|
||||
|
||||
#: [admin]compatibility
|
||||
msgid "General Overview"
|
||||
msgstr ""
|
||||
|
@ -413,10 +409,6 @@ msgstr ""
|
|||
msgid "Read and write rights for the webserver in Movims root directory"
|
||||
msgstr ""
|
||||
|
||||
#: [compatibility]rewrite
|
||||
msgid "The URL Rewriting support is currently disabled"
|
||||
msgstr ""
|
||||
|
||||
#: [compatibility]db
|
||||
msgid "The database need to be updated, go to the database panel to fix this"
|
||||
msgstr ""
|
||||
|
@ -501,6 +493,10 @@ msgstr ""
|
|||
msgid "Avatar Not Updated"
|
||||
msgstr ""
|
||||
|
||||
#: [avatar]missing
|
||||
msgid "No avatar defined yet"
|
||||
msgstr ""
|
||||
|
||||
#: [blog]title [feed]title
|
||||
msgid "%s's feed"
|
||||
msgstr ""
|
||||
|
@ -509,6 +505,10 @@ msgstr ""
|
|||
msgid "This user has not posted anything right now"
|
||||
msgstr ""
|
||||
|
||||
#: [blog]private
|
||||
msgid "This content is private, please login to see it"
|
||||
msgstr ""
|
||||
|
||||
#: [title]conferences
|
||||
msgid "Conferences"
|
||||
msgstr ""
|
||||
|
@ -593,6 +593,10 @@ msgstr ""
|
|||
msgid "Contact gone"
|
||||
msgstr ""
|
||||
|
||||
#: [message]history
|
||||
msgid "%s messages retrieved"
|
||||
msgstr ""
|
||||
|
||||
#: [chat]attention
|
||||
msgid "%s needs your attention"
|
||||
msgstr ""
|
||||
|
@ -650,7 +654,7 @@ msgid "No chats yet..."
|
|||
msgstr ""
|
||||
|
||||
#: [chats]empty
|
||||
msgid "Open a new conversation by clicking on the %s button bellow or visit the %s Contacts%s page."
|
||||
msgid "Open a new conversation by clicking on the %s button bellow or visit the %sContacts%s page."
|
||||
msgstr ""
|
||||
|
||||
#: [chats]add
|
||||
|
@ -705,9 +709,15 @@ msgstr ""
|
|||
msgid "Appearence"
|
||||
msgstr ""
|
||||
|
||||
#: [config]info
|
||||
msgid "This configuration is shared wherever you are connected"
|
||||
msgstr ""
|
||||
#: [config]not_valid
|
||||
#, fuzzy
|
||||
msgid "Configuration invalid"
|
||||
msgstr "Ρύθμιση"
|
||||
|
||||
#: [config]advanced
|
||||
#, fuzzy
|
||||
msgid "Advanced Configuration"
|
||||
msgstr "Ρύθμιση"
|
||||
|
||||
#: [notifications]message
|
||||
msgid "Notify on incoming message"
|
||||
|
@ -717,6 +727,10 @@ msgstr ""
|
|||
msgid "Use desktop notifications"
|
||||
msgstr ""
|
||||
|
||||
#: [cssurl]label
|
||||
msgid "Custom CSS URL for your blog"
|
||||
msgstr ""
|
||||
|
||||
#: [general]legend [general]general_title
|
||||
msgid "General Informations"
|
||||
msgstr "Γενικές πληροφορίες"
|
||||
|
@ -829,6 +843,10 @@ msgstr ""
|
|||
msgid "Last public post"
|
||||
msgstr ""
|
||||
|
||||
#: [blog]visit
|
||||
msgid "Visit the blog to see all the public posts"
|
||||
msgstr ""
|
||||
|
||||
#: [subscription]to
|
||||
#, fuzzy
|
||||
msgid "You can see this contact status"
|
||||
|
@ -1014,18 +1032,6 @@ msgstr ""
|
|||
msgid "This server doesn't exists"
|
||||
msgstr ""
|
||||
|
||||
#: [menu]all
|
||||
msgid "All"
|
||||
msgstr ""
|
||||
|
||||
#: [menu]refresh
|
||||
msgid "Refresh all the streams"
|
||||
msgstr ""
|
||||
|
||||
#: [menu]me
|
||||
msgid "My publications"
|
||||
msgstr ""
|
||||
|
||||
#: [roster]search
|
||||
msgid "Search in your contacts"
|
||||
msgstr ""
|
||||
|
@ -1131,7 +1137,7 @@ msgid "Chat with the team ?"
|
|||
msgstr ""
|
||||
|
||||
#: [chatroom]button
|
||||
msgid "Join the Chatroom"
|
||||
msgid "Add the chatroom"
|
||||
msgstr ""
|
||||
|
||||
#: [init]location
|
||||
|
@ -1223,10 +1229,6 @@ msgstr ""
|
|||
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 ""
|
||||
|
@ -1309,13 +1311,17 @@ msgid "Welcome on your news feed, here you will see all the posts published by y
|
|||
msgstr ""
|
||||
|
||||
#: [menu]refresh
|
||||
msgid "Refreshing all the streams"
|
||||
msgid "Refresh all the streams"
|
||||
msgstr ""
|
||||
|
||||
#: [menu]public
|
||||
msgid "This post is public"
|
||||
msgstr ""
|
||||
|
||||
#: [menu]all
|
||||
msgid "All"
|
||||
msgstr ""
|
||||
|
||||
#: [affiliations]title
|
||||
msgid "Manage your members"
|
||||
msgstr ""
|
||||
|
@ -1352,10 +1358,6 @@ msgstr ""
|
|||
msgid "%s wants to talk with you"
|
||||
msgstr ""
|
||||
|
||||
#: [notifs]manage
|
||||
msgid "Manage"
|
||||
msgstr ""
|
||||
|
||||
#: [post]news_feed
|
||||
msgid "News Feed"
|
||||
msgstr ""
|
||||
|
@ -1400,12 +1402,12 @@ msgstr ""
|
|||
msgid "Publish this post publicly?"
|
||||
msgstr ""
|
||||
|
||||
#: [post]blog_add
|
||||
msgid "Post published on your blog"
|
||||
#: [post]public_yes
|
||||
msgid "This post is now public"
|
||||
msgstr ""
|
||||
|
||||
#: [post]blog_remove
|
||||
msgid "Post removed from your blog"
|
||||
#: [post]public_no
|
||||
msgid "This post is now private"
|
||||
msgstr ""
|
||||
|
||||
#: [post]delete_title [post]delete
|
||||
|
@ -1416,6 +1418,10 @@ msgstr ""
|
|||
msgid "You are going to delete this post, please confirm your action"
|
||||
msgstr ""
|
||||
|
||||
#: [post]discover
|
||||
msgid "Discover more articles on the Groups page"
|
||||
msgstr ""
|
||||
|
||||
#: [post]comments_disabled
|
||||
msgid "Comments disabled"
|
||||
msgstr ""
|
||||
|
@ -1480,10 +1486,6 @@ msgstr ""
|
|||
msgid "This picture will be added to your gallery"
|
||||
msgstr ""
|
||||
|
||||
#: [post]embed_tip
|
||||
msgid "You can also use services like Imgur or Flickr to host your picture and paste the link here."
|
||||
msgstr ""
|
||||
|
||||
#: [publish]valid_url
|
||||
msgid "Please enter a valid url"
|
||||
msgstr ""
|
||||
|
@ -1496,6 +1498,10 @@ msgstr ""
|
|||
msgid "Please provide a title"
|
||||
msgstr ""
|
||||
|
||||
#: [publish]edit
|
||||
msgid "Edit post"
|
||||
msgstr ""
|
||||
|
||||
#: [publish]title
|
||||
msgid "Publish"
|
||||
msgstr ""
|
||||
|
@ -1888,6 +1894,10 @@ msgstr ""
|
|||
msgid "Room"
|
||||
msgstr ""
|
||||
|
||||
#: [page]tag
|
||||
msgid "Tag"
|
||||
msgstr ""
|
||||
|
||||
#: [error]error
|
||||
msgid "Error: %s"
|
||||
msgstr "Σφάλμα: %s"
|
||||
|
@ -2746,6 +2756,9 @@ msgstr ""
|
|||
msgid "Type here"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Your web browser is too old to use with Movim."
|
||||
#~ msgstr "Ο περιηγητης σας είναι αρκετά παλιός για να χρησιμοποιηθεί με Movim"
|
||||
|
||||
#~ msgid "PHP version mismatch. Movim requires PHP 5.3 minimum."
|
||||
#~ msgstr "Αναντιστοιχία έκδοσης της PHP. Το Movim απαιτεί τουλάχιστον την έκδοση 5.3 της PHP."
|
||||
|
||||
|
|
|
@ -93,7 +93,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Movim\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-10-06 23:33+0200\n"
|
||||
"POT-Creation-Date: 2015-12-29 13:42+0200\n"
|
||||
"PO-Revision-Date: 2013-05-11 17:33+0000\n"
|
||||
"Last-Translator: Baptiste Darthenay <baptiste+launchpad@darthenay.fr>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
@ -207,6 +207,10 @@ msgstr ""
|
|||
msgid "Loading"
|
||||
msgstr ""
|
||||
|
||||
#: [create]placeholder
|
||||
msgid "…and start playing"
|
||||
msgstr ""
|
||||
|
||||
#: [error]not_acceptable
|
||||
msgid "Not Acceptable"
|
||||
msgstr ""
|
||||
|
@ -261,7 +265,7 @@ msgstr ""
|
|||
|
||||
#: [db]name
|
||||
#, fuzzy
|
||||
msgid "Database sName"
|
||||
msgid "Database Name"
|
||||
msgstr "Datumbazo trovita"
|
||||
|
||||
#: [admin]general
|
||||
|
@ -372,14 +376,6 @@ msgstr ""
|
|||
msgid "Syslog and files"
|
||||
msgstr ""
|
||||
|
||||
#: [rewrite]title
|
||||
msgid "URL Rewriting"
|
||||
msgstr ""
|
||||
|
||||
#: [rewrite]info
|
||||
msgid "The URL Rewriting can be enabled"
|
||||
msgstr ""
|
||||
|
||||
#: [admin]compatibility
|
||||
msgid "General Overview"
|
||||
msgstr ""
|
||||
|
@ -413,10 +409,6 @@ msgstr ""
|
|||
msgid "Read and write rights for the webserver in Movims root directory"
|
||||
msgstr "Ebligi legi kaj skribi rajtojn on la radika dosierujo de Movim"
|
||||
|
||||
#: [compatibility]rewrite
|
||||
msgid "The URL Rewriting support is currently disabled"
|
||||
msgstr ""
|
||||
|
||||
#: [compatibility]db
|
||||
msgid "The database need to be updated, go to the database panel to fix this"
|
||||
msgstr ""
|
||||
|
@ -501,6 +493,10 @@ msgstr ""
|
|||
msgid "Avatar Not Updated"
|
||||
msgstr ""
|
||||
|
||||
#: [avatar]missing
|
||||
msgid "No avatar defined yet"
|
||||
msgstr ""
|
||||
|
||||
#: [blog]title [feed]title
|
||||
msgid "%s's feed"
|
||||
msgstr ""
|
||||
|
@ -509,6 +505,10 @@ msgstr ""
|
|||
msgid "This user has not posted anything right now"
|
||||
msgstr ""
|
||||
|
||||
#: [blog]private
|
||||
msgid "This content is private, please login to see it"
|
||||
msgstr ""
|
||||
|
||||
#: [title]conferences
|
||||
msgid "Conferences"
|
||||
msgstr ""
|
||||
|
@ -593,6 +593,10 @@ msgstr ""
|
|||
msgid "Contact gone"
|
||||
msgstr ""
|
||||
|
||||
#: [message]history
|
||||
msgid "%s messages retrieved"
|
||||
msgstr ""
|
||||
|
||||
#: [chat]attention
|
||||
msgid "%s needs your attention"
|
||||
msgstr ""
|
||||
|
@ -650,7 +654,7 @@ msgid "No chats yet..."
|
|||
msgstr ""
|
||||
|
||||
#: [chats]empty
|
||||
msgid "Open a new conversation by clicking on the %s button bellow or visit the %s Contacts%s page."
|
||||
msgid "Open a new conversation by clicking on the %s button bellow or visit the %sContacts%s page."
|
||||
msgstr ""
|
||||
|
||||
#: [chats]add
|
||||
|
@ -705,9 +709,15 @@ msgstr ""
|
|||
msgid "Appearence"
|
||||
msgstr ""
|
||||
|
||||
#: [config]info
|
||||
msgid "This configuration is shared wherever you are connected"
|
||||
msgstr ""
|
||||
#: [config]not_valid
|
||||
#, fuzzy
|
||||
msgid "Configuration invalid"
|
||||
msgstr "Agordaĵoj"
|
||||
|
||||
#: [config]advanced
|
||||
#, fuzzy
|
||||
msgid "Advanced Configuration"
|
||||
msgstr "Agordaĵoj"
|
||||
|
||||
#: [notifications]message
|
||||
msgid "Notify on incoming message"
|
||||
|
@ -717,6 +727,10 @@ msgstr ""
|
|||
msgid "Use desktop notifications"
|
||||
msgstr ""
|
||||
|
||||
#: [cssurl]label
|
||||
msgid "Custom CSS URL for your blog"
|
||||
msgstr ""
|
||||
|
||||
#: [general]legend [general]general_title
|
||||
msgid "General Informations"
|
||||
msgstr "Generalaj informoj"
|
||||
|
@ -829,6 +843,10 @@ msgstr ""
|
|||
msgid "Last public post"
|
||||
msgstr ""
|
||||
|
||||
#: [blog]visit
|
||||
msgid "Visit the blog to see all the public posts"
|
||||
msgstr ""
|
||||
|
||||
#: [subscription]to
|
||||
#, fuzzy
|
||||
msgid "You can see this contact status"
|
||||
|
@ -1014,18 +1032,6 @@ msgstr ""
|
|||
msgid "This server doesn't exists"
|
||||
msgstr ""
|
||||
|
||||
#: [menu]all
|
||||
msgid "All"
|
||||
msgstr ""
|
||||
|
||||
#: [menu]refresh
|
||||
msgid "Refresh all the streams"
|
||||
msgstr ""
|
||||
|
||||
#: [menu]me
|
||||
msgid "My publications"
|
||||
msgstr ""
|
||||
|
||||
#: [roster]search
|
||||
msgid "Search in your contacts"
|
||||
msgstr ""
|
||||
|
@ -1131,7 +1137,7 @@ msgid "Chat with the team ?"
|
|||
msgstr ""
|
||||
|
||||
#: [chatroom]button
|
||||
msgid "Join the Chatroom"
|
||||
msgid "Add the chatroom"
|
||||
msgstr ""
|
||||
|
||||
#: [init]location
|
||||
|
@ -1223,10 +1229,6 @@ msgstr ""
|
|||
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 ""
|
||||
|
@ -1309,13 +1311,17 @@ msgid "Welcome on your news feed, here you will see all the posts published by y
|
|||
msgstr ""
|
||||
|
||||
#: [menu]refresh
|
||||
msgid "Refreshing all the streams"
|
||||
msgid "Refresh all the streams"
|
||||
msgstr ""
|
||||
|
||||
#: [menu]public
|
||||
msgid "This post is public"
|
||||
msgstr ""
|
||||
|
||||
#: [menu]all
|
||||
msgid "All"
|
||||
msgstr ""
|
||||
|
||||
#: [affiliations]title
|
||||
msgid "Manage your members"
|
||||
msgstr ""
|
||||
|
@ -1352,10 +1358,6 @@ msgstr ""
|
|||
msgid "%s wants to talk with you"
|
||||
msgstr ""
|
||||
|
||||
#: [notifs]manage
|
||||
msgid "Manage"
|
||||
msgstr ""
|
||||
|
||||
#: [post]news_feed
|
||||
msgid "News Feed"
|
||||
msgstr ""
|
||||
|
@ -1400,12 +1402,12 @@ msgstr ""
|
|||
msgid "Publish this post publicly?"
|
||||
msgstr ""
|
||||
|
||||
#: [post]blog_add
|
||||
msgid "Post published on your blog"
|
||||
#: [post]public_yes
|
||||
msgid "This post is now public"
|
||||
msgstr ""
|
||||
|
||||
#: [post]blog_remove
|
||||
msgid "Post removed from your blog"
|
||||
#: [post]public_no
|
||||
msgid "This post is now private"
|
||||
msgstr ""
|
||||
|
||||
#: [post]delete_title [post]delete
|
||||
|
@ -1416,6 +1418,10 @@ msgstr ""
|
|||
msgid "You are going to delete this post, please confirm your action"
|
||||
msgstr ""
|
||||
|
||||
#: [post]discover
|
||||
msgid "Discover more articles on the Groups page"
|
||||
msgstr ""
|
||||
|
||||
#: [post]comments_disabled
|
||||
msgid "Comments disabled"
|
||||
msgstr ""
|
||||
|
@ -1480,10 +1486,6 @@ msgstr ""
|
|||
msgid "This picture will be added to your gallery"
|
||||
msgstr ""
|
||||
|
||||
#: [post]embed_tip
|
||||
msgid "You can also use services like Imgur or Flickr to host your picture and paste the link here."
|
||||
msgstr ""
|
||||
|
||||
#: [publish]valid_url
|
||||
msgid "Please enter a valid url"
|
||||
msgstr ""
|
||||
|
@ -1496,6 +1498,10 @@ msgstr ""
|
|||
msgid "Please provide a title"
|
||||
msgstr ""
|
||||
|
||||
#: [publish]edit
|
||||
msgid "Edit post"
|
||||
msgstr ""
|
||||
|
||||
#: [publish]title
|
||||
msgid "Publish"
|
||||
msgstr ""
|
||||
|
@ -1888,6 +1894,10 @@ msgstr ""
|
|||
msgid "Room"
|
||||
msgstr ""
|
||||
|
||||
#: [page]tag
|
||||
msgid "Tag"
|
||||
msgstr ""
|
||||
|
||||
#: [error]error
|
||||
msgid "Error: %s"
|
||||
msgstr "Eraro: %s"
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
#
|
||||
# Translators:
|
||||
# Bikalkas <vicalcas@gmail.com.com>, 2015
|
||||
# Raúl <gomezromanr@gmail.com>, 2015
|
||||
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
|
||||
#. extracted from ../app/widgets/About/locales.ini
|
||||
|
@ -93,8 +94,8 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: movim\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-10-06 23:33+0200\n"
|
||||
"PO-Revision-Date: 2015-10-06 21:34+0000\n"
|
||||
"POT-Creation-Date: 2015-12-29 13:42+0200\n"
|
||||
"PO-Revision-Date: 2015-12-29 12:43+0000\n"
|
||||
"Last-Translator: Jaussoin Timothée <edhelas@movim.eu>\n"
|
||||
"Language-Team: Spanish (http://www.transifex.com/movim/movim/language/es/)\n"
|
||||
"Language: es\n"
|
||||
|
@ -118,7 +119,7 @@ msgstr "Traductores"
|
|||
|
||||
#: [about]translators_text
|
||||
msgid "Thanks to all the translators"
|
||||
msgstr ""
|
||||
msgstr "Gracias a todos los Traductores"
|
||||
|
||||
#: [about]software
|
||||
msgid "Software"
|
||||
|
@ -183,7 +184,7 @@ msgstr "¿Está seguro de que quieres eliminarla?"
|
|||
|
||||
#: [account]gateway_title
|
||||
msgid "Gateway"
|
||||
msgstr ""
|
||||
msgstr "Puerta de Enlace"
|
||||
|
||||
#: [create]title [subscribe]title
|
||||
msgid "Create a new account"
|
||||
|
@ -205,6 +206,10 @@ msgstr "Tu cuenta ha sido registrada exitosamente"
|
|||
msgid "Loading"
|
||||
msgstr "Cargando"
|
||||
|
||||
#: [create]placeholder
|
||||
msgid "…and start playing"
|
||||
msgstr ""
|
||||
|
||||
#: [error]not_acceptable
|
||||
msgid "Not Acceptable"
|
||||
msgstr "No admisible"
|
||||
|
@ -258,7 +263,7 @@ msgid "Port"
|
|||
msgstr "Puerto"
|
||||
|
||||
#: [db]name
|
||||
msgid "Database sName"
|
||||
msgid "Database Name"
|
||||
msgstr ""
|
||||
|
||||
#: [admin]general
|
||||
|
@ -367,14 +372,6 @@ msgstr "Syslog"
|
|||
msgid "Syslog and files"
|
||||
msgstr "Syslog y archivos"
|
||||
|
||||
#: [rewrite]title
|
||||
msgid "URL Rewriting"
|
||||
msgstr "Reescritura de la URL"
|
||||
|
||||
#: [rewrite]info
|
||||
msgid "The URL Rewriting can be enabled"
|
||||
msgstr "La reescritura de la URL puede ser activada"
|
||||
|
||||
#: [admin]compatibility
|
||||
msgid "General Overview"
|
||||
msgstr "Visión general"
|
||||
|
@ -407,10 +404,6 @@ msgstr "Instalar la librería php5-gd"
|
|||
msgid "Read and write rights for the webserver in Movims root directory"
|
||||
msgstr "Derechos de lectura y escritura para el servidor web en el directorio raíz de Movim"
|
||||
|
||||
#: [compatibility]rewrite
|
||||
msgid "The URL Rewriting support is currently disabled"
|
||||
msgstr "La reescritura de la URL está actualmente desactivada"
|
||||
|
||||
#: [compatibility]db
|
||||
msgid "The database need to be updated, go to the database panel to fix this"
|
||||
msgstr "La base de datos necesita ser actualizada, ve al panel de la base de datos para reparar esto"
|
||||
|
@ -495,6 +488,10 @@ msgstr "Avatar actualizado"
|
|||
msgid "Avatar Not Updated"
|
||||
msgstr "Avatar no actualizado"
|
||||
|
||||
#: [avatar]missing
|
||||
msgid "No avatar defined yet"
|
||||
msgstr ""
|
||||
|
||||
#: [blog]title [feed]title
|
||||
msgid "%s's feed"
|
||||
msgstr "Contenido de %s"
|
||||
|
@ -503,6 +500,10 @@ msgstr "Contenido de %s"
|
|||
msgid "This user has not posted anything right now"
|
||||
msgstr "Este usuario no ha publicado nada ahora mismo"
|
||||
|
||||
#: [blog]private
|
||||
msgid "This content is private, please login to see it"
|
||||
msgstr ""
|
||||
|
||||
#: [title]conferences
|
||||
msgid "Conferences"
|
||||
msgstr "Conferencias"
|
||||
|
@ -585,6 +586,10 @@ msgstr "Pausado..."
|
|||
msgid "Contact gone"
|
||||
msgstr "Contacto perdido"
|
||||
|
||||
#: [message]history
|
||||
msgid "%s messages retrieved"
|
||||
msgstr ""
|
||||
|
||||
#: [chat]attention
|
||||
msgid "%s needs your attention"
|
||||
msgstr "%s necesita tu atención"
|
||||
|
@ -642,7 +647,7 @@ msgid "No chats yet..."
|
|||
msgstr "Aún no hay conversaciones..."
|
||||
|
||||
#: [chats]empty
|
||||
msgid "Open a new conversation by clicking on the %s button bellow or visit the %s Contacts%s page."
|
||||
msgid "Open a new conversation by clicking on the %s button bellow or visit the %sContacts%s page."
|
||||
msgstr ""
|
||||
|
||||
#: [chats]add
|
||||
|
@ -697,9 +702,13 @@ msgstr "Esconder los contactos desconectados"
|
|||
msgid "Appearence"
|
||||
msgstr "Aspecto"
|
||||
|
||||
#: [config]info
|
||||
msgid "This configuration is shared wherever you are connected"
|
||||
msgstr "Esta configuación es compartida dondequiera que te conectes"
|
||||
#: [config]not_valid
|
||||
msgid "Configuration invalid"
|
||||
msgstr ""
|
||||
|
||||
#: [config]advanced
|
||||
msgid "Advanced Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: [notifications]message
|
||||
msgid "Notify on incoming message"
|
||||
|
@ -709,6 +718,10 @@ msgstr "Notificar cuando reciba un mensaje"
|
|||
msgid "Use desktop notifications"
|
||||
msgstr "Utilice notificaciones en el escritorio"
|
||||
|
||||
#: [cssurl]label
|
||||
msgid "Custom CSS URL for your blog"
|
||||
msgstr ""
|
||||
|
||||
#: [general]legend [general]general_title
|
||||
msgid "General Informations"
|
||||
msgstr "Informaciones generales"
|
||||
|
@ -821,6 +834,10 @@ msgstr "%s años"
|
|||
msgid "Last public post"
|
||||
msgstr "Último post público"
|
||||
|
||||
#: [blog]visit
|
||||
msgid "Visit the blog to see all the public posts"
|
||||
msgstr ""
|
||||
|
||||
#: [subscription]to
|
||||
msgid "You can see this contact status"
|
||||
msgstr "Puedes ver el estado de este contacto"
|
||||
|
@ -847,7 +864,7 @@ msgstr "Pero este contacto puede verte aún si estás en línea"
|
|||
|
||||
#: [subscription]nil
|
||||
msgid "No subscriptions"
|
||||
msgstr ""
|
||||
msgstr "No hay subscripciones"
|
||||
|
||||
#: [subscription]nil_button
|
||||
msgid "Invite"
|
||||
|
@ -923,27 +940,27 @@ msgstr "Suscripciones"
|
|||
|
||||
#: [group]servers
|
||||
msgid "Groups servers"
|
||||
msgstr ""
|
||||
msgstr "Grupo de Servidores"
|
||||
|
||||
#: [group]search_server
|
||||
msgid "Search for a new server"
|
||||
msgstr ""
|
||||
msgstr "Busca un nuevo Servidor"
|
||||
|
||||
#: [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 ""
|
||||
msgstr "Los grupos son la manera perfecta para compartir tus posts sobre los tópicos que te gusta con el resto de Movim"
|
||||
|
||||
#: [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 ""
|
||||
msgstr "Elige un servidor y un Grupo y suscribete a él usando el botón"
|
||||
|
||||
#: [group]help_info3
|
||||
msgid "Done? You can now publish a new post in the Group by using the %s button."
|
||||
msgstr ""
|
||||
msgstr "¿Has Terminado? Puedes publicar un nuevo post en el Grupo usando el botón"
|
||||
|
||||
#: [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 ""
|
||||
msgstr "Encontrarás una lista con todos los Grupos a los que te has suscrito en Tus Subscripciones y recibe instantáneamente todos los nuevos poste en la página de novedades"
|
||||
|
||||
#: [groups]empty_title
|
||||
msgid "Hello"
|
||||
|
@ -955,11 +972,11 @@ msgstr "Publicación de contacto"
|
|||
|
||||
#: [groups]empty_text1
|
||||
msgid "You don't have any group subscriptions yet."
|
||||
msgstr ""
|
||||
msgstr "No te has suscrito a un grupo todavía"
|
||||
|
||||
#: [groups]empty_text2
|
||||
msgid "Here you will be able to manage all your subscriptions."
|
||||
msgstr ""
|
||||
msgstr "Aquí seras capaz de gestionar todas tus subscripciones"
|
||||
|
||||
#: [groups]subscriptions
|
||||
msgid "My Subscriptions"
|
||||
|
@ -1003,19 +1020,7 @@ msgstr "%s publicaciones"
|
|||
|
||||
#: [groups]disco_error
|
||||
msgid "This server doesn't exists"
|
||||
msgstr ""
|
||||
|
||||
#: [menu]all
|
||||
msgid "All"
|
||||
msgstr "Todos"
|
||||
|
||||
#: [menu]refresh
|
||||
msgid "Refresh all the streams"
|
||||
msgstr "Refrescar todas las retransmisiones"
|
||||
|
||||
#: [menu]me
|
||||
msgid "My publications"
|
||||
msgstr ""
|
||||
msgstr "Este servidor no existe"
|
||||
|
||||
#: [roster]search
|
||||
msgid "Search in your contacts"
|
||||
|
@ -1055,15 +1060,15 @@ msgstr "Compartir en Movim"
|
|||
|
||||
#: [hello]enter_title
|
||||
msgid "Oh! Hello!"
|
||||
msgstr ""
|
||||
msgstr "¡Oh! ¡Hola!"
|
||||
|
||||
#: [hello]enter_paragraph
|
||||
msgid "It seems that you're new there! Welcome on Movim!"
|
||||
msgstr ""
|
||||
msgstr "¡Pareces nuevo aquí! ¡Bienvenido a Movim!"
|
||||
|
||||
#: [hello]menu_title
|
||||
msgid "Check the Menu"
|
||||
msgstr ""
|
||||
msgstr "Comprueba el menú"
|
||||
|
||||
#: [hello]menu_paragraph
|
||||
msgid "All the main Movim features are accessible there. Don't hesitate to navigate through the pages to discover more!"
|
||||
|
@ -1122,8 +1127,8 @@ msgid "Chat with the team ?"
|
|||
msgstr "¿Conversar con el equipo?"
|
||||
|
||||
#: [chatroom]button
|
||||
msgid "Join the Chatroom"
|
||||
msgstr "Unirse a la sala de conversación"
|
||||
msgid "Add the chatroom"
|
||||
msgstr ""
|
||||
|
||||
#: [init]location
|
||||
msgid "Location node created"
|
||||
|
@ -1214,10 +1219,6 @@ msgstr "Tu server XMPP no está autorizado"
|
|||
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 "Movim no puede contactar con el servidor, por favor, inténtelo de nuevo más tarde (error de conexión del Websocket)"
|
||||
|
@ -1300,13 +1301,17 @@ msgid "Welcome on your news feed, here you will see all the posts published by y
|
|||
msgstr "Bienvenido al contenido de tus noticias, aquí verás todos las publicaciones de tus contactos y de los grupos a los que te has suscrito"
|
||||
|
||||
#: [menu]refresh
|
||||
msgid "Refreshing all the streams"
|
||||
msgstr "Refrescando todas las transmisiones"
|
||||
msgid "Refresh all the streams"
|
||||
msgstr "Refrescar todas las retransmisiones"
|
||||
|
||||
#: [menu]public
|
||||
msgid "This post is public"
|
||||
msgstr "Esta publicación es pública"
|
||||
|
||||
#: [menu]all
|
||||
msgid "All"
|
||||
msgstr "Todos"
|
||||
|
||||
#: [affiliations]title
|
||||
msgid "Manage your members"
|
||||
msgstr "Gestionar miembros"
|
||||
|
@ -1343,10 +1348,6 @@ msgstr "Invitaciones pendientes"
|
|||
msgid "%s wants to talk with you"
|
||||
msgstr "%s quiere hablar contigo"
|
||||
|
||||
#: [notifs]manage
|
||||
msgid "Manage"
|
||||
msgstr "Administrar"
|
||||
|
||||
#: [post]news_feed
|
||||
msgid "News Feed"
|
||||
msgstr "Contenido de noticias"
|
||||
|
@ -1391,13 +1392,13 @@ msgstr "Ver el perfil de %s"
|
|||
msgid "Publish this post publicly?"
|
||||
msgstr ""
|
||||
|
||||
#: [post]blog_add
|
||||
msgid "Post published on your blog"
|
||||
msgstr "Mensaje publicado en tu blog"
|
||||
#: [post]public_yes
|
||||
msgid "This post is now public"
|
||||
msgstr ""
|
||||
|
||||
#: [post]blog_remove
|
||||
msgid "Post removed from your blog"
|
||||
msgstr "Mensaje eliminado de tu blog"
|
||||
#: [post]public_no
|
||||
msgid "This post is now private"
|
||||
msgstr ""
|
||||
|
||||
#: [post]delete_title [post]delete
|
||||
msgid "Delete this post"
|
||||
|
@ -1407,6 +1408,10 @@ msgstr "Eliminar esta publicación"
|
|||
msgid "You are going to delete this post, please confirm your action"
|
||||
msgstr "Vas a eliminar esta publicación, por favor, confirma la acción"
|
||||
|
||||
#: [post]discover
|
||||
msgid "Discover more articles on the Groups page"
|
||||
msgstr ""
|
||||
|
||||
#: [post]comments_disabled
|
||||
msgid "Comments disabled"
|
||||
msgstr "Comentarios deshabilitados"
|
||||
|
@ -1471,10 +1476,6 @@ msgstr "Etiquetas"
|
|||
msgid "This picture will be added to your gallery"
|
||||
msgstr "Esta imagen será añadida a tu galería"
|
||||
|
||||
#: [post]embed_tip
|
||||
msgid "You can also use services like Imgur or Flickr to host your picture and paste the link here."
|
||||
msgstr "Puedes también utilizar servicios como Imgur o Flickr para guardar tu imagen y pegar el enlace aquí."
|
||||
|
||||
#: [publish]valid_url
|
||||
msgid "Please enter a valid url"
|
||||
msgstr "Por favor, introduzca un enlace válido"
|
||||
|
@ -1487,6 +1488,10 @@ msgstr "Sin contenido para ver"
|
|||
msgid "Please provide a title"
|
||||
msgstr ""
|
||||
|
||||
#: [publish]edit
|
||||
msgid "Edit post"
|
||||
msgstr ""
|
||||
|
||||
#: [publish]title
|
||||
msgid "Publish"
|
||||
msgstr "Publicar"
|
||||
|
@ -1877,6 +1882,10 @@ msgstr "Compartir"
|
|||
msgid "Room"
|
||||
msgstr "Sala"
|
||||
|
||||
#: [page]tag
|
||||
msgid "Tag"
|
||||
msgstr ""
|
||||
|
||||
#: [error]error
|
||||
msgid "Error: %s"
|
||||
msgstr "Error: %s"
|
||||
|
|
|
@ -95,7 +95,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: movim\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-10-06 23:33+0200\n"
|
||||
"POT-Creation-Date: 2015-12-29 13:42+0200\n"
|
||||
"PO-Revision-Date: 2014-06-01 23:08+0000\n"
|
||||
"Last-Translator: reza <reza_khn@yahoo.com>\n"
|
||||
"Language-Team: Persian <fa@li.org>\n"
|
||||
|
@ -207,6 +207,10 @@ msgstr ""
|
|||
msgid "Loading"
|
||||
msgstr ""
|
||||
|
||||
#: [create]placeholder
|
||||
msgid "…and start playing"
|
||||
msgstr ""
|
||||
|
||||
#: [error]not_acceptable
|
||||
msgid "Not Acceptable"
|
||||
msgstr ""
|
||||
|
@ -260,7 +264,7 @@ msgid "Port"
|
|||
msgstr ""
|
||||
|
||||
#: [db]name
|
||||
msgid "Database sName"
|
||||
msgid "Database Name"
|
||||
msgstr ""
|
||||
|
||||
#: [admin]general
|
||||
|
@ -369,14 +373,6 @@ msgstr ""
|
|||
msgid "Syslog and files"
|
||||
msgstr ""
|
||||
|
||||
#: [rewrite]title
|
||||
msgid "URL Rewriting"
|
||||
msgstr ""
|
||||
|
||||
#: [rewrite]info
|
||||
msgid "The URL Rewriting can be enabled"
|
||||
msgstr ""
|
||||
|
||||
#: [admin]compatibility
|
||||
msgid "General Overview"
|
||||
msgstr ""
|
||||
|
@ -409,10 +405,6 @@ msgstr ""
|
|||
msgid "Read and write rights for the webserver in Movims root directory"
|
||||
msgstr ""
|
||||
|
||||
#: [compatibility]rewrite
|
||||
msgid "The URL Rewriting support is currently disabled"
|
||||
msgstr ""
|
||||
|
||||
#: [compatibility]db
|
||||
msgid "The database need to be updated, go to the database panel to fix this"
|
||||
msgstr ""
|
||||
|
@ -497,6 +489,10 @@ msgstr ""
|
|||
msgid "Avatar Not Updated"
|
||||
msgstr ""
|
||||
|
||||
#: [avatar]missing
|
||||
msgid "No avatar defined yet"
|
||||
msgstr ""
|
||||
|
||||
#: [blog]title [feed]title
|
||||
msgid "%s's feed"
|
||||
msgstr ""
|
||||
|
@ -505,6 +501,10 @@ msgstr ""
|
|||
msgid "This user has not posted anything right now"
|
||||
msgstr ""
|
||||
|
||||
#: [blog]private
|
||||
msgid "This content is private, please login to see it"
|
||||
msgstr ""
|
||||
|
||||
#: [title]conferences
|
||||
msgid "Conferences"
|
||||
msgstr ""
|
||||
|
@ -587,6 +587,10 @@ msgstr ""
|
|||
msgid "Contact gone"
|
||||
msgstr ""
|
||||
|
||||
#: [message]history
|
||||
msgid "%s messages retrieved"
|
||||
msgstr ""
|
||||
|
||||
#: [chat]attention
|
||||
msgid "%s needs your attention"
|
||||
msgstr ""
|
||||
|
@ -644,7 +648,7 @@ msgid "No chats yet..."
|
|||
msgstr ""
|
||||
|
||||
#: [chats]empty
|
||||
msgid "Open a new conversation by clicking on the %s button bellow or visit the %s Contacts%s page."
|
||||
msgid "Open a new conversation by clicking on the %s button bellow or visit the %sContacts%s page."
|
||||
msgstr ""
|
||||
|
||||
#: [chats]add
|
||||
|
@ -699,8 +703,12 @@ msgstr ""
|
|||
msgid "Appearence"
|
||||
msgstr ""
|
||||
|
||||
#: [config]info
|
||||
msgid "This configuration is shared wherever you are connected"
|
||||
#: [config]not_valid
|
||||
msgid "Configuration invalid"
|
||||
msgstr ""
|
||||
|
||||
#: [config]advanced
|
||||
msgid "Advanced Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: [notifications]message
|
||||
|
@ -711,6 +719,10 @@ msgstr ""
|
|||
msgid "Use desktop notifications"
|
||||
msgstr ""
|
||||
|
||||
#: [cssurl]label
|
||||
msgid "Custom CSS URL for your blog"
|
||||
msgstr ""
|
||||
|
||||
#: [general]legend [general]general_title
|
||||
msgid "General Informations"
|
||||
msgstr ""
|
||||
|
@ -823,6 +835,10 @@ msgstr ""
|
|||
msgid "Last public post"
|
||||
msgstr ""
|
||||
|
||||
#: [blog]visit
|
||||
msgid "Visit the blog to see all the public posts"
|
||||
msgstr ""
|
||||
|
||||
#: [subscription]to
|
||||
msgid "You can see this contact status"
|
||||
msgstr ""
|
||||
|
@ -1007,18 +1023,6 @@ msgstr ""
|
|||
msgid "This server doesn't exists"
|
||||
msgstr ""
|
||||
|
||||
#: [menu]all
|
||||
msgid "All"
|
||||
msgstr ""
|
||||
|
||||
#: [menu]refresh
|
||||
msgid "Refresh all the streams"
|
||||
msgstr ""
|
||||
|
||||
#: [menu]me
|
||||
msgid "My publications"
|
||||
msgstr ""
|
||||
|
||||
#: [roster]search
|
||||
msgid "Search in your contacts"
|
||||
msgstr ""
|
||||
|
@ -1124,7 +1128,7 @@ msgid "Chat with the team ?"
|
|||
msgstr ""
|
||||
|
||||
#: [chatroom]button
|
||||
msgid "Join the Chatroom"
|
||||
msgid "Add the chatroom"
|
||||
msgstr ""
|
||||
|
||||
#: [init]location
|
||||
|
@ -1216,10 +1220,6 @@ msgstr ""
|
|||
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 ""
|
||||
|
@ -1302,13 +1302,17 @@ msgid "Welcome on your news feed, here you will see all the posts published by y
|
|||
msgstr ""
|
||||
|
||||
#: [menu]refresh
|
||||
msgid "Refreshing all the streams"
|
||||
msgid "Refresh all the streams"
|
||||
msgstr ""
|
||||
|
||||
#: [menu]public
|
||||
msgid "This post is public"
|
||||
msgstr ""
|
||||
|
||||
#: [menu]all
|
||||
msgid "All"
|
||||
msgstr ""
|
||||
|
||||
#: [affiliations]title
|
||||
msgid "Manage your members"
|
||||
msgstr ""
|
||||
|
@ -1345,10 +1349,6 @@ msgstr ""
|
|||
msgid "%s wants to talk with you"
|
||||
msgstr ""
|
||||
|
||||
#: [notifs]manage
|
||||
msgid "Manage"
|
||||
msgstr ""
|
||||
|
||||
#: [post]news_feed
|
||||
msgid "News Feed"
|
||||
msgstr ""
|
||||
|
@ -1393,12 +1393,12 @@ msgstr ""
|
|||
msgid "Publish this post publicly?"
|
||||
msgstr ""
|
||||
|
||||
#: [post]blog_add
|
||||
msgid "Post published on your blog"
|
||||
#: [post]public_yes
|
||||
msgid "This post is now public"
|
||||
msgstr ""
|
||||
|
||||
#: [post]blog_remove
|
||||
msgid "Post removed from your blog"
|
||||
#: [post]public_no
|
||||
msgid "This post is now private"
|
||||
msgstr ""
|
||||
|
||||
#: [post]delete_title [post]delete
|
||||
|
@ -1409,6 +1409,10 @@ msgstr ""
|
|||
msgid "You are going to delete this post, please confirm your action"
|
||||
msgstr ""
|
||||
|
||||
#: [post]discover
|
||||
msgid "Discover more articles on the Groups page"
|
||||
msgstr ""
|
||||
|
||||
#: [post]comments_disabled
|
||||
msgid "Comments disabled"
|
||||
msgstr ""
|
||||
|
@ -1473,10 +1477,6 @@ msgstr ""
|
|||
msgid "This picture will be added to your gallery"
|
||||
msgstr ""
|
||||
|
||||
#: [post]embed_tip
|
||||
msgid "You can also use services like Imgur or Flickr to host your picture and paste the link here."
|
||||
msgstr ""
|
||||
|
||||
#: [publish]valid_url
|
||||
msgid "Please enter a valid url"
|
||||
msgstr ""
|
||||
|
@ -1489,6 +1489,10 @@ msgstr ""
|
|||
msgid "Please provide a title"
|
||||
msgstr ""
|
||||
|
||||
#: [publish]edit
|
||||
msgid "Edit post"
|
||||
msgstr ""
|
||||
|
||||
#: [publish]title
|
||||
msgid "Publish"
|
||||
msgstr ""
|
||||
|
@ -1879,6 +1883,10 @@ msgstr ""
|
|||
msgid "Room"
|
||||
msgstr ""
|
||||
|
||||
#: [page]tag
|
||||
msgid "Tag"
|
||||
msgstr ""
|
||||
|
||||
#: [error]error
|
||||
msgid "Error: %s"
|
||||
msgstr ""
|
||||
|
|
|
@ -93,7 +93,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Movim\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-10-06 23:33+0200\n"
|
||||
"POT-Creation-Date: 2015-12-29 13:42+0200\n"
|
||||
"PO-Revision-Date: 2012-07-19 13:34+0000\n"
|
||||
"Last-Translator: Sampo Harjula <sahtor@sahtor.net>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
@ -208,6 +208,10 @@ msgstr ""
|
|||
msgid "Loading"
|
||||
msgstr ""
|
||||
|
||||
#: [create]placeholder
|
||||
msgid "…and start playing"
|
||||
msgstr ""
|
||||
|
||||
#: [error]not_acceptable
|
||||
msgid "Not Acceptable"
|
||||
msgstr ""
|
||||
|
@ -262,7 +266,7 @@ msgstr ""
|
|||
|
||||
#: [db]name
|
||||
#, fuzzy
|
||||
msgid "Database sName"
|
||||
msgid "Database Name"
|
||||
msgstr "Tietokanta tunnistettu"
|
||||
|
||||
#: [admin]general
|
||||
|
@ -373,14 +377,6 @@ msgstr ""
|
|||
msgid "Syslog and files"
|
||||
msgstr ""
|
||||
|
||||
#: [rewrite]title
|
||||
msgid "URL Rewriting"
|
||||
msgstr ""
|
||||
|
||||
#: [rewrite]info
|
||||
msgid "The URL Rewriting can be enabled"
|
||||
msgstr ""
|
||||
|
||||
#: [admin]compatibility
|
||||
msgid "General Overview"
|
||||
msgstr ""
|
||||
|
@ -414,10 +410,6 @@ msgstr ""
|
|||
msgid "Read and write rights for the webserver in Movims root directory"
|
||||
msgstr "kirjoitus- ja lukuoikeudet Movim-juurihakemistoon"
|
||||
|
||||
#: [compatibility]rewrite
|
||||
msgid "The URL Rewriting support is currently disabled"
|
||||
msgstr ""
|
||||
|
||||
#: [compatibility]db
|
||||
msgid "The database need to be updated, go to the database panel to fix this"
|
||||
msgstr ""
|
||||
|
@ -502,6 +494,10 @@ msgstr ""
|
|||
msgid "Avatar Not Updated"
|
||||
msgstr ""
|
||||
|
||||
#: [avatar]missing
|
||||
msgid "No avatar defined yet"
|
||||
msgstr ""
|
||||
|
||||
#: [blog]title [feed]title
|
||||
msgid "%s's feed"
|
||||
msgstr ""
|
||||
|
@ -510,6 +506,10 @@ msgstr ""
|
|||
msgid "This user has not posted anything right now"
|
||||
msgstr ""
|
||||
|
||||
#: [blog]private
|
||||
msgid "This content is private, please login to see it"
|
||||
msgstr ""
|
||||
|
||||
#: [title]conferences
|
||||
msgid "Conferences"
|
||||
msgstr ""
|
||||
|
@ -594,6 +594,10 @@ msgstr ""
|
|||
msgid "Contact gone"
|
||||
msgstr ""
|
||||
|
||||
#: [message]history
|
||||
msgid "%s messages retrieved"
|
||||
msgstr ""
|
||||
|
||||
#: [chat]attention
|
||||
msgid "%s needs your attention"
|
||||
msgstr ""
|
||||
|
@ -651,7 +655,7 @@ msgid "No chats yet..."
|
|||
msgstr ""
|
||||
|
||||
#: [chats]empty
|
||||
msgid "Open a new conversation by clicking on the %s button bellow or visit the %s Contacts%s page."
|
||||
msgid "Open a new conversation by clicking on the %s button bellow or visit the %sContacts%s page."
|
||||
msgstr ""
|
||||
|
||||
#: [chats]add
|
||||
|
@ -706,9 +710,15 @@ msgstr ""
|
|||
msgid "Appearence"
|
||||
msgstr ""
|
||||
|
||||
#: [config]info
|
||||
msgid "This configuration is shared wherever you are connected"
|
||||
msgstr ""
|
||||
#: [config]not_valid
|
||||
#, fuzzy
|
||||
msgid "Configuration invalid"
|
||||
msgstr "Asetukset"
|
||||
|
||||
#: [config]advanced
|
||||
#, fuzzy
|
||||
msgid "Advanced Configuration"
|
||||
msgstr "Asetukset"
|
||||
|
||||
#: [notifications]message
|
||||
msgid "Notify on incoming message"
|
||||
|
@ -718,6 +728,10 @@ msgstr ""
|
|||
msgid "Use desktop notifications"
|
||||
msgstr ""
|
||||
|
||||
#: [cssurl]label
|
||||
msgid "Custom CSS URL for your blog"
|
||||
msgstr ""
|
||||
|
||||
#: [general]legend [general]general_title
|
||||
msgid "General Informations"
|
||||
msgstr "Perustiedot"
|
||||
|
@ -830,6 +844,10 @@ msgstr ""
|
|||
msgid "Last public post"
|
||||
msgstr ""
|
||||
|
||||
#: [blog]visit
|
||||
msgid "Visit the blog to see all the public posts"
|
||||
msgstr ""
|
||||
|
||||
#: [subscription]to
|
||||
#, fuzzy
|
||||
msgid "You can see this contact status"
|
||||
|
@ -1016,18 +1034,6 @@ msgstr ""
|
|||
msgid "This server doesn't exists"
|
||||
msgstr "Tämä palvelin ylläpitää %s käyttäjätiliä"
|
||||
|
||||
#: [menu]all
|
||||
msgid "All"
|
||||
msgstr "Kaikki"
|
||||
|
||||
#: [menu]refresh
|
||||
msgid "Refresh all the streams"
|
||||
msgstr ""
|
||||
|
||||
#: [menu]me
|
||||
msgid "My publications"
|
||||
msgstr ""
|
||||
|
||||
#: [roster]search
|
||||
msgid "Search in your contacts"
|
||||
msgstr ""
|
||||
|
@ -1133,7 +1139,7 @@ msgid "Chat with the team ?"
|
|||
msgstr ""
|
||||
|
||||
#: [chatroom]button
|
||||
msgid "Join the Chatroom"
|
||||
msgid "Add the chatroom"
|
||||
msgstr ""
|
||||
|
||||
#: [init]location
|
||||
|
@ -1225,10 +1231,6 @@ msgstr ""
|
|||
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 ""
|
||||
|
@ -1311,13 +1313,17 @@ msgid "Welcome on your news feed, here you will see all the posts published by y
|
|||
msgstr ""
|
||||
|
||||
#: [menu]refresh
|
||||
msgid "Refreshing all the streams"
|
||||
msgid "Refresh all the streams"
|
||||
msgstr ""
|
||||
|
||||
#: [menu]public
|
||||
msgid "This post is public"
|
||||
msgstr ""
|
||||
|
||||
#: [menu]all
|
||||
msgid "All"
|
||||
msgstr "Kaikki"
|
||||
|
||||
#: [affiliations]title
|
||||
msgid "Manage your members"
|
||||
msgstr ""
|
||||
|
@ -1354,10 +1360,6 @@ msgstr ""
|
|||
msgid "%s wants to talk with you"
|
||||
msgstr ""
|
||||
|
||||
#: [notifs]manage
|
||||
msgid "Manage"
|
||||
msgstr ""
|
||||
|
||||
#: [post]news_feed
|
||||
msgid "News Feed"
|
||||
msgstr ""
|
||||
|
@ -1402,12 +1404,12 @@ msgstr ""
|
|||
msgid "Publish this post publicly?"
|
||||
msgstr ""
|
||||
|
||||
#: [post]blog_add
|
||||
msgid "Post published on your blog"
|
||||
#: [post]public_yes
|
||||
msgid "This post is now public"
|
||||
msgstr ""
|
||||
|
||||
#: [post]blog_remove
|
||||
msgid "Post removed from your blog"
|
||||
#: [post]public_no
|
||||
msgid "This post is now private"
|
||||
msgstr ""
|
||||
|
||||
#: [post]delete_title [post]delete
|
||||
|
@ -1418,6 +1420,10 @@ msgstr ""
|
|||
msgid "You are going to delete this post, please confirm your action"
|
||||
msgstr ""
|
||||
|
||||
#: [post]discover
|
||||
msgid "Discover more articles on the Groups page"
|
||||
msgstr ""
|
||||
|
||||
#: [post]comments_disabled
|
||||
msgid "Comments disabled"
|
||||
msgstr ""
|
||||
|
@ -1482,10 +1488,6 @@ msgstr ""
|
|||
msgid "This picture will be added to your gallery"
|
||||
msgstr ""
|
||||
|
||||
#: [post]embed_tip
|
||||
msgid "You can also use services like Imgur or Flickr to host your picture and paste the link here."
|
||||
msgstr ""
|
||||
|
||||
#: [publish]valid_url
|
||||
msgid "Please enter a valid url"
|
||||
msgstr ""
|
||||
|
@ -1498,6 +1500,10 @@ msgstr ""
|
|||
msgid "Please provide a title"
|
||||
msgstr ""
|
||||
|
||||
#: [publish]edit
|
||||
msgid "Edit post"
|
||||
msgstr ""
|
||||
|
||||
#: [publish]title
|
||||
msgid "Publish"
|
||||
msgstr ""
|
||||
|
@ -1891,6 +1897,10 @@ msgstr ""
|
|||
msgid "Room"
|
||||
msgstr ""
|
||||
|
||||
#: [page]tag
|
||||
msgid "Tag"
|
||||
msgstr ""
|
||||
|
||||
#: [error]error
|
||||
msgid "Error: %s"
|
||||
msgstr "Virhe: %s"
|
||||
|
@ -2749,6 +2759,9 @@ msgstr ""
|
|||
msgid "Type here"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Your web browser is too old to use with Movim."
|
||||
#~ msgstr "Selaimesi on liian vanha Movimille, lataa uudempi"
|
||||
|
||||
#, fuzzy
|
||||
#~ msgid "Active contacts"
|
||||
#~ msgstr "Toimenpiteet"
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
#
|
||||
# Translators:
|
||||
# Cypouz, 2015
|
||||
# Éfrit, 2015
|
||||
# Jaussoin Timothée <edhelas@movim.eu>, 2015
|
||||
# Maxime Buquet <tidusx62@gmail.com>, 2015
|
||||
|
@ -97,8 +98,8 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: movim\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-10-06 23:33+0200\n"
|
||||
"PO-Revision-Date: 2015-10-08 06:51+0000\n"
|
||||
"POT-Creation-Date: 2015-12-29 13:42+0200\n"
|
||||
"PO-Revision-Date: 2015-12-29 12:51+0000\n"
|
||||
"Last-Translator: Jaussoin Timothée <edhelas@movim.eu>\n"
|
||||
"Language-Team: French (France) (http://www.transifex.com/movim/movim/language/fr_FR/)\n"
|
||||
"Language: fr_FR\n"
|
||||
|
@ -209,6 +210,10 @@ msgstr "Compte créé avec succès"
|
|||
msgid "Loading"
|
||||
msgstr "Chargement"
|
||||
|
||||
#: [create]placeholder
|
||||
msgid "…and start playing"
|
||||
msgstr "…et amusez-vous"
|
||||
|
||||
#: [error]not_acceptable
|
||||
msgid "Not Acceptable"
|
||||
msgstr "Non acceptable"
|
||||
|
@ -262,8 +267,8 @@ msgid "Port"
|
|||
msgstr "Port"
|
||||
|
||||
#: [db]name
|
||||
msgid "Database sName"
|
||||
msgstr ""
|
||||
msgid "Database Name"
|
||||
msgstr "Nom de la base de données"
|
||||
|
||||
#: [admin]general
|
||||
msgid "General Settings"
|
||||
|
@ -371,14 +376,6 @@ msgstr "Journal système (syslog)"
|
|||
msgid "Syslog and files"
|
||||
msgstr "Journal système et fichiers"
|
||||
|
||||
#: [rewrite]title
|
||||
msgid "URL Rewriting"
|
||||
msgstr "Réécriture d’URL"
|
||||
|
||||
#: [rewrite]info
|
||||
msgid "The URL Rewriting can be enabled"
|
||||
msgstr "La réécriture d’URL peut être activée"
|
||||
|
||||
#: [admin]compatibility
|
||||
msgid "General Overview"
|
||||
msgstr "Aperçu général"
|
||||
|
@ -411,10 +408,6 @@ msgstr "Installez la librairie php5-gd"
|
|||
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"
|
||||
|
||||
#: [compatibility]rewrite
|
||||
msgid "The URL Rewriting support is currently disabled"
|
||||
msgstr "Le support des URI simplifiées (URL Rewriting) est actuellement désactivé"
|
||||
|
||||
#: [compatibility]db
|
||||
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"
|
||||
|
@ -499,6 +492,10 @@ msgstr "Avatar mis à jour"
|
|||
msgid "Avatar Not Updated"
|
||||
msgstr "Avatar non mis à jour"
|
||||
|
||||
#: [avatar]missing
|
||||
msgid "No avatar defined yet"
|
||||
msgstr "Aucun avatar définit pour le moment"
|
||||
|
||||
#: [blog]title [feed]title
|
||||
msgid "%s's feed"
|
||||
msgstr "Flux de %s"
|
||||
|
@ -507,6 +504,10 @@ msgstr "Flux de %s"
|
|||
msgid "This user has not posted anything right now"
|
||||
msgstr "Cet utilisateur n’a rien publié pour le moment"
|
||||
|
||||
#: [blog]private
|
||||
msgid "This content is private, please login to see it"
|
||||
msgstr "Ce contenu est privé, veuillez vous connecter pour le consulter"
|
||||
|
||||
#: [title]conferences
|
||||
msgid "Conferences"
|
||||
msgstr "Conférences"
|
||||
|
@ -589,6 +590,10 @@ msgstr "En pause…"
|
|||
msgid "Contact gone"
|
||||
msgstr "Le contact est absent pour le moment"
|
||||
|
||||
#: [message]history
|
||||
msgid "%s messages retrieved"
|
||||
msgstr "%s messages récupérés"
|
||||
|
||||
#: [chat]attention
|
||||
msgid "%s needs your attention"
|
||||
msgstr "%s a besoin de votre attention"
|
||||
|
@ -646,8 +651,8 @@ msgid "No chats yet..."
|
|||
msgstr "Pas de discussions pour le moment"
|
||||
|
||||
#: [chats]empty
|
||||
msgid "Open a new conversation by clicking on the %s button bellow or visit the %s Contacts%s page."
|
||||
msgstr "Commencez une nouvelle conversation en cliquant sur le bouton plus ci-dessous ou visitez la page %s Contacts%s."
|
||||
msgid "Open a new conversation by clicking on the %s button bellow or visit the %sContacts%s page."
|
||||
msgstr "Commencez une nouvelle conversation en cliquant sur le bouton %s ci-dessous ou visitez la page %sContacts%s."
|
||||
|
||||
#: [chats]add
|
||||
msgid "Chat with a contact"
|
||||
|
@ -701,9 +706,13 @@ msgstr "Cacher les contacts hors ligne"
|
|||
msgid "Appearence"
|
||||
msgstr "Apparence"
|
||||
|
||||
#: [config]info
|
||||
msgid "This configuration is shared wherever you are connected"
|
||||
msgstr "Cette configuration est partagée partout où vous vous connectez !"
|
||||
#: [config]not_valid
|
||||
msgid "Configuration invalid"
|
||||
msgstr "Configuration non valide"
|
||||
|
||||
#: [config]advanced
|
||||
msgid "Advanced Configuration"
|
||||
msgstr "Configuration avancée"
|
||||
|
||||
#: [notifications]message
|
||||
msgid "Notify on incoming message"
|
||||
|
@ -713,6 +722,10 @@ msgstr "Notifier lors d’un message entrant"
|
|||
msgid "Use desktop notifications"
|
||||
msgstr "Utiliser les notifications bureau"
|
||||
|
||||
#: [cssurl]label
|
||||
msgid "Custom CSS URL for your blog"
|
||||
msgstr "URL CSS personnalisée pour votre blog"
|
||||
|
||||
#: [general]legend [general]general_title
|
||||
msgid "General Informations"
|
||||
msgstr "Informations générales"
|
||||
|
@ -825,6 +838,10 @@ msgstr "%s ans"
|
|||
msgid "Last public post"
|
||||
msgstr "Derniers billets public"
|
||||
|
||||
#: [blog]visit
|
||||
msgid "Visit the blog to see all the public posts"
|
||||
msgstr "Visiter le blog pour voir tous les billets publiques"
|
||||
|
||||
#: [subscription]to
|
||||
msgid "You can see this contact status"
|
||||
msgstr "Vous pouvez voir l'état de ce contact"
|
||||
|
@ -835,7 +852,7 @@ msgstr "Partager mon état"
|
|||
|
||||
#: [subscription]to_text
|
||||
msgid "But this contact cannot see yours"
|
||||
msgstr "Mais ce contact ne peux pas voir le votre"
|
||||
msgstr "Mais ce contact ne peut pas voir le vôtre"
|
||||
|
||||
#: [subscription]from
|
||||
msgid "You are not subscribed to this contact"
|
||||
|
@ -1009,18 +1026,6 @@ msgstr "%s billets"
|
|||
msgid "This server doesn't exists"
|
||||
msgstr "Ce serveur n'existe pas"
|
||||
|
||||
#: [menu]all
|
||||
msgid "All"
|
||||
msgstr "Tous"
|
||||
|
||||
#: [menu]refresh
|
||||
msgid "Refresh all the streams"
|
||||
msgstr "Rafraîchir tous les flux"
|
||||
|
||||
#: [menu]me
|
||||
msgid "My publications"
|
||||
msgstr "Mes publications"
|
||||
|
||||
#: [roster]search
|
||||
msgid "Search in your contacts"
|
||||
msgstr "Chercher dans vos contacts "
|
||||
|
@ -1126,8 +1131,8 @@ msgid "Chat with the team ?"
|
|||
msgstr "Discuter avec l’équipe ?"
|
||||
|
||||
#: [chatroom]button
|
||||
msgid "Join the Chatroom"
|
||||
msgstr "Rejoindre le salon de discussion"
|
||||
msgid "Add the chatroom"
|
||||
msgstr "Ajouter le salon de discussion"
|
||||
|
||||
#: [init]location
|
||||
msgid "Location node created"
|
||||
|
@ -1218,10 +1223,6 @@ msgstr "Votre compte XMPP n’est pas autorisé à se connecter"
|
|||
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)"
|
||||
|
@ -1304,13 +1305,17 @@ msgid "Welcome on your news feed, here you will see all the posts published by y
|
|||
msgstr "Bienvenue sur votre flux d’actualité, ici vous verrez toutes les publications des groupes auxquels vous vous êtes abonnés ainsi que celles de vos contacts."
|
||||
|
||||
#: [menu]refresh
|
||||
msgid "Refreshing all the streams"
|
||||
msgid "Refresh all the streams"
|
||||
msgstr "Rafraîchir tous les flux"
|
||||
|
||||
#: [menu]public
|
||||
msgid "This post is public"
|
||||
msgstr "Ce billet est public"
|
||||
|
||||
#: [menu]all
|
||||
msgid "All"
|
||||
msgstr "Tous"
|
||||
|
||||
#: [affiliations]title
|
||||
msgid "Manage your members"
|
||||
msgstr "Gérer vos membres"
|
||||
|
@ -1347,10 +1352,6 @@ msgstr "Invitations en attente"
|
|||
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é"
|
||||
|
@ -1395,13 +1396,13 @@ msgstr "Voir le profil de %s"
|
|||
msgid "Publish this post publicly?"
|
||||
msgstr "Publier ce billet publiquement?"
|
||||
|
||||
#: [post]blog_add
|
||||
msgid "Post published on your blog"
|
||||
msgstr "Billet publié sur votre blog"
|
||||
#: [post]public_yes
|
||||
msgid "This post is now public"
|
||||
msgstr "Ce billet est désormais publique"
|
||||
|
||||
#: [post]blog_remove
|
||||
msgid "Post removed from your blog"
|
||||
msgstr "Billet retiré de votre blog"
|
||||
#: [post]public_no
|
||||
msgid "This post is now private"
|
||||
msgstr "Ce billet est désormais privé"
|
||||
|
||||
#: [post]delete_title [post]delete
|
||||
msgid "Delete this post"
|
||||
|
@ -1411,6 +1412,10 @@ msgstr "Supprimer ce billet"
|
|||
msgid "You are going to delete this post, please confirm your action"
|
||||
msgstr "Vous allez supprimer ce billet, veuillez confirmer votre action."
|
||||
|
||||
#: [post]discover
|
||||
msgid "Discover more articles on the Groups page"
|
||||
msgstr "Découvrez plus de publications sur la page Actualité"
|
||||
|
||||
#: [post]comments_disabled
|
||||
msgid "Comments disabled"
|
||||
msgstr "Commentaires désactivés."
|
||||
|
@ -1475,10 +1480,6 @@ msgstr "Étiquettes"
|
|||
msgid "This picture will be added to your gallery"
|
||||
msgstr "Cette image va être ajoutée à votre galerie"
|
||||
|
||||
#: [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."
|
||||
|
||||
#: [publish]valid_url
|
||||
msgid "Please enter a valid url"
|
||||
msgstr "Veuillez entrer une URL valide"
|
||||
|
@ -1491,6 +1492,10 @@ msgstr "Pas de contenu à afficher"
|
|||
msgid "Please provide a title"
|
||||
msgstr "Veuillez mettre un titre à votre publication"
|
||||
|
||||
#: [publish]edit
|
||||
msgid "Edit post"
|
||||
msgstr "Éditer le billet"
|
||||
|
||||
#: [publish]title
|
||||
msgid "Publish"
|
||||
msgstr "Publier"
|
||||
|
@ -1533,7 +1538,7 @@ msgstr "Vous n'avez pas encore de salon de discussions."
|
|||
|
||||
#: [rooms]empty_text2
|
||||
msgid "Add one by clicking on the add button."
|
||||
msgstr ""
|
||||
msgstr "Ajoutez en un en cliquant sur le bouton ajouter."
|
||||
|
||||
#: [chatrooms]title
|
||||
msgid "Chatrooms"
|
||||
|
@ -1881,6 +1886,10 @@ msgstr "Partager"
|
|||
msgid "Room"
|
||||
msgstr "Salon"
|
||||
|
||||
#: [page]tag
|
||||
msgid "Tag"
|
||||
msgstr "Étiquette"
|
||||
|
||||
#: [error]error
|
||||
msgid "Error: %s"
|
||||
msgstr "Erreur : %s"
|
||||
|
|
|
@ -93,7 +93,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Movim\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-10-06 23:33+0200\n"
|
||||
"POT-Creation-Date: 2015-12-29 13:42+0200\n"
|
||||
"PO-Revision-Date: 2014-06-01 23:06+0000\n"
|
||||
"Last-Translator: Daniel-san <inad9300@gmail.com>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
@ -207,6 +207,10 @@ msgstr ""
|
|||
msgid "Loading"
|
||||
msgstr ""
|
||||
|
||||
#: [create]placeholder
|
||||
msgid "…and start playing"
|
||||
msgstr ""
|
||||
|
||||
#: [error]not_acceptable
|
||||
msgid "Not Acceptable"
|
||||
msgstr ""
|
||||
|
@ -260,7 +264,7 @@ msgid "Port"
|
|||
msgstr ""
|
||||
|
||||
#: [db]name
|
||||
msgid "Database sName"
|
||||
msgid "Database Name"
|
||||
msgstr ""
|
||||
|
||||
#: [admin]general
|
||||
|
@ -369,14 +373,6 @@ msgstr ""
|
|||
msgid "Syslog and files"
|
||||
msgstr ""
|
||||
|
||||
#: [rewrite]title
|
||||
msgid "URL Rewriting"
|
||||
msgstr ""
|
||||
|
||||
#: [rewrite]info
|
||||
msgid "The URL Rewriting can be enabled"
|
||||
msgstr ""
|
||||
|
||||
#: [admin]compatibility
|
||||
msgid "General Overview"
|
||||
msgstr ""
|
||||
|
@ -409,10 +405,6 @@ msgstr ""
|
|||
msgid "Read and write rights for the webserver in Movims root directory"
|
||||
msgstr ""
|
||||
|
||||
#: [compatibility]rewrite
|
||||
msgid "The URL Rewriting support is currently disabled"
|
||||
msgstr ""
|
||||
|
||||
#: [compatibility]db
|
||||
msgid "The database need to be updated, go to the database panel to fix this"
|
||||
msgstr ""
|
||||
|
@ -497,6 +489,10 @@ msgstr ""
|
|||
msgid "Avatar Not Updated"
|
||||
msgstr ""
|
||||
|
||||
#: [avatar]missing
|
||||
msgid "No avatar defined yet"
|
||||
msgstr ""
|
||||
|
||||
#: [blog]title [feed]title
|
||||
msgid "%s's feed"
|
||||
msgstr ""
|
||||
|
@ -505,6 +501,10 @@ msgstr ""
|
|||
msgid "This user has not posted anything right now"
|
||||
msgstr ""
|
||||
|
||||
#: [blog]private
|
||||
msgid "This content is private, please login to see it"
|
||||
msgstr ""
|
||||
|
||||
#: [title]conferences
|
||||
msgid "Conferences"
|
||||
msgstr ""
|
||||
|
@ -587,6 +587,10 @@ msgstr ""
|
|||
msgid "Contact gone"
|
||||
msgstr ""
|
||||
|
||||
#: [message]history
|
||||
msgid "%s messages retrieved"
|
||||
msgstr ""
|
||||
|
||||
#: [chat]attention
|
||||
msgid "%s needs your attention"
|
||||
msgstr ""
|
||||
|
@ -644,7 +648,7 @@ msgid "No chats yet..."
|
|||
msgstr ""
|
||||
|
||||
#: [chats]empty
|
||||
msgid "Open a new conversation by clicking on the %s button bellow or visit the %s Contacts%s page."
|
||||
msgid "Open a new conversation by clicking on the %s button bellow or visit the %sContacts%s page."
|
||||
msgstr ""
|
||||
|
||||
#: [chats]add
|
||||
|
@ -699,9 +703,15 @@ msgstr ""
|
|||
msgid "Appearence"
|
||||
msgstr ""
|
||||
|
||||
#: [config]info
|
||||
msgid "This configuration is shared wherever you are connected"
|
||||
msgstr ""
|
||||
#: [config]not_valid
|
||||
#, fuzzy
|
||||
msgid "Configuration invalid"
|
||||
msgstr "Configuración"
|
||||
|
||||
#: [config]advanced
|
||||
#, fuzzy
|
||||
msgid "Advanced Configuration"
|
||||
msgstr "Configuración"
|
||||
|
||||
#: [notifications]message
|
||||
msgid "Notify on incoming message"
|
||||
|
@ -711,6 +721,10 @@ msgstr ""
|
|||
msgid "Use desktop notifications"
|
||||
msgstr ""
|
||||
|
||||
#: [cssurl]label
|
||||
msgid "Custom CSS URL for your blog"
|
||||
msgstr ""
|
||||
|
||||
#: [general]legend [general]general_title
|
||||
msgid "General Informations"
|
||||
msgstr ""
|
||||
|
@ -823,6 +837,10 @@ msgstr ""
|
|||
msgid "Last public post"
|
||||
msgstr ""
|
||||
|
||||
#: [blog]visit
|
||||
msgid "Visit the blog to see all the public posts"
|
||||
msgstr ""
|
||||
|
||||
#: [subscription]to
|
||||
msgid "You can see this contact status"
|
||||
msgstr ""
|
||||
|
@ -1007,18 +1025,6 @@ msgstr ""
|
|||
msgid "This server doesn't exists"
|
||||
msgstr ""
|
||||
|
||||
#: [menu]all
|
||||
msgid "All"
|
||||
msgstr ""
|
||||
|
||||
#: [menu]refresh
|
||||
msgid "Refresh all the streams"
|
||||
msgstr ""
|
||||
|
||||
#: [menu]me
|
||||
msgid "My publications"
|
||||
msgstr ""
|
||||
|
||||
#: [roster]search
|
||||
msgid "Search in your contacts"
|
||||
msgstr ""
|
||||
|
@ -1124,7 +1130,7 @@ msgid "Chat with the team ?"
|
|||
msgstr ""
|
||||
|
||||
#: [chatroom]button
|
||||
msgid "Join the Chatroom"
|
||||
msgid "Add the chatroom"
|
||||
msgstr ""
|
||||
|
||||
#: [init]location
|
||||
|
@ -1216,10 +1222,6 @@ msgstr ""
|
|||
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 ""
|
||||
|
@ -1302,13 +1304,17 @@ msgid "Welcome on your news feed, here you will see all the posts published by y
|
|||
msgstr ""
|
||||
|
||||
#: [menu]refresh
|
||||
msgid "Refreshing all the streams"
|
||||
msgid "Refresh all the streams"
|
||||
msgstr ""
|
||||
|
||||
#: [menu]public
|
||||
msgid "This post is public"
|
||||
msgstr ""
|
||||
|
||||
#: [menu]all
|
||||
msgid "All"
|
||||
msgstr ""
|
||||
|
||||
#: [affiliations]title
|
||||
msgid "Manage your members"
|
||||
msgstr ""
|
||||
|
@ -1345,10 +1351,6 @@ msgstr ""
|
|||
msgid "%s wants to talk with you"
|
||||
msgstr ""
|
||||
|
||||
#: [notifs]manage
|
||||
msgid "Manage"
|
||||
msgstr ""
|
||||
|
||||
#: [post]news_feed
|
||||
msgid "News Feed"
|
||||
msgstr ""
|
||||
|
@ -1393,12 +1395,12 @@ msgstr ""
|
|||
msgid "Publish this post publicly?"
|
||||
msgstr ""
|
||||
|
||||
#: [post]blog_add
|
||||
msgid "Post published on your blog"
|
||||
#: [post]public_yes
|
||||
msgid "This post is now public"
|
||||
msgstr ""
|
||||
|
||||
#: [post]blog_remove
|
||||
msgid "Post removed from your blog"
|
||||
#: [post]public_no
|
||||
msgid "This post is now private"
|
||||
msgstr ""
|
||||
|
||||
#: [post]delete_title [post]delete
|
||||
|
@ -1409,6 +1411,10 @@ msgstr ""
|
|||
msgid "You are going to delete this post, please confirm your action"
|
||||
msgstr ""
|
||||
|
||||
#: [post]discover
|
||||
msgid "Discover more articles on the Groups page"
|
||||
msgstr ""
|
||||
|
||||
#: [post]comments_disabled
|
||||
msgid "Comments disabled"
|
||||
msgstr ""
|
||||
|
@ -1473,10 +1479,6 @@ msgstr ""
|
|||
msgid "This picture will be added to your gallery"
|
||||
msgstr ""
|
||||
|
||||
#: [post]embed_tip
|
||||
msgid "You can also use services like Imgur or Flickr to host your picture and paste the link here."
|
||||
msgstr ""
|
||||
|
||||
#: [publish]valid_url
|
||||
msgid "Please enter a valid url"
|
||||
msgstr ""
|
||||
|
@ -1489,6 +1491,10 @@ msgstr ""
|
|||
msgid "Please provide a title"
|
||||
msgstr ""
|
||||
|
||||
#: [publish]edit
|
||||
msgid "Edit post"
|
||||
msgstr ""
|
||||
|
||||
#: [publish]title
|
||||
msgid "Publish"
|
||||
msgstr ""
|
||||
|
@ -1879,6 +1885,10 @@ msgstr ""
|
|||
msgid "Room"
|
||||
msgstr ""
|
||||
|
||||
#: [page]tag
|
||||
msgid "Tag"
|
||||
msgstr ""
|
||||
|
||||
#: [error]error
|
||||
msgid "Error: %s"
|
||||
msgstr ""
|
||||
|
|
|
@ -93,8 +93,8 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: movim\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-10-06 23:33+0200\n"
|
||||
"PO-Revision-Date: 2015-10-06 21:34+0000\n"
|
||||
"POT-Creation-Date: 2015-12-29 13:42+0200\n"
|
||||
"PO-Revision-Date: 2015-12-29 12:43+0000\n"
|
||||
"Last-Translator: Jaussoin Timothée <edhelas@movim.eu>\n"
|
||||
"Language-Team: Hebrew (http://www.transifex.com/movim/movim/language/he/)\n"
|
||||
"Language: he\n"
|
||||
|
@ -205,6 +205,10 @@ msgstr ""
|
|||
msgid "Loading"
|
||||
msgstr ""
|
||||
|
||||
#: [create]placeholder
|
||||
msgid "…and start playing"
|
||||
msgstr ""
|
||||
|
||||
#: [error]not_acceptable
|
||||
msgid "Not Acceptable"
|
||||
msgstr ""
|
||||
|
@ -258,7 +262,7 @@ msgid "Port"
|
|||
msgstr "פורט"
|
||||
|
||||
#: [db]name
|
||||
msgid "Database sName"
|
||||
msgid "Database Name"
|
||||
msgstr ""
|
||||
|
||||
#: [admin]general
|
||||
|
@ -367,14 +371,6 @@ msgstr "יומן מערכת"
|
|||
msgid "Syslog and files"
|
||||
msgstr "יומן מערכת וקבצים"
|
||||
|
||||
#: [rewrite]title
|
||||
msgid "URL Rewriting"
|
||||
msgstr ""
|
||||
|
||||
#: [rewrite]info
|
||||
msgid "The URL Rewriting can be enabled"
|
||||
msgstr ""
|
||||
|
||||
#: [admin]compatibility
|
||||
msgid "General Overview"
|
||||
msgstr "סקירה כללית"
|
||||
|
@ -407,10 +403,6 @@ msgstr ""
|
|||
msgid "Read and write rights for the webserver in Movims root directory"
|
||||
msgstr ""
|
||||
|
||||
#: [compatibility]rewrite
|
||||
msgid "The URL Rewriting support is currently disabled"
|
||||
msgstr ""
|
||||
|
||||
#: [compatibility]db
|
||||
msgid "The database need to be updated, go to the database panel to fix this"
|
||||
msgstr ""
|
||||
|
@ -495,6 +487,10 @@ msgstr "אווטאר עודכן"
|
|||
msgid "Avatar Not Updated"
|
||||
msgstr "אווטאר לא מעודכן"
|
||||
|
||||
#: [avatar]missing
|
||||
msgid "No avatar defined yet"
|
||||
msgstr ""
|
||||
|
||||
#: [blog]title [feed]title
|
||||
msgid "%s's feed"
|
||||
msgstr "הערוץ של %s"
|
||||
|
@ -503,6 +499,10 @@ msgstr "הערוץ של %s"
|
|||
msgid "This user has not posted anything right now"
|
||||
msgstr ""
|
||||
|
||||
#: [blog]private
|
||||
msgid "This content is private, please login to see it"
|
||||
msgstr ""
|
||||
|
||||
#: [title]conferences
|
||||
msgid "Conferences"
|
||||
msgstr "ועידות"
|
||||
|
@ -585,6 +585,10 @@ msgstr "מושהה..."
|
|||
msgid "Contact gone"
|
||||
msgstr ""
|
||||
|
||||
#: [message]history
|
||||
msgid "%s messages retrieved"
|
||||
msgstr ""
|
||||
|
||||
#: [chat]attention
|
||||
msgid "%s needs your attention"
|
||||
msgstr "%s רוצה את צומת ליבך"
|
||||
|
@ -642,7 +646,7 @@ msgid "No chats yet..."
|
|||
msgstr ""
|
||||
|
||||
#: [chats]empty
|
||||
msgid "Open a new conversation by clicking on the %s button bellow or visit the %s Contacts%s page."
|
||||
msgid "Open a new conversation by clicking on the %s button bellow or visit the %sContacts%s page."
|
||||
msgstr ""
|
||||
|
||||
#: [chats]add
|
||||
|
@ -697,8 +701,12 @@ msgstr ""
|
|||
msgid "Appearence"
|
||||
msgstr "חזות"
|
||||
|
||||
#: [config]info
|
||||
msgid "This configuration is shared wherever you are connected"
|
||||
#: [config]not_valid
|
||||
msgid "Configuration invalid"
|
||||
msgstr ""
|
||||
|
||||
#: [config]advanced
|
||||
msgid "Advanced Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: [notifications]message
|
||||
|
@ -709,6 +717,10 @@ msgstr "התראה בעת הודעה נכנסת"
|
|||
msgid "Use desktop notifications"
|
||||
msgstr "השתמש בהתראות שולחן עבודה"
|
||||
|
||||
#: [cssurl]label
|
||||
msgid "Custom CSS URL for your blog"
|
||||
msgstr ""
|
||||
|
||||
#: [general]legend [general]general_title
|
||||
msgid "General Informations"
|
||||
msgstr "מידע כללי"
|
||||
|
@ -821,6 +833,10 @@ msgstr ""
|
|||
msgid "Last public post"
|
||||
msgstr ""
|
||||
|
||||
#: [blog]visit
|
||||
msgid "Visit the blog to see all the public posts"
|
||||
msgstr ""
|
||||
|
||||
#: [subscription]to
|
||||
msgid "You can see this contact status"
|
||||
msgstr ""
|
||||
|
@ -1005,18 +1021,6 @@ msgstr ""
|
|||
msgid "This server doesn't exists"
|
||||
msgstr ""
|
||||
|
||||
#: [menu]all
|
||||
msgid "All"
|
||||
msgstr "הכל"
|
||||
|
||||
#: [menu]refresh
|
||||
msgid "Refresh all the streams"
|
||||
msgstr "רענון של כל הזרמים"
|
||||
|
||||
#: [menu]me
|
||||
msgid "My publications"
|
||||
msgstr ""
|
||||
|
||||
#: [roster]search
|
||||
msgid "Search in your contacts"
|
||||
msgstr ""
|
||||
|
@ -1122,8 +1126,8 @@ msgid "Chat with the team ?"
|
|||
msgstr "שיחה עם הצוות ?"
|
||||
|
||||
#: [chatroom]button
|
||||
msgid "Join the Chatroom"
|
||||
msgstr "הצטרף לשיחת קבוצה"
|
||||
msgid "Add the chatroom"
|
||||
msgstr ""
|
||||
|
||||
#: [init]location
|
||||
msgid "Location node created"
|
||||
|
@ -1214,10 +1218,6 @@ msgstr ""
|
|||
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 ""
|
||||
|
@ -1300,13 +1300,17 @@ msgid "Welcome on your news feed, here you will see all the posts published by y
|
|||
msgstr ""
|
||||
|
||||
#: [menu]refresh
|
||||
msgid "Refreshing all the streams"
|
||||
msgid "Refresh all the streams"
|
||||
msgstr "רענון של כל הזרמים"
|
||||
|
||||
#: [menu]public
|
||||
msgid "This post is public"
|
||||
msgstr ""
|
||||
|
||||
#: [menu]all
|
||||
msgid "All"
|
||||
msgstr "הכל"
|
||||
|
||||
#: [affiliations]title
|
||||
msgid "Manage your members"
|
||||
msgstr "נהל את חבריך"
|
||||
|
@ -1343,10 +1347,6 @@ msgstr "הזמנות תלויות ועומדות"
|
|||
msgid "%s wants to talk with you"
|
||||
msgstr "%s רוצה לשוחח עמך"
|
||||
|
||||
#: [notifs]manage
|
||||
msgid "Manage"
|
||||
msgstr "נהל"
|
||||
|
||||
#: [post]news_feed
|
||||
msgid "News Feed"
|
||||
msgstr "הזנת חדשות"
|
||||
|
@ -1391,12 +1391,12 @@ msgstr ""
|
|||
msgid "Publish this post publicly?"
|
||||
msgstr ""
|
||||
|
||||
#: [post]blog_add
|
||||
msgid "Post published on your blog"
|
||||
#: [post]public_yes
|
||||
msgid "This post is now public"
|
||||
msgstr ""
|
||||
|
||||
#: [post]blog_remove
|
||||
msgid "Post removed from your blog"
|
||||
#: [post]public_no
|
||||
msgid "This post is now private"
|
||||
msgstr ""
|
||||
|
||||
#: [post]delete_title [post]delete
|
||||
|
@ -1407,6 +1407,10 @@ msgstr "מחק את פרסום זה"
|
|||
msgid "You are going to delete this post, please confirm your action"
|
||||
msgstr ""
|
||||
|
||||
#: [post]discover
|
||||
msgid "Discover more articles on the Groups page"
|
||||
msgstr ""
|
||||
|
||||
#: [post]comments_disabled
|
||||
msgid "Comments disabled"
|
||||
msgstr ""
|
||||
|
@ -1471,10 +1475,6 @@ msgstr ""
|
|||
msgid "This picture will be added to your gallery"
|
||||
msgstr ""
|
||||
|
||||
#: [post]embed_tip
|
||||
msgid "You can also use services like Imgur or Flickr to host your picture and paste the link here."
|
||||
msgstr ""
|
||||
|
||||
#: [publish]valid_url
|
||||
msgid "Please enter a valid url"
|
||||
msgstr ""
|
||||
|
@ -1487,6 +1487,10 @@ msgstr ""
|
|||
msgid "Please provide a title"
|
||||
msgstr ""
|
||||
|
||||
#: [publish]edit
|
||||
msgid "Edit post"
|
||||
msgstr ""
|
||||
|
||||
#: [publish]title
|
||||
msgid "Publish"
|
||||
msgstr ""
|
||||
|
@ -1877,6 +1881,10 @@ msgstr ""
|
|||
msgid "Room"
|
||||
msgstr ""
|
||||
|
||||
#: [page]tag
|
||||
msgid "Tag"
|
||||
msgstr ""
|
||||
|
||||
#: [error]error
|
||||
msgid "Error: %s"
|
||||
msgstr "שגיאה: %s"
|
||||
|
|
|
@ -95,7 +95,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: movim\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-10-06 23:33+0200\n"
|
||||
"POT-Creation-Date: 2015-12-29 13:42+0200\n"
|
||||
"PO-Revision-Date: 2014-06-22 14:34+0000\n"
|
||||
"Last-Translator: Martina <martina.simicic@gmail.com>\n"
|
||||
"Language-Team: Croatian <hr@li.org>\n"
|
||||
|
@ -207,6 +207,10 @@ msgstr ""
|
|||
msgid "Loading"
|
||||
msgstr ""
|
||||
|
||||
#: [create]placeholder
|
||||
msgid "…and start playing"
|
||||
msgstr ""
|
||||
|
||||
#: [error]not_acceptable
|
||||
msgid "Not Acceptable"
|
||||
msgstr ""
|
||||
|
@ -260,7 +264,7 @@ msgid "Port"
|
|||
msgstr ""
|
||||
|
||||
#: [db]name
|
||||
msgid "Database sName"
|
||||
msgid "Database Name"
|
||||
msgstr ""
|
||||
|
||||
#: [admin]general
|
||||
|
@ -369,14 +373,6 @@ msgstr ""
|
|||
msgid "Syslog and files"
|
||||
msgstr ""
|
||||
|
||||
#: [rewrite]title
|
||||
msgid "URL Rewriting"
|
||||
msgstr ""
|
||||
|
||||
#: [rewrite]info
|
||||
msgid "The URL Rewriting can be enabled"
|
||||
msgstr ""
|
||||
|
||||
#: [admin]compatibility
|
||||
msgid "General Overview"
|
||||
msgstr ""
|
||||
|
@ -409,10 +405,6 @@ msgstr ""
|
|||
msgid "Read and write rights for the webserver in Movims root directory"
|
||||
msgstr ""
|
||||
|
||||
#: [compatibility]rewrite
|
||||
msgid "The URL Rewriting support is currently disabled"
|
||||
msgstr ""
|
||||
|
||||
#: [compatibility]db
|
||||
msgid "The database need to be updated, go to the database panel to fix this"
|
||||
msgstr ""
|
||||
|
@ -497,6 +489,10 @@ msgstr ""
|
|||
msgid "Avatar Not Updated"
|
||||
msgstr ""
|
||||
|
||||
#: [avatar]missing
|
||||
msgid "No avatar defined yet"
|
||||
msgstr ""
|
||||
|
||||
#: [blog]title [feed]title
|
||||
msgid "%s's feed"
|
||||
msgstr ""
|
||||
|
@ -505,6 +501,10 @@ msgstr ""
|
|||
msgid "This user has not posted anything right now"
|
||||
msgstr ""
|
||||
|
||||
#: [blog]private
|
||||
msgid "This content is private, please login to see it"
|
||||
msgstr ""
|
||||
|
||||
#: [title]conferences
|
||||
msgid "Conferences"
|
||||
msgstr ""
|
||||
|
@ -587,6 +587,10 @@ msgstr ""
|
|||
msgid "Contact gone"
|
||||
msgstr ""
|
||||
|
||||
#: [message]history
|
||||
msgid "%s messages retrieved"
|
||||
msgstr ""
|
||||
|
||||
#: [chat]attention
|
||||
msgid "%s needs your attention"
|
||||
msgstr ""
|
||||
|
@ -644,7 +648,7 @@ msgid "No chats yet..."
|
|||
msgstr ""
|
||||
|
||||
#: [chats]empty
|
||||
msgid "Open a new conversation by clicking on the %s button bellow or visit the %s Contacts%s page."
|
||||
msgid "Open a new conversation by clicking on the %s button bellow or visit the %sContacts%s page."
|
||||
msgstr ""
|
||||
|
||||
#: [chats]add
|
||||
|
@ -699,8 +703,12 @@ msgstr ""
|
|||
msgid "Appearence"
|
||||
msgstr ""
|
||||
|
||||
#: [config]info
|
||||
msgid "This configuration is shared wherever you are connected"
|
||||
#: [config]not_valid
|
||||
msgid "Configuration invalid"
|
||||
msgstr ""
|
||||
|
||||
#: [config]advanced
|
||||
msgid "Advanced Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: [notifications]message
|
||||
|
@ -711,6 +719,10 @@ msgstr ""
|
|||
msgid "Use desktop notifications"
|
||||
msgstr ""
|
||||
|
||||
#: [cssurl]label
|
||||
msgid "Custom CSS URL for your blog"
|
||||
msgstr ""
|
||||
|
||||
#: [general]legend [general]general_title
|
||||
msgid "General Informations"
|
||||
msgstr ""
|
||||
|
@ -823,6 +835,10 @@ msgstr ""
|
|||
msgid "Last public post"
|
||||
msgstr ""
|
||||
|
||||
#: [blog]visit
|
||||
msgid "Visit the blog to see all the public posts"
|
||||
msgstr ""
|
||||
|
||||
#: [subscription]to
|
||||
msgid "You can see this contact status"
|
||||
msgstr ""
|
||||
|
@ -1007,18 +1023,6 @@ msgstr ""
|
|||
msgid "This server doesn't exists"
|
||||
msgstr ""
|
||||
|
||||
#: [menu]all
|
||||
msgid "All"
|
||||
msgstr ""
|
||||
|
||||
#: [menu]refresh
|
||||
msgid "Refresh all the streams"
|
||||
msgstr ""
|
||||
|
||||
#: [menu]me
|
||||
msgid "My publications"
|
||||
msgstr ""
|
||||
|
||||
#: [roster]search
|
||||
msgid "Search in your contacts"
|
||||
msgstr ""
|
||||
|
@ -1124,7 +1128,7 @@ msgid "Chat with the team ?"
|
|||
msgstr ""
|
||||
|
||||
#: [chatroom]button
|
||||
msgid "Join the Chatroom"
|
||||
msgid "Add the chatroom"
|
||||
msgstr ""
|
||||
|
||||
#: [init]location
|
||||
|
@ -1216,10 +1220,6 @@ msgstr ""
|
|||
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 ""
|
||||
|
@ -1302,13 +1302,17 @@ msgid "Welcome on your news feed, here you will see all the posts published by y
|
|||
msgstr ""
|
||||
|
||||
#: [menu]refresh
|
||||
msgid "Refreshing all the streams"
|
||||
msgid "Refresh all the streams"
|
||||
msgstr ""
|
||||
|
||||
#: [menu]public
|
||||
msgid "This post is public"
|
||||
msgstr ""
|
||||
|
||||
#: [menu]all
|
||||
msgid "All"
|
||||
msgstr ""
|
||||
|
||||
#: [affiliations]title
|
||||
msgid "Manage your members"
|
||||
msgstr ""
|
||||
|
@ -1345,10 +1349,6 @@ msgstr ""
|
|||
msgid "%s wants to talk with you"
|
||||
msgstr ""
|
||||
|
||||
#: [notifs]manage
|
||||
msgid "Manage"
|
||||
msgstr ""
|
||||
|
||||
#: [post]news_feed
|
||||
msgid "News Feed"
|
||||
msgstr ""
|
||||
|
@ -1393,12 +1393,12 @@ msgstr ""
|
|||
msgid "Publish this post publicly?"
|
||||
msgstr ""
|
||||
|
||||
#: [post]blog_add
|
||||
msgid "Post published on your blog"
|
||||
#: [post]public_yes
|
||||
msgid "This post is now public"
|
||||
msgstr ""
|
||||
|
||||
#: [post]blog_remove
|
||||
msgid "Post removed from your blog"
|
||||
#: [post]public_no
|
||||
msgid "This post is now private"
|
||||
msgstr ""
|
||||
|
||||
#: [post]delete_title [post]delete
|
||||
|
@ -1409,6 +1409,10 @@ msgstr ""
|
|||
msgid "You are going to delete this post, please confirm your action"
|
||||
msgstr ""
|
||||
|
||||
#: [post]discover
|
||||
msgid "Discover more articles on the Groups page"
|
||||
msgstr ""
|
||||
|
||||
#: [post]comments_disabled
|
||||
msgid "Comments disabled"
|
||||
msgstr ""
|
||||
|
@ -1473,10 +1477,6 @@ msgstr ""
|
|||
msgid "This picture will be added to your gallery"
|
||||
msgstr ""
|
||||
|
||||
#: [post]embed_tip
|
||||
msgid "You can also use services like Imgur or Flickr to host your picture and paste the link here."
|
||||
msgstr ""
|
||||
|
||||
#: [publish]valid_url
|
||||
msgid "Please enter a valid url"
|
||||
msgstr ""
|
||||
|
@ -1489,6 +1489,10 @@ msgstr ""
|
|||
msgid "Please provide a title"
|
||||
msgstr ""
|
||||
|
||||
#: [publish]edit
|
||||
msgid "Edit post"
|
||||
msgstr ""
|
||||
|
||||
#: [publish]title
|
||||
msgid "Publish"
|
||||
msgstr ""
|
||||
|
@ -1879,6 +1883,10 @@ msgstr ""
|
|||
msgid "Room"
|
||||
msgstr ""
|
||||
|
||||
#: [page]tag
|
||||
msgid "Tag"
|
||||
msgstr ""
|
||||
|
||||
#: [error]error
|
||||
msgid "Error: %s"
|
||||
msgstr ""
|
||||
|
|
2742
sources/locales/hu.po
Normal file
2742
sources/locales/hu.po
Normal file
File diff suppressed because it is too large
Load diff
|
@ -95,7 +95,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: movim\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-10-06 23:33+0200\n"
|
||||
"POT-Creation-Date: 2015-12-29 13:42+0200\n"
|
||||
"PO-Revision-Date: 2015-06-09 12:21+0000\n"
|
||||
"Last-Translator: edhelas <edhelas@movim.eu>\n"
|
||||
"Language-Team: Indonesian <id@li.org>\n"
|
||||
|
@ -208,6 +208,10 @@ msgstr ""
|
|||
msgid "Loading"
|
||||
msgstr ""
|
||||
|
||||
#: [create]placeholder
|
||||
msgid "…and start playing"
|
||||
msgstr ""
|
||||
|
||||
#: [error]not_acceptable
|
||||
msgid "Not Acceptable"
|
||||
msgstr ""
|
||||
|
@ -261,7 +265,7 @@ msgid "Port"
|
|||
msgstr ""
|
||||
|
||||
#: [db]name
|
||||
msgid "Database sName"
|
||||
msgid "Database Name"
|
||||
msgstr ""
|
||||
|
||||
#: [admin]general
|
||||
|
@ -372,14 +376,6 @@ msgstr ""
|
|||
msgid "Syslog and files"
|
||||
msgstr ""
|
||||
|
||||
#: [rewrite]title
|
||||
msgid "URL Rewriting"
|
||||
msgstr ""
|
||||
|
||||
#: [rewrite]info
|
||||
msgid "The URL Rewriting can be enabled"
|
||||
msgstr ""
|
||||
|
||||
#: [admin]compatibility
|
||||
msgid "General Overview"
|
||||
msgstr ""
|
||||
|
@ -412,10 +408,6 @@ msgstr ""
|
|||
msgid "Read and write rights for the webserver in Movims root directory"
|
||||
msgstr ""
|
||||
|
||||
#: [compatibility]rewrite
|
||||
msgid "The URL Rewriting support is currently disabled"
|
||||
msgstr ""
|
||||
|
||||
#: [compatibility]db
|
||||
msgid "The database need to be updated, go to the database panel to fix this"
|
||||
msgstr ""
|
||||
|
@ -500,6 +492,10 @@ msgstr ""
|
|||
msgid "Avatar Not Updated"
|
||||
msgstr ""
|
||||
|
||||
#: [avatar]missing
|
||||
msgid "No avatar defined yet"
|
||||
msgstr ""
|
||||
|
||||
#: [blog]title [feed]title
|
||||
msgid "%s's feed"
|
||||
msgstr ""
|
||||
|
@ -508,6 +504,10 @@ msgstr ""
|
|||
msgid "This user has not posted anything right now"
|
||||
msgstr ""
|
||||
|
||||
#: [blog]private
|
||||
msgid "This content is private, please login to see it"
|
||||
msgstr ""
|
||||
|
||||
#: [title]conferences
|
||||
msgid "Conferences"
|
||||
msgstr "Konferensi"
|
||||
|
@ -593,6 +593,10 @@ msgstr ""
|
|||
msgid "Contact gone"
|
||||
msgstr ""
|
||||
|
||||
#: [message]history
|
||||
msgid "%s messages retrieved"
|
||||
msgstr ""
|
||||
|
||||
#: [chat]attention
|
||||
msgid "%s needs your attention"
|
||||
msgstr ""
|
||||
|
@ -650,7 +654,7 @@ msgid "No chats yet..."
|
|||
msgstr ""
|
||||
|
||||
#: [chats]empty
|
||||
msgid "Open a new conversation by clicking on the %s button bellow or visit the %s Contacts%s page."
|
||||
msgid "Open a new conversation by clicking on the %s button bellow or visit the %sContacts%s page."
|
||||
msgstr ""
|
||||
|
||||
#: [chats]add
|
||||
|
@ -705,9 +709,15 @@ msgstr ""
|
|||
msgid "Appearence"
|
||||
msgstr ""
|
||||
|
||||
#: [config]info
|
||||
msgid "This configuration is shared wherever you are connected"
|
||||
msgstr ""
|
||||
#: [config]not_valid
|
||||
#, fuzzy
|
||||
msgid "Configuration invalid"
|
||||
msgstr "Konfigurasi"
|
||||
|
||||
#: [config]advanced
|
||||
#, fuzzy
|
||||
msgid "Advanced Configuration"
|
||||
msgstr "Konfigurasi"
|
||||
|
||||
#: [notifications]message
|
||||
msgid "Notify on incoming message"
|
||||
|
@ -717,6 +727,10 @@ msgstr ""
|
|||
msgid "Use desktop notifications"
|
||||
msgstr ""
|
||||
|
||||
#: [cssurl]label
|
||||
msgid "Custom CSS URL for your blog"
|
||||
msgstr ""
|
||||
|
||||
#: [general]legend [general]general_title
|
||||
msgid "General Informations"
|
||||
msgstr "Informasi Umum"
|
||||
|
@ -829,6 +843,10 @@ msgstr ""
|
|||
msgid "Last public post"
|
||||
msgstr ""
|
||||
|
||||
#: [blog]visit
|
||||
msgid "Visit the blog to see all the public posts"
|
||||
msgstr ""
|
||||
|
||||
#: [subscription]to
|
||||
#, fuzzy
|
||||
msgid "You can see this contact status"
|
||||
|
@ -1018,19 +1036,6 @@ msgstr ""
|
|||
msgid "This server doesn't exists"
|
||||
msgstr ""
|
||||
|
||||
#: [menu]all
|
||||
msgid "All"
|
||||
msgstr ""
|
||||
|
||||
#: [menu]refresh
|
||||
msgid "Refresh all the streams"
|
||||
msgstr ""
|
||||
|
||||
#: [menu]me
|
||||
#, fuzzy
|
||||
msgid "My publications"
|
||||
msgstr "Kesalahan publikasikan komentar"
|
||||
|
||||
#: [roster]search
|
||||
#, fuzzy
|
||||
msgid "Search in your contacts"
|
||||
|
@ -1137,7 +1142,7 @@ msgid "Chat with the team ?"
|
|||
msgstr ""
|
||||
|
||||
#: [chatroom]button
|
||||
msgid "Join the Chatroom"
|
||||
msgid "Add the chatroom"
|
||||
msgstr ""
|
||||
|
||||
#: [init]location
|
||||
|
@ -1229,10 +1234,6 @@ msgstr ""
|
|||
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 ""
|
||||
|
@ -1315,13 +1316,17 @@ msgid "Welcome on your news feed, here you will see all the posts published by y
|
|||
msgstr ""
|
||||
|
||||
#: [menu]refresh
|
||||
msgid "Refreshing all the streams"
|
||||
msgid "Refresh all the streams"
|
||||
msgstr ""
|
||||
|
||||
#: [menu]public
|
||||
msgid "This post is public"
|
||||
msgstr ""
|
||||
|
||||
#: [menu]all
|
||||
msgid "All"
|
||||
msgstr ""
|
||||
|
||||
#: [affiliations]title
|
||||
msgid "Manage your members"
|
||||
msgstr ""
|
||||
|
@ -1358,10 +1363,6 @@ msgstr ""
|
|||
msgid "%s wants to talk with you"
|
||||
msgstr ""
|
||||
|
||||
#: [notifs]manage
|
||||
msgid "Manage"
|
||||
msgstr "Kelola"
|
||||
|
||||
#: [post]news_feed
|
||||
msgid "News Feed"
|
||||
msgstr ""
|
||||
|
@ -1407,12 +1408,13 @@ msgstr ""
|
|||
msgid "Publish this post publicly?"
|
||||
msgstr "Apakah ini profil publik ?"
|
||||
|
||||
#: [post]blog_add
|
||||
msgid "Post published on your blog"
|
||||
msgstr ""
|
||||
#: [post]public_yes
|
||||
#, fuzzy
|
||||
msgid "This post is now public"
|
||||
msgstr "Apakah ini profil publik ?"
|
||||
|
||||
#: [post]blog_remove
|
||||
msgid "Post removed from your blog"
|
||||
#: [post]public_no
|
||||
msgid "This post is now private"
|
||||
msgstr ""
|
||||
|
||||
#: [post]delete_title [post]delete
|
||||
|
@ -1423,6 +1425,10 @@ msgstr ""
|
|||
msgid "You are going to delete this post, please confirm your action"
|
||||
msgstr ""
|
||||
|
||||
#: [post]discover
|
||||
msgid "Discover more articles on the Groups page"
|
||||
msgstr ""
|
||||
|
||||
#: [post]comments_disabled
|
||||
msgid "Comments disabled"
|
||||
msgstr ""
|
||||
|
@ -1487,10 +1493,6 @@ msgstr ""
|
|||
msgid "This picture will be added to your gallery"
|
||||
msgstr ""
|
||||
|
||||
#: [post]embed_tip
|
||||
msgid "You can also use services like Imgur or Flickr to host your picture and paste the link here."
|
||||
msgstr ""
|
||||
|
||||
#: [publish]valid_url
|
||||
msgid "Please enter a valid url"
|
||||
msgstr ""
|
||||
|
@ -1503,6 +1505,10 @@ msgstr ""
|
|||
msgid "Please provide a title"
|
||||
msgstr ""
|
||||
|
||||
#: [publish]edit
|
||||
msgid "Edit post"
|
||||
msgstr ""
|
||||
|
||||
#: [publish]title
|
||||
msgid "Publish"
|
||||
msgstr ""
|
||||
|
@ -1896,6 +1902,10 @@ msgstr ""
|
|||
msgid "Room"
|
||||
msgstr ""
|
||||
|
||||
#: [page]tag
|
||||
msgid "Tag"
|
||||
msgstr ""
|
||||
|
||||
#: [error]error
|
||||
msgid "Error: %s"
|
||||
msgstr "Kesalahan: %s"
|
||||
|
@ -2753,6 +2763,16 @@ msgstr ""
|
|||
msgid "Type here"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
#~ msgid "My publications"
|
||||
#~ msgstr "Kesalahan publikasikan komentar"
|
||||
|
||||
#~ msgid "Your web browser is too old to use with Movim."
|
||||
#~ msgstr "Browser anda terlalu lawas untuk di gunakan dengan Movim."
|
||||
|
||||
#~ msgid "Manage"
|
||||
#~ msgstr "Kelola"
|
||||
|
||||
#, fuzzy
|
||||
#~ msgid "Active contacts"
|
||||
#~ msgstr "Tindakan"
|
||||
|
|
|
@ -95,7 +95,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: movim\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-10-06 23:33+0200\n"
|
||||
"POT-Creation-Date: 2015-12-29 13:42+0200\n"
|
||||
"PO-Revision-Date: 2014-06-01 23:07+0000\n"
|
||||
"Last-Translator: edhelas <edhelas@movim.eu>\n"
|
||||
"Language-Team: Ido <io@li.org>\n"
|
||||
|
@ -207,6 +207,10 @@ msgstr ""
|
|||
msgid "Loading"
|
||||
msgstr ""
|
||||
|
||||
#: [create]placeholder
|
||||
msgid "…and start playing"
|
||||
msgstr ""
|
||||
|
||||
#: [error]not_acceptable
|
||||
msgid "Not Acceptable"
|
||||
msgstr ""
|
||||
|
@ -260,7 +264,7 @@ msgid "Port"
|
|||
msgstr ""
|
||||
|
||||
#: [db]name
|
||||
msgid "Database sName"
|
||||
msgid "Database Name"
|
||||
msgstr ""
|
||||
|
||||
#: [admin]general
|
||||
|
@ -369,14 +373,6 @@ msgstr ""
|
|||
msgid "Syslog and files"
|
||||
msgstr ""
|
||||
|
||||
#: [rewrite]title
|
||||
msgid "URL Rewriting"
|
||||
msgstr ""
|
||||
|
||||
#: [rewrite]info
|
||||
msgid "The URL Rewriting can be enabled"
|
||||
msgstr ""
|
||||
|
||||
#: [admin]compatibility
|
||||
msgid "General Overview"
|
||||
msgstr ""
|
||||
|
@ -409,10 +405,6 @@ msgstr ""
|
|||
msgid "Read and write rights for the webserver in Movims root directory"
|
||||
msgstr ""
|
||||
|
||||
#: [compatibility]rewrite
|
||||
msgid "The URL Rewriting support is currently disabled"
|
||||
msgstr ""
|
||||
|
||||
#: [compatibility]db
|
||||
msgid "The database need to be updated, go to the database panel to fix this"
|
||||
msgstr ""
|
||||
|
@ -497,6 +489,10 @@ msgstr ""
|
|||
msgid "Avatar Not Updated"
|
||||
msgstr ""
|
||||
|
||||
#: [avatar]missing
|
||||
msgid "No avatar defined yet"
|
||||
msgstr ""
|
||||
|
||||
#: [blog]title [feed]title
|
||||
msgid "%s's feed"
|
||||
msgstr ""
|
||||
|
@ -505,6 +501,10 @@ msgstr ""
|
|||
msgid "This user has not posted anything right now"
|
||||
msgstr ""
|
||||
|
||||
#: [blog]private
|
||||
msgid "This content is private, please login to see it"
|
||||
msgstr ""
|
||||
|
||||
#: [title]conferences
|
||||
msgid "Conferences"
|
||||
msgstr ""
|
||||
|
@ -587,6 +587,10 @@ msgstr ""
|
|||
msgid "Contact gone"
|
||||
msgstr ""
|
||||
|
||||
#: [message]history
|
||||
msgid "%s messages retrieved"
|
||||
msgstr ""
|
||||
|
||||
#: [chat]attention
|
||||
msgid "%s needs your attention"
|
||||
msgstr ""
|
||||
|
@ -644,7 +648,7 @@ msgid "No chats yet..."
|
|||
msgstr ""
|
||||
|
||||
#: [chats]empty
|
||||
msgid "Open a new conversation by clicking on the %s button bellow or visit the %s Contacts%s page."
|
||||
msgid "Open a new conversation by clicking on the %s button bellow or visit the %sContacts%s page."
|
||||
msgstr ""
|
||||
|
||||
#: [chats]add
|
||||
|
@ -699,8 +703,12 @@ msgstr ""
|
|||
msgid "Appearence"
|
||||
msgstr ""
|
||||
|
||||
#: [config]info
|
||||
msgid "This configuration is shared wherever you are connected"
|
||||
#: [config]not_valid
|
||||
msgid "Configuration invalid"
|
||||
msgstr ""
|
||||
|
||||
#: [config]advanced
|
||||
msgid "Advanced Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: [notifications]message
|
||||
|
@ -711,6 +719,10 @@ msgstr ""
|
|||
msgid "Use desktop notifications"
|
||||
msgstr ""
|
||||
|
||||
#: [cssurl]label
|
||||
msgid "Custom CSS URL for your blog"
|
||||
msgstr ""
|
||||
|
||||
#: [general]legend [general]general_title
|
||||
msgid "General Informations"
|
||||
msgstr ""
|
||||
|
@ -823,6 +835,10 @@ msgstr ""
|
|||
msgid "Last public post"
|
||||
msgstr ""
|
||||
|
||||
#: [blog]visit
|
||||
msgid "Visit the blog to see all the public posts"
|
||||
msgstr ""
|
||||
|
||||
#: [subscription]to
|
||||
msgid "You can see this contact status"
|
||||
msgstr ""
|
||||
|
@ -1007,18 +1023,6 @@ msgstr ""
|
|||
msgid "This server doesn't exists"
|
||||
msgstr ""
|
||||
|
||||
#: [menu]all
|
||||
msgid "All"
|
||||
msgstr ""
|
||||
|
||||
#: [menu]refresh
|
||||
msgid "Refresh all the streams"
|
||||
msgstr ""
|
||||
|
||||
#: [menu]me
|
||||
msgid "My publications"
|
||||
msgstr ""
|
||||
|
||||
#: [roster]search
|
||||
msgid "Search in your contacts"
|
||||
msgstr ""
|
||||
|
@ -1124,7 +1128,7 @@ msgid "Chat with the team ?"
|
|||
msgstr ""
|
||||
|
||||
#: [chatroom]button
|
||||
msgid "Join the Chatroom"
|
||||
msgid "Add the chatroom"
|
||||
msgstr ""
|
||||
|
||||
#: [init]location
|
||||
|
@ -1216,10 +1220,6 @@ msgstr ""
|
|||
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 ""
|
||||
|
@ -1302,13 +1302,17 @@ msgid "Welcome on your news feed, here you will see all the posts published by y
|
|||
msgstr ""
|
||||
|
||||
#: [menu]refresh
|
||||
msgid "Refreshing all the streams"
|
||||
msgid "Refresh all the streams"
|
||||
msgstr ""
|
||||
|
||||
#: [menu]public
|
||||
msgid "This post is public"
|
||||
msgstr ""
|
||||
|
||||
#: [menu]all
|
||||
msgid "All"
|
||||
msgstr ""
|
||||
|
||||
#: [affiliations]title
|
||||
msgid "Manage your members"
|
||||
msgstr ""
|
||||
|
@ -1345,10 +1349,6 @@ msgstr ""
|
|||
msgid "%s wants to talk with you"
|
||||
msgstr ""
|
||||
|
||||
#: [notifs]manage
|
||||
msgid "Manage"
|
||||
msgstr ""
|
||||
|
||||
#: [post]news_feed
|
||||
msgid "News Feed"
|
||||
msgstr ""
|
||||
|
@ -1393,12 +1393,12 @@ msgstr ""
|
|||
msgid "Publish this post publicly?"
|
||||
msgstr ""
|
||||
|
||||
#: [post]blog_add
|
||||
msgid "Post published on your blog"
|
||||
#: [post]public_yes
|
||||
msgid "This post is now public"
|
||||
msgstr ""
|
||||
|
||||
#: [post]blog_remove
|
||||
msgid "Post removed from your blog"
|
||||
#: [post]public_no
|
||||
msgid "This post is now private"
|
||||
msgstr ""
|
||||
|
||||
#: [post]delete_title [post]delete
|
||||
|
@ -1409,6 +1409,10 @@ msgstr ""
|
|||
msgid "You are going to delete this post, please confirm your action"
|
||||
msgstr ""
|
||||
|
||||
#: [post]discover
|
||||
msgid "Discover more articles on the Groups page"
|
||||
msgstr ""
|
||||
|
||||
#: [post]comments_disabled
|
||||
msgid "Comments disabled"
|
||||
msgstr ""
|
||||
|
@ -1473,10 +1477,6 @@ msgstr ""
|
|||
msgid "This picture will be added to your gallery"
|
||||
msgstr ""
|
||||
|
||||
#: [post]embed_tip
|
||||
msgid "You can also use services like Imgur or Flickr to host your picture and paste the link here."
|
||||
msgstr ""
|
||||
|
||||
#: [publish]valid_url
|
||||
msgid "Please enter a valid url"
|
||||
msgstr ""
|
||||
|
@ -1489,6 +1489,10 @@ msgstr ""
|
|||
msgid "Please provide a title"
|
||||
msgstr ""
|
||||
|
||||
#: [publish]edit
|
||||
msgid "Edit post"
|
||||
msgstr ""
|
||||
|
||||
#: [publish]title
|
||||
msgid "Publish"
|
||||
msgstr ""
|
||||
|
@ -1879,6 +1883,10 @@ msgstr ""
|
|||
msgid "Room"
|
||||
msgstr ""
|
||||
|
||||
#: [page]tag
|
||||
msgid "Tag"
|
||||
msgstr ""
|
||||
|
||||
#: [error]error
|
||||
msgid "Error: %s"
|
||||
msgstr ""
|
||||
|
|
|
@ -93,7 +93,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: movim\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-10-06 23:33+0200\n"
|
||||
"POT-Creation-Date: 2015-12-29 13:42+0200\n"
|
||||
"PO-Revision-Date: 2015-10-06 21:34+0000\n"
|
||||
"Last-Translator: Jaussoin Timothée <edhelas@movim.eu>\n"
|
||||
"Language-Team: Icelandic (http://www.transifex.com/movim/movim/language/is/)\n"
|
||||
|
@ -205,6 +205,10 @@ msgstr "Aðgangur þinn hefur verið skráður"
|
|||
msgid "Loading"
|
||||
msgstr "Hleð"
|
||||
|
||||
#: [create]placeholder
|
||||
msgid "…and start playing"
|
||||
msgstr ""
|
||||
|
||||
#: [error]not_acceptable
|
||||
msgid "Not Acceptable"
|
||||
msgstr ""
|
||||
|
@ -258,8 +262,9 @@ msgid "Port"
|
|||
msgstr ""
|
||||
|
||||
#: [db]name
|
||||
msgid "Database sName"
|
||||
msgstr ""
|
||||
#, fuzzy
|
||||
msgid "Database Name"
|
||||
msgstr "Gerð Gagnagrunns"
|
||||
|
||||
#: [admin]general
|
||||
msgid "General Settings"
|
||||
|
@ -367,14 +372,6 @@ msgstr ""
|
|||
msgid "Syslog and files"
|
||||
msgstr ""
|
||||
|
||||
#: [rewrite]title
|
||||
msgid "URL Rewriting"
|
||||
msgstr ""
|
||||
|
||||
#: [rewrite]info
|
||||
msgid "The URL Rewriting can be enabled"
|
||||
msgstr ""
|
||||
|
||||
#: [admin]compatibility
|
||||
msgid "General Overview"
|
||||
msgstr ""
|
||||
|
@ -407,10 +404,6 @@ msgstr ""
|
|||
msgid "Read and write rights for the webserver in Movims root directory"
|
||||
msgstr ""
|
||||
|
||||
#: [compatibility]rewrite
|
||||
msgid "The URL Rewriting support is currently disabled"
|
||||
msgstr ""
|
||||
|
||||
#: [compatibility]db
|
||||
msgid "The database need to be updated, go to the database panel to fix this"
|
||||
msgstr ""
|
||||
|
@ -495,6 +488,10 @@ msgstr "Myndin hefur verið uppfærð"
|
|||
msgid "Avatar Not Updated"
|
||||
msgstr "Ekki náðist að uppfæra mynd"
|
||||
|
||||
#: [avatar]missing
|
||||
msgid "No avatar defined yet"
|
||||
msgstr ""
|
||||
|
||||
#: [blog]title [feed]title
|
||||
msgid "%s's feed"
|
||||
msgstr ""
|
||||
|
@ -503,6 +500,10 @@ msgstr ""
|
|||
msgid "This user has not posted anything right now"
|
||||
msgstr ""
|
||||
|
||||
#: [blog]private
|
||||
msgid "This content is private, please login to see it"
|
||||
msgstr ""
|
||||
|
||||
#: [title]conferences
|
||||
msgid "Conferences"
|
||||
msgstr ""
|
||||
|
@ -585,6 +586,10 @@ msgstr ""
|
|||
msgid "Contact gone"
|
||||
msgstr ""
|
||||
|
||||
#: [message]history
|
||||
msgid "%s messages retrieved"
|
||||
msgstr ""
|
||||
|
||||
#: [chat]attention
|
||||
msgid "%s needs your attention"
|
||||
msgstr ""
|
||||
|
@ -642,7 +647,7 @@ msgid "No chats yet..."
|
|||
msgstr ""
|
||||
|
||||
#: [chats]empty
|
||||
msgid "Open a new conversation by clicking on the %s button bellow or visit the %s Contacts%s page."
|
||||
msgid "Open a new conversation by clicking on the %s button bellow or visit the %sContacts%s page."
|
||||
msgstr ""
|
||||
|
||||
#: [chats]add
|
||||
|
@ -697,9 +702,15 @@ msgstr "Fela ótengda tengiliði"
|
|||
msgid "Appearence"
|
||||
msgstr "Útlit"
|
||||
|
||||
#: [config]info
|
||||
msgid "This configuration is shared wherever you are connected"
|
||||
msgstr ""
|
||||
#: [config]not_valid
|
||||
#, fuzzy
|
||||
msgid "Configuration invalid"
|
||||
msgstr "Stillingar"
|
||||
|
||||
#: [config]advanced
|
||||
#, fuzzy
|
||||
msgid "Advanced Configuration"
|
||||
msgstr "Stillingar"
|
||||
|
||||
#: [notifications]message
|
||||
msgid "Notify on incoming message"
|
||||
|
@ -709,6 +720,10 @@ msgstr ""
|
|||
msgid "Use desktop notifications"
|
||||
msgstr ""
|
||||
|
||||
#: [cssurl]label
|
||||
msgid "Custom CSS URL for your blog"
|
||||
msgstr ""
|
||||
|
||||
#: [general]legend [general]general_title
|
||||
msgid "General Informations"
|
||||
msgstr ""
|
||||
|
@ -821,6 +836,10 @@ msgstr ""
|
|||
msgid "Last public post"
|
||||
msgstr ""
|
||||
|
||||
#: [blog]visit
|
||||
msgid "Visit the blog to see all the public posts"
|
||||
msgstr ""
|
||||
|
||||
#: [subscription]to
|
||||
msgid "You can see this contact status"
|
||||
msgstr ""
|
||||
|
@ -1005,18 +1024,6 @@ msgstr ""
|
|||
msgid "This server doesn't exists"
|
||||
msgstr ""
|
||||
|
||||
#: [menu]all
|
||||
msgid "All"
|
||||
msgstr ""
|
||||
|
||||
#: [menu]refresh
|
||||
msgid "Refresh all the streams"
|
||||
msgstr ""
|
||||
|
||||
#: [menu]me
|
||||
msgid "My publications"
|
||||
msgstr ""
|
||||
|
||||
#: [roster]search
|
||||
msgid "Search in your contacts"
|
||||
msgstr ""
|
||||
|
@ -1122,8 +1129,9 @@ msgid "Chat with the team ?"
|
|||
msgstr ""
|
||||
|
||||
#: [chatroom]button
|
||||
msgid "Join the Chatroom"
|
||||
msgstr ""
|
||||
#, fuzzy
|
||||
msgid "Add the chatroom"
|
||||
msgstr "Bæta við spjallrás"
|
||||
|
||||
#: [init]location
|
||||
msgid "Location node created"
|
||||
|
@ -1214,10 +1222,6 @@ msgstr ""
|
|||
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 ""
|
||||
|
@ -1300,13 +1304,17 @@ msgid "Welcome on your news feed, here you will see all the posts published by y
|
|||
msgstr ""
|
||||
|
||||
#: [menu]refresh
|
||||
msgid "Refreshing all the streams"
|
||||
msgid "Refresh all the streams"
|
||||
msgstr ""
|
||||
|
||||
#: [menu]public
|
||||
msgid "This post is public"
|
||||
msgstr ""
|
||||
|
||||
#: [menu]all
|
||||
msgid "All"
|
||||
msgstr ""
|
||||
|
||||
#: [affiliations]title
|
||||
msgid "Manage your members"
|
||||
msgstr ""
|
||||
|
@ -1343,10 +1351,6 @@ msgstr ""
|
|||
msgid "%s wants to talk with you"
|
||||
msgstr ""
|
||||
|
||||
#: [notifs]manage
|
||||
msgid "Manage"
|
||||
msgstr ""
|
||||
|
||||
#: [post]news_feed
|
||||
msgid "News Feed"
|
||||
msgstr ""
|
||||
|
@ -1391,12 +1395,12 @@ msgstr ""
|
|||
msgid "Publish this post publicly?"
|
||||
msgstr ""
|
||||
|
||||
#: [post]blog_add
|
||||
msgid "Post published on your blog"
|
||||
#: [post]public_yes
|
||||
msgid "This post is now public"
|
||||
msgstr ""
|
||||
|
||||
#: [post]blog_remove
|
||||
msgid "Post removed from your blog"
|
||||
#: [post]public_no
|
||||
msgid "This post is now private"
|
||||
msgstr ""
|
||||
|
||||
#: [post]delete_title [post]delete
|
||||
|
@ -1407,6 +1411,10 @@ msgstr ""
|
|||
msgid "You are going to delete this post, please confirm your action"
|
||||
msgstr ""
|
||||
|
||||
#: [post]discover
|
||||
msgid "Discover more articles on the Groups page"
|
||||
msgstr ""
|
||||
|
||||
#: [post]comments_disabled
|
||||
msgid "Comments disabled"
|
||||
msgstr ""
|
||||
|
@ -1471,10 +1479,6 @@ msgstr "Mörk"
|
|||
msgid "This picture will be added to your gallery"
|
||||
msgstr "Þessi mynd verður bætt við myndasafnið þitt"
|
||||
|
||||
#: [post]embed_tip
|
||||
msgid "You can also use services like Imgur or Flickr to host your picture and paste the link here."
|
||||
msgstr ""
|
||||
|
||||
#: [publish]valid_url
|
||||
msgid "Please enter a valid url"
|
||||
msgstr "Gjörið svo vel að setja inn rétta slóð"
|
||||
|
@ -1487,6 +1491,10 @@ msgstr "Ekkert efni til þess að forskoða"
|
|||
msgid "Please provide a title"
|
||||
msgstr ""
|
||||
|
||||
#: [publish]edit
|
||||
msgid "Edit post"
|
||||
msgstr ""
|
||||
|
||||
#: [publish]title
|
||||
msgid "Publish"
|
||||
msgstr ""
|
||||
|
@ -1877,6 +1885,11 @@ msgstr ""
|
|||
msgid "Room"
|
||||
msgstr ""
|
||||
|
||||
#: [page]tag
|
||||
#, fuzzy
|
||||
msgid "Tag"
|
||||
msgstr "Mörk"
|
||||
|
||||
#: [error]error
|
||||
msgid "Error: %s"
|
||||
msgstr ""
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
#
|
||||
# Translators:
|
||||
# Astrofillite, 2015
|
||||
# fmarella <francesco.marella@gmail.com>, 2015
|
||||
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
|
||||
#. extracted from ../app/widgets/About/locales.ini
|
||||
|
@ -93,8 +94,8 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: movim\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-10-06 23:33+0200\n"
|
||||
"PO-Revision-Date: 2015-10-06 21:34+0000\n"
|
||||
"POT-Creation-Date: 2015-12-29 13:42+0200\n"
|
||||
"PO-Revision-Date: 2015-12-29 12:43+0000\n"
|
||||
"Last-Translator: Jaussoin Timothée <edhelas@movim.eu>\n"
|
||||
"Language-Team: Italian (http://www.transifex.com/movim/movim/language/it/)\n"
|
||||
"Language: it\n"
|
||||
|
@ -118,7 +119,7 @@ msgstr "Traduttori"
|
|||
|
||||
#: [about]translators_text
|
||||
msgid "Thanks to all the translators"
|
||||
msgstr ""
|
||||
msgstr "Grazie a tutti i traduttori"
|
||||
|
||||
#: [about]software
|
||||
msgid "Software"
|
||||
|
@ -191,7 +192,7 @@ msgstr "Crea un nuovo account"
|
|||
|
||||
#: [create]notfound
|
||||
msgid "No account creation form found on the server"
|
||||
msgstr ""
|
||||
msgstr "Nessun form di creazione dell'account trovato sul server"
|
||||
|
||||
#: [create]server_on
|
||||
msgid "on"
|
||||
|
@ -205,9 +206,13 @@ msgstr "Il tuo account è stato registrato con successo"
|
|||
msgid "Loading"
|
||||
msgstr "Caricamento in corso"
|
||||
|
||||
#: [create]placeholder
|
||||
msgid "…and start playing"
|
||||
msgstr ""
|
||||
|
||||
#: [error]not_acceptable
|
||||
msgid "Not Acceptable"
|
||||
msgstr ""
|
||||
msgstr "non accettabile"
|
||||
|
||||
#: [error]service_unavailable
|
||||
msgid "The registration system of this server is currently unavailable"
|
||||
|
@ -258,7 +263,7 @@ msgid "Port"
|
|||
msgstr "Porta"
|
||||
|
||||
#: [db]name
|
||||
msgid "Database sName"
|
||||
msgid "Database Name"
|
||||
msgstr ""
|
||||
|
||||
#: [admin]general
|
||||
|
@ -367,14 +372,6 @@ msgstr "Syslog"
|
|||
msgid "Syslog and files"
|
||||
msgstr "Syslog e file"
|
||||
|
||||
#: [rewrite]title
|
||||
msgid "URL Rewriting"
|
||||
msgstr "URL Rewriting"
|
||||
|
||||
#: [rewrite]info
|
||||
msgid "The URL Rewriting can be enabled"
|
||||
msgstr "L'URL Rewriting può essere abilitato"
|
||||
|
||||
#: [admin]compatibility
|
||||
msgid "General Overview"
|
||||
msgstr "Panoramica generale"
|
||||
|
@ -407,10 +404,6 @@ msgstr "Installare la libreria php5-gd"
|
|||
msgid "Read and write rights for the webserver in Movims root directory"
|
||||
msgstr "Permessi di lettura e scrittura per il webserver nella cartella root di Movim"
|
||||
|
||||
#: [compatibility]rewrite
|
||||
msgid "The URL Rewriting support is currently disabled"
|
||||
msgstr "Il supporto al URL Rewriting è al momento disabilitato"
|
||||
|
||||
#: [compatibility]db
|
||||
msgid "The database need to be updated, go to the database panel to fix this"
|
||||
msgstr "Il database deve essere aggiornato, vai nel pannello del database per correggere"
|
||||
|
@ -441,15 +434,15 @@ 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 ""
|
||||
msgstr "Qui puoi registrare il tuo pod su %sMovim API% ufficiale ed essere elencato su %sthe pods page%s."
|
||||
|
||||
#: [api]register
|
||||
msgid "Your pod is not registered on the API"
|
||||
msgstr ""
|
||||
msgstr "Il tuo pod non è registrato sull'API"
|
||||
|
||||
#: [api]registered
|
||||
msgid "Your pod is registered on the API"
|
||||
msgstr ""
|
||||
msgstr "Il tuo pod è registrato sull'API"
|
||||
|
||||
#: [api]wait
|
||||
msgid "Your pod is not yet validated"
|
||||
|
@ -461,7 +454,7 @@ msgstr "Il tuo pod è validato"
|
|||
|
||||
#: [api]unregister
|
||||
msgid "You asked to be removed from the API, this request will be processed in a couple of hours"
|
||||
msgstr ""
|
||||
msgstr "Hai chiesto di essere rimosso dall'API, la richiesta verrà elaborata entro un paio d'ore"
|
||||
|
||||
#: [api]conf_updated [config]updated
|
||||
msgid "Configuration updated"
|
||||
|
@ -473,7 +466,7 @@ msgstr "File"
|
|||
|
||||
#: [avatar]use_it
|
||||
msgid "Use it"
|
||||
msgstr ""
|
||||
msgstr "Usalo"
|
||||
|
||||
#: [avatar]webcam
|
||||
msgid "Webcam"
|
||||
|
@ -495,17 +488,25 @@ msgstr "Foto profilo aggiornata"
|
|||
msgid "Avatar Not Updated"
|
||||
msgstr "Foto profilo non aggiornata"
|
||||
|
||||
#: [avatar]missing
|
||||
msgid "No avatar defined yet"
|
||||
msgstr ""
|
||||
|
||||
#: [blog]title [feed]title
|
||||
msgid "%s's feed"
|
||||
msgstr ""
|
||||
msgstr "feed %s"
|
||||
|
||||
#: [blog]empty
|
||||
msgid "This user has not posted anything right now"
|
||||
msgstr "Questo utente non ha pubblicato nulla al momento"
|
||||
|
||||
#: [blog]private
|
||||
msgid "This content is private, please login to see it"
|
||||
msgstr ""
|
||||
|
||||
#: [title]conferences
|
||||
msgid "Conferences"
|
||||
msgstr ""
|
||||
msgstr "Conferenze"
|
||||
|
||||
#: [title]groups [group]empty_title [menu]groups [page]groups
|
||||
msgid "Groups"
|
||||
|
@ -530,7 +531,7 @@ msgstr "Nickname"
|
|||
|
||||
#: [chatroom]autojoin_label
|
||||
msgid "Do you want do join automaticaly this Chat Room ?"
|
||||
msgstr ""
|
||||
msgstr "Vuoi entrare automaticamente in questa Chat?"
|
||||
|
||||
#: [chatroom]bad_id [chatrooms]bad_id
|
||||
msgid "Bad Chatroom ID"
|
||||
|
@ -542,7 +543,7 @@ msgstr "Nome non inserito"
|
|||
|
||||
#: [bookmarks]updated
|
||||
msgid "Bookmarks updated"
|
||||
msgstr ""
|
||||
msgstr "Segnalibro aggiornato"
|
||||
|
||||
#: [bookmarks]error
|
||||
msgid "An error occured :"
|
||||
|
@ -585,9 +586,13 @@ msgstr "In attesa..."
|
|||
msgid "Contact gone"
|
||||
msgstr "Contatto perso"
|
||||
|
||||
#: [message]history
|
||||
msgid "%s messages retrieved"
|
||||
msgstr ""
|
||||
|
||||
#: [chat]attention
|
||||
msgid "%s needs your attention"
|
||||
msgstr ""
|
||||
msgstr "%s richiede la tua attenzione"
|
||||
|
||||
#: [chat]placeholder
|
||||
msgid "Your message here..."
|
||||
|
@ -595,7 +600,7 @@ msgstr "Inserisci il tuo messaggio qui..."
|
|||
|
||||
#: [chat]smileys
|
||||
msgid "Smileys"
|
||||
msgstr ""
|
||||
msgstr "Smileys"
|
||||
|
||||
#: [chat]empty_title [button]chat
|
||||
msgid "Chat"
|
||||
|
@ -631,23 +636,23 @@ msgstr "Configurazione salvata"
|
|||
|
||||
#: [chatroom]subject
|
||||
msgid "Subject"
|
||||
msgstr ""
|
||||
msgstr "Argomento"
|
||||
|
||||
#: [chatroom]subject_changed
|
||||
msgid "Subject changed"
|
||||
msgstr ""
|
||||
msgstr "Argomento cambiato"
|
||||
|
||||
#: [chats]empty_title
|
||||
msgid "No chats yet..."
|
||||
msgstr "Nessun messaggio..."
|
||||
|
||||
#: [chats]empty
|
||||
msgid "Open a new conversation by clicking on the %s button bellow or visit the %s Contacts%s page."
|
||||
msgid "Open a new conversation by clicking on the %s button bellow or visit the %sContacts%s page."
|
||||
msgstr ""
|
||||
|
||||
#: [chats]add
|
||||
msgid "Chat with a contact"
|
||||
msgstr ""
|
||||
msgstr "Chatta con un contatto"
|
||||
|
||||
#: [chats]more
|
||||
msgid "Load more contacts"
|
||||
|
@ -697,9 +702,13 @@ msgstr "Nascondi i messaggi non in linea"
|
|||
msgid "Appearence"
|
||||
msgstr ""
|
||||
|
||||
#: [config]info
|
||||
msgid "This configuration is shared wherever you are connected"
|
||||
msgstr "Questa configurazione é condivisa dovunque tu sia connesso"
|
||||
#: [config]not_valid
|
||||
msgid "Configuration invalid"
|
||||
msgstr ""
|
||||
|
||||
#: [config]advanced
|
||||
msgid "Advanced Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: [notifications]message
|
||||
msgid "Notify on incoming message"
|
||||
|
@ -707,6 +716,10 @@ msgstr "Notifica i messaggi in arrivo"
|
|||
|
||||
#: [notifications]desktop
|
||||
msgid "Use desktop notifications"
|
||||
msgstr "Usa notifiche desktop"
|
||||
|
||||
#: [cssurl]label
|
||||
msgid "Custom CSS URL for your blog"
|
||||
msgstr ""
|
||||
|
||||
#: [general]legend [general]general_title
|
||||
|
@ -747,7 +760,7 @@ msgstr "Altri account"
|
|||
|
||||
#: [general]tune
|
||||
msgid "Is Listening"
|
||||
msgstr ""
|
||||
msgstr "Sta ascoltando"
|
||||
|
||||
#: [position]legend [position]position_title
|
||||
msgid "Geographic Position"
|
||||
|
@ -755,7 +768,7 @@ msgstr "Posizione geografica"
|
|||
|
||||
#: [position]locality
|
||||
msgid "Locality"
|
||||
msgstr ""
|
||||
msgstr "Località"
|
||||
|
||||
#: [position]country
|
||||
msgid "Country"
|
||||
|
@ -763,15 +776,15 @@ msgstr "Nazione"
|
|||
|
||||
#: [mood]title
|
||||
msgid "Mood"
|
||||
msgstr ""
|
||||
msgstr "Umore"
|
||||
|
||||
#: [mood]im
|
||||
msgid "I'm "
|
||||
msgstr ""
|
||||
msgstr "Sono"
|
||||
|
||||
#: [listen]title
|
||||
msgid "Listening"
|
||||
msgstr ""
|
||||
msgstr "Ascoltando"
|
||||
|
||||
#: [last]title
|
||||
msgid "Last seen"
|
||||
|
@ -811,7 +824,7 @@ msgstr "Sei sicuro?"
|
|||
|
||||
#: [delete]text
|
||||
msgid "You are going to delete one of your contacts, please confirm your action"
|
||||
msgstr ""
|
||||
msgstr "Stai per eliminare uno dei tuoi contatti, sei sicuro?"
|
||||
|
||||
#: [age]years
|
||||
msgid "%s years"
|
||||
|
@ -821,9 +834,13 @@ msgstr "%s anni"
|
|||
msgid "Last public post"
|
||||
msgstr "Ultimo articolo pubblico"
|
||||
|
||||
#: [blog]visit
|
||||
msgid "Visit the blog to see all the public posts"
|
||||
msgstr ""
|
||||
|
||||
#: [subscription]to
|
||||
msgid "You can see this contact status"
|
||||
msgstr ""
|
||||
msgstr "Puoi vedere lo status di questo contatto"
|
||||
|
||||
#: [subscription]to_button
|
||||
msgid "Share my status"
|
||||
|
@ -831,19 +848,19 @@ msgstr "Condividi il mio stato"
|
|||
|
||||
#: [subscription]to_text
|
||||
msgid "But this contact cannot see yours"
|
||||
msgstr ""
|
||||
msgstr "Ma questo contatto non può vedere il tuo"
|
||||
|
||||
#: [subscription]from
|
||||
msgid "You are not subscribed to this contact"
|
||||
msgstr ""
|
||||
msgstr "Non sei iscritto a questo contatto"
|
||||
|
||||
#: [subscription]from_button
|
||||
msgid "Ask to subscribe"
|
||||
msgstr ""
|
||||
msgstr "Chiedi di iscriverti"
|
||||
|
||||
#: [subscription]from_text
|
||||
msgid "But this contact can still see if you are online"
|
||||
msgstr ""
|
||||
msgstr "Ma questo contatto può ancora vedere se sei online"
|
||||
|
||||
#: [subscription]nil
|
||||
msgid "No subscriptions"
|
||||
|
@ -851,15 +868,15 @@ msgstr "Nessuna sottoscrizione"
|
|||
|
||||
#: [subscription]nil_button
|
||||
msgid "Invite"
|
||||
msgstr ""
|
||||
msgstr "Invita"
|
||||
|
||||
#: [subscription]nil_text
|
||||
msgid "This contact is in your contact list but there is no subscriptions between the two accounts"
|
||||
msgstr ""
|
||||
msgstr "Questo contatto è nella tua lista contatti ma non c'è nessuna iscrizione tra i due account"
|
||||
|
||||
#: [group]subscribe
|
||||
msgid "Subscribe"
|
||||
msgstr ""
|
||||
msgstr "Iscriviti"
|
||||
|
||||
#: [group]subscribed
|
||||
msgid "Subscribed"
|
||||
|
@ -867,19 +884,19 @@ msgstr "Iscritto"
|
|||
|
||||
#: [group]unsubscribe
|
||||
msgid "Unsubscribe"
|
||||
msgstr ""
|
||||
msgstr "Cancella iscrizione"
|
||||
|
||||
#: [group]unsubscribe_text
|
||||
msgid "You are going to unsubscribe from this Group"
|
||||
msgstr ""
|
||||
msgstr "Stai per cancellare l'iscrizione a questo Gruppo"
|
||||
|
||||
#: [group]unsubscribed
|
||||
msgid "Unsubscribed"
|
||||
msgstr ""
|
||||
msgstr "Non iscritto"
|
||||
|
||||
#: [group]share_label
|
||||
msgid "Make your membership to this group public to your friends"
|
||||
msgstr ""
|
||||
msgstr "Rendi la tua appartenenza a questo gruppo pubblica per i tuoi amici"
|
||||
|
||||
#: [group]label_label
|
||||
msgid "Give a label for this group"
|
||||
|
@ -907,7 +924,7 @@ msgstr "Cancella il gruppo"
|
|||
|
||||
#: [group]delete_text
|
||||
msgid "You are going to delete the following group. Please confirm your action."
|
||||
msgstr ""
|
||||
msgstr "Stai per eliminare il seguente gruppo. Sei sicuro di volerlo fare?"
|
||||
|
||||
#: [group]delete_clean_text
|
||||
msgid "It seems that this group doesn't exists anymore. Do you want to remove it from your subscriptions?"
|
||||
|
@ -1005,18 +1022,6 @@ msgstr "%s articoli"
|
|||
msgid "This server doesn't exists"
|
||||
msgstr "Questo server non esiste"
|
||||
|
||||
#: [menu]all
|
||||
msgid "All"
|
||||
msgstr "Tutti"
|
||||
|
||||
#: [menu]refresh
|
||||
msgid "Refresh all the streams"
|
||||
msgstr "Aggiorna tutti gli stream"
|
||||
|
||||
#: [menu]me
|
||||
msgid "My publications"
|
||||
msgstr ""
|
||||
|
||||
#: [roster]search
|
||||
msgid "Search in your contacts"
|
||||
msgstr "Cerca nei tuoi contatti"
|
||||
|
@ -1122,7 +1127,7 @@ msgid "Chat with the team ?"
|
|||
msgstr ""
|
||||
|
||||
#: [chatroom]button
|
||||
msgid "Join the Chatroom"
|
||||
msgid "Add the chatroom"
|
||||
msgstr ""
|
||||
|
||||
#: [init]location
|
||||
|
@ -1214,10 +1219,6 @@ msgstr ""
|
|||
msgid "The server takes too much time to respond"
|
||||
msgstr "Il server sta impiegando troppo tempo a rispondere"
|
||||
|
||||
#: [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 ""
|
||||
|
@ -1300,13 +1301,17 @@ msgid "Welcome on your news feed, here you will see all the posts published by y
|
|||
msgstr ""
|
||||
|
||||
#: [menu]refresh
|
||||
msgid "Refreshing all the streams"
|
||||
msgstr ""
|
||||
msgid "Refresh all the streams"
|
||||
msgstr "Aggiorna tutti gli stream"
|
||||
|
||||
#: [menu]public
|
||||
msgid "This post is public"
|
||||
msgstr "Questo articolo è pubblico"
|
||||
|
||||
#: [menu]all
|
||||
msgid "All"
|
||||
msgstr "Tutti"
|
||||
|
||||
#: [affiliations]title
|
||||
msgid "Manage your members"
|
||||
msgstr ""
|
||||
|
@ -1343,10 +1348,6 @@ msgstr ""
|
|||
msgid "%s wants to talk with you"
|
||||
msgstr ""
|
||||
|
||||
#: [notifs]manage
|
||||
msgid "Manage"
|
||||
msgstr ""
|
||||
|
||||
#: [post]news_feed
|
||||
msgid "News Feed"
|
||||
msgstr ""
|
||||
|
@ -1391,12 +1392,12 @@ msgstr "Guarda il profilo %s"
|
|||
msgid "Publish this post publicly?"
|
||||
msgstr ""
|
||||
|
||||
#: [post]blog_add
|
||||
msgid "Post published on your blog"
|
||||
#: [post]public_yes
|
||||
msgid "This post is now public"
|
||||
msgstr ""
|
||||
|
||||
#: [post]blog_remove
|
||||
msgid "Post removed from your blog"
|
||||
#: [post]public_no
|
||||
msgid "This post is now private"
|
||||
msgstr ""
|
||||
|
||||
#: [post]delete_title [post]delete
|
||||
|
@ -1407,6 +1408,10 @@ msgstr "Elimina questo articolo"
|
|||
msgid "You are going to delete this post, please confirm your action"
|
||||
msgstr "Stai per eliminare questo articolo, sei sicuro?"
|
||||
|
||||
#: [post]discover
|
||||
msgid "Discover more articles on the Groups page"
|
||||
msgstr ""
|
||||
|
||||
#: [post]comments_disabled
|
||||
msgid "Comments disabled"
|
||||
msgstr "Commenti disabilitati"
|
||||
|
@ -1471,10 +1476,6 @@ msgstr "Etichette"
|
|||
msgid "This picture will be added to your gallery"
|
||||
msgstr ""
|
||||
|
||||
#: [post]embed_tip
|
||||
msgid "You can also use services like Imgur or Flickr to host your picture and paste the link here."
|
||||
msgstr ""
|
||||
|
||||
#: [publish]valid_url
|
||||
msgid "Please enter a valid url"
|
||||
msgstr "Inserire un URL valido"
|
||||
|
@ -1487,6 +1488,10 @@ msgstr "Nessun contenuto per l'anteprima"
|
|||
msgid "Please provide a title"
|
||||
msgstr ""
|
||||
|
||||
#: [publish]edit
|
||||
msgid "Edit post"
|
||||
msgstr ""
|
||||
|
||||
#: [publish]title
|
||||
msgid "Publish"
|
||||
msgstr "Pubblica"
|
||||
|
@ -1877,6 +1882,10 @@ msgstr ""
|
|||
msgid "Room"
|
||||
msgstr "Stanza"
|
||||
|
||||
#: [page]tag
|
||||
msgid "Tag"
|
||||
msgstr ""
|
||||
|
||||
#: [error]error
|
||||
msgid "Error: %s"
|
||||
msgstr "Errore: %s"
|
||||
|
|
|
@ -93,8 +93,8 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: movim\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-10-06 23:33+0200\n"
|
||||
"PO-Revision-Date: 2015-10-06 21:34+0000\n"
|
||||
"POT-Creation-Date: 2015-12-29 13:42+0200\n"
|
||||
"PO-Revision-Date: 2015-12-29 12:43+0000\n"
|
||||
"Last-Translator: Jaussoin Timothée <edhelas@movim.eu>\n"
|
||||
"Language-Team: Japanese (http://www.transifex.com/movim/movim/language/ja/)\n"
|
||||
"Language: ja\n"
|
||||
|
@ -205,6 +205,10 @@ msgstr "アカウントが正常に作成されました"
|
|||
msgid "Loading"
|
||||
msgstr "読み込み中"
|
||||
|
||||
#: [create]placeholder
|
||||
msgid "…and start playing"
|
||||
msgstr ""
|
||||
|
||||
#: [error]not_acceptable
|
||||
msgid "Not Acceptable"
|
||||
msgstr "不正"
|
||||
|
@ -258,7 +262,7 @@ msgid "Port"
|
|||
msgstr "ポート"
|
||||
|
||||
#: [db]name
|
||||
msgid "Database sName"
|
||||
msgid "Database Name"
|
||||
msgstr ""
|
||||
|
||||
#: [admin]general
|
||||
|
@ -367,14 +371,6 @@ msgstr "Syslog"
|
|||
msgid "Syslog and files"
|
||||
msgstr "Syslogとファイル"
|
||||
|
||||
#: [rewrite]title
|
||||
msgid "URL Rewriting"
|
||||
msgstr ""
|
||||
|
||||
#: [rewrite]info
|
||||
msgid "The URL Rewriting can be enabled"
|
||||
msgstr ""
|
||||
|
||||
#: [admin]compatibility
|
||||
msgid "General Overview"
|
||||
msgstr "概要"
|
||||
|
@ -407,10 +403,6 @@ msgstr ""
|
|||
msgid "Read and write rights for the webserver in Movims root directory"
|
||||
msgstr ""
|
||||
|
||||
#: [compatibility]rewrite
|
||||
msgid "The URL Rewriting support is currently disabled"
|
||||
msgstr ""
|
||||
|
||||
#: [compatibility]db
|
||||
msgid "The database need to be updated, go to the database panel to fix this"
|
||||
msgstr ""
|
||||
|
@ -495,6 +487,10 @@ msgstr "アバターがアップデートされました"
|
|||
msgid "Avatar Not Updated"
|
||||
msgstr "アバターが更新されていません"
|
||||
|
||||
#: [avatar]missing
|
||||
msgid "No avatar defined yet"
|
||||
msgstr ""
|
||||
|
||||
#: [blog]title [feed]title
|
||||
msgid "%s's feed"
|
||||
msgstr "%s のフィード"
|
||||
|
@ -503,6 +499,10 @@ msgstr "%s のフィード"
|
|||
msgid "This user has not posted anything right now"
|
||||
msgstr "このユーザがまだ投稿していません"
|
||||
|
||||
#: [blog]private
|
||||
msgid "This content is private, please login to see it"
|
||||
msgstr ""
|
||||
|
||||
#: [title]conferences
|
||||
msgid "Conferences"
|
||||
msgstr ""
|
||||
|
@ -585,6 +585,10 @@ msgstr ""
|
|||
msgid "Contact gone"
|
||||
msgstr ""
|
||||
|
||||
#: [message]history
|
||||
msgid "%s messages retrieved"
|
||||
msgstr ""
|
||||
|
||||
#: [chat]attention
|
||||
msgid "%s needs your attention"
|
||||
msgstr ""
|
||||
|
@ -642,7 +646,7 @@ msgid "No chats yet..."
|
|||
msgstr ""
|
||||
|
||||
#: [chats]empty
|
||||
msgid "Open a new conversation by clicking on the %s button bellow or visit the %s Contacts%s page."
|
||||
msgid "Open a new conversation by clicking on the %s button bellow or visit the %sContacts%s page."
|
||||
msgstr ""
|
||||
|
||||
#: [chats]add
|
||||
|
@ -697,8 +701,12 @@ msgstr "オフラインのコンタクトを非表示"
|
|||
msgid "Appearence"
|
||||
msgstr "表示"
|
||||
|
||||
#: [config]info
|
||||
msgid "This configuration is shared wherever you are connected"
|
||||
#: [config]not_valid
|
||||
msgid "Configuration invalid"
|
||||
msgstr ""
|
||||
|
||||
#: [config]advanced
|
||||
msgid "Advanced Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: [notifications]message
|
||||
|
@ -709,6 +717,10 @@ msgstr ""
|
|||
msgid "Use desktop notifications"
|
||||
msgstr ""
|
||||
|
||||
#: [cssurl]label
|
||||
msgid "Custom CSS URL for your blog"
|
||||
msgstr ""
|
||||
|
||||
#: [general]legend [general]general_title
|
||||
msgid "General Informations"
|
||||
msgstr "一般情報"
|
||||
|
@ -821,6 +833,10 @@ msgstr "%s 年"
|
|||
msgid "Last public post"
|
||||
msgstr ""
|
||||
|
||||
#: [blog]visit
|
||||
msgid "Visit the blog to see all the public posts"
|
||||
msgstr ""
|
||||
|
||||
#: [subscription]to
|
||||
msgid "You can see this contact status"
|
||||
msgstr ""
|
||||
|
@ -1005,18 +1021,6 @@ msgstr "%s 投稿"
|
|||
msgid "This server doesn't exists"
|
||||
msgstr ""
|
||||
|
||||
#: [menu]all
|
||||
msgid "All"
|
||||
msgstr "全て"
|
||||
|
||||
#: [menu]refresh
|
||||
msgid "Refresh all the streams"
|
||||
msgstr ""
|
||||
|
||||
#: [menu]me
|
||||
msgid "My publications"
|
||||
msgstr ""
|
||||
|
||||
#: [roster]search
|
||||
msgid "Search in your contacts"
|
||||
msgstr ""
|
||||
|
@ -1122,8 +1126,8 @@ msgid "Chat with the team ?"
|
|||
msgstr "チャットがいいですか"
|
||||
|
||||
#: [chatroom]button
|
||||
msgid "Join the Chatroom"
|
||||
msgstr "チャットルームに来てください"
|
||||
msgid "Add the chatroom"
|
||||
msgstr ""
|
||||
|
||||
#: [init]location
|
||||
msgid "Location node created"
|
||||
|
@ -1214,10 +1218,6 @@ msgstr ""
|
|||
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 ""
|
||||
|
@ -1300,13 +1300,17 @@ msgid "Welcome on your news feed, here you will see all the posts published by y
|
|||
msgstr ""
|
||||
|
||||
#: [menu]refresh
|
||||
msgid "Refreshing all the streams"
|
||||
msgid "Refresh all the streams"
|
||||
msgstr ""
|
||||
|
||||
#: [menu]public
|
||||
msgid "This post is public"
|
||||
msgstr ""
|
||||
|
||||
#: [menu]all
|
||||
msgid "All"
|
||||
msgstr "全て"
|
||||
|
||||
#: [affiliations]title
|
||||
msgid "Manage your members"
|
||||
msgstr ""
|
||||
|
@ -1343,10 +1347,6 @@ msgstr ""
|
|||
msgid "%s wants to talk with you"
|
||||
msgstr ""
|
||||
|
||||
#: [notifs]manage
|
||||
msgid "Manage"
|
||||
msgstr "管理"
|
||||
|
||||
#: [post]news_feed
|
||||
msgid "News Feed"
|
||||
msgstr "新着情報"
|
||||
|
@ -1391,12 +1391,12 @@ msgstr ""
|
|||
msgid "Publish this post publicly?"
|
||||
msgstr ""
|
||||
|
||||
#: [post]blog_add
|
||||
msgid "Post published on your blog"
|
||||
#: [post]public_yes
|
||||
msgid "This post is now public"
|
||||
msgstr ""
|
||||
|
||||
#: [post]blog_remove
|
||||
msgid "Post removed from your blog"
|
||||
#: [post]public_no
|
||||
msgid "This post is now private"
|
||||
msgstr ""
|
||||
|
||||
#: [post]delete_title [post]delete
|
||||
|
@ -1407,6 +1407,10 @@ msgstr "この投稿を削除する"
|
|||
msgid "You are going to delete this post, please confirm your action"
|
||||
msgstr "この投稿が削除されますが、よろしいですか"
|
||||
|
||||
#: [post]discover
|
||||
msgid "Discover more articles on the Groups page"
|
||||
msgstr ""
|
||||
|
||||
#: [post]comments_disabled
|
||||
msgid "Comments disabled"
|
||||
msgstr ""
|
||||
|
@ -1471,10 +1475,6 @@ msgstr ""
|
|||
msgid "This picture will be added to your gallery"
|
||||
msgstr ""
|
||||
|
||||
#: [post]embed_tip
|
||||
msgid "You can also use services like Imgur or Flickr to host your picture and paste the link here."
|
||||
msgstr ""
|
||||
|
||||
#: [publish]valid_url
|
||||
msgid "Please enter a valid url"
|
||||
msgstr ""
|
||||
|
@ -1487,6 +1487,10 @@ msgstr ""
|
|||
msgid "Please provide a title"
|
||||
msgstr ""
|
||||
|
||||
#: [publish]edit
|
||||
msgid "Edit post"
|
||||
msgstr ""
|
||||
|
||||
#: [publish]title
|
||||
msgid "Publish"
|
||||
msgstr ""
|
||||
|
@ -1877,6 +1881,10 @@ msgstr ""
|
|||
msgid "Room"
|
||||
msgstr ""
|
||||
|
||||
#: [page]tag
|
||||
msgid "Tag"
|
||||
msgstr ""
|
||||
|
||||
#: [error]error
|
||||
msgid "Error: %s"
|
||||
msgstr "エラーが発生しました。%s"
|
||||
|
|
|
@ -95,7 +95,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: movim\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-10-06 23:33+0200\n"
|
||||
"POT-Creation-Date: 2015-12-29 13:42+0200\n"
|
||||
"PO-Revision-Date: 2014-04-04 12:56+0000\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: Kazakh <kk@li.org>\n"
|
||||
|
@ -207,6 +207,10 @@ msgstr ""
|
|||
msgid "Loading"
|
||||
msgstr ""
|
||||
|
||||
#: [create]placeholder
|
||||
msgid "…and start playing"
|
||||
msgstr ""
|
||||
|
||||
#: [error]not_acceptable
|
||||
msgid "Not Acceptable"
|
||||
msgstr ""
|
||||
|
@ -260,7 +264,7 @@ msgid "Port"
|
|||
msgstr ""
|
||||
|
||||
#: [db]name
|
||||
msgid "Database sName"
|
||||
msgid "Database Name"
|
||||
msgstr ""
|
||||
|
||||
#: [admin]general
|
||||
|
@ -369,14 +373,6 @@ msgstr ""
|
|||
msgid "Syslog and files"
|
||||
msgstr ""
|
||||
|
||||
#: [rewrite]title
|
||||
msgid "URL Rewriting"
|
||||
msgstr ""
|
||||
|
||||
#: [rewrite]info
|
||||
msgid "The URL Rewriting can be enabled"
|
||||
msgstr ""
|
||||
|
||||
#: [admin]compatibility
|
||||
msgid "General Overview"
|
||||
msgstr ""
|
||||
|
@ -409,10 +405,6 @@ msgstr ""
|
|||
msgid "Read and write rights for the webserver in Movims root directory"
|
||||
msgstr ""
|
||||
|
||||
#: [compatibility]rewrite
|
||||
msgid "The URL Rewriting support is currently disabled"
|
||||
msgstr ""
|
||||
|
||||
#: [compatibility]db
|
||||
msgid "The database need to be updated, go to the database panel to fix this"
|
||||
msgstr ""
|
||||
|
@ -497,6 +489,10 @@ msgstr ""
|
|||
msgid "Avatar Not Updated"
|
||||
msgstr ""
|
||||
|
||||
#: [avatar]missing
|
||||
msgid "No avatar defined yet"
|
||||
msgstr ""
|
||||
|
||||
#: [blog]title [feed]title
|
||||
msgid "%s's feed"
|
||||
msgstr ""
|
||||
|
@ -505,6 +501,10 @@ msgstr ""
|
|||
msgid "This user has not posted anything right now"
|
||||
msgstr ""
|
||||
|
||||
#: [blog]private
|
||||
msgid "This content is private, please login to see it"
|
||||
msgstr ""
|
||||
|
||||
#: [title]conferences
|
||||
msgid "Conferences"
|
||||
msgstr ""
|
||||
|
@ -587,6 +587,10 @@ msgstr ""
|
|||
msgid "Contact gone"
|
||||
msgstr ""
|
||||
|
||||
#: [message]history
|
||||
msgid "%s messages retrieved"
|
||||
msgstr ""
|
||||
|
||||
#: [chat]attention
|
||||
msgid "%s needs your attention"
|
||||
msgstr ""
|
||||
|
@ -644,7 +648,7 @@ msgid "No chats yet..."
|
|||
msgstr ""
|
||||
|
||||
#: [chats]empty
|
||||
msgid "Open a new conversation by clicking on the %s button bellow or visit the %s Contacts%s page."
|
||||
msgid "Open a new conversation by clicking on the %s button bellow or visit the %sContacts%s page."
|
||||
msgstr ""
|
||||
|
||||
#: [chats]add
|
||||
|
@ -699,8 +703,12 @@ msgstr ""
|
|||
msgid "Appearence"
|
||||
msgstr ""
|
||||
|
||||
#: [config]info
|
||||
msgid "This configuration is shared wherever you are connected"
|
||||
#: [config]not_valid
|
||||
msgid "Configuration invalid"
|
||||
msgstr ""
|
||||
|
||||
#: [config]advanced
|
||||
msgid "Advanced Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: [notifications]message
|
||||
|
@ -711,6 +719,10 @@ msgstr ""
|
|||
msgid "Use desktop notifications"
|
||||
msgstr ""
|
||||
|
||||
#: [cssurl]label
|
||||
msgid "Custom CSS URL for your blog"
|
||||
msgstr ""
|
||||
|
||||
#: [general]legend [general]general_title
|
||||
msgid "General Informations"
|
||||
msgstr ""
|
||||
|
@ -823,6 +835,10 @@ msgstr ""
|
|||
msgid "Last public post"
|
||||
msgstr ""
|
||||
|
||||
#: [blog]visit
|
||||
msgid "Visit the blog to see all the public posts"
|
||||
msgstr ""
|
||||
|
||||
#: [subscription]to
|
||||
msgid "You can see this contact status"
|
||||
msgstr ""
|
||||
|
@ -1007,18 +1023,6 @@ msgstr ""
|
|||
msgid "This server doesn't exists"
|
||||
msgstr ""
|
||||
|
||||
#: [menu]all
|
||||
msgid "All"
|
||||
msgstr ""
|
||||
|
||||
#: [menu]refresh
|
||||
msgid "Refresh all the streams"
|
||||
msgstr ""
|
||||
|
||||
#: [menu]me
|
||||
msgid "My publications"
|
||||
msgstr ""
|
||||
|
||||
#: [roster]search
|
||||
msgid "Search in your contacts"
|
||||
msgstr ""
|
||||
|
@ -1124,7 +1128,7 @@ msgid "Chat with the team ?"
|
|||
msgstr ""
|
||||
|
||||
#: [chatroom]button
|
||||
msgid "Join the Chatroom"
|
||||
msgid "Add the chatroom"
|
||||
msgstr ""
|
||||
|
||||
#: [init]location
|
||||
|
@ -1216,10 +1220,6 @@ msgstr ""
|
|||
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 ""
|
||||
|
@ -1302,13 +1302,17 @@ msgid "Welcome on your news feed, here you will see all the posts published by y
|
|||
msgstr ""
|
||||
|
||||
#: [menu]refresh
|
||||
msgid "Refreshing all the streams"
|
||||
msgid "Refresh all the streams"
|
||||
msgstr ""
|
||||
|
||||
#: [menu]public
|
||||
msgid "This post is public"
|
||||
msgstr ""
|
||||
|
||||
#: [menu]all
|
||||
msgid "All"
|
||||
msgstr ""
|
||||
|
||||
#: [affiliations]title
|
||||
msgid "Manage your members"
|
||||
msgstr ""
|
||||
|
@ -1345,10 +1349,6 @@ msgstr ""
|
|||
msgid "%s wants to talk with you"
|
||||
msgstr ""
|
||||
|
||||
#: [notifs]manage
|
||||
msgid "Manage"
|
||||
msgstr ""
|
||||
|
||||
#: [post]news_feed
|
||||
msgid "News Feed"
|
||||
msgstr ""
|
||||
|
@ -1393,12 +1393,12 @@ msgstr ""
|
|||
msgid "Publish this post publicly?"
|
||||
msgstr ""
|
||||
|
||||
#: [post]blog_add
|
||||
msgid "Post published on your blog"
|
||||
#: [post]public_yes
|
||||
msgid "This post is now public"
|
||||
msgstr ""
|
||||
|
||||
#: [post]blog_remove
|
||||
msgid "Post removed from your blog"
|
||||
#: [post]public_no
|
||||
msgid "This post is now private"
|
||||
msgstr ""
|
||||
|
||||
#: [post]delete_title [post]delete
|
||||
|
@ -1409,6 +1409,10 @@ msgstr ""
|
|||
msgid "You are going to delete this post, please confirm your action"
|
||||
msgstr ""
|
||||
|
||||
#: [post]discover
|
||||
msgid "Discover more articles on the Groups page"
|
||||
msgstr ""
|
||||
|
||||
#: [post]comments_disabled
|
||||
msgid "Comments disabled"
|
||||
msgstr ""
|
||||
|
@ -1473,10 +1477,6 @@ msgstr ""
|
|||
msgid "This picture will be added to your gallery"
|
||||
msgstr ""
|
||||
|
||||
#: [post]embed_tip
|
||||
msgid "You can also use services like Imgur or Flickr to host your picture and paste the link here."
|
||||
msgstr ""
|
||||
|
||||
#: [publish]valid_url
|
||||
msgid "Please enter a valid url"
|
||||
msgstr ""
|
||||
|
@ -1489,6 +1489,10 @@ msgstr ""
|
|||
msgid "Please provide a title"
|
||||
msgstr ""
|
||||
|
||||
#: [publish]edit
|
||||
msgid "Edit post"
|
||||
msgstr ""
|
||||
|
||||
#: [publish]title
|
||||
msgid "Publish"
|
||||
msgstr ""
|
||||
|
@ -1879,6 +1883,10 @@ msgstr ""
|
|||
msgid "Room"
|
||||
msgstr ""
|
||||
|
||||
#: [page]tag
|
||||
msgid "Tag"
|
||||
msgstr ""
|
||||
|
||||
#: [error]error
|
||||
msgid "Error: %s"
|
||||
msgstr ""
|
||||
|
|
|
@ -95,7 +95,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: movim\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-10-06 23:33+0200\n"
|
||||
"POT-Creation-Date: 2015-12-29 13:42+0200\n"
|
||||
"PO-Revision-Date: 2015-06-09 12:19+0000\n"
|
||||
"Last-Translator: Jānis Marks Gailis <jm-gailis@fai-vianet.fr>\n"
|
||||
"Language-Team: Latvian <lv@li.org>\n"
|
||||
|
@ -209,6 +209,10 @@ msgstr ""
|
|||
msgid "Loading"
|
||||
msgstr "Ielādē"
|
||||
|
||||
#: [create]placeholder
|
||||
msgid "…and start playing"
|
||||
msgstr ""
|
||||
|
||||
#: [error]not_acceptable
|
||||
msgid "Not Acceptable"
|
||||
msgstr ""
|
||||
|
@ -263,7 +267,7 @@ msgstr "Ports"
|
|||
|
||||
#: [db]name
|
||||
#, fuzzy
|
||||
msgid "Database sName"
|
||||
msgid "Database Name"
|
||||
msgstr "Datubāzes nosaukums"
|
||||
|
||||
#: [admin]general
|
||||
|
@ -374,14 +378,6 @@ msgstr ""
|
|||
msgid "Syslog and files"
|
||||
msgstr ""
|
||||
|
||||
#: [rewrite]title
|
||||
msgid "URL Rewriting"
|
||||
msgstr ""
|
||||
|
||||
#: [rewrite]info
|
||||
msgid "The URL Rewriting can be enabled"
|
||||
msgstr ""
|
||||
|
||||
#: [admin]compatibility
|
||||
msgid "General Overview"
|
||||
msgstr ""
|
||||
|
@ -414,10 +410,6 @@ msgstr ""
|
|||
msgid "Read and write rights for the webserver in Movims root directory"
|
||||
msgstr ""
|
||||
|
||||
#: [compatibility]rewrite
|
||||
msgid "The URL Rewriting support is currently disabled"
|
||||
msgstr ""
|
||||
|
||||
#: [compatibility]db
|
||||
msgid "The database need to be updated, go to the database panel to fix this"
|
||||
msgstr ""
|
||||
|
@ -502,6 +494,10 @@ msgstr ""
|
|||
msgid "Avatar Not Updated"
|
||||
msgstr ""
|
||||
|
||||
#: [avatar]missing
|
||||
msgid "No avatar defined yet"
|
||||
msgstr ""
|
||||
|
||||
#: [blog]title [feed]title
|
||||
msgid "%s's feed"
|
||||
msgstr ""
|
||||
|
@ -510,6 +506,10 @@ msgstr ""
|
|||
msgid "This user has not posted anything right now"
|
||||
msgstr ""
|
||||
|
||||
#: [blog]private
|
||||
msgid "This content is private, please login to see it"
|
||||
msgstr ""
|
||||
|
||||
#: [title]conferences
|
||||
msgid "Conferences"
|
||||
msgstr "Konferences"
|
||||
|
@ -595,6 +595,10 @@ msgstr ""
|
|||
msgid "Contact gone"
|
||||
msgstr ""
|
||||
|
||||
#: [message]history
|
||||
msgid "%s messages retrieved"
|
||||
msgstr ""
|
||||
|
||||
#: [chat]attention
|
||||
msgid "%s needs your attention"
|
||||
msgstr "%s pieprasa jūsu uzmanību"
|
||||
|
@ -652,7 +656,7 @@ msgid "No chats yet..."
|
|||
msgstr ""
|
||||
|
||||
#: [chats]empty
|
||||
msgid "Open a new conversation by clicking on the %s button bellow or visit the %s Contacts%s page."
|
||||
msgid "Open a new conversation by clicking on the %s button bellow or visit the %sContacts%s page."
|
||||
msgstr ""
|
||||
|
||||
#: [chats]add
|
||||
|
@ -707,9 +711,15 @@ msgstr ""
|
|||
msgid "Appearence"
|
||||
msgstr "Izskats"
|
||||
|
||||
#: [config]info
|
||||
msgid "This configuration is shared wherever you are connected"
|
||||
msgstr ""
|
||||
#: [config]not_valid
|
||||
#, fuzzy
|
||||
msgid "Configuration invalid"
|
||||
msgstr "Atjaunināta konfigurācija"
|
||||
|
||||
#: [config]advanced
|
||||
#, fuzzy
|
||||
msgid "Advanced Configuration"
|
||||
msgstr "Atjaunināta konfigurācija"
|
||||
|
||||
#: [notifications]message
|
||||
msgid "Notify on incoming message"
|
||||
|
@ -719,6 +729,10 @@ msgstr ""
|
|||
msgid "Use desktop notifications"
|
||||
msgstr ""
|
||||
|
||||
#: [cssurl]label
|
||||
msgid "Custom CSS URL for your blog"
|
||||
msgstr ""
|
||||
|
||||
#: [general]legend [general]general_title
|
||||
msgid "General Informations"
|
||||
msgstr "Vispārīgā Informācija"
|
||||
|
@ -831,6 +845,10 @@ msgstr ""
|
|||
msgid "Last public post"
|
||||
msgstr ""
|
||||
|
||||
#: [blog]visit
|
||||
msgid "Visit the blog to see all the public posts"
|
||||
msgstr ""
|
||||
|
||||
#: [subscription]to
|
||||
msgid "You can see this contact status"
|
||||
msgstr ""
|
||||
|
@ -1018,18 +1036,6 @@ msgstr ""
|
|||
msgid "This server doesn't exists"
|
||||
msgstr ""
|
||||
|
||||
#: [menu]all
|
||||
msgid "All"
|
||||
msgstr ""
|
||||
|
||||
#: [menu]refresh
|
||||
msgid "Refresh all the streams"
|
||||
msgstr ""
|
||||
|
||||
#: [menu]me
|
||||
msgid "My publications"
|
||||
msgstr ""
|
||||
|
||||
#: [roster]search
|
||||
#, fuzzy
|
||||
msgid "Search in your contacts"
|
||||
|
@ -1136,7 +1142,7 @@ msgid "Chat with the team ?"
|
|||
msgstr ""
|
||||
|
||||
#: [chatroom]button
|
||||
msgid "Join the Chatroom"
|
||||
msgid "Add the chatroom"
|
||||
msgstr ""
|
||||
|
||||
#: [init]location
|
||||
|
@ -1229,10 +1235,6 @@ msgstr "Jūsu XMPP serveris nav atļauts"
|
|||
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 ""
|
||||
|
@ -1316,13 +1318,17 @@ msgid "Welcome on your news feed, here you will see all the posts published by y
|
|||
msgstr ""
|
||||
|
||||
#: [menu]refresh
|
||||
msgid "Refreshing all the streams"
|
||||
msgid "Refresh all the streams"
|
||||
msgstr ""
|
||||
|
||||
#: [menu]public
|
||||
msgid "This post is public"
|
||||
msgstr ""
|
||||
|
||||
#: [menu]all
|
||||
msgid "All"
|
||||
msgstr ""
|
||||
|
||||
#: [affiliations]title
|
||||
msgid "Manage your members"
|
||||
msgstr ""
|
||||
|
@ -1359,10 +1365,6 @@ msgstr ""
|
|||
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 ""
|
||||
|
@ -1407,12 +1409,12 @@ msgstr ""
|
|||
msgid "Publish this post publicly?"
|
||||
msgstr ""
|
||||
|
||||
#: [post]blog_add
|
||||
msgid "Post published on your blog"
|
||||
#: [post]public_yes
|
||||
msgid "This post is now public"
|
||||
msgstr ""
|
||||
|
||||
#: [post]blog_remove
|
||||
msgid "Post removed from your blog"
|
||||
#: [post]public_no
|
||||
msgid "This post is now private"
|
||||
msgstr ""
|
||||
|
||||
#: [post]delete_title [post]delete
|
||||
|
@ -1423,6 +1425,10 @@ msgstr ""
|
|||
msgid "You are going to delete this post, please confirm your action"
|
||||
msgstr ""
|
||||
|
||||
#: [post]discover
|
||||
msgid "Discover more articles on the Groups page"
|
||||
msgstr ""
|
||||
|
||||
#: [post]comments_disabled
|
||||
msgid "Comments disabled"
|
||||
msgstr ""
|
||||
|
@ -1487,10 +1493,6 @@ msgstr ""
|
|||
msgid "This picture will be added to your gallery"
|
||||
msgstr ""
|
||||
|
||||
#: [post]embed_tip
|
||||
msgid "You can also use services like Imgur or Flickr to host your picture and paste the link here."
|
||||
msgstr ""
|
||||
|
||||
#: [publish]valid_url
|
||||
msgid "Please enter a valid url"
|
||||
msgstr ""
|
||||
|
@ -1503,6 +1505,10 @@ msgstr ""
|
|||
msgid "Please provide a title"
|
||||
msgstr ""
|
||||
|
||||
#: [publish]edit
|
||||
msgid "Edit post"
|
||||
msgstr ""
|
||||
|
||||
#: [publish]title
|
||||
msgid "Publish"
|
||||
msgstr ""
|
||||
|
@ -1898,6 +1904,10 @@ msgstr ""
|
|||
msgid "Room"
|
||||
msgstr ""
|
||||
|
||||
#: [page]tag
|
||||
msgid "Tag"
|
||||
msgstr ""
|
||||
|
||||
#: [error]error
|
||||
msgid "Error: %s"
|
||||
msgstr ""
|
||||
|
@ -2752,6 +2762,12 @@ msgstr ""
|
|||
msgid "Type here"
|
||||
msgstr ""
|
||||
|
||||
#~ 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"
|
||||
|
||||
#~ msgid "Manage"
|
||||
#~ msgstr "Pārvaldīt"
|
||||
|
||||
#, fuzzy
|
||||
#~ msgid "Active contacts"
|
||||
#~ msgstr "Jūsu kontakti"
|
||||
|
|
|
@ -89,6 +89,150 @@
|
|||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"#-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#\n"
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-12-29 13:42+0200\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Translate Toolkit 1.13.0\n"
|
||||
"#-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#\n"
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-12-29 13:42+0200\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Translate Toolkit 1.13.0\n"
|
||||
"#-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#\n"
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-12-29 13:42+0200\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Translate Toolkit 1.13.0\n"
|
||||
"#-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#\n"
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-12-29 13:42+0200\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Translate Toolkit 1.13.0\n"
|
||||
"#-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#\n"
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-12-29 13:42+0200\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Translate Toolkit 1.13.0\n"
|
||||
"#-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#\n"
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-12-29 13:42+0200\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Translate Toolkit 1.13.0\n"
|
||||
"#-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#\n"
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-12-29 13:42+0200\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Translate Toolkit 1.13.0\n"
|
||||
"#-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#\n"
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-12-29 13:42+0200\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Translate Toolkit 1.13.0\n"
|
||||
"#-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#\n"
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-12-29 13:42+0200\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Translate Toolkit 1.13.0\n"
|
||||
"#-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#\n"
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-12-29 13:42+0200\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Translate Toolkit 1.13.0\n"
|
||||
"#-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#\n"
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-12-29 13:42+0200\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Translate Toolkit 1.13.0\n"
|
||||
"#-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#\n"
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-12-29 13:42+0200\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Translate Toolkit 1.13.0\n"
|
||||
"#-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#\n"
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-12-29 13:42+0200\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Translate Toolkit 1.13.0\n"
|
||||
"#-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#\n"
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-10-06 23:33+0200\n"
|
||||
|
@ -99,6 +243,336 @@ msgstr ""
|
|||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Translate Toolkit 1.13.0\n"
|
||||
"#-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#\n"
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-12-29 13:42+0200\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Translate Toolkit 1.13.0\n"
|
||||
"#-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#\n"
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-12-29 13:42+0200\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Translate Toolkit 1.13.0\n"
|
||||
"#-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#\n"
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-12-29 13:42+0200\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Translate Toolkit 1.13.0\n"
|
||||
"#-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#\n"
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-12-29 13:42+0200\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Translate Toolkit 1.13.0\n"
|
||||
"#-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#\n"
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-12-29 13:42+0200\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Translate Toolkit 1.13.0\n"
|
||||
"#-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#\n"
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-12-29 13:42+0200\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Translate Toolkit 1.13.0\n"
|
||||
"#-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#\n"
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-12-29 13:42+0200\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Translate Toolkit 1.13.0\n"
|
||||
"#-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#\n"
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-12-29 13:42+0200\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Translate Toolkit 1.13.0\n"
|
||||
"#-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#\n"
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-12-29 13:42+0200\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Translate Toolkit 1.13.0\n"
|
||||
"#-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#\n"
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-12-29 13:42+0200\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Translate Toolkit 1.13.0\n"
|
||||
"#-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#\n"
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-12-29 13:42+0200\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Translate Toolkit 1.13.0\n"
|
||||
"#-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#\n"
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-12-29 13:42+0200\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Translate Toolkit 1.13.0\n"
|
||||
"#-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#\n"
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-12-29 13:42+0200\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Translate Toolkit 1.13.0\n"
|
||||
"#-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#\n"
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-12-29 13:42+0200\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Translate Toolkit 1.13.0\n"
|
||||
"#-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#\n"
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-12-29 13:42+0200\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Translate Toolkit 1.13.0\n"
|
||||
"#-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#\n"
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-12-29 13:42+0200\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Translate Toolkit 1.13.0\n"
|
||||
"#-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#\n"
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-12-29 13:42+0200\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Translate Toolkit 1.13.0\n"
|
||||
"#-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#\n"
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-12-29 13:42+0200\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Translate Toolkit 1.13.0\n"
|
||||
"#-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#\n"
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-12-29 13:42+0200\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Translate Toolkit 1.13.0\n"
|
||||
"#-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#\n"
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-12-29 13:42+0200\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Translate Toolkit 1.13.0\n"
|
||||
"#-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#\n"
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-12-29 13:42+0200\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Translate Toolkit 1.13.0\n"
|
||||
"#-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#\n"
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-12-29 13:42+0200\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Translate Toolkit 1.13.0\n"
|
||||
"#-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#\n"
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-12-29 13:42+0200\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Translate Toolkit 1.13.0\n"
|
||||
"#-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#\n"
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-12-29 13:42+0200\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Translate Toolkit 1.13.0\n"
|
||||
"#-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#\n"
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-12-29 13:42+0200\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Translate Toolkit 1.13.0\n"
|
||||
"#-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#\n"
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-12-29 13:42+0200\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Translate Toolkit 1.13.0\n"
|
||||
"#-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#\n"
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-12-29 13:42+0200\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Translate Toolkit 1.13.0\n"
|
||||
"#-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#\n"
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-12-29 13:42+0200\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Translate Toolkit 1.13.0\n"
|
||||
"#-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#\n"
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-12-29 13:42+0200\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Translate Toolkit 1.13.0\n"
|
||||
"#-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#\n"
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-12-29 13:42+0200\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Translate Toolkit 1.13.0\n"
|
||||
|
||||
#: [about]thanks
|
||||
msgid "Thanks"
|
||||
|
@ -205,6 +679,10 @@ msgstr ""
|
|||
msgid "Loading"
|
||||
msgstr ""
|
||||
|
||||
#: [create]placeholder
|
||||
msgid "…and start playing"
|
||||
msgstr ""
|
||||
|
||||
#: [error]not_acceptable
|
||||
msgid "Not Acceptable"
|
||||
msgstr ""
|
||||
|
@ -260,7 +738,7 @@ msgid "Port"
|
|||
msgstr ""
|
||||
|
||||
#: [db]name
|
||||
msgid "Database sName"
|
||||
msgid "Database Name"
|
||||
msgstr ""
|
||||
|
||||
#: [admin]general
|
||||
|
@ -374,14 +852,6 @@ msgstr ""
|
|||
msgid "Syslog and files"
|
||||
msgstr ""
|
||||
|
||||
#: [rewrite]title
|
||||
msgid "URL Rewriting"
|
||||
msgstr ""
|
||||
|
||||
#: [rewrite]info
|
||||
msgid "The URL Rewriting can be enabled"
|
||||
msgstr ""
|
||||
|
||||
#: [admin]compatibility
|
||||
msgid "General Overview"
|
||||
msgstr ""
|
||||
|
@ -414,10 +884,6 @@ msgstr ""
|
|||
msgid "Read and write rights for the webserver in Movims root directory"
|
||||
msgstr ""
|
||||
|
||||
#: [compatibility]rewrite
|
||||
msgid "The URL Rewriting support is currently disabled"
|
||||
msgstr ""
|
||||
|
||||
#: [compatibility]db
|
||||
msgid "The database need to be updated, go to the database panel to fix this"
|
||||
msgstr ""
|
||||
|
@ -510,6 +976,10 @@ msgstr ""
|
|||
msgid "Avatar Not Updated"
|
||||
msgstr ""
|
||||
|
||||
#: [avatar]missing
|
||||
msgid "No avatar defined yet"
|
||||
msgstr ""
|
||||
|
||||
#: [blog]title [feed]title
|
||||
msgid "%s's feed"
|
||||
msgstr ""
|
||||
|
@ -518,6 +988,10 @@ msgstr ""
|
|||
msgid "This user has not posted anything right now"
|
||||
msgstr ""
|
||||
|
||||
#: [blog]private
|
||||
msgid "This content is private, please login to see it"
|
||||
msgstr ""
|
||||
|
||||
#: [title]conferences
|
||||
msgid "Conferences"
|
||||
msgstr ""
|
||||
|
@ -600,6 +1074,10 @@ msgstr ""
|
|||
msgid "Contact gone"
|
||||
msgstr ""
|
||||
|
||||
#: [message]history
|
||||
msgid "%s messages retrieved"
|
||||
msgstr ""
|
||||
|
||||
#: [chat]attention
|
||||
msgid "%s needs your attention"
|
||||
msgstr ""
|
||||
|
@ -658,8 +1136,8 @@ msgstr ""
|
|||
|
||||
#: [chats]empty
|
||||
msgid ""
|
||||
"Open a new conversation by clicking on the %s button bellow or visit the %s "
|
||||
"Contacts%s page."
|
||||
"Open a new conversation by clicking on the %s button bellow or visit the "
|
||||
"%sContacts%s page."
|
||||
msgstr ""
|
||||
|
||||
#: [chats]add
|
||||
|
@ -714,8 +1192,12 @@ msgstr ""
|
|||
msgid "Appearence"
|
||||
msgstr ""
|
||||
|
||||
#: [config]info
|
||||
msgid "This configuration is shared wherever you are connected"
|
||||
#: [config]not_valid
|
||||
msgid "Configuration invalid"
|
||||
msgstr ""
|
||||
|
||||
#: [config]advanced
|
||||
msgid "Advanced Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: [notifications]message
|
||||
|
@ -726,6 +1208,10 @@ msgstr ""
|
|||
msgid "Use desktop notifications"
|
||||
msgstr ""
|
||||
|
||||
#: [cssurl]label
|
||||
msgid "Custom CSS URL for your blog"
|
||||
msgstr ""
|
||||
|
||||
#: [general]legend [general]general_title
|
||||
msgid "General Informations"
|
||||
msgstr ""
|
||||
|
@ -839,6 +1325,10 @@ msgstr ""
|
|||
msgid "Last public post"
|
||||
msgstr ""
|
||||
|
||||
#: [blog]visit
|
||||
msgid "Visit the blog to see all the public posts"
|
||||
msgstr ""
|
||||
|
||||
#: [subscription]to
|
||||
msgid "You can see this contact status"
|
||||
msgstr ""
|
||||
|
@ -1035,18 +1525,6 @@ msgstr ""
|
|||
msgid "This server doesn't exists"
|
||||
msgstr ""
|
||||
|
||||
#: [menu]all
|
||||
msgid "All"
|
||||
msgstr ""
|
||||
|
||||
#: [menu]refresh
|
||||
msgid "Refresh all the streams"
|
||||
msgstr ""
|
||||
|
||||
#: [menu]me
|
||||
msgid "My publications"
|
||||
msgstr ""
|
||||
|
||||
#: [roster]search
|
||||
msgid "Search in your contacts"
|
||||
msgstr ""
|
||||
|
@ -1158,7 +1636,7 @@ msgid "Chat with the team ?"
|
|||
msgstr ""
|
||||
|
||||
#: [chatroom]button
|
||||
msgid "Join the Chatroom"
|
||||
msgid "Add the chatroom"
|
||||
msgstr ""
|
||||
|
||||
#: [init]location
|
||||
|
@ -1250,10 +1728,6 @@ msgstr ""
|
|||
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 "
|
||||
|
@ -1340,13 +1814,17 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#: [menu]refresh
|
||||
msgid "Refreshing all the streams"
|
||||
msgid "Refresh all the streams"
|
||||
msgstr ""
|
||||
|
||||
#: [menu]public
|
||||
msgid "This post is public"
|
||||
msgstr ""
|
||||
|
||||
#: [menu]all
|
||||
msgid "All"
|
||||
msgstr ""
|
||||
|
||||
#: [affiliations]title
|
||||
msgid "Manage your members"
|
||||
msgstr ""
|
||||
|
@ -1383,10 +1861,6 @@ msgstr ""
|
|||
msgid "%s wants to talk with you"
|
||||
msgstr ""
|
||||
|
||||
#: [notifs]manage
|
||||
msgid "Manage"
|
||||
msgstr ""
|
||||
|
||||
#: [post]news_feed
|
||||
msgid "News Feed"
|
||||
msgstr ""
|
||||
|
@ -1431,12 +1905,12 @@ msgstr ""
|
|||
msgid "Publish this post publicly?"
|
||||
msgstr ""
|
||||
|
||||
#: [post]blog_add
|
||||
msgid "Post published on your blog"
|
||||
#: [post]public_yes
|
||||
msgid "This post is now public"
|
||||
msgstr ""
|
||||
|
||||
#: [post]blog_remove
|
||||
msgid "Post removed from your blog"
|
||||
#: [post]public_no
|
||||
msgid "This post is now private"
|
||||
msgstr ""
|
||||
|
||||
#: [post]delete_title [post]delete
|
||||
|
@ -1447,6 +1921,10 @@ msgstr ""
|
|||
msgid "You are going to delete this post, please confirm your action"
|
||||
msgstr ""
|
||||
|
||||
#: [post]discover
|
||||
msgid "Discover more articles on the Groups page"
|
||||
msgstr ""
|
||||
|
||||
#: [post]comments_disabled
|
||||
msgid "Comments disabled"
|
||||
msgstr ""
|
||||
|
@ -1511,12 +1989,6 @@ msgstr ""
|
|||
msgid "This picture will be added to your gallery"
|
||||
msgstr ""
|
||||
|
||||
#: [post]embed_tip
|
||||
msgid ""
|
||||
"You can also use services like Imgur or Flickr to host your picture and "
|
||||
"paste the link here."
|
||||
msgstr ""
|
||||
|
||||
#: [publish]valid_url
|
||||
msgid "Please enter a valid url"
|
||||
msgstr ""
|
||||
|
@ -1529,6 +2001,10 @@ msgstr ""
|
|||
msgid "Please provide a title"
|
||||
msgstr ""
|
||||
|
||||
#: [publish]edit
|
||||
msgid "Edit post"
|
||||
msgstr ""
|
||||
|
||||
#: [publish]title
|
||||
msgid "Publish"
|
||||
msgstr ""
|
||||
|
@ -1930,6 +2406,10 @@ msgstr ""
|
|||
msgid "Room"
|
||||
msgstr ""
|
||||
|
||||
#: [page]tag
|
||||
msgid "Tag"
|
||||
msgstr ""
|
||||
|
||||
#: [error]error
|
||||
msgid "Error: %s"
|
||||
msgstr ""
|
||||
|
|
File diff suppressed because it is too large
Load diff
|
@ -93,7 +93,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Movim\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-10-06 23:33+0200\n"
|
||||
"POT-Creation-Date: 2015-12-29 13:42+0200\n"
|
||||
"PO-Revision-Date: 2012-07-19 11:30+0000\n"
|
||||
"Last-Translator: Vincent <vincent@influence-pc.fr>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
@ -206,6 +206,10 @@ msgstr ""
|
|||
msgid "Loading"
|
||||
msgstr ""
|
||||
|
||||
#: [create]placeholder
|
||||
msgid "…and start playing"
|
||||
msgstr ""
|
||||
|
||||
#: [error]not_acceptable
|
||||
msgid "Not Acceptable"
|
||||
msgstr ""
|
||||
|
@ -259,7 +263,7 @@ msgid "Port"
|
|||
msgstr ""
|
||||
|
||||
#: [db]name
|
||||
msgid "Database sName"
|
||||
msgid "Database Name"
|
||||
msgstr ""
|
||||
|
||||
#: [admin]general
|
||||
|
@ -370,14 +374,6 @@ msgstr ""
|
|||
msgid "Syslog and files"
|
||||
msgstr ""
|
||||
|
||||
#: [rewrite]title
|
||||
msgid "URL Rewriting"
|
||||
msgstr ""
|
||||
|
||||
#: [rewrite]info
|
||||
msgid "The URL Rewriting can be enabled"
|
||||
msgstr ""
|
||||
|
||||
#: [admin]compatibility
|
||||
msgid "General Overview"
|
||||
msgstr ""
|
||||
|
@ -410,10 +406,6 @@ msgstr ""
|
|||
msgid "Read and write rights for the webserver in Movims root directory"
|
||||
msgstr ""
|
||||
|
||||
#: [compatibility]rewrite
|
||||
msgid "The URL Rewriting support is currently disabled"
|
||||
msgstr ""
|
||||
|
||||
#: [compatibility]db
|
||||
msgid "The database need to be updated, go to the database panel to fix this"
|
||||
msgstr ""
|
||||
|
@ -498,6 +490,10 @@ msgstr ""
|
|||
msgid "Avatar Not Updated"
|
||||
msgstr ""
|
||||
|
||||
#: [avatar]missing
|
||||
msgid "No avatar defined yet"
|
||||
msgstr ""
|
||||
|
||||
#: [blog]title [feed]title
|
||||
msgid "%s's feed"
|
||||
msgstr ""
|
||||
|
@ -506,6 +502,10 @@ msgstr ""
|
|||
msgid "This user has not posted anything right now"
|
||||
msgstr ""
|
||||
|
||||
#: [blog]private
|
||||
msgid "This content is private, please login to see it"
|
||||
msgstr ""
|
||||
|
||||
#: [title]conferences
|
||||
msgid "Conferences"
|
||||
msgstr ""
|
||||
|
@ -590,6 +590,10 @@ msgstr ""
|
|||
msgid "Contact gone"
|
||||
msgstr ""
|
||||
|
||||
#: [message]history
|
||||
msgid "%s messages retrieved"
|
||||
msgstr ""
|
||||
|
||||
#: [chat]attention
|
||||
msgid "%s needs your attention"
|
||||
msgstr ""
|
||||
|
@ -647,7 +651,7 @@ msgid "No chats yet..."
|
|||
msgstr ""
|
||||
|
||||
#: [chats]empty
|
||||
msgid "Open a new conversation by clicking on the %s button bellow or visit the %s Contacts%s page."
|
||||
msgid "Open a new conversation by clicking on the %s button bellow or visit the %sContacts%s page."
|
||||
msgstr ""
|
||||
|
||||
#: [chats]add
|
||||
|
@ -702,8 +706,12 @@ msgstr ""
|
|||
msgid "Appearence"
|
||||
msgstr ""
|
||||
|
||||
#: [config]info
|
||||
msgid "This configuration is shared wherever you are connected"
|
||||
#: [config]not_valid
|
||||
msgid "Configuration invalid"
|
||||
msgstr ""
|
||||
|
||||
#: [config]advanced
|
||||
msgid "Advanced Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: [notifications]message
|
||||
|
@ -714,6 +722,10 @@ msgstr ""
|
|||
msgid "Use desktop notifications"
|
||||
msgstr ""
|
||||
|
||||
#: [cssurl]label
|
||||
msgid "Custom CSS URL for your blog"
|
||||
msgstr ""
|
||||
|
||||
#: [general]legend [general]general_title
|
||||
msgid "General Informations"
|
||||
msgstr "Generell informasjon"
|
||||
|
@ -826,6 +838,10 @@ msgstr ""
|
|||
msgid "Last public post"
|
||||
msgstr ""
|
||||
|
||||
#: [blog]visit
|
||||
msgid "Visit the blog to see all the public posts"
|
||||
msgstr ""
|
||||
|
||||
#: [subscription]to
|
||||
#, fuzzy
|
||||
msgid "You can see this contact status"
|
||||
|
@ -1011,18 +1027,6 @@ msgstr ""
|
|||
msgid "This server doesn't exists"
|
||||
msgstr ""
|
||||
|
||||
#: [menu]all
|
||||
msgid "All"
|
||||
msgstr ""
|
||||
|
||||
#: [menu]refresh
|
||||
msgid "Refresh all the streams"
|
||||
msgstr ""
|
||||
|
||||
#: [menu]me
|
||||
msgid "My publications"
|
||||
msgstr ""
|
||||
|
||||
#: [roster]search
|
||||
msgid "Search in your contacts"
|
||||
msgstr ""
|
||||
|
@ -1128,7 +1132,7 @@ msgid "Chat with the team ?"
|
|||
msgstr ""
|
||||
|
||||
#: [chatroom]button
|
||||
msgid "Join the Chatroom"
|
||||
msgid "Add the chatroom"
|
||||
msgstr ""
|
||||
|
||||
#: [init]location
|
||||
|
@ -1220,10 +1224,6 @@ msgstr ""
|
|||
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 ""
|
||||
|
@ -1306,13 +1306,17 @@ msgid "Welcome on your news feed, here you will see all the posts published by y
|
|||
msgstr ""
|
||||
|
||||
#: [menu]refresh
|
||||
msgid "Refreshing all the streams"
|
||||
msgid "Refresh all the streams"
|
||||
msgstr ""
|
||||
|
||||
#: [menu]public
|
||||
msgid "This post is public"
|
||||
msgstr ""
|
||||
|
||||
#: [menu]all
|
||||
msgid "All"
|
||||
msgstr ""
|
||||
|
||||
#: [affiliations]title
|
||||
msgid "Manage your members"
|
||||
msgstr ""
|
||||
|
@ -1349,10 +1353,6 @@ msgstr ""
|
|||
msgid "%s wants to talk with you"
|
||||
msgstr ""
|
||||
|
||||
#: [notifs]manage
|
||||
msgid "Manage"
|
||||
msgstr ""
|
||||
|
||||
#: [post]news_feed
|
||||
msgid "News Feed"
|
||||
msgstr ""
|
||||
|
@ -1397,12 +1397,12 @@ msgstr ""
|
|||
msgid "Publish this post publicly?"
|
||||
msgstr ""
|
||||
|
||||
#: [post]blog_add
|
||||
msgid "Post published on your blog"
|
||||
#: [post]public_yes
|
||||
msgid "This post is now public"
|
||||
msgstr ""
|
||||
|
||||
#: [post]blog_remove
|
||||
msgid "Post removed from your blog"
|
||||
#: [post]public_no
|
||||
msgid "This post is now private"
|
||||
msgstr ""
|
||||
|
||||
#: [post]delete_title [post]delete
|
||||
|
@ -1413,6 +1413,10 @@ msgstr ""
|
|||
msgid "You are going to delete this post, please confirm your action"
|
||||
msgstr ""
|
||||
|
||||
#: [post]discover
|
||||
msgid "Discover more articles on the Groups page"
|
||||
msgstr ""
|
||||
|
||||
#: [post]comments_disabled
|
||||
msgid "Comments disabled"
|
||||
msgstr ""
|
||||
|
@ -1477,10 +1481,6 @@ msgstr ""
|
|||
msgid "This picture will be added to your gallery"
|
||||
msgstr ""
|
||||
|
||||
#: [post]embed_tip
|
||||
msgid "You can also use services like Imgur or Flickr to host your picture and paste the link here."
|
||||
msgstr ""
|
||||
|
||||
#: [publish]valid_url
|
||||
msgid "Please enter a valid url"
|
||||
msgstr ""
|
||||
|
@ -1493,6 +1493,10 @@ msgstr ""
|
|||
msgid "Please provide a title"
|
||||
msgstr ""
|
||||
|
||||
#: [publish]edit
|
||||
msgid "Edit post"
|
||||
msgstr ""
|
||||
|
||||
#: [publish]title
|
||||
msgid "Publish"
|
||||
msgstr ""
|
||||
|
@ -1883,6 +1887,10 @@ msgstr ""
|
|||
msgid "Room"
|
||||
msgstr ""
|
||||
|
||||
#: [page]tag
|
||||
msgid "Tag"
|
||||
msgstr ""
|
||||
|
||||
#: [error]error
|
||||
msgid "Error: %s"
|
||||
msgstr "Feil %s"
|
||||
|
|
|
@ -93,7 +93,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Movim\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-10-06 23:33+0200\n"
|
||||
"POT-Creation-Date: 2015-12-29 13:42+0200\n"
|
||||
"PO-Revision-Date: 2015-06-09 12:18+0000\n"
|
||||
"Last-Translator: edhelas <edhelas@movim.eu>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
@ -208,6 +208,10 @@ msgstr ""
|
|||
msgid "Loading"
|
||||
msgstr ""
|
||||
|
||||
#: [create]placeholder
|
||||
msgid "…and start playing"
|
||||
msgstr ""
|
||||
|
||||
#: [error]not_acceptable
|
||||
msgid "Not Acceptable"
|
||||
msgstr ""
|
||||
|
@ -262,7 +266,7 @@ msgstr ""
|
|||
|
||||
#: [db]name
|
||||
#, fuzzy
|
||||
msgid "Database sName"
|
||||
msgid "Database Name"
|
||||
msgstr "Banca de donadas detectada"
|
||||
|
||||
#: [admin]general
|
||||
|
@ -374,14 +378,6 @@ msgstr ""
|
|||
msgid "Syslog and files"
|
||||
msgstr ""
|
||||
|
||||
#: [rewrite]title
|
||||
msgid "URL Rewriting"
|
||||
msgstr ""
|
||||
|
||||
#: [rewrite]info
|
||||
msgid "The URL Rewriting can be enabled"
|
||||
msgstr ""
|
||||
|
||||
#: [admin]compatibility
|
||||
msgid "General Overview"
|
||||
msgstr ""
|
||||
|
@ -415,10 +411,6 @@ msgstr ""
|
|||
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ç"
|
||||
|
||||
#: [compatibility]rewrite
|
||||
msgid "The URL Rewriting support is currently disabled"
|
||||
msgstr ""
|
||||
|
||||
#: [compatibility]db
|
||||
msgid "The database need to be updated, go to the database panel to fix this"
|
||||
msgstr ""
|
||||
|
@ -503,6 +495,10 @@ msgstr ""
|
|||
msgid "Avatar Not Updated"
|
||||
msgstr ""
|
||||
|
||||
#: [avatar]missing
|
||||
msgid "No avatar defined yet"
|
||||
msgstr ""
|
||||
|
||||
#: [blog]title [feed]title
|
||||
msgid "%s's feed"
|
||||
msgstr ""
|
||||
|
@ -511,6 +507,10 @@ msgstr ""
|
|||
msgid "This user has not posted anything right now"
|
||||
msgstr ""
|
||||
|
||||
#: [blog]private
|
||||
msgid "This content is private, please login to see it"
|
||||
msgstr ""
|
||||
|
||||
#: [title]conferences
|
||||
msgid "Conferences"
|
||||
msgstr "Conferéncias"
|
||||
|
@ -596,6 +596,10 @@ msgstr ""
|
|||
msgid "Contact gone"
|
||||
msgstr ""
|
||||
|
||||
#: [message]history
|
||||
msgid "%s messages retrieved"
|
||||
msgstr ""
|
||||
|
||||
#: [chat]attention
|
||||
msgid "%s needs your attention"
|
||||
msgstr "%s a besonh de vòstre atencion"
|
||||
|
@ -653,7 +657,7 @@ msgid "No chats yet..."
|
|||
msgstr ""
|
||||
|
||||
#: [chats]empty
|
||||
msgid "Open a new conversation by clicking on the %s button bellow or visit the %s Contacts%s page."
|
||||
msgid "Open a new conversation by clicking on the %s button bellow or visit the %sContacts%s page."
|
||||
msgstr ""
|
||||
|
||||
#: [chats]add
|
||||
|
@ -708,9 +712,15 @@ msgstr ""
|
|||
msgid "Appearence"
|
||||
msgstr ""
|
||||
|
||||
#: [config]info
|
||||
msgid "This configuration is shared wherever you are connected"
|
||||
msgstr ""
|
||||
#: [config]not_valid
|
||||
#, fuzzy
|
||||
msgid "Configuration invalid"
|
||||
msgstr "Configuracion"
|
||||
|
||||
#: [config]advanced
|
||||
#, fuzzy
|
||||
msgid "Advanced Configuration"
|
||||
msgstr "Configuracion"
|
||||
|
||||
#: [notifications]message
|
||||
msgid "Notify on incoming message"
|
||||
|
@ -720,6 +730,10 @@ msgstr ""
|
|||
msgid "Use desktop notifications"
|
||||
msgstr ""
|
||||
|
||||
#: [cssurl]label
|
||||
msgid "Custom CSS URL for your blog"
|
||||
msgstr ""
|
||||
|
||||
#: [general]legend [general]general_title
|
||||
msgid "General Informations"
|
||||
msgstr "Informacions Generalas"
|
||||
|
@ -832,6 +846,10 @@ msgstr ""
|
|||
msgid "Last public post"
|
||||
msgstr ""
|
||||
|
||||
#: [blog]visit
|
||||
msgid "Visit the blog to see all the public posts"
|
||||
msgstr ""
|
||||
|
||||
#: [subscription]to
|
||||
#, fuzzy
|
||||
msgid "You can see this contact status"
|
||||
|
@ -1022,18 +1040,6 @@ msgstr ""
|
|||
msgid "This server doesn't exists"
|
||||
msgstr ""
|
||||
|
||||
#: [menu]all
|
||||
msgid "All"
|
||||
msgstr "Tot"
|
||||
|
||||
#: [menu]refresh
|
||||
msgid "Refresh all the streams"
|
||||
msgstr ""
|
||||
|
||||
#: [menu]me
|
||||
msgid "My publications"
|
||||
msgstr ""
|
||||
|
||||
#: [roster]search
|
||||
#, fuzzy
|
||||
msgid "Search in your contacts"
|
||||
|
@ -1140,7 +1146,7 @@ msgid "Chat with the team ?"
|
|||
msgstr ""
|
||||
|
||||
#: [chatroom]button
|
||||
msgid "Join the Chatroom"
|
||||
msgid "Add the chatroom"
|
||||
msgstr ""
|
||||
|
||||
#: [init]location
|
||||
|
@ -1232,10 +1238,6 @@ msgstr ""
|
|||
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 ""
|
||||
|
@ -1318,13 +1320,17 @@ msgid "Welcome on your news feed, here you will see all the posts published by y
|
|||
msgstr ""
|
||||
|
||||
#: [menu]refresh
|
||||
msgid "Refreshing all the streams"
|
||||
msgid "Refresh all the streams"
|
||||
msgstr ""
|
||||
|
||||
#: [menu]public
|
||||
msgid "This post is public"
|
||||
msgstr ""
|
||||
|
||||
#: [menu]all
|
||||
msgid "All"
|
||||
msgstr "Tot"
|
||||
|
||||
#: [affiliations]title
|
||||
msgid "Manage your members"
|
||||
msgstr "Gerir vòstres membres"
|
||||
|
@ -1361,10 +1367,6 @@ msgstr ""
|
|||
msgid "%s wants to talk with you"
|
||||
msgstr ""
|
||||
|
||||
#: [notifs]manage
|
||||
msgid "Manage"
|
||||
msgstr "Gerir"
|
||||
|
||||
#: [post]news_feed
|
||||
msgid "News Feed"
|
||||
msgstr ""
|
||||
|
@ -1410,12 +1412,13 @@ msgstr ""
|
|||
msgid "Publish this post publicly?"
|
||||
msgstr "Es lo perfil public ?"
|
||||
|
||||
#: [post]blog_add
|
||||
msgid "Post published on your blog"
|
||||
msgstr ""
|
||||
#: [post]public_yes
|
||||
#, fuzzy
|
||||
msgid "This post is now public"
|
||||
msgstr "Es lo perfil public ?"
|
||||
|
||||
#: [post]blog_remove
|
||||
msgid "Post removed from your blog"
|
||||
#: [post]public_no
|
||||
msgid "This post is now private"
|
||||
msgstr ""
|
||||
|
||||
#: [post]delete_title [post]delete
|
||||
|
@ -1426,6 +1429,10 @@ msgstr ""
|
|||
msgid "You are going to delete this post, please confirm your action"
|
||||
msgstr ""
|
||||
|
||||
#: [post]discover
|
||||
msgid "Discover more articles on the Groups page"
|
||||
msgstr ""
|
||||
|
||||
#: [post]comments_disabled
|
||||
msgid "Comments disabled"
|
||||
msgstr ""
|
||||
|
@ -1490,10 +1497,6 @@ msgstr ""
|
|||
msgid "This picture will be added to your gallery"
|
||||
msgstr ""
|
||||
|
||||
#: [post]embed_tip
|
||||
msgid "You can also use services like Imgur or Flickr to host your picture and paste the link here."
|
||||
msgstr ""
|
||||
|
||||
#: [publish]valid_url
|
||||
msgid "Please enter a valid url"
|
||||
msgstr ""
|
||||
|
@ -1506,6 +1509,10 @@ msgstr ""
|
|||
msgid "Please provide a title"
|
||||
msgstr ""
|
||||
|
||||
#: [publish]edit
|
||||
msgid "Edit post"
|
||||
msgstr ""
|
||||
|
||||
#: [publish]title
|
||||
msgid "Publish"
|
||||
msgstr ""
|
||||
|
@ -1901,6 +1908,10 @@ msgstr ""
|
|||
msgid "Room"
|
||||
msgstr ""
|
||||
|
||||
#: [page]tag
|
||||
msgid "Tag"
|
||||
msgstr ""
|
||||
|
||||
#: [error]error
|
||||
msgid "Error: %s"
|
||||
msgstr "Error : %s"
|
||||
|
@ -2759,6 +2770,12 @@ msgstr ""
|
|||
msgid "Type here"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Your web browser is too old to use with Movim."
|
||||
#~ msgstr "Vòstre navigador es tròp vielh per utilizar Movim"
|
||||
|
||||
#~ msgid "Manage"
|
||||
#~ msgstr "Gerir"
|
||||
|
||||
#, fuzzy
|
||||
#~ msgid "Active contacts"
|
||||
#~ msgstr "Accions"
|
||||
|
|
|
@ -93,8 +93,8 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: movim\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-10-06 23:33+0200\n"
|
||||
"PO-Revision-Date: 2015-10-06 21:34+0000\n"
|
||||
"POT-Creation-Date: 2015-12-29 13:42+0200\n"
|
||||
"PO-Revision-Date: 2015-12-29 12:43+0000\n"
|
||||
"Last-Translator: Jaussoin Timothée <edhelas@movim.eu>\n"
|
||||
"Language-Team: Polish (http://www.transifex.com/movim/movim/language/pl/)\n"
|
||||
"Language: pl\n"
|
||||
|
@ -118,7 +118,7 @@ msgstr "Tłumacze"
|
|||
|
||||
#: [about]translators_text
|
||||
msgid "Thanks to all the translators"
|
||||
msgstr ""
|
||||
msgstr "Dziękujemy wszystkim tłumaczom"
|
||||
|
||||
#: [about]software
|
||||
msgid "Software"
|
||||
|
@ -205,6 +205,10 @@ msgstr "Twoje konto zarejestrowano pomyślnie"
|
|||
msgid "Loading"
|
||||
msgstr "Ładowanie"
|
||||
|
||||
#: [create]placeholder
|
||||
msgid "…and start playing"
|
||||
msgstr ""
|
||||
|
||||
#: [error]not_acceptable
|
||||
msgid "Not Acceptable"
|
||||
msgstr "Nie akceptowalne"
|
||||
|
@ -258,8 +262,8 @@ msgid "Port"
|
|||
msgstr "Port"
|
||||
|
||||
#: [db]name
|
||||
msgid "Database sName"
|
||||
msgstr "Nazwa Bazy Danych"
|
||||
msgid "Database Name"
|
||||
msgstr ""
|
||||
|
||||
#: [admin]general
|
||||
msgid "General Settings"
|
||||
|
@ -367,14 +371,6 @@ msgstr "Syslog"
|
|||
msgid "Syslog and files"
|
||||
msgstr "Syslog i pliki"
|
||||
|
||||
#: [rewrite]title
|
||||
msgid "URL Rewriting"
|
||||
msgstr "Przepisywanie URL"
|
||||
|
||||
#: [rewrite]info
|
||||
msgid "The URL Rewriting can be enabled"
|
||||
msgstr "Przepisywanie URL może być włączone"
|
||||
|
||||
#: [admin]compatibility
|
||||
msgid "General Overview"
|
||||
msgstr "Przegląd Ogólny"
|
||||
|
@ -407,10 +403,6 @@ msgstr "Zainstaluj bibliotekę php5-gd"
|
|||
msgid "Read and write rights for the webserver in Movims root directory"
|
||||
msgstr "Prawa do odczytu i zapisu dla webserver w katalogu root Movims"
|
||||
|
||||
#: [compatibility]rewrite
|
||||
msgid "The URL Rewriting support is currently disabled"
|
||||
msgstr "Wsparcie dla Przepisywania URL jest obecnie wyłączone"
|
||||
|
||||
#: [compatibility]db
|
||||
msgid "The database need to be updated, go to the database panel to fix this"
|
||||
msgstr "Baza danych musi być zaktualizowana. Idź do panelu baz danych by to naprawić"
|
||||
|
@ -495,6 +487,10 @@ msgstr "Avatar Zaktualizowany"
|
|||
msgid "Avatar Not Updated"
|
||||
msgstr "Avatar Nie Zaktualizowany"
|
||||
|
||||
#: [avatar]missing
|
||||
msgid "No avatar defined yet"
|
||||
msgstr ""
|
||||
|
||||
#: [blog]title [feed]title
|
||||
msgid "%s's feed"
|
||||
msgstr "Treści użytkownika %s"
|
||||
|
@ -503,6 +499,10 @@ msgstr "Treści użytkownika %s"
|
|||
msgid "This user has not posted anything right now"
|
||||
msgstr "Ten użytkownik niczego teraz nie opublikował"
|
||||
|
||||
#: [blog]private
|
||||
msgid "This content is private, please login to see it"
|
||||
msgstr ""
|
||||
|
||||
#: [title]conferences
|
||||
msgid "Conferences"
|
||||
msgstr "Konferencje"
|
||||
|
@ -522,7 +522,7 @@ msgstr "ID Pokoju Rozmów"
|
|||
#: [chatroom]name
|
||||
msgctxt "[chatroom]name"
|
||||
msgid "Name"
|
||||
msgstr "Imię"
|
||||
msgstr "Nazwa"
|
||||
|
||||
#: [chatroom]nickname [general]nickname [chatrooms]nickname
|
||||
msgid "Nickname"
|
||||
|
@ -585,6 +585,10 @@ msgstr "Zapauzowane..."
|
|||
msgid "Contact gone"
|
||||
msgstr "Kontakt zniknął"
|
||||
|
||||
#: [message]history
|
||||
msgid "%s messages retrieved"
|
||||
msgstr ""
|
||||
|
||||
#: [chat]attention
|
||||
msgid "%s needs your attention"
|
||||
msgstr "%s potrzebuje twojej uwagi"
|
||||
|
@ -642,7 +646,7 @@ msgid "No chats yet..."
|
|||
msgstr "Chwilowo brak czatów..."
|
||||
|
||||
#: [chats]empty
|
||||
msgid "Open a new conversation by clicking on the %s button bellow or visit the %s Contacts%s page."
|
||||
msgid "Open a new conversation by clicking on the %s button bellow or visit the %sContacts%s page."
|
||||
msgstr ""
|
||||
|
||||
#: [chats]add
|
||||
|
@ -683,7 +687,7 @@ msgstr "Język"
|
|||
|
||||
#: [config]roster
|
||||
msgid "Roster display"
|
||||
msgstr "Wyświetl listę"
|
||||
msgstr "Wyświetlanie listy"
|
||||
|
||||
#: [config]roster_show
|
||||
msgid "Show the offline contacts"
|
||||
|
@ -697,9 +701,13 @@ msgstr "Ukryj kontakty offline"
|
|||
msgid "Appearence"
|
||||
msgstr "Wygląd"
|
||||
|
||||
#: [config]info
|
||||
msgid "This configuration is shared wherever you are connected"
|
||||
msgstr "Konfiguracja jest dzielona gdziekolwiek się nie łączysz"
|
||||
#: [config]not_valid
|
||||
msgid "Configuration invalid"
|
||||
msgstr ""
|
||||
|
||||
#: [config]advanced
|
||||
msgid "Advanced Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: [notifications]message
|
||||
msgid "Notify on incoming message"
|
||||
|
@ -709,13 +717,17 @@ msgstr "Powiadom o nowej wiadomości"
|
|||
msgid "Use desktop notifications"
|
||||
msgstr "Użyj powiadomień na pulpicie"
|
||||
|
||||
#: [cssurl]label
|
||||
msgid "Custom CSS URL for your blog"
|
||||
msgstr ""
|
||||
|
||||
#: [general]legend [general]general_title
|
||||
msgid "General Informations"
|
||||
msgstr "Ogólne Informacje"
|
||||
|
||||
#: [general]name [public_groups]name [chatrooms]name
|
||||
msgid "Name"
|
||||
msgstr "Imię"
|
||||
msgstr "Nazwa"
|
||||
|
||||
#: [general]date_of_birth
|
||||
msgid "Date of Birth"
|
||||
|
@ -821,6 +833,10 @@ msgstr "%s lat"
|
|||
msgid "Last public post"
|
||||
msgstr "Ostatni publiczny post"
|
||||
|
||||
#: [blog]visit
|
||||
msgid "Visit the blog to see all the public posts"
|
||||
msgstr ""
|
||||
|
||||
#: [subscription]to
|
||||
msgid "You can see this contact status"
|
||||
msgstr "Możesz zobaczyć status kontaktu"
|
||||
|
@ -955,11 +971,11 @@ msgstr "Wpis Kontaktu"
|
|||
|
||||
#: [groups]empty_text1
|
||||
msgid "You don't have any group subscriptions yet."
|
||||
msgstr ""
|
||||
msgstr "Nie zasubskrybowałeś jeszcze żadnej grupy."
|
||||
|
||||
#: [groups]empty_text2
|
||||
msgid "Here you will be able to manage all your subscriptions."
|
||||
msgstr ""
|
||||
msgstr "Tutaj będziesz miał możliwość zarządzania swoimi wszystkimi subskrypcjami."
|
||||
|
||||
#: [groups]subscriptions
|
||||
msgid "My Subscriptions"
|
||||
|
@ -1005,18 +1021,6 @@ msgstr "%s wpisów"
|
|||
msgid "This server doesn't exists"
|
||||
msgstr "Serwer nie istnieje"
|
||||
|
||||
#: [menu]all
|
||||
msgid "All"
|
||||
msgstr "Wszystko"
|
||||
|
||||
#: [menu]refresh
|
||||
msgid "Refresh all the streams"
|
||||
msgstr "Odśwież wszystkie strumienie"
|
||||
|
||||
#: [menu]me
|
||||
msgid "My publications"
|
||||
msgstr ""
|
||||
|
||||
#: [roster]search
|
||||
msgid "Search in your contacts"
|
||||
msgstr "Szukaj w swoich kontaktach"
|
||||
|
@ -1055,19 +1059,19 @@ msgstr "Udostępnij na Movim"
|
|||
|
||||
#: [hello]enter_title
|
||||
msgid "Oh! Hello!"
|
||||
msgstr ""
|
||||
msgstr "Ah! Witaj!"
|
||||
|
||||
#: [hello]enter_paragraph
|
||||
msgid "It seems that you're new there! Welcome on Movim!"
|
||||
msgstr ""
|
||||
msgstr "Wygląda na to, że jesteś tutaj nowy! Witaj w Movim!"
|
||||
|
||||
#: [hello]menu_title
|
||||
msgid "Check the Menu"
|
||||
msgstr ""
|
||||
msgstr "Sprawdź Menu"
|
||||
|
||||
#: [hello]menu_paragraph
|
||||
msgid "All the main Movim features are accessible there. Don't hesitate to navigate through the pages to discover more!"
|
||||
msgstr ""
|
||||
msgstr "Tutaj masz dostęp do wszystkich głównych funkcji Movim. Możesz śmiało nawigować po całej stronie by odkryć jeszcze więcej!"
|
||||
|
||||
#: [help]faq
|
||||
msgid "Frequently Asked Questions"
|
||||
|
@ -1122,8 +1126,8 @@ msgid "Chat with the team ?"
|
|||
msgstr "Porozmawiaj z ekipą ?"
|
||||
|
||||
#: [chatroom]button
|
||||
msgid "Join the Chatroom"
|
||||
msgstr "Dołącz do Pokoju Czatowego"
|
||||
msgid "Add the chatroom"
|
||||
msgstr ""
|
||||
|
||||
#: [init]location
|
||||
msgid "Location node created"
|
||||
|
@ -1214,10 +1218,6 @@ msgstr "Twój serwer XMPP nie jest autoryzowany"
|
|||
msgid "The server takes too much time to respond"
|
||||
msgstr "Serwer za długo odpowiada"
|
||||
|
||||
#: [error]too_old
|
||||
msgid "Your web browser is too old to use with Movim."
|
||||
msgstr "Masz za starą przeglądarkę by używać Movim."
|
||||
|
||||
#: [error]websocket
|
||||
msgid "Movim cannot talk with the server, please try again later (Websocket connection error)"
|
||||
msgstr "Movim nie może porozumieć się z serwerem, proszę spróbować później (błąd połączenia z Websocket)"
|
||||
|
@ -1300,13 +1300,17 @@ msgid "Welcome on your news feed, here you will see all the posts published by y
|
|||
msgstr "Witaj w zakładce nowinek. Tutaj znajdziesz wszystkie posty opublikowany przez twoje kontakty oraz kontakty z zasubskrybowanych grup."
|
||||
|
||||
#: [menu]refresh
|
||||
msgid "Refreshing all the streams"
|
||||
msgid "Refresh all the streams"
|
||||
msgstr "Odśwież wszystkie strumienie"
|
||||
|
||||
#: [menu]public
|
||||
msgid "This post is public"
|
||||
msgstr "Wpis jest publiczny"
|
||||
|
||||
#: [menu]all
|
||||
msgid "All"
|
||||
msgstr "Wszystko"
|
||||
|
||||
#: [affiliations]title
|
||||
msgid "Manage your members"
|
||||
msgstr "Zarządzaj członkami"
|
||||
|
@ -1343,10 +1347,6 @@ msgstr "Oczekiwanie na Zaproszenie"
|
|||
msgid "%s wants to talk with you"
|
||||
msgstr "%s chce z tobą rozmawiać"
|
||||
|
||||
#: [notifs]manage
|
||||
msgid "Manage"
|
||||
msgstr "Zarządzaj"
|
||||
|
||||
#: [post]news_feed
|
||||
msgid "News Feed"
|
||||
msgstr "Nowinki"
|
||||
|
@ -1391,13 +1391,13 @@ msgstr "Zobacz profil %s"
|
|||
msgid "Publish this post publicly?"
|
||||
msgstr "Opublikować wpis publicznie?"
|
||||
|
||||
#: [post]blog_add
|
||||
msgid "Post published on your blog"
|
||||
msgstr "Wpis opublikowany na twoim blogu"
|
||||
#: [post]public_yes
|
||||
msgid "This post is now public"
|
||||
msgstr ""
|
||||
|
||||
#: [post]blog_remove
|
||||
msgid "Post removed from your blog"
|
||||
msgstr "Wpis usunięty z twojego bloga"
|
||||
#: [post]public_no
|
||||
msgid "This post is now private"
|
||||
msgstr ""
|
||||
|
||||
#: [post]delete_title [post]delete
|
||||
msgid "Delete this post"
|
||||
|
@ -1407,6 +1407,10 @@ msgstr "Usuń ten wpis"
|
|||
msgid "You are going to delete this post, please confirm your action"
|
||||
msgstr "Zamierzasz usunąć ten wpis, potwierdź swoje zamiary"
|
||||
|
||||
#: [post]discover
|
||||
msgid "Discover more articles on the Groups page"
|
||||
msgstr ""
|
||||
|
||||
#: [post]comments_disabled
|
||||
msgid "Comments disabled"
|
||||
msgstr "Komentowanie zablokowane"
|
||||
|
@ -1457,7 +1461,7 @@ msgstr "Podręcznik Markdown syntax"
|
|||
|
||||
#: [post]content_text
|
||||
msgid "You can format your content using Markdown"
|
||||
msgstr ""
|
||||
msgstr "Możesz formatować swoją zawartość poprzez użycie Markdown"
|
||||
|
||||
#: [post]link
|
||||
msgid "Link"
|
||||
|
@ -1471,10 +1475,6 @@ msgstr "Tagi"
|
|||
msgid "This picture will be added to your gallery"
|
||||
msgstr "Ten obrazek zostanie dodany do twojej galerii"
|
||||
|
||||
#: [post]embed_tip
|
||||
msgid "You can also use services like Imgur or Flickr to host your picture and paste the link here."
|
||||
msgstr "Możesz też użyć takich serwisów jak Imgur lub Flickr do wrzucenia obrazków i wklejenia linku tutaj."
|
||||
|
||||
#: [publish]valid_url
|
||||
msgid "Please enter a valid url"
|
||||
msgstr "Proszę wpisać poprawny adres URL"
|
||||
|
@ -1485,6 +1485,10 @@ msgstr "Brak zawartości do podejrzenia"
|
|||
|
||||
#: [publish]no_title
|
||||
msgid "Please provide a title"
|
||||
msgstr "Proszę podać tytuł"
|
||||
|
||||
#: [publish]edit
|
||||
msgid "Edit post"
|
||||
msgstr ""
|
||||
|
||||
#: [publish]title
|
||||
|
@ -1505,11 +1509,11 @@ msgstr "Jakieś pola zostały wypełnione. Czy na pewno chcesz wrócić i straci
|
|||
|
||||
#: [publish]add_text
|
||||
msgid "Click here to add some text to your publication"
|
||||
msgstr ""
|
||||
msgstr "Kliknij tutaj by dodać trochę tekstu do swojej publikacji"
|
||||
|
||||
#: [publish]add_text_label
|
||||
msgid "Add some text"
|
||||
msgstr ""
|
||||
msgstr "Dodaj trochę tekstu"
|
||||
|
||||
#: [public_groups]shared
|
||||
msgid "Shared"
|
||||
|
@ -1529,7 +1533,7 @@ msgstr "Nie masz żadnych pokoi czatowych"
|
|||
|
||||
#: [rooms]empty_text2
|
||||
msgid "Add one by clicking on the add button."
|
||||
msgstr ""
|
||||
msgstr "Dodaj coś poprzez kliknięcie na przycisku Dodaj"
|
||||
|
||||
#: [chatrooms]title
|
||||
msgid "Chatrooms"
|
||||
|
@ -1549,7 +1553,7 @@ msgstr "Proszę wpisać poprawny nick (2 do 40 znaków)"
|
|||
|
||||
#: [chatrooms]conflict
|
||||
msgid "Username already taken"
|
||||
msgstr ""
|
||||
msgstr "Nazwa użytkownika jest już zajęta"
|
||||
|
||||
#: [room]anonymous_title
|
||||
msgid "Public chatroom"
|
||||
|
@ -1877,6 +1881,10 @@ msgstr "Udostępnij"
|
|||
msgid "Room"
|
||||
msgstr "Pokój"
|
||||
|
||||
#: [page]tag
|
||||
msgid "Tag"
|
||||
msgstr ""
|
||||
|
||||
#: [error]error
|
||||
msgid "Error: %s"
|
||||
msgstr "Błąd: %s"
|
||||
|
|
File diff suppressed because it is too large
Load diff
|
@ -93,7 +93,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Movim\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-10-06 23:33+0200\n"
|
||||
"POT-Creation-Date: 2015-12-29 13:42+0200\n"
|
||||
"PO-Revision-Date: 2011-10-26 21:35+0000\n"
|
||||
"Last-Translator: edhelas <edhelas@movim.eu>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
@ -207,6 +207,10 @@ msgstr ""
|
|||
msgid "Loading"
|
||||
msgstr ""
|
||||
|
||||
#: [create]placeholder
|
||||
msgid "…and start playing"
|
||||
msgstr ""
|
||||
|
||||
#: [error]not_acceptable
|
||||
msgid "Not Acceptable"
|
||||
msgstr ""
|
||||
|
@ -260,7 +264,7 @@ msgid "Port"
|
|||
msgstr ""
|
||||
|
||||
#: [db]name
|
||||
msgid "Database sName"
|
||||
msgid "Database Name"
|
||||
msgstr ""
|
||||
|
||||
#: [admin]general
|
||||
|
@ -371,14 +375,6 @@ msgstr ""
|
|||
msgid "Syslog and files"
|
||||
msgstr ""
|
||||
|
||||
#: [rewrite]title
|
||||
msgid "URL Rewriting"
|
||||
msgstr ""
|
||||
|
||||
#: [rewrite]info
|
||||
msgid "The URL Rewriting can be enabled"
|
||||
msgstr ""
|
||||
|
||||
#: [admin]compatibility
|
||||
msgid "General Overview"
|
||||
msgstr ""
|
||||
|
@ -411,10 +407,6 @@ msgstr ""
|
|||
msgid "Read and write rights for the webserver in Movims root directory"
|
||||
msgstr ""
|
||||
|
||||
#: [compatibility]rewrite
|
||||
msgid "The URL Rewriting support is currently disabled"
|
||||
msgstr ""
|
||||
|
||||
#: [compatibility]db
|
||||
msgid "The database need to be updated, go to the database panel to fix this"
|
||||
msgstr ""
|
||||
|
@ -499,6 +491,10 @@ msgstr ""
|
|||
msgid "Avatar Not Updated"
|
||||
msgstr ""
|
||||
|
||||
#: [avatar]missing
|
||||
msgid "No avatar defined yet"
|
||||
msgstr ""
|
||||
|
||||
#: [blog]title [feed]title
|
||||
msgid "%s's feed"
|
||||
msgstr ""
|
||||
|
@ -507,6 +503,10 @@ msgstr ""
|
|||
msgid "This user has not posted anything right now"
|
||||
msgstr ""
|
||||
|
||||
#: [blog]private
|
||||
msgid "This content is private, please login to see it"
|
||||
msgstr ""
|
||||
|
||||
#: [title]conferences
|
||||
msgid "Conferences"
|
||||
msgstr ""
|
||||
|
@ -591,6 +591,10 @@ msgstr ""
|
|||
msgid "Contact gone"
|
||||
msgstr ""
|
||||
|
||||
#: [message]history
|
||||
msgid "%s messages retrieved"
|
||||
msgstr ""
|
||||
|
||||
#: [chat]attention
|
||||
msgid "%s needs your attention"
|
||||
msgstr ""
|
||||
|
@ -648,7 +652,7 @@ msgid "No chats yet..."
|
|||
msgstr ""
|
||||
|
||||
#: [chats]empty
|
||||
msgid "Open a new conversation by clicking on the %s button bellow or visit the %s Contacts%s page."
|
||||
msgid "Open a new conversation by clicking on the %s button bellow or visit the %sContacts%s page."
|
||||
msgstr ""
|
||||
|
||||
#: [chats]add
|
||||
|
@ -703,9 +707,15 @@ msgstr ""
|
|||
msgid "Appearence"
|
||||
msgstr ""
|
||||
|
||||
#: [config]info
|
||||
msgid "This configuration is shared wherever you are connected"
|
||||
msgstr ""
|
||||
#: [config]not_valid
|
||||
#, fuzzy
|
||||
msgid "Configuration invalid"
|
||||
msgstr "Configurare"
|
||||
|
||||
#: [config]advanced
|
||||
#, fuzzy
|
||||
msgid "Advanced Configuration"
|
||||
msgstr "Configurare"
|
||||
|
||||
#: [notifications]message
|
||||
msgid "Notify on incoming message"
|
||||
|
@ -715,6 +725,10 @@ msgstr ""
|
|||
msgid "Use desktop notifications"
|
||||
msgstr ""
|
||||
|
||||
#: [cssurl]label
|
||||
msgid "Custom CSS URL for your blog"
|
||||
msgstr ""
|
||||
|
||||
#: [general]legend [general]general_title
|
||||
msgid "General Informations"
|
||||
msgstr "Informatii generale"
|
||||
|
@ -827,6 +841,10 @@ msgstr ""
|
|||
msgid "Last public post"
|
||||
msgstr ""
|
||||
|
||||
#: [blog]visit
|
||||
msgid "Visit the blog to see all the public posts"
|
||||
msgstr ""
|
||||
|
||||
#: [subscription]to
|
||||
#, fuzzy
|
||||
msgid "You can see this contact status"
|
||||
|
@ -1012,18 +1030,6 @@ msgstr ""
|
|||
msgid "This server doesn't exists"
|
||||
msgstr ""
|
||||
|
||||
#: [menu]all
|
||||
msgid "All"
|
||||
msgstr ""
|
||||
|
||||
#: [menu]refresh
|
||||
msgid "Refresh all the streams"
|
||||
msgstr ""
|
||||
|
||||
#: [menu]me
|
||||
msgid "My publications"
|
||||
msgstr ""
|
||||
|
||||
#: [roster]search
|
||||
msgid "Search in your contacts"
|
||||
msgstr ""
|
||||
|
@ -1129,7 +1135,7 @@ msgid "Chat with the team ?"
|
|||
msgstr ""
|
||||
|
||||
#: [chatroom]button
|
||||
msgid "Join the Chatroom"
|
||||
msgid "Add the chatroom"
|
||||
msgstr ""
|
||||
|
||||
#: [init]location
|
||||
|
@ -1221,10 +1227,6 @@ msgstr ""
|
|||
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 ""
|
||||
|
@ -1307,13 +1309,17 @@ msgid "Welcome on your news feed, here you will see all the posts published by y
|
|||
msgstr ""
|
||||
|
||||
#: [menu]refresh
|
||||
msgid "Refreshing all the streams"
|
||||
msgid "Refresh all the streams"
|
||||
msgstr ""
|
||||
|
||||
#: [menu]public
|
||||
msgid "This post is public"
|
||||
msgstr ""
|
||||
|
||||
#: [menu]all
|
||||
msgid "All"
|
||||
msgstr ""
|
||||
|
||||
#: [affiliations]title
|
||||
msgid "Manage your members"
|
||||
msgstr ""
|
||||
|
@ -1350,10 +1356,6 @@ msgstr ""
|
|||
msgid "%s wants to talk with you"
|
||||
msgstr ""
|
||||
|
||||
#: [notifs]manage
|
||||
msgid "Manage"
|
||||
msgstr ""
|
||||
|
||||
#: [post]news_feed
|
||||
msgid "News Feed"
|
||||
msgstr ""
|
||||
|
@ -1398,12 +1400,12 @@ msgstr ""
|
|||
msgid "Publish this post publicly?"
|
||||
msgstr ""
|
||||
|
||||
#: [post]blog_add
|
||||
msgid "Post published on your blog"
|
||||
#: [post]public_yes
|
||||
msgid "This post is now public"
|
||||
msgstr ""
|
||||
|
||||
#: [post]blog_remove
|
||||
msgid "Post removed from your blog"
|
||||
#: [post]public_no
|
||||
msgid "This post is now private"
|
||||
msgstr ""
|
||||
|
||||
#: [post]delete_title [post]delete
|
||||
|
@ -1414,6 +1416,10 @@ msgstr ""
|
|||
msgid "You are going to delete this post, please confirm your action"
|
||||
msgstr ""
|
||||
|
||||
#: [post]discover
|
||||
msgid "Discover more articles on the Groups page"
|
||||
msgstr ""
|
||||
|
||||
#: [post]comments_disabled
|
||||
msgid "Comments disabled"
|
||||
msgstr ""
|
||||
|
@ -1478,10 +1484,6 @@ msgstr ""
|
|||
msgid "This picture will be added to your gallery"
|
||||
msgstr ""
|
||||
|
||||
#: [post]embed_tip
|
||||
msgid "You can also use services like Imgur or Flickr to host your picture and paste the link here."
|
||||
msgstr ""
|
||||
|
||||
#: [publish]valid_url
|
||||
msgid "Please enter a valid url"
|
||||
msgstr ""
|
||||
|
@ -1494,6 +1496,10 @@ msgstr ""
|
|||
msgid "Please provide a title"
|
||||
msgstr ""
|
||||
|
||||
#: [publish]edit
|
||||
msgid "Edit post"
|
||||
msgstr ""
|
||||
|
||||
#: [publish]title
|
||||
msgid "Publish"
|
||||
msgstr ""
|
||||
|
@ -1886,6 +1892,10 @@ msgstr ""
|
|||
msgid "Room"
|
||||
msgstr ""
|
||||
|
||||
#: [page]tag
|
||||
msgid "Tag"
|
||||
msgstr ""
|
||||
|
||||
#: [error]error
|
||||
msgid "Error: %s"
|
||||
msgstr "Eroare: %s"
|
||||
|
|
|
@ -92,7 +92,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: movim\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-10-06 23:33+0200\n"
|
||||
"POT-Creation-Date: 2015-12-29 13:42+0200\n"
|
||||
"PO-Revision-Date: 2015-10-06 21:34+0000\n"
|
||||
"Last-Translator: Jaussoin Timothée <edhelas@movim.eu>\n"
|
||||
"Language-Team: Russian (http://www.transifex.com/movim/movim/language/ru/)\n"
|
||||
|
@ -204,6 +204,10 @@ msgstr ""
|
|||
msgid "Loading"
|
||||
msgstr ""
|
||||
|
||||
#: [create]placeholder
|
||||
msgid "…and start playing"
|
||||
msgstr ""
|
||||
|
||||
#: [error]not_acceptable
|
||||
msgid "Not Acceptable"
|
||||
msgstr ""
|
||||
|
@ -257,8 +261,9 @@ msgid "Port"
|
|||
msgstr "Порт"
|
||||
|
||||
#: [db]name
|
||||
msgid "Database sName"
|
||||
msgstr ""
|
||||
#, fuzzy
|
||||
msgid "Database Name"
|
||||
msgstr "Тип базы данных"
|
||||
|
||||
#: [admin]general
|
||||
msgid "General Settings"
|
||||
|
@ -366,14 +371,6 @@ msgstr "Syslog"
|
|||
msgid "Syslog and files"
|
||||
msgstr "Syslog и файлы"
|
||||
|
||||
#: [rewrite]title
|
||||
msgid "URL Rewriting"
|
||||
msgstr ""
|
||||
|
||||
#: [rewrite]info
|
||||
msgid "The URL Rewriting can be enabled"
|
||||
msgstr ""
|
||||
|
||||
#: [admin]compatibility
|
||||
msgid "General Overview"
|
||||
msgstr "Общие сведения"
|
||||
|
@ -406,10 +403,6 @@ msgstr ""
|
|||
msgid "Read and write rights for the webserver in Movims root directory"
|
||||
msgstr ""
|
||||
|
||||
#: [compatibility]rewrite
|
||||
msgid "The URL Rewriting support is currently disabled"
|
||||
msgstr "Поддержка URL Rewrite, на текущий момент, отключена"
|
||||
|
||||
#: [compatibility]db
|
||||
msgid "The database need to be updated, go to the database panel to fix this"
|
||||
msgstr ""
|
||||
|
@ -494,6 +487,10 @@ msgstr "Аватара обновлена"
|
|||
msgid "Avatar Not Updated"
|
||||
msgstr "Аватара не обновлена"
|
||||
|
||||
#: [avatar]missing
|
||||
msgid "No avatar defined yet"
|
||||
msgstr ""
|
||||
|
||||
#: [blog]title [feed]title
|
||||
msgid "%s's feed"
|
||||
msgstr "лента пользователя %s"
|
||||
|
@ -502,6 +499,10 @@ msgstr "лента пользователя %s"
|
|||
msgid "This user has not posted anything right now"
|
||||
msgstr ""
|
||||
|
||||
#: [blog]private
|
||||
msgid "This content is private, please login to see it"
|
||||
msgstr ""
|
||||
|
||||
#: [title]conferences
|
||||
msgid "Conferences"
|
||||
msgstr "Конференции"
|
||||
|
@ -584,6 +585,10 @@ msgstr "Пауза..."
|
|||
msgid "Contact gone"
|
||||
msgstr ""
|
||||
|
||||
#: [message]history
|
||||
msgid "%s messages retrieved"
|
||||
msgstr ""
|
||||
|
||||
#: [chat]attention
|
||||
msgid "%s needs your attention"
|
||||
msgstr "%s нуждается в Вашем внимании"
|
||||
|
@ -641,7 +646,7 @@ msgid "No chats yet..."
|
|||
msgstr ""
|
||||
|
||||
#: [chats]empty
|
||||
msgid "Open a new conversation by clicking on the %s button bellow or visit the %s Contacts%s page."
|
||||
msgid "Open a new conversation by clicking on the %s button bellow or visit the %sContacts%s page."
|
||||
msgstr ""
|
||||
|
||||
#: [chats]add
|
||||
|
@ -696,9 +701,15 @@ msgstr ""
|
|||
msgid "Appearence"
|
||||
msgstr "Внешний вид"
|
||||
|
||||
#: [config]info
|
||||
msgid "This configuration is shared wherever you are connected"
|
||||
msgstr ""
|
||||
#: [config]not_valid
|
||||
#, fuzzy
|
||||
msgid "Configuration invalid"
|
||||
msgstr "Настройки"
|
||||
|
||||
#: [config]advanced
|
||||
#, fuzzy
|
||||
msgid "Advanced Configuration"
|
||||
msgstr "Настройки"
|
||||
|
||||
#: [notifications]message
|
||||
msgid "Notify on incoming message"
|
||||
|
@ -708,6 +719,10 @@ msgstr "Оповещать о входящих сообщениях"
|
|||
msgid "Use desktop notifications"
|
||||
msgstr "Использовать оповещения ОС"
|
||||
|
||||
#: [cssurl]label
|
||||
msgid "Custom CSS URL for your blog"
|
||||
msgstr ""
|
||||
|
||||
#: [general]legend [general]general_title
|
||||
msgid "General Informations"
|
||||
msgstr "Общая информация"
|
||||
|
@ -820,6 +835,10 @@ msgstr ""
|
|||
msgid "Last public post"
|
||||
msgstr ""
|
||||
|
||||
#: [blog]visit
|
||||
msgid "Visit the blog to see all the public posts"
|
||||
msgstr ""
|
||||
|
||||
#: [subscription]to
|
||||
msgid "You can see this contact status"
|
||||
msgstr ""
|
||||
|
@ -1004,18 +1023,6 @@ msgstr ""
|
|||
msgid "This server doesn't exists"
|
||||
msgstr ""
|
||||
|
||||
#: [menu]all
|
||||
msgid "All"
|
||||
msgstr "Все"
|
||||
|
||||
#: [menu]refresh
|
||||
msgid "Refresh all the streams"
|
||||
msgstr "Обновить все потоки"
|
||||
|
||||
#: [menu]me
|
||||
msgid "My publications"
|
||||
msgstr ""
|
||||
|
||||
#: [roster]search
|
||||
msgid "Search in your contacts"
|
||||
msgstr ""
|
||||
|
@ -1121,8 +1128,9 @@ msgid "Chat with the team ?"
|
|||
msgstr "Желаете пообщаться с нашей командой?"
|
||||
|
||||
#: [chatroom]button
|
||||
msgid "Join the Chatroom"
|
||||
msgstr "Присоединиться к конференции"
|
||||
#, fuzzy
|
||||
msgid "Add the chatroom"
|
||||
msgstr "Добавить комнату"
|
||||
|
||||
#: [init]location
|
||||
msgid "Location node created"
|
||||
|
@ -1213,10 +1221,6 @@ msgstr ""
|
|||
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)"
|
||||
|
@ -1299,13 +1303,17 @@ msgid "Welcome on your news feed, here you will see all the posts published by y
|
|||
msgstr ""
|
||||
|
||||
#: [menu]refresh
|
||||
msgid "Refreshing all the streams"
|
||||
msgstr "Обновляются все потоки"
|
||||
msgid "Refresh all the streams"
|
||||
msgstr "Обновить все потоки"
|
||||
|
||||
#: [menu]public
|
||||
msgid "This post is public"
|
||||
msgstr ""
|
||||
|
||||
#: [menu]all
|
||||
msgid "All"
|
||||
msgstr "Все"
|
||||
|
||||
#: [affiliations]title
|
||||
msgid "Manage your members"
|
||||
msgstr "Управление позицией пользователей"
|
||||
|
@ -1342,10 +1350,6 @@ msgstr "Ожидающие решения приглашения"
|
|||
msgid "%s wants to talk with you"
|
||||
msgstr "%s хочет поговорить с Вами"
|
||||
|
||||
#: [notifs]manage
|
||||
msgid "Manage"
|
||||
msgstr "Управлять"
|
||||
|
||||
#: [post]news_feed
|
||||
msgid "News Feed"
|
||||
msgstr "Новостная лента"
|
||||
|
@ -1390,12 +1394,13 @@ msgstr ""
|
|||
msgid "Publish this post publicly?"
|
||||
msgstr ""
|
||||
|
||||
#: [post]blog_add
|
||||
msgid "Post published on your blog"
|
||||
msgstr ""
|
||||
#: [post]public_yes
|
||||
#, fuzzy
|
||||
msgid "This post is now public"
|
||||
msgstr "Ваш профиль теперь общедоступен"
|
||||
|
||||
#: [post]blog_remove
|
||||
msgid "Post removed from your blog"
|
||||
#: [post]public_no
|
||||
msgid "This post is now private"
|
||||
msgstr ""
|
||||
|
||||
#: [post]delete_title [post]delete
|
||||
|
@ -1406,6 +1411,10 @@ msgstr "Удалить этот пост"
|
|||
msgid "You are going to delete this post, please confirm your action"
|
||||
msgstr ""
|
||||
|
||||
#: [post]discover
|
||||
msgid "Discover more articles on the Groups page"
|
||||
msgstr ""
|
||||
|
||||
#: [post]comments_disabled
|
||||
msgid "Comments disabled"
|
||||
msgstr ""
|
||||
|
@ -1470,10 +1479,6 @@ msgstr ""
|
|||
msgid "This picture will be added to your gallery"
|
||||
msgstr ""
|
||||
|
||||
#: [post]embed_tip
|
||||
msgid "You can also use services like Imgur or Flickr to host your picture and paste the link here."
|
||||
msgstr ""
|
||||
|
||||
#: [publish]valid_url
|
||||
msgid "Please enter a valid url"
|
||||
msgstr ""
|
||||
|
@ -1486,6 +1491,11 @@ msgstr ""
|
|||
msgid "Please provide a title"
|
||||
msgstr ""
|
||||
|
||||
#: [publish]edit
|
||||
#, fuzzy
|
||||
msgid "Edit post"
|
||||
msgstr "Редактировать"
|
||||
|
||||
#: [publish]title
|
||||
msgid "Publish"
|
||||
msgstr ""
|
||||
|
@ -1876,6 +1886,10 @@ msgstr ""
|
|||
msgid "Room"
|
||||
msgstr ""
|
||||
|
||||
#: [page]tag
|
||||
msgid "Tag"
|
||||
msgstr ""
|
||||
|
||||
#: [error]error
|
||||
msgid "Error: %s"
|
||||
msgstr "Ошибка: %s"
|
||||
|
@ -2729,3 +2743,18 @@ msgstr "API недоступен, попробуйте позже"
|
|||
#: [field]type_here
|
||||
msgid "Type here"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "The URL Rewriting support is currently disabled"
|
||||
#~ msgstr "Поддержка URL Rewrite, на текущий момент, отключена"
|
||||
|
||||
#~ msgid "Join the Chatroom"
|
||||
#~ msgstr "Присоединиться к конференции"
|
||||
|
||||
#~ msgid "Your web browser is too old to use with Movim."
|
||||
#~ msgstr "Версия вашего браузера устарела для использования с Movin"
|
||||
|
||||
#~ msgid "Refreshing all the streams"
|
||||
#~ msgstr "Обновляются все потоки"
|
||||
|
||||
#~ msgid "Manage"
|
||||
#~ msgstr "Управлять"
|
||||
|
|
|
@ -93,7 +93,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Movim\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-10-06 23:33+0200\n"
|
||||
"POT-Creation-Date: 2015-12-29 13:42+0200\n"
|
||||
"PO-Revision-Date: 2012-08-02 15:08+0000\n"
|
||||
"Last-Translator: Nazar Banakh <flesch91@gmail.com>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
@ -206,6 +206,10 @@ msgstr ""
|
|||
msgid "Loading"
|
||||
msgstr ""
|
||||
|
||||
#: [create]placeholder
|
||||
msgid "…and start playing"
|
||||
msgstr ""
|
||||
|
||||
#: [error]not_acceptable
|
||||
msgid "Not Acceptable"
|
||||
msgstr ""
|
||||
|
@ -259,7 +263,7 @@ msgid "Port"
|
|||
msgstr ""
|
||||
|
||||
#: [db]name
|
||||
msgid "Database sName"
|
||||
msgid "Database Name"
|
||||
msgstr ""
|
||||
|
||||
#: [admin]general
|
||||
|
@ -368,14 +372,6 @@ msgstr ""
|
|||
msgid "Syslog and files"
|
||||
msgstr ""
|
||||
|
||||
#: [rewrite]title
|
||||
msgid "URL Rewriting"
|
||||
msgstr ""
|
||||
|
||||
#: [rewrite]info
|
||||
msgid "The URL Rewriting can be enabled"
|
||||
msgstr ""
|
||||
|
||||
#: [admin]compatibility
|
||||
msgid "General Overview"
|
||||
msgstr ""
|
||||
|
@ -409,10 +405,6 @@ msgstr ""
|
|||
msgid "Read and write rights for the webserver in Movims root directory"
|
||||
msgstr "Включити права читання і запису на кореневу папку Movim"
|
||||
|
||||
#: [compatibility]rewrite
|
||||
msgid "The URL Rewriting support is currently disabled"
|
||||
msgstr ""
|
||||
|
||||
#: [compatibility]db
|
||||
msgid "The database need to be updated, go to the database panel to fix this"
|
||||
msgstr ""
|
||||
|
@ -497,6 +489,10 @@ msgstr ""
|
|||
msgid "Avatar Not Updated"
|
||||
msgstr ""
|
||||
|
||||
#: [avatar]missing
|
||||
msgid "No avatar defined yet"
|
||||
msgstr ""
|
||||
|
||||
#: [blog]title [feed]title
|
||||
msgid "%s's feed"
|
||||
msgstr ""
|
||||
|
@ -505,6 +501,10 @@ msgstr ""
|
|||
msgid "This user has not posted anything right now"
|
||||
msgstr ""
|
||||
|
||||
#: [blog]private
|
||||
msgid "This content is private, please login to see it"
|
||||
msgstr ""
|
||||
|
||||
#: [title]conferences
|
||||
msgid "Conferences"
|
||||
msgstr ""
|
||||
|
@ -587,6 +587,10 @@ msgstr ""
|
|||
msgid "Contact gone"
|
||||
msgstr ""
|
||||
|
||||
#: [message]history
|
||||
msgid "%s messages retrieved"
|
||||
msgstr ""
|
||||
|
||||
#: [chat]attention
|
||||
msgid "%s needs your attention"
|
||||
msgstr ""
|
||||
|
@ -644,7 +648,7 @@ msgid "No chats yet..."
|
|||
msgstr ""
|
||||
|
||||
#: [chats]empty
|
||||
msgid "Open a new conversation by clicking on the %s button bellow or visit the %s Contacts%s page."
|
||||
msgid "Open a new conversation by clicking on the %s button bellow or visit the %sContacts%s page."
|
||||
msgstr ""
|
||||
|
||||
#: [chats]add
|
||||
|
@ -699,9 +703,15 @@ msgstr ""
|
|||
msgid "Appearence"
|
||||
msgstr ""
|
||||
|
||||
#: [config]info
|
||||
msgid "This configuration is shared wherever you are connected"
|
||||
msgstr ""
|
||||
#: [config]not_valid
|
||||
#, fuzzy
|
||||
msgid "Configuration invalid"
|
||||
msgstr "Конфігурація"
|
||||
|
||||
#: [config]advanced
|
||||
#, fuzzy
|
||||
msgid "Advanced Configuration"
|
||||
msgstr "Конфігурація"
|
||||
|
||||
#: [notifications]message
|
||||
msgid "Notify on incoming message"
|
||||
|
@ -711,6 +721,10 @@ msgstr ""
|
|||
msgid "Use desktop notifications"
|
||||
msgstr ""
|
||||
|
||||
#: [cssurl]label
|
||||
msgid "Custom CSS URL for your blog"
|
||||
msgstr ""
|
||||
|
||||
#: [general]legend [general]general_title
|
||||
msgid "General Informations"
|
||||
msgstr ""
|
||||
|
@ -823,6 +837,10 @@ msgstr ""
|
|||
msgid "Last public post"
|
||||
msgstr ""
|
||||
|
||||
#: [blog]visit
|
||||
msgid "Visit the blog to see all the public posts"
|
||||
msgstr ""
|
||||
|
||||
#: [subscription]to
|
||||
msgid "You can see this contact status"
|
||||
msgstr ""
|
||||
|
@ -1007,18 +1025,6 @@ msgstr ""
|
|||
msgid "This server doesn't exists"
|
||||
msgstr ""
|
||||
|
||||
#: [menu]all
|
||||
msgid "All"
|
||||
msgstr ""
|
||||
|
||||
#: [menu]refresh
|
||||
msgid "Refresh all the streams"
|
||||
msgstr ""
|
||||
|
||||
#: [menu]me
|
||||
msgid "My publications"
|
||||
msgstr ""
|
||||
|
||||
#: [roster]search
|
||||
msgid "Search in your contacts"
|
||||
msgstr ""
|
||||
|
@ -1124,7 +1130,7 @@ msgid "Chat with the team ?"
|
|||
msgstr ""
|
||||
|
||||
#: [chatroom]button
|
||||
msgid "Join the Chatroom"
|
||||
msgid "Add the chatroom"
|
||||
msgstr ""
|
||||
|
||||
#: [init]location
|
||||
|
@ -1216,10 +1222,6 @@ msgstr ""
|
|||
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 ""
|
||||
|
@ -1302,13 +1304,17 @@ msgid "Welcome on your news feed, here you will see all the posts published by y
|
|||
msgstr ""
|
||||
|
||||
#: [menu]refresh
|
||||
msgid "Refreshing all the streams"
|
||||
msgid "Refresh all the streams"
|
||||
msgstr ""
|
||||
|
||||
#: [menu]public
|
||||
msgid "This post is public"
|
||||
msgstr ""
|
||||
|
||||
#: [menu]all
|
||||
msgid "All"
|
||||
msgstr ""
|
||||
|
||||
#: [affiliations]title
|
||||
msgid "Manage your members"
|
||||
msgstr ""
|
||||
|
@ -1345,10 +1351,6 @@ msgstr ""
|
|||
msgid "%s wants to talk with you"
|
||||
msgstr ""
|
||||
|
||||
#: [notifs]manage
|
||||
msgid "Manage"
|
||||
msgstr ""
|
||||
|
||||
#: [post]news_feed
|
||||
msgid "News Feed"
|
||||
msgstr ""
|
||||
|
@ -1393,12 +1395,12 @@ msgstr ""
|
|||
msgid "Publish this post publicly?"
|
||||
msgstr ""
|
||||
|
||||
#: [post]blog_add
|
||||
msgid "Post published on your blog"
|
||||
#: [post]public_yes
|
||||
msgid "This post is now public"
|
||||
msgstr ""
|
||||
|
||||
#: [post]blog_remove
|
||||
msgid "Post removed from your blog"
|
||||
#: [post]public_no
|
||||
msgid "This post is now private"
|
||||
msgstr ""
|
||||
|
||||
#: [post]delete_title [post]delete
|
||||
|
@ -1409,6 +1411,10 @@ msgstr ""
|
|||
msgid "You are going to delete this post, please confirm your action"
|
||||
msgstr ""
|
||||
|
||||
#: [post]discover
|
||||
msgid "Discover more articles on the Groups page"
|
||||
msgstr ""
|
||||
|
||||
#: [post]comments_disabled
|
||||
msgid "Comments disabled"
|
||||
msgstr ""
|
||||
|
@ -1473,10 +1479,6 @@ msgstr ""
|
|||
msgid "This picture will be added to your gallery"
|
||||
msgstr ""
|
||||
|
||||
#: [post]embed_tip
|
||||
msgid "You can also use services like Imgur or Flickr to host your picture and paste the link here."
|
||||
msgstr ""
|
||||
|
||||
#: [publish]valid_url
|
||||
msgid "Please enter a valid url"
|
||||
msgstr ""
|
||||
|
@ -1489,6 +1491,10 @@ msgstr ""
|
|||
msgid "Please provide a title"
|
||||
msgstr ""
|
||||
|
||||
#: [publish]edit
|
||||
msgid "Edit post"
|
||||
msgstr ""
|
||||
|
||||
#: [publish]title
|
||||
msgid "Publish"
|
||||
msgstr ""
|
||||
|
@ -1879,6 +1885,10 @@ msgstr ""
|
|||
msgid "Room"
|
||||
msgstr ""
|
||||
|
||||
#: [page]tag
|
||||
msgid "Tag"
|
||||
msgstr ""
|
||||
|
||||
#: [error]error
|
||||
msgid "Error: %s"
|
||||
msgstr ""
|
||||
|
|
|
@ -1,6 +1,8 @@
|
|||
#
|
||||
# Translators:
|
||||
# kashing <shing3232@gmail.com>, 2015
|
||||
# Lei feng, 2015
|
||||
# Zhao Rui <renyuneyun@gmail.com>, 2015
|
||||
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
|
||||
#. extracted from ../app/widgets/About/locales.ini
|
||||
#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-#
|
||||
|
@ -93,8 +95,8 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: movim\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-10-06 23:33+0200\n"
|
||||
"PO-Revision-Date: 2015-10-06 21:34+0000\n"
|
||||
"POT-Creation-Date: 2015-12-29 13:42+0200\n"
|
||||
"PO-Revision-Date: 2015-12-29 12:43+0000\n"
|
||||
"Last-Translator: Jaussoin Timothée <edhelas@movim.eu>\n"
|
||||
"Language-Team: Chinese (China) (http://www.transifex.com/movim/movim/language/zh_CN/)\n"
|
||||
"Language: zh_CN\n"
|
||||
|
@ -118,7 +120,7 @@ msgstr "翻译者"
|
|||
|
||||
#: [about]translators_text
|
||||
msgid "Thanks to all the translators"
|
||||
msgstr ""
|
||||
msgstr "感谢所有翻译者。"
|
||||
|
||||
#: [about]software
|
||||
msgid "Software"
|
||||
|
@ -205,6 +207,10 @@ msgstr "您的账户已经成功注册"
|
|||
msgid "Loading"
|
||||
msgstr "载入中"
|
||||
|
||||
#: [create]placeholder
|
||||
msgid "…and start playing"
|
||||
msgstr ""
|
||||
|
||||
#: [error]not_acceptable
|
||||
msgid "Not Acceptable"
|
||||
msgstr "不能接受"
|
||||
|
@ -258,8 +264,8 @@ msgid "Port"
|
|||
msgstr "端口"
|
||||
|
||||
#: [db]name
|
||||
msgid "Database sName"
|
||||
msgstr "数据库名称"
|
||||
msgid "Database Name"
|
||||
msgstr ""
|
||||
|
||||
#: [admin]general
|
||||
msgid "General Settings"
|
||||
|
@ -367,14 +373,6 @@ msgstr "系统日志"
|
|||
msgid "Syslog and files"
|
||||
msgstr "系统日志和文件"
|
||||
|
||||
#: [rewrite]title
|
||||
msgid "URL Rewriting"
|
||||
msgstr "URL从写"
|
||||
|
||||
#: [rewrite]info
|
||||
msgid "The URL Rewriting can be enabled"
|
||||
msgstr "URL 重写可以激活"
|
||||
|
||||
#: [admin]compatibility
|
||||
msgid "General Overview"
|
||||
msgstr "概览"
|
||||
|
@ -407,10 +405,6 @@ msgstr "安装 php5-gd 库"
|
|||
msgid "Read and write rights for the webserver in Movims root directory"
|
||||
msgstr "网页服务器在Movim根目录的阅读和写权限"
|
||||
|
||||
#: [compatibility]rewrite
|
||||
msgid "The URL Rewriting support is currently disabled"
|
||||
msgstr "URL 重写支持已经被禁用"
|
||||
|
||||
#: [compatibility]db
|
||||
msgid "The database need to be updated, go to the database panel to fix this"
|
||||
msgstr "数据库需要更新,去数据库面板修复它."
|
||||
|
@ -437,7 +431,7 @@ msgstr "Movim 后台进程"
|
|||
|
||||
#: [schema]xmpp
|
||||
msgid "XMPP"
|
||||
msgstr ""
|
||||
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."
|
||||
|
@ -495,6 +489,10 @@ msgstr "头像已更新"
|
|||
msgid "Avatar Not Updated"
|
||||
msgstr "头像未更新"
|
||||
|
||||
#: [avatar]missing
|
||||
msgid "No avatar defined yet"
|
||||
msgstr ""
|
||||
|
||||
#: [blog]title [feed]title
|
||||
msgid "%s's feed"
|
||||
msgstr "%s的 feed"
|
||||
|
@ -503,6 +501,10 @@ msgstr "%s的 feed"
|
|||
msgid "This user has not posted anything right now"
|
||||
msgstr "这个用户还没发布任何东西"
|
||||
|
||||
#: [blog]private
|
||||
msgid "This content is private, please login to see it"
|
||||
msgstr ""
|
||||
|
||||
#: [title]conferences
|
||||
msgid "Conferences"
|
||||
msgstr "会议"
|
||||
|
@ -558,7 +560,7 @@ msgstr "添加一个新的URL"
|
|||
|
||||
#: [url]url
|
||||
msgid "URL"
|
||||
msgstr ""
|
||||
msgstr "URL"
|
||||
|
||||
#: [url]name
|
||||
msgctxt "[url]name"
|
||||
|
@ -585,6 +587,10 @@ msgstr "暂停..."
|
|||
msgid "Contact gone"
|
||||
msgstr "联系人已消失"
|
||||
|
||||
#: [message]history
|
||||
msgid "%s messages retrieved"
|
||||
msgstr ""
|
||||
|
||||
#: [chat]attention
|
||||
msgid "%s needs your attention"
|
||||
msgstr "%s需要您的注意"
|
||||
|
@ -631,18 +637,18 @@ msgstr "配置已保存"
|
|||
|
||||
#: [chatroom]subject
|
||||
msgid "Subject"
|
||||
msgstr ""
|
||||
msgstr "主题"
|
||||
|
||||
#: [chatroom]subject_changed
|
||||
msgid "Subject changed"
|
||||
msgstr ""
|
||||
msgstr "主题已改变"
|
||||
|
||||
#: [chats]empty_title
|
||||
msgid "No chats yet..."
|
||||
msgstr ""
|
||||
msgstr "尚无对话"
|
||||
|
||||
#: [chats]empty
|
||||
msgid "Open a new conversation by clicking on the %s button bellow or visit the %s Contacts%s page."
|
||||
msgid "Open a new conversation by clicking on the %s button bellow or visit the %sContacts%s page."
|
||||
msgstr ""
|
||||
|
||||
#: [chats]add
|
||||
|
@ -651,7 +657,7 @@ msgstr "同联系人聊天"
|
|||
|
||||
#: [chats]more
|
||||
msgid "Load more contacts"
|
||||
msgstr ""
|
||||
msgstr "加载更多联系人"
|
||||
|
||||
#: [title]data
|
||||
msgid "Data"
|
||||
|
@ -697,8 +703,12 @@ msgstr "隐藏离线的联系人"
|
|||
msgid "Appearence"
|
||||
msgstr "外观"
|
||||
|
||||
#: [config]info
|
||||
msgid "This configuration is shared wherever you are connected"
|
||||
#: [config]not_valid
|
||||
msgid "Configuration invalid"
|
||||
msgstr ""
|
||||
|
||||
#: [config]advanced
|
||||
msgid "Advanced Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: [notifications]message
|
||||
|
@ -709,6 +719,10 @@ msgstr "通知新消息"
|
|||
msgid "Use desktop notifications"
|
||||
msgstr "使用桌面通知"
|
||||
|
||||
#: [cssurl]label
|
||||
msgid "Custom CSS URL for your blog"
|
||||
msgstr ""
|
||||
|
||||
#: [general]legend [general]general_title
|
||||
msgid "General Informations"
|
||||
msgstr "一般信息"
|
||||
|
@ -821,6 +835,10 @@ msgstr "%s 年"
|
|||
msgid "Last public post"
|
||||
msgstr "最后的公开帖子"
|
||||
|
||||
#: [blog]visit
|
||||
msgid "Visit the blog to see all the public posts"
|
||||
msgstr ""
|
||||
|
||||
#: [subscription]to
|
||||
msgid "You can see this contact status"
|
||||
msgstr "你可以看到这些联络的状态"
|
||||
|
@ -835,19 +853,19 @@ msgstr ""
|
|||
|
||||
#: [subscription]from
|
||||
msgid "You are not subscribed to this contact"
|
||||
msgstr ""
|
||||
msgstr "你尚未订阅该联系人"
|
||||
|
||||
#: [subscription]from_button
|
||||
msgid "Ask to subscribe"
|
||||
msgstr ""
|
||||
msgstr "请求订阅"
|
||||
|
||||
#: [subscription]from_text
|
||||
msgid "But this contact can still see if you are online"
|
||||
msgstr ""
|
||||
msgstr "但该联系人仍可知晓你是否在线"
|
||||
|
||||
#: [subscription]nil
|
||||
msgid "No subscriptions"
|
||||
msgstr ""
|
||||
msgstr "没有订阅"
|
||||
|
||||
#: [subscription]nil_button
|
||||
msgid "Invite"
|
||||
|
@ -855,7 +873,7 @@ msgstr "邀请"
|
|||
|
||||
#: [subscription]nil_text
|
||||
msgid "This contact is in your contact list but there is no subscriptions between the two accounts"
|
||||
msgstr ""
|
||||
msgstr "该联系人在你的联系人列表中,但两账户之间没有订阅"
|
||||
|
||||
#: [group]subscribe
|
||||
msgid "Subscribe"
|
||||
|
@ -863,7 +881,7 @@ msgstr "订阅"
|
|||
|
||||
#: [group]subscribed
|
||||
msgid "Subscribed"
|
||||
msgstr "订阅"
|
||||
msgstr "已订阅"
|
||||
|
||||
#: [group]unsubscribe
|
||||
msgid "Unsubscribe"
|
||||
|
@ -871,19 +889,19 @@ msgstr "取消订阅"
|
|||
|
||||
#: [group]unsubscribe_text
|
||||
msgid "You are going to unsubscribe from this Group"
|
||||
msgstr ""
|
||||
msgstr "你将取消订阅该群组"
|
||||
|
||||
#: [group]unsubscribed
|
||||
msgid "Unsubscribed"
|
||||
msgstr ""
|
||||
msgstr "未订阅"
|
||||
|
||||
#: [group]share_label
|
||||
msgid "Make your membership to this group public to your friends"
|
||||
msgstr ""
|
||||
msgstr "将你对该群组的订阅状况公开给你的朋友"
|
||||
|
||||
#: [group]label_label
|
||||
msgid "Give a label for this group"
|
||||
msgstr ""
|
||||
msgstr "给该群组加上标签"
|
||||
|
||||
#: [group]sure
|
||||
msgid "Are you sure ?"
|
||||
|
@ -891,7 +909,7 @@ msgstr "您确定吗 ?"
|
|||
|
||||
#: [group]empty_text
|
||||
msgid "Discover, follow and share"
|
||||
msgstr ""
|
||||
msgstr "发现、跟随并分享"
|
||||
|
||||
#: [group]empty
|
||||
msgid "Something bad happened to this group"
|
||||
|
@ -903,19 +921,19 @@ msgstr "保存分组结构"
|
|||
|
||||
#: [group]delete_title
|
||||
msgid "Delete the group"
|
||||
msgstr ""
|
||||
msgstr "删除群组"
|
||||
|
||||
#: [group]delete_text
|
||||
msgid "You are going to delete the following group. Please confirm your action."
|
||||
msgstr ""
|
||||
msgstr "您将移除一下的群组, 请确认"
|
||||
|
||||
#: [group]delete_clean_text
|
||||
msgid "It seems that this group doesn't exists anymore. Do you want to remove it from your subscriptions?"
|
||||
msgstr ""
|
||||
msgstr "看起来这个组不再存在了。你想将它从你的订阅中删除么?"
|
||||
|
||||
#: [group]counter
|
||||
msgid "%s groups on this server"
|
||||
msgstr ""
|
||||
msgstr "该服务器上有%s个群组"
|
||||
|
||||
#: [group]subscriptions [statistics]subscriptions
|
||||
msgid "Subscriptions"
|
||||
|
@ -927,7 +945,7 @@ msgstr ""
|
|||
|
||||
#: [group]search_server
|
||||
msgid "Search for a new server"
|
||||
msgstr ""
|
||||
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."
|
||||
|
@ -935,7 +953,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."
|
||||
msgstr ""
|
||||
msgstr "选择一个服务器及一个群组并使用页眉处的 %s 按钮来订阅它。你也可以使用 %s 按钮来新建一个。"
|
||||
|
||||
#: [group]help_info3
|
||||
msgid "Done? You can now publish a new post in the Group by using the %s button."
|
||||
|
@ -955,23 +973,23 @@ msgstr ""
|
|||
|
||||
#: [groups]empty_text1
|
||||
msgid "You don't have any group subscriptions yet."
|
||||
msgstr ""
|
||||
msgstr "您尚未订阅任何群组"
|
||||
|
||||
#: [groups]empty_text2
|
||||
msgid "Here you will be able to manage all your subscriptions."
|
||||
msgstr ""
|
||||
msgstr "您可以在这里管理您的所有订阅"
|
||||
|
||||
#: [groups]subscriptions
|
||||
msgid "My Subscriptions"
|
||||
msgstr ""
|
||||
msgstr "我的订阅"
|
||||
|
||||
#: [groups]add
|
||||
msgid "Create a new Group"
|
||||
msgstr ""
|
||||
msgstr "创建新群组"
|
||||
|
||||
#: [groups]name
|
||||
msgid "Group name"
|
||||
msgstr ""
|
||||
msgstr "群组名称"
|
||||
|
||||
#: [groups]name_example
|
||||
msgid "My Little Pony - Fan Club"
|
||||
|
@ -979,51 +997,39 @@ msgstr "My Little Pony - Fan Club"
|
|||
|
||||
#: [groups]created
|
||||
msgid "Group created successfully"
|
||||
msgstr ""
|
||||
msgstr "成功建立群组"
|
||||
|
||||
#: [groups]deleted
|
||||
msgid "Group deleted successfully"
|
||||
msgstr ""
|
||||
msgstr "成功删除群组"
|
||||
|
||||
#: [groups]name_error
|
||||
msgid "Please provide a valid group name (4 characters minimum)"
|
||||
msgstr ""
|
||||
msgstr "请输入一个有效的群组名称(最少4个字符)"
|
||||
|
||||
#: [groups]no_creation
|
||||
msgid "You cannot create a new Group on this server"
|
||||
msgstr ""
|
||||
msgstr "您不能在此服务器上建立新群组"
|
||||
|
||||
#: [groups]sub
|
||||
msgid "%s subscribers"
|
||||
msgstr ""
|
||||
msgstr "%s 订阅者"
|
||||
|
||||
#: [groups]num
|
||||
msgid "%s posts"
|
||||
msgstr ""
|
||||
msgstr "%s 帖子"
|
||||
|
||||
#: [groups]disco_error
|
||||
msgid "This server doesn't exists"
|
||||
msgstr ""
|
||||
|
||||
#: [menu]all
|
||||
msgid "All"
|
||||
msgstr "所有"
|
||||
|
||||
#: [menu]refresh
|
||||
msgid "Refresh all the streams"
|
||||
msgstr "刷新所有流"
|
||||
|
||||
#: [menu]me
|
||||
msgid "My publications"
|
||||
msgstr ""
|
||||
msgstr "此服务器不存在"
|
||||
|
||||
#: [roster]search
|
||||
msgid "Search in your contacts"
|
||||
msgstr ""
|
||||
msgstr "在您的联系人中搜索"
|
||||
|
||||
#: [hello]chat
|
||||
msgid "Go on the Chat page"
|
||||
msgstr ""
|
||||
msgstr "转到“聊天”页面"
|
||||
|
||||
#: [hello]news [page]news
|
||||
msgid "News"
|
||||
|
@ -1031,11 +1037,11 @@ msgstr "新闻"
|
|||
|
||||
#: [hello]news_page
|
||||
msgid "Read all theses articles on the News page"
|
||||
msgstr ""
|
||||
msgstr "在“新闻”页面阅读这些文章"
|
||||
|
||||
#: [hello]blog_title
|
||||
msgid "Visit your public blog"
|
||||
msgstr ""
|
||||
msgstr "访问你的公开博客"
|
||||
|
||||
#: [hello]blog_text
|
||||
msgid "See your public posts and share them with all your contacts"
|
||||
|
@ -1043,15 +1049,15 @@ msgstr ""
|
|||
|
||||
#: [hello]share_title
|
||||
msgid "Universal share button"
|
||||
msgstr ""
|
||||
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 ""
|
||||
msgstr "将下面的按钮加入书签,或者拖放它到你的工具栏中,然后你可以在任何页面上用它来分享页面到 Movim"
|
||||
|
||||
#: [hello]share_button
|
||||
msgid "Share on Movim"
|
||||
msgstr ""
|
||||
msgstr "分享到 Movim"
|
||||
|
||||
#: [hello]enter_title
|
||||
msgid "Oh! Hello!"
|
||||
|
@ -1059,7 +1065,7 @@ msgstr ""
|
|||
|
||||
#: [hello]enter_paragraph
|
||||
msgid "It seems that you're new there! Welcome on Movim!"
|
||||
msgstr ""
|
||||
msgstr "看起来你新加入此处!欢迎来到 Movim!"
|
||||
|
||||
#: [hello]menu_title
|
||||
msgid "Check the Menu"
|
||||
|
@ -1067,11 +1073,11 @@ msgstr ""
|
|||
|
||||
#: [hello]menu_paragraph
|
||||
msgid "All the main Movim features are accessible there. Don't hesitate to navigate through the pages to discover more!"
|
||||
msgstr ""
|
||||
msgstr "Movim 的所有主要特性均可在此访问。请不要犹豫,航越该页面来发现更多东西!"
|
||||
|
||||
#: [help]faq
|
||||
msgid "Frequently Asked Questions"
|
||||
msgstr "FAQ"
|
||||
msgstr "常见问题"
|
||||
|
||||
#: [banner]title
|
||||
msgid "What do the little banners refer to ?"
|
||||
|
@ -1107,7 +1113,7 @@ msgstr "需要查找一些帮助文档?"
|
|||
|
||||
#: [wiki]button
|
||||
msgid "Read the Wiki"
|
||||
msgstr ""
|
||||
msgstr "阅读 Wiki"
|
||||
|
||||
#: [ml]question
|
||||
msgid "Talk with us by email ?"
|
||||
|
@ -1122,32 +1128,32 @@ msgid "Chat with the team ?"
|
|||
msgstr "同开发团队交流?"
|
||||
|
||||
#: [chatroom]button
|
||||
msgid "Join the Chatroom"
|
||||
msgstr "加入聊天室"
|
||||
msgid "Add the chatroom"
|
||||
msgstr ""
|
||||
|
||||
#: [init]location
|
||||
msgid "Location node created"
|
||||
msgstr ""
|
||||
msgstr "位置节点已创建"
|
||||
|
||||
#: [init]bookmark
|
||||
msgid "Bookmark node created"
|
||||
msgstr ""
|
||||
msgstr "书签节点已创建"
|
||||
|
||||
#: [init]vcard4
|
||||
msgid "Profile node created"
|
||||
msgstr ""
|
||||
msgstr "档案节点已创建"
|
||||
|
||||
#: [init]avatar
|
||||
msgid "Avatar node created"
|
||||
msgstr ""
|
||||
msgstr "头像节点已创建"
|
||||
|
||||
#: [init]subscriptions
|
||||
msgid "Subscriptions node created"
|
||||
msgstr ""
|
||||
msgstr "订阅节点已创建"
|
||||
|
||||
#: [init]microblog
|
||||
msgid "Microblog node created"
|
||||
msgstr ""
|
||||
msgstr "微博节点已创建"
|
||||
|
||||
#: [location]title
|
||||
msgid "Location"
|
||||
|
@ -1167,7 +1173,7 @@ msgstr "更新我的位置"
|
|||
|
||||
#: [login_anonymous]bad_username
|
||||
msgid "Bad nickname (between 4 and 40 characters)"
|
||||
msgstr ""
|
||||
msgstr "不良昵称 (需在4到40字符之间)"
|
||||
|
||||
#: [error]username
|
||||
msgid "Wrong username"
|
||||
|
@ -1208,16 +1214,12 @@ msgstr "创建账户成功"
|
|||
#: [error]xmpp_unauthorized
|
||||
msgctxt "[error]xmpp_unauthorized"
|
||||
msgid "Your XMPP server is unauthorized"
|
||||
msgstr ""
|
||||
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连接错误)"
|
||||
|
@ -1236,20 +1238,20 @@ msgstr "未知错误"
|
|||
|
||||
#: [error]login_format
|
||||
msgid "Invalid username format"
|
||||
msgstr ""
|
||||
msgstr "无效用户名格式"
|
||||
|
||||
#: [error]password_format
|
||||
msgid "Invalid password format"
|
||||
msgstr ""
|
||||
msgstr "无效密码格式"
|
||||
|
||||
#: [error]unauthorized
|
||||
msgctxt "[error]unauthorized"
|
||||
msgid "Your XMPP server is unauthorized"
|
||||
msgstr ""
|
||||
msgstr "你的XMPP服务没有被授权"
|
||||
|
||||
#: [error]conflict
|
||||
msgid "A Movim session is already open on an other device"
|
||||
msgstr ""
|
||||
msgstr "一个 Movim 会话已在其他设备上开启"
|
||||
|
||||
#: [error]wrong_account
|
||||
msgid "Movim failed to authenticate. You entered wrong data"
|
||||
|
@ -1281,7 +1283,7 @@ msgstr "还没有账户 ?"
|
|||
|
||||
#: [form]whitelist.info
|
||||
msgid "You can login with accounts from theses servers"
|
||||
msgstr ""
|
||||
msgstr "你可以使用这些服务器的账号来登录"
|
||||
|
||||
#: [form]connected
|
||||
msgid "Connected"
|
||||
|
@ -1293,20 +1295,24 @@ msgstr ""
|
|||
|
||||
#: [menu]empty_title
|
||||
msgid "No news yet..."
|
||||
msgstr ""
|
||||
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 "正在刷行所有流"
|
||||
msgid "Refresh all the streams"
|
||||
msgstr "刷新所有流"
|
||||
|
||||
#: [menu]public
|
||||
msgid "This post is public"
|
||||
msgstr ""
|
||||
|
||||
#: [menu]all
|
||||
msgid "All"
|
||||
msgstr "所有"
|
||||
|
||||
#: [affiliations]title
|
||||
msgid "Manage your members"
|
||||
msgstr "管理你的成员"
|
||||
|
@ -1333,35 +1339,31 @@ msgstr "增加此订阅"
|
|||
|
||||
#: [subscriptions]saved
|
||||
msgid "Subscriptions saved"
|
||||
msgstr ""
|
||||
msgstr "订阅已保存"
|
||||
|
||||
#: [notifs]title
|
||||
msgid "Pending Invitations"
|
||||
msgstr ""
|
||||
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 ""
|
||||
msgstr "发现并注册到你感兴趣的群组中"
|
||||
|
||||
#: [post]content [post]content_label
|
||||
msgid "Content"
|
||||
msgstr ""
|
||||
msgstr "内容"
|
||||
|
||||
#: [post]published
|
||||
msgid "Post published"
|
||||
msgstr ""
|
||||
msgstr "贴子已发布"
|
||||
|
||||
#: [post]deleted
|
||||
msgid "Post deleted"
|
||||
|
@ -1377,7 +1379,7 @@ msgstr ""
|
|||
|
||||
#: [post]new [publish]new
|
||||
msgid "New post"
|
||||
msgstr ""
|
||||
msgstr "新帖子"
|
||||
|
||||
#: [post]repost
|
||||
msgid "This is a re-post from %s"
|
||||
|
@ -1385,18 +1387,18 @@ msgstr ""
|
|||
|
||||
#: [post]repost_profile
|
||||
msgid "See %s profile"
|
||||
msgstr ""
|
||||
msgstr "查看 %s 档案"
|
||||
|
||||
#: [post]public
|
||||
msgid "Publish this post publicly?"
|
||||
msgstr ""
|
||||
|
||||
#: [post]blog_add
|
||||
msgid "Post published on your blog"
|
||||
#: [post]public_yes
|
||||
msgid "This post is now public"
|
||||
msgstr ""
|
||||
|
||||
#: [post]blog_remove
|
||||
msgid "Post removed from your blog"
|
||||
#: [post]public_no
|
||||
msgid "This post is now private"
|
||||
msgstr ""
|
||||
|
||||
#: [post]delete_title [post]delete
|
||||
|
@ -1407,13 +1409,17 @@ msgstr "删除我的帖子"
|
|||
msgid "You are going to delete this post, please confirm your action"
|
||||
msgstr "您将移除以下的帖子, 请确认."
|
||||
|
||||
#: [post]discover
|
||||
msgid "Discover more articles on the Groups page"
|
||||
msgstr ""
|
||||
|
||||
#: [post]comments_disabled
|
||||
msgid "Comments disabled"
|
||||
msgstr ""
|
||||
msgstr "评论已禁用"
|
||||
|
||||
#: [post]comment_published
|
||||
msgid "Comment published"
|
||||
msgstr ""
|
||||
msgstr "评论已发布"
|
||||
|
||||
#: [status]disconnect
|
||||
msgid "Disconnect"
|
||||
|
@ -1449,15 +1455,15 @@ msgstr "帮助"
|
|||
|
||||
#: [post]help_more
|
||||
msgid "More help"
|
||||
msgstr ""
|
||||
msgstr "更多帮助"
|
||||
|
||||
#: [post]help_manual
|
||||
msgid "Markdown syntax manual"
|
||||
msgstr ""
|
||||
msgstr "Markdown 语法手册"
|
||||
|
||||
#: [post]content_text
|
||||
msgid "You can format your content using Markdown"
|
||||
msgstr ""
|
||||
msgstr "你可以使用 Markdown 来格式化内容"
|
||||
|
||||
#: [post]link
|
||||
msgid "Link"
|
||||
|
@ -1465,31 +1471,31 @@ msgstr "连接"
|
|||
|
||||
#: [post]tags
|
||||
msgid "Tags"
|
||||
msgstr ""
|
||||
msgstr "标签"
|
||||
|
||||
#: [post]gallery
|
||||
msgid "This picture will be added to your gallery"
|
||||
msgstr ""
|
||||
|
||||
#: [post]embed_tip
|
||||
msgid "You can also use services like Imgur or Flickr to host your picture and paste the link here."
|
||||
msgstr ""
|
||||
msgstr "该图片将被加到你的相册中"
|
||||
|
||||
#: [publish]valid_url
|
||||
msgid "Please enter a valid url"
|
||||
msgstr ""
|
||||
msgstr "请输入一个有效的URL"
|
||||
|
||||
#: [publish]no_content_preview
|
||||
msgid "No content to preview"
|
||||
msgstr ""
|
||||
msgstr "无内容可预览"
|
||||
|
||||
#: [publish]no_title
|
||||
msgid "Please provide a title"
|
||||
msgstr "请提供一个标题"
|
||||
|
||||
#: [publish]edit
|
||||
msgid "Edit post"
|
||||
msgstr ""
|
||||
|
||||
#: [publish]title
|
||||
msgid "Publish"
|
||||
msgstr ""
|
||||
msgstr "发布"
|
||||
|
||||
#: [publish]attach
|
||||
msgid "Add a file or a picture to your post"
|
||||
|
@ -1501,7 +1507,7 @@ msgstr ""
|
|||
|
||||
#: [publish]form_filled
|
||||
msgid "Some fields have been filled in. Do you still want to go back and loose their content?"
|
||||
msgstr ""
|
||||
msgstr "一些字段已被填写。你坚持要后退并丢弃这些内容么?"
|
||||
|
||||
#: [publish]add_text
|
||||
msgid "Click here to add some text to your publication"
|
||||
|
@ -1509,7 +1515,7 @@ msgstr ""
|
|||
|
||||
#: [publish]add_text_label
|
||||
msgid "Add some text"
|
||||
msgstr ""
|
||||
msgstr "添加一些文字"
|
||||
|
||||
#: [public_groups]shared
|
||||
msgid "Shared"
|
||||
|
@ -1525,11 +1531,11 @@ msgstr "添加一个聊天室"
|
|||
|
||||
#: [rooms]empty_text1
|
||||
msgid "You don't have any chatroom yet."
|
||||
msgstr ""
|
||||
msgstr "你尚未拥有任何聊天室。"
|
||||
|
||||
#: [rooms]empty_text2
|
||||
msgid "Add one by clicking on the add button."
|
||||
msgstr ""
|
||||
msgstr "点击新建按钮来添加一个。"
|
||||
|
||||
#: [chatrooms]title
|
||||
msgid "Chatrooms"
|
||||
|
@ -1549,7 +1555,7 @@ msgstr "请输入正确的昵称(2到40个字母)"
|
|||
|
||||
#: [chatrooms]conflict
|
||||
msgid "Username already taken"
|
||||
msgstr ""
|
||||
msgstr "用户名已被使用"
|
||||
|
||||
#: [room]anonymous_title
|
||||
msgid "Public chatroom"
|
||||
|
@ -1557,7 +1563,7 @@ msgstr "公共聊天室"
|
|||
|
||||
#: [room]no_room
|
||||
msgid "Please provide a room address"
|
||||
msgstr ""
|
||||
msgstr "请提供一个聊天室地址"
|
||||
|
||||
#: [room]anonymous_text1
|
||||
msgid "You are currently logued as an anonymous user."
|
||||
|
@ -1565,7 +1571,7 @@ 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 ""
|
||||
msgstr "你可以使用你自己的账号或新建一个来登录,只需要登出并使用右上角的十字。"
|
||||
|
||||
#: [room]anonymous_login
|
||||
msgid "Login on %s"
|
||||
|
@ -1605,7 +1611,7 @@ msgstr "没联系人"
|
|||
|
||||
#: [roster]no_contacts_text
|
||||
msgid "You can add one using the + button bellow"
|
||||
msgstr ""
|
||||
msgstr "你可以使用下面的加号按钮来添加一个"
|
||||
|
||||
#: [roster]show_hide
|
||||
msgid "Show/Hide"
|
||||
|
@ -1641,7 +1647,7 @@ msgstr "搜索"
|
|||
|
||||
#: [share]error
|
||||
msgid "This is not a valid url"
|
||||
msgstr ""
|
||||
msgstr "这不是一个有效的 URL"
|
||||
|
||||
#: [share]success
|
||||
msgid "Sharing the URL"
|
||||
|
@ -1653,11 +1659,11 @@ msgstr "统计"
|
|||
|
||||
#: [statistics]since
|
||||
msgid "Since"
|
||||
msgstr ""
|
||||
msgstr "自"
|
||||
|
||||
#: [statistics]sessions
|
||||
msgid "Sessions"
|
||||
msgstr ""
|
||||
msgstr "会话"
|
||||
|
||||
#: [statistics]monthly_sub
|
||||
msgid "Monthly Subscriptions"
|
||||
|
@ -1775,15 +1781,15 @@ msgstr ""
|
|||
|
||||
#: [visio]calling
|
||||
msgid "Is calling you"
|
||||
msgstr ""
|
||||
msgstr "在呼叫你"
|
||||
|
||||
#: [visio]call
|
||||
msgid "Call"
|
||||
msgstr ""
|
||||
msgstr "呼叫"
|
||||
|
||||
#: [visio]hang_up
|
||||
msgid "Hang up"
|
||||
msgstr ""
|
||||
msgstr "挂断"
|
||||
|
||||
#: [visio]connection
|
||||
msgid "Connection"
|
||||
|
@ -1859,7 +1865,7 @@ msgstr "Feed"
|
|||
|
||||
#: [page]gallery
|
||||
msgid "Gallery"
|
||||
msgstr ""
|
||||
msgstr "相册"
|
||||
|
||||
#: [page]visio
|
||||
msgid "Visio-conference"
|
||||
|
@ -1871,12 +1877,16 @@ msgstr ""
|
|||
|
||||
#: [page]share
|
||||
msgid "Share"
|
||||
msgstr ""
|
||||
msgstr "分享"
|
||||
|
||||
#: [page]room
|
||||
msgid "Room"
|
||||
msgstr ""
|
||||
|
||||
#: [page]tag
|
||||
msgid "Tag"
|
||||
msgstr ""
|
||||
|
||||
#: [error]error
|
||||
msgid "Error: %s"
|
||||
msgstr "错误: %s"
|
||||
|
@ -1923,7 +1933,7 @@ msgstr "%s - 管理员面板"
|
|||
|
||||
#: [title]blog
|
||||
msgid "%s - Blog"
|
||||
msgstr ""
|
||||
msgstr "%s - 博客"
|
||||
|
||||
#: [title]configuration
|
||||
msgid "%s - Configuration"
|
||||
|
@ -1951,7 +1961,7 @@ msgstr "%s - 欢迎来到 MOVIM"
|
|||
|
||||
#: [title]media
|
||||
msgid "%s - Media"
|
||||
msgstr ""
|
||||
msgstr "%s - 媒体"
|
||||
|
||||
#: [title]news
|
||||
msgid "%s - News"
|
||||
|
@ -1959,11 +1969,11 @@ msgstr "%s - 新闻"
|
|||
|
||||
#: [title]node_configuration
|
||||
msgid "%s - Group Configuration"
|
||||
msgstr ""
|
||||
msgstr "%s - 群组配置"
|
||||
|
||||
#: [title]node
|
||||
msgid "%s - Group"
|
||||
msgstr ""
|
||||
msgstr "%s - 群组"
|
||||
|
||||
#: [title]not_found
|
||||
msgid "%s - 404"
|
||||
|
@ -2657,7 +2667,7 @@ msgstr "没有内容"
|
|||
|
||||
#: [post]no_comments
|
||||
msgid "No comments yet"
|
||||
msgstr ""
|
||||
msgstr "尚无评论"
|
||||
|
||||
#: [post]no_comments_stream
|
||||
msgid "No comments stream"
|
||||
|
@ -2729,4 +2739,4 @@ msgstr "API无法连接, 请稍后重试"
|
|||
|
||||
#: [field]type_here
|
||||
msgid "Type here"
|
||||
msgstr ""
|
||||
msgstr "在此输入"
|
||||
|
|
Loading…
Reference in a new issue