]> git.mxchange.org Git - friendica.git/commitdiff
Merge pull request #3757 from silke/develop
authorTobias Diekershoff <tobias.diekershoff@gmx.net>
Thu, 5 Oct 2017 07:55:00 +0000 (07:55 +0000)
committerGitHub <noreply@github.com>
Thu, 5 Oct 2017 07:55:00 +0000 (07:55 +0000)
Develop

60 files changed:
VERSION
boot.php
doc/Accesskeys.md
doc/Bugs-and-Issues.md
doc/Github.md
doc/Groups-and-Privacy.md
doc/Installing-Connectors.md
doc/Move-Account.md
doc/Plugins.md
doc/Quick-Start-groupsandpages.md
doc/Quick-Start-guide.md
doc/Quick-Start-makingnewfriends.md
doc/Quick-Start-network.md
doc/Remove-Account.md
doc/api.md
doc/autoloader.md
doc/de/Home.md
doc/events.md
doc/htconfig.md
doc/install-ejabberd.md
doc/smarty3-templates.md
include/Contact.php
include/Smilies.php
include/api.php
include/dba.php
include/diaspora.php
include/email.php
include/follow.php
include/items.php
include/network.php
include/onepoll.php
include/ostatus.php
include/plaintext.php
include/poller.php
include/threads.php
index.php
mod/admin.php
mod/contacts.php
mod/fbrowser.php
mod/receive.php
mod/unfollow.php
object/Item.php
src/Network/Probe.php
src/Util/Lock.php
update.php
util/credits.txt
util/db_update.php
util/messages.po
view/lang/de/messages.po
view/lang/de/strings.php
view/lang/en-gb/messages.po
view/lang/en-gb/strings.php
view/lang/en-us/messages.po
view/lang/en-us/strings.php
view/lang/zh-cn/messages.po
view/lang/zh-cn/strings.php
view/templates/admin_site.tpl
view/theme/frio/templates/wall_thread.tpl
view/theme/frost-mobile/templates/admin_site.tpl
view/theme/frost/templates/admin_site.tpl

diff --git a/VERSION b/VERSION
index b35d44161ce977de115e140c5ace99fd40f6c434..4e4d58aa667e35a9fd6b6d9e6e67f4a07be0196b 100644 (file)
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-3.5.3-dev
+3.5.3-rc
index 32fee4f50905cda647c317286cce438b2310f746..dfd3a20be65ddfdbf44686983218086b42ce9a8a 100644 (file)
--- a/boot.php
+++ b/boot.php
@@ -41,7 +41,7 @@ require_once 'include/poller.php';
 
 define ( 'FRIENDICA_PLATFORM',     'Friendica');
 define ( 'FRIENDICA_CODENAME',     'Asparagus');
-define ( 'FRIENDICA_VERSION',      '3.5.3-dev' );
+define ( 'FRIENDICA_VERSION',      '3.5.3-rc' );
 define ( 'DFRN_PROTOCOL_VERSION',  '2.23'    );
 define ( 'DB_UPDATE_VERSION',      1234      );
 
@@ -591,7 +591,12 @@ function is_ajax() {
        return (!empty($_SERVER['HTTP_X_REQUESTED_WITH']) && strtolower($_SERVER['HTTP_X_REQUESTED_WITH']) == 'xmlhttprequest');
 }
 
-function check_db() {
+/**
+ * @brief Function to check if request was an AJAX (xmlhttprequest) request.
+ *
+ * @param $via_worker boolean Is the check run via the poller?
+ */
+function check_db($via_worker) {
 
        $build = get_config('system', 'build');
        if (!x($build)) {
@@ -599,7 +604,10 @@ function check_db() {
                $build = DB_UPDATE_VERSION;
        }
        if ($build != DB_UPDATE_VERSION) {
-               proc_run(PRIORITY_CRITICAL, 'include/dbupdate.php');
+               // When we cannot execute the database update via the worker, we will do it directly
+               if (!proc_run(PRIORITY_CRITICAL, 'include/dbupdate.php') && $via_worker) {
+                       update_db(get_app());
+               }
        }
 }
 
@@ -1024,6 +1032,8 @@ function get_max_import_size() {
  *
  * @hooks 'proc_run'
  *     array $arr
+ *
+ * @return boolean "false" if proc_run couldn't be executed
  */
 function proc_run($cmd) {
 
@@ -1033,7 +1043,7 @@ function proc_run($cmd) {
 
        $args = array();
        if (!count($proc_args)) {
-               return;
+               return false;
        }
 
        // Preserve the first parameter
@@ -1059,7 +1069,7 @@ function proc_run($cmd) {
 
        call_hooks("proc_run", $arr);
        if (!$arr['run_cmd'] || ! count($args)) {
-               return;
+               return true;
        }
 
        $priority = PRIORITY_MEDIUM;
@@ -1086,18 +1096,23 @@ function proc_run($cmd) {
        $parameters = json_encode($argv);
        $found = dba::exists('workerqueue', array('parameter' => $parameters, 'done' => false));
 
+       // Quit if there was a database error - a precaution for the update process to 3.5.3
+       if (dba::errorNo() != 0) {
+               return false;
+       }
+
        if (!$found) {
                dba::insert('workerqueue', array('parameter' => $parameters, 'created' => $created, 'priority' => $priority));
        }
 
        // Should we quit and wait for the poller to be called as a cronjob?
        if ($dont_fork) {
-               return;
+               return true;
        }
 
        // If there is a lock then we don't have to check for too much worker
        if (!Lock::set('poller_worker', 0)) {
-               return;
+               return true;
        }
 
        // If there are already enough workers running, don't fork another one
@@ -1105,13 +1120,15 @@ function proc_run($cmd) {
        Lock::remove('poller_worker');
 
        if ($quit) {
-               return;
+               return true;
        }
 
        // Now call the poller to execute the jobs that we just added to the queue
        $args = array("include/poller.php", "no_cron");
 
        $a->proc_run($args);
+
+       return true;
 }
 
 function current_theme() {
index 24b4dd4e7d55b8db1b2275fc5325c64208adc652..3369f9afd931d376e180603b76f41cd7cf73fe02 100644 (file)
@@ -3,6 +3,8 @@ Accesskeys in Friendica
 
 * [Home](help)
 
+For an overview of the modifier key of the different browsers we suggest this [Wikipedia](https://en.wikipedia.org/wiki/Access_key) article.
+
 General
 -------
 * p: profile
index e2665be4105f47b85c9b771909c4fba0b7b23a73..04ce0fd1a915fb6a8bd21edca819da837759f17a 100644 (file)
@@ -10,6 +10,7 @@ You can also contact the [friendica support forum](https://helpers.pyxis.uberspa
 Bugs are rarely limited to one person, and the chances are somebody from another node has encountered the problem too, and will be able to help you.
 
 If you're a technical user, or your site doesn't have a support page, you'll need to use the [Bug Tracker](https://github.com/friendica/friendica/issues).
+This is also used for issues with addons.
 Please perform a search to see if there's already an open bug that matches yours before submitting anything.
 
 Try to provide as much information as you can about the bug, including the **full** text of any error messages or notices, and any steps required to replicate the problem in as much detail as possible.
@@ -17,4 +18,4 @@ It's generally better to provide too much information than not enough.
 
 See [this article](http://www.chiark.greenend.org.uk/~sgtatham/bugs.html) to learn more about submitting **good** bug reports.  The better your bug report, the more likely we are to be able to actually fix it.
 
-And last but not least: It is better to report an issue you encountered even if you can't write the perfect bug report!
\ No newline at end of file
+And last but not least: It is better to report an issue you encountered even if you can't write the perfect bug report!
index cfdb014764fc9e2b088c166725df82c238903293..d83c295fc610e919d1d0e48d835de59fadd8440c 100644 (file)
@@ -66,5 +66,8 @@ Don't assume that a simple fix won't break anything else.
 If possible get an experienced Friendica developer to review the code.
 Don't hesitate to ask us in case of doubt.
 
+3. Check your code for typos.
+There is a PHP script in the *util* directory called *typos.php* for this.
+
 Check out how to work with [our Vagrant](help/Vagrant) to save a lot of setup time!
 
index ddde9eeb228fd22056f4cdcac6f60cd71ba10469..d8d5a3d8f4b34378144c3e797f118de50a892a1a 100644 (file)
@@ -4,66 +4,109 @@ Groups and Privacy
 * [Home](help)
 
 
-Groups are merely collections of friends. But Friendica uses these to unlock some very powerful features.
+Groups are merely collections of friends.
+But Friendica uses these to unlock some very powerful features.
 
 **Setting Up Groups** 
 
-To create a group, visit your Friendica "Contacts" page and select "Create a new group". Give the group a name.
+To create a group, visit your Friendica "Contacts" page and select "Create a new group".
+Give the group a name.
 
 This brings you to a page where you can select the group members. 
 
-You will have two boxes on this page. The top box is the roster of current group members. Below that is another box containing all of your friends who are *not* members of the group. 
+You will have two boxes on this page.
+The top box is the roster of current group members.
+Below that is another box containing all of your friends who are *not* members of the group. 
 
-If you click on a photo of a person who isn't in the group, they will be put into the group. If you click on a photo of a person who is in the group, they will be removed from it. 
+If you click on a photo of a person who isn't in the group, they will be put into the group.
+If you click on a photo of a person who is in the group, they will be removed from it. 
 
 **Access Control**
 
-Once you have created a group, you may use it in any access control list. This is the little lock icon beneath the status update box on your home page. If you click this you can select who can see and who can *not* see the post you are about to make.  These can be individual people or groups. 
+Once you have created a group, you may use it in any access control list.
+This is the little lock icon beneath the status update box on your home page.
+If you click this you can select who can see and who can *not* see the post you are about to make..
+These can be individual people or groups. 
 
-On your "Network" page you will find posts and conversation from everybody in your network. You may select an individual group on this page to show conversations pertaining only to members of that group. 
+On your "Network" page you will find posts and conversation from everybody in your network.
+You may select an individual group on this page to show conversations pertaining only to members of that group. 
 
 But wait, there's more...
 
-If you look carefully when visiting a group from your Network page, the lock icon under the status update box has an exclamation mark next to it. This is meant to draw attention to that lock. Click the lock. You will see that since you are only viewing a certain group of people, your status updates while on that screen default to only being seen by that same group of people. This is how you keep your future employers from seeing what you write to your drinking buddies.  You can over-ride this setting, but this makes it easy to separate your conversations into different friend circles.
+If you look carefully when visiting a group from your Network page, the lock icon under the status update box has an exclamation mark next to it.
+This is meant to draw attention to that lock.
+Click the lock.
+You will see that since you are only viewing a certain group of people, your status updates while on that screen default to only being seen by that same group of people.
+This is how you keep your future employers from seeing what you write to your drinking buddies.
+You can over-ride this setting, but this makes it easy to separate your conversations into different friend circles.
 
 **Default Post Privacy**
 
-By default, Friendica assumes that you want all of your posts to be private. Therefore, when you sign up, Friendica creates a group for you that it will automatically add all of your contacts to. All of your posts are restricted to that group by default.
+By default, Friendica assumes that you want all of your posts to be private.
+Therefore, when you sign up, Friendica creates a group for you that it will automatically add all of your contacts to.
+All of your posts are restricted to that group by default.
 
-Note that this behavior can be overridden by your site admin, in which case your posts will be "public" (i.e. visible to the entire Internet) by default.
+Note that this behaviour can be overridden by your site admin, in which case your posts will be "public" (i.e. visible to the entire Internet) by default.
 
-If you want your posts to be "public" by default, you can change your default post permissions on your Settings page. You also have the option there to change which groups you post to by default, or to change which group your new contacts get placed into by default.
+If you want your posts to be "public" by default, you can change your default post permissions on your Settings page.
+You also have the option there to change which groups you post to by default, or to change which group your new contacts get placed into by default.
 
 **Privacy Concerns To Be Aware Of**
 
-These private conversations work best when your friends are Friendica members. We know who else can see the conversations - nobody, *unless* your friends cut and paste the messages and send them to others. 
+These private conversations work best when your friends are Friendica members.
+We know who else can see the conversations - nobody, *unless* your friends cut and paste the messages and send them to others. 
 
-This is a trust issue you need to be aware of. No software in the world can prevent your friends from leaking your confidential and trusted communications. Only a wise choice of friends.  
+This is a trust issue you need to be aware of.
+No software in the world can prevent your friends from leaking your confidential and trusted communications.
+Only a wise choice of friends.  
 
-But it isn't as clear cut when dealing with GNU Social and other network providers. You are encouraged to be **very** cautious when other network members are in a group because it's entirely possible for your private messages to end up in a public newsfeed. If you look at the Contact Edit page for any person, we will tell you whether or not they are members of an insecure network where you should exercise caution.
+But it isn't as clear cut when dealing with GNU Social and other network providers.
+If you look at the Contact Edit page for any person, we will tell you whether or not they are members of an insecure network where you should exercise caution.
 
-Once you have created a post, you can not change the permissions assigned. Within seconds it has been delivered to lots of people - and perhaps everybody it was addressed to. If you mistakenly created a message and wish you could take it back, the best you can do is to delete it. We will send out a delete notification to everybody who received the message - and this should wipe out the message with the same speed it was initially propagated. In most cases it will be completely wiped from the Internet - in under a minute. Again, this applies to Friendica networks. Once a message spreads to other networks, it may not be removed quickly and in some cases it may not be removed at all. 
+Once you have created a post, you can not change the permissions assigned.
+Within seconds it has been delivered to lots of people - and perhaps everybody it was addressed to.
+If you mistakenly created a message and wish you could take it back, the best you can do is to delete it.
+We will send out a delete notification to everybody who received the message - and this should wipe out the message with the same speed it was initially propagated.
+In most cases it will be completely wiped from the Internet - in under a minute.
+Again, this applies to Friendica networks.
+Once a message spreads to other networks, it may not be removed quickly and in some cases it may not be removed at all. 
 
-In case you haven't yet figured this out, we are encouraging you to encourage your friends to use Friendica - because all these privacy features work much better within a privacy-aware network. Many of the other social networks Friendica can connect to have no privacy controls.
+In case you haven't yet figured this out, we are encouraging you to encourage your friends to use Friendica - because all these privacy features work much better within a privacy-aware network.
+Many of the other social networks Friendica can connect to have no privacy controls.
 
 
 Profiles, Photos, and Privacy
 =============================
 
-The decentralised nature of Friendica (many websites exchanging information rather than one website which controls everything) has some implications with privacy as it relates to people on other sites. There are things you should be aware of, so you can decide best how to interact privately.
+The decentralised nature of Friendica (many websites exchanging information rather than one website which controls everything) has some implications with privacy as it relates to people on other sites.
+There are things you should be aware of, so you can decide best how to interact privately.
 
 **Photos**
 
-Sharing photos privately is a problem. We can only share them __privately__ with Friendica members. In order to share with other people, we need to prove who they are. We can prove the identity of Friendica members, as we have a mechanism to do so. Your friends on other networks will be blocked from viewing these private photos because we cannot prove that they should be allowed to see them.
+Sharing photos privately is a problem.
+We can only share them __privately__ with Friendica members.
+In order to share with other people, we need to prove who they are.
+We can prove the identity of Friendica members, as we have a mechanism to do so.
+Your friends on other networks will be blocked from viewing these private photos because we cannot prove that they should be allowed to see them.
 
-Our developers are working on solutions to allow access to your friends - no matter what network they are on. However we take privacy seriously and don't behave like some networks that __pretend__ your photos are private, but make them available to others without proof of identity.
+Our developers are working on solutions to allow access to your friends - no matter what network they are on.
+However we take privacy seriously and don't behave like some networks that __pretend__ your photos are private, but make them available to others without proof of identity.
 
 **Profiles**
 
-Your profile and "wall" may also be visited by your friends from other networks, and you can block access to these by web visitors that Friendica doesn't know. Be aware that this could include some of your friends on other networks.
+Your profile and "wall" may also be visited by your friends from other networks, and you can block access to these by web visitors that Friendica doesn't know.
+Be aware that this could include some of your friends on other networks.
 
-This may produce undesired results when posting a long status message to (for instance) Twitter or App.net. When Friendica sends a post to these networks which exceeds the service length limit, we truncate it and provide a link to the original. The original is a link back to your Friendica profile. As Friendica cannot prove who they are, it may not be possible for these people to view your post in full.
+This may produce undesired results when posting a long status message to (for instance) Twitter.
+When Friendica sends a post to these networks which exceeds the service length limit, we truncate it and provide a link to the original.
+The original is a link back to your Friendica profile.
+As Friendica cannot prove who they are, it may not be possible for these people to view your post in full.
 
 For people in this situation we would recommend providing a "Twitter-length" summary, with more detail for friends that can see the post in full. 
+You can do so by including the BBCode tag *abstract* in your posting.
 
-Blocking your profile or entire Friendica site from unknown web visitors also has serious implications for communicating with GNU Social members. These networks communicate with others via public protocols that are not authenticated. In order to view your posts, these networks have to access them as an "unknown web visitor". If we allowed this, it would mean anybody could in fact see your posts, and you've instructed Friendica not to allow this. So be aware that the act of blocking your profile to unknown visitors also has the effect of blocking outbound communication with public networks (such as GNU Social) and feed readers such as Google Reader.   
+Blocking your profile or entire Friendica site from unknown web visitors also has serious implications for communicating with GNU Social members.
+These networks communicate with others via public protocols that are not authenticated.
+In order to view your posts, these networks have to access them as an "unknown web visitor".
+If we allowed this, it would mean anybody could in fact see your posts, and you've instructed Friendica not to allow this.
+So be aware that the act of blocking your profile to unknown visitors also has the effect of blocking outbound communication with public networks (such as GNU Social) and feed readers such as Google Reader.
index 4cacc1c456860d44bdf704e9c3c260f1198087b5..34ade6b3be3fdccea662ee2e2d10635673cb6b2a 100644 (file)
@@ -60,7 +60,7 @@ GNU Social Plugin for Friendica
 
 ###Configuration
 
-When the addon is activated the user has to aquire the following in order to connect to the GNU Social account of choice.
+When the addon is activated the user has to acquire the following in order to connect to the GNU Social account of choice.
 
 * The base URL for the GNU Social API, for quitter.se this is https://quitter.se/api/
 * OAuth Consumer key & secret
@@ -86,7 +86,3 @@ Follow the Sign in with GNU Social button, allow access and then copy the securi
 Friendica will then try to acquire the final OAuth credentials from the API. 
 
 If successful, the addon settings will allow you to select to post your public messages to your GNU Social account (have a look behind the little lock symbol beneath the status "editor" on your Home or Network pages).
-
-###More documentation
-
-Find the author's documentation here: [http://diekershoff.homeunix.net/redmine/wiki/friendikaplugin/StatusNet_Plugin](http://diekershoff.homeunix.net/redmine/wiki/friendikaplugin/StatusNet_Plugin)
index 19e6f11554181ab8ea0e9e559c32a72bdbf85764..ef8509d8c10833e1034f084bb7920abdf16f37a5 100644 (file)
@@ -25,3 +25,5 @@ GNU Social/Diaspora contacts
 ---\r
 Contacts on GNU Social or Diaspora will be archived, as we can't inform them about your move.\r
 You should ask them to remove your contact from their lists and re-add you, and you should do the same with their contact.\r
+\r
+Support for the Diaspora account moving is scheduled for the 3.6 release of Friendica. \r
index 3a25dc72170184013197a5bee99498c8e12c3fdd..ab8c58eb856801efd20c2cca07e783dbae91f199 100644 (file)
@@ -36,6 +36,9 @@ This *should* be 'addon/plugin_name/plugin_name.php' in most cases.
 
 $function is a string and is the name of the function which will be executed when the hook is called.
 
+Please also add a README or README.md file to the addon directory.
+It will be displayed in the admin panel and should include some further information in addition to the header information.
+
 Arguments
 ---
 Your hook callback functions will be called with at least one and possibly two arguments
index 9beb2ff4c6f86cb7d3b02147b5ca138dab1ecfec..652407d642ec6fc040e96e9f6f24921aa16db114 100644 (file)
@@ -1,8 +1,17 @@
-This is the global directory.  If you get lost, you can <a href = "help/Quick-Start-groupsandpages">click this link</a> to bring yourself back here.
+This is the global directory.
+If you get lost, you can <a href = "help/Quick-Start-groupsandpages">click this link</a> to bring yourself back here.
 
-On this page, you'll find a collection of groups, forums and celebrity pages.  Groups are not real people.  Connecting to them is similar to "liking" something on Facebook, or signing up for a new forum.  You don't have to feel awkward about introducing yourself to a new person, because they're not people!
+On this page, you'll find a collection of groups, forums and celebrity pages.
+Groups are not real people.
+Connecting to them is similar to "liking" something on Facebook, or signing up for a new forum.
+You don't have to feel awkward about introducing yourself to a new person, because they're not people!
 
-When you connect to a group, all messages to that group will start appearing in your network tab.  You can comment on these posts, or post to the group yourself without ever having to add any of the groups members.  This is a great way to make friends dynamically - you'll find people you like and add each other naturally instead of adding random strangers.  Simply find a group you're interested in, and connect to it the same way you did with people in the last section.  There are a lot of groups, and you're likely to get lost.  Remember the link at the top of this page will bring you back here.
+When you connect to a group, all messages to that group will start appearing in your network tab.
+You can comment on these posts, or post to the group yourself without ever having to add any of the groups members.
+This is a great way to make friends dynamically - you'll find people you like and add each other naturally instead of adding random strangers.
+Simply find a group you're interested in, and connect to it the same way you did with people in the last section.
+There are a lot of groups, and you're likely to get lost.
+Remember the link at the top of this page will bring you back here.
 
 Once you've added some groups, <a href="help/Quick-Start-andfinally">move on to the next section</a>.
 
index 47537a3e819b54c9c1b8fa85f9fb9be30b462c6b..5c88ffaa0635ae2567a30c64ff4f30a6838787b8 100644 (file)
@@ -1,10 +1,20 @@
-First things first, let's make sure you're logged in to your account.  If you're not already logged in, do so in the frame below.
+First things first, let's make sure you're logged in to your account.
+If you're not already logged in, do so in the frame below.
 
 Once you've logged in (or if you are already logged in), you'll now be looking at your profile page.
 
-This is a bit like your Facebook wall.  It's where all your status messgages are kept, and where your friends come to post on your wall.  To write your status, simply click in the box that says "share".  When you do this, the box will expand.  You can see some formatting options at the top such as Bold, Italics and Underline, as well as ways to add links and pictures.  At the bottom you'll find some more links.  You can use these to upload pictures and files from your computer, share websites with a bit of preview text, or embed video and audio files from elsewhere on the web.  You can also set your post location here.
+This is a bit like your Facebook wall.
+It's where all your status messgages are kept, and where your friends come to post on your wall.
+To write your status, simply click in the box that says "share".
+When you do this, the box will expand.
+You can see some formatting options at the top such as Bold, Italics and Underline, as well as ways to add links and pictures.
+At the bottom you'll find some more links.
+You can use these to upload pictures and files from your computer, share websites with a bit of preview text, or embed video and audio files from elsewhere on the web.
+You can also set your post location here.
 
-Once you've finished writing your post, click on the padlock icon to select who can see it.  If you do not use the padlock icon, your post will be public.  This means it will appear to anybody who views your profile, and in the community tab if your site has it enabled, as well as in the network tab of any of your contacts.
+Once you've finished writing your post, click on the padlock icon to select who can see it.
+If you do not use the padlock icon, your post will be public.
+This means it will appear to anybody who views your profile, and in the community tab if your site has it enabled, as well as in the network tab of any of your contacts.
 
 Play around with this a bit, then when you're ready to move on, we'll take a look at the <a href="help/Quick-Start-network">Network Tab</a>
 
index d3911266ceb981cdb225282b9c6b34b2c0bc27d7..39edd19b4129b51434775976ae2aa86e8df57b31 100644 (file)
@@ -1,10 +1,20 @@
-This is your Suggested Friends page.  If you get lost, you can <a href="help/Quick-Start-makenewfriends">click this link</a> to bring yourself back here.
+This is your Suggested Friends page.
+If you get lost, you can <a href="help/Quick-Start-makenewfriends">click this link</a> to bring yourself back here.
 
-This is a bit like the Friend Suggestions page of Facebook.  Everybody on this list has agreed that they may be suggested as a friend.  This means they're unlikely to refuse an introduction you send, and they want to meet new people too!
+This is a bit like the Friend Suggestions page of Facebook.
+Everybody on this list has agreed that they may be suggested as a friend.
+This means they're unlikely to refuse an introduction you send, and they want to meet new people too!
 
-See somebody you like the look of?  Click the connect button beneath their photograph.  This will bring you to the introductions page.  Fill in the form as instructed, and add a small note (optional).  Now, wait a bit and they'll accept your request - note that these are real people, and it might take a while.  Now you've added one, you're probably lost.  Click the link at the top of this page to go back to the suggested friends list and add some more.
+See somebody you like the look of?
+Click the connect button beneath their photograph.
+This will bring you to the introductions page.
+Fill in the form as instructed, and add a small note (optional).
+Now, wait a bit and they'll accept your request - note that these are real people, and it might take a while.
+Now you've added one, you're probably lost.
+Click the link at the top of this page to go back to the suggested friends list and add some more.
 
-Feel uncomfortable adding people you don't know?  Don't worry - that's where <a href="help/Quick-Start-groupsandpages">Groups and Pages</a> come in!
+Feel uncomfortable adding people you don't know?
+Don't worry - that's where <a href="help/Quick-Start-groupsandpages">Groups and Pages</a> come in!
 
 <iframe src="suggest" width="950" height="600"></iframe>
 
index b456135e2d10abf659cbbd1fc7d9dc886461a891..e0c138d2bd2838dd2c8fc30297668f7162414359 100644 (file)
@@ -1,6 +1,11 @@
-This is your Network Tab.  If you get lost, you can <a href="help/Quick-Start-network">click this link</a> to bring yourself back here.
-
-This is a bit like the Newsfeed at Facebook or the Stream at Diaspora.  It's where all the posts from your contacts, groups, and feeds will appear.  If you're new, you won't see anything in this page, unless you posted your status in the last step.  If you've already added a few friends, you'll be able to see their posts.  Here, you can comment, like, or dislike posts, or click on somebody's name to visit their profile page where you can write on their wall.
+This is your Network Tab.
+If you get lost, you can <a href="help/Quick-Start-network">click this link</a> to bring yourself back here.
+
+This is a bit like the Newsfeed at Facebook or the Stream at Diaspora.
+It's where all the posts from your contacts, groups, and feeds will appear.
+If you're new, you won't see anything in this page, unless you posted your status in the last step.
+If you've already added a few friends, you'll be able to see their posts.
+Here, you can comment, like, or dislike posts, or click on somebody's name to visit their profile page where you can write on their wall.
 
 Now we need to fill it up, the first step, is to <a href="help/Quick-Start-makingnewfriends"> make some new friends</a>.
 
index 4b4853b6b9407ad609e5d6f8951da9bbc7f8f0fa..eab4ab059b74936281597bee480e51980a75b7e4 100644 (file)
@@ -13,7 +13,8 @@ You will need to be logged in at the time.
 You will be asked for your password to confirm the request.
 If this matches your stored password, your account will immediately be blocked to all probing.
 Unlike some social networks we do **not** hold onto it for a grace period in case you change your mind.
-All your content and user data, etc is instantly removed. For all intents and purposes, the account is gone in moments.  
+All your content and user data, etc is instantly removed.
+For all intents and purposes, the account is gone in moments.  
 
 We then send out an "unfriend" signal to all of your contacts.
 This signal deletes all content on those networks.
index 222ac89e6444a73d2228e07a64ef7a969e80bea5..ca355eef6226380c6aac5c7ed14c7e4832c28093 100644 (file)
@@ -994,7 +994,8 @@ The following API calls from the Twitter API are not implemented in either Frien
 /usr/bin/curl -u USER:PASS https://YOUR.FRIENDICA.TLD/api/statuses/update.xml -d source="some source id" -d status="the status you want to post"
 
 ### Python
-The [RSStoFriedika](https://github.com/pafcu/RSStoFriendika) code can be used as an example of how to use the API with python. The lines for posting are located at [line 21](https://github.com/pafcu/RSStoFriendika/blob/master/RSStoFriendika.py#L21) and following.
+The [RSStoFriedika](https://github.com/pafcu/RSStoFriendika) code can be used as an example of how to use the API with python.
+The lines for posting are located at [line 21](https://github.com/pafcu/RSStoFriendika/blob/master/RSStoFriendika.py#L21) and following.
 
 def tweet(server, message, group_allow=None):
 url = server + '/api/statuses/update'
index 5b894cb1a013f9286a9c26671715ea73be4057ed..1a3b9a55b1034b258e43a06bce5653140ed7cdd9 100644 (file)
@@ -38,7 +38,8 @@ The class `ItemsManager` has been declared in the `Friendica` namespace.
 Namespaces are useful to keep classes separated and avoid names conflicts (could be that a library you want to use also defines a class named `ItemsManager`, but as long as it is in another namespace, you don't have any problem)
 
 Let's say now that you need to load some items in a view, maybe in a fictional `mod/network.php`.
-In order for the Composer autoloader to work, it must first be included. In Friendica this is already done at the top of `boot.php`, with `require_once('vendor/autoload.php');`.
+In order for the Composer autoloader to work, it must first be included.
+In Friendica this is already done at the top of `boot.php`, with `require_once('vendor/autoload.php');`.
 
 The code will be something like:
 
@@ -58,7 +59,8 @@ function network_content(App $a) {
 That's a quite simple example, but look: no `require()`!
 If you need to use a class, you can simply use it and you don't need to do anything else.
 
-Going further: now we have a bunch of `*Manager` classes that cause some code duplication, let's define a `BaseManager` class, where we move all common code between all managers:
+Going further: now we have a bunch of `*Manager` classes that cause some code duplication.
+Let's define a `BaseManager` class, where we move all common code between all managers:
 
 ```php
 // src/BaseManager.php
@@ -194,4 +196,4 @@ So you can think of namespaces as folders in a Unix file system, with global sco
 ## Related
 
 * [Using Composer](help/Composer)
-* [How To Move Classes to `src`](help/Developer-How-To-Move-Classes-to-src)
\ No newline at end of file
+* [How To Move Classes to `src`](help/Developer-How-To-Move-Classes-to-src)
index 9a8bfb1089aa4ca24c583fce4861a153fa0a35d3..1ef92f5f15ef24a5acece8a5ec5b12792978027c 100644 (file)
@@ -53,6 +53,7 @@ Friendica - Dokumentation und Ressourcen
 * [Using Composer](help/Composer) (EN)
 * [Code-Referenz (mit doxygen generiert - setzt Cookies)](doc/html/)
 * [Twitter/GNU Social API Functions](help/api) (EN)
+* [Translation of Friendica](help/translations) (EN)
 
 **Externe Ressourcen**
 
index 81252987b7ba40b1d73597628fa94e2eac119aa7..63944964fdbcd5be9dc13ad6e0d9bf8c67160d9d 100644 (file)
@@ -59,15 +59,17 @@ When you publish an event, you can choose who shall receive it, as with a regula
 The recipients will see the posting about the event in their network-stream.
 Additionally it will be added to their calendar and thus be shown in their events overview page.
 
-Recipients of the event-posting can comment or dis-/like the event, as with a regular posting, and also announce that they will attend, not attend or may-be attend the event with a single click.
+Recipients of the event-posting can comment or dis-/like the event, as with a regular posting.
+Furthermore they can announce that they will attend, not attend or may-be attend the event with a single click.
 
 ### Addons
 
 #### OpenStreetMap
 
-If this addon is activated on you friendica node, the content of the location field will be matched with the identification service of OSM when you submit the event.
+If this addon is activated on your friendica node, the content of the location field will be matched with the identification service of OSM when you submit the event.
 Should OSM find anything matching, a map for the location will be embedded automatically at the end of the events view.
 
 #### Calendar Export
 
-If this addon is activated the public events you have created will be published in ical or csv file. The URL of the published file is ``example.com/cal/nickname/export/format`` (where format is either ical of csv).
\ No newline at end of file
+If this addon is activated the public events you have created will be published in ical or csv file.
+The URL of the published file is ``example.com/cal/nickname/export/format`` (where format is either ical of csv).
index dd7ab8047ce748fa8f23fb1987276da96a564cdc..cbb76a38c38b9758e167dd4dd74a81609af34042 100644 (file)
@@ -6,7 +6,8 @@ Config values that can only be set in .htconfig.php
 There are some config values that haven't found their way into the administration page.
 This has several reasons.
 Maybe they are part of a current development that isn't considered stable and will be added later in the administration page when it is considered safe.
-Or it triggers something that isn't expected to be of public interest. Or it is for testing purposes only.
+Or it triggers something that isn't expected to be of public interest.
+Or it is for testing purposes only.
 
 **Attention:** Please be warned that you shouldn't use one of these values without the knowledge what it could trigger.
 Especially don't do that with undocumented values.
@@ -46,6 +47,7 @@ Example: To set the directory value please add this line to your .htconfig.php:
 * **frontend_worker_timeout** - Value in minutes after we think that a frontend task was killed by the webserver. Default value is 10.
 * **hsts** (Boolean) - Enables the sending of HTTP Strict Transport Security headers
 * **ignore_cache** (Boolean) - For development only. Disables the item cache.
+* **ipv4_resolve** (Boolean) - Resolve IPV4 addresses only. Don't resolve to IPV6. Default value is false.
 * **like_no_comment** (Boolean) - Don't update the "commented" value of an item when it is liked.
 * **local_block** (Boolean) - Used in conjunction with "block_public".
 * **local_search** (Boolean) - Blocks search for users who are not logged in to prevent crawlers from blocking your system.
@@ -70,7 +72,7 @@ Example: To set the directory value please add this line to your .htconfig.php:
 * **paranoia** (Boolean) - Log out users if their IP address changed.
 * **permit_crawling** (Boolean) - Restricts the search for not logged in users to one search per minute.
 * **worker_debug** (Boolean) - If enabled, it prints out the number of running processes split by priority.
-* **worker_fetch_limit** - Number of worker tasks that are fetched in a single query. Default is 5.
+* **worker_fetch_limit** - Number of worker tasks that are fetched in a single query. Default is 1.
 * **profiler** (Boolean) - Enable internal timings to help optimize code. Needed for "rendertime" addon. Default is false.
 * **free_crawls** - Number of "free" searches when "permit_crawling" is activated (Default value is 10)
 * **crawl_permit_period** - Period in seconds between allowed searches when the number of free searches is reached and "permit_crawling" is activated (Default value is 60)
@@ -98,7 +100,7 @@ Example: To set the directory value please add this line to your .htconfig.php:
 
 * **upgrade_link** -
 
-## experimentals ##
+## experimental ##
 
 * **exp_themes** (Boolean) - Show experimental themes as well.
 
index c99a845500a106434d017a2b87bbe9dba6556306..8f95069e63f452ecfd8628d859be78e80021b3ce 100644 (file)
@@ -3,8 +3,8 @@ Install an ejabberd with synchronized credentials
 
 * [Home](help)
 
-[Ejabberd](https://www.ejabberd.im/) is a chat server that uses XMPP as messaging protocol that you can use with a large amount of clients. In conjunction 
-with the "xmpp" addon it can be used for a web based chat solution for your users.
+[Ejabberd](https://www.ejabberd.im/) is a chat server that uses XMPP as messaging protocol that you can use with a large amount of clients.
+In conjunction with the "xmpp" addon it can be used for a web based chat solution for your users.
 
 Installation
 ------------
index fb7036896822f01d09b29e5563f8f61790212b84..5c096d2c2d700cb920084909bcfd5fa3dcfab531 100644 (file)
@@ -3,7 +3,8 @@ Friendica Templating Documentation
 
 * [Home](help)
 
-Friendica uses [Smarty 3](http://www.smarty.net/) as PHP templating engine. The main templates are found in
+Friendica uses [Smarty 3](http://www.smarty.net/) as PHP templating engine.
+The main templates are found in
 
                /view/templates
 
@@ -33,9 +34,10 @@ where the value may as well be an array by its own.
 Form Templates
 --------------
 
-To guarantee a consistent look and feel for input forms, i.e. in the settings sections, there are templates for the basic form fields. They are initialized with an array of data, depending on the tyle of the field.
+To guarantee a consistent look and feel for input forms, i.e. in the settings sections, there are templates for the basic form fields.
+They are initialized with an array of data, depending on the tyle of the field.
 
-All of these take an array for holding the values, eg,. for a one line text input field, which is required and should be used to type email addesses use something along the lines of:
+All of these take an array holding the values, e.g. for a one line text input field, which is required and should be used to type email addesses use something along the lines of:
 
                '$adminmail' => array('adminmail', t('Site administrator email address'), $adminmail, t('Your account email address must match this in order to use the web admin panel.'), 'required', '', 'email'),
 
@@ -45,7 +47,9 @@ Listed below are the template file names, the general purpose of the template an
 
 ### field_checkbox.tpl
 
-A checkbox. If the checkbox is checked its value is **1**. Field parameter:
+A checkbox.
+If the checkbox is checked its value is **1**.
+Field parameter:
 
 0. Name of the checkbox,
 1. Label for the checkbox,
@@ -54,7 +58,8 @@ A checkbox. If the checkbox is checked its value is **1**. Field parameter:
 
 ### field_combobox.tpl
 
-A combobox, combining a pull down selection and a textual input field. Field parameter:
+A combobox, combining a pull down selection and a textual input field.
+Field parameter:
 
 0. Name of the combobox,
 1. Label for the combobox,
@@ -65,7 +70,8 @@ A combobox, combining a pull down selection and a textual input field. Field par
 
 ### field_custom.tpl
 
-A customizeable template to include a custom element in the form with the usual surroundings, Field parameter:
+A customizeable template to include a custom element in the form with the usual surroundings,
+Field parameter:
 
 0. Name of the field,
 1. Label for the field,
@@ -74,7 +80,8 @@ A customizeable template to include a custom element in the form with the usual
 
 ### field_input.tpl
 
-A single line input field for textual input. Field parameter:
+A single line input field for textual input.
+Field parameter:
 
 0. Name of the field,
 1. Label for the input box,
@@ -86,7 +93,8 @@ A single line input field for textual input. Field parameter:
 
 ### field_intcheckbox.tpl
 
-A checkbox (see above) but you can define the value of it. Field parameter:
+A checkbox (see above) but you can define the value of it.
+Field parameter:
 
 0. Name of the checkbox,
 1. Label for the checkbox,
@@ -96,7 +104,8 @@ A checkbox (see above) but you can define the value of it. Field parameter:
 
 ### field_openid.tpl
 
-An input box (see above) but prepared for special CSS styling for openID input. Field parameter:
+An input box (see above) but prepared for special CSS styling for openID input.
+Field parameter:
 
 0. Name of the field,
 1. Label for the input box,
@@ -105,7 +114,9 @@ An input box (see above) but prepared for special CSS styling for openID input.
 
 ### field_password.tpl
 
-A single line input field (see above) for textual input. The characters typed in will not be shown by the browser. Field parameter:
+A single line input field (see above) for textual input.
+The characters typed in will not be shown by the browser.
+Field parameter:
 
 0. Name of the field,
 1. Label for the field,
@@ -116,7 +127,8 @@ A single line input field (see above) for textual input. The characters typed in
 
 ### field_radio.tpl
 
-A radio button. Field parameter:
+A radio button.
+Field parameter:
 
 0. Name of the radio button,
 1. Label for the radio button,
@@ -126,7 +138,8 @@ A radio button. Field parameter:
 
 ### field_richtext.tpl
 
-A multi-line input field for *rich* textual content. Field parameter:
+A multi-line input field for *rich* textual content.
+Field parameter:
 
 0. Name of the input field,
 1. Label for the input box,
@@ -135,7 +148,8 @@ A multi-line input field for *rich* textual content. Field parameter:
 
 ### field_select.tpl
 
-A drop down selection box. Field parameter:
+A drop down selection box.
+Field parameter:
 
 0. Name of the field,
 1. Label of the selection box,
@@ -145,7 +159,8 @@ A drop down selection box. Field parameter:
 
 ### field_select_raw.tpl
 
-A drop down selection box (see above) but you have to prepare the values yourself. Field parameter:
+A drop down selection box (see above) but you have to prepare the values yourself.
+Field parameter:
 
 0. Name of the field,
 1. Label of the selection box,
@@ -155,7 +170,8 @@ A drop down selection box (see above) but you have to prepare the values yoursel
 
 ### field_textarea.tpl
 
-A multi-line input field for (plain) textual content. Field parameter:
+A multi-line input field for (plain) textual content.
+Field parameter:
 
 0. Name of the input field,
 1. Label for the input box,
@@ -164,7 +180,8 @@ A multi-line input field for (plain) textual content. Field parameter:
 
 ### field_yesno.tpl
 
-A button that has two states *yes* or *no*. Field parameter:
+A button that has two states *yes* or *no*.
+Field parameter:
 
 0. Name of the input field,
 1. Label for the button,
index a4477c8cb355b82b710530b917ca3c5a209e6ff5..956e5d0e11ad42141fd099c209998328d8848f8d 100644 (file)
@@ -576,6 +576,11 @@ function get_contact($url, $uid = 0, $no_update = false) {
                // Update the contact every 7 days
                $update_contact = ($contact['avatar-date'] < datetime_convert('','','now -7 days'));
 
+               // We force the update if the avatar is empty
+               if ($contact['avatar'] == '') {
+                       $update_contact = true;
+               }
+
                if (!$update_contact || $no_update) {
                        return $contact_id;
                }
@@ -584,10 +589,10 @@ function get_contact($url, $uid = 0, $no_update = false) {
                return 0;
        }
 
-       $data = Probe::uri($url);
+       $data = Probe::uri($url, "", $uid);
 
        // Last try in gcontact for unsupported networks
-       if (!in_array($data["network"], array(NETWORK_DFRN, NETWORK_OSTATUS, NETWORK_DIASPORA, NETWORK_PUMPIO))) {
+       if (!in_array($data["network"], array(NETWORK_DFRN, NETWORK_OSTATUS, NETWORK_DIASPORA, NETWORK_PUMPIO, NETWORK_MAIL))) {
                if ($uid != 0) {
                        return 0;
                }
@@ -747,7 +752,7 @@ function posts_from_contact_url(App $a, $contact_url) {
                WHERE `contact`.`nurl` = '%s' AND `contact`.`uid` = 0",
                dbesc(normalise_link($contact_url)));
        if (in_array($r[0]["network"], array(NETWORK_DFRN, NETWORK_DIASPORA, NETWORK_OSTATUS, ""))) {
-               $sql = "(`item`.`uid` = 0 OR (`item`.`uid` = %d AND `item`.`private`))";
+               $sql = "(`item`.`uid` = 0 OR (`item`.`uid` = %d AND NOT `item`.`global`))";
        } else {
                $sql = "`item`.`uid` = %d";
        }
index d63511cd1d20af430b1c6ac0bcf3df09f0459cf1..01c1067d923f6bd97808213a9ff274423f0658cd 100644 (file)
@@ -3,6 +3,14 @@
 /**
  * @file include/Smilies.php
  * @brief This file contains the Smilies class which contains functions to handle smiles
+ *
+ * @todo Use the shortcodes from here:
+ * https://github.com/iamcal/emoji-data/blob/master/emoji_pretty.json?raw=true
+ * https://raw.githubusercontent.com/emojione/emojione/master/extras/alpha-codes/eac.json?raw=true
+ * https://github.com/johannhof/emoji-helper/blob/master/data/emoji.json?raw=true
+ *
+ * Have also a look here:
+ * https://www.webpagefx.com/tools/emoji-cheat-sheet/
  */
 
 use Friendica\App;
index 45c9ed2554df13370f662453b4afc426ea7b2ee8..bd579bf19adc3a1dacc0d5f3d9159a5caf0aab18 100644 (file)
@@ -3988,7 +3988,7 @@ $called_api = null;
                                );
 
                // adds link to the thumbnail scale photo
-               $arr['body'] = '[url=' . System::baseUrl() . '/photos/' . $owner_record[0]['name'] . '/image/' . $hash . ']'
+               $arr['body'] = '[url=' . System::baseUrl() . '/photos/' . $owner_record[0]['nick'] . '/image/' . $hash . ']'
                                        . '[img]' . System::baseUrl() . '/photo/' . $hash . '-' . "2" . '.'. $typetoext[$filetype] . '[/img]'
                                        . '[/url]';
 
index bc3802935163badf83d5c4eea5ef8c8b979b3319..a10f18aba794e51a6544480692c319d79c1f9f42 100644 (file)
@@ -1259,6 +1259,24 @@ class dba {
                return $data;
        }
 
+       /**
+        * @brief Returns the error number of the last query
+        *
+        * @return string Error number (0 if no error)
+        */
+       public static function errorNo() {
+               return self::$dbo->errorno;
+       }
+
+       /**
+        * @brief Returns the error message of the last query
+        *
+        * @return string Error message ('' if no error)
+        */
+       public static function errorMessage() {
+               return self::$dbo->error;
+       }
+
        /**
         * @brief Closes the current statement
         *
index 63958f30bf416616548a769f584d9bcdd73e0252..16bce93e11de08a4b57c95ba7c0a871a781b613a 100644 (file)
@@ -118,7 +118,7 @@ class Diaspora {
         */
        private static function verify_magic_envelope($envelope) {
 
-               $basedom = parse_xml_string($envelope, false);
+               $basedom = parse_xml_string($envelope);
 
                if (!is_object($basedom)) {
                        logger("Envelope is no XML file");
@@ -227,7 +227,7 @@ class Diaspora {
                $basedom = parse_xml_string($xml);
 
                if (!is_object($basedom)) {
-                       logger('Received data does not seem to be an XML. Discarding.');
+                       logger('Received data does not seem to be an XML. Discarding. '.$xml);
                        http_status_exit(400);
                }
 
@@ -287,6 +287,11 @@ class Diaspora {
                        $public = true;
                        $author_link = str_replace('acct:','',$children->header->author_id);
                } else {
+                       // This happens with posts from a relais
+                       if (!$importer) {
+                               logger("This is no private post in the old format", LOGGER_DEBUG);
+                               return false;
+                       }
 
                        $encrypted_header = json_decode(base64_decode($children->encrypted_header));
 
@@ -304,7 +309,7 @@ class Diaspora {
                        $decrypted = self::aes_decrypt($outer_key, $outer_iv, $ciphertext);
 
                        logger('decrypted: '.$decrypted, LOGGER_DEBUG);
-                       $idom = parse_xml_string($decrypted,false);
+                       $idom = parse_xml_string($decrypted);
 
                        $inner_iv = base64_decode($idom->iv);
                        $inner_aes_key = base64_decode($idom->aes_key);
@@ -427,6 +432,18 @@ class Diaspora {
                        }
                }
 
+               // Process item retractions. This has to be done separated from the other stuff,
+               // since retractions for comments could come even from non followers.
+               if (!empty($fields) && in_array($fields->getName(), array('retraction'))) {
+                       $target = notags(unxmlify($fields->target_type));
+                       if (in_array($target, array("Comment", "Like", "Post", "Reshare", "StatusMessage"))) {
+                               logger('processing retraction for '.$target, LOGGER_DEBUG);
+                               $importer = array("uid" => 0, "page-flags" => PAGE_FREELOVE);
+                               $message_id = self::dispatch($importer, $msg, $fields);
+                               return $message_id;
+                       }
+               }
+
                // Now distribute it to the followers
                $r = q("SELECT `user`.* FROM `user` WHERE `user`.`uid` IN
                        (SELECT `contact`.`uid` FROM `contact` WHERE `contact`.`network` = '%s' AND `contact`.`addr` = '%s')
@@ -539,7 +556,7 @@ class Diaspora {
         */
        private static function valid_posting($msg) {
 
-               $data = parse_xml_string($msg["message"], false);
+               $data = parse_xml_string($msg["message"]);
 
                if (!is_object($data)) {
                        logger("No valid XML ".$msg["message"], LOGGER_DEBUG);
@@ -1136,7 +1153,7 @@ class Diaspora {
                                return false;
                }
 
-               $source_xml = parse_xml_string($x, false);
+               $source_xml = parse_xml_string($x);
 
                if (!is_object($source_xml))
                        return false;
@@ -1183,7 +1200,7 @@ class Diaspora {
         * @return array the item record
         */
        private static function parent_item($uid, $guid, $author, $contact) {
-               $r = q("SELECT `id`, `parent`, `body`, `wall`, `uri`, `private`, `origin`,
+               $r = q("SELECT `id`, `parent`, `body`, `wall`, `uri`, `guid`, `private`, `origin`,
                                `author-name`, `author-link`, `author-avatar`,
                                `owner-name`, `owner-link`, `owner-avatar`
                        FROM `item` WHERE `uid` = %d AND `guid` = '%s' LIMIT 1",
@@ -1266,26 +1283,38 @@ class Diaspora {
         *
         * @return string the post link
         */
-       private static function plink($addr, $guid) {
+       private static function plink($addr, $guid, $parent_guid = '') {
                $r = q("SELECT `url`, `nick`, `network` FROM `fcontact` WHERE `addr`='%s' LIMIT 1", dbesc($addr));
 
                // Fallback
-               if (!$r)
-                       return "https://".substr($addr,strpos($addr,"@")+1)."/posts/".$guid;
+               if (!dbm::is_result($r)) {
+                       if ($parent_guid != '') {
+                               return "https://".substr($addr,strpos($addr,"@") + 1)."/posts/".$parent_guid."#".$guid;
+                       } else {
+                               return "https://".substr($addr,strpos($addr,"@") + 1)."/posts/".$guid;
+                       }
+               }
 
                // Friendica contacts are often detected as Diaspora contacts in the "fcontact" table
                // So we try another way as well.
                $s = q("SELECT `network` FROM `gcontact` WHERE `nurl`='%s' LIMIT 1", dbesc(normalise_link($r[0]["url"])));
-               if ($s)
+               if (dbm::is_result($s)) {
                        $r[0]["network"] = $s[0]["network"];
+               }
 
-               if ($r[0]["network"] == NETWORK_DFRN)
-                       return(str_replace("/profile/".$r[0]["nick"]."/", "/display/".$guid, $r[0]["url"]."/"));
+               if ($r[0]["network"] == NETWORK_DFRN) {
+                       return str_replace("/profile/".$r[0]["nick"]."/", "/display/".$guid, $r[0]["url"]."/");
+               }
 
-               if (self::is_redmatrix($r[0]["url"]))
+               if (self::is_redmatrix($r[0]["url"])) {
                        return $r[0]["url"]."/?f=&mid=".$guid;
+               }
 
-               return "https://".substr($addr,strpos($addr,"@")+1)."/posts/".$guid;
+               if ($parent_guid != '') {
+                       return "https://".substr($addr,strpos($addr,"@")+1)."/posts/".$parent_guid."#".$guid;
+               } else {
+                       return "https://".substr($addr,strpos($addr,"@")+1)."/posts/".$guid;
+               }
        }
 
        /**
@@ -1459,6 +1488,8 @@ class Diaspora {
 
                $datarray["changed"] = $datarray["created"] = $datarray["edited"] = $created_at;
 
+               $datarray["plink"] = self::plink($author, $guid, $parent_item['guid']);
+
                $body = diaspora2bb($text);
 
                $datarray["body"] = self::replace_people_guid($body, $person["url"]);
@@ -2018,7 +2049,7 @@ class Diaspora {
 
                $a = get_app();
 
-               if ($contact["rel"] == CONTACT_IS_FOLLOWER && in_array($importer["page-flags"], array(PAGE_FREELOVE))) {
+               if ($contact["rel"] == CONTACT_IS_SHARING) {
                        dba::update('contact', array('rel' => CONTACT_IS_FRIEND, 'writable' => true),
                                        array('id' => $contact["id"], 'uid' => $importer["uid"]));
                }
@@ -2129,8 +2160,8 @@ class Diaspora {
                // perhaps we were already sharing with this person. Now they're sharing with us.
                // That makes us friends.
                if ($contact) {
-                       if ($following && $sharing) {
-                               logger("Author ".$author." (Contact ".$contact["id"].") wants to have a bidirectional conection.", LOGGER_DEBUG);
+                       if ($following) {
+                               logger("Author ".$author." (Contact ".$contact["id"].") wants to follow us.", LOGGER_DEBUG);
                                self::receive_request_make_friend($importer, $contact);
 
                                // refetch the contact array
@@ -2138,7 +2169,7 @@ class Diaspora {
 
                                // If we are now friends, we are sending a share message.
                                // Normally we needn't to do so, but the first message could have been vanished.
-                               if (in_array($contact["rel"], array(CONTACT_IS_FRIEND, CONTACT_IS_FOLLOWER))) {
+                               if (in_array($contact["rel"], array(CONTACT_IS_FRIEND))) {
                                        $u = q("SELECT * FROM `user` WHERE `uid` = %d LIMIT 1", intval($importer["uid"]));
                                        if ($u) {
                                                logger("Sending share message to author ".$author." - Contact: ".$contact["id"]." - User: ".$importer["uid"], LOGGER_DEBUG);
@@ -2146,9 +2177,10 @@ class Diaspora {
                                        }
                                }
                                return true;
-                       } else { /// @todo Handle all possible variations of adding and retracting of permissions
-                               logger("Author ".$author." (Contact ".$contact["id"].") wants to change the relationship: Following: ".$following." - sharing: ".$sharing. "(By now unsupported)", LOGGER_DEBUG);
-                               return false;
+                       } else {
+                               logger("Author ".$author." doesn't want to follow us anymore.", LOGGER_DEBUG);
+                               lose_follower($importer, $contact);
+                               return true;
                        }
                }
 
@@ -2299,7 +2331,7 @@ class Diaspora {
                        // If it is a reshared post from another network then reformat to avoid display problems with two share elements
                        if (self::is_reshare($r[0]["body"], true)) {
                                $r = array();
-                       } elseif (self::is_reshare($r[0]["body"], false)) {
+                       } elseif (self::is_reshare($r[0]["body"], false) || strstr($r[0]["body"], "[share")) {
                                $r[0]["body"] = diaspora2bb(bb2diaspora($r[0]["body"]));
 
                                $r[0]["body"] = self::replace_people_guid($r[0]["body"], $r[0]["author-link"]);
@@ -2447,42 +2479,52 @@ class Diaspora {
                        return false;
                }
 
-               if (!isset($contact["url"])) {
+               if (empty($contact["url"])) {
                        $contact["url"] = $person["url"];
                }
 
-               $r = q("SELECT `id`, `parent`, `parent-uri`, `author-link` FROM `item` WHERE `guid` = '%s' AND `uid` = %d AND NOT `file` LIKE '%%[%%' LIMIT 1",
-                       dbesc($target_guid),
-                       intval($importer["uid"])
-               );
-               if (!$r) {
-                       logger("Target guid ".$target_guid." was not found for user ".$importer["uid"]);
+               // Fetch items that are about to be deleted
+               $fields = array('uid', 'id', 'parent', 'parent-uri', 'author-link');
+
+               // When we receive a public retraction, we delete every item that we find.
+               if ($importer['uid'] == 0) {
+                       $condition = array("`guid` = ? AND NOT `file` LIKE '%%[%%' AND NOT `deleted`", $target_guid);
+               } else {
+                       $condition = array("`guid` = ? AND `uid` = ? AND NOT `file` LIKE '%%[%%' AND NOT `deleted`", $target_guid, $importer['uid']);
+               }
+               $r = dba::select('item', $fields, $condition);
+               if (!dbm::is_result($r)) {
+                       logger("Target guid ".$target_guid." was not found on this system for user ".$importer['uid'].".");
                        return false;
                }
 
-               // Check if the sender is the thread owner
-               $p = q("SELECT `id`, `author-link`, `origin` FROM `item` WHERE `id` = %d",
-                       intval($r[0]["parent"]));
+               while ($item = dba::fetch($r)) {
+                       // Fetch the parent item
+                       $parent = dba::select('item', array('author-link', 'origin'), array('id' => $item["parent"]), array('limit' => 1));
 
-               // Only delete it if the parent author really fits
-               if (!link_compare($p[0]["author-link"], $contact["url"]) && !link_compare($r[0]["author-link"], $contact["url"])) {
-                       logger("Thread author ".$p[0]["author-link"]." and item author ".$r[0]["author-link"]." don't fit to expected contact ".$contact["url"], LOGGER_DEBUG);
-                       return false;
-               }
+                       // Only delete it if the parent author really fits
+                       if (!link_compare($parent["author-link"], $contact["url"]) && !link_compare($item["author-link"], $contact["url"])) {
+                               logger("Thread author ".$parent["author-link"]." and item author ".$item["author-link"]." don't fit to expected contact ".$contact["url"], LOGGER_DEBUG);
+                               continue;
+                       }
 
-               // Currently we don't have a central deletion function that we could use in this case. The function "item_drop" doesn't work for that case
-               dba::update('item', array('deleted' => true, 'title' => '', 'body' => '',
-                                       'edited' => datetime_convert(), 'changed' => datetime_convert()),
-                               array('id' => $r[0]["id"]));
+                       // Currently we don't have a central deletion function that we could use in this case. The function "item_drop" doesn't work for that case
+                       dba::update('item', array('deleted' => true, 'title' => '', 'body' => '',
+                                               'edited' => datetime_convert(), 'changed' => datetime_convert()),
+                                       array('id' => $item["id"]));
 
-               delete_thread($r[0]["id"], $r[0]["parent-uri"]);
+                       // Delete the thread - if it is a starting post and not a comment
+                       if ($target_type != 'Comment') {
+                               delete_thread($item["id"], $item["parent-uri"]);
+                       }
 
-               logger("Deleted target ".$target_guid." (".$r[0]["id"].") from user ".$importer["uid"]." parent: ".$p[0]["id"], LOGGER_DEBUG);
+                       logger("Deleted target ".$target_guid." (".$item["id"].") from user ".$item["uid"]." parent: ".$item["parent"], LOGGER_DEBUG);
 
-               // Now check if the retraction needs to be relayed by us
-               if ($p[0]["origin"]) {
-                       // notify others
-                       proc_run(PRIORITY_HIGH, "include/notifier.php", "drop", $r[0]["id"]);
+                       // Now check if the retraction needs to be relayed by us
+                       if ($parent["origin"]) {
+                               // notify others
+                               proc_run(PRIORITY_HIGH, "include/notifier.php", "drop", $item["id"]);
+                       }
                }
 
                return true;
index 78e98a830c3dec87e1c2d9e5fc81dd2b59da11cd..b3bd52a6682e9649a0fbd2cc92a12e593b85a33c 100644 (file)
@@ -18,22 +18,27 @@ function email_poll($mbox,$email_addr) {
                return array();
 
        $search1 = @imap_search($mbox,'FROM "' . $email_addr . '"', SE_UID);
-       if (! $search1)
+       if (!$search1) {
                $search1 = array();
+       } else {
+               logger("Found mails from ".$email_addr, LOGGER_DEBUG);
+       }
 
        $search2 = @imap_search($mbox,'TO "' . $email_addr . '"', SE_UID);
-       if (! $search2)
+       if (!$search2) {
                $search2 = array();
+       } else {
+               logger("Found mails to ".$email_addr, LOGGER_DEBUG);
+       }
 
        $search3 = @imap_search($mbox,'CC "' . $email_addr . '"', SE_UID);
-       if (! $search3)
+       if (!$search3) {
                $search3 = array();
+       } else {
+               logger("Found mails cc ".$email_addr, LOGGER_DEBUG);
+       }
 
-       $search4 = @imap_search($mbox,'BCC "' . $email_addr . '"', SE_UID);
-       if (! $search4)
-               $search4 = array();
-
-       $res = array_unique(array_merge($search1,$search2,$search3,$search4));
+       $res = array_unique(array_merge($search1, $search2, $search3));
 
        return $res;
 }
index 48e23bff627dc6341b628e4b0afccc84dce6d74c..cac713b12f93def8d69703b58305e54cf23ce721 100644 (file)
@@ -187,14 +187,10 @@ function new_contact($uid,$url,$interactive = false) {
 
        if (dbm::is_result($r)) {
                // update contact
-               if ($r[0]['rel'] == CONTACT_IS_FOLLOWER || ($network === NETWORK_DIASPORA && $r[0]['rel'] == CONTACT_IS_SHARING)) {
-                       q("UPDATE `contact` SET `rel` = %d , `subhub` = %d, `readonly` = 0 WHERE `id` = %d AND `uid` = %d",
-                               intval(CONTACT_IS_FRIEND),
-                               intval($subhub),
-                               intval($r[0]['id']),
-                               intval($uid)
-                       );
-               }
+               $new_relation = (($r[0]['rel'] == CONTACT_IS_FOLLOWER) ? CONTACT_IS_FRIEND : CONTACT_IS_SHARING);
+
+               $fields = array('rel' => $new_relation, 'subhub' => $subhub, 'readonly' => false);
+               dba::update('contact', $fields, array('id' => $r[0]['id']));
        } else {
                // check service class limits
 
@@ -222,7 +218,7 @@ function new_contact($uid,$url,$interactive = false) {
                        return $result;
                }
 
-               $new_relation = ((in_array($ret['network'], array(NETWORK_MAIL, NETWORK_DIASPORA))) ? CONTACT_IS_FRIEND : CONTACT_IS_SHARING);
+               $new_relation = ((in_array($ret['network'], array(NETWORK_MAIL))) ? CONTACT_IS_FRIEND : CONTACT_IS_SHARING);
 
                // create contact record
                $r = q("INSERT INTO `contact` ( `uid`, `created`, `url`, `nurl`, `addr`, `alias`, `batch`, `notify`, `poll`, `poco`, `name`, `nick`, `network`, `pubkey`, `rel`, `priority`,
index 4b61641627bb64ab77665e72af8e9a491e608ca9..6945f8894d2819f0e98d461089e049e6d04441d8 100644 (file)
@@ -397,15 +397,24 @@ function uri_to_guid($uri, $host = "") {
        // We have to avoid that different routines could accidentally create the same value
        $parsed = parse_url($uri);
 
+       // When the hostname isn't given, we take it from the uri
        if ($host == "") {
-               $host = $parsed["host"];
+               // Is it in the format data@host.tld?
+               if ((count($parsed) == 1) && strstr($uri, '@')) {
+                       $mailparts = explode('@', $uri);
+                       $host = array_pop($mailparts);
+               } else {
+                       $host = $parsed["host"];
+               }
        }
 
+       // We use a hash of the hostname as prefix for the guid
        $guid_prefix = hash("crc32", $host);
 
        // Remove the scheme to make sure that "https" and "http" doesn't make a difference
        unset($parsed["scheme"]);
 
+       // Glue it together to be able to make a hash from it
        $host_id = implode("/", $parsed);
 
        // We could use any hash algorithm since it isn't a security issue
index 4b1ddab0333f3b9b112347d1660a991a10c9850d..3e01b53e053458a7cad1fa2e79e88c925ba6be81 100644 (file)
@@ -150,6 +150,10 @@ function z_fetch_url($url, $binary = false, &$redirects = 0, $opts = array()) {
                }
        }
 
+       if (Config::get('system', 'ipv4_resolve', false)) {
+               curl_setopt($ch, CURLOPT_IPRESOLVE, CURL_IPRESOLVE_V4);
+       }
+
        if ($binary) {
                @curl_setopt($ch, CURLOPT_BINARYTRANSFER, 1);
        }
@@ -278,6 +282,10 @@ function post_url($url, $params, $headers = null, &$redirects = 0, $timeout = 0)
        curl_setopt($ch, CURLOPT_POSTFIELDS, $params);
        curl_setopt($ch, CURLOPT_USERAGENT, $a->get_useragent());
 
+       if (Config::get('system', 'ipv4_resolve', false)) {
+               curl_setopt($ch, CURLOPT_IPRESOLVE, CURL_IPRESOLVE_V4);
+       }
+
        if (intval($timeout)) {
                curl_setopt($ch, CURLOPT_TIMEOUT, $timeout);
        } else {
@@ -620,20 +628,15 @@ function avatar_img($email) {
 }
 
 
-function parse_xml_string($s,$strict = true) {
+function parse_xml_string($s, $strict = true) {
+       // the "strict" parameter is deactivated
+
        /// @todo Move this function to the xml class
-       if ($strict) {
-               if (! strstr($s,'<?xml'))
-                       return false;
-               $s2 = substr($s,strpos($s,'<?xml'));
-       }
-       else
-               $s2 = $s;
        libxml_use_internal_errors(true);
 
-       $x = @simplexml_load_string($s2);
-       if (! $x) {
-               logger('libxml: parse: error: ' . $s2, LOGGER_DATA);
+       $x = @simplexml_load_string($s);
+       if (!$x) {
+               logger('libxml: parse: error: ' . $s, LOGGER_DATA);
                foreach (libxml_get_errors() as $err) {
                        logger('libxml: parse: ' . $err->code." at ".$err->line.":".$err->column." : ".$err->message, LOGGER_DATA);
                }
index 28afca28a5ab3a0e21c40497eb986c0ba5068a2a..91f517bdebe9c223d7e3a907a011cac423fa8532 100644 (file)
@@ -328,7 +328,7 @@ function onepoll_run(&$argv, &$argc){
                unlink($cookiejar);
        } elseif ($contact['network'] === NETWORK_MAIL || $contact['network'] === NETWORK_MAIL2) {
 
-               logger("Mail: Fetching", LOGGER_DEBUG);
+               logger("Mail: Fetching for ".$contact['addr'], LOGGER_DEBUG);
 
                $mail_disabled = ((function_exists('imap_open') && (! get_config('system','imap_disabled'))) ? 0 : 1);
                if ($mail_disabled)
@@ -363,10 +363,10 @@ function onepoll_run(&$argv, &$argc){
                }
                if ($mbox) {
 
-                       $msgs = email_poll($mbox,$contact['addr']);
+                       $msgs = email_poll($mbox, $contact['addr']);
 
                        if (count($msgs)) {
-                               logger("Mail: Parsing ".count($msgs)." mails for ".$mailconf[0]['user'], LOGGER_DEBUG);
+                               logger("Mail: Parsing ".count($msgs)." mails from ".$contact['addr']." for ".$mailconf[0]['user'], LOGGER_DEBUG);
 
                                $metas = email_msg_meta($mbox,implode(',',$msgs));
                                if (count($metas) != count($msgs)) {
@@ -498,46 +498,36 @@ function onepoll_run(&$argv, &$argc){
 
                                                logger("Mail: Importing ".$msg_uid." for ".$mailconf[0]['user']);
 
-                                               // some mailing lists have the original author as 'from' - add this sender info to msg body.
                                                /// @TODO Adding a gravatar for the original author would be cool
 
-                                               if (! stristr($meta->from,$contact['addr'])) {
-                                                       $from = imap_mime_header_decode($meta->from);
-                                                       $fromdecoded = "";
-                                                       foreach ($from as $frompart) {
-                                                               if ($frompart->charset != "default") {
-                                                                       $fromdecoded .= iconv($frompart->charset, 'UTF-8//IGNORE', $frompart->text);
-                                                               } else {
-                                                                       $fromdecoded .= $frompart->text;
-                                                               }
-                                                       }
-
-                                                       $fromarr = imap_rfc822_parse_adrlist($fromdecoded, $a->get_hostname());
-
-                                                       $frommail = $fromarr[0]->mailbox."@".$fromarr[0]->host;
-
-                                                       if (isset($fromarr[0]->personal)) {
-                                                               $fromname = $fromarr[0]->personal;
+                                               $from = imap_mime_header_decode($meta->from);
+                                               $fromdecoded = "";
+                                               foreach ($from as $frompart) {
+                                                       if ($frompart->charset != "default") {
+                                                               $fromdecoded .= iconv($frompart->charset, 'UTF-8//IGNORE', $frompart->text);
                                                        } else {
-                                                               $fromname = $frommail;
+                                                               $fromdecoded .= $frompart->text;
                                                        }
+                                               }
 
-                                                       //$datarray['body'] = "[b]".t('From: ') . escape_tags($fromdecoded) . "[/b]\n\n" . $datarray['body'];
-
-                                                       $datarray['author-name'] = $fromname;
-                                                       $datarray['author-link'] = "mailto:".$frommail;
-                                                       $datarray['author-avatar'] = $contact['photo'];
+                                               $fromarr = imap_rfc822_parse_adrlist($fromdecoded, $a->get_hostname());
 
-                                                       $datarray['owner-name'] = $contact['name'];
-                                                       $datarray['owner-link'] = "mailto:".$contact['addr'];
-                                                       $datarray['owner-avatar'] = $contact['photo'];
+                                               $frommail = $fromarr[0]->mailbox."@".$fromarr[0]->host;
 
+                                               if (isset($fromarr[0]->personal)) {
+                                                       $fromname = $fromarr[0]->personal;
                                                } else {
-                                                       $datarray['author-name'] = $contact['name'];
-                                                       $datarray['author-link'] = 'mailbox';
-                                                       $datarray['author-avatar'] = $contact['photo'];
+                                                       $fromname = $frommail;
                                                }
 
+                                               $datarray['author-name'] = $fromname;
+                                               $datarray['author-link'] = "mailto:".$frommail;
+                                               $datarray['author-avatar'] = $contact['photo'];
+
+                                               $datarray['owner-name'] = $contact['name'];
+                                               $datarray['owner-link'] = "mailto:".$contact['addr'];
+                                               $datarray['owner-avatar'] = $contact['photo'];
+
                                                $datarray['uid'] = $importer_uid;
                                                $datarray['contact-id'] = $contact['id'];
                                                if ($datarray['parent-uri'] === $datarray['uri'])
index 19392b91731a8f8024c9b86aa950c086ce33430d..d1ad3f94cfbbe90f08c9d40c90589adb1524ddfd 100644 (file)
@@ -78,6 +78,9 @@ class ostatus {
 
                        if (dbm::is_result($r)) {
                                $found = true;
+                               if ($r['blocked']) {
+                                       $r['id'] = -1;
+                               }
                                $contact = $r;
                                $author["contact-id"] = $r["id"];
                                $author["author-link"] = $r["url"];
@@ -90,6 +93,9 @@ class ostatus {
                        $r = dba::select('contact', array(), $condition, array('limit' => 1));
 
                        if (dbm::is_result($r)) {
+                               if ($r['blocked']) {
+                                       $r['id'] = -1;
+                               }
                                $contact = $r;
                                $author["contact-id"] = $r["id"];
                                $author["author-link"] = $r["url"];
@@ -128,7 +134,7 @@ class ostatus {
                $author["owner-avatar"] = $author["author-avatar"];
 
                // Only update the contacts if it is an OStatus contact
-               if ($r && !$onlyfetch && ($contact["network"] == NETWORK_OSTATUS)) {
+               if ($r && ($r['id'] > 0) && !$onlyfetch && ($contact["network"] == NETWORK_OSTATUS)) {
 
                        // Update contact data
 
@@ -366,6 +372,11 @@ class ostatus {
                foreach (array_reverse($entrylist) AS $entry) {
                        // fetch the author
                        $authorelement = $xpath->query('/atom:entry/atom:author', $entry);
+
+                       if ($authorelement->length == 0) {
+                               $authorelement = $xpath->query('atom:author', $entry);
+                       }
+
                        if ($authorelement->length > 0) {
                                $author = self::fetchauthor($xpath, $entry, $importer, $contact, $stored);
                        }
@@ -478,6 +489,8 @@ class ostatus {
                                                $found = dba::exists('item', array('uid' => $importer["uid"], 'uri' => $item["uri"]));
                                                if ($found) {
                                                        logger("Item with uri ".$item["uri"]." for user ".$importer["uid"]." already exists.", LOGGER_DEBUG);
+                                               } elseif ($item['contact-id'] < 0) {
+                                                       logger("Item with uri ".$item["uri"]." is from a blocked contact.", LOGGER_DEBUG);
                                                } else {
                                                        // We are having duplicated entries. Hopefully this solves it.
                                                        if (Lock::set('ostatus_process_item_store')) {
@@ -674,7 +687,7 @@ class ostatus {
 
                self::$conv_list[$conversation] = true;
 
-               $conversation_data = z_fetch_url($conversation, false, $redirects, array('accept_content' => 'application/atom+xml'));
+               $conversation_data = z_fetch_url($conversation, false, $redirects, array('accept_content' => 'application/atom+xml, text/html'));
 
                if (!$conversation_data['success']) {
                        return;
@@ -855,7 +868,7 @@ class ostatus {
                }
 
                $stored = false;
-               $related_data = z_fetch_url($related, false, $redirects, array('accept_content' => 'application/atom+xml'));
+               $related_data = z_fetch_url($related, false, $redirects, array('accept_content' => 'application/atom+xml, text/html'));
 
                if (!$related_data['success']) {
                        return;
index 1d16aa2e8d4c781c5595d76406b3ede8ce1cab7d..53015c961f3487230858dbeaac8df2711675902d 100644 (file)
@@ -75,7 +75,6 @@ function get_old_attachment_data($body) {
 
                }
        }
-
        return $post;
 }
 
@@ -180,7 +179,7 @@ function get_attachment_data($body) {
        return($data);
 }
 
-function get_attached_data($body) {
+function get_attached_data($body, $item = array()) {
 /*
  - text:
  - type: link, video, photo
@@ -191,13 +190,18 @@ function get_attached_data($body) {
  - (thumbnail)
 */
 
+       $has_title = !empty($item['title']);
+       $plink = (!empty($item['plink']) ? $item['plink'] : '');
        $post = get_attachment_data($body);
 
        // if nothing is found, it maybe having an image.
        if (!isset($post["type"])) {
+               // Simplify image codes
+               $body = preg_replace("/\[img\=([0-9]*)x([0-9]*)\](.*?)\[\/img\]/ism", '[img]$3[/img]', $body);
+
                $URLSearchString = "^\[\]";
                if (preg_match_all("(\[url=([$URLSearchString]*)\]\s*\[img\]([$URLSearchString]*)\[\/img\]\s*\[\/url\])ism", $body, $pictures,  PREG_SET_ORDER)) {
-                       if (count($pictures) == 1) {
+                       if ((count($pictures) == 1) && !$has_title) {
                                // Checking, if the link goes to a picture
                                $data = ParseUrl::getSiteinfoCached($pictures[0][1], true);
 
@@ -226,32 +230,55 @@ function get_attached_data($body) {
                                                $post["text"] = str_replace($pictures[0][0], "", $body);
                                        }
                                }
-                       } elseif (count($pictures) > 1) {
+                       } elseif (count($pictures) > 0) {
                                $post["type"] = "link";
-                               $post["url"] = $b["plink"];
+                               $post["url"] = $plink;
                                $post["image"] = $pictures[0][2];
                                $post["text"] = $body;
                        }
                } elseif (preg_match_all("(\[img\]([$URLSearchString]*)\[\/img\])ism", $body, $pictures,  PREG_SET_ORDER)) {
-                       if (count($pictures) == 1) {
+                       if ((count($pictures) == 1) && !$has_title) {
                                $post["type"] = "photo";
                                $post["image"] = $pictures[0][1];
                                $post["text"] = str_replace($pictures[0][0], "", $body);
-                       } elseif (count($pictures) > 1) {
+                       } elseif (count($pictures) > 0) {
                                $post["type"] = "link";
-                               $post["url"] = $b["plink"];
+                               $post["url"] = $plink;
                                $post["image"] = $pictures[0][1];
                                $post["text"] = $body;
                        }
                }
 
-               if (preg_match_all("(\[url\]([$URLSearchString]*)\[\/url\])ism", $body, $links,  PREG_SET_ORDER)) {
-                       if (count($links) == 1) {
-                               $post["type"] = "text";
-                               $post["url"] = $links[0][1];
-                               $post["text"] = $body;
-                       }
+               // Test for the external links
+               preg_match_all("(\[url\]([$URLSearchString]*)\[\/url\])ism", $body, $links1,  PREG_SET_ORDER);
+               preg_match_all("(\[url\=([$URLSearchString]*)\].*?\[\/url\])ism", $body, $links2,  PREG_SET_ORDER);
+
+               $links = array_merge($links1, $links2);
+
+               // If there is only a single one, then use it.
+               // This should cover link posts via API.
+               if ((count($links) == 1) && !isset($post["preview"]) && !$has_title) {
+                       $post["type"] = "link";
+                       $post["text"] = trim($body);
+                       $post["url"] = $links[0][1];
                }
+
+               // Now count the number of external media links
+               preg_match_all("(\[vimeo\](.*?)\[\/vimeo\])ism", $body, $links1,  PREG_SET_ORDER);
+               preg_match_all("(\[youtube\\](.*?)\[\/youtube\\])ism", $body, $links2,  PREG_SET_ORDER);
+               preg_match_all("(\[video\\](.*?)\[\/video\\])ism", $body, $links3,  PREG_SET_ORDER);
+               preg_match_all("(\[audio\\](.*?)\[\/audio\\])ism", $body, $links4,  PREG_SET_ORDER);
+
+               // Add them to the other external links
+               $links = array_merge($links, $links1, $links2, $links3, $links4);
+
+               // Are there more than one?
+               if (count($links) > 1) {
+                       // The post will be the type "text", which means a blog post
+                       unset($post["type"]);
+                       $post["url"] = $plink;
+               }
+
                if (!isset($post["type"])) {
                        $post["type"] = "text";
                        $post["text"] = trim($body);
@@ -263,7 +290,7 @@ function get_attached_data($body) {
                        $post["image"] = $data["images"][0]["src"];
        }
 
-       return($post);
+       return $post;
 }
 
 function shortenmsg($msg, $limit, $twitter = false) {
@@ -313,7 +340,7 @@ function plaintext(App $a, $b, $limit = 0, $includedlinks = false, $htmlmode = 2
        // At first look at data that is attached via "type-..." stuff
        // This will hopefully replaced with a dedicated bbcode later
        //$post = get_attached_data($b["body"]);
-       $post = get_attached_data($body);
+       $post = get_attached_data($body, $b);
 
        if (($b["title"] != "") && ($post["text"] != ""))
                $post["text"] = trim($b["title"]."\n\n".$post["text"]);
@@ -414,16 +441,17 @@ function plaintext(App $a, $b, $limit = 0, $includedlinks = false, $htmlmode = 2
 
                if (iconv_strlen($msg, "UTF-8") > $limit) {
 
-                       if (($post["type"] == "text") && isset($post["url"]))
+                       if (($post["type"] == "text") && isset($post["url"])) {
                                $post["url"] = $b["plink"];
-                       elseif (!isset($post["url"])) {
+                       elseif (!isset($post["url"])) {
                                $limit = $limit - 23;
                                $post["url"] = $b["plink"];
-                       } elseif (strpos($b["body"], "[share") !== false)
-                               $post["url"] = $b["plink"];
-                       elseif (get_pconfig($b["uid"], "system", "no_intelligent_shortening"))
+                       // Which purpose has this line? It is now uncommented, but left as a reminder
+                       //} elseif (strpos($b["body"], "[share") !== false) {
+                       //      $post["url"] = $b["plink"];
+                       } elseif (get_pconfig($b["uid"], "system", "no_intelligent_shortening")) {
                                $post["url"] = $b["plink"];
-
+                       }
                        $msg = shortenmsg($msg, $limit);
                }
        }
index d43257fc9f47c912d60e9cea303b7db33eb344b0..d3150421143a5521de4ab0f4960b61a163b7a96f 100644 (file)
@@ -32,6 +32,9 @@ function poller_run($argv, $argc){
 
        Config::load();
 
+       // Check the database structure and possibly fixes it
+       check_db(true);
+
        // Quit when in maintenance
        if (Config::get('system', 'maintenance', true)) {
                return;
@@ -248,7 +251,9 @@ function poller_execute($queue) {
                poller_exec_function($queue, $funcname, $argv);
 
                $stamp = (float)microtime(true);
-               dba::update('workerqueue', array('done' => true), array('id' => $queue["id"]));
+               if (dba::update('workerqueue', array('done' => true), array('id' => $queue["id"]))) {
+                       Config::set('system', 'last_poller_execution', datetime_convert());
+               }
                $poller_db_duration = (microtime(true) - $stamp);
        } else {
                logger("Function ".$funcname." does not exist");
@@ -690,7 +695,7 @@ function find_worker_processes(&$passing_slow) {
        // The higher the number of parallel workers, the more we prefetch to prevent concurring access
        // We decrease the limit with the number of entries left in the queue
        $worker_queues = Config::get("system", "worker_queues", 4);
-       $queue_length = Config::get('system', 'worker_fetch_limit', $worker_queues);
+       $queue_length = Config::get('system', 'worker_fetch_limit', 1);
        $lower_job_limit = $worker_queues * $queue_length * 2;
        $jobs = poller_total_entries();
 
@@ -887,7 +892,7 @@ function poller_run_cron() {
        poller_kill_stale_workers();
 }
 
-if (array_search(__file__,get_included_files())===0){
+if (array_search(__file__,get_included_files())===0) {
        poller_run($_SERVER["argv"],$_SERVER["argc"]);
 
        poller_unclaim_process();
index 8e58a04b3104896842eba2907cc636fe00886b7a..d04ba38ef18069f3d71d841acf79f291e5ba73d4 100644 (file)
@@ -240,6 +240,11 @@ function delete_thread_uri($itemuri, $uid) {
 function delete_thread($itemid, $itemuri = "") {
        $item = q("SELECT `uid` FROM `thread` WHERE `iid` = %d", intval($itemid));
 
+       if (!dbm::is_result($item)) {
+               logger('No thread found for id '.$itemid, LOGGER_DEBUG);
+               return;
+       }
+
        // Using dba::delete at this time could delete the associated item entries
        $result = q("DELETE FROM `thread` WHERE `iid` = %d", intval($itemid));
 
index d3d2e42ae6a7c8e088be411c896e644764d8c816..49a3b216da6624fe4623c80cc43adf2bcd813835 100644 (file)
--- a/index.php
+++ b/index.php
@@ -196,7 +196,7 @@ if ($install && $a->module!="view") {
        $a->module = 'maintenance';
 } else {
        check_url($a);
-       check_db();
+       check_db(false);
        check_plugins($a);
 }
 
index ee95a180a5b30aa7049fdee99aee9a536ad24fec..9b8fa36a30c6d6abeb9dc94ad168b92db2b5e246 100644 (file)
@@ -626,6 +626,15 @@ function admin_page_summary(App $a) {
                $warningtext[] = t('The database update failed. Please run "php include/dbstructure.php update" from the command line and have a look at the errors that might appear.');
        }
 
+       $last_worker_call = Config::get('system', 'last_poller_execution', false);
+       if (!$last_worker_call) {
+               $showwarning = true;
+               $warningtext[] = t('The worker was never executed. Please check your database structure!');
+       } elseif ((strtotime(datetime_convert()) - strtotime($last_worker_call)) > 60 * 60) {
+               $showwarning = true;
+               $warningtext[] = sprintf(t('The last worker execution was on %s UTC. This is older than one hour. Please check your crontab settings.'), $last_worker_call);
+       }
+
        $r = q("SELECT `page-flags`, COUNT(`uid`) AS `count` FROM `user` GROUP BY `page-flags`");
        $accounts = array(
                array(t('Normal Account'), 0),
@@ -819,7 +828,6 @@ function admin_page_site_post(App $a) {
        $nodeinfo               =       ((x($_POST,'nodeinfo'))                 ? intval(trim($_POST['nodeinfo']))              : false);
        $dfrn_only              =       ((x($_POST,'dfrn_only'))                ? True                                          : False);
        $ostatus_disabled       =       !((x($_POST,'ostatus_disabled'))        ? True                                          : False);
-       $ostatus_poll_interval  =       ((x($_POST,'ostatus_poll_interval'))    ? intval(trim($_POST['ostatus_poll_interval'])) :  0);
        $ostatus_full_threads   =       ((x($_POST,'ostatus_full_threads'))     ? True                                          : False);
        $diaspora_enabled       =       ((x($_POST,'diaspora_enabled'))         ? True                                          : False);
        $ssl_policy             =       ((x($_POST,'ssl_policy'))               ? intval($_POST['ssl_policy'])                  : 0);
@@ -928,16 +936,16 @@ function admin_page_site_post(App $a) {
        set_config('system','language', $language);
        set_config('system','theme', $theme);
 
-       if ($theme_mobile === '---') {
+       if ($theme_mobile == '---') {
                del_config('system','mobile-theme');
        } else {
                set_config('system','mobile-theme', $theme_mobile);
-               }
-               if ($singleuser === '---') {
-                       del_config('system','singleuser');
-               } else {
-                       set_config('system','singleuser', $singleuser);
-               }
+       }
+       if ($singleuser == '---') {
+               del_config('system','singleuser');
+       } else {
+               set_config('system','singleuser', $singleuser);
+       }
        set_config('system', 'maximagesize', $maximagesize);
        set_config('system', 'max_image_length', $maximagelength);
        set_config('system', 'jpeg_quality', $jpegimagequality);
@@ -967,7 +975,6 @@ function admin_page_site_post(App $a) {
        set_config('system', 'curl_timeout', $timeout);
        set_config('system', 'dfrn_only', $dfrn_only);
        set_config('system', 'ostatus_disabled', $ostatus_disabled);
-       set_config('system', 'ostatus_poll_interval', $ostatus_poll_interval);
        set_config('system', 'ostatus_full_threads', $ostatus_full_threads);
        set_config('system', 'diaspora_enabled', $diaspora_enabled);
 
@@ -1164,11 +1171,11 @@ function admin_page_site(App $a) {
                '$info'                 => array('info', t('Additional Info'), $info, sprintf(t('For public servers: you can add additional information here that will be listed at %s/siteinfo.'), get_server())),
                '$language'             => array('language', t("System language"), get_config('system','language'), "", $lang_choices),
                '$theme'                => array('theme', t("System theme"), get_config('system','theme'), t("Default system theme - may be over-ridden by user profiles - <a href='#' id='cnftheme'>change theme settings</a>"), $theme_choices),
-               '$theme_mobile'         => array('theme_mobile', t("Mobile system theme"), get_config('system','mobile-theme'), t("Theme for mobile devices"), $theme_choices_mobile),
+               '$theme_mobile'         => array('theme_mobile', t("Mobile system theme"), Config::get('system', 'mobile-theme', '---'), t("Theme for mobile devices"), $theme_choices_mobile),
                '$ssl_policy'           => array('ssl_policy', t("SSL link policy"), (string) intval(get_config('system','ssl_policy')), t("Determines whether generated links should be forced to use SSL"), $ssl_choices),
                '$force_ssl'            => array('force_ssl', t("Force SSL"), get_config('system','force_ssl'), t("Force all Non-SSL requests to SSL - Attention: on some systems it could lead to endless loops.")),
                '$hide_help'            => array('hide_help', t("Hide help entry from navigation menu"), get_config('system','hide_help'), t("Hides the menu entry for the Help pages from the navigation menu. You can still access it calling /help directly.")),
-               '$singleuser'           => array('singleuser', t("Single user instance"), get_config('system','singleuser'), t("Make this instance multi-user or single-user for the named user"), $user_names),
+               '$singleuser'           => array('singleuser', t("Single user instance"), Config::get('system', 'singleuser', '---'), t("Make this instance multi-user or single-user for the named user"), $user_names),
                '$maximagesize'         => array('maximagesize', t("Maximum image size"), get_config('system','maximagesize'), t("Maximum size in bytes of uploaded images. Default is 0, which means no limits.")),
                '$maximagelength'       => array('maximagelength', t("Maximum image length"), get_config('system','max_image_length'), t("Maximum length in pixels of the longest side of uploaded images. Default is -1, which means no limits.")),
                '$jpegimagequality'     => array('jpegimagequality', t("JPEG image quality"), get_config('system','jpeg_quality'), t("Uploaded JPEGS will be saved at this quality setting [0-100]. Default is 100, which is full quality.")),
@@ -1194,7 +1201,6 @@ function admin_page_site(App $a) {
                '$community_page_style' => array('community_page_style', t("Community Page Style"), get_config('system','community_page_style'), t("Type of community page to show. 'Global community' shows every public posting from an open distributed network that arrived on this server."), $community_page_style_choices),
                '$max_author_posts_community_page' => array('max_author_posts_community_page', t("Posts per user on community page"), get_config('system','max_author_posts_community_page'), t("The maximum number of posts per user on the community page. (Not valid for 'Global Community')")),
                '$ostatus_disabled'     => array('ostatus_disabled', t("Enable OStatus support"), !get_config('system','ostatus_disabled'), t("Provide built-in OStatus \x28StatusNet, GNU Social etc.\x29 compatibility. All communications in OStatus are public, so privacy warnings will be occasionally displayed.")),
-               '$ostatus_poll_interval' => array('ostatus_poll_interval', t("OStatus conversation completion interval"), (string) intval(get_config('system','ostatus_poll_interval')), t("How often shall the poller check for new entries in OStatus conversations? This can be a very ressource task."), $ostatus_poll_choices),
                '$ostatus_full_threads' => array('ostatus_full_threads', t("Only import OStatus threads from our contacts"), get_config('system','ostatus_full_threads'), t("Normally we import every content from our OStatus contacts. With this option we only store threads that are started by a contact that is known on our system.")),
                '$ostatus_not_able'     => t("OStatus support can only be enabled if threading is enabled."),
                '$diaspora_able'        => $diaspora_able,
index 2539360552d20ad487e7127819f2b3c478edf010..eae4141bc9fe1b2294430e3211efa3060ca9f114 100644 (file)
@@ -348,7 +348,16 @@ function _contact_archive($contact_id, $orig_record) {
 function _contact_drop($contact_id, $orig_record) {
        $a = get_app();
 
-       terminate_friendship($a->user,$a->contact,$orig_record);
+       $r = q("SELECT `contact`.*, `user`.* FROM `contact` INNER JOIN `user` ON `contact`.`uid` = `user`.`uid`
+               WHERE `user`.`uid` = %d AND `contact`.`self` LIMIT 1",
+               intval($a->user['uid'])
+       );
+       if (!dbm::is_result($r)) {
+               return;
+       }
+
+       $self = ""; // Unused parameter
+       terminate_friendship($r[0], $self, $orig_record);
        contact_remove($orig_record['id']);
 }
 
index d1448b81db90fba0cebd156385a7d7281082a4f1..ce90eaee9152980c28aef8619339da3dfd2a29bf 100644 (file)
@@ -56,7 +56,8 @@ function fbrowser_content(App $a) {
                                $path[]=array($a->argv[2], $album);
                        }
 
-                       $r = q("SELECT `resource-id`, `id`, `filename`, type, min(`scale`) AS `hiq`,max(`scale`) AS `loq`, `desc`
+                       $r = q("SELECT `resource-id`, ANY_VALUE(`id`) AS `id`, ANY_VALUE(`filename`) AS `filename`, ANY_VALUE(`type`) AS `type`,
+                                       min(`scale`) AS `hiq`, max(`scale`) AS `loq`, ANY_VALUE(`desc`) AS `desc`, ANY_VALUE(`created`) AS `created`
                                        FROM `photo` WHERE `uid` = %d $sql_extra AND `album` != '%s' AND `album` != '%s'
                                        GROUP BY `resource-id` $sql_extra2",
                                intval(local_user()),
index 8b28c1656225cc60dba12e6c0a38c6b9c45f528a..68fc7f69fe962143346fc92bff02f82cf35c5f27 100644 (file)
@@ -17,11 +17,11 @@ function receive_post(App $a) {
                http_status_exit(500);
        }
 
-       $public = false;
-
        if (($a->argc == 2) && ($a->argv[1] === 'public')) {
                $public = true;
+               $importer = false;
        } else {
+               $public = false;
 
                if ($a->argc != 3 || $a->argv[1] !== 'users') {
                        http_status_exit(500);
@@ -49,8 +49,13 @@ function receive_post(App $a) {
                logger('mod-diaspora: message is in the new format', LOGGER_DEBUG);
                $msg = Diaspora::decode_raw($importer, $postdata);
        } else {
-               logger('mod-diaspora: message is in the old format', LOGGER_DEBUG);
+               logger('mod-diaspora: decode message in the old format', LOGGER_DEBUG);
                $msg = Diaspora::decode($importer, $xml);
+
+               if ($public && !$msg) {
+                       logger('mod-diaspora: decode message in the new format', LOGGER_DEBUG);
+                       $msg = Diaspora::decode_raw($importer, $xml);
+               }
        }
 
        logger('mod-diaspora: decoded', LOGGER_DEBUG);
index d0baf87c441da88f338edb8531a63b66f5a07c63..8ee96a14c829e1b5e47e6baf1e98736f0d400464 100644 (file)
@@ -32,7 +32,7 @@ function unfollow_post(App $a) {
        if (!dbm::is_result($contact)) {
                notice(t("Contact wasn't found or can't be unfollowed."));
        } else {
-               if (in_array($contact['network'], array(NETWORK_OSTATUS))) {
+               if (in_array($contact['network'], array(NETWORK_OSTATUS, NETWORK_DIASPORA))) {
                        $r = q("SELECT `contact`.*, `user`.* FROM `contact` INNER JOIN `user` ON `contact`.`uid` = `user`.`uid`
                                WHERE `user`.`uid` = %d AND `contact`.`self` LIMIT 1",
                                intval($uid)
index 816406e4eb866dfe1ae644cc5cdc64a0e8321de7..4f89ea804c92eac4cdf3361a16a890b7e2e262ec 100644 (file)
@@ -96,7 +96,12 @@ class Item extends BaseObject {
 
                $item = $this->get_data();
                $edited = false;
-               if (strcmp($item['created'], $item['edited'])<>0) {
+               // If the time between "created" and "edited" differs we add
+               // a notice that the post was edited.
+               // Note: In some networks reshared items seem to have (sometimes) a difference
+               // between creation time and edit time of a second. Thats why we add the notice
+               // only if the difference is more than 1 second.
+               if (strtotime($item['edited']) - strtotime($item['created']) > 1) {
                        $edited = array(
                                'label'    => t('This entry was edited'),
                                'date'     => datetime_convert('UTC', date_default_timezone_get(), $item['edited'], 'r'),
index 431ff5bf75be3ae9dd4957a395721333781d1801..d27ce18512847eedc337c6e18b04da1b241f4084 100644 (file)
@@ -306,7 +306,7 @@ class Probe {
         *
         * @return array uri data
         */
-       public static function uri($uri, $network = "", $uid = 0, $cache = true) {
+       public static function uri($uri, $network = "", $uid = -1, $cache = true) {
 
                if ($cache) {
                        $result = Cache::get("probe_url:".$network.":".$uri);
@@ -315,7 +315,7 @@ class Probe {
                        }
                }
 
-               if ($uid == 0) {
+               if ($uid == -1) {
                        $uid = local_user();
                }
 
@@ -1483,25 +1483,27 @@ class Probe {
                        return false;
                }
 
-               $x = q("SELECT `prvkey` FROM `user` WHERE `uid` = %d LIMIT 1", intval($uid));
+               if ($uid != 0) {
+                       $x = q("SELECT `prvkey` FROM `user` WHERE `uid` = %d LIMIT 1", intval($uid));
 
-               $r = q("SELECT * FROM `mailacct` WHERE `uid` = %d AND `server` != '' LIMIT 1", intval($uid));
+                       $r = q("SELECT * FROM `mailacct` WHERE `uid` = %d AND `server` != '' LIMIT 1", intval($uid));
 
-               if (dbm::is_result($x) && dbm::is_result($r)) {
-                       $mailbox = construct_mailbox_name($r[0]);
-                       $password = '';
-                       openssl_private_decrypt(hex2bin($r[0]['pass']), $password, $x[0]['prvkey']);
-                       $mbox = email_connect($mailbox, $r[0]['user'], $password);
-                       if (!mbox) {
-                               return false;
+                       if (dbm::is_result($x) && dbm::is_result($r)) {
+                               $mailbox = construct_mailbox_name($r[0]);
+                               $password = '';
+                               openssl_private_decrypt(hex2bin($r[0]['pass']), $password, $x[0]['prvkey']);
+                               $mbox = email_connect($mailbox, $r[0]['user'], $password);
+                               if (!mbox) {
+                                       return false;
+                               }
                        }
-               }
 
-               $msgs = email_poll($mbox, $uri);
-               logger('searching '.$uri.', '.count($msgs).' messages found.', LOGGER_DEBUG);
+                       $msgs = email_poll($mbox, $uri);
+                       logger('searching '.$uri.', '.count($msgs).' messages found.', LOGGER_DEBUG);
 
-               if (!count($msgs)) {
-                       return false;
+                       if (!count($msgs)) {
+                               return false;
+                       }
                }
 
                $phost = substr($uri, strpos($uri, '@') + 1);
@@ -1512,7 +1514,7 @@ class Probe {
                $data["name"]    = substr($uri, 0, strpos($uri, '@'));
                $data["nick"]    = $data["name"];
                $data["photo"]   = avatar_img($uri);
-               $data["url"]     = 'http://'.$phost."/".$data["nick"];
+               $data["url"]     = 'mailto:'.$uri;
                $data["notify"]  = 'smtp '.random_string();
                $data["poll"]    = 'email '.random_string();
 
@@ -1542,7 +1544,9 @@ class Probe {
                                }
                        }
                }
-               imap_close($mbox);
+               if (!empty($mbox)) {
+                       imap_close($mbox);
+               }
 
                return $data;
        }
index 93c6d3510099ab18aea9ac56620a90a115983f99..8cd38066d1ea7889dc26332e794d97e0394a987f 100644 (file)
@@ -76,7 +76,8 @@ class Lock {
                $got_lock = false;
                $start = time();
 
-               if (function_exists('sem_get')) {
+               // The second parameter for "sem_acquire" doesn't exist before 5.6.1
+               if (function_exists('sem_get') && version_compare(PHP_VERSION, '5.6.1', '>=')) {
                        self::$semaphore[$fn_name] = sem_get(self::semaphoreKey($fn_name));
                        if (self::$semaphore[$fn_name]) {
                                return sem_acquire(self::$semaphore[$fn_name], ($timeout == 0));
@@ -156,7 +157,7 @@ class Lock {
         * @param string $fn_name Name of the lock
         */
        public static function remove($fn_name) {
-               if (function_exists('sem_get')) {
+               if (function_exists('sem_get') && version_compare(PHP_VERSION, '5.6.1', '>=')) {
                        if (empty(self::$semaphore[$fn_name])) {
                                return false;
                        } else {
index f6f79dac1e5dfb8d5ca56b3c5a40b415bf335763..b0046f17a7f4ce4601d60c8e22d06e5f5d161594 100644 (file)
@@ -1729,8 +1729,3 @@ function update_1202() {
        $r = q("UPDATE `user` SET `account-type` = %d WHERE `page-flags` IN (%d, %d)",
                dbesc(ACCOUNT_TYPE_COMMUNITY), dbesc(PAGE_COMMUNITY), dbesc(PAGE_PRVGROUP));
 }
-
-function update_1231() {
-       // For this special case we have to use the old update routine
-       $r = q("ALTER TABLE `workerqueue` ADD `done` tinyint(1) NOT NULL DEFAULT 0");
-}
index fc36e12a7b5d45a47f11f1fa0553b309a96f239e..9c6eca3707dcabd6915e7faf0a4aa6b5eb10028a 100644 (file)
@@ -125,6 +125,7 @@ Michael Vogel
 Michal Šupler
 Michalina
 Mike Macgirvin
+mytbk
 Nicola Spanti
 Olaf Conradi
 Oliver
index 1e717e98759335166c1c2157db3c95ac4adad609..5b31080506ed7093bdab14b4e754e1ee8032b6d4 100644 (file)
@@ -29,7 +29,6 @@ echo "New DB VERSION: " . DB_UPDATE_VERSION . "\n";
 
 if ($build != DB_UPDATE_VERSION) {
        echo "Updating database...";
-       check_db($a);
+       update_db($a);
        echo "Done\n";
 }
-
index 675918eb2f426e4bf07ea5cea5ca9f2cf7984b4d..b702b68e804220de023301cd09598332040952a4 100644 (file)
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2017-09-15 10:07+0200\n"
+"POT-Creation-Date: 2017-10-01 08:52+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"
@@ -105,7 +105,7 @@ msgstr ""
 msgid "Enable widget to display Network posts only from selected network"
 msgstr ""
 
-#: include/features.php:86 mod/search.php:37 mod/network.php:194
+#: include/features.php:86 mod/network.php:194 mod/search.php:37
 msgid "Saved Searches"
 msgstr ""
 
@@ -217,7 +217,7 @@ msgstr ""
 msgid "Show visitors public community forums at the Advanced Profile Page"
 msgstr ""
 
-#: include/datetime.php:66 include/datetime.php:68 mod/profiles.php:702
+#: include/datetime.php:66 include/datetime.php:68 mod/profiles.php:696
 msgid "Miscellaneous"
 msgstr ""
 
@@ -225,7 +225,7 @@ msgstr ""
 msgid "Birthday:"
 msgstr ""
 
-#: include/datetime.php:198 mod/profiles.php:725
+#: include/datetime.php:198 mod/profiles.php:719
 msgid "Age: "
 msgstr ""
 
@@ -549,18 +549,11 @@ msgstr ""
 msgid "Ask me"
 msgstr ""
 
-#: include/dba_pdo.php:75 include/dba.php:61
+#: include/dba_pdo.php:75 include/dba.php:56
 #, php-format
 msgid "Cannot locate DNS info for database server '%s'"
 msgstr ""
 
-#: include/photos.php:57 include/photos.php:66 mod/fbrowser.php:43
-#: mod/fbrowser.php:64 mod/photos.php:190 mod/photos.php:1126
-#: mod/photos.php:1259 mod/photos.php:1280 mod/photos.php:1842
-#: mod/photos.php:1856
-msgid "Contact Photos"
-msgstr ""
-
 #: include/acl_selectors.php:355
 msgid "Post to Email"
 msgstr ""
@@ -570,7 +563,7 @@ msgstr ""
 msgid "Connectors disabled, since \"%s\" is enabled."
 msgstr ""
 
-#: include/acl_selectors.php:361 mod/settings.php:1190
+#: include/acl_selectors.php:361 mod/settings.php:1185
 msgid "Hide your profile details from unknown viewers?"
 msgstr ""
 
@@ -627,19 +620,19 @@ msgstr ""
 msgid "Reputable, has my trust"
 msgstr ""
 
-#: include/contact_selectors.php:56 mod/admin.php:1072
+#: include/contact_selectors.php:56 mod/admin.php:1079
 msgid "Frequently"
 msgstr ""
 
-#: include/contact_selectors.php:57 mod/admin.php:1073
+#: include/contact_selectors.php:57 mod/admin.php:1080
 msgid "Hourly"
 msgstr ""
 
-#: include/contact_selectors.php:58 mod/admin.php:1074
+#: include/contact_selectors.php:58 mod/admin.php:1081
 msgid "Twice daily"
 msgstr ""
 
-#: include/contact_selectors.php:59 mod/admin.php:1075
+#: include/contact_selectors.php:59 mod/admin.php:1082
 msgid "Daily"
 msgstr ""
 
@@ -664,12 +657,12 @@ msgid "RSS/Atom"
 msgstr ""
 
 #: include/contact_selectors.php:79 include/contact_selectors.php:86
-#: mod/admin.php:1582 mod/admin.php:1595 mod/admin.php:1608 mod/admin.php:1626
+#: mod/admin.php:1588 mod/admin.php:1601 mod/admin.php:1614 mod/admin.php:1632
 msgid "Email"
 msgstr ""
 
 #: include/contact_selectors.php:80 mod/dfrn_request.php:889
-#: mod/settings.php:850
+#: mod/settings.php:845
 msgid "Diaspora"
 msgstr ""
 
@@ -768,59 +761,6 @@ msgstr ""
 msgid "add"
 msgstr ""
 
-#: include/Contact.php:381 include/Contact.php:394 include/Contact.php:439
-#: include/conversation.php:1013 include/conversation.php:1029
-#: mod/allfriends.php:71 mod/directory.php:153 mod/dirfind.php:212
-#: mod/match.php:77 mod/suggest.php:85
-msgid "View Profile"
-msgstr ""
-
-#: include/Contact.php:395 include/contact_widgets.php:39
-#: include/conversation.php:1026 mod/allfriends.php:72 mod/contacts.php:580
-#: mod/dirfind.php:213 mod/follow.php:143 mod/match.php:78 mod/suggest.php:86
-msgid "Connect/Follow"
-msgstr ""
-
-#: include/Contact.php:438 include/conversation.php:1012
-msgid "View Status"
-msgstr ""
-
-#: include/Contact.php:440 include/conversation.php:1014
-msgid "View Photos"
-msgstr ""
-
-#: include/Contact.php:441 include/conversation.php:1015
-msgid "Network Posts"
-msgstr ""
-
-#: include/Contact.php:442 include/conversation.php:1016
-msgid "View Contact"
-msgstr ""
-
-#: include/Contact.php:443
-msgid "Drop Contact"
-msgstr ""
-
-#: include/Contact.php:444 include/conversation.php:1017
-msgid "Send PM"
-msgstr ""
-
-#: include/Contact.php:445 include/conversation.php:1021
-msgid "Poke"
-msgstr ""
-
-#: include/Contact.php:814
-msgid "Organisation"
-msgstr ""
-
-#: include/Contact.php:817
-msgid "News"
-msgstr ""
-
-#: include/Contact.php:820
-msgid "Forum"
-msgstr ""
-
 #: include/ForumManager.php:119 include/nav.php:134 include/text.php:1104
 #: view/theme/vier/theme.php:249
 msgid "Forums"
@@ -831,7 +771,7 @@ msgid "External link to forum"
 msgstr ""
 
 #: include/ForumManager.php:124 include/contact_widgets.php:272
-#: include/items.php:2398 mod/content.php:626 object/Item.php:412
+#: include/items.php:2407 mod/content.php:626 object/Item.php:417
 #: view/theme/vier/theme.php:254 src/App.php:524
 msgid "show more"
 msgstr ""
@@ -846,7 +786,7 @@ msgid "Network"
 msgstr ""
 
 #: include/NotificationsManager.php:171 mod/network.php:911
-#: mod/profiles.php:700
+#: mod/profiles.php:694
 msgid "Personal"
 msgstr ""
 
@@ -910,36 +850,6 @@ msgstr ""
 msgid "New Follower"
 msgstr ""
 
-#: include/Photo.php:1076 include/Photo.php:1092 include/Photo.php:1100
-#: include/Photo.php:1125 include/message.php:146 mod/item.php:469
-#: mod/wall_upload.php:250
-msgid "Wall Photos"
-msgstr ""
-
-#: include/api.php:1103
-#, php-format
-msgid "Daily posting limit of %d posts reached. The post was rejected."
-msgstr ""
-
-#: include/api.php:1124
-#, php-format
-msgid "Weekly posting limit of %d posts reached. The post was rejected."
-msgstr ""
-
-#: include/api.php:1145
-#, php-format
-msgid "Monthly posting limit of %d posts reached. The post was rejected."
-msgstr ""
-
-#: include/api.php:3717 include/user.php:308 include/user.php:316
-#: include/user.php:324 mod/photos.php:74 mod/photos.php:190 mod/photos.php:777
-#: mod/photos.php:1259 mod/photos.php:1280 mod/photos.php:1866
-#: mod/profile_photo.php:75 mod/profile_photo.php:83 mod/profile_photo.php:91
-#: mod/profile_photo.php:215 mod/profile_photo.php:310
-#: mod/profile_photo.php:320
-msgid "Profile Photos"
-msgstr ""
-
 #: include/auth.php:53
 msgid "Logged out."
 msgstr ""
@@ -973,8 +883,8 @@ msgid "Finishes:"
 msgstr ""
 
 #: include/bb2diaspora.php:257 include/event.php:44 include/event.php:70
-#: include/event.php:462 include/identity.php:339 mod/contacts.php:648
-#: mod/directory.php:135 mod/events.php:497 mod/notifications.php:247
+#: include/event.php:462 include/identity.php:339 mod/directory.php:135
+#: mod/events.php:497 mod/notifications.php:247 mod/contacts.php:657
 msgid "Location:"
 msgstr ""
 
@@ -1017,7 +927,7 @@ msgstr ""
 
 #: include/contact_widgets.php:16 include/identity.php:229
 #: mod/allfriends.php:88 mod/dirfind.php:210 mod/match.php:93
-#: mod/suggest.php:104
+#: mod/suggest.php:101
 msgid "Connect"
 msgstr ""
 
@@ -1036,15 +946,21 @@ msgstr ""
 msgid "Enter name or interest"
 msgstr ""
 
+#: include/contact_widgets.php:39 include/conversation.php:1026
+#: include/Contact.php:415 mod/allfriends.php:72 mod/dirfind.php:213
+#: mod/follow.php:143 mod/match.php:78 mod/suggest.php:83 mod/contacts.php:589
+msgid "Connect/Follow"
+msgstr ""
+
 #: include/contact_widgets.php:40
 msgid "Examples: Robert Morgenstein, Fishing"
 msgstr ""
 
-#: include/contact_widgets.php:41 mod/contacts.php:818 mod/directory.php:202
+#: include/contact_widgets.php:41 mod/directory.php:202 mod/contacts.php:827
 msgid "Find"
 msgstr ""
 
-#: include/contact_widgets.php:42 mod/suggest.php:117
+#: include/contact_widgets.php:42 mod/suggest.php:114
 #: view/theme/vier/theme.php:196
 msgid "Friend Suggestions"
 msgstr ""
@@ -1095,7 +1011,7 @@ msgstr ""
 
 #: include/conversation.php:138 include/conversation.php:148
 #: include/conversation.php:290 include/conversation.php:299
-#: include/diaspora.php:1663 include/like.php:182 mod/subthread.php:90
+#: include/like.php:182 include/diaspora.php:1695 mod/subthread.php:90
 #: mod/tagger.php:64
 msgid "status"
 msgstr ""
@@ -1106,7 +1022,7 @@ msgstr ""
 msgid "photo"
 msgstr ""
 
-#: include/conversation.php:155 include/diaspora.php:1659 include/like.php:31
+#: include/conversation.php:155 include/like.php:31 include/diaspora.php:1691
 #, php-format
 msgid "%1$s likes %2$s's %3$s"
 msgstr ""
@@ -1161,12 +1077,12 @@ msgid "%1$s marked %2$s's %3$s as favorite"
 msgstr ""
 
 #: include/conversation.php:615 mod/content.php:374 mod/photos.php:1665
-#: mod/profiles.php:345
+#: mod/profiles.php:339
 msgid "Likes"
 msgstr ""
 
 #: include/conversation.php:615 mod/content.php:374 mod/photos.php:1665
-#: mod/profiles.php:349
+#: mod/profiles.php:343
 msgid "Dislikes"
 msgstr ""
 
@@ -1186,32 +1102,32 @@ msgid "Might attend"
 msgstr ""
 
 #: include/conversation.php:753 mod/content.php:455 mod/content.php:761
-#: mod/photos.php:1731 object/Item.php:142
+#: mod/photos.php:1731 object/Item.php:147
 msgid "Select"
 msgstr ""
 
-#: include/conversation.php:754 mod/admin.php:1600 mod/contacts.php:828
-#: mod/contacts.php:1027 mod/content.php:456 mod/content.php:762
-#: mod/photos.php:1732 mod/settings.php:746 object/Item.php:143
+#: include/conversation.php:754 mod/content.php:456 mod/content.php:762
+#: mod/photos.php:1732 mod/settings.php:741 mod/admin.php:1606
+#: mod/contacts.php:837 mod/contacts.php:1036 object/Item.php:148
 msgid "Delete"
 msgstr ""
 
 #: include/conversation.php:797 mod/content.php:489 mod/content.php:917
-#: mod/content.php:918 object/Item.php:345 object/Item.php:346
+#: mod/content.php:918 object/Item.php:350 object/Item.php:351
 #, php-format
 msgid "View %s's profile @ %s"
 msgstr ""
 
-#: include/conversation.php:809 object/Item.php:333
+#: include/conversation.php:809 object/Item.php:338
 msgid "Categories:"
 msgstr ""
 
-#: include/conversation.php:810 object/Item.php:334
+#: include/conversation.php:810 object/Item.php:339
 msgid "Filed under:"
 msgstr ""
 
 #: include/conversation.php:817 mod/content.php:499 mod/content.php:930
-#: object/Item.php:359
+#: object/Item.php:364
 #, php-format
 msgid "%s from %s"
 msgstr ""
@@ -1222,8 +1138,8 @@ msgstr ""
 
 #: include/conversation.php:835 include/conversation.php:1307
 #: mod/content.php:517 mod/content.php:955 mod/editpost.php:117
-#: mod/message.php:337 mod/message.php:522 mod/photos.php:1630
-#: mod/wallmessage.php:143 object/Item.php:384
+#: mod/message.php:337 mod/message.php:522 mod/wallmessage.php:143
+#: mod/photos.php:1630 object/Item.php:389
 msgid "Please wait"
 msgstr ""
 
@@ -1239,6 +1155,37 @@ msgstr ""
 msgid "Follow Thread"
 msgstr ""
 
+#: include/conversation.php:1012 include/Contact.php:458
+msgid "View Status"
+msgstr ""
+
+#: include/conversation.php:1013 include/conversation.php:1029
+#: include/Contact.php:401 include/Contact.php:414 include/Contact.php:459
+#: mod/allfriends.php:71 mod/directory.php:153 mod/dirfind.php:212
+#: mod/match.php:77 mod/suggest.php:82
+msgid "View Profile"
+msgstr ""
+
+#: include/conversation.php:1014 include/Contact.php:460
+msgid "View Photos"
+msgstr ""
+
+#: include/conversation.php:1015 include/Contact.php:461
+msgid "Network Posts"
+msgstr ""
+
+#: include/conversation.php:1016 include/Contact.php:462
+msgid "View Contact"
+msgstr ""
+
+#: include/conversation.php:1017 include/Contact.php:464
+msgid "Send PM"
+msgstr ""
+
+#: include/conversation.php:1021 include/Contact.php:465
+msgid "Poke"
+msgstr ""
+
 #: include/conversation.php:1148
 #, php-format
 msgid "%s likes this."
@@ -1441,16 +1388,16 @@ msgstr ""
 
 #: include/conversation.php:1322 mod/content.php:739 mod/editpost.php:138
 #: mod/events.php:507 mod/photos.php:1650 mod/photos.php:1692
-#: mod/photos.php:1772 object/Item.php:706
+#: mod/photos.php:1772 object/Item.php:711
 msgid "Preview"
 msgstr ""
 
-#: include/conversation.php:1326 include/items.php:2139 mod/contacts.php:459
-#: mod/dfrn_request.php:895 mod/editpost.php:141 mod/fbrowser.php:103
-#: mod/fbrowser.php:138 mod/follow.php:161 mod/message.php:210
-#: mod/photos.php:248 mod/photos.php:340 mod/settings.php:684
-#: mod/settings.php:710 mod/suggest.php:35 mod/tagrm.php:14 mod/tagrm.php:99
-#: mod/unfollow.php:117 mod/videos.php:135
+#: include/conversation.php:1326 include/items.php:2148
+#: mod/dfrn_request.php:895 mod/editpost.php:141 mod/follow.php:161
+#: mod/message.php:210 mod/tagrm.php:14 mod/tagrm.php:99 mod/videos.php:135
+#: mod/photos.php:248 mod/photos.php:340 mod/settings.php:679
+#: mod/settings.php:705 mod/suggest.php:35 mod/contacts.php:468
+#: mod/fbrowser.php:104 mod/fbrowser.php:139 mod/unfollow.php:117
 msgid "Cancel"
 msgstr ""
 
@@ -1547,19 +1494,6 @@ msgstr ""
 msgid "noreply"
 msgstr ""
 
-#: include/dfrn.php:1331
-#, php-format
-msgid "%s\\'s birthday"
-msgstr ""
-
-#: include/diaspora.php:2226
-msgid "Sharing notification from Diaspora network"
-msgstr ""
-
-#: include/diaspora.php:3183
-msgid "Attachments:"
-msgstr ""
-
 #: include/enotify.php:28
 msgid "Friendica Notification"
 msgstr ""
@@ -1884,11 +1818,11 @@ msgstr ""
 msgid "Sat"
 msgstr ""
 
-#: include/event.php:419 include/text.php:1207 mod/settings.php:983
+#: include/event.php:419 include/text.php:1207 mod/settings.php:978
 msgid "Sunday"
 msgstr ""
 
-#: include/event.php:420 include/text.php:1207 mod/settings.php:983
+#: include/event.php:420 include/text.php:1207 mod/settings.php:978
 msgid "Monday"
 msgstr ""
 
@@ -2040,66 +1974,6 @@ msgstr ""
 msgid "Export calendar as csv"
 msgstr ""
 
-#: include/follow.php:85 mod/dfrn_request.php:515
-msgid "Disallowed profile URL."
-msgstr ""
-
-#: include/follow.php:90 mod/admin.php:289 mod/admin.php:307
-#: mod/dfrn_request.php:521 mod/friendica.php:116
-msgid "Blocked domain"
-msgstr ""
-
-#: include/follow.php:95
-msgid "Connect URL missing."
-msgstr ""
-
-#: include/follow.php:123
-msgid ""
-"This site is not configured to allow communications with other networks."
-msgstr ""
-
-#: include/follow.php:124 include/follow.php:138
-msgid "No compatible communication protocols or feeds were discovered."
-msgstr ""
-
-#: include/follow.php:136
-msgid "The profile address specified does not provide adequate information."
-msgstr ""
-
-#: include/follow.php:141
-msgid "An author or name was not found."
-msgstr ""
-
-#: include/follow.php:144
-msgid "No browser URL could be matched to this address."
-msgstr ""
-
-#: include/follow.php:147
-msgid ""
-"Unable to match @-style Identity Address with a known protocol or email "
-"contact."
-msgstr ""
-
-#: include/follow.php:148
-msgid "Use mailto: in front of address to force email check."
-msgstr ""
-
-#: include/follow.php:154
-msgid ""
-"The profile address specified belongs to a network which has been disabled "
-"on this site."
-msgstr ""
-
-#: include/follow.php:159
-msgid ""
-"Limited profile. This person will be unable to receive direct/personal "
-"notifications from you."
-msgstr ""
-
-#: include/follow.php:260
-msgid "Unable to retrieve contact information."
-msgstr ""
-
 #: include/identity.php:46
 msgid "Requested account is not available."
 msgstr ""
@@ -2124,23 +1998,23 @@ msgstr ""
 msgid "Manage/edit profiles"
 msgstr ""
 
-#: include/identity.php:298 include/identity.php:324 mod/profiles.php:791
+#: include/identity.php:298 include/identity.php:324 mod/profiles.php:785
 msgid "Change profile photo"
 msgstr ""
 
-#: include/identity.php:299 mod/profiles.php:792
+#: include/identity.php:299 mod/profiles.php:786
 msgid "Create New Profile"
 msgstr ""
 
-#: include/identity.php:309 mod/profiles.php:781
+#: include/identity.php:309 mod/profiles.php:775
 msgid "Profile Image"
 msgstr ""
 
-#: include/identity.php:312 mod/profiles.php:783
+#: include/identity.php:312 mod/profiles.php:777
 msgid "visible to everybody"
 msgstr ""
 
-#: include/identity.php:313 mod/profiles.php:688 mod/profiles.php:784
+#: include/identity.php:313 mod/profiles.php:682 mod/profiles.php:778
 msgid "Edit visibility"
 msgstr ""
 
@@ -2157,16 +2031,16 @@ msgstr ""
 msgid "Homepage:"
 msgstr ""
 
-#: include/identity.php:348 include/identity.php:702 mod/contacts.php:652
-#: mod/directory.php:143 mod/notifications.php:249
+#: include/identity.php:348 include/identity.php:702 mod/directory.php:143
+#: mod/notifications.php:249 mod/contacts.php:661
 msgid "About:"
 msgstr ""
 
-#: include/identity.php:350 mod/contacts.php:650
+#: include/identity.php:350 mod/contacts.php:659
 msgid "XMPP:"
 msgstr ""
 
-#: include/identity.php:436 mod/contacts.php:59 mod/notifications.php:261
+#: include/identity.php:436 mod/notifications.php:261 mod/contacts.php:59
 msgid "Network:"
 msgstr ""
 
@@ -2204,11 +2078,11 @@ msgstr ""
 
 #: include/identity.php:630 include/identity.php:759 include/identity.php:792
 #: include/nav.php:85 mod/newmember.php:20 mod/profperm.php:107
-#: mod/contacts.php:659 mod/contacts.php:861 view/theme/frio/theme.php:254
+#: mod/contacts.php:668 mod/contacts.php:870 view/theme/frio/theme.php:254
 msgid "Profile"
 msgstr ""
 
-#: include/identity.php:639 mod/settings.php:1288
+#: include/identity.php:639 mod/settings.php:1283
 msgid "Full Name:"
 msgstr ""
 
@@ -2229,20 +2103,20 @@ msgstr ""
 msgid "for %1$d %2$s"
 msgstr ""
 
-#: include/identity.php:678 mod/profiles.php:707
+#: include/identity.php:678 mod/profiles.php:701
 msgid "Sexual Preference:"
 msgstr ""
 
-#: include/identity.php:686 mod/profiles.php:734
+#: include/identity.php:686 mod/profiles.php:728
 msgid "Hometown:"
 msgstr ""
 
-#: include/identity.php:690 mod/contacts.php:654 mod/follow.php:174
-#: mod/notifications.php:251
+#: include/identity.php:690 mod/follow.php:174 mod/notifications.php:251
+#: mod/contacts.php:663
 msgid "Tags:"
 msgstr ""
 
-#: include/identity.php:694 mod/profiles.php:735
+#: include/identity.php:694 mod/profiles.php:729
 msgid "Political Views:"
 msgstr ""
 
@@ -2254,11 +2128,11 @@ msgstr ""
 msgid "Hobbies/Interests:"
 msgstr ""
 
-#: include/identity.php:710 mod/profiles.php:739
+#: include/identity.php:710 mod/profiles.php:733
 msgid "Likes:"
 msgstr ""
 
-#: include/identity.php:714 mod/profiles.php:740
+#: include/identity.php:714 mod/profiles.php:734
 msgid "Dislikes:"
 msgstr ""
 
@@ -2302,22 +2176,22 @@ msgstr ""
 msgid "Basic"
 msgstr ""
 
-#: include/identity.php:761 mod/admin.php:1151 mod/contacts.php:890
-#: mod/events.php:511
+#: include/identity.php:761 mod/events.php:511 mod/admin.php:1158
+#: mod/contacts.php:899
 msgid "Advanced"
 msgstr ""
 
-#: include/identity.php:784 include/nav.php:84 mod/contacts.php:657
-#: mod/contacts.php:853 view/theme/frio/theme.php:253
+#: include/identity.php:784 include/nav.php:84 mod/contacts.php:666
+#: mod/contacts.php:862 view/theme/frio/theme.php:253
 msgid "Status"
 msgstr ""
 
-#: include/identity.php:787 mod/contacts.php:856 mod/follow.php:182
+#: include/identity.php:787 mod/follow.php:182 mod/contacts.php:865
 #: mod/unfollow.php:133
 msgid "Status Messages and Posts"
 msgstr ""
 
-#: include/identity.php:795 mod/contacts.php:864
+#: include/identity.php:795 mod/contacts.php:873
 msgid "Profile Details"
 msgstr ""
 
@@ -2356,62 +2230,10 @@ msgstr ""
 
 #: include/identity.php:853 include/identity.php:856 include/nav.php:131
 #: include/nav.php:195 include/text.php:1101 mod/viewcontacts.php:124
-#: mod/contacts.php:812 mod/contacts.php:873 view/theme/frio/theme.php:264
+#: mod/contacts.php:821 mod/contacts.php:882 view/theme/frio/theme.php:264
 msgid "Contacts"
 msgstr ""
 
-#: include/items.php:1715 mod/dfrn_confirm.php:738 mod/dfrn_request.php:760
-msgid "[Name Withheld]"
-msgstr ""
-
-#: include/items.php:2091 mod/viewsrc.php:16 mod/admin.php:257
-#: mod/admin.php:1657 mod/admin.php:1908 mod/display.php:122
-#: mod/display.php:291 mod/display.php:496 mod/notice.php:18
-msgid "Item not found."
-msgstr ""
-
-#: include/items.php:2134
-msgid "Do you really want to delete this item?"
-msgstr ""
-
-#: include/items.php:2136 mod/api.php:107 mod/contacts.php:456
-#: mod/dfrn_request.php:881 mod/follow.php:150 mod/message.php:207
-#: mod/profiles.php:644 mod/profiles.php:647 mod/profiles.php:674
-#: mod/register.php:249 mod/settings.php:1173 mod/settings.php:1179
-#: mod/settings.php:1186 mod/settings.php:1190 mod/settings.php:1195
-#: mod/settings.php:1200 mod/settings.php:1205 mod/settings.php:1210
-#: mod/settings.php:1236 mod/settings.php:1237 mod/settings.php:1238
-#: mod/settings.php:1239 mod/settings.php:1240 mod/suggest.php:32
-msgid "Yes"
-msgstr ""
-
-#: include/items.php:2275 mod/api.php:28 mod/api.php:33 mod/attach.php:35
-#: mod/common.php:20 mod/crepair.php:105 mod/fsuggest.php:80 mod/nogroup.php:29
-#: mod/notes.php:25 mod/viewcontacts.php:49 mod/wall_attach.php:69
-#: mod/wall_attach.php:72 mod/uimport.php:26 mod/allfriends.php:15
-#: mod/cal.php:302 mod/contacts.php:364 mod/delegate.php:15
-#: mod/dfrn_confirm.php:64 mod/dirfind.php:16 mod/display.php:493
-#: mod/editpost.php:13 mod/events.php:189 mod/follow.php:14 mod/follow.php:55
-#: mod/follow.php:118 mod/group.php:21 mod/invite.php:18 mod/invite.php:106
-#: mod/item.php:198 mod/item.php:210 mod/manage.php:104 mod/message.php:49
-#: mod/message.php:172 mod/mood.php:117 mod/network.php:17
-#: mod/notifications.php:74 mod/ostatus_subscribe.php:12 mod/photos.php:169
-#: mod/photos.php:1112 mod/poke.php:156 mod/profile_photo.php:20
-#: mod/profile_photo.php:180 mod/profile_photo.php:191
-#: mod/profile_photo.php:204 mod/profiles.php:173 mod/profiles.php:611
-#: mod/register.php:46 mod/regmod.php:107 mod/repair_ostatus.php:12
-#: mod/settings.php:25 mod/settings.php:133 mod/settings.php:670
-#: mod/suggest.php:61 mod/unfollow.php:14 mod/unfollow.php:57
-#: mod/unfollow.php:90 mod/wall_upload.php:102 mod/wall_upload.php:105
-#: mod/wallmessage.php:12 mod/wallmessage.php:36 mod/wallmessage.php:76
-#: mod/wallmessage.php:100 index.php:411
-msgid "Permission denied."
-msgstr ""
-
-#: include/items.php:2392
-msgid "Archives"
-msgstr ""
-
 #: include/like.php:45
 #, php-format
 msgid "%1$s is attending %2$s's %3$s"
@@ -2427,10 +2249,6 @@ msgstr ""
 msgid "%1$s may attend %2$s's %3$s"
 msgstr ""
 
-#: include/message.php:15 include/message.php:169
-msgid "[no subject]"
-msgstr ""
-
 #: include/nav.php:38 mod/navigation.php:22
 msgid "Nothing new here"
 msgstr ""
@@ -2443,7 +2261,7 @@ msgstr ""
 msgid "@name, !forum, #tags, content"
 msgstr ""
 
-#: include/nav.php:81 view/theme/frio/theme.php:250 boot.php:860
+#: include/nav.php:81 view/theme/frio/theme.php:250 boot.php:869
 msgid "Logout"
 msgstr ""
 
@@ -2479,7 +2297,7 @@ msgstr ""
 msgid "Your personal notes"
 msgstr ""
 
-#: include/nav.php:98 mod/bookmarklet.php:15 boot.php:861
+#: include/nav.php:98 mod/bookmarklet.php:15 boot.php:870
 msgid "Login"
 msgstr ""
 
@@ -2491,7 +2309,7 @@ msgstr ""
 msgid "Home Page"
 msgstr ""
 
-#: include/nav.php:112 mod/register.php:293 boot.php:837
+#: include/nav.php:112 mod/register.php:293 boot.php:846
 msgid "Register"
 msgstr ""
 
@@ -2515,7 +2333,7 @@ msgstr ""
 msgid "Addon applications, utilities, games"
 msgstr ""
 
-#: include/nav.php:126 include/text.php:1091 mod/search.php:152
+#: include/nav.php:126 include/text.php:1091 mod/search.php:145
 msgid "Search"
 msgstr ""
 
@@ -2583,7 +2401,7 @@ msgstr ""
 msgid "See all notifications"
 msgstr ""
 
-#: include/nav.php:174 mod/settings.php:908
+#: include/nav.php:174 mod/settings.php:903
 msgid "Mark as seen"
 msgstr ""
 
@@ -2623,12 +2441,12 @@ msgstr ""
 msgid "Delegations"
 msgstr ""
 
-#: include/nav.php:187 mod/delegate.php:133
+#: include/nav.php:187 mod/delegate.php:130
 msgid "Delegate Page Management"
 msgstr ""
 
-#: include/nav.php:189 mod/newmember.php:15 mod/admin.php:1710
-#: mod/admin.php:1986 mod/settings.php:114 view/theme/frio/theme.php:263
+#: include/nav.php:189 mod/newmember.php:15 mod/settings.php:114
+#: mod/admin.php:1716 mod/admin.php:1992 view/theme/frio/theme.php:263
 msgid "Settings"
 msgstr ""
 
@@ -2660,10 +2478,6 @@ msgstr ""
 msgid "Site map"
 msgstr ""
 
-#: include/network.php:701
-msgid "view full size"
-msgstr ""
-
 #: include/oembed.php:254
 msgid "Embedded content"
 msgstr ""
@@ -2672,24 +2486,6 @@ msgstr ""
 msgid "Embedding disabled"
 msgstr ""
 
-#: include/ostatus.php:1643
-#, php-format
-msgid "%s is now following %s."
-msgstr ""
-
-#: include/ostatus.php:1644
-msgid "following"
-msgstr ""
-
-#: include/ostatus.php:1647
-#, php-format
-msgid "%s stopped following %s."
-msgstr ""
-
-#: include/ostatus.php:1648
-msgid "stopped following"
-msgstr ""
-
 #: include/plugin.php:519 include/plugin.php:521
 msgid "Click here to upgrade."
 msgstr ""
@@ -2923,8 +2719,8 @@ msgstr ""
 msgid "activity"
 msgstr ""
 
-#: include/text.php:1891 mod/content.php:625 object/Item.php:411
-#: object/Item.php:423
+#: include/text.php:1891 mod/content.php:625 object/Item.php:416
+#: object/Item.php:428
 msgid "comment"
 msgid_plural "comments"
 msgstr[0] ""
@@ -2974,7 +2770,7 @@ msgstr[1] ""
 msgid "Done. You can now login with your username and password"
 msgstr ""
 
-#: include/user.php:41 mod/settings.php:378
+#: include/user.php:41 mod/settings.php:373
 msgid "Passwords do not match. Password unchanged."
 msgstr ""
 
@@ -3048,6 +2844,15 @@ msgstr ""
 msgid "An error occurred creating your default profile. Please try again."
 msgstr ""
 
+#: include/user.php:308 include/user.php:316 include/user.php:324
+#: include/api.php:3717 mod/profile_photo.php:75 mod/profile_photo.php:83
+#: mod/profile_photo.php:91 mod/profile_photo.php:215 mod/profile_photo.php:310
+#: mod/profile_photo.php:320 mod/photos.php:74 mod/photos.php:190
+#: mod/photos.php:777 mod/photos.php:1259 mod/photos.php:1280
+#: mod/photos.php:1866
+msgid "Profile Photos"
+msgstr ""
+
 #: include/user.php:399
 #, php-format
 msgid ""
@@ -3107,73 +2912,267 @@ msgid ""
 "\t\tThank you and welcome to %2$s."
 msgstr ""
 
-#: include/user.php:455 mod/admin.php:1400
+#: include/user.php:455 mod/admin.php:1406
 #, php-format
 msgid "Registration details for %s"
 msgstr ""
 
-#: mod/api.php:78 mod/api.php:104
-msgid "Authorize application connection"
+#: include/Photo.php:1008 include/Photo.php:1024 include/Photo.php:1032
+#: include/Photo.php:1057 include/message.php:138 mod/item.php:469
+#: mod/wall_upload.php:250
+msgid "Wall Photos"
 msgstr ""
 
-#: mod/api.php:79
-msgid "Return to your app and insert this Securty Code:"
+#: include/dfrn.php:1331
+#, php-format
+msgid "%s\\'s birthday"
 msgstr ""
 
-#: mod/api.php:91
-msgid "Please login to continue."
+#: include/message.php:15 include/message.php:161
+msgid "[no subject]"
 msgstr ""
 
-#: mod/api.php:106
-msgid ""
-"Do you want to authorize this application to access your posts and contacts, "
-"and/or create new posts for you?"
+#: include/photos.php:57 include/photos.php:66 mod/photos.php:190
+#: mod/photos.php:1126 mod/photos.php:1259 mod/photos.php:1280
+#: mod/photos.php:1842 mod/photos.php:1856 mod/fbrowser.php:43
+#: mod/fbrowser.php:65
+msgid "Contact Photos"
 msgstr ""
 
-#: mod/api.php:108 mod/dfrn_request.php:881 mod/follow.php:150
-#: mod/profiles.php:644 mod/profiles.php:648 mod/profiles.php:674
-#: mod/register.php:250 mod/settings.php:1173 mod/settings.php:1179
-#: mod/settings.php:1186 mod/settings.php:1190 mod/settings.php:1195
-#: mod/settings.php:1200 mod/settings.php:1205 mod/settings.php:1210
-#: mod/settings.php:1236 mod/settings.php:1237 mod/settings.php:1238
-#: mod/settings.php:1239 mod/settings.php:1240
-msgid "No"
+#: include/Contact.php:463
+msgid "Drop Contact"
 msgstr ""
 
-#: mod/apps.php:9 index.php:258
-msgid "You must be logged in to use addons. "
+#: include/Contact.php:841
+msgid "Organisation"
 msgstr ""
 
-#: mod/apps.php:14
-msgid "Applications"
+#: include/Contact.php:844
+msgid "News"
 msgstr ""
 
-#: mod/apps.php:17
-msgid "No installed applications."
+#: include/Contact.php:847
+msgid "Forum"
 msgstr ""
 
-#: mod/attach.php:10
-msgid "Item not available."
+#: include/api.php:1103
+#, php-format
+msgid "Daily posting limit of %d posts reached. The post was rejected."
 msgstr ""
 
-#: mod/attach.php:22
-msgid "Item was not found."
+#: include/api.php:1124
+#, php-format
+msgid "Weekly posting limit of %d posts reached. The post was rejected."
 msgstr ""
 
-#: mod/babel.php:18
-msgid "Source (bbcode) text:"
+#: include/api.php:1145
+#, php-format
+msgid "Monthly posting limit of %d posts reached. The post was rejected."
 msgstr ""
 
-#: mod/babel.php:25
-msgid "Source (Diaspora) text to convert to BBcode:"
+#: include/diaspora.php:2259
+msgid "Sharing notification from Diaspora network"
 msgstr ""
 
-#: mod/babel.php:33
-msgid "Source input: "
+#: include/diaspora.php:3226
+msgid "Attachments:"
 msgstr ""
 
-#: mod/babel.php:37
-msgid "bb2html (raw HTML): "
+#: include/follow.php:85 mod/dfrn_request.php:515
+msgid "Disallowed profile URL."
+msgstr ""
+
+#: include/follow.php:90 mod/dfrn_request.php:521 mod/friendica.php:116
+#: mod/admin.php:289 mod/admin.php:307
+msgid "Blocked domain"
+msgstr ""
+
+#: include/follow.php:95
+msgid "Connect URL missing."
+msgstr ""
+
+#: include/follow.php:123
+msgid ""
+"This site is not configured to allow communications with other networks."
+msgstr ""
+
+#: include/follow.php:124 include/follow.php:138
+msgid "No compatible communication protocols or feeds were discovered."
+msgstr ""
+
+#: include/follow.php:136
+msgid "The profile address specified does not provide adequate information."
+msgstr ""
+
+#: include/follow.php:141
+msgid "An author or name was not found."
+msgstr ""
+
+#: include/follow.php:144
+msgid "No browser URL could be matched to this address."
+msgstr ""
+
+#: include/follow.php:147
+msgid ""
+"Unable to match @-style Identity Address with a known protocol or email "
+"contact."
+msgstr ""
+
+#: include/follow.php:148
+msgid "Use mailto: in front of address to force email check."
+msgstr ""
+
+#: include/follow.php:154
+msgid ""
+"The profile address specified belongs to a network which has been disabled "
+"on this site."
+msgstr ""
+
+#: include/follow.php:159
+msgid ""
+"Limited profile. This person will be unable to receive direct/personal "
+"notifications from you."
+msgstr ""
+
+#: include/follow.php:256
+msgid "Unable to retrieve contact information."
+msgstr ""
+
+#: include/items.php:1724 mod/dfrn_confirm.php:738 mod/dfrn_request.php:760
+msgid "[Name Withheld]"
+msgstr ""
+
+#: include/items.php:2100 mod/viewsrc.php:16 mod/notice.php:18
+#: mod/display.php:122 mod/display.php:291 mod/display.php:496
+#: mod/admin.php:257 mod/admin.php:1663 mod/admin.php:1914
+msgid "Item not found."
+msgstr ""
+
+#: include/items.php:2143
+msgid "Do you really want to delete this item?"
+msgstr ""
+
+#: include/items.php:2145 mod/api.php:107 mod/dfrn_request.php:881
+#: mod/follow.php:150 mod/message.php:207 mod/register.php:249
+#: mod/profiles.php:638 mod/profiles.php:641 mod/profiles.php:668
+#: mod/settings.php:1168 mod/settings.php:1174 mod/settings.php:1181
+#: mod/settings.php:1185 mod/settings.php:1190 mod/settings.php:1195
+#: mod/settings.php:1200 mod/settings.php:1205 mod/settings.php:1231
+#: mod/settings.php:1232 mod/settings.php:1233 mod/settings.php:1234
+#: mod/settings.php:1235 mod/suggest.php:32 mod/contacts.php:465
+msgid "Yes"
+msgstr ""
+
+#: include/items.php:2284 mod/api.php:28 mod/api.php:33 mod/attach.php:35
+#: mod/common.php:20 mod/crepair.php:105 mod/fsuggest.php:80 mod/nogroup.php:29
+#: mod/notes.php:25 mod/viewcontacts.php:49 mod/uimport.php:26
+#: mod/allfriends.php:15 mod/cal.php:302 mod/dfrn_confirm.php:64
+#: mod/dirfind.php:16 mod/editpost.php:13 mod/events.php:189 mod/follow.php:14
+#: mod/follow.php:55 mod/follow.php:118 mod/group.php:21 mod/invite.php:18
+#: mod/invite.php:106 mod/item.php:198 mod/item.php:210 mod/manage.php:104
+#: mod/message.php:49 mod/message.php:172 mod/mood.php:117 mod/network.php:17
+#: mod/notifications.php:74 mod/ostatus_subscribe.php:12 mod/poke.php:156
+#: mod/profile_photo.php:20 mod/profile_photo.php:180 mod/profile_photo.php:191
+#: mod/profile_photo.php:204 mod/register.php:46 mod/regmod.php:107
+#: mod/repair_ostatus.php:12 mod/wall_upload.php:102 mod/wall_upload.php:105
+#: mod/wallmessage.php:12 mod/wallmessage.php:36 mod/wallmessage.php:76
+#: mod/wallmessage.php:100 mod/delegate.php:15 mod/display.php:493
+#: mod/photos.php:169 mod/photos.php:1112 mod/profiles.php:167
+#: mod/profiles.php:605 mod/settings.php:25 mod/settings.php:133
+#: mod/settings.php:665 mod/suggest.php:58 mod/wall_attach.php:69
+#: mod/wall_attach.php:72 mod/contacts.php:373 mod/unfollow.php:14
+#: mod/unfollow.php:57 mod/unfollow.php:90 index.php:411
+msgid "Permission denied."
+msgstr ""
+
+#: include/items.php:2401
+msgid "Archives"
+msgstr ""
+
+#: include/network.php:704
+msgid "view full size"
+msgstr ""
+
+#: include/ostatus.php:1690
+#, php-format
+msgid "%s is now following %s."
+msgstr ""
+
+#: include/ostatus.php:1691
+msgid "following"
+msgstr ""
+
+#: include/ostatus.php:1694
+#, php-format
+msgid "%s stopped following %s."
+msgstr ""
+
+#: include/ostatus.php:1695
+msgid "stopped following"
+msgstr ""
+
+#: mod/api.php:78 mod/api.php:104
+msgid "Authorize application connection"
+msgstr ""
+
+#: mod/api.php:79
+msgid "Return to your app and insert this Securty Code:"
+msgstr ""
+
+#: mod/api.php:91
+msgid "Please login to continue."
+msgstr ""
+
+#: mod/api.php:106
+msgid ""
+"Do you want to authorize this application to access your posts and contacts, "
+"and/or create new posts for you?"
+msgstr ""
+
+#: mod/api.php:108 mod/dfrn_request.php:881 mod/follow.php:150
+#: mod/register.php:250 mod/profiles.php:638 mod/profiles.php:642
+#: mod/profiles.php:668 mod/settings.php:1168 mod/settings.php:1174
+#: mod/settings.php:1181 mod/settings.php:1185 mod/settings.php:1190
+#: mod/settings.php:1195 mod/settings.php:1200 mod/settings.php:1205
+#: mod/settings.php:1231 mod/settings.php:1232 mod/settings.php:1233
+#: mod/settings.php:1234 mod/settings.php:1235
+msgid "No"
+msgstr ""
+
+#: mod/apps.php:9 index.php:258
+msgid "You must be logged in to use addons. "
+msgstr ""
+
+#: mod/apps.php:14
+msgid "Applications"
+msgstr ""
+
+#: mod/apps.php:17
+msgid "No installed applications."
+msgstr ""
+
+#: mod/attach.php:10
+msgid "Item not available."
+msgstr ""
+
+#: mod/attach.php:22
+msgid "Item was not found."
+msgstr ""
+
+#: mod/babel.php:18
+msgid "Source (bbcode) text:"
+msgstr ""
+
+#: mod/babel.php:25
+msgid "Source (Diaspora) text to convert to BBcode:"
+msgstr ""
+
+#: mod/babel.php:33
+msgid "Source input: "
+msgstr ""
+
+#: mod/babel.php:37
+msgid "bb2html (raw HTML): "
 msgstr ""
 
 #: mod/babel.php:41
@@ -3212,7 +3211,7 @@ msgstr ""
 msgid "No contacts in common."
 msgstr ""
 
-#: mod/common.php:143 mod/contacts.php:883
+#: mod/common.php:143 mod/contacts.php:892
 msgid "Common Friends"
 msgstr ""
 
@@ -3272,13 +3271,13 @@ msgstr ""
 msgid "Refetch contact data"
 msgstr ""
 
-#: mod/crepair.php:159 mod/fsuggest.php:109 mod/contacts.php:595
-#: mod/content.php:730 mod/events.php:509 mod/install.php:245
-#: mod/install.php:285 mod/invite.php:150 mod/localtime.php:47
-#: mod/manage.php:157 mod/message.php:338 mod/message.php:521 mod/mood.php:140
+#: mod/crepair.php:159 mod/fsuggest.php:109 mod/content.php:730
+#: mod/events.php:509 mod/install.php:245 mod/install.php:285
+#: mod/invite.php:150 mod/localtime.php:47 mod/manage.php:157
+#: mod/message.php:338 mod/message.php:521 mod/mood.php:140 mod/poke.php:205
 #: mod/photos.php:1144 mod/photos.php:1274 mod/photos.php:1600
-#: mod/photos.php:1649 mod/photos.php:1691 mod/photos.php:1771 mod/poke.php:205
-#: mod/profiles.php:685 object/Item.php:697
+#: mod/photos.php:1649 mod/photos.php:1691 mod/photos.php:1771
+#: mod/profiles.php:679 mod/contacts.php:604 object/Item.php:702
 #: view/theme/duepuntozero/config.php:65 view/theme/frio/config.php:68
 #: view/theme/quattro/config.php:71 view/theme/vier/config.php:114
 msgid "Submit"
@@ -3298,8 +3297,8 @@ msgid ""
 "entries from this contact."
 msgstr ""
 
-#: mod/crepair.php:170 mod/admin.php:1582 mod/admin.php:1595 mod/admin.php:1608
-#: mod/admin.php:1624 mod/settings.php:685 mod/settings.php:711
+#: mod/crepair.php:170 mod/settings.php:680 mod/settings.php:706
+#: mod/admin.php:1588 mod/admin.php:1601 mod/admin.php:1614 mod/admin.php:1630
 msgid "Name"
 msgstr ""
 
@@ -3414,7 +3413,7 @@ msgid ""
 "potential friends know exactly how to find you."
 msgstr ""
 
-#: mod/newmember.php:22 mod/profile_photo.php:256 mod/profiles.php:704
+#: mod/newmember.php:22 mod/profile_photo.php:256 mod/profiles.php:698
 msgid "Upload Profile Photo"
 msgstr ""
 
@@ -3533,13 +3532,13 @@ msgid ""
 "features and resources."
 msgstr ""
 
-#: mod/nogroup.php:45 mod/viewcontacts.php:105 mod/contacts.php:606
-#: mod/contacts.php:950
+#: mod/nogroup.php:45 mod/viewcontacts.php:105 mod/contacts.php:615
+#: mod/contacts.php:959
 #, php-format
 msgid "Visit %s's profile [%s]"
 msgstr ""
 
-#: mod/nogroup.php:46 mod/contacts.php:951
+#: mod/nogroup.php:46 mod/contacts.php:960
 msgid "Edit contact"
 msgstr ""
 
@@ -3577,9 +3576,9 @@ msgid "[Embedded content - reload page to view]"
 msgstr ""
 
 #: mod/viewcontacts.php:39 mod/webfinger.php:10 mod/probe.php:9
-#: mod/search.php:96 mod/search.php:102 mod/community.php:17
-#: mod/dfrn_request.php:805 mod/directory.php:33 mod/display.php:218
-#: mod/photos.php:982 mod/videos.php:201
+#: mod/community.php:17 mod/dfrn_request.php:805 mod/directory.php:33
+#: mod/videos.php:201 mod/display.php:218 mod/photos.php:982 mod/search.php:89
+#: mod/search.php:95
 msgid "Public access denied."
 msgstr ""
 
@@ -3591,29 +3590,6 @@ msgstr ""
 msgid "Access denied."
 msgstr ""
 
-#: mod/wall_attach.php:19 mod/wall_attach.php:27 mod/wall_attach.php:78
-#: mod/wall_upload.php:37 mod/wall_upload.php:53 mod/wall_upload.php:111
-#: mod/wall_upload.php:151 mod/wall_upload.php:154
-msgid "Invalid request."
-msgstr ""
-
-#: mod/wall_attach.php:96
-msgid "Sorry, maybe your upload is bigger than the PHP configuration allows"
-msgstr ""
-
-#: mod/wall_attach.php:96
-msgid "Or - did you try to upload an empty file?"
-msgstr ""
-
-#: mod/wall_attach.php:107
-#, php-format
-msgid "File exceeds size limit of %s"
-msgstr ""
-
-#: mod/wall_attach.php:160 mod/wall_attach.php:176
-msgid "File upload failed."
-msgstr ""
-
 #: mod/webfinger.php:11 mod/probe.php:10
 msgid "Only logged in users are permitted to perform a probing."
 msgstr ""
@@ -3659,5157 +3635,5181 @@ msgid ""
 "select \"Export account\""
 msgstr ""
 
-#: mod/search.php:28 mod/network.php:187
-msgid "Remove term"
+#: mod/community.php:22
+msgid "Not available."
 msgstr ""
 
-#: mod/search.php:103
-msgid "Only logged in users are permitted to perform a search."
+#: mod/community.php:49 mod/search.php:215
+msgid "No results."
 msgstr ""
 
-#: mod/search.php:127
-msgid "Too Many Requests"
+#: mod/allfriends.php:49
+msgid "No friends to display."
 msgstr ""
 
-#: mod/search.php:128
-msgid "Only one search per minute is permitted for not logged in users."
+#: mod/bookmarklet.php:44
+msgid "The post was created"
 msgstr ""
 
-#: mod/search.php:222 mod/community.php:49
-msgid "No results."
+#: mod/cal.php:146 mod/profile.php:157 mod/display.php:348
+msgid "Access to this profile has been restricted."
 msgstr ""
 
-#: mod/search.php:228
-#, php-format
-msgid "Items tagged with: %s"
+#: mod/cal.php:274 mod/events.php:379
+msgid "View"
 msgstr ""
 
-#: mod/search.php:230 mod/contacts.php:817
-#, php-format
-msgid "Results for: %s"
+#: mod/cal.php:275 mod/events.php:381
+msgid "Previous"
 msgstr ""
 
-#: mod/community.php:22
-msgid "Not available."
+#: mod/cal.php:276 mod/events.php:382 mod/install.php:204
+msgid "Next"
 msgstr ""
 
-#: mod/admin.php:99
-msgid "Theme settings updated."
+#: mod/cal.php:285 mod/events.php:391
+msgid "list"
 msgstr ""
 
-#: mod/admin.php:171 mod/admin.php:1146
-msgid "Site"
+#: mod/cal.php:295
+msgid "User not found"
 msgstr ""
 
-#: mod/admin.php:172 mod/admin.php:1080 mod/admin.php:1590 mod/admin.php:1606
-msgid "Users"
+#: mod/cal.php:311
+msgid "This calendar format is not supported"
 msgstr ""
 
-#: mod/admin.php:173 mod/admin.php:1708 mod/admin.php:1771 mod/settings.php:77
-msgid "Plugins"
+#: mod/cal.php:313
+msgid "No exportable data found"
 msgstr ""
 
-#: mod/admin.php:174 mod/admin.php:1984 mod/admin.php:2034
-msgid "Themes"
+#: mod/cal.php:328
+msgid "calendar"
 msgstr ""
 
-#: mod/admin.php:175 mod/settings.php:55
-msgid "Additional features"
+#: mod/content.php:121 mod/network.php:632
+msgid "No such group"
 msgstr ""
 
-#: mod/admin.php:176
-msgid "DB updates"
+#: mod/content.php:132 mod/group.php:215 mod/network.php:653
+msgid "Group is empty"
 msgstr ""
 
-#: mod/admin.php:177 mod/admin.php:584
-msgid "Inspect Queue"
+#: mod/content.php:137 mod/network.php:657
+#, php-format
+msgid "Group: %s"
 msgstr ""
 
-#: mod/admin.php:178 mod/admin.php:298
-msgid "Server Blocklist"
+#: mod/content.php:327 object/Item.php:106
+msgid "This entry was edited"
 msgstr ""
 
-#: mod/admin.php:179 mod/admin.php:550
-msgid "Federation Statistics"
-msgstr ""
+#: mod/content.php:623 object/Item.php:414
+#, php-format
+msgid "%d comment"
+msgid_plural "%d comments"
+msgstr[0] ""
+msgstr[1] ""
 
-#: mod/admin.php:180 mod/admin.php:375
-msgid "Delete Item"
+#: mod/content.php:640 mod/photos.php:1432 object/Item.php:127
+msgid "Private Message"
 msgstr ""
 
-#: mod/admin.php:194 mod/admin.php:205 mod/admin.php:2108
-msgid "Logs"
+#: mod/content.php:704 mod/photos.php:1628 object/Item.php:280
+msgid "I like this (toggle)"
 msgstr ""
 
-#: mod/admin.php:195 mod/admin.php:2176
-msgid "View Logs"
+#: mod/content.php:704 object/Item.php:280
+msgid "like"
 msgstr ""
 
-#: mod/admin.php:196
-msgid "probe address"
+#: mod/content.php:705 mod/photos.php:1629 object/Item.php:281
+msgid "I don't like this (toggle)"
 msgstr ""
 
-#: mod/admin.php:197
-msgid "check webfinger"
+#: mod/content.php:705 object/Item.php:281
+msgid "dislike"
 msgstr ""
 
-#: mod/admin.php:204
-msgid "Plugin Features"
+#: mod/content.php:707 object/Item.php:284
+msgid "Share this"
 msgstr ""
 
-#: mod/admin.php:206
-msgid "diagnostics"
+#: mod/content.php:707 object/Item.php:284
+msgid "share"
 msgstr ""
 
-#: mod/admin.php:207
-msgid "User registrations waiting for confirmation"
+#: mod/content.php:727 mod/photos.php:1646 mod/photos.php:1688
+#: mod/photos.php:1768 object/Item.php:699
+msgid "This is you"
 msgstr ""
 
-#: mod/admin.php:289
-msgid "The blocked domain"
+#: mod/content.php:729 mod/content.php:952 mod/photos.php:1648
+#: mod/photos.php:1690 mod/photos.php:1770 object/Item.php:386
+#: object/Item.php:701
+msgid "Comment"
 msgstr ""
 
-#: mod/admin.php:290 mod/admin.php:308 mod/friendica.php:116
-msgid "Reason for the block"
+#: mod/content.php:731 object/Item.php:703
+msgid "Bold"
 msgstr ""
 
-#: mod/admin.php:290 mod/admin.php:303
-msgid "The reason why you blocked this domain."
+#: mod/content.php:732 object/Item.php:704
+msgid "Italic"
 msgstr ""
 
-#: mod/admin.php:291
-msgid "Delete domain"
+#: mod/content.php:733 object/Item.php:705
+msgid "Underline"
 msgstr ""
 
-#: mod/admin.php:291
-msgid "Check to delete this entry from the blocklist"
+#: mod/content.php:734 object/Item.php:706
+msgid "Quote"
 msgstr ""
 
-#: mod/admin.php:297 mod/admin.php:374 mod/admin.php:549 mod/admin.php:583
-#: mod/admin.php:663 mod/admin.php:1145 mod/admin.php:1589 mod/admin.php:1707
-#: mod/admin.php:1770 mod/admin.php:1983 mod/admin.php:2033 mod/admin.php:2107
-#: mod/admin.php:2175
-msgid "Administration"
+#: mod/content.php:735 object/Item.php:707
+msgid "Code"
 msgstr ""
 
-#: mod/admin.php:299
-msgid ""
-"This page can be used to define a black list of servers from the federated "
-"network that are not allowed to interact with your node. For all entered "
-"domains you should also give a reason why you have blocked the remote server."
+#: mod/content.php:736 object/Item.php:708
+msgid "Image"
 msgstr ""
 
-#: mod/admin.php:300
-msgid ""
-"The list of blocked servers will be made publically available on the /"
-"friendica page so that your users and people investigating communication "
-"problems can find the reason easily."
+#: mod/content.php:737 object/Item.php:709
+msgid "Link"
 msgstr ""
 
-#: mod/admin.php:301
-msgid "Add new entry to block list"
+#: mod/content.php:738 object/Item.php:710
+msgid "Video"
 msgstr ""
 
-#: mod/admin.php:302
-msgid "Server Domain"
+#: mod/content.php:748 mod/settings.php:740 object/Item.php:132
+#: object/Item.php:134
+msgid "Edit"
 msgstr ""
 
-#: mod/admin.php:302
-msgid ""
-"The domain of the new server to add to the block list. Do not include the "
-"protocol."
+#: mod/content.php:774 object/Item.php:247
+msgid "add star"
 msgstr ""
 
-#: mod/admin.php:303
-msgid "Block reason"
+#: mod/content.php:775 object/Item.php:248
+msgid "remove star"
 msgstr ""
 
-#: mod/admin.php:304
-msgid "Add Entry"
+#: mod/content.php:776 object/Item.php:249
+msgid "toggle star status"
 msgstr ""
 
-#: mod/admin.php:305
-msgid "Save changes to the blocklist"
+#: mod/content.php:779 object/Item.php:252
+msgid "starred"
 msgstr ""
 
-#: mod/admin.php:306
-msgid "Current Entries in the Blocklist"
+#: mod/content.php:780 mod/content.php:802 object/Item.php:269
+msgid "add tag"
 msgstr ""
 
-#: mod/admin.php:309
-msgid "Delete entry from blocklist"
+#: mod/content.php:791 object/Item.php:257
+msgid "ignore thread"
 msgstr ""
 
-#: mod/admin.php:312
-msgid "Delete entry from blocklist?"
+#: mod/content.php:792 object/Item.php:258
+msgid "unignore thread"
 msgstr ""
 
-#: mod/admin.php:337
-msgid "Server added to blocklist."
+#: mod/content.php:793 object/Item.php:259
+msgid "toggle ignore status"
 msgstr ""
 
-#: mod/admin.php:353
-msgid "Site blocklist updated."
+#: mod/content.php:796 mod/ostatus_subscribe.php:76 object/Item.php:262
+msgid "ignored"
 msgstr ""
 
-#: mod/admin.php:376
-msgid "Delete this Item"
+#: mod/content.php:807 object/Item.php:151
+msgid "save to folder"
 msgstr ""
 
-#: mod/admin.php:377
-msgid ""
-"On this page you can delete an item from your node. If the item is a top "
-"level posting, the entire thread will be deleted."
+#: mod/content.php:855 object/Item.php:221
+msgid "I will attend"
 msgstr ""
 
-#: mod/admin.php:378
-msgid ""
-"You need to know the GUID of the item. You can find it e.g. by looking at "
-"the display URL. The last part of http://example.com/display/123456 is the "
-"GUID, here 123456."
+#: mod/content.php:855 object/Item.php:221
+msgid "I will not attend"
 msgstr ""
 
-#: mod/admin.php:379
-msgid "GUID"
+#: mod/content.php:855 object/Item.php:221
+msgid "I might attend"
 msgstr ""
 
-#: mod/admin.php:379
-msgid "The GUID of the item you want to delete."
+#: mod/content.php:919 object/Item.php:352
+msgid "to"
 msgstr ""
 
-#: mod/admin.php:416
-msgid "Item marked for deletion."
+#: mod/content.php:920 object/Item.php:354
+msgid "Wall-to-Wall"
 msgstr ""
 
-#: mod/admin.php:480
-msgid "unknown"
+#: mod/content.php:921 object/Item.php:355
+msgid "via Wall-To-Wall:"
 msgstr ""
 
-#: mod/admin.php:543
-msgid ""
-"This page offers you some numbers to the known part of the federated social "
-"network your Friendica node is part of. These numbers are not complete but "
-"only reflect the part of the network your node is aware of."
+#: mod/dfrn_confirm.php:73 mod/profiles.php:24 mod/profiles.php:134
+#: mod/profiles.php:181 mod/profiles.php:617
+msgid "Profile not found."
 msgstr ""
 
-#: mod/admin.php:544
+#: mod/dfrn_confirm.php:130
 msgid ""
-"The <em>Auto Discovered Contact Directory</em> feature is not enabled, it "
-"will improve the data displayed here."
+"This may occasionally happen if contact was requested by both persons and it "
+"has already been approved."
 msgstr ""
 
-#: mod/admin.php:556
-#, php-format
-msgid "Currently this node is aware of %d nodes from the following platforms:"
+#: mod/dfrn_confirm.php:247
+msgid "Response from remote site was not understood."
 msgstr ""
 
-#: mod/admin.php:586
-msgid "ID"
+#: mod/dfrn_confirm.php:256 mod/dfrn_confirm.php:261
+msgid "Unexpected response from remote site: "
 msgstr ""
 
-#: mod/admin.php:587
-msgid "Recipient Name"
+#: mod/dfrn_confirm.php:270
+msgid "Confirmation completed successfully."
 msgstr ""
 
-#: mod/admin.php:588
-msgid "Recipient Profile"
+#: mod/dfrn_confirm.php:272 mod/dfrn_confirm.php:286 mod/dfrn_confirm.php:293
+msgid "Remote site reported: "
 msgstr ""
 
-#: mod/admin.php:590
-msgid "Created"
+#: mod/dfrn_confirm.php:284
+msgid "Temporary failure. Please wait and try again."
 msgstr ""
 
-#: mod/admin.php:591
-msgid "Last Tried"
+#: mod/dfrn_confirm.php:291
+msgid "Introduction failed or was revoked."
 msgstr ""
 
-#: mod/admin.php:592
-msgid ""
-"This page lists the content of the queue for outgoing postings. These are "
-"postings the initial delivery failed for. They will be resend later and "
-"eventually deleted if the delivery fails permanently."
+#: mod/dfrn_confirm.php:420
+msgid "Unable to set contact photo."
 msgstr ""
 
-#: mod/admin.php:617
+#: mod/dfrn_confirm.php:561
 #, php-format
-msgid ""
-"Your DB still runs with MyISAM tables. You should change the engine type to "
-"InnoDB. As Friendica will use InnoDB only features in the future, you should "
-"change this! See <a href=\"%s\">here</a> for a guide that may be helpful "
-"converting the table engines. You may also use the command <tt>php include/"
-"dbstructure.php toinnodb</tt> of your Friendica installation for an "
-"automatic conversion.<br />"
+msgid "No user record found for '%s' "
 msgstr ""
 
-#: mod/admin.php:626
-msgid ""
-"The database update failed. Please run \"php include/dbstructure.php update"
-"\" from the command line and have a look at the errors that might appear."
+#: mod/dfrn_confirm.php:571
+msgid "Our site encryption key is apparently messed up."
 msgstr ""
 
-#: mod/admin.php:631 mod/admin.php:1539
-msgid "Normal Account"
+#: mod/dfrn_confirm.php:582
+msgid "Empty site URL was provided or URL could not be decrypted by us."
 msgstr ""
 
-#: mod/admin.php:632 mod/admin.php:1540
-msgid "Automatic Follower Account"
+#: mod/dfrn_confirm.php:604
+msgid "Contact record was not found for you on our site."
 msgstr ""
 
-#: mod/admin.php:633 mod/admin.php:1541
-msgid "Public Forum Account"
+#: mod/dfrn_confirm.php:618
+#, php-format
+msgid "Site public key not available in contact record for URL %s."
 msgstr ""
 
-#: mod/admin.php:634 mod/admin.php:1542
-msgid "Automatic Friend Account"
+#: mod/dfrn_confirm.php:638
+msgid ""
+"The ID provided by your system is a duplicate on our system. It should work "
+"if you try again."
 msgstr ""
 
-#: mod/admin.php:635
-msgid "Blog Account"
+#: mod/dfrn_confirm.php:649
+msgid "Unable to set your contact credentials on our system."
 msgstr ""
 
-#: mod/admin.php:636
-msgid "Private Forum Account"
+#: mod/dfrn_confirm.php:711
+msgid "Unable to update your contact profile details on our system"
 msgstr ""
 
-#: mod/admin.php:658
-msgid "Message queues"
+#: mod/dfrn_confirm.php:783
+#, php-format
+msgid "%1$s has joined %2$s"
 msgstr ""
 
-#: mod/admin.php:664
-msgid "Summary"
+#: mod/dfrn_poll.php:114 mod/dfrn_poll.php:550
+#, php-format
+msgid "%1$s welcomes %2$s"
 msgstr ""
 
-#: mod/admin.php:666
-msgid "Registered users"
+#: mod/dfrn_request.php:104
+msgid "This introduction has already been accepted."
 msgstr ""
 
-#: mod/admin.php:668
-msgid "Pending registrations"
+#: mod/dfrn_request.php:127 mod/dfrn_request.php:529
+msgid "Profile location is not valid or does not contain profile information."
 msgstr ""
 
-#: mod/admin.php:669
-msgid "Version"
+#: mod/dfrn_request.php:132 mod/dfrn_request.php:534
+msgid "Warning: profile location has no identifiable owner name."
 msgstr ""
 
-#: mod/admin.php:674
-msgid "Active plugins"
+#: mod/dfrn_request.php:135 mod/dfrn_request.php:537
+msgid "Warning: profile location has no profile photo."
 msgstr ""
 
-#: mod/admin.php:699
-msgid "Can not parse base url. Must have at least <scheme>://<domain>"
-msgstr ""
+#: mod/dfrn_request.php:139 mod/dfrn_request.php:541
+#, php-format
+msgid "%d required parameter was not found at the given location"
+msgid_plural "%d required parameters were not found at the given location"
+msgstr[0] ""
+msgstr[1] ""
 
-#: mod/admin.php:1006
-msgid "Site settings updated."
+#: mod/dfrn_request.php:183
+msgid "Introduction complete."
 msgstr ""
 
-#: mod/admin.php:1034 mod/settings.php:945
-msgid "No special theme for mobile devices"
+#: mod/dfrn_request.php:228
+msgid "Unrecoverable protocol error."
 msgstr ""
 
-#: mod/admin.php:1063
-msgid "No community page"
+#: mod/dfrn_request.php:256
+msgid "Profile unavailable."
 msgstr ""
 
-#: mod/admin.php:1064
-msgid "Public postings from users of this site"
+#: mod/dfrn_request.php:283
+#, php-format
+msgid "%s has received too many connection requests today."
 msgstr ""
 
-#: mod/admin.php:1065
-msgid "Global community page"
+#: mod/dfrn_request.php:284
+msgid "Spam protection measures have been invoked."
 msgstr ""
 
-#: mod/admin.php:1070 mod/contacts.php:542
-msgid "Never"
+#: mod/dfrn_request.php:285
+msgid "Friends are advised to please try again in 24 hours."
 msgstr ""
 
-#: mod/admin.php:1071
-msgid "At post arrival"
+#: mod/dfrn_request.php:347
+msgid "Invalid locator"
 msgstr ""
 
-#: mod/admin.php:1079 mod/contacts.php:569
-msgid "Disabled"
+#: mod/dfrn_request.php:356
+msgid "Invalid email address."
 msgstr ""
 
-#: mod/admin.php:1081
-msgid "Users, Global Contacts"
+#: mod/dfrn_request.php:381
+msgid "This account has not been configured for email. Request failed."
 msgstr ""
 
-#: mod/admin.php:1082
-msgid "Users, Global Contacts/fallback"
+#: mod/dfrn_request.php:484
+msgid "You have already introduced yourself here."
 msgstr ""
 
-#: mod/admin.php:1086
-msgid "One month"
+#: mod/dfrn_request.php:488
+#, php-format
+msgid "Apparently you are already friends with %s."
 msgstr ""
 
-#: mod/admin.php:1087
-msgid "Three months"
+#: mod/dfrn_request.php:509
+msgid "Invalid profile URL."
 msgstr ""
 
-#: mod/admin.php:1088
-msgid "Half a year"
+#: mod/dfrn_request.php:594 mod/contacts.php:222
+msgid "Failed to update contact record."
 msgstr ""
 
-#: mod/admin.php:1089
-msgid "One year"
+#: mod/dfrn_request.php:615
+msgid "Your introduction has been sent."
 msgstr ""
 
-#: mod/admin.php:1094
-msgid "Multi user instance"
+#: mod/dfrn_request.php:657
+msgid ""
+"Remote subscription can't be done for your network. Please subscribe "
+"directly on your system."
 msgstr ""
 
-#: mod/admin.php:1117
-msgid "Closed"
+#: mod/dfrn_request.php:678
+msgid "Please login to confirm introduction."
 msgstr ""
 
-#: mod/admin.php:1118
-msgid "Requires approval"
+#: mod/dfrn_request.php:688
+msgid ""
+"Incorrect identity currently logged in. Please login to <strong>this</"
+"strong> profile."
 msgstr ""
 
-#: mod/admin.php:1119
-msgid "Open"
+#: mod/dfrn_request.php:702 mod/dfrn_request.php:719
+msgid "Confirm"
 msgstr ""
 
-#: mod/admin.php:1123
-msgid "No SSL policy, links will track page SSL state"
+#: mod/dfrn_request.php:714
+msgid "Hide this contact"
 msgstr ""
 
-#: mod/admin.php:1124
-msgid "Force all links to use SSL"
+#: mod/dfrn_request.php:717
+#, php-format
+msgid "Welcome home %s."
 msgstr ""
 
-#: mod/admin.php:1125
-msgid "Self-signed certificate, use SSL for local links only (discouraged)"
+#: mod/dfrn_request.php:718
+#, php-format
+msgid "Please confirm your introduction/connection request to %s."
 msgstr ""
 
-#: mod/admin.php:1147 mod/admin.php:1772 mod/admin.php:2035 mod/admin.php:2109
-#: mod/admin.php:2262 mod/settings.php:683 mod/settings.php:794
-#: mod/settings.php:843 mod/settings.php:910 mod/settings.php:1007
-#: mod/settings.php:1273
-msgid "Save Settings"
+#: mod/dfrn_request.php:849
+msgid ""
+"Please enter your 'Identity Address' from one of the following supported "
+"communications networks:"
 msgstr ""
 
-#: mod/admin.php:1148 mod/register.php:276
-msgid "Registration"
+#: mod/dfrn_request.php:873
+#, php-format
+msgid ""
+"If you are not yet a member of the free social web, <a href=\"%s/siteinfo"
+"\">follow this link to find a public Friendica site and join us today</a>."
 msgstr ""
 
-#: mod/admin.php:1149
-msgid "File upload"
+#: mod/dfrn_request.php:878
+msgid "Friend/Connection Request"
 msgstr ""
 
-#: mod/admin.php:1150
-msgid "Policies"
+#: mod/dfrn_request.php:879
+msgid ""
+"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, "
+"testuser@identi.ca"
 msgstr ""
 
-#: mod/admin.php:1152
-msgid "Auto Discovered Contact Directory"
+#: mod/dfrn_request.php:880 mod/follow.php:149
+msgid "Please answer the following:"
 msgstr ""
 
-#: mod/admin.php:1153
-msgid "Performance"
+#: mod/dfrn_request.php:881 mod/follow.php:150
+#, php-format
+msgid "Does %s know you?"
 msgstr ""
 
-#: mod/admin.php:1154
-msgid "Worker"
+#: mod/dfrn_request.php:885 mod/follow.php:151
+msgid "Add a personal note:"
+msgstr ""
+
+#: mod/dfrn_request.php:888
+msgid "StatusNet/Federated Social Web"
 msgstr ""
 
-#: mod/admin.php:1155
+#: mod/dfrn_request.php:890
+#, php-format
 msgid ""
-"Relocate - WARNING: advanced function. Could make this server unreachable."
+" - please do not use this form.  Instead, enter %s into your Diaspora search "
+"bar."
 msgstr ""
 
-#: mod/admin.php:1158
-msgid "Site name"
+#: mod/dfrn_request.php:891 mod/follow.php:157 mod/unfollow.php:113
+msgid "Your Identity Address:"
 msgstr ""
 
-#: mod/admin.php:1159
-msgid "Host name"
+#: mod/dfrn_request.php:894 mod/follow.php:63 mod/unfollow.php:65
+msgid "Submit Request"
 msgstr ""
 
-#: mod/admin.php:1160
-msgid "Sender Email"
+#: mod/directory.php:195 view/theme/vier/theme.php:194
+msgid "Global Directory"
 msgstr ""
 
-#: mod/admin.php:1160
-msgid ""
-"The email address your server shall use to send notification emails from."
+#: mod/directory.php:197
+msgid "Find on this site"
 msgstr ""
 
-#: mod/admin.php:1161
-msgid "Banner/Logo"
+#: mod/directory.php:199
+msgid "Results for:"
 msgstr ""
 
-#: mod/admin.php:1162
-msgid "Shortcut icon"
+#: mod/directory.php:201
+msgid "Site Directory"
 msgstr ""
 
-#: mod/admin.php:1162
-msgid "Link to an icon that will be used for browsers."
+#: mod/directory.php:208
+msgid "No entries (some entries may be hidden)."
 msgstr ""
 
-#: mod/admin.php:1163
-msgid "Touch icon"
+#: mod/dirfind.php:40
+#, php-format
+msgid "People Search - %s"
 msgstr ""
 
-#: mod/admin.php:1163
-msgid "Link to an icon that will be used for tablets and mobiles."
+#: mod/dirfind.php:51
+#, php-format
+msgid "Forum Search - %s"
 msgstr ""
 
-#: mod/admin.php:1164
-msgid "Additional Info"
+#: mod/dirfind.php:248 mod/match.php:113
+msgid "No matches"
 msgstr ""
 
-#: mod/admin.php:1164
-#, php-format
-msgid ""
-"For public servers: you can add additional information here that will be "
-"listed at %s/siteinfo."
+#: mod/editpost.php:20 mod/editpost.php:30
+msgid "Item not found"
 msgstr ""
 
-#: mod/admin.php:1165
-msgid "System language"
+#: mod/editpost.php:35
+msgid "Edit post"
 msgstr ""
 
-#: mod/admin.php:1166
-msgid "System theme"
+#: mod/events.php:97 mod/events.php:99
+msgid "Event can not end before it has started."
 msgstr ""
 
-#: mod/admin.php:1166
-msgid ""
-"Default system theme - may be over-ridden by user profiles - <a href='#' "
-"id='cnftheme'>change theme settings</a>"
+#: mod/events.php:106 mod/events.php:108
+msgid "Event title and start time are required."
 msgstr ""
 
-#: mod/admin.php:1167
-msgid "Mobile system theme"
+#: mod/events.php:380
+msgid "Create New Event"
 msgstr ""
 
-#: mod/admin.php:1167
-msgid "Theme for mobile devices"
+#: mod/events.php:485
+msgid "Event details"
 msgstr ""
 
-#: mod/admin.php:1168
-msgid "SSL link policy"
+#: mod/events.php:486
+msgid "Starting date and Title are required."
 msgstr ""
 
-#: mod/admin.php:1168
-msgid "Determines whether generated links should be forced to use SSL"
+#: mod/events.php:487 mod/events.php:488
+msgid "Event Starts:"
 msgstr ""
 
-#: mod/admin.php:1169
-msgid "Force SSL"
+#: mod/events.php:487 mod/events.php:499 mod/profiles.php:707
+msgid "Required"
 msgstr ""
 
-#: mod/admin.php:1169
-msgid ""
-"Force all Non-SSL requests to SSL - Attention: on some systems it could lead "
-"to endless loops."
+#: mod/events.php:489 mod/events.php:505
+msgid "Finish date/time is not known or not relevant"
 msgstr ""
 
-#: mod/admin.php:1170
-msgid "Hide help entry from navigation menu"
+#: mod/events.php:491 mod/events.php:492
+msgid "Event Finishes:"
 msgstr ""
 
-#: mod/admin.php:1170
-msgid ""
-"Hides the menu entry for the Help pages from the navigation menu. You can "
-"still access it calling /help directly."
+#: mod/events.php:493 mod/events.php:506
+msgid "Adjust for viewer timezone"
 msgstr ""
 
-#: mod/admin.php:1171
-msgid "Single user instance"
+#: mod/events.php:495
+msgid "Description:"
 msgstr ""
 
-#: mod/admin.php:1171
-msgid "Make this instance multi-user or single-user for the named user"
+#: mod/events.php:499 mod/events.php:501
+msgid "Title:"
 msgstr ""
 
-#: mod/admin.php:1172
-msgid "Maximum image size"
+#: mod/events.php:502 mod/events.php:503
+msgid "Share this event"
 msgstr ""
 
-#: mod/admin.php:1172
-msgid ""
-"Maximum size in bytes of uploaded images. Default is 0, which means no "
-"limits."
+#: mod/events.php:532
+msgid "Failed to remove event"
 msgstr ""
 
-#: mod/admin.php:1173
-msgid "Maximum image length"
+#: mod/events.php:534
+msgid "Event removed"
 msgstr ""
 
-#: mod/admin.php:1173
-msgid ""
-"Maximum length in pixels of the longest side of uploaded images. Default is "
-"-1, which means no limits."
+#: mod/fetch.php:16 mod/fetch.php:43 mod/fetch.php:52 mod/help.php:57
+#: mod/p.php:20 mod/p.php:47 mod/p.php:56 index.php:302
+msgid "Not Found"
 msgstr ""
 
-#: mod/admin.php:1174
-msgid "JPEG image quality"
+#: mod/follow.php:42
+msgid "Contact added"
 msgstr ""
 
-#: mod/admin.php:1174
-msgid ""
-"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is "
-"100, which is full quality."
+#: mod/follow.php:74
+msgid "You already added this contact."
 msgstr ""
 
-#: mod/admin.php:1176
-msgid "Register policy"
+#: mod/follow.php:83
+msgid "Diaspora support isn't enabled. Contact can't be added."
 msgstr ""
 
-#: mod/admin.php:1177
-msgid "Maximum Daily Registrations"
+#: mod/follow.php:90
+msgid "OStatus support is disabled. Contact can't be added."
 msgstr ""
 
-#: mod/admin.php:1177
-msgid ""
-"If registration is permitted above, this sets the maximum number of new user "
-"registrations to accept per day.  If register is set to closed, this setting "
-"has no effect."
+#: mod/follow.php:97
+msgid "The network type couldn't be detected. Contact can't be added."
 msgstr ""
 
-#: mod/admin.php:1178
-msgid "Register text"
+#: mod/follow.php:166 mod/notifications.php:258 mod/contacts.php:653
+#: mod/unfollow.php:122
+msgid "Profile URL"
 msgstr ""
 
-#: mod/admin.php:1178
-msgid "Will be displayed prominently on the registration page."
+#: mod/friendica.php:70
+msgid "This is Friendica, version"
 msgstr ""
 
-#: mod/admin.php:1179
-msgid "Accounts abandoned after x days"
+#: mod/friendica.php:71
+msgid "running at web location"
 msgstr ""
 
-#: mod/admin.php:1179
+#: mod/friendica.php:75
 msgid ""
-"Will not waste system resources polling external sites for abandonded "
-"accounts. Enter 0 for no time limit."
+"Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn "
+"more about the Friendica project."
 msgstr ""
 
-#: mod/admin.php:1180
-msgid "Allowed friend domains"
+#: mod/friendica.php:79
+msgid "Bug reports and issues: please visit"
 msgstr ""
 
-#: mod/admin.php:1180
+#: mod/friendica.php:79
+msgid "the bugtracker at github"
+msgstr ""
+
+#: mod/friendica.php:82
 msgid ""
-"Comma separated list of domains which are allowed to establish friendships "
-"with this site. Wildcards are accepted. Empty to allow any domains"
+"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - "
+"dot com"
 msgstr ""
 
-#: mod/admin.php:1181
-msgid "Allowed email domains"
+#: mod/friendica.php:96
+msgid "Installed plugins/addons/apps:"
 msgstr ""
 
-#: mod/admin.php:1181
-msgid ""
-"Comma separated list of domains which are allowed in email addresses for "
-"registrations to this site. Wildcards are accepted. Empty to allow any "
-"domains"
+#: mod/friendica.php:110
+msgid "No installed plugins/addons/apps"
 msgstr ""
 
-#: mod/admin.php:1182
-msgid "Block public"
+#: mod/friendica.php:115
+msgid "On this server the following remote servers are blocked."
 msgstr ""
 
-#: mod/admin.php:1182
-msgid ""
-"Check to block public access to all otherwise public personal pages on this "
-"site unless you are currently logged in."
+#: mod/friendica.php:116 mod/admin.php:290 mod/admin.php:308
+msgid "Reason for the block"
 msgstr ""
 
-#: mod/admin.php:1183
-msgid "Force publish"
+#: mod/group.php:31
+msgid "Group created."
 msgstr ""
 
-#: mod/admin.php:1183
-msgid ""
-"Check to force all profiles on this site to be listed in the site directory."
+#: mod/group.php:37
+msgid "Could not create group."
 msgstr ""
 
-#: mod/admin.php:1184
-msgid "Global directory URL"
+#: mod/group.php:51 mod/group.php:156
+msgid "Group not found."
 msgstr ""
 
-#: mod/admin.php:1184
-msgid ""
-"URL to the global directory. If this is not set, the global directory is "
-"completely unavailable to the application."
+#: mod/group.php:65
+msgid "Group name changed."
 msgstr ""
 
-#: mod/admin.php:1185
-msgid "Allow threaded items"
+#: mod/group.php:95
+msgid "Save Group"
 msgstr ""
 
-#: mod/admin.php:1185
-msgid "Allow infinite level threading for items on this site."
+#: mod/group.php:100
+msgid "Create a group of contacts/friends."
 msgstr ""
 
-#: mod/admin.php:1186
-msgid "Private posts by default for new users"
+#: mod/group.php:125
+msgid "Group removed."
 msgstr ""
 
-#: mod/admin.php:1186
-msgid ""
-"Set default post permissions for all new members to the default privacy "
-"group rather than public."
+#: mod/group.php:127
+msgid "Unable to remove group."
 msgstr ""
 
-#: mod/admin.php:1187
-msgid "Don't include post content in email notifications"
+#: mod/group.php:191
+msgid "Delete Group"
 msgstr ""
 
-#: mod/admin.php:1187
-msgid ""
-"Don't include the content of a post/comment/private message/etc. in the "
-"email notifications that are sent out from this site, as a privacy measure."
+#: mod/group.php:197
+msgid "Group Editor"
 msgstr ""
 
-#: mod/admin.php:1188
-msgid "Disallow public access to addons listed in the apps menu."
+#: mod/group.php:202
+msgid "Edit Group Name"
 msgstr ""
 
-#: mod/admin.php:1188
-msgid ""
-"Checking this box will restrict addons listed in the apps menu to members "
-"only."
+#: mod/group.php:212
+msgid "Members"
 msgstr ""
 
-#: mod/admin.php:1189
-msgid "Don't embed private images in posts"
+#: mod/group.php:214 mod/contacts.php:721
+msgid "All Contacts"
 msgstr ""
 
-#: mod/admin.php:1189
-msgid ""
-"Don't replace locally-hosted private photos in posts with an embedded copy "
-"of the image. This means that contacts who receive posts containing private "
-"photos will have to authenticate and load each image, which may take a while."
+#: mod/group.php:228
+msgid "Remove Contact"
 msgstr ""
 
-#: mod/admin.php:1190
-msgid "Allow Users to set remote_self"
+#: mod/group.php:252
+msgid "Add Contact"
 msgstr ""
 
-#: mod/admin.php:1190
-msgid ""
-"With checking this, every user is allowed to mark every contact as a "
-"remote_self in the repair contact dialog. Setting this flag on a contact "
-"causes mirroring every posting of that contact in the users stream."
+#: mod/hcard.php:14
+msgid "No profile"
 msgstr ""
 
-#: mod/admin.php:1191
-msgid "Block multiple registrations"
+#: mod/help.php:45
+msgid "Help:"
 msgstr ""
 
-#: mod/admin.php:1191
-msgid "Disallow users to register additional accounts for use as pages."
+#: mod/help.php:60 index.php:305
+msgid "Page not found."
 msgstr ""
 
-#: mod/admin.php:1192
-msgid "OpenID support"
+#: mod/home.php:42
+#, php-format
+msgid "Welcome to %s"
 msgstr ""
 
-#: mod/admin.php:1192
-msgid "OpenID support for registration and logins."
+#: mod/install.php:109
+msgid "Friendica Communications Server - Setup"
 msgstr ""
 
-#: mod/admin.php:1193
-msgid "Fullname check"
+#: mod/install.php:115
+msgid "Could not connect to database."
 msgstr ""
 
-#: mod/admin.php:1193
-msgid ""
-"Force users to register with a space between firstname and lastname in Full "
-"name, as an antispam measure"
+#: mod/install.php:119
+msgid "Could not create table."
 msgstr ""
 
-#: mod/admin.php:1194
-msgid "Community Page Style"
+#: mod/install.php:125
+msgid "Your Friendica site database has been installed."
 msgstr ""
 
-#: mod/admin.php:1194
+#: mod/install.php:130
 msgid ""
-"Type of community page to show. 'Global community' shows every public "
-"posting from an open distributed network that arrived on this server."
+"You may need to import the file \"database.sql\" manually using phpmyadmin "
+"or mysql."
 msgstr ""
 
-#: mod/admin.php:1195
-msgid "Posts per user on community page"
+#: mod/install.php:131 mod/install.php:203 mod/install.php:550
+msgid "Please see the file \"INSTALL.txt\"."
 msgstr ""
 
-#: mod/admin.php:1195
-msgid ""
-"The maximum number of posts per user on the community page. (Not valid for "
-"'Global Community')"
+#: mod/install.php:143
+msgid "Database already in use."
 msgstr ""
 
-#: mod/admin.php:1196
-msgid "Enable OStatus support"
+#: mod/install.php:200
+msgid "System check"
 msgstr ""
 
-#: mod/admin.php:1196
-msgid ""
-"Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All "
-"communications in OStatus are public, so privacy warnings will be "
-"occasionally displayed."
+#: mod/install.php:205
+msgid "Check again"
 msgstr ""
 
-#: mod/admin.php:1197
-msgid "OStatus conversation completion interval"
+#: mod/install.php:224
+msgid "Database connection"
 msgstr ""
 
-#: mod/admin.php:1197
+#: mod/install.php:225
 msgid ""
-"How often shall the poller check for new entries in OStatus conversations? "
-"This can be a very ressource task."
+"In order to install Friendica we need to know how to connect to your "
+"database."
 msgstr ""
 
-#: mod/admin.php:1198
-msgid "Only import OStatus threads from our contacts"
+#: mod/install.php:226
+msgid ""
+"Please contact your hosting provider or site administrator if you have "
+"questions about these settings."
 msgstr ""
 
-#: mod/admin.php:1198
+#: mod/install.php:227
 msgid ""
-"Normally we import every content from our OStatus contacts. With this option "
-"we only store threads that are started by a contact that is known on our "
-"system."
+"The database you specify below should already exist. If it does not, please "
+"create it before continuing."
 msgstr ""
 
-#: mod/admin.php:1199
-msgid "OStatus support can only be enabled if threading is enabled."
+#: mod/install.php:231
+msgid "Database Server Name"
 msgstr ""
 
-#: mod/admin.php:1201
-msgid ""
-"Diaspora support can't be enabled because Friendica was installed into a sub "
-"directory."
+#: mod/install.php:232
+msgid "Database Login Name"
 msgstr ""
 
-#: mod/admin.php:1202
-msgid "Enable Diaspora support"
+#: mod/install.php:233
+msgid "Database Login Password"
 msgstr ""
 
-#: mod/admin.php:1202
-msgid "Provide built-in Diaspora network compatibility."
+#: mod/install.php:233
+msgid "For security reasons the password must not be empty"
 msgstr ""
 
-#: mod/admin.php:1203
-msgid "Only allow Friendica contacts"
+#: mod/install.php:234
+msgid "Database Name"
 msgstr ""
 
-#: mod/admin.php:1203
+#: mod/install.php:235 mod/install.php:276
+msgid "Site administrator email address"
+msgstr ""
+
+#: mod/install.php:235 mod/install.php:276
 msgid ""
-"All contacts must use Friendica protocols. All other built-in communication "
-"protocols disabled."
+"Your account email address must match this in order to use the web admin "
+"panel."
 msgstr ""
 
-#: mod/admin.php:1204
-msgid "Verify SSL"
+#: mod/install.php:239 mod/install.php:279
+msgid "Please select a default timezone for your website"
 msgstr ""
 
-#: mod/admin.php:1204
-msgid ""
-"If you wish, you can turn on strict certificate checking. This will mean you "
-"cannot connect (at all) to self-signed SSL sites."
+#: mod/install.php:266
+msgid "Site settings"
 msgstr ""
 
-#: mod/admin.php:1205
-msgid "Proxy user"
+#: mod/install.php:280
+msgid "System Language:"
 msgstr ""
 
-#: mod/admin.php:1206
-msgid "Proxy URL"
+#: mod/install.php:280
+msgid ""
+"Set the default language for your Friendica installation interface and to "
+"send emails."
 msgstr ""
 
-#: mod/admin.php:1207
-msgid "Network timeout"
+#: mod/install.php:320
+msgid "Could not find a command line version of PHP in the web server PATH."
 msgstr ""
 
-#: mod/admin.php:1207
-msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
+#: mod/install.php:321
+msgid ""
+"If you don't have a command line version of PHP installed on server, you "
+"will not be able to run the background processing. See <a href='https://"
+"github.com/friendica/friendica/blob/master/doc/Install.md#set-up-the-"
+"poller'>'Setup the poller'</a>"
 msgstr ""
 
-#: mod/admin.php:1208
-msgid "Maximum Load Average"
+#: mod/install.php:325
+msgid "PHP executable path"
 msgstr ""
 
-#: mod/admin.php:1208
+#: mod/install.php:325
 msgid ""
-"Maximum system load before delivery and poll processes are deferred - "
-"default 50."
+"Enter full path to php executable. You can leave this blank to continue the "
+"installation."
 msgstr ""
 
-#: mod/admin.php:1209
-msgid "Maximum Load Average (Frontend)"
+#: mod/install.php:330
+msgid "Command line PHP"
 msgstr ""
 
-#: mod/admin.php:1209
-msgid "Maximum system load before the frontend quits service - default 50."
+#: mod/install.php:339
+msgid "PHP executable is not the php cli binary (could be cgi-fgci version)"
 msgstr ""
 
-#: mod/admin.php:1210
-msgid "Minimal Memory"
+#: mod/install.php:340
+msgid "Found PHP version: "
 msgstr ""
 
-#: mod/admin.php:1210
+#: mod/install.php:342
+msgid "PHP cli binary"
+msgstr ""
+
+#: mod/install.php:353
 msgid ""
-"Minimal free memory in MB for the poller. Needs access to /proc/meminfo - "
-"default 0 (deactivated)."
+"The command line version of PHP on your system does not have "
+"\"register_argc_argv\" enabled."
 msgstr ""
 
-#: mod/admin.php:1211
-msgid "Maximum table size for optimization"
+#: mod/install.php:354
+msgid "This is required for message delivery to work."
 msgstr ""
 
-#: mod/admin.php:1211
-msgid ""
-"Maximum table size (in MB) for the automatic optimization - default 100 MB. "
-"Enter -1 to disable it."
+#: mod/install.php:356
+msgid "PHP register_argc_argv"
 msgstr ""
 
-#: mod/admin.php:1212
-msgid "Minimum level of fragmentation"
+#: mod/install.php:379
+msgid ""
+"Error: the \"openssl_pkey_new\" function on this system is not able to "
+"generate encryption keys"
 msgstr ""
 
-#: mod/admin.php:1212
+#: mod/install.php:380
 msgid ""
-"Minimum fragmenation level to start the automatic optimization - default "
-"value is 30%."
+"If running under Windows, please see \"http://www.php.net/manual/en/openssl."
+"installation.php\"."
 msgstr ""
 
-#: mod/admin.php:1214
-msgid "Periodical check of global contacts"
+#: mod/install.php:382
+msgid "Generate encryption keys"
 msgstr ""
 
-#: mod/admin.php:1214
-msgid ""
-"If enabled, the global contacts are checked periodically for missing or "
-"outdated data and the vitality of the contacts and servers."
+#: mod/install.php:389
+msgid "libCurl PHP module"
 msgstr ""
 
-#: mod/admin.php:1215
-msgid "Days between requery"
+#: mod/install.php:390
+msgid "GD graphics PHP module"
 msgstr ""
 
-#: mod/admin.php:1215
-msgid "Number of days after which a server is requeried for his contacts."
+#: mod/install.php:391
+msgid "OpenSSL PHP module"
 msgstr ""
 
-#: mod/admin.php:1216
-msgid "Discover contacts from other servers"
+#: mod/install.php:392
+msgid "PDO or MySQLi PHP module"
 msgstr ""
 
-#: mod/admin.php:1216
-msgid ""
-"Periodically query other servers for contacts. You can choose between "
-"'users': the users on the remote system, 'Global Contacts': active contacts "
-"that are known on the system. The fallback is meant for Redmatrix servers "
-"and older friendica servers, where global contacts weren't available. The "
-"fallback increases the server load, so the recommened setting is 'Users, "
-"Global Contacts'."
+#: mod/install.php:393
+msgid "mb_string PHP module"
 msgstr ""
 
-#: mod/admin.php:1217
-msgid "Timeframe for fetching global contacts"
+#: mod/install.php:394
+msgid "XML PHP module"
 msgstr ""
 
-#: mod/admin.php:1217
-msgid ""
-"When the discovery is activated, this value defines the timeframe for the "
-"activity of the global contacts that are fetched from other servers."
+#: mod/install.php:395
+msgid "iconv module"
 msgstr ""
 
-#: mod/admin.php:1218
-msgid "Search the local directory"
+#: mod/install.php:399 mod/install.php:401
+msgid "Apache mod_rewrite module"
 msgstr ""
 
-#: mod/admin.php:1218
+#: mod/install.php:399
 msgid ""
-"Search the local directory instead of the global directory. When searching "
-"locally, every search will be executed on the global directory in the "
-"background. This improves the search results when the search is repeated."
+"Error: Apache webserver mod-rewrite module is required but not installed."
 msgstr ""
 
-#: mod/admin.php:1220
-msgid "Publish server information"
+#: mod/install.php:407
+msgid "Error: libCURL PHP module required but not installed."
 msgstr ""
 
-#: mod/admin.php:1220
+#: mod/install.php:411
 msgid ""
-"If enabled, general server and usage data will be published. The data "
-"contains the name and version of the server, number of users with public "
-"profiles, number of posts and the activated protocols and connectors. See <a "
-"href='http://the-federation.info/'>the-federation.info</a> for details."
+"Error: GD graphics PHP module with JPEG support required but not installed."
 msgstr ""
 
-#: mod/admin.php:1222
-msgid "Suppress Tags"
+#: mod/install.php:415
+msgid "Error: openssl PHP module required but not installed."
 msgstr ""
 
-#: mod/admin.php:1222
-msgid "Suppress showing a list of hashtags at the end of the posting."
+#: mod/install.php:419
+msgid "Error: PDO or MySQLi PHP module required but not installed."
 msgstr ""
 
-#: mod/admin.php:1223
-msgid "Path to item cache"
+#: mod/install.php:423
+msgid "Error: The MySQL driver for PDO is not installed."
 msgstr ""
 
-#: mod/admin.php:1223
-msgid "The item caches buffers generated bbcode and external images."
+#: mod/install.php:427
+msgid "Error: mb_string PHP module required but not installed."
 msgstr ""
 
-#: mod/admin.php:1224
-msgid "Cache duration in seconds"
+#: mod/install.php:431
+msgid "Error: iconv PHP module required but not installed."
 msgstr ""
 
-#: mod/admin.php:1224
-msgid ""
-"How long should the cache files be hold? Default value is 86400 seconds (One "
-"day). To disable the item cache, set the value to -1."
+#: mod/install.php:441
+msgid "Error, XML PHP module required but not installed."
 msgstr ""
 
-#: mod/admin.php:1225
-msgid "Maximum numbers of comments per post"
+#: mod/install.php:453
+msgid ""
+"The web installer needs to be able to create a file called \".htconfig.php\" "
+"in the top folder of your web server and it is unable to do so."
 msgstr ""
 
-#: mod/admin.php:1225
-msgid "How much comments should be shown for each post? Default value is 100."
+#: mod/install.php:454
+msgid ""
+"This is most often a permission setting, as the web server may not be able "
+"to write files in your folder - even if you can."
 msgstr ""
 
-#: mod/admin.php:1226
-msgid "Temp path"
+#: mod/install.php:455
+msgid ""
+"At the end of this procedure, we will give you a text to save in a file "
+"named .htconfig.php in your Friendica top folder."
 msgstr ""
 
-#: mod/admin.php:1226
+#: mod/install.php:456
 msgid ""
-"If you have a restricted system where the webserver can't access the system "
-"temp path, enter another path here."
+"You can alternatively skip this procedure and perform a manual installation. "
+"Please see the file \"INSTALL.txt\" for instructions."
 msgstr ""
 
-#: mod/admin.php:1227
-msgid "Base path to installation"
+#: mod/install.php:459
+msgid ".htconfig.php is writable"
 msgstr ""
 
-#: mod/admin.php:1227
+#: mod/install.php:469
 msgid ""
-"If the system cannot detect the correct path to your installation, enter the "
-"correct path here. This setting should only be set if you are using a "
-"restricted system and symbolic links to your webroot."
-msgstr ""
-
-#: mod/admin.php:1228
-msgid "Disable picture proxy"
+"Friendica uses the Smarty3 template engine to render its web views. Smarty3 "
+"compiles templates to PHP to speed up rendering."
 msgstr ""
 
-#: mod/admin.php:1228
+#: mod/install.php:470
 msgid ""
-"The picture proxy increases performance and privacy. It shouldn't be used on "
-"systems with very low bandwith."
+"In order to store these compiled templates, the web server needs to have "
+"write access to the directory view/smarty3/ under the Friendica top level "
+"folder."
 msgstr ""
 
-#: mod/admin.php:1229
-msgid "Only search in tags"
+#: mod/install.php:471
+msgid ""
+"Please ensure that the user that your web server runs as (e.g. www-data) has "
+"write access to this folder."
 msgstr ""
 
-#: mod/admin.php:1229
-msgid "On large systems the text search can slow down the system extremely."
+#: mod/install.php:472
+msgid ""
+"Note: as a security measure, you should give the web server write access to "
+"view/smarty3/ only--not the template files (.tpl) that it contains."
 msgstr ""
 
-#: mod/admin.php:1231
-msgid "New base url"
+#: mod/install.php:475
+msgid "view/smarty3 is writable"
 msgstr ""
 
-#: mod/admin.php:1231
+#: mod/install.php:491
 msgid ""
-"Change base url for this server. Sends relocate message to all DFRN contacts "
-"of all users."
-msgstr ""
-
-#: mod/admin.php:1233
-msgid "RINO Encryption"
+"Url rewrite in .htaccess is not working. Check your server configuration."
 msgstr ""
 
-#: mod/admin.php:1233
-msgid "Encryption layer between nodes."
+#: mod/install.php:493
+msgid "Url rewrite is working"
 msgstr ""
 
-#: mod/admin.php:1235
-msgid "Maximum number of parallel workers"
+#: mod/install.php:512
+msgid "ImageMagick PHP extension is not installed"
 msgstr ""
 
-#: mod/admin.php:1235
-msgid ""
-"On shared hosters set this to 2. On larger systems, values of 10 are great. "
-"Default value is 4."
+#: mod/install.php:514
+msgid "ImageMagick PHP extension is installed"
 msgstr ""
 
-#: mod/admin.php:1236
-msgid "Don't use 'proc_open' with the worker"
+#: mod/install.php:516
+msgid "ImageMagick supports GIF"
 msgstr ""
 
-#: mod/admin.php:1236
+#: mod/install.php:523
 msgid ""
-"Enable this if your system doesn't allow the use of 'proc_open'. This can "
-"happen on shared hosters. If this is enabled you should increase the "
-"frequency of poller calls in your crontab."
+"The database configuration file \".htconfig.php\" could not be written. "
+"Please use the enclosed text to create a configuration file in your web "
+"server root."
 msgstr ""
 
-#: mod/admin.php:1237
-msgid "Enable fastlane"
+#: mod/install.php:548
+msgid "<h1>What next</h1>"
 msgstr ""
 
-#: mod/admin.php:1237
+#: mod/install.php:549
 msgid ""
-"When enabed, the fastlane mechanism starts an additional worker if processes "
-"with higher priority are blocked by processes of lower priority."
+"IMPORTANT: You will need to [manually] setup a scheduled task for the poller."
 msgstr ""
 
-#: mod/admin.php:1238
-msgid "Enable frontend worker"
+#: mod/invite.php:31
+msgid "Total invitation limit exceeded."
 msgstr ""
 
-#: mod/admin.php:1238
+#: mod/invite.php:54
 #, php-format
-msgid ""
-"When enabled the Worker process is triggered when backend access is "
-"performed (e.g. messages being delivered). On smaller sites you might want "
-"to call %s/worker on a regular basis via an external cron job. You should "
-"only enable this option if you cannot utilize cron/scheduled jobs on your "
-"server."
+msgid "%s : Not a valid email address."
 msgstr ""
 
-#: mod/admin.php:1268
-msgid "Update has been marked successful"
+#: mod/invite.php:79
+msgid "Please join us on Friendica"
 msgstr ""
 
-#: mod/admin.php:1276
-#, php-format
-msgid "Database structure update %s was successfully applied."
+#: mod/invite.php:90
+msgid "Invitation limit exceeded. Please contact your site administrator."
 msgstr ""
 
-#: mod/admin.php:1279
+#: mod/invite.php:94
 #, php-format
-msgid "Executing of database structure update %s failed with error: %s"
+msgid "%s : Message delivery failed."
 msgstr ""
 
-#: mod/admin.php:1293
+#: mod/invite.php:98
 #, php-format
-msgid "Executing %s failed with error: %s"
+msgid "%d message sent."
+msgid_plural "%d messages sent."
+msgstr[0] ""
+msgstr[1] ""
+
+#: mod/invite.php:117
+msgid "You have no more invitations available"
 msgstr ""
 
-#: mod/admin.php:1296
+#: mod/invite.php:125
 #, php-format
-msgid "Update %s was successfully applied."
+msgid ""
+"Visit %s for a list of public sites that you can join. Friendica members on "
+"other sites can all connect with each other, as well as with members of many "
+"other social networks."
 msgstr ""
 
-#: mod/admin.php:1299
+#: mod/invite.php:127
 #, php-format
-msgid "Update %s did not return a status. Unknown if it succeeded."
+msgid ""
+"To accept this invitation, please visit and register at %s or any other "
+"public Friendica website."
 msgstr ""
 
-#: mod/admin.php:1302
+#: mod/invite.php:128
 #, php-format
-msgid "There was no additional update function %s that needed to be called."
+msgid ""
+"Friendica sites all inter-connect to create a huge privacy-enhanced social "
+"web that is owned and controlled by its members. They can also connect with "
+"many traditional social networks. See %s for a list of alternate Friendica "
+"sites you can join."
 msgstr ""
 
-#: mod/admin.php:1322
-msgid "No failed updates."
-msgstr ""
-
-#: mod/admin.php:1323
-msgid "Check database structure"
+#: mod/invite.php:132
+msgid ""
+"Our apologies. This system is not currently configured to connect with other "
+"public sites or invite members."
 msgstr ""
 
-#: mod/admin.php:1328
-msgid "Failed Updates"
+#: mod/invite.php:135
+#, php-format
+msgid "To accept this invitation, please visit and register at %s."
 msgstr ""
 
-#: mod/admin.php:1329
+#: mod/invite.php:136
 msgid ""
-"This does not include updates prior to 1139, which did not return a status."
+"Friendica sites all inter-connect to create a huge privacy-enhanced social "
+"web that is owned and controlled by its members. They can also connect with "
+"many traditional social networks."
 msgstr ""
 
-#: mod/admin.php:1330
-msgid "Mark success (if update was manually applied)"
+#: mod/invite.php:142
+msgid "Send invitations"
 msgstr ""
 
-#: mod/admin.php:1331
-msgid "Attempt to execute this update step automatically"
+#: mod/invite.php:143
+msgid "Enter email addresses, one per line:"
 msgstr ""
 
-#: mod/admin.php:1365
-#, php-format
-msgid ""
-"\n"
-"\t\t\tDear %1$s,\n"
-"\t\t\t\tthe administrator of %2$s has set up an account for you."
+#: mod/invite.php:144 mod/message.php:332 mod/message.php:515
+#: mod/wallmessage.php:138
+msgid "Your message:"
 msgstr ""
 
-#: mod/admin.php:1368
-#, php-format
+#: mod/invite.php:145
 msgid ""
-"\n"
-"\t\t\tThe login details are as follows:\n"
-"\n"
-"\t\t\tSite Location:\t%1$s\n"
-"\t\t\tLogin Name:\t\t%2$s\n"
-"\t\t\tPassword:\t\t%3$s\n"
-"\n"
-"\t\t\tYou may change your password from your account \"Settings\" page after "
-"logging\n"
-"\t\t\tin.\n"
-"\n"
-"\t\t\tPlease take a few moments to review the other account settings on that "
-"page.\n"
-"\n"
-"\t\t\tYou may also wish to add some basic information to your default "
-"profile\n"
-"\t\t\t(on the \"Profiles\" page) so that other people can easily find you.\n"
-"\n"
-"\t\t\tWe recommend setting your full name, adding a profile photo,\n"
-"\t\t\tadding some profile \"keywords\" (very useful in making new friends) - "
-"and\n"
-"\t\t\tperhaps what country you live in; if you do not wish to be more "
-"specific\n"
-"\t\t\tthan that.\n"
-"\n"
-"\t\t\tWe fully respect your right to privacy, and none of these items are "
-"necessary.\n"
-"\t\t\tIf you are new and do not know anybody here, they may help\n"
-"\t\t\tyou to make some new and interesting friends.\n"
-"\n"
-"\t\t\tThank you and welcome to %4$s."
+"You are cordially invited to join me and other close friends on Friendica - "
+"and help us to create a better social web."
 msgstr ""
 
-#: mod/admin.php:1412
-#, php-format
-msgid "%s user blocked/unblocked"
-msgid_plural "%s users blocked/unblocked"
-msgstr[0] ""
-msgstr[1] ""
-
-#: mod/admin.php:1419
-#, php-format
-msgid "%s user deleted"
-msgid_plural "%s users deleted"
-msgstr[0] ""
-msgstr[1] ""
-
-#: mod/admin.php:1466
-#, php-format
-msgid "User '%s' deleted"
+#: mod/invite.php:147
+msgid "You will need to supply this invitation code: $invite_code"
 msgstr ""
 
-#: mod/admin.php:1474
-#, php-format
-msgid "User '%s' unblocked"
+#: mod/invite.php:147
+msgid ""
+"Once you have registered, please connect with me via my profile page at:"
 msgstr ""
 
-#: mod/admin.php:1474
-#, php-format
-msgid "User '%s' blocked"
+#: mod/invite.php:149
+msgid ""
+"For more information about the Friendica project and why we feel it is "
+"important, please visit http://friendi.ca"
 msgstr ""
 
-#: mod/admin.php:1582 mod/admin.php:1608
-msgid "Register date"
+#: mod/item.php:119
+msgid "Unable to locate original post."
 msgstr ""
 
-#: mod/admin.php:1582 mod/admin.php:1608
-msgid "Last login"
+#: mod/item.php:346
+msgid "Empty post discarded."
 msgstr ""
 
-#: mod/admin.php:1582 mod/admin.php:1608
-msgid "Last item"
+#: mod/item.php:903
+msgid "System error. Post not saved."
 msgstr ""
 
-#: mod/admin.php:1582 mod/settings.php:46
-msgid "Account"
+#: mod/item.php:994
+#, php-format
+msgid ""
+"This message was sent to you by %s, a member of the Friendica social network."
 msgstr ""
 
-#: mod/admin.php:1591
-msgid "Add User"
+#: mod/item.php:996
+#, php-format
+msgid "You may visit them online at %s"
 msgstr ""
 
-#: mod/admin.php:1592
-msgid "select all"
+#: mod/item.php:997
+msgid ""
+"Please contact the sender by replying to this post if you do not wish to "
+"receive these messages."
 msgstr ""
 
-#: mod/admin.php:1593
-msgid "User registrations waiting for confirm"
+#: mod/item.php:1001
+#, php-format
+msgid "%s posted an update."
 msgstr ""
 
-#: mod/admin.php:1594
-msgid "User waiting for permanent deletion"
+#: mod/localtime.php:26
+msgid "Time Conversion"
 msgstr ""
 
-#: mod/admin.php:1595
-msgid "Request date"
+#: mod/localtime.php:28
+msgid ""
+"Friendica provides this service for sharing events with other networks and "
+"friends in unknown timezones."
 msgstr ""
 
-#: mod/admin.php:1596
-msgid "No registrations."
+#: mod/localtime.php:32
+#, php-format
+msgid "UTC time: %s"
 msgstr ""
 
-#: mod/admin.php:1597
-msgid "Note from the user"
+#: mod/localtime.php:35
+#, php-format
+msgid "Current timezone: %s"
 msgstr ""
 
-#: mod/admin.php:1598 mod/notifications.php:179 mod/notifications.php:264
-msgid "Approve"
+#: mod/localtime.php:38
+#, php-format
+msgid "Converted localtime: %s"
 msgstr ""
 
-#: mod/admin.php:1599
-msgid "Deny"
+#: mod/localtime.php:43
+msgid "Please select your timezone:"
 msgstr ""
 
-#: mod/admin.php:1601 mod/contacts.php:625 mod/contacts.php:825
-#: mod/contacts.php:1003
-msgid "Block"
+#: mod/lostpass.php:22
+msgid "No valid account found."
 msgstr ""
 
-#: mod/admin.php:1602 mod/contacts.php:625 mod/contacts.php:825
-#: mod/contacts.php:1003
-msgid "Unblock"
+#: mod/lostpass.php:38
+msgid "Password reset request issued. Check your email."
 msgstr ""
 
-#: mod/admin.php:1603
-msgid "Site admin"
+#: mod/lostpass.php:44
+#, php-format
+msgid ""
+"\n"
+"\t\tDear %1$s,\n"
+"\t\t\tA request was recently received at \"%2$s\" to reset your account\n"
+"\t\tpassword. In order to confirm this request, please select the "
+"verification link\n"
+"\t\tbelow or paste it into your web browser address bar.\n"
+"\n"
+"\t\tIf you did NOT request this change, please DO NOT follow the link\n"
+"\t\tprovided and ignore and/or delete this email.\n"
+"\n"
+"\t\tYour password will not be changed unless we can verify that you\n"
+"\t\tissued this request."
 msgstr ""
 
-#: mod/admin.php:1604
-msgid "Account expired"
+#: mod/lostpass.php:55
+#, php-format
+msgid ""
+"\n"
+"\t\tFollow this link to verify your identity:\n"
+"\n"
+"\t\t%1$s\n"
+"\n"
+"\t\tYou will then receive a follow-up message containing the new password.\n"
+"\t\tYou may change that password from your account settings page after "
+"logging in.\n"
+"\n"
+"\t\tThe login details are as follows:\n"
+"\n"
+"\t\tSite Location:\t%2$s\n"
+"\t\tLogin Name:\t%3$s"
 msgstr ""
 
-#: mod/admin.php:1607
-msgid "New User"
+#: mod/lostpass.php:74
+#, php-format
+msgid "Password reset requested at %s"
 msgstr ""
 
-#: mod/admin.php:1608
-msgid "Deleted since"
+#: mod/lostpass.php:94
+msgid ""
+"Request could not be verified. (You may have previously submitted it.) "
+"Password reset failed."
 msgstr ""
 
-#: mod/admin.php:1613
-msgid ""
-"Selected users will be deleted!\\n\\nEverything these users had posted on "
-"this site will be permanently deleted!\\n\\nAre you sure?"
+#: mod/lostpass.php:113 boot.php:884
+msgid "Password Reset"
 msgstr ""
 
-#: mod/admin.php:1614
-msgid ""
-"The user {0} will be deleted!\\n\\nEverything this user has posted on this "
-"site will be permanently deleted!\\n\\nAre you sure?"
+#: mod/lostpass.php:114
+msgid "Your password has been reset as requested."
 msgstr ""
 
-#: mod/admin.php:1624
-msgid "Name of the new user."
+#: mod/lostpass.php:115
+msgid "Your new password is"
 msgstr ""
 
-#: mod/admin.php:1625
-msgid "Nickname"
+#: mod/lostpass.php:116
+msgid "Save or copy your new password - and then"
 msgstr ""
 
-#: mod/admin.php:1625
-msgid "Nickname of the new user."
+#: mod/lostpass.php:117
+msgid "click here to login"
 msgstr ""
 
-#: mod/admin.php:1626
-msgid "Email address of the new user."
+#: mod/lostpass.php:118
+msgid ""
+"Your password may be changed from the <em>Settings</em> page after "
+"successful login."
 msgstr ""
 
-#: mod/admin.php:1669
+#: mod/lostpass.php:128
 #, php-format
-msgid "Plugin %s disabled."
+msgid ""
+"\n"
+"\t\t\t\tDear %1$s,\n"
+"\t\t\t\t\tYour password has been changed as requested. Please retain this\n"
+"\t\t\t\tinformation for your records (or change your password immediately "
+"to\n"
+"\t\t\t\tsomething that you will remember).\n"
+"\t\t\t"
 msgstr ""
 
-#: mod/admin.php:1673
+#: mod/lostpass.php:134
 #, php-format
-msgid "Plugin %s enabled."
+msgid ""
+"\n"
+"\t\t\t\tYour login details are as follows:\n"
+"\n"
+"\t\t\t\tSite Location:\t%1$s\n"
+"\t\t\t\tLogin Name:\t%2$s\n"
+"\t\t\t\tPassword:\t%3$s\n"
+"\n"
+"\t\t\t\tYou may change that password from your account settings page after "
+"logging in.\n"
+"\t\t\t"
 msgstr ""
 
-#: mod/admin.php:1684 mod/admin.php:1936
-msgid "Disable"
+#: mod/lostpass.php:150
+#, php-format
+msgid "Your password has been changed at %s"
 msgstr ""
 
-#: mod/admin.php:1686 mod/admin.php:1938
-msgid "Enable"
+#: mod/lostpass.php:162
+msgid "Forgot your Password?"
 msgstr ""
 
-#: mod/admin.php:1709 mod/admin.php:1985
-msgid "Toggle"
+#: mod/lostpass.php:163
+msgid ""
+"Enter your email address and submit to have your password reset. Then check "
+"your email for further instructions."
 msgstr ""
 
-#: mod/admin.php:1717 mod/admin.php:1994
-msgid "Author: "
+#: mod/lostpass.php:164 boot.php:872
+msgid "Nickname or Email: "
 msgstr ""
 
-#: mod/admin.php:1718 mod/admin.php:1995
-msgid "Maintainer: "
+#: mod/lostpass.php:165
+msgid "Reset"
 msgstr ""
 
-#: mod/admin.php:1773
-msgid "Reload active plugins"
+#: mod/manage.php:153
+msgid "Manage Identities and/or Pages"
 msgstr ""
 
-#: mod/admin.php:1778
-#, php-format
+#: mod/manage.php:154
 msgid ""
-"There are currently no plugins available on your node. You can find the "
-"official plugin repository at %1$s and might find other interesting plugins "
-"in the open plugin registry at %2$s"
-msgstr ""
-
-#: mod/admin.php:1897
-msgid "No themes found."
-msgstr ""
-
-#: mod/admin.php:1976
-msgid "Screenshot"
+"Toggle between different identities or community/group pages which share "
+"your account details or which you have been granted \"manage\" permissions"
 msgstr ""
 
-#: mod/admin.php:2036
-msgid "Reload active themes"
+#: mod/manage.php:155
+msgid "Select an identity to manage: "
 msgstr ""
 
-#: mod/admin.php:2041
-#, php-format
-msgid "No themes found on the system. They should be paced in %1$s"
+#: mod/match.php:39
+msgid "No keywords to match. Please add keywords to your default profile."
 msgstr ""
 
-#: mod/admin.php:2042
-msgid "[Experimental]"
+#: mod/match.php:92
+msgid "is interested in:"
 msgstr ""
 
-#: mod/admin.php:2043
-msgid "[Unsupported]"
+#: mod/match.php:106
+msgid "Profile Match"
 msgstr ""
 
-#: mod/admin.php:2067
-msgid "Log settings updated."
+#: mod/message.php:63 mod/wallmessage.php:53
+msgid "No recipient selected."
 msgstr ""
 
-#: mod/admin.php:2099
-msgid "PHP log currently enabled."
+#: mod/message.php:67
+msgid "Unable to locate contact information."
 msgstr ""
 
-#: mod/admin.php:2101
-msgid "PHP log currently disabled."
+#: mod/message.php:70 mod/wallmessage.php:59
+msgid "Message could not be sent."
 msgstr ""
 
-#: mod/admin.php:2110
-msgid "Clear"
+#: mod/message.php:73 mod/wallmessage.php:62
+msgid "Message collection failure."
 msgstr ""
 
-#: mod/admin.php:2115
-msgid "Enable Debugging"
+#: mod/message.php:76 mod/wallmessage.php:65
+msgid "Message sent."
 msgstr ""
 
-#: mod/admin.php:2116
-msgid "Log file"
+#: mod/message.php:205
+msgid "Do you really want to delete this message?"
 msgstr ""
 
-#: mod/admin.php:2116
-msgid ""
-"Must be writable by web server. Relative to your Friendica top-level "
-"directory."
+#: mod/message.php:225
+msgid "Message deleted."
 msgstr ""
 
-#: mod/admin.php:2117
-msgid "Log level"
+#: mod/message.php:255
+msgid "Conversation removed."
 msgstr ""
 
-#: mod/admin.php:2120
-msgid "PHP logging"
+#: mod/message.php:322 mod/wallmessage.php:129
+msgid "Send Private Message"
 msgstr ""
 
-#: mod/admin.php:2121
-msgid ""
-"To enable logging of PHP errors and warnings you can add the following to "
-"the .htconfig.php file of your installation. The filename set in the "
-"'error_log' line is relative to the friendica top-level directory and must "
-"be writeable by the web server. The option '1' for 'log_errors' and "
-"'display_errors' is to enable these options, set to '0' to disable them."
+#: mod/message.php:323 mod/message.php:510 mod/wallmessage.php:131
+msgid "To:"
 msgstr ""
 
-#: mod/admin.php:2251 mod/admin.php:2252 mod/settings.php:784
-msgid "Off"
+#: mod/message.php:328 mod/message.php:512 mod/wallmessage.php:132
+msgid "Subject:"
 msgstr ""
 
-#: mod/admin.php:2251 mod/admin.php:2252 mod/settings.php:784
-msgid "On"
+#: mod/message.php:364
+msgid "No messages."
 msgstr ""
 
-#: mod/admin.php:2252
-#, php-format
-msgid "Lock feature %s"
+#: mod/message.php:403
+msgid "Message not available."
 msgstr ""
 
-#: mod/admin.php:2260
-msgid "Manage Additional Features"
+#: mod/message.php:478
+msgid "Delete message"
 msgstr ""
 
-#: mod/allfriends.php:49
-msgid "No friends to display."
+#: mod/message.php:503 mod/message.php:591
+msgid "Delete conversation"
 msgstr ""
 
-#: mod/bookmarklet.php:44
-msgid "The post was created"
+#: mod/message.php:505
+msgid ""
+"No secure communications available. You <strong>may</strong> be able to "
+"respond from the sender's profile page."
 msgstr ""
 
-#: mod/cal.php:146 mod/display.php:348 mod/profile.php:157
-msgid "Access to this profile has been restricted."
+#: mod/message.php:509
+msgid "Send Reply"
 msgstr ""
 
-#: mod/cal.php:274 mod/events.php:379
-msgid "View"
+#: mod/message.php:561
+#, php-format
+msgid "Unknown sender - %s"
 msgstr ""
 
-#: mod/cal.php:275 mod/events.php:381
-msgid "Previous"
+#: mod/message.php:563
+#, php-format
+msgid "You and %s"
 msgstr ""
 
-#: mod/cal.php:276 mod/events.php:382 mod/install.php:204
-msgid "Next"
+#: mod/message.php:565
+#, php-format
+msgid "%s and You"
 msgstr ""
 
-#: mod/cal.php:285 mod/events.php:391
-msgid "list"
+#: mod/message.php:594
+msgid "D, d M Y - g:i A"
 msgstr ""
 
-#: mod/cal.php:295
-msgid "User not found"
-msgstr ""
+#: mod/message.php:597
+#, php-format
+msgid "%d message"
+msgid_plural "%d messages"
+msgstr[0] ""
+msgstr[1] ""
 
-#: mod/cal.php:311
-msgid "This calendar format is not supported"
+#: mod/mood.php:136
+msgid "Mood"
 msgstr ""
 
-#: mod/cal.php:313
-msgid "No exportable data found"
+#: mod/mood.php:137
+msgid "Set your current mood and tell your friends"
 msgstr ""
 
-#: mod/cal.php:328
-msgid "calendar"
+#: mod/network.php:187 mod/search.php:28
+msgid "Remove term"
 msgstr ""
 
-#: mod/contacts.php:138
+#: mod/network.php:561
 #, php-format
-msgid "%d contact edited."
-msgid_plural "%d contacts edited."
+msgid ""
+"Warning: This group contains %s member from a network that doesn't allow non "
+"public messages."
+msgid_plural ""
+"Warning: This group contains %s members from a network that doesn't allow "
+"non public messages."
 msgstr[0] ""
 msgstr[1] ""
 
-#: mod/contacts.php:173 mod/contacts.php:382
-msgid "Could not access contact record."
+#: mod/network.php:564
+msgid "Messages in this group won't be send to these receivers."
 msgstr ""
 
-#: mod/contacts.php:187
-msgid "Could not locate selected profile."
+#: mod/network.php:684
+msgid "Private messages to this person are at risk of public disclosure."
 msgstr ""
 
-#: mod/contacts.php:220
-msgid "Contact updated."
+#: mod/network.php:688
+msgid "Invalid contact."
 msgstr ""
 
-#: mod/contacts.php:222 mod/dfrn_request.php:594
-msgid "Failed to update contact record."
+#: mod/network.php:892
+msgid "Commented Order"
 msgstr ""
 
-#: mod/contacts.php:403
-msgid "Contact has been blocked"
+#: mod/network.php:895
+msgid "Sort by Comment Date"
 msgstr ""
 
-#: mod/contacts.php:403
-msgid "Contact has been unblocked"
+#: mod/network.php:900
+msgid "Posted Order"
 msgstr ""
 
-#: mod/contacts.php:414
-msgid "Contact has been ignored"
+#: mod/network.php:903
+msgid "Sort by Post Date"
 msgstr ""
 
-#: mod/contacts.php:414
-msgid "Contact has been unignored"
+#: mod/network.php:914
+msgid "Posts that mention or involve you"
 msgstr ""
 
-#: mod/contacts.php:426
-msgid "Contact has been archived"
+#: mod/network.php:922
+msgid "New"
 msgstr ""
 
-#: mod/contacts.php:426
-msgid "Contact has been unarchived"
+#: mod/network.php:925
+msgid "Activity Stream - by date"
 msgstr ""
 
-#: mod/contacts.php:451
-msgid "Drop contact"
+#: mod/network.php:933
+msgid "Shared Links"
 msgstr ""
 
-#: mod/contacts.php:454 mod/contacts.php:821
-msgid "Do you really want to delete this contact?"
+#: mod/network.php:936
+msgid "Interesting Links"
 msgstr ""
 
-#: mod/contacts.php:473
-msgid "Contact has been removed."
+#: mod/network.php:944
+msgid "Starred"
 msgstr ""
 
-#: mod/contacts.php:510
-#, php-format
-msgid "You are mutual friends with %s"
+#: mod/network.php:947
+msgid "Favourite Posts"
 msgstr ""
 
-#: mod/contacts.php:514
-#, php-format
-msgid "You are sharing with %s"
+#: mod/notifications.php:38
+msgid "Invalid request identifier."
 msgstr ""
 
-#: mod/contacts.php:519
-#, php-format
-msgid "%s is sharing with you"
+#: mod/notifications.php:47 mod/notifications.php:183 mod/notifications.php:230
+msgid "Discard"
 msgstr ""
 
-#: mod/contacts.php:539
-msgid "Private communications are not available for this contact."
+#: mod/notifications.php:63 mod/notifications.php:182 mod/notifications.php:266
+#: mod/contacts.php:635 mod/contacts.php:835 mod/contacts.php:1020
+msgid "Ignore"
 msgstr ""
 
-#: mod/contacts.php:546
-msgid "(Update was successful)"
+#: mod/notifications.php:108
+msgid "Network Notifications"
 msgstr ""
 
-#: mod/contacts.php:546
-msgid "(Update was not successful)"
+#: mod/notifications.php:114 mod/notify.php:73
+msgid "System Notifications"
 msgstr ""
 
-#: mod/contacts.php:548 mod/contacts.php:984
-msgid "Suggest friends"
+#: mod/notifications.php:120
+msgid "Personal Notifications"
 msgstr ""
 
-#: mod/contacts.php:552
-#, php-format
-msgid "Network type: %s"
+#: mod/notifications.php:126
+msgid "Home Notifications"
 msgstr ""
 
-#: mod/contacts.php:565
-msgid "Communications lost with this contact!"
+#: mod/notifications.php:155
+msgid "Show Ignored Requests"
 msgstr ""
 
-#: mod/contacts.php:568
-msgid "Fetch further information for feeds"
+#: mod/notifications.php:155
+msgid "Hide Ignored Requests"
 msgstr ""
 
-#: mod/contacts.php:569
-msgid "Fetch information"
+#: mod/notifications.php:167 mod/notifications.php:237
+msgid "Notification type: "
 msgstr ""
 
-#: mod/contacts.php:569
-msgid "Fetch information and keywords"
+#: mod/notifications.php:170
+#, php-format
+msgid "suggested by %s"
 msgstr ""
 
-#: mod/contacts.php:583 mod/unfollow.php:100
-msgid "Disconnect/Unfollow"
+#: mod/notifications.php:175 mod/notifications.php:254 mod/contacts.php:642
+msgid "Hide this contact from others"
 msgstr ""
 
-#: mod/contacts.php:593
-msgid "Contact"
+#: mod/notifications.php:176 mod/notifications.php:255
+msgid "Post a new friend activity"
 msgstr ""
 
-#: mod/contacts.php:596
-msgid "Profile Visibility"
+#: mod/notifications.php:176 mod/notifications.php:255
+msgid "if applicable"
 msgstr ""
 
-#: mod/contacts.php:597
-#, php-format
-msgid ""
-"Please choose the profile you would like to display to %s when viewing your "
-"profile securely."
+#: mod/notifications.php:179 mod/notifications.php:264 mod/admin.php:1604
+msgid "Approve"
 msgstr ""
 
-#: mod/contacts.php:598
-msgid "Contact Information / Notes"
+#: mod/notifications.php:198
+msgid "Claims to be known to you: "
 msgstr ""
 
-#: mod/contacts.php:599
-msgid "Their personal note"
+#: mod/notifications.php:199
+msgid "yes"
 msgstr ""
 
-#: mod/contacts.php:601
-msgid "Edit contact notes"
+#: mod/notifications.php:199
+msgid "no"
 msgstr ""
 
-#: mod/contacts.php:607
-msgid "Block/Unblock contact"
+#: mod/notifications.php:200 mod/notifications.php:205
+msgid "Shall your connection be bidirectional or not?"
 msgstr ""
 
-#: mod/contacts.php:608
-msgid "Ignore contact"
+#: mod/notifications.php:201 mod/notifications.php:206
+#, php-format
+msgid ""
+"Accepting %s as a friend allows %s to subscribe to your posts, and you will "
+"also receive updates from them in your news feed."
 msgstr ""
 
-#: mod/contacts.php:609
-msgid "Repair URL settings"
+#: mod/notifications.php:202
+#, php-format
+msgid ""
+"Accepting %s as a subscriber allows them to subscribe to your posts, but you "
+"will not receive updates from them in your news feed."
 msgstr ""
 
-#: mod/contacts.php:610
-msgid "View conversations"
+#: mod/notifications.php:207
+#, php-format
+msgid ""
+"Accepting %s as a sharer allows them to subscribe to your posts, but you "
+"will not receive updates from them in your news feed."
 msgstr ""
 
-#: mod/contacts.php:616
-msgid "Last update:"
+#: mod/notifications.php:218
+msgid "Friend"
 msgstr ""
 
-#: mod/contacts.php:618
-msgid "Update public posts"
+#: mod/notifications.php:219
+msgid "Sharer"
 msgstr ""
 
-#: mod/contacts.php:620 mod/contacts.php:994
-msgid "Update now"
+#: mod/notifications.php:219
+msgid "Subscriber"
 msgstr ""
 
-#: mod/contacts.php:626 mod/contacts.php:826 mod/contacts.php:1011
-msgid "Unignore"
+#: mod/notifications.php:275
+msgid "No introductions."
 msgstr ""
 
-#: mod/contacts.php:626 mod/contacts.php:826 mod/contacts.php:1011
-#: mod/notifications.php:63 mod/notifications.php:182 mod/notifications.php:266
-msgid "Ignore"
+#: mod/notifications.php:316
+msgid "Show unread"
 msgstr ""
 
-#: mod/contacts.php:630
-msgid "Currently blocked"
+#: mod/notifications.php:316
+msgid "Show all"
 msgstr ""
 
-#: mod/contacts.php:631
-msgid "Currently ignored"
+#: mod/notifications.php:322
+#, php-format
+msgid "No more %s notifications."
 msgstr ""
 
-#: mod/contacts.php:632
-msgid "Currently archived"
+#: mod/notify.php:69
+msgid "No more system notifications."
 msgstr ""
 
-#: mod/contacts.php:633 mod/notifications.php:175 mod/notifications.php:254
-msgid "Hide this contact from others"
+#: mod/oexchange.php:25
+msgid "Post successful."
+msgstr ""
+
+#: mod/openid.php:25
+msgid "OpenID protocol error. No ID returned."
 msgstr ""
 
-#: mod/contacts.php:633
+#: mod/openid.php:61
 msgid ""
-"Replies/likes to your public posts <strong>may</strong> still be visible"
+"Account not found and OpenID registration is not permitted on this site."
 msgstr ""
 
-#: mod/contacts.php:634
-msgid "Notification for new posts"
+#: mod/ostatus_subscribe.php:17
+msgid "Subscribing to OStatus contacts"
 msgstr ""
 
-#: mod/contacts.php:634
-msgid "Send a notification of every new post of this contact"
+#: mod/ostatus_subscribe.php:28
+msgid "No contact provided."
 msgstr ""
 
-#: mod/contacts.php:637
-msgid "Blacklisted keywords"
+#: mod/ostatus_subscribe.php:34
+msgid "Couldn't fetch information for contact."
 msgstr ""
 
-#: mod/contacts.php:637
-msgid ""
-"Comma separated list of keywords that should not be converted to hashtags, "
-"when \"Fetch information and keywords\" is selected"
+#: mod/ostatus_subscribe.php:43
+msgid "Couldn't fetch friends for contact."
 msgstr ""
 
-#: mod/contacts.php:644 mod/follow.php:166 mod/notifications.php:258
-#: mod/unfollow.php:122
-msgid "Profile URL"
+#: mod/ostatus_subscribe.php:57 mod/repair_ostatus.php:47
+msgid "Done"
 msgstr ""
 
-#: mod/contacts.php:655
-msgid "Actions"
+#: mod/ostatus_subscribe.php:71
+msgid "success"
 msgstr ""
 
-#: mod/contacts.php:658
-msgid "Contact Settings"
+#: mod/ostatus_subscribe.php:73
+msgid "failed"
 msgstr ""
 
-#: mod/contacts.php:704
-msgid "Suggestions"
+#: mod/ostatus_subscribe.php:81 mod/repair_ostatus.php:53
+msgid "Keep this window open until done."
 msgstr ""
 
-#: mod/contacts.php:707
-msgid "Suggest potential friends"
+#: mod/p.php:13
+msgid "Not Extended"
 msgstr ""
 
-#: mod/contacts.php:712 mod/group.php:214
-msgid "All Contacts"
+#: mod/poke.php:198
+msgid "Poke/Prod"
 msgstr ""
 
-#: mod/contacts.php:715
-msgid "Show all contacts"
+#: mod/poke.php:199
+msgid "poke, prod or do other things to somebody"
 msgstr ""
 
-#: mod/contacts.php:720
-msgid "Unblocked"
+#: mod/poke.php:200
+msgid "Recipient"
 msgstr ""
 
-#: mod/contacts.php:723
-msgid "Only show unblocked contacts"
+#: mod/poke.php:201
+msgid "Choose what you wish to do to recipient"
 msgstr ""
 
-#: mod/contacts.php:729
-msgid "Blocked"
+#: mod/poke.php:204
+msgid "Make this post private"
 msgstr ""
 
-#: mod/contacts.php:732
-msgid "Only show blocked contacts"
+#: mod/profile.php:177
+msgid "Tips for New Members"
+msgstr ""
+
+#: mod/profile_photo.php:45
+msgid "Image uploaded but image cropping failed."
 msgstr ""
 
-#: mod/contacts.php:738
-msgid "Ignored"
+#: mod/profile_photo.php:78 mod/profile_photo.php:86 mod/profile_photo.php:94
+#: mod/profile_photo.php:323
+#, php-format
+msgid "Image size reduction [%s] failed."
 msgstr ""
 
-#: mod/contacts.php:741
-msgid "Only show ignored contacts"
+#: mod/profile_photo.php:128
+msgid ""
+"Shift-reload the page or clear browser cache if the new photo does not "
+"display immediately."
 msgstr ""
 
-#: mod/contacts.php:747
-msgid "Archived"
+#: mod/profile_photo.php:137
+msgid "Unable to process image"
 msgstr ""
 
-#: mod/contacts.php:750
-msgid "Only show archived contacts"
+#: mod/profile_photo.php:156 mod/wall_upload.php:182 mod/photos.php:816
+#, php-format
+msgid "Image exceeds size limit of %s"
 msgstr ""
 
-#: mod/contacts.php:756
-msgid "Hidden"
+#: mod/profile_photo.php:165 mod/wall_upload.php:219 mod/photos.php:857
+msgid "Unable to process image."
 msgstr ""
 
-#: mod/contacts.php:759
-msgid "Only show hidden contacts"
+#: mod/profile_photo.php:254
+msgid "Upload File:"
 msgstr ""
 
-#: mod/contacts.php:816
-msgid "Search your contacts"
+#: mod/profile_photo.php:255
+msgid "Select a profile:"
 msgstr ""
 
-#: mod/contacts.php:824 mod/settings.php:163 mod/settings.php:709
-msgid "Update"
+#: mod/profile_photo.php:257
+msgid "Upload"
 msgstr ""
 
-#: mod/contacts.php:827 mod/contacts.php:1019
-msgid "Archive"
+#: mod/profile_photo.php:260
+msgid "or"
 msgstr ""
 
-#: mod/contacts.php:827 mod/contacts.php:1019
-msgid "Unarchive"
+#: mod/profile_photo.php:260
+msgid "skip this step"
 msgstr ""
 
-#: mod/contacts.php:830
-msgid "Batch Actions"
+#: mod/profile_photo.php:260
+msgid "select a photo from your photo albums"
 msgstr ""
 
-#: mod/contacts.php:876
-msgid "View all contacts"
+#: mod/profile_photo.php:274
+msgid "Crop Image"
 msgstr ""
 
-#: mod/contacts.php:886
-msgid "View all common friends"
+#: mod/profile_photo.php:275
+msgid "Please adjust the image cropping for optimum viewing."
 msgstr ""
 
-#: mod/contacts.php:893
-msgid "Advanced Contact Settings"
+#: mod/profile_photo.php:277
+msgid "Done Editing"
 msgstr ""
 
-#: mod/contacts.php:927
-msgid "Mutual Friendship"
+#: mod/profile_photo.php:313
+msgid "Image uploaded successfully."
 msgstr ""
 
-#: mod/contacts.php:931
-msgid "is a fan of yours"
+#: mod/profile_photo.php:315 mod/wall_upload.php:258 mod/photos.php:886
+msgid "Image upload failed."
 msgstr ""
 
-#: mod/contacts.php:935
-msgid "you are a fan of"
+#: mod/register.php:97
+msgid ""
+"Registration successful. Please check your email for further instructions."
 msgstr ""
 
-#: mod/contacts.php:1005
-msgid "Toggle Blocked status"
+#: mod/register.php:102
+#, php-format
+msgid ""
+"Failed to send email message. Here your accout details:<br> login: %s<br> "
+"password: %s<br><br>You can change your password after login."
 msgstr ""
 
-#: mod/contacts.php:1013
-msgid "Toggle Ignored status"
+#: mod/register.php:109
+msgid "Registration successful."
 msgstr ""
 
-#: mod/contacts.php:1021
-msgid "Toggle Archive status"
+#: mod/register.php:115
+msgid "Your registration can not be processed."
 msgstr ""
 
-#: mod/contacts.php:1029
-msgid "Delete contact"
+#: mod/register.php:164
+msgid "Your registration is pending approval by the site owner."
 msgstr ""
 
-#: mod/content.php:121 mod/network.php:632
-msgid "No such group"
+#: mod/register.php:230
+msgid ""
+"You may (optionally) fill in this form via OpenID by supplying your OpenID "
+"and clicking 'Register'."
 msgstr ""
 
-#: mod/content.php:132 mod/group.php:215 mod/network.php:653
-msgid "Group is empty"
+#: mod/register.php:231
+msgid ""
+"If you are not familiar with OpenID, please leave that field blank and fill "
+"in the rest of the items."
 msgstr ""
 
-#: mod/content.php:137 mod/network.php:657
-#, php-format
-msgid "Group: %s"
+#: mod/register.php:232
+msgid "Your OpenID (optional): "
 msgstr ""
 
-#: mod/content.php:327 object/Item.php:101
-msgid "This entry was edited"
+#: mod/register.php:246
+msgid "Include your profile in member directory?"
 msgstr ""
 
-#: mod/content.php:623 object/Item.php:409
-#, php-format
-msgid "%d comment"
-msgid_plural "%d comments"
-msgstr[0] ""
-msgstr[1] ""
+#: mod/register.php:271
+msgid "Note for the admin"
+msgstr ""
 
-#: mod/content.php:640 mod/photos.php:1432 object/Item.php:122
-msgid "Private Message"
+#: mod/register.php:271
+msgid "Leave a message for the admin, why you want to join this node"
 msgstr ""
 
-#: mod/content.php:704 mod/photos.php:1628 object/Item.php:275
-msgid "I like this (toggle)"
+#: mod/register.php:272
+msgid "Membership on this site is by invitation only."
 msgstr ""
 
-#: mod/content.php:704 object/Item.php:275
-msgid "like"
+#: mod/register.php:273
+msgid "Your invitation ID: "
 msgstr ""
 
-#: mod/content.php:705 mod/photos.php:1629 object/Item.php:276
-msgid "I don't like this (toggle)"
+#: mod/register.php:276 mod/admin.php:1155
+msgid "Registration"
 msgstr ""
 
-#: mod/content.php:705 object/Item.php:276
-msgid "dislike"
+#: mod/register.php:284
+msgid "Your Full Name (e.g. Joe Smith, real or real-looking): "
 msgstr ""
 
-#: mod/content.php:707 object/Item.php:279
-msgid "Share this"
+#: mod/register.php:285
+msgid "Your Email Address: "
 msgstr ""
 
-#: mod/content.php:707 object/Item.php:279
-msgid "share"
+#: mod/register.php:287 mod/settings.php:1275
+msgid "New Password:"
 msgstr ""
 
-#: mod/content.php:727 mod/photos.php:1646 mod/photos.php:1688
-#: mod/photos.php:1768 object/Item.php:694
-msgid "This is you"
+#: mod/register.php:287
+msgid "Leave empty for an auto generated password."
 msgstr ""
 
-#: mod/content.php:729 mod/content.php:952 mod/photos.php:1648
-#: mod/photos.php:1690 mod/photos.php:1770 object/Item.php:381
-#: object/Item.php:696
-msgid "Comment"
+#: mod/register.php:288 mod/settings.php:1276
+msgid "Confirm:"
 msgstr ""
 
-#: mod/content.php:731 object/Item.php:698
-msgid "Bold"
+#: mod/register.php:289
+msgid ""
+"Choose a profile nickname. This must begin with a text character. Your "
+"profile address on this site will then be '<strong>nickname@$sitename</"
+"strong>'."
 msgstr ""
 
-#: mod/content.php:732 object/Item.php:699
-msgid "Italic"
+#: mod/register.php:290
+msgid "Choose a nickname: "
 msgstr ""
 
-#: mod/content.php:733 object/Item.php:700
-msgid "Underline"
+#: mod/register.php:300
+msgid "Import your profile to this friendica instance"
 msgstr ""
 
-#: mod/content.php:734 object/Item.php:701
-msgid "Quote"
+#: mod/regmod.php:61
+msgid "Account approved."
 msgstr ""
 
-#: mod/content.php:735 object/Item.php:702
-msgid "Code"
+#: mod/regmod.php:89
+#, php-format
+msgid "Registration revoked for %s"
 msgstr ""
 
-#: mod/content.php:736 object/Item.php:703
-msgid "Image"
+#: mod/regmod.php:101
+msgid "Please login."
 msgstr ""
 
-#: mod/content.php:737 object/Item.php:704
-msgid "Link"
+#: mod/removeme.php:55 mod/removeme.php:58
+msgid "Remove My Account"
 msgstr ""
 
-#: mod/content.php:738 object/Item.php:705
-msgid "Video"
+#: mod/removeme.php:56
+msgid ""
+"This will completely remove your account. Once this has been done it is not "
+"recoverable."
 msgstr ""
 
-#: mod/content.php:748 mod/settings.php:745 object/Item.php:127
-#: object/Item.php:129
-msgid "Edit"
+#: mod/removeme.php:57
+msgid "Please enter your password for verification:"
 msgstr ""
 
-#: mod/content.php:774 object/Item.php:242
-msgid "add star"
+#: mod/repair_ostatus.php:17
+msgid "Resubscribing to OStatus contacts"
 msgstr ""
 
-#: mod/content.php:775 object/Item.php:243
-msgid "remove star"
+#: mod/repair_ostatus.php:33
+msgid "Error"
 msgstr ""
 
-#: mod/content.php:776 object/Item.php:244
-msgid "toggle star status"
+#: mod/subthread.php:106
+#, php-format
+msgid "%1$s is following %2$s's %3$s"
 msgstr ""
 
-#: mod/content.php:779 object/Item.php:247
-msgid "starred"
+#: mod/tagrm.php:46
+msgid "Tag removed"
 msgstr ""
 
-#: mod/content.php:780 mod/content.php:802 object/Item.php:264
-msgid "add tag"
+#: mod/tagrm.php:85
+msgid "Remove Item Tag"
 msgstr ""
 
-#: mod/content.php:791 object/Item.php:252
-msgid "ignore thread"
+#: mod/tagrm.php:87
+msgid "Select a tag to remove: "
 msgstr ""
 
-#: mod/content.php:792 object/Item.php:253
-msgid "unignore thread"
+#: mod/tagrm.php:98 mod/delegate.php:139
+msgid "Remove"
 msgstr ""
 
-#: mod/content.php:793 object/Item.php:254
-msgid "toggle ignore status"
+#: mod/uexport.php:39
+msgid "Export account"
 msgstr ""
 
-#: mod/content.php:796 mod/ostatus_subscribe.php:76 object/Item.php:257
-msgid "ignored"
+#: mod/uexport.php:39
+msgid ""
+"Export your account info and contacts. Use this to make a backup of your "
+"account and/or to move it to another server."
 msgstr ""
 
-#: mod/content.php:807 object/Item.php:146
-msgid "save to folder"
+#: mod/uexport.php:40
+msgid "Export all"
 msgstr ""
 
-#: mod/content.php:855 object/Item.php:216
-msgid "I will attend"
+#: mod/uexport.php:40
+msgid ""
+"Export your accout info, contacts and all your items as json. Could be a "
+"very big file, and could take a lot of time. Use this to make a full backup "
+"of your account (photos are not exported)"
 msgstr ""
 
-#: mod/content.php:855 object/Item.php:216
-msgid "I will not attend"
+#: mod/uexport.php:47 mod/settings.php:98
+msgid "Export personal data"
 msgstr ""
 
-#: mod/content.php:855 object/Item.php:216
-msgid "I might attend"
+#: mod/videos.php:127
+msgid "Do you really want to delete this video?"
 msgstr ""
 
-#: mod/content.php:919 object/Item.php:347
-msgid "to"
+#: mod/videos.php:132
+msgid "Delete Video"
 msgstr ""
 
-#: mod/content.php:920 object/Item.php:349
-msgid "Wall-to-Wall"
+#: mod/videos.php:211
+msgid "No videos selected"
 msgstr ""
 
-#: mod/content.php:921 object/Item.php:350
-msgid "via Wall-To-Wall:"
+#: mod/videos.php:312 mod/photos.php:1094
+msgid "Access to this item is restricted."
 msgstr ""
 
-#: mod/delegate.php:104
-msgid "No potential page delegates located."
+#: mod/videos.php:396 mod/photos.php:1894
+msgid "View Album"
 msgstr ""
 
-#: mod/delegate.php:135
-msgid ""
-"Delegates are able to manage all aspects of this account/page except for "
-"basic account settings. Please do not delegate your personal account to "
-"anybody that you do not trust completely."
+#: mod/videos.php:405
+msgid "Recent Videos"
 msgstr ""
 
-#: mod/delegate.php:136
-msgid "Existing Page Managers"
+#: mod/videos.php:407
+msgid "Upload New Videos"
 msgstr ""
 
-#: mod/delegate.php:138
-msgid "Existing Page Delegates"
+#: mod/wall_upload.php:37 mod/wall_upload.php:53 mod/wall_upload.php:111
+#: mod/wall_upload.php:151 mod/wall_upload.php:154 mod/wall_attach.php:19
+#: mod/wall_attach.php:27 mod/wall_attach.php:78
+msgid "Invalid request."
 msgstr ""
 
-#: mod/delegate.php:140
-msgid "Potential Delegates"
+#: mod/wallmessage.php:45 mod/wallmessage.php:109
+#, php-format
+msgid "Number of daily wall messages for %s exceeded. Message failed."
 msgstr ""
 
-#: mod/delegate.php:142 mod/tagrm.php:98
-msgid "Remove"
+#: mod/wallmessage.php:56
+msgid "Unable to check your home location."
 msgstr ""
 
-#: mod/delegate.php:143
-msgid "Add"
+#: mod/wallmessage.php:83 mod/wallmessage.php:92
+msgid "No recipient."
 msgstr ""
 
-#: mod/delegate.php:144
-msgid "No entries."
+#: mod/wallmessage.php:130
+#, php-format
+msgid ""
+"If you wish for %s to respond, please check that the privacy settings on "
+"your site allow private mail from unknown senders."
 msgstr ""
 
-#: mod/dfrn_confirm.php:73 mod/profiles.php:24 mod/profiles.php:140
-#: mod/profiles.php:187 mod/profiles.php:623
-msgid "Profile not found."
+#: mod/delegate.php:101
+msgid "No potential page delegates located."
 msgstr ""
 
-#: mod/dfrn_confirm.php:130
+#: mod/delegate.php:132
 msgid ""
-"This may occasionally happen if contact was requested by both persons and it "
-"has already been approved."
+"Delegates are able to manage all aspects of this account/page except for "
+"basic account settings. Please do not delegate your personal account to "
+"anybody that you do not trust completely."
 msgstr ""
 
-#: mod/dfrn_confirm.php:247
-msgid "Response from remote site was not understood."
+#: mod/delegate.php:133
+msgid "Existing Page Managers"
 msgstr ""
 
-#: mod/dfrn_confirm.php:256 mod/dfrn_confirm.php:261
-msgid "Unexpected response from remote site: "
+#: mod/delegate.php:135
+msgid "Existing Page Delegates"
 msgstr ""
 
-#: mod/dfrn_confirm.php:270
-msgid "Confirmation completed successfully."
+#: mod/delegate.php:137
+msgid "Potential Delegates"
 msgstr ""
 
-#: mod/dfrn_confirm.php:272 mod/dfrn_confirm.php:286 mod/dfrn_confirm.php:293
-msgid "Remote site reported: "
+#: mod/delegate.php:140
+msgid "Add"
 msgstr ""
 
-#: mod/dfrn_confirm.php:284
-msgid "Temporary failure. Please wait and try again."
+#: mod/delegate.php:141
+msgid "No entries."
 msgstr ""
 
-#: mod/dfrn_confirm.php:291
-msgid "Introduction failed or was revoked."
+#: mod/display.php:491
+msgid "Item has been removed."
 msgstr ""
 
-#: mod/dfrn_confirm.php:420
-msgid "Unable to set contact photo."
+#: mod/photos.php:97 mod/photos.php:1903
+msgid "Recent Photos"
 msgstr ""
 
-#: mod/dfrn_confirm.php:561
-#, php-format
-msgid "No user record found for '%s' "
+#: mod/photos.php:100 mod/photos.php:1331 mod/photos.php:1905
+msgid "Upload New Photos"
 msgstr ""
 
-#: mod/dfrn_confirm.php:571
-msgid "Our site encryption key is apparently messed up."
+#: mod/photos.php:115 mod/settings.php:39
+msgid "everybody"
 msgstr ""
 
-#: mod/dfrn_confirm.php:582
-msgid "Empty site URL was provided or URL could not be decrypted by us."
+#: mod/photos.php:179
+msgid "Contact information unavailable"
 msgstr ""
 
-#: mod/dfrn_confirm.php:604
-msgid "Contact record was not found for you on our site."
+#: mod/photos.php:200
+msgid "Album not found."
 msgstr ""
 
-#: mod/dfrn_confirm.php:618
-#, php-format
-msgid "Site public key not available in contact record for URL %s."
+#: mod/photos.php:233 mod/photos.php:245 mod/photos.php:1275
+msgid "Delete Album"
 msgstr ""
 
-#: mod/dfrn_confirm.php:638
-msgid ""
-"The ID provided by your system is a duplicate on our system. It should work "
-"if you try again."
+#: mod/photos.php:243
+msgid "Do you really want to delete this photo album and all its photos?"
 msgstr ""
 
-#: mod/dfrn_confirm.php:649
-msgid "Unable to set your contact credentials on our system."
+#: mod/photos.php:326 mod/photos.php:337 mod/photos.php:1601
+msgid "Delete Photo"
 msgstr ""
 
-#: mod/dfrn_confirm.php:711
-msgid "Unable to update your contact profile details on our system"
+#: mod/photos.php:335
+msgid "Do you really want to delete this photo?"
 msgstr ""
 
-#: mod/dfrn_confirm.php:783
+#: mod/photos.php:716
 #, php-format
-msgid "%1$s has joined %2$s"
+msgid "%1$s was tagged in %2$s by %3$s"
 msgstr ""
 
-#: mod/dfrn_poll.php:114 mod/dfrn_poll.php:550
-#, php-format
-msgid "%1$s welcomes %2$s"
+#: mod/photos.php:716
+msgid "a photo"
 msgstr ""
 
-#: mod/dfrn_request.php:104
-msgid "This introduction has already been accepted."
+#: mod/photos.php:824
+msgid "Image file is empty."
 msgstr ""
 
-#: mod/dfrn_request.php:127 mod/dfrn_request.php:529
-msgid "Profile location is not valid or does not contain profile information."
+#: mod/photos.php:991
+msgid "No photos selected"
 msgstr ""
 
-#: mod/dfrn_request.php:132 mod/dfrn_request.php:534
-msgid "Warning: profile location has no identifiable owner name."
+#: mod/photos.php:1154
+#, php-format
+msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."
 msgstr ""
 
-#: mod/dfrn_request.php:135 mod/dfrn_request.php:537
-msgid "Warning: profile location has no profile photo."
+#: mod/photos.php:1191
+msgid "Upload Photos"
 msgstr ""
 
-#: mod/dfrn_request.php:139 mod/dfrn_request.php:541
-#, php-format
-msgid "%d required parameter was not found at the given location"
-msgid_plural "%d required parameters were not found at the given location"
-msgstr[0] ""
-msgstr[1] ""
+#: mod/photos.php:1195 mod/photos.php:1270
+msgid "New album name: "
+msgstr ""
 
-#: mod/dfrn_request.php:183
-msgid "Introduction complete."
+#: mod/photos.php:1196
+msgid "or existing album name: "
 msgstr ""
 
-#: mod/dfrn_request.php:228
-msgid "Unrecoverable protocol error."
+#: mod/photos.php:1197
+msgid "Do not show a status post for this upload"
 msgstr ""
 
-#: mod/dfrn_request.php:256
-msgid "Profile unavailable."
+#: mod/photos.php:1208 mod/photos.php:1605 mod/settings.php:1304
+msgid "Show to Groups"
 msgstr ""
 
-#: mod/dfrn_request.php:283
-#, php-format
-msgid "%s has received too many connection requests today."
+#: mod/photos.php:1209 mod/photos.php:1606 mod/settings.php:1305
+msgid "Show to Contacts"
 msgstr ""
 
-#: mod/dfrn_request.php:284
-msgid "Spam protection measures have been invoked."
+#: mod/photos.php:1210
+msgid "Private Photo"
 msgstr ""
 
-#: mod/dfrn_request.php:285
-msgid "Friends are advised to please try again in 24 hours."
+#: mod/photos.php:1211
+msgid "Public Photo"
 msgstr ""
 
-#: mod/dfrn_request.php:347
-msgid "Invalid locator"
+#: mod/photos.php:1281
+msgid "Edit Album"
 msgstr ""
 
-#: mod/dfrn_request.php:356
-msgid "Invalid email address."
+#: mod/photos.php:1286
+msgid "Show Newest First"
 msgstr ""
 
-#: mod/dfrn_request.php:381
-msgid "This account has not been configured for email. Request failed."
+#: mod/photos.php:1288
+msgid "Show Oldest First"
 msgstr ""
 
-#: mod/dfrn_request.php:484
-msgid "You have already introduced yourself here."
+#: mod/photos.php:1317 mod/photos.php:1888
+msgid "View Photo"
 msgstr ""
 
-#: mod/dfrn_request.php:488
-#, php-format
-msgid "Apparently you are already friends with %s."
+#: mod/photos.php:1362
+msgid "Permission denied. Access to this item may be restricted."
 msgstr ""
 
-#: mod/dfrn_request.php:509
-msgid "Invalid profile URL."
+#: mod/photos.php:1364
+msgid "Photo not available"
 msgstr ""
 
-#: mod/dfrn_request.php:615
-msgid "Your introduction has been sent."
+#: mod/photos.php:1425
+msgid "View photo"
 msgstr ""
 
-#: mod/dfrn_request.php:657
-msgid ""
-"Remote subscription can't be done for your network. Please subscribe "
-"directly on your system."
+#: mod/photos.php:1425
+msgid "Edit photo"
 msgstr ""
 
-#: mod/dfrn_request.php:678
-msgid "Please login to confirm introduction."
+#: mod/photos.php:1426
+msgid "Use as profile photo"
 msgstr ""
 
-#: mod/dfrn_request.php:688
-msgid ""
-"Incorrect identity currently logged in. Please login to <strong>this</"
-"strong> profile."
+#: mod/photos.php:1451
+msgid "View Full Size"
 msgstr ""
 
-#: mod/dfrn_request.php:702 mod/dfrn_request.php:719
-msgid "Confirm"
+#: mod/photos.php:1541
+msgid "Tags: "
 msgstr ""
 
-#: mod/dfrn_request.php:714
-msgid "Hide this contact"
+#: mod/photos.php:1544
+msgid "[Remove any tag]"
 msgstr ""
 
-#: mod/dfrn_request.php:717
-#, php-format
-msgid "Welcome home %s."
+#: mod/photos.php:1587
+msgid "New album name"
 msgstr ""
 
-#: mod/dfrn_request.php:718
-#, php-format
-msgid "Please confirm your introduction/connection request to %s."
+#: mod/photos.php:1588
+msgid "Caption"
 msgstr ""
 
-#: mod/dfrn_request.php:849
-msgid ""
-"Please enter your 'Identity Address' from one of the following supported "
-"communications networks:"
+#: mod/photos.php:1589
+msgid "Add a Tag"
 msgstr ""
 
-#: mod/dfrn_request.php:873
-#, php-format
-msgid ""
-"If you are not yet a member of the free social web, <a href=\"%s/siteinfo"
-"\">follow this link to find a public Friendica site and join us today</a>."
+#: mod/photos.php:1589
+msgid "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
 msgstr ""
 
-#: mod/dfrn_request.php:878
-msgid "Friend/Connection Request"
+#: mod/photos.php:1590
+msgid "Do not rotate"
 msgstr ""
 
-#: mod/dfrn_request.php:879
-msgid ""
-"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, "
-"testuser@identi.ca"
+#: mod/photos.php:1591
+msgid "Rotate CW (right)"
 msgstr ""
 
-#: mod/dfrn_request.php:880 mod/follow.php:149
-msgid "Please answer the following:"
+#: mod/photos.php:1592
+msgid "Rotate CCW (left)"
 msgstr ""
 
-#: mod/dfrn_request.php:881 mod/follow.php:150
-#, php-format
-msgid "Does %s know you?"
+#: mod/photos.php:1607
+msgid "Private photo"
 msgstr ""
 
-#: mod/dfrn_request.php:885 mod/follow.php:151
-msgid "Add a personal note:"
+#: mod/photos.php:1608
+msgid "Public photo"
 msgstr ""
 
-#: mod/dfrn_request.php:888
-msgid "StatusNet/Federated Social Web"
+#: mod/photos.php:1817
+msgid "Map"
 msgstr ""
 
-#: mod/dfrn_request.php:890
-#, php-format
-msgid ""
-" - please do not use this form.  Instead, enter %s into your Diaspora search "
-"bar."
+#: mod/ping.php:275
+msgid "{0} wants to be your friend"
 msgstr ""
 
-#: mod/dfrn_request.php:891 mod/follow.php:157 mod/unfollow.php:113
-msgid "Your Identity Address:"
+#: mod/ping.php:290
+msgid "{0} sent you a message"
 msgstr ""
 
-#: mod/dfrn_request.php:894 mod/follow.php:63 mod/unfollow.php:65
-msgid "Submit Request"
+#: mod/ping.php:305
+msgid "{0} requested registration"
 msgstr ""
 
-#: mod/directory.php:195 view/theme/vier/theme.php:194
-msgid "Global Directory"
+#: mod/profiles.php:43
+msgid "Profile deleted."
 msgstr ""
 
-#: mod/directory.php:197
-msgid "Find on this site"
+#: mod/profiles.php:59 mod/profiles.php:95
+msgid "Profile-"
 msgstr ""
 
-#: mod/directory.php:199
-msgid "Results for:"
+#: mod/profiles.php:78 mod/profiles.php:117
+msgid "New profile created."
 msgstr ""
 
-#: mod/directory.php:201
-msgid "Site Directory"
+#: mod/profiles.php:101
+msgid "Profile unavailable to clone."
 msgstr ""
 
-#: mod/directory.php:208
-msgid "No entries (some entries may be hidden)."
+#: mod/profiles.php:191
+msgid "Profile Name is required."
 msgstr ""
 
-#: mod/dirfind.php:40
-#, php-format
-msgid "People Search - %s"
+#: mod/profiles.php:331
+msgid "Marital Status"
 msgstr ""
 
-#: mod/dirfind.php:51
-#, php-format
-msgid "Forum Search - %s"
+#: mod/profiles.php:335
+msgid "Romantic Partner"
 msgstr ""
 
-#: mod/dirfind.php:248 mod/match.php:113
-msgid "No matches"
+#: mod/profiles.php:347
+msgid "Work/Employment"
 msgstr ""
 
-#: mod/display.php:491
-msgid "Item has been removed."
+#: mod/profiles.php:350
+msgid "Religion"
 msgstr ""
 
-#: mod/editpost.php:20 mod/editpost.php:30
-msgid "Item not found"
+#: mod/profiles.php:354
+msgid "Political Views"
 msgstr ""
 
-#: mod/editpost.php:35
-msgid "Edit post"
+#: mod/profiles.php:358
+msgid "Gender"
 msgstr ""
 
-#: mod/events.php:97 mod/events.php:99
-msgid "Event can not end before it has started."
+#: mod/profiles.php:362
+msgid "Sexual Preference"
 msgstr ""
 
-#: mod/events.php:106 mod/events.php:108
-msgid "Event title and start time are required."
+#: mod/profiles.php:366
+msgid "XMPP"
 msgstr ""
 
-#: mod/events.php:380
-msgid "Create New Event"
+#: mod/profiles.php:370
+msgid "Homepage"
 msgstr ""
 
-#: mod/events.php:485
-msgid "Event details"
+#: mod/profiles.php:374 mod/profiles.php:693
+msgid "Interests"
 msgstr ""
 
-#: mod/events.php:486
-msgid "Starting date and Title are required."
+#: mod/profiles.php:378
+msgid "Address"
 msgstr ""
 
-#: mod/events.php:487 mod/events.php:488
-msgid "Event Starts:"
+#: mod/profiles.php:385 mod/profiles.php:689
+msgid "Location"
 msgstr ""
 
-#: mod/events.php:487 mod/events.php:499 mod/profiles.php:713
-msgid "Required"
+#: mod/profiles.php:470
+msgid "Profile updated."
 msgstr ""
 
-#: mod/events.php:489 mod/events.php:505
-msgid "Finish date/time is not known or not relevant"
+#: mod/profiles.php:562
+msgid " and "
 msgstr ""
 
-#: mod/events.php:491 mod/events.php:492
-msgid "Event Finishes:"
+#: mod/profiles.php:571
+msgid "public profile"
 msgstr ""
 
-#: mod/events.php:493 mod/events.php:506
-msgid "Adjust for viewer timezone"
+#: mod/profiles.php:574
+#, php-format
+msgid "%1$s changed %2$s to &ldquo;%3$s&rdquo;"
 msgstr ""
 
-#: mod/events.php:495
-msgid "Description:"
+#: mod/profiles.php:575
+#, php-format
+msgid " - Visit %1$s's %2$s"
 msgstr ""
 
-#: mod/events.php:499 mod/events.php:501
-msgid "Title:"
+#: mod/profiles.php:577
+#, php-format
+msgid "%1$s has an updated %2$s, changing %3$s."
 msgstr ""
 
-#: mod/events.php:502 mod/events.php:503
-msgid "Share this event"
+#: mod/profiles.php:635
+msgid "Hide contacts and friends:"
 msgstr ""
 
-#: mod/events.php:532
-msgid "Failed to remove event"
+#: mod/profiles.php:640
+msgid "Hide your contact/friend list from viewers of this profile?"
 msgstr ""
 
-#: mod/events.php:534
-msgid "Event removed"
+#: mod/profiles.php:665
+msgid "Show more profile fields:"
 msgstr ""
 
-#: mod/fbrowser.php:135
-msgid "Files"
+#: mod/profiles.php:677
+msgid "Profile Actions"
 msgstr ""
 
-#: mod/fetch.php:16 mod/fetch.php:43 mod/fetch.php:52 mod/help.php:57
-#: mod/p.php:20 mod/p.php:47 mod/p.php:56 index.php:302
-msgid "Not Found"
+#: mod/profiles.php:678
+msgid "Edit Profile Details"
 msgstr ""
 
-#: mod/follow.php:42
-msgid "Contact added"
+#: mod/profiles.php:680
+msgid "Change Profile Photo"
 msgstr ""
 
-#: mod/follow.php:74
-msgid "You already added this contact."
+#: mod/profiles.php:681
+msgid "View this profile"
 msgstr ""
 
-#: mod/follow.php:83
-msgid "Diaspora support isn't enabled. Contact can't be added."
+#: mod/profiles.php:683
+msgid "Create a new profile using these settings"
 msgstr ""
 
-#: mod/follow.php:90
-msgid "OStatus support is disabled. Contact can't be added."
+#: mod/profiles.php:684
+msgid "Clone this profile"
 msgstr ""
 
-#: mod/follow.php:97
-msgid "The network type couldn't be detected. Contact can't be added."
+#: mod/profiles.php:685
+msgid "Delete this profile"
 msgstr ""
 
-#: mod/friendica.php:70
-msgid "This is Friendica, version"
+#: mod/profiles.php:687
+msgid "Basic information"
 msgstr ""
 
-#: mod/friendica.php:71
-msgid "running at web location"
+#: mod/profiles.php:688
+msgid "Profile picture"
 msgstr ""
 
-#: mod/friendica.php:75
-msgid ""
-"Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn "
-"more about the Friendica project."
+#: mod/profiles.php:690
+msgid "Preferences"
 msgstr ""
 
-#: mod/friendica.php:79
-msgid "Bug reports and issues: please visit"
+#: mod/profiles.php:691
+msgid "Status information"
 msgstr ""
 
-#: mod/friendica.php:79
-msgid "the bugtracker at github"
+#: mod/profiles.php:692
+msgid "Additional information"
 msgstr ""
 
-#: mod/friendica.php:82
-msgid ""
-"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - "
-"dot com"
+#: mod/profiles.php:695
+msgid "Relation"
 msgstr ""
 
-#: mod/friendica.php:96
-msgid "Installed plugins/addons/apps:"
+#: mod/profiles.php:699
+msgid "Your Gender:"
 msgstr ""
 
-#: mod/friendica.php:110
-msgid "No installed plugins/addons/apps"
+#: mod/profiles.php:700
+msgid "<span class=\"heart\">&hearts;</span> Marital Status:"
 msgstr ""
 
-#: mod/friendica.php:115
-msgid "On this server the following remote servers are blocked."
+#: mod/profiles.php:702
+msgid "Example: fishing photography software"
 msgstr ""
 
-#: mod/group.php:31
-msgid "Group created."
+#: mod/profiles.php:707
+msgid "Profile Name:"
 msgstr ""
 
-#: mod/group.php:37
-msgid "Could not create group."
+#: mod/profiles.php:709
+msgid ""
+"This is your <strong>public</strong> profile.<br />It <strong>may</strong> "
+"be visible to anybody using the internet."
 msgstr ""
 
-#: mod/group.php:51 mod/group.php:156
-msgid "Group not found."
+#: mod/profiles.php:710
+msgid "Your Full Name:"
 msgstr ""
 
-#: mod/group.php:65
-msgid "Group name changed."
+#: mod/profiles.php:711
+msgid "Title/Description:"
 msgstr ""
 
-#: mod/group.php:95
-msgid "Save Group"
+#: mod/profiles.php:714
+msgid "Street Address:"
 msgstr ""
 
-#: mod/group.php:100
-msgid "Create a group of contacts/friends."
+#: mod/profiles.php:715
+msgid "Locality/City:"
 msgstr ""
 
-#: mod/group.php:125
-msgid "Group removed."
+#: mod/profiles.php:716
+msgid "Region/State:"
 msgstr ""
 
-#: mod/group.php:127
-msgid "Unable to remove group."
+#: mod/profiles.php:717
+msgid "Postal/Zip Code:"
 msgstr ""
 
-#: mod/group.php:191
-msgid "Delete Group"
+#: mod/profiles.php:718
+msgid "Country:"
 msgstr ""
 
-#: mod/group.php:197
-msgid "Group Editor"
+#: mod/profiles.php:722
+msgid "Who: (if applicable)"
 msgstr ""
 
-#: mod/group.php:202
-msgid "Edit Group Name"
+#: mod/profiles.php:722
+msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
 msgstr ""
 
-#: mod/group.php:212
-msgid "Members"
+#: mod/profiles.php:723
+msgid "Since [date]:"
 msgstr ""
 
-#: mod/group.php:228
-msgid "Remove Contact"
+#: mod/profiles.php:725
+msgid "Tell us about yourself..."
 msgstr ""
 
-#: mod/group.php:252
-msgid "Add Contact"
+#: mod/profiles.php:726
+msgid "XMPP (Jabber) address:"
 msgstr ""
 
-#: mod/hcard.php:14
-msgid "No profile"
+#: mod/profiles.php:726
+msgid ""
+"The XMPP address will be propagated to your contacts so that they can follow "
+"you."
 msgstr ""
 
-#: mod/help.php:45
-msgid "Help:"
+#: mod/profiles.php:727
+msgid "Homepage URL:"
 msgstr ""
 
-#: mod/help.php:60 index.php:305
-msgid "Page not found."
+#: mod/profiles.php:730
+msgid "Religious Views:"
 msgstr ""
 
-#: mod/home.php:42
-#, php-format
-msgid "Welcome to %s"
+#: mod/profiles.php:731
+msgid "Public Keywords:"
 msgstr ""
 
-#: mod/install.php:109
-msgid "Friendica Communications Server - Setup"
+#: mod/profiles.php:731
+msgid "(Used for suggesting potential friends, can be seen by others)"
 msgstr ""
 
-#: mod/install.php:115
-msgid "Could not connect to database."
+#: mod/profiles.php:732
+msgid "Private Keywords:"
 msgstr ""
 
-#: mod/install.php:119
-msgid "Could not create table."
+#: mod/profiles.php:732
+msgid "(Used for searching profiles, never shown to others)"
 msgstr ""
 
-#: mod/install.php:125
-msgid "Your Friendica site database has been installed."
+#: mod/profiles.php:735
+msgid "Musical interests"
 msgstr ""
 
-#: mod/install.php:130
-msgid ""
-"You may need to import the file \"database.sql\" manually using phpmyadmin "
-"or mysql."
+#: mod/profiles.php:736
+msgid "Books, literature"
 msgstr ""
 
-#: mod/install.php:131 mod/install.php:203 mod/install.php:550
-msgid "Please see the file \"INSTALL.txt\"."
+#: mod/profiles.php:737
+msgid "Television"
 msgstr ""
 
-#: mod/install.php:143
-msgid "Database already in use."
+#: mod/profiles.php:738
+msgid "Film/dance/culture/entertainment"
 msgstr ""
 
-#: mod/install.php:200
-msgid "System check"
+#: mod/profiles.php:739
+msgid "Hobbies/Interests"
 msgstr ""
 
-#: mod/install.php:205
-msgid "Check again"
+#: mod/profiles.php:740
+msgid "Love/romance"
 msgstr ""
 
-#: mod/install.php:224
-msgid "Database connection"
+#: mod/profiles.php:741
+msgid "Work/employment"
 msgstr ""
 
-#: mod/install.php:225
-msgid ""
-"In order to install Friendica we need to know how to connect to your "
-"database."
+#: mod/profiles.php:742
+msgid "School/education"
 msgstr ""
 
-#: mod/install.php:226
-msgid ""
-"Please contact your hosting provider or site administrator if you have "
-"questions about these settings."
+#: mod/profiles.php:743
+msgid "Contact information and Social Networks"
 msgstr ""
 
-#: mod/install.php:227
-msgid ""
-"The database you specify below should already exist. If it does not, please "
-"create it before continuing."
+#: mod/profiles.php:784
+msgid "Edit/Manage Profiles"
 msgstr ""
 
-#: mod/install.php:231
-msgid "Database Server Name"
+#: mod/search.php:96
+msgid "Only logged in users are permitted to perform a search."
 msgstr ""
 
-#: mod/install.php:232
-msgid "Database Login Name"
+#: mod/search.php:120
+msgid "Too Many Requests"
 msgstr ""
 
-#: mod/install.php:233
-msgid "Database Login Password"
+#: mod/search.php:121
+msgid "Only one search per minute is permitted for not logged in users."
+msgstr ""
+
+#: mod/search.php:221
+#, php-format
+msgid "Items tagged with: %s"
 msgstr ""
 
-#: mod/install.php:233
-msgid "For security reasons the password must not be empty"
+#: mod/search.php:223 mod/contacts.php:826
+#, php-format
+msgid "Results for: %s"
 msgstr ""
 
-#: mod/install.php:234
-msgid "Database Name"
+#: mod/settings.php:46 mod/admin.php:1588
+msgid "Account"
 msgstr ""
 
-#: mod/install.php:235 mod/install.php:276
-msgid "Site administrator email address"
+#: mod/settings.php:55 mod/admin.php:175
+msgid "Additional features"
 msgstr ""
 
-#: mod/install.php:235 mod/install.php:276
-msgid ""
-"Your account email address must match this in order to use the web admin "
-"panel."
+#: mod/settings.php:63
+msgid "Display"
 msgstr ""
 
-#: mod/install.php:239 mod/install.php:279
-msgid "Please select a default timezone for your website"
+#: mod/settings.php:70 mod/settings.php:887
+msgid "Social Networks"
 msgstr ""
 
-#: mod/install.php:266
-msgid "Site settings"
+#: mod/settings.php:77 mod/admin.php:173 mod/admin.php:1714 mod/admin.php:1777
+msgid "Plugins"
 msgstr ""
 
-#: mod/install.php:280
-msgid "System Language:"
+#: mod/settings.php:91
+msgid "Connected apps"
 msgstr ""
 
-#: mod/install.php:280
-msgid ""
-"Set the default language for your Friendica installation interface and to "
-"send emails."
+#: mod/settings.php:105
+msgid "Remove account"
 msgstr ""
 
-#: mod/install.php:320
-msgid "Could not find a command line version of PHP in the web server PATH."
+#: mod/settings.php:160
+msgid "Missing some important data!"
 msgstr ""
 
-#: mod/install.php:321
-msgid ""
-"If you don't have a command line version of PHP installed on server, you "
-"will not be able to run the background processing. See <a href='https://"
-"github.com/friendica/friendica/blob/master/doc/Install.md#set-up-the-"
-"poller'>'Setup the poller'</a>"
+#: mod/settings.php:163 mod/settings.php:704 mod/contacts.php:833
+msgid "Update"
 msgstr ""
 
-#: mod/install.php:325
-msgid "PHP executable path"
+#: mod/settings.php:269
+msgid "Failed to connect with email account using the settings provided."
 msgstr ""
 
-#: mod/install.php:325
-msgid ""
-"Enter full path to php executable. You can leave this blank to continue the "
-"installation."
+#: mod/settings.php:274
+msgid "Email settings updated."
 msgstr ""
 
-#: mod/install.php:330
-msgid "Command line PHP"
+#: mod/settings.php:289
+msgid "Features updated"
 msgstr ""
 
-#: mod/install.php:339
-msgid "PHP executable is not the php cli binary (could be cgi-fgci version)"
+#: mod/settings.php:359
+msgid "Relocate message has been send to your contacts"
 msgstr ""
 
-#: mod/install.php:340
-msgid "Found PHP version: "
+#: mod/settings.php:378
+msgid "Empty passwords are not allowed. Password unchanged."
 msgstr ""
 
-#: mod/install.php:342
-msgid "PHP cli binary"
+#: mod/settings.php:386
+msgid "Wrong password."
 msgstr ""
 
-#: mod/install.php:353
-msgid ""
-"The command line version of PHP on your system does not have "
-"\"register_argc_argv\" enabled."
+#: mod/settings.php:397
+msgid "Password changed."
 msgstr ""
 
-#: mod/install.php:354
-msgid "This is required for message delivery to work."
+#: mod/settings.php:399
+msgid "Password update failed. Please try again."
 msgstr ""
 
-#: mod/install.php:356
-msgid "PHP register_argc_argv"
+#: mod/settings.php:479
+msgid " Please use a shorter name."
 msgstr ""
 
-#: mod/install.php:379
-msgid ""
-"Error: the \"openssl_pkey_new\" function on this system is not able to "
-"generate encryption keys"
+#: mod/settings.php:481
+msgid " Name too short."
 msgstr ""
 
-#: mod/install.php:380
-msgid ""
-"If running under Windows, please see \"http://www.php.net/manual/en/openssl."
-"installation.php\"."
+#: mod/settings.php:490
+msgid "Wrong Password"
 msgstr ""
 
-#: mod/install.php:382
-msgid "Generate encryption keys"
+#: mod/settings.php:495
+msgid " Not valid email."
 msgstr ""
 
-#: mod/install.php:389
-msgid "libCurl PHP module"
+#: mod/settings.php:501
+msgid " Cannot change to that email."
 msgstr ""
 
-#: mod/install.php:390
-msgid "GD graphics PHP module"
+#: mod/settings.php:557
+msgid "Private forum has no privacy permissions. Using default privacy group."
 msgstr ""
 
-#: mod/install.php:391
-msgid "OpenSSL PHP module"
+#: mod/settings.php:561
+msgid "Private forum has no privacy permissions and no default privacy group."
 msgstr ""
 
-#: mod/install.php:392
-msgid "PDO or MySQLi PHP module"
+#: mod/settings.php:601
+msgid "Settings updated."
 msgstr ""
 
-#: mod/install.php:393
-msgid "mb_string PHP module"
+#: mod/settings.php:677 mod/settings.php:703 mod/settings.php:739
+msgid "Add application"
 msgstr ""
 
-#: mod/install.php:394
-msgid "XML PHP module"
+#: mod/settings.php:678 mod/settings.php:789 mod/settings.php:838
+#: mod/settings.php:905 mod/settings.php:1002 mod/settings.php:1268
+#: mod/admin.php:1154 mod/admin.php:1778 mod/admin.php:2041 mod/admin.php:2115
+#: mod/admin.php:2268
+msgid "Save Settings"
 msgstr ""
 
-#: mod/install.php:395
-msgid "iconv module"
+#: mod/settings.php:681 mod/settings.php:707
+msgid "Consumer Key"
 msgstr ""
 
-#: mod/install.php:399 mod/install.php:401
-msgid "Apache mod_rewrite module"
+#: mod/settings.php:682 mod/settings.php:708
+msgid "Consumer Secret"
 msgstr ""
 
-#: mod/install.php:399
-msgid ""
-"Error: Apache webserver mod-rewrite module is required but not installed."
+#: mod/settings.php:683 mod/settings.php:709
+msgid "Redirect"
 msgstr ""
 
-#: mod/install.php:407
-msgid "Error: libCURL PHP module required but not installed."
+#: mod/settings.php:684 mod/settings.php:710
+msgid "Icon url"
 msgstr ""
 
-#: mod/install.php:411
-msgid ""
-"Error: GD graphics PHP module with JPEG support required but not installed."
+#: mod/settings.php:695
+msgid "You can't edit this application."
 msgstr ""
 
-#: mod/install.php:415
-msgid "Error: openssl PHP module required but not installed."
+#: mod/settings.php:738
+msgid "Connected Apps"
 msgstr ""
 
-#: mod/install.php:419
-msgid "Error: PDO or MySQLi PHP module required but not installed."
+#: mod/settings.php:742
+msgid "Client key starts with"
 msgstr ""
 
-#: mod/install.php:423
-msgid "Error: The MySQL driver for PDO is not installed."
+#: mod/settings.php:743
+msgid "No name"
 msgstr ""
 
-#: mod/install.php:427
-msgid "Error: mb_string PHP module required but not installed."
+#: mod/settings.php:744
+msgid "Remove authorization"
 msgstr ""
 
-#: mod/install.php:431
-msgid "Error: iconv PHP module required but not installed."
+#: mod/settings.php:756
+msgid "No Plugin settings configured"
 msgstr ""
 
-#: mod/install.php:441
-msgid "Error, XML PHP module required but not installed."
+#: mod/settings.php:765
+msgid "Plugin Settings"
 msgstr ""
 
-#: mod/install.php:453
-msgid ""
-"The web installer needs to be able to create a file called \".htconfig.php\" "
-"in the top folder of your web server and it is unable to do so."
+#: mod/settings.php:779 mod/admin.php:2257 mod/admin.php:2258
+msgid "Off"
 msgstr ""
 
-#: mod/install.php:454
-msgid ""
-"This is most often a permission setting, as the web server may not be able "
-"to write files in your folder - even if you can."
+#: mod/settings.php:779 mod/admin.php:2257 mod/admin.php:2258
+msgid "On"
 msgstr ""
 
-#: mod/install.php:455
-msgid ""
-"At the end of this procedure, we will give you a text to save in a file "
-"named .htconfig.php in your Friendica top folder."
+#: mod/settings.php:787
+msgid "Additional Features"
 msgstr ""
 
-#: mod/install.php:456
-msgid ""
-"You can alternatively skip this procedure and perform a manual installation. "
-"Please see the file \"INSTALL.txt\" for instructions."
+#: mod/settings.php:797 mod/settings.php:801
+msgid "General Social Media Settings"
 msgstr ""
 
-#: mod/install.php:459
-msgid ".htconfig.php is writable"
+#: mod/settings.php:807
+msgid "Disable intelligent shortening"
 msgstr ""
 
-#: mod/install.php:469
+#: mod/settings.php:809
 msgid ""
-"Friendica uses the Smarty3 template engine to render its web views. Smarty3 "
-"compiles templates to PHP to speed up rendering."
+"Normally the system tries to find the best link to add to shortened posts. "
+"If this option is enabled then every shortened post will always point to the "
+"original friendica post."
 msgstr ""
 
-#: mod/install.php:470
-msgid ""
-"In order to store these compiled templates, the web server needs to have "
-"write access to the directory view/smarty3/ under the Friendica top level "
-"folder."
+#: mod/settings.php:815
+msgid "Automatically follow any GNU Social (OStatus) followers/mentioners"
 msgstr ""
 
-#: mod/install.php:471
+#: mod/settings.php:817
 msgid ""
-"Please ensure that the user that your web server runs as (e.g. www-data) has "
-"write access to this folder."
+"If you receive a message from an unknown OStatus user, this option decides "
+"what to do. If it is checked, a new contact will be created for every "
+"unknown user."
 msgstr ""
 
-#: mod/install.php:472
-msgid ""
-"Note: as a security measure, you should give the web server write access to "
-"view/smarty3/ only--not the template files (.tpl) that it contains."
+#: mod/settings.php:823
+msgid "Default group for OStatus contacts"
 msgstr ""
 
-#: mod/install.php:475
-msgid "view/smarty3 is writable"
+#: mod/settings.php:831
+msgid "Your legacy GNU Social account"
 msgstr ""
 
-#: mod/install.php:491
+#: mod/settings.php:833
 msgid ""
-"Url rewrite in .htaccess is not working. Check your server configuration."
+"If you enter your old GNU Social/Statusnet account name here (in the format "
+"user@domain.tld), your contacts will be added automatically. The field will "
+"be emptied when done."
 msgstr ""
 
-#: mod/install.php:493
-msgid "Url rewrite is working"
+#: mod/settings.php:836
+msgid "Repair OStatus subscriptions"
 msgstr ""
 
-#: mod/install.php:512
-msgid "ImageMagick PHP extension is not installed"
+#: mod/settings.php:845 mod/settings.php:846
+#, php-format
+msgid "Built-in support for %s connectivity is %s"
 msgstr ""
 
-#: mod/install.php:514
-msgid "ImageMagick PHP extension is installed"
+#: mod/settings.php:845 mod/settings.php:846
+msgid "enabled"
 msgstr ""
 
-#: mod/install.php:516
-msgid "ImageMagick supports GIF"
+#: mod/settings.php:845 mod/settings.php:846
+msgid "disabled"
 msgstr ""
 
-#: mod/install.php:523
-msgid ""
-"The database configuration file \".htconfig.php\" could not be written. "
-"Please use the enclosed text to create a configuration file in your web "
-"server root."
+#: mod/settings.php:846
+msgid "GNU Social (OStatus)"
 msgstr ""
 
-#: mod/install.php:548
-msgid "<h1>What next</h1>"
+#: mod/settings.php:880
+msgid "Email access is disabled on this site."
 msgstr ""
 
-#: mod/install.php:549
-msgid ""
-"IMPORTANT: You will need to [manually] setup a scheduled task for the poller."
+#: mod/settings.php:892
+msgid "Email/Mailbox Setup"
 msgstr ""
 
-#: mod/invite.php:31
-msgid "Total invitation limit exceeded."
+#: mod/settings.php:893
+msgid ""
+"If you wish to communicate with email contacts using this service "
+"(optional), please specify how to connect to your mailbox."
 msgstr ""
 
-#: mod/invite.php:54
-#, php-format
-msgid "%s : Not a valid email address."
+#: mod/settings.php:894
+msgid "Last successful email check:"
 msgstr ""
 
-#: mod/invite.php:79
-msgid "Please join us on Friendica"
+#: mod/settings.php:896
+msgid "IMAP server name:"
 msgstr ""
 
-#: mod/invite.php:90
-msgid "Invitation limit exceeded. Please contact your site administrator."
+#: mod/settings.php:897
+msgid "IMAP port:"
 msgstr ""
 
-#: mod/invite.php:94
-#, php-format
-msgid "%s : Message delivery failed."
+#: mod/settings.php:898
+msgid "Security:"
 msgstr ""
 
-#: mod/invite.php:98
-#, php-format
-msgid "%d message sent."
-msgid_plural "%d messages sent."
-msgstr[0] ""
-msgstr[1] ""
-
-#: mod/invite.php:117
-msgid "You have no more invitations available"
+#: mod/settings.php:898 mod/settings.php:903
+msgid "None"
 msgstr ""
 
-#: mod/invite.php:125
-#, php-format
-msgid ""
-"Visit %s for a list of public sites that you can join. Friendica members on "
-"other sites can all connect with each other, as well as with members of many "
-"other social networks."
+#: mod/settings.php:899
+msgid "Email login name:"
 msgstr ""
 
-#: mod/invite.php:127
-#, php-format
-msgid ""
-"To accept this invitation, please visit and register at %s or any other "
-"public Friendica website."
+#: mod/settings.php:900
+msgid "Email password:"
 msgstr ""
 
-#: mod/invite.php:128
-#, php-format
-msgid ""
-"Friendica sites all inter-connect to create a huge privacy-enhanced social "
-"web that is owned and controlled by its members. They can also connect with "
-"many traditional social networks. See %s for a list of alternate Friendica "
-"sites you can join."
+#: mod/settings.php:901
+msgid "Reply-to address:"
 msgstr ""
 
-#: mod/invite.php:132
-msgid ""
-"Our apologies. This system is not currently configured to connect with other "
-"public sites or invite members."
+#: mod/settings.php:902
+msgid "Send public posts to all email contacts:"
 msgstr ""
 
-#: mod/invite.php:135
-#, php-format
-msgid "To accept this invitation, please visit and register at %s."
+#: mod/settings.php:903
+msgid "Action after import:"
 msgstr ""
 
-#: mod/invite.php:136
-msgid ""
-"Friendica sites all inter-connect to create a huge privacy-enhanced social "
-"web that is owned and controlled by its members. They can also connect with "
-"many traditional social networks."
+#: mod/settings.php:903
+msgid "Move to folder"
 msgstr ""
 
-#: mod/invite.php:142
-msgid "Send invitations"
+#: mod/settings.php:904
+msgid "Move to folder:"
 msgstr ""
 
-#: mod/invite.php:143
-msgid "Enter email addresses, one per line:"
+#: mod/settings.php:940 mod/admin.php:1041
+msgid "No special theme for mobile devices"
 msgstr ""
 
-#: mod/invite.php:144 mod/message.php:332 mod/message.php:515
-#: mod/wallmessage.php:138
-msgid "Your message:"
+#: mod/settings.php:1000
+msgid "Display Settings"
 msgstr ""
 
-#: mod/invite.php:145
-msgid ""
-"You are cordially invited to join me and other close friends on Friendica - "
-"and help us to create a better social web."
+#: mod/settings.php:1006 mod/settings.php:1029
+msgid "Display Theme:"
 msgstr ""
 
-#: mod/invite.php:147
-msgid "You will need to supply this invitation code: $invite_code"
+#: mod/settings.php:1007
+msgid "Mobile Theme:"
 msgstr ""
 
-#: mod/invite.php:147
-msgid ""
-"Once you have registered, please connect with me via my profile page at:"
+#: mod/settings.php:1008
+msgid "Suppress warning of insecure networks"
 msgstr ""
 
-#: mod/invite.php:149
+#: mod/settings.php:1008
 msgid ""
-"For more information about the Friendica project and why we feel it is "
-"important, please visit http://friendi.ca"
+"Should the system suppress the warning that the current group contains "
+"members of networks that can't receive non public postings."
 msgstr ""
 
-#: mod/item.php:119
-msgid "Unable to locate original post."
+#: mod/settings.php:1009
+msgid "Update browser every xx seconds"
 msgstr ""
 
-#: mod/item.php:346
-msgid "Empty post discarded."
+#: mod/settings.php:1009
+msgid "Minimum of 10 seconds. Enter -1 to disable it."
 msgstr ""
 
-#: mod/item.php:903
-msgid "System error. Post not saved."
+#: mod/settings.php:1010
+msgid "Number of items to display per page:"
 msgstr ""
 
-#: mod/item.php:994
-#, php-format
-msgid ""
-"This message was sent to you by %s, a member of the Friendica social network."
+#: mod/settings.php:1010 mod/settings.php:1011
+msgid "Maximum of 100 items"
 msgstr ""
 
-#: mod/item.php:996
-#, php-format
-msgid "You may visit them online at %s"
+#: mod/settings.php:1011
+msgid "Number of items to display per page when viewed from mobile device:"
 msgstr ""
 
-#: mod/item.php:997
-msgid ""
-"Please contact the sender by replying to this post if you do not wish to "
-"receive these messages."
+#: mod/settings.php:1012
+msgid "Don't show emoticons"
 msgstr ""
 
-#: mod/item.php:1001
-#, php-format
-msgid "%s posted an update."
+#: mod/settings.php:1013
+msgid "Calendar"
 msgstr ""
 
-#: mod/localtime.php:26
-msgid "Time Conversion"
+#: mod/settings.php:1014
+msgid "Beginning of week:"
 msgstr ""
 
-#: mod/localtime.php:28
-msgid ""
-"Friendica provides this service for sharing events with other networks and "
-"friends in unknown timezones."
+#: mod/settings.php:1015
+msgid "Don't show notices"
 msgstr ""
 
-#: mod/localtime.php:32
-#, php-format
-msgid "UTC time: %s"
+#: mod/settings.php:1016
+msgid "Infinite scroll"
 msgstr ""
 
-#: mod/localtime.php:35
-#, php-format
-msgid "Current timezone: %s"
+#: mod/settings.php:1017
+msgid "Automatic updates only at the top of the network page"
 msgstr ""
 
-#: mod/localtime.php:38
-#, php-format
-msgid "Converted localtime: %s"
+#: mod/settings.php:1017
+msgid ""
+"When disabled, the network page is updated all the time, which could be "
+"confusing while reading."
 msgstr ""
 
-#: mod/localtime.php:43
-msgid "Please select your timezone:"
+#: mod/settings.php:1018
+msgid "Bandwith Saver Mode"
 msgstr ""
 
-#: mod/lostpass.php:22
-msgid "No valid account found."
+#: mod/settings.php:1018
+msgid ""
+"When enabled, embedded content is not displayed on automatic updates, they "
+"only show on page reload."
 msgstr ""
 
-#: mod/lostpass.php:38
-msgid "Password reset request issued. Check your email."
+#: mod/settings.php:1020
+msgid "General Theme Settings"
 msgstr ""
 
-#: mod/lostpass.php:44
-#, php-format
-msgid ""
-"\n"
-"\t\tDear %1$s,\n"
-"\t\t\tA request was recently received at \"%2$s\" to reset your account\n"
-"\t\tpassword. In order to confirm this request, please select the "
-"verification link\n"
-"\t\tbelow or paste it into your web browser address bar.\n"
-"\n"
-"\t\tIf you did NOT request this change, please DO NOT follow the link\n"
-"\t\tprovided and ignore and/or delete this email.\n"
-"\n"
-"\t\tYour password will not be changed unless we can verify that you\n"
-"\t\tissued this request."
+#: mod/settings.php:1021
+msgid "Custom Theme Settings"
 msgstr ""
 
-#: mod/lostpass.php:55
-#, php-format
-msgid ""
-"\n"
-"\t\tFollow this link to verify your identity:\n"
-"\n"
-"\t\t%1$s\n"
-"\n"
-"\t\tYou will then receive a follow-up message containing the new password.\n"
-"\t\tYou may change that password from your account settings page after "
-"logging in.\n"
-"\n"
-"\t\tThe login details are as follows:\n"
-"\n"
-"\t\tSite Location:\t%2$s\n"
-"\t\tLogin Name:\t%3$s"
+#: mod/settings.php:1022
+msgid "Content Settings"
 msgstr ""
 
-#: mod/lostpass.php:74
-#, php-format
-msgid "Password reset requested at %s"
+#: mod/settings.php:1023 view/theme/duepuntozero/config.php:67
+#: view/theme/frio/config.php:70 view/theme/quattro/config.php:73
+#: view/theme/vier/config.php:116
+msgid "Theme settings"
 msgstr ""
 
-#: mod/lostpass.php:94
-msgid ""
-"Request could not be verified. (You may have previously submitted it.) "
-"Password reset failed."
+#: mod/settings.php:1107
+msgid "Account Types"
 msgstr ""
 
-#: mod/lostpass.php:113 boot.php:875
-msgid "Password Reset"
+#: mod/settings.php:1108
+msgid "Personal Page Subtypes"
 msgstr ""
 
-#: mod/lostpass.php:114
-msgid "Your password has been reset as requested."
+#: mod/settings.php:1109
+msgid "Community Forum Subtypes"
 msgstr ""
 
-#: mod/lostpass.php:115
-msgid "Your new password is"
+#: mod/settings.php:1116
+msgid "Personal Page"
 msgstr ""
 
-#: mod/lostpass.php:116
-msgid "Save or copy your new password - and then"
+#: mod/settings.php:1117
+msgid "Account for a personal profile."
 msgstr ""
 
-#: mod/lostpass.php:117
-msgid "click here to login"
+#: mod/settings.php:1120
+msgid "Organisation Page"
 msgstr ""
 
-#: mod/lostpass.php:118
+#: mod/settings.php:1121
 msgid ""
-"Your password may be changed from the <em>Settings</em> page after "
-"successful login."
+"Account for an organisation that automatically approves contact requests as "
+"\"Followers\"."
 msgstr ""
 
-#: mod/lostpass.php:128
-#, php-format
-msgid ""
-"\n"
-"\t\t\t\tDear %1$s,\n"
-"\t\t\t\t\tYour password has been changed as requested. Please retain this\n"
-"\t\t\t\tinformation for your records (or change your password immediately "
-"to\n"
-"\t\t\t\tsomething that you will remember).\n"
-"\t\t\t"
+#: mod/settings.php:1124
+msgid "News Page"
 msgstr ""
 
-#: mod/lostpass.php:134
-#, php-format
+#: mod/settings.php:1125
 msgid ""
-"\n"
-"\t\t\t\tYour login details are as follows:\n"
-"\n"
-"\t\t\t\tSite Location:\t%1$s\n"
-"\t\t\t\tLogin Name:\t%2$s\n"
-"\t\t\t\tPassword:\t%3$s\n"
-"\n"
-"\t\t\t\tYou may change that password from your account settings page after "
-"logging in.\n"
-"\t\t\t"
+"Account for a news reflector that automatically approves contact requests as "
+"\"Followers\"."
 msgstr ""
 
-#: mod/lostpass.php:150
-#, php-format
-msgid "Your password has been changed at %s"
+#: mod/settings.php:1128
+msgid "Community Forum"
 msgstr ""
 
-#: mod/lostpass.php:162
-msgid "Forgot your Password?"
+#: mod/settings.php:1129
+msgid "Account for community discussions."
 msgstr ""
 
-#: mod/lostpass.php:163
+#: mod/settings.php:1132
+msgid "Normal Account Page"
+msgstr ""
+
+#: mod/settings.php:1133
 msgid ""
-"Enter your email address and submit to have your password reset. Then check "
-"your email for further instructions."
+"Account for a regular personal profile that requires manual approval of "
+"\"Friends\" and \"Followers\"."
+msgstr ""
+
+#: mod/settings.php:1136
+msgid "Soapbox Page"
+msgstr ""
+
+#: mod/settings.php:1137
+msgid ""
+"Account for a public profile that automatically approves contact requests as "
+"\"Followers\"."
 msgstr ""
 
-#: mod/lostpass.php:164 boot.php:863
-msgid "Nickname or Email: "
+#: mod/settings.php:1140
+msgid "Public Forum"
 msgstr ""
 
-#: mod/lostpass.php:165
-msgid "Reset"
+#: mod/settings.php:1141
+msgid "Automatically approves all contact requests."
 msgstr ""
 
-#: mod/manage.php:153
-msgid "Manage Identities and/or Pages"
+#: mod/settings.php:1144
+msgid "Automatic Friend Page"
 msgstr ""
 
-#: mod/manage.php:154
+#: mod/settings.php:1145
 msgid ""
-"Toggle between different identities or community/group pages which share "
-"your account details or which you have been granted \"manage\" permissions"
+"Account for a popular profile that automatically approves contact requests "
+"as \"Friends\"."
 msgstr ""
 
-#: mod/manage.php:155
-msgid "Select an identity to manage: "
+#: mod/settings.php:1148
+msgid "Private Forum [Experimental]"
 msgstr ""
 
-#: mod/match.php:39
-msgid "No keywords to match. Please add keywords to your default profile."
+#: mod/settings.php:1149
+msgid "Requires manual approval of contact requests."
 msgstr ""
 
-#: mod/match.php:92
-msgid "is interested in:"
+#: mod/settings.php:1160
+msgid "OpenID:"
 msgstr ""
 
-#: mod/match.php:106
-msgid "Profile Match"
+#: mod/settings.php:1160
+msgid "(Optional) Allow this OpenID to login to this account."
 msgstr ""
 
-#: mod/message.php:63 mod/wallmessage.php:53
-msgid "No recipient selected."
+#: mod/settings.php:1168
+msgid "Publish your default profile in your local site directory?"
 msgstr ""
 
-#: mod/message.php:67
-msgid "Unable to locate contact information."
+#: mod/settings.php:1168
+msgid "Your profile may be visible in public."
 msgstr ""
 
-#: mod/message.php:70 mod/wallmessage.php:59
-msgid "Message could not be sent."
+#: mod/settings.php:1174
+msgid "Publish your default profile in the global social directory?"
 msgstr ""
 
-#: mod/message.php:73 mod/wallmessage.php:62
-msgid "Message collection failure."
+#: mod/settings.php:1181
+msgid "Hide your contact/friend list from viewers of your default profile?"
 msgstr ""
 
-#: mod/message.php:76 mod/wallmessage.php:65
-msgid "Message sent."
+#: mod/settings.php:1185
+msgid ""
+"If enabled, posting public messages to Diaspora and other networks isn't "
+"possible."
 msgstr ""
 
-#: mod/message.php:205
-msgid "Do you really want to delete this message?"
+#: mod/settings.php:1190
+msgid "Allow friends to post to your profile page?"
 msgstr ""
 
-#: mod/message.php:225
-msgid "Message deleted."
+#: mod/settings.php:1195
+msgid "Allow friends to tag your posts?"
 msgstr ""
 
-#: mod/message.php:255
-msgid "Conversation removed."
+#: mod/settings.php:1200
+msgid "Allow us to suggest you as a potential friend to new members?"
 msgstr ""
 
-#: mod/message.php:322 mod/wallmessage.php:129
-msgid "Send Private Message"
+#: mod/settings.php:1205
+msgid "Permit unknown people to send you private mail?"
 msgstr ""
 
-#: mod/message.php:323 mod/message.php:510 mod/wallmessage.php:131
-msgid "To:"
+#: mod/settings.php:1213
+msgid "Profile is <strong>not published</strong>."
 msgstr ""
 
-#: mod/message.php:328 mod/message.php:512 mod/wallmessage.php:132
-msgid "Subject:"
+#: mod/settings.php:1221
+#, php-format
+msgid "Your Identity Address is <strong>'%s'</strong> or '%s'."
 msgstr ""
 
-#: mod/message.php:364
-msgid "No messages."
+#: mod/settings.php:1228
+msgid "Automatically expire posts after this many days:"
 msgstr ""
 
-#: mod/message.php:403
-msgid "Message not available."
+#: mod/settings.php:1228
+msgid "If empty, posts will not expire. Expired posts will be deleted"
 msgstr ""
 
-#: mod/message.php:478
-msgid "Delete message"
+#: mod/settings.php:1229
+msgid "Advanced expiration settings"
 msgstr ""
 
-#: mod/message.php:503 mod/message.php:591
-msgid "Delete conversation"
+#: mod/settings.php:1230
+msgid "Advanced Expiration"
 msgstr ""
 
-#: mod/message.php:505
-msgid ""
-"No secure communications available. You <strong>may</strong> be able to "
-"respond from the sender's profile page."
+#: mod/settings.php:1231
+msgid "Expire posts:"
 msgstr ""
 
-#: mod/message.php:509
-msgid "Send Reply"
+#: mod/settings.php:1232
+msgid "Expire personal notes:"
 msgstr ""
 
-#: mod/message.php:561
-#, php-format
-msgid "Unknown sender - %s"
+#: mod/settings.php:1233
+msgid "Expire starred posts:"
 msgstr ""
 
-#: mod/message.php:563
-#, php-format
-msgid "You and %s"
+#: mod/settings.php:1234
+msgid "Expire photos:"
 msgstr ""
 
-#: mod/message.php:565
-#, php-format
-msgid "%s and You"
+#: mod/settings.php:1235
+msgid "Only expire posts by others:"
 msgstr ""
 
-#: mod/message.php:594
-msgid "D, d M Y - g:i A"
+#: mod/settings.php:1266
+msgid "Account Settings"
 msgstr ""
 
-#: mod/message.php:597
-#, php-format
-msgid "%d message"
-msgid_plural "%d messages"
-msgstr[0] ""
-msgstr[1] ""
-
-#: mod/mood.php:136
-msgid "Mood"
+#: mod/settings.php:1274
+msgid "Password Settings"
 msgstr ""
 
-#: mod/mood.php:137
-msgid "Set your current mood and tell your friends"
+#: mod/settings.php:1276
+msgid "Leave password fields blank unless changing"
 msgstr ""
 
-#: mod/network.php:561
-#, php-format
-msgid ""
-"Warning: This group contains %s member from a network that doesn't allow non "
-"public messages."
-msgid_plural ""
-"Warning: This group contains %s members from a network that doesn't allow "
-"non public messages."
-msgstr[0] ""
-msgstr[1] ""
-
-#: mod/network.php:564
-msgid "Messages in this group won't be send to these receivers."
+#: mod/settings.php:1277
+msgid "Current Password:"
 msgstr ""
 
-#: mod/network.php:684
-msgid "Private messages to this person are at risk of public disclosure."
+#: mod/settings.php:1277 mod/settings.php:1278
+msgid "Your current password to confirm the changes"
 msgstr ""
 
-#: mod/network.php:688
-msgid "Invalid contact."
+#: mod/settings.php:1278
+msgid "Password:"
 msgstr ""
 
-#: mod/network.php:892
-msgid "Commented Order"
+#: mod/settings.php:1282
+msgid "Basic Settings"
 msgstr ""
 
-#: mod/network.php:895
-msgid "Sort by Comment Date"
+#: mod/settings.php:1284
+msgid "Email Address:"
 msgstr ""
 
-#: mod/network.php:900
-msgid "Posted Order"
+#: mod/settings.php:1285
+msgid "Your Timezone:"
 msgstr ""
 
-#: mod/network.php:903
-msgid "Sort by Post Date"
+#: mod/settings.php:1286
+msgid "Your Language:"
 msgstr ""
 
-#: mod/network.php:914
-msgid "Posts that mention or involve you"
+#: mod/settings.php:1286
+msgid ""
+"Set the language we use to show you friendica interface and to send you "
+"emails"
 msgstr ""
 
-#: mod/network.php:922
-msgid "New"
+#: mod/settings.php:1287
+msgid "Default Post Location:"
 msgstr ""
 
-#: mod/network.php:925
-msgid "Activity Stream - by date"
+#: mod/settings.php:1288
+msgid "Use Browser Location:"
 msgstr ""
 
-#: mod/network.php:933
-msgid "Shared Links"
+#: mod/settings.php:1291
+msgid "Security and Privacy Settings"
 msgstr ""
 
-#: mod/network.php:936
-msgid "Interesting Links"
+#: mod/settings.php:1293
+msgid "Maximum Friend Requests/Day:"
 msgstr ""
 
-#: mod/network.php:944
-msgid "Starred"
+#: mod/settings.php:1293 mod/settings.php:1323
+msgid "(to prevent spam abuse)"
 msgstr ""
 
-#: mod/network.php:947
-msgid "Favourite Posts"
+#: mod/settings.php:1294
+msgid "Default Post Permissions"
 msgstr ""
 
-#: mod/notifications.php:38
-msgid "Invalid request identifier."
+#: mod/settings.php:1295
+msgid "(click to open/close)"
 msgstr ""
 
-#: mod/notifications.php:47 mod/notifications.php:183 mod/notifications.php:230
-msgid "Discard"
+#: mod/settings.php:1306
+msgid "Default Private Post"
 msgstr ""
 
-#: mod/notifications.php:108
-msgid "Network Notifications"
+#: mod/settings.php:1307
+msgid "Default Public Post"
 msgstr ""
 
-#: mod/notifications.php:114 mod/notify.php:73
-msgid "System Notifications"
+#: mod/settings.php:1311
+msgid "Default Permissions for New Posts"
 msgstr ""
 
-#: mod/notifications.php:120
-msgid "Personal Notifications"
+#: mod/settings.php:1323
+msgid "Maximum private messages per day from unknown people:"
 msgstr ""
 
-#: mod/notifications.php:126
-msgid "Home Notifications"
+#: mod/settings.php:1326
+msgid "Notification Settings"
 msgstr ""
 
-#: mod/notifications.php:155
-msgid "Show Ignored Requests"
+#: mod/settings.php:1327
+msgid "By default post a status message when:"
 msgstr ""
 
-#: mod/notifications.php:155
-msgid "Hide Ignored Requests"
+#: mod/settings.php:1328
+msgid "accepting a friend request"
 msgstr ""
 
-#: mod/notifications.php:167 mod/notifications.php:237
-msgid "Notification type: "
+#: mod/settings.php:1329
+msgid "joining a forum/community"
 msgstr ""
 
-#: mod/notifications.php:170
-#, php-format
-msgid "suggested by %s"
+#: mod/settings.php:1330
+msgid "making an <em>interesting</em> profile change"
 msgstr ""
 
-#: mod/notifications.php:176 mod/notifications.php:255
-msgid "Post a new friend activity"
+#: mod/settings.php:1331
+msgid "Send a notification email when:"
 msgstr ""
 
-#: mod/notifications.php:176 mod/notifications.php:255
-msgid "if applicable"
+#: mod/settings.php:1332
+msgid "You receive an introduction"
 msgstr ""
 
-#: mod/notifications.php:198
-msgid "Claims to be known to you: "
+#: mod/settings.php:1333
+msgid "Your introductions are confirmed"
 msgstr ""
 
-#: mod/notifications.php:199
-msgid "yes"
+#: mod/settings.php:1334
+msgid "Someone writes on your profile wall"
 msgstr ""
 
-#: mod/notifications.php:199
-msgid "no"
+#: mod/settings.php:1335
+msgid "Someone writes a followup comment"
 msgstr ""
 
-#: mod/notifications.php:200 mod/notifications.php:205
-msgid "Shall your connection be bidirectional or not?"
+#: mod/settings.php:1336
+msgid "You receive a private message"
 msgstr ""
 
-#: mod/notifications.php:201 mod/notifications.php:206
-#, php-format
-msgid ""
-"Accepting %s as a friend allows %s to subscribe to your posts, and you will "
-"also receive updates from them in your news feed."
+#: mod/settings.php:1337
+msgid "You receive a friend suggestion"
 msgstr ""
 
-#: mod/notifications.php:202
-#, php-format
-msgid ""
-"Accepting %s as a subscriber allows them to subscribe to your posts, but you "
-"will not receive updates from them in your news feed."
+#: mod/settings.php:1338
+msgid "You are tagged in a post"
 msgstr ""
 
-#: mod/notifications.php:207
-#, php-format
-msgid ""
-"Accepting %s as a sharer allows them to subscribe to your posts, but you "
-"will not receive updates from them in your news feed."
+#: mod/settings.php:1339
+msgid "You are poked/prodded/etc. in a post"
 msgstr ""
 
-#: mod/notifications.php:218
-msgid "Friend"
+#: mod/settings.php:1341
+msgid "Activate desktop notifications"
 msgstr ""
 
-#: mod/notifications.php:219
-msgid "Sharer"
+#: mod/settings.php:1341
+msgid "Show desktop popup on new notifications"
 msgstr ""
 
-#: mod/notifications.php:219
-msgid "Subscriber"
+#: mod/settings.php:1343
+msgid "Text-only notification emails"
 msgstr ""
 
-#: mod/notifications.php:275
-msgid "No introductions."
+#: mod/settings.php:1345
+msgid "Send text only notification emails, without the html part"
 msgstr ""
 
-#: mod/notifications.php:316
-msgid "Show unread"
+#: mod/settings.php:1347
+msgid "Advanced Account/Page Type Settings"
 msgstr ""
 
-#: mod/notifications.php:316
-msgid "Show all"
+#: mod/settings.php:1348
+msgid "Change the behaviour of this account for special situations"
 msgstr ""
 
-#: mod/notifications.php:322
-#, php-format
-msgid "No more %s notifications."
+#: mod/settings.php:1351
+msgid "Relocate"
 msgstr ""
 
-#: mod/notify.php:69
-msgid "No more system notifications."
+#: mod/settings.php:1352
+msgid ""
+"If you have moved this profile from another server, and some of your "
+"contacts don't receive your updates, try pushing this button."
 msgstr ""
 
-#: mod/oexchange.php:25
-msgid "Post successful."
+#: mod/settings.php:1353
+msgid "Resend relocate message to contacts"
 msgstr ""
 
-#: mod/openid.php:25
-msgid "OpenID protocol error. No ID returned."
+#: mod/suggest.php:30
+msgid "Do you really want to delete this suggestion?"
 msgstr ""
 
-#: mod/openid.php:61
+#: mod/suggest.php:71
 msgid ""
-"Account not found and OpenID registration is not permitted on this site."
+"No suggestions available. If this is a new site, please try again in 24 "
+"hours."
 msgstr ""
 
-#: mod/ostatus_subscribe.php:17
-msgid "Subscribing to OStatus contacts"
+#: mod/suggest.php:84 mod/suggest.php:104
+msgid "Ignore/Hide"
 msgstr ""
 
-#: mod/ostatus_subscribe.php:28
-msgid "No contact provided."
+#: mod/wall_attach.php:96
+msgid "Sorry, maybe your upload is bigger than the PHP configuration allows"
 msgstr ""
 
-#: mod/ostatus_subscribe.php:34
-msgid "Couldn't fetch information for contact."
+#: mod/wall_attach.php:96
+msgid "Or - did you try to upload an empty file?"
 msgstr ""
 
-#: mod/ostatus_subscribe.php:43
-msgid "Couldn't fetch friends for contact."
+#: mod/wall_attach.php:107
+#, php-format
+msgid "File exceeds size limit of %s"
 msgstr ""
 
-#: mod/ostatus_subscribe.php:57 mod/repair_ostatus.php:47
-msgid "Done"
+#: mod/wall_attach.php:151 mod/wall_attach.php:167
+msgid "File upload failed."
 msgstr ""
 
-#: mod/ostatus_subscribe.php:71
-msgid "success"
+#: mod/admin.php:99
+msgid "Theme settings updated."
 msgstr ""
 
-#: mod/ostatus_subscribe.php:73
-msgid "failed"
+#: mod/admin.php:171 mod/admin.php:1153
+msgid "Site"
 msgstr ""
 
-#: mod/ostatus_subscribe.php:81 mod/repair_ostatus.php:53
-msgid "Keep this window open until done."
+#: mod/admin.php:172 mod/admin.php:1087 mod/admin.php:1596 mod/admin.php:1612
+msgid "Users"
 msgstr ""
 
-#: mod/p.php:13
-msgid "Not Extended"
+#: mod/admin.php:174 mod/admin.php:1990 mod/admin.php:2040
+msgid "Themes"
 msgstr ""
 
-#: mod/photos.php:97 mod/photos.php:1903
-msgid "Recent Photos"
+#: mod/admin.php:176
+msgid "DB updates"
 msgstr ""
 
-#: mod/photos.php:100 mod/photos.php:1331 mod/photos.php:1905
-msgid "Upload New Photos"
+#: mod/admin.php:177 mod/admin.php:584
+msgid "Inspect Queue"
 msgstr ""
 
-#: mod/photos.php:115 mod/settings.php:39
-msgid "everybody"
+#: mod/admin.php:178 mod/admin.php:298
+msgid "Server Blocklist"
 msgstr ""
 
-#: mod/photos.php:179
-msgid "Contact information unavailable"
+#: mod/admin.php:179 mod/admin.php:550
+msgid "Federation Statistics"
 msgstr ""
 
-#: mod/photos.php:200
-msgid "Album not found."
+#: mod/admin.php:180 mod/admin.php:375
+msgid "Delete Item"
 msgstr ""
 
-#: mod/photos.php:233 mod/photos.php:245 mod/photos.php:1275
-msgid "Delete Album"
+#: mod/admin.php:194 mod/admin.php:205 mod/admin.php:2114
+msgid "Logs"
 msgstr ""
 
-#: mod/photos.php:243
-msgid "Do you really want to delete this photo album and all its photos?"
+#: mod/admin.php:195 mod/admin.php:2182
+msgid "View Logs"
 msgstr ""
 
-#: mod/photos.php:326 mod/photos.php:337 mod/photos.php:1601
-msgid "Delete Photo"
+#: mod/admin.php:196
+msgid "probe address"
 msgstr ""
 
-#: mod/photos.php:335
-msgid "Do you really want to delete this photo?"
+#: mod/admin.php:197
+msgid "check webfinger"
 msgstr ""
 
-#: mod/photos.php:716
-#, php-format
-msgid "%1$s was tagged in %2$s by %3$s"
+#: mod/admin.php:204
+msgid "Plugin Features"
 msgstr ""
 
-#: mod/photos.php:716
-msgid "a photo"
+#: mod/admin.php:206
+msgid "diagnostics"
 msgstr ""
 
-#: mod/photos.php:816 mod/profile_photo.php:156 mod/wall_upload.php:182
-#, php-format
-msgid "Image exceeds size limit of %s"
+#: mod/admin.php:207
+msgid "User registrations waiting for confirmation"
 msgstr ""
 
-#: mod/photos.php:824
-msgid "Image file is empty."
+#: mod/admin.php:289
+msgid "The blocked domain"
 msgstr ""
 
-#: mod/photos.php:857 mod/profile_photo.php:165 mod/wall_upload.php:219
-msgid "Unable to process image."
+#: mod/admin.php:290 mod/admin.php:303
+msgid "The reason why you blocked this domain."
 msgstr ""
 
-#: mod/photos.php:886 mod/profile_photo.php:315 mod/wall_upload.php:258
-msgid "Image upload failed."
+#: mod/admin.php:291
+msgid "Delete domain"
 msgstr ""
 
-#: mod/photos.php:991
-msgid "No photos selected"
+#: mod/admin.php:291
+msgid "Check to delete this entry from the blocklist"
 msgstr ""
 
-#: mod/photos.php:1094 mod/videos.php:312
-msgid "Access to this item is restricted."
+#: mod/admin.php:297 mod/admin.php:374 mod/admin.php:549 mod/admin.php:583
+#: mod/admin.php:672 mod/admin.php:1152 mod/admin.php:1595 mod/admin.php:1713
+#: mod/admin.php:1776 mod/admin.php:1989 mod/admin.php:2039 mod/admin.php:2113
+#: mod/admin.php:2181
+msgid "Administration"
 msgstr ""
 
-#: mod/photos.php:1154
-#, php-format
-msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."
+#: mod/admin.php:299
+msgid ""
+"This page can be used to define a black list of servers from the federated "
+"network that are not allowed to interact with your node. For all entered "
+"domains you should also give a reason why you have blocked the remote server."
 msgstr ""
 
-#: mod/photos.php:1191
-msgid "Upload Photos"
+#: mod/admin.php:300
+msgid ""
+"The list of blocked servers will be made publically available on the /"
+"friendica page so that your users and people investigating communication "
+"problems can find the reason easily."
 msgstr ""
 
-#: mod/photos.php:1195 mod/photos.php:1270
-msgid "New album name: "
+#: mod/admin.php:301
+msgid "Add new entry to block list"
 msgstr ""
 
-#: mod/photos.php:1196
-msgid "or existing album name: "
+#: mod/admin.php:302
+msgid "Server Domain"
 msgstr ""
 
-#: mod/photos.php:1197
-msgid "Do not show a status post for this upload"
+#: mod/admin.php:302
+msgid ""
+"The domain of the new server to add to the block list. Do not include the "
+"protocol."
 msgstr ""
 
-#: mod/photos.php:1208 mod/photos.php:1605 mod/settings.php:1309
-msgid "Show to Groups"
+#: mod/admin.php:303
+msgid "Block reason"
 msgstr ""
 
-#: mod/photos.php:1209 mod/photos.php:1606 mod/settings.php:1310
-msgid "Show to Contacts"
+#: mod/admin.php:304
+msgid "Add Entry"
 msgstr ""
 
-#: mod/photos.php:1210
-msgid "Private Photo"
+#: mod/admin.php:305
+msgid "Save changes to the blocklist"
 msgstr ""
 
-#: mod/photos.php:1211
-msgid "Public Photo"
+#: mod/admin.php:306
+msgid "Current Entries in the Blocklist"
 msgstr ""
 
-#: mod/photos.php:1281
-msgid "Edit Album"
+#: mod/admin.php:309
+msgid "Delete entry from blocklist"
 msgstr ""
 
-#: mod/photos.php:1286
-msgid "Show Newest First"
+#: mod/admin.php:312
+msgid "Delete entry from blocklist?"
 msgstr ""
 
-#: mod/photos.php:1288
-msgid "Show Oldest First"
+#: mod/admin.php:337
+msgid "Server added to blocklist."
 msgstr ""
 
-#: mod/photos.php:1317 mod/photos.php:1888
-msgid "View Photo"
+#: mod/admin.php:353
+msgid "Site blocklist updated."
 msgstr ""
 
-#: mod/photos.php:1362
-msgid "Permission denied. Access to this item may be restricted."
+#: mod/admin.php:376
+msgid "Delete this Item"
 msgstr ""
 
-#: mod/photos.php:1364
-msgid "Photo not available"
+#: mod/admin.php:377
+msgid ""
+"On this page you can delete an item from your node. If the item is a top "
+"level posting, the entire thread will be deleted."
 msgstr ""
 
-#: mod/photos.php:1425
-msgid "View photo"
+#: mod/admin.php:378
+msgid ""
+"You need to know the GUID of the item. You can find it e.g. by looking at "
+"the display URL. The last part of http://example.com/display/123456 is the "
+"GUID, here 123456."
 msgstr ""
 
-#: mod/photos.php:1425
-msgid "Edit photo"
+#: mod/admin.php:379
+msgid "GUID"
 msgstr ""
 
-#: mod/photos.php:1426
-msgid "Use as profile photo"
+#: mod/admin.php:379
+msgid "The GUID of the item you want to delete."
 msgstr ""
 
-#: mod/photos.php:1451
-msgid "View Full Size"
+#: mod/admin.php:416
+msgid "Item marked for deletion."
 msgstr ""
 
-#: mod/photos.php:1541
-msgid "Tags: "
+#: mod/admin.php:480
+msgid "unknown"
 msgstr ""
 
-#: mod/photos.php:1544
-msgid "[Remove any tag]"
+#: mod/admin.php:543
+msgid ""
+"This page offers you some numbers to the known part of the federated social "
+"network your Friendica node is part of. These numbers are not complete but "
+"only reflect the part of the network your node is aware of."
 msgstr ""
 
-#: mod/photos.php:1587
-msgid "New album name"
+#: mod/admin.php:544
+msgid ""
+"The <em>Auto Discovered Contact Directory</em> feature is not enabled, it "
+"will improve the data displayed here."
 msgstr ""
 
-#: mod/photos.php:1588
-msgid "Caption"
+#: mod/admin.php:556
+#, php-format
+msgid "Currently this node is aware of %d nodes from the following platforms:"
 msgstr ""
 
-#: mod/photos.php:1589
-msgid "Add a Tag"
+#: mod/admin.php:586
+msgid "ID"
+msgstr ""
+
+#: mod/admin.php:587
+msgid "Recipient Name"
 msgstr ""
 
-#: mod/photos.php:1589
-msgid "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
+#: mod/admin.php:588
+msgid "Recipient Profile"
 msgstr ""
 
-#: mod/photos.php:1590
-msgid "Do not rotate"
+#: mod/admin.php:590
+msgid "Created"
 msgstr ""
 
-#: mod/photos.php:1591
-msgid "Rotate CW (right)"
+#: mod/admin.php:591
+msgid "Last Tried"
 msgstr ""
 
-#: mod/photos.php:1592
-msgid "Rotate CCW (left)"
+#: mod/admin.php:592
+msgid ""
+"This page lists the content of the queue for outgoing postings. These are "
+"postings the initial delivery failed for. They will be resend later and "
+"eventually deleted if the delivery fails permanently."
 msgstr ""
 
-#: mod/photos.php:1607
-msgid "Private photo"
+#: mod/admin.php:617
+#, php-format
+msgid ""
+"Your DB still runs with MyISAM tables. You should change the engine type to "
+"InnoDB. As Friendica will use InnoDB only features in the future, you should "
+"change this! See <a href=\"%s\">here</a> for a guide that may be helpful "
+"converting the table engines. You may also use the command <tt>php include/"
+"dbstructure.php toinnodb</tt> of your Friendica installation for an "
+"automatic conversion.<br />"
 msgstr ""
 
-#: mod/photos.php:1608
-msgid "Public photo"
+#: mod/admin.php:626
+msgid ""
+"The database update failed. Please run \"php include/dbstructure.php update"
+"\" from the command line and have a look at the errors that might appear."
 msgstr ""
 
-#: mod/photos.php:1817
-msgid "Map"
+#: mod/admin.php:632
+msgid "The worker was never executed. Please check your database structure!"
 msgstr ""
 
-#: mod/photos.php:1894 mod/videos.php:396
-msgid "View Album"
+#: mod/admin.php:635
+#, php-format
+msgid ""
+"The last worker execution was on %s UTC. This is older than one hour. Please "
+"check your crontab settings."
 msgstr ""
 
-#: mod/ping.php:275
-msgid "{0} wants to be your friend"
+#: mod/admin.php:640 mod/admin.php:1545
+msgid "Normal Account"
 msgstr ""
 
-#: mod/ping.php:290
-msgid "{0} sent you a message"
+#: mod/admin.php:641 mod/admin.php:1546
+msgid "Automatic Follower Account"
 msgstr ""
 
-#: mod/ping.php:305
-msgid "{0} requested registration"
+#: mod/admin.php:642 mod/admin.php:1547
+msgid "Public Forum Account"
 msgstr ""
 
-#: mod/poke.php:198
-msgid "Poke/Prod"
+#: mod/admin.php:643 mod/admin.php:1548
+msgid "Automatic Friend Account"
 msgstr ""
 
-#: mod/poke.php:199
-msgid "poke, prod or do other things to somebody"
+#: mod/admin.php:644
+msgid "Blog Account"
 msgstr ""
 
-#: mod/poke.php:200
-msgid "Recipient"
+#: mod/admin.php:645
+msgid "Private Forum Account"
 msgstr ""
 
-#: mod/poke.php:201
-msgid "Choose what you wish to do to recipient"
+#: mod/admin.php:667
+msgid "Message queues"
 msgstr ""
 
-#: mod/poke.php:204
-msgid "Make this post private"
+#: mod/admin.php:673
+msgid "Summary"
 msgstr ""
 
-#: mod/profile.php:177
-msgid "Tips for New Members"
+#: mod/admin.php:675
+msgid "Registered users"
 msgstr ""
 
-#: mod/profile_photo.php:45
-msgid "Image uploaded but image cropping failed."
+#: mod/admin.php:677
+msgid "Pending registrations"
 msgstr ""
 
-#: mod/profile_photo.php:78 mod/profile_photo.php:86 mod/profile_photo.php:94
-#: mod/profile_photo.php:323
-#, php-format
-msgid "Image size reduction [%s] failed."
+#: mod/admin.php:678
+msgid "Version"
 msgstr ""
 
-#: mod/profile_photo.php:128
-msgid ""
-"Shift-reload the page or clear browser cache if the new photo does not "
-"display immediately."
+#: mod/admin.php:683
+msgid "Active plugins"
 msgstr ""
 
-#: mod/profile_photo.php:137
-msgid "Unable to process image"
+#: mod/admin.php:708
+msgid "Can not parse base url. Must have at least <scheme>://<domain>"
 msgstr ""
 
-#: mod/profile_photo.php:254
-msgid "Upload File:"
+#: mod/admin.php:1013
+msgid "Site settings updated."
 msgstr ""
 
-#: mod/profile_photo.php:255
-msgid "Select a profile:"
+#: mod/admin.php:1070
+msgid "No community page"
 msgstr ""
 
-#: mod/profile_photo.php:257
-msgid "Upload"
+#: mod/admin.php:1071
+msgid "Public postings from users of this site"
 msgstr ""
 
-#: mod/profile_photo.php:260
-msgid "or"
+#: mod/admin.php:1072
+msgid "Global community page"
 msgstr ""
 
-#: mod/profile_photo.php:260
-msgid "skip this step"
+#: mod/admin.php:1077 mod/contacts.php:551
+msgid "Never"
 msgstr ""
 
-#: mod/profile_photo.php:260
-msgid "select a photo from your photo albums"
+#: mod/admin.php:1078
+msgid "At post arrival"
 msgstr ""
 
-#: mod/profile_photo.php:274
-msgid "Crop Image"
+#: mod/admin.php:1086 mod/contacts.php:578
+msgid "Disabled"
 msgstr ""
 
-#: mod/profile_photo.php:275
-msgid "Please adjust the image cropping for optimum viewing."
+#: mod/admin.php:1088
+msgid "Users, Global Contacts"
 msgstr ""
 
-#: mod/profile_photo.php:277
-msgid "Done Editing"
+#: mod/admin.php:1089
+msgid "Users, Global Contacts/fallback"
 msgstr ""
 
-#: mod/profile_photo.php:313
-msgid "Image uploaded successfully."
+#: mod/admin.php:1093
+msgid "One month"
 msgstr ""
 
-#: mod/profiles.php:43
-msgid "Profile deleted."
+#: mod/admin.php:1094
+msgid "Three months"
 msgstr ""
 
-#: mod/profiles.php:59 mod/profiles.php:95
-msgid "Profile-"
+#: mod/admin.php:1095
+msgid "Half a year"
 msgstr ""
 
-#: mod/profiles.php:78 mod/profiles.php:123
-msgid "New profile created."
+#: mod/admin.php:1096
+msgid "One year"
 msgstr ""
 
-#: mod/profiles.php:101
-msgid "Profile unavailable to clone."
+#: mod/admin.php:1101
+msgid "Multi user instance"
 msgstr ""
 
-#: mod/profiles.php:197
-msgid "Profile Name is required."
+#: mod/admin.php:1124
+msgid "Closed"
 msgstr ""
 
-#: mod/profiles.php:337
-msgid "Marital Status"
+#: mod/admin.php:1125
+msgid "Requires approval"
 msgstr ""
 
-#: mod/profiles.php:341
-msgid "Romantic Partner"
+#: mod/admin.php:1126
+msgid "Open"
 msgstr ""
 
-#: mod/profiles.php:353
-msgid "Work/Employment"
+#: mod/admin.php:1130
+msgid "No SSL policy, links will track page SSL state"
 msgstr ""
 
-#: mod/profiles.php:356
-msgid "Religion"
+#: mod/admin.php:1131
+msgid "Force all links to use SSL"
 msgstr ""
 
-#: mod/profiles.php:360
-msgid "Political Views"
+#: mod/admin.php:1132
+msgid "Self-signed certificate, use SSL for local links only (discouraged)"
 msgstr ""
 
-#: mod/profiles.php:364
-msgid "Gender"
+#: mod/admin.php:1156
+msgid "File upload"
 msgstr ""
 
-#: mod/profiles.php:368
-msgid "Sexual Preference"
+#: mod/admin.php:1157
+msgid "Policies"
 msgstr ""
 
-#: mod/profiles.php:372
-msgid "XMPP"
+#: mod/admin.php:1159
+msgid "Auto Discovered Contact Directory"
 msgstr ""
 
-#: mod/profiles.php:376
-msgid "Homepage"
+#: mod/admin.php:1160
+msgid "Performance"
 msgstr ""
 
-#: mod/profiles.php:380 mod/profiles.php:699
-msgid "Interests"
+#: mod/admin.php:1161
+msgid "Worker"
 msgstr ""
 
-#: mod/profiles.php:384
-msgid "Address"
+#: mod/admin.php:1162
+msgid ""
+"Relocate - WARNING: advanced function. Could make this server unreachable."
 msgstr ""
 
-#: mod/profiles.php:391 mod/profiles.php:695
-msgid "Location"
+#: mod/admin.php:1165
+msgid "Site name"
 msgstr ""
 
-#: mod/profiles.php:476
-msgid "Profile updated."
+#: mod/admin.php:1166
+msgid "Host name"
 msgstr ""
 
-#: mod/profiles.php:568
-msgid " and "
+#: mod/admin.php:1167
+msgid "Sender Email"
 msgstr ""
 
-#: mod/profiles.php:577
-msgid "public profile"
+#: mod/admin.php:1167
+msgid ""
+"The email address your server shall use to send notification emails from."
 msgstr ""
 
-#: mod/profiles.php:580
-#, php-format
-msgid "%1$s changed %2$s to &ldquo;%3$s&rdquo;"
+#: mod/admin.php:1168
+msgid "Banner/Logo"
 msgstr ""
 
-#: mod/profiles.php:581
-#, php-format
-msgid " - Visit %1$s's %2$s"
+#: mod/admin.php:1169
+msgid "Shortcut icon"
 msgstr ""
 
-#: mod/profiles.php:583
-#, php-format
-msgid "%1$s has an updated %2$s, changing %3$s."
+#: mod/admin.php:1169
+msgid "Link to an icon that will be used for browsers."
 msgstr ""
 
-#: mod/profiles.php:641
-msgid "Hide contacts and friends:"
+#: mod/admin.php:1170
+msgid "Touch icon"
 msgstr ""
 
-#: mod/profiles.php:646
-msgid "Hide your contact/friend list from viewers of this profile?"
+#: mod/admin.php:1170
+msgid "Link to an icon that will be used for tablets and mobiles."
 msgstr ""
 
-#: mod/profiles.php:671
-msgid "Show more profile fields:"
+#: mod/admin.php:1171
+msgid "Additional Info"
 msgstr ""
 
-#: mod/profiles.php:683
-msgid "Profile Actions"
+#: mod/admin.php:1171
+#, php-format
+msgid ""
+"For public servers: you can add additional information here that will be "
+"listed at %s/siteinfo."
 msgstr ""
 
-#: mod/profiles.php:684
-msgid "Edit Profile Details"
+#: mod/admin.php:1172
+msgid "System language"
 msgstr ""
 
-#: mod/profiles.php:686
-msgid "Change Profile Photo"
+#: mod/admin.php:1173
+msgid "System theme"
 msgstr ""
 
-#: mod/profiles.php:687
-msgid "View this profile"
+#: mod/admin.php:1173
+msgid ""
+"Default system theme - may be over-ridden by user profiles - <a href='#' "
+"id='cnftheme'>change theme settings</a>"
 msgstr ""
 
-#: mod/profiles.php:689
-msgid "Create a new profile using these settings"
+#: mod/admin.php:1174
+msgid "Mobile system theme"
 msgstr ""
 
-#: mod/profiles.php:690
-msgid "Clone this profile"
+#: mod/admin.php:1174
+msgid "Theme for mobile devices"
 msgstr ""
 
-#: mod/profiles.php:691
-msgid "Delete this profile"
+#: mod/admin.php:1175
+msgid "SSL link policy"
 msgstr ""
 
-#: mod/profiles.php:693
-msgid "Basic information"
+#: mod/admin.php:1175
+msgid "Determines whether generated links should be forced to use SSL"
 msgstr ""
 
-#: mod/profiles.php:694
-msgid "Profile picture"
+#: mod/admin.php:1176
+msgid "Force SSL"
 msgstr ""
 
-#: mod/profiles.php:696
-msgid "Preferences"
+#: mod/admin.php:1176
+msgid ""
+"Force all Non-SSL requests to SSL - Attention: on some systems it could lead "
+"to endless loops."
 msgstr ""
 
-#: mod/profiles.php:697
-msgid "Status information"
+#: mod/admin.php:1177
+msgid "Hide help entry from navigation menu"
 msgstr ""
 
-#: mod/profiles.php:698
-msgid "Additional information"
+#: mod/admin.php:1177
+msgid ""
+"Hides the menu entry for the Help pages from the navigation menu. You can "
+"still access it calling /help directly."
 msgstr ""
 
-#: mod/profiles.php:701
-msgid "Relation"
+#: mod/admin.php:1178
+msgid "Single user instance"
 msgstr ""
 
-#: mod/profiles.php:705
-msgid "Your Gender:"
+#: mod/admin.php:1178
+msgid "Make this instance multi-user or single-user for the named user"
 msgstr ""
 
-#: mod/profiles.php:706
-msgid "<span class=\"heart\">&hearts;</span> Marital Status:"
+#: mod/admin.php:1179
+msgid "Maximum image size"
 msgstr ""
 
-#: mod/profiles.php:708
-msgid "Example: fishing photography software"
+#: mod/admin.php:1179
+msgid ""
+"Maximum size in bytes of uploaded images. Default is 0, which means no "
+"limits."
 msgstr ""
 
-#: mod/profiles.php:713
-msgid "Profile Name:"
+#: mod/admin.php:1180
+msgid "Maximum image length"
 msgstr ""
 
-#: mod/profiles.php:715
+#: mod/admin.php:1180
 msgid ""
-"This is your <strong>public</strong> profile.<br />It <strong>may</strong> "
-"be visible to anybody using the internet."
+"Maximum length in pixels of the longest side of uploaded images. Default is "
+"-1, which means no limits."
 msgstr ""
 
-#: mod/profiles.php:716
-msgid "Your Full Name:"
+#: mod/admin.php:1181
+msgid "JPEG image quality"
 msgstr ""
 
-#: mod/profiles.php:717
-msgid "Title/Description:"
+#: mod/admin.php:1181
+msgid ""
+"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is "
+"100, which is full quality."
 msgstr ""
 
-#: mod/profiles.php:720
-msgid "Street Address:"
+#: mod/admin.php:1183
+msgid "Register policy"
 msgstr ""
 
-#: mod/profiles.php:721
-msgid "Locality/City:"
+#: mod/admin.php:1184
+msgid "Maximum Daily Registrations"
 msgstr ""
 
-#: mod/profiles.php:722
-msgid "Region/State:"
+#: mod/admin.php:1184
+msgid ""
+"If registration is permitted above, this sets the maximum number of new user "
+"registrations to accept per day.  If register is set to closed, this setting "
+"has no effect."
 msgstr ""
 
-#: mod/profiles.php:723
-msgid "Postal/Zip Code:"
+#: mod/admin.php:1185
+msgid "Register text"
 msgstr ""
 
-#: mod/profiles.php:724
-msgid "Country:"
+#: mod/admin.php:1185
+msgid "Will be displayed prominently on the registration page."
 msgstr ""
 
-#: mod/profiles.php:728
-msgid "Who: (if applicable)"
+#: mod/admin.php:1186
+msgid "Accounts abandoned after x days"
 msgstr ""
 
-#: mod/profiles.php:728
-msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
+#: mod/admin.php:1186
+msgid ""
+"Will not waste system resources polling external sites for abandonded "
+"accounts. Enter 0 for no time limit."
 msgstr ""
 
-#: mod/profiles.php:729
-msgid "Since [date]:"
+#: mod/admin.php:1187
+msgid "Allowed friend domains"
 msgstr ""
 
-#: mod/profiles.php:731
-msgid "Tell us about yourself..."
+#: mod/admin.php:1187
+msgid ""
+"Comma separated list of domains which are allowed to establish friendships "
+"with this site. Wildcards are accepted. Empty to allow any domains"
 msgstr ""
 
-#: mod/profiles.php:732
-msgid "XMPP (Jabber) address:"
+#: mod/admin.php:1188
+msgid "Allowed email domains"
 msgstr ""
 
-#: mod/profiles.php:732
+#: mod/admin.php:1188
 msgid ""
-"The XMPP address will be propagated to your contacts so that they can follow "
-"you."
+"Comma separated list of domains which are allowed in email addresses for "
+"registrations to this site. Wildcards are accepted. Empty to allow any "
+"domains"
 msgstr ""
 
-#: mod/profiles.php:733
-msgid "Homepage URL:"
+#: mod/admin.php:1189
+msgid "Block public"
 msgstr ""
 
-#: mod/profiles.php:736
-msgid "Religious Views:"
+#: mod/admin.php:1189
+msgid ""
+"Check to block public access to all otherwise public personal pages on this "
+"site unless you are currently logged in."
 msgstr ""
 
-#: mod/profiles.php:737
-msgid "Public Keywords:"
+#: mod/admin.php:1190
+msgid "Force publish"
 msgstr ""
 
-#: mod/profiles.php:737
-msgid "(Used for suggesting potential friends, can be seen by others)"
+#: mod/admin.php:1190
+msgid ""
+"Check to force all profiles on this site to be listed in the site directory."
 msgstr ""
 
-#: mod/profiles.php:738
-msgid "Private Keywords:"
+#: mod/admin.php:1191
+msgid "Global directory URL"
 msgstr ""
 
-#: mod/profiles.php:738
-msgid "(Used for searching profiles, never shown to others)"
+#: mod/admin.php:1191
+msgid ""
+"URL to the global directory. If this is not set, the global directory is "
+"completely unavailable to the application."
 msgstr ""
 
-#: mod/profiles.php:741
-msgid "Musical interests"
+#: mod/admin.php:1192
+msgid "Allow threaded items"
 msgstr ""
 
-#: mod/profiles.php:742
-msgid "Books, literature"
+#: mod/admin.php:1192
+msgid "Allow infinite level threading for items on this site."
 msgstr ""
 
-#: mod/profiles.php:743
-msgid "Television"
+#: mod/admin.php:1193
+msgid "Private posts by default for new users"
 msgstr ""
 
-#: mod/profiles.php:744
-msgid "Film/dance/culture/entertainment"
+#: mod/admin.php:1193
+msgid ""
+"Set default post permissions for all new members to the default privacy "
+"group rather than public."
 msgstr ""
 
-#: mod/profiles.php:745
-msgid "Hobbies/Interests"
+#: mod/admin.php:1194
+msgid "Don't include post content in email notifications"
 msgstr ""
 
-#: mod/profiles.php:746
-msgid "Love/romance"
+#: mod/admin.php:1194
+msgid ""
+"Don't include the content of a post/comment/private message/etc. in the "
+"email notifications that are sent out from this site, as a privacy measure."
 msgstr ""
 
-#: mod/profiles.php:747
-msgid "Work/employment"
+#: mod/admin.php:1195
+msgid "Disallow public access to addons listed in the apps menu."
 msgstr ""
 
-#: mod/profiles.php:748
-msgid "School/education"
+#: mod/admin.php:1195
+msgid ""
+"Checking this box will restrict addons listed in the apps menu to members "
+"only."
 msgstr ""
 
-#: mod/profiles.php:749
-msgid "Contact information and Social Networks"
+#: mod/admin.php:1196
+msgid "Don't embed private images in posts"
 msgstr ""
 
-#: mod/profiles.php:790
-msgid "Edit/Manage Profiles"
+#: mod/admin.php:1196
+msgid ""
+"Don't replace locally-hosted private photos in posts with an embedded copy "
+"of the image. This means that contacts who receive posts containing private "
+"photos will have to authenticate and load each image, which may take a while."
 msgstr ""
 
-#: mod/register.php:97
-msgid ""
-"Registration successful. Please check your email for further instructions."
+#: mod/admin.php:1197
+msgid "Allow Users to set remote_self"
 msgstr ""
 
-#: mod/register.php:102
-#, php-format
+#: mod/admin.php:1197
 msgid ""
-"Failed to send email message. Here your accout details:<br> login: %s<br> "
-"password: %s<br><br>You can change your password after login."
+"With checking this, every user is allowed to mark every contact as a "
+"remote_self in the repair contact dialog. Setting this flag on a contact "
+"causes mirroring every posting of that contact in the users stream."
 msgstr ""
 
-#: mod/register.php:109
-msgid "Registration successful."
+#: mod/admin.php:1198
+msgid "Block multiple registrations"
 msgstr ""
 
-#: mod/register.php:115
-msgid "Your registration can not be processed."
+#: mod/admin.php:1198
+msgid "Disallow users to register additional accounts for use as pages."
 msgstr ""
 
-#: mod/register.php:164
-msgid "Your registration is pending approval by the site owner."
+#: mod/admin.php:1199
+msgid "OpenID support"
 msgstr ""
 
-#: mod/register.php:230
-msgid ""
-"You may (optionally) fill in this form via OpenID by supplying your OpenID "
-"and clicking 'Register'."
+#: mod/admin.php:1199
+msgid "OpenID support for registration and logins."
 msgstr ""
 
-#: mod/register.php:231
+#: mod/admin.php:1200
+msgid "Fullname check"
+msgstr ""
+
+#: mod/admin.php:1200
 msgid ""
-"If you are not familiar with OpenID, please leave that field blank and fill "
-"in the rest of the items."
+"Force users to register with a space between firstname and lastname in Full "
+"name, as an antispam measure"
 msgstr ""
 
-#: mod/register.php:232
-msgid "Your OpenID (optional): "
+#: mod/admin.php:1201
+msgid "Community Page Style"
 msgstr ""
 
-#: mod/register.php:246
-msgid "Include your profile in member directory?"
+#: mod/admin.php:1201
+msgid ""
+"Type of community page to show. 'Global community' shows every public "
+"posting from an open distributed network that arrived on this server."
 msgstr ""
 
-#: mod/register.php:271
-msgid "Note for the admin"
+#: mod/admin.php:1202
+msgid "Posts per user on community page"
 msgstr ""
 
-#: mod/register.php:271
-msgid "Leave a message for the admin, why you want to join this node"
+#: mod/admin.php:1202
+msgid ""
+"The maximum number of posts per user on the community page. (Not valid for "
+"'Global Community')"
 msgstr ""
 
-#: mod/register.php:272
-msgid "Membership on this site is by invitation only."
+#: mod/admin.php:1203
+msgid "Enable OStatus support"
 msgstr ""
 
-#: mod/register.php:273
-msgid "Your invitation ID: "
+#: mod/admin.php:1203
+msgid ""
+"Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All "
+"communications in OStatus are public, so privacy warnings will be "
+"occasionally displayed."
 msgstr ""
 
-#: mod/register.php:284
-msgid "Your Full Name (e.g. Joe Smith, real or real-looking): "
+#: mod/admin.php:1204
+msgid "Only import OStatus threads from our contacts"
 msgstr ""
 
-#: mod/register.php:285
-msgid "Your Email Address: "
+#: mod/admin.php:1204
+msgid ""
+"Normally we import every content from our OStatus contacts. With this option "
+"we only store threads that are started by a contact that is known on our "
+"system."
 msgstr ""
 
-#: mod/register.php:287 mod/settings.php:1280
-msgid "New Password:"
+#: mod/admin.php:1205
+msgid "OStatus support can only be enabled if threading is enabled."
 msgstr ""
 
-#: mod/register.php:287
-msgid "Leave empty for an auto generated password."
+#: mod/admin.php:1207
+msgid ""
+"Diaspora support can't be enabled because Friendica was installed into a sub "
+"directory."
 msgstr ""
 
-#: mod/register.php:288 mod/settings.php:1281
-msgid "Confirm:"
+#: mod/admin.php:1208
+msgid "Enable Diaspora support"
 msgstr ""
 
-#: mod/register.php:289
-msgid ""
-"Choose a profile nickname. This must begin with a text character. Your "
-"profile address on this site will then be '<strong>nickname@$sitename</"
-"strong>'."
+#: mod/admin.php:1208
+msgid "Provide built-in Diaspora network compatibility."
 msgstr ""
 
-#: mod/register.php:290
-msgid "Choose a nickname: "
+#: mod/admin.php:1209
+msgid "Only allow Friendica contacts"
 msgstr ""
 
-#: mod/register.php:300
-msgid "Import your profile to this friendica instance"
+#: mod/admin.php:1209
+msgid ""
+"All contacts must use Friendica protocols. All other built-in communication "
+"protocols disabled."
 msgstr ""
 
-#: mod/regmod.php:61
-msgid "Account approved."
+#: mod/admin.php:1210
+msgid "Verify SSL"
 msgstr ""
 
-#: mod/regmod.php:89
-#, php-format
-msgid "Registration revoked for %s"
+#: mod/admin.php:1210
+msgid ""
+"If you wish, you can turn on strict certificate checking. This will mean you "
+"cannot connect (at all) to self-signed SSL sites."
 msgstr ""
 
-#: mod/regmod.php:101
-msgid "Please login."
+#: mod/admin.php:1211
+msgid "Proxy user"
 msgstr ""
 
-#: mod/removeme.php:55 mod/removeme.php:58
-msgid "Remove My Account"
+#: mod/admin.php:1212
+msgid "Proxy URL"
 msgstr ""
 
-#: mod/removeme.php:56
-msgid ""
-"This will completely remove your account. Once this has been done it is not "
-"recoverable."
+#: mod/admin.php:1213
+msgid "Network timeout"
 msgstr ""
 
-#: mod/removeme.php:57
-msgid "Please enter your password for verification:"
+#: mod/admin.php:1213
+msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
 msgstr ""
 
-#: mod/repair_ostatus.php:17
-msgid "Resubscribing to OStatus contacts"
+#: mod/admin.php:1214
+msgid "Maximum Load Average"
 msgstr ""
 
-#: mod/repair_ostatus.php:33
-msgid "Error"
+#: mod/admin.php:1214
+msgid ""
+"Maximum system load before delivery and poll processes are deferred - "
+"default 50."
 msgstr ""
 
-#: mod/settings.php:63
-msgid "Display"
+#: mod/admin.php:1215
+msgid "Maximum Load Average (Frontend)"
 msgstr ""
 
-#: mod/settings.php:70 mod/settings.php:892
-msgid "Social Networks"
+#: mod/admin.php:1215
+msgid "Maximum system load before the frontend quits service - default 50."
 msgstr ""
 
-#: mod/settings.php:91
-msgid "Connected apps"
+#: mod/admin.php:1216
+msgid "Minimal Memory"
 msgstr ""
 
-#: mod/settings.php:98 mod/uexport.php:47
-msgid "Export personal data"
+#: mod/admin.php:1216
+msgid ""
+"Minimal free memory in MB for the poller. Needs access to /proc/meminfo - "
+"default 0 (deactivated)."
 msgstr ""
 
-#: mod/settings.php:105
-msgid "Remove account"
+#: mod/admin.php:1217
+msgid "Maximum table size for optimization"
 msgstr ""
 
-#: mod/settings.php:160
-msgid "Missing some important data!"
+#: mod/admin.php:1217
+msgid ""
+"Maximum table size (in MB) for the automatic optimization - default 100 MB. "
+"Enter -1 to disable it."
 msgstr ""
 
-#: mod/settings.php:274
-msgid "Failed to connect with email account using the settings provided."
+#: mod/admin.php:1218
+msgid "Minimum level of fragmentation"
 msgstr ""
 
-#: mod/settings.php:279
-msgid "Email settings updated."
+#: mod/admin.php:1218
+msgid ""
+"Minimum fragmenation level to start the automatic optimization - default "
+"value is 30%."
 msgstr ""
 
-#: mod/settings.php:294
-msgid "Features updated"
+#: mod/admin.php:1220
+msgid "Periodical check of global contacts"
 msgstr ""
 
-#: mod/settings.php:364
-msgid "Relocate message has been send to your contacts"
+#: mod/admin.php:1220
+msgid ""
+"If enabled, the global contacts are checked periodically for missing or "
+"outdated data and the vitality of the contacts and servers."
 msgstr ""
 
-#: mod/settings.php:383
-msgid "Empty passwords are not allowed. Password unchanged."
+#: mod/admin.php:1221
+msgid "Days between requery"
 msgstr ""
 
-#: mod/settings.php:391
-msgid "Wrong password."
+#: mod/admin.php:1221
+msgid "Number of days after which a server is requeried for his contacts."
 msgstr ""
 
-#: mod/settings.php:402
-msgid "Password changed."
+#: mod/admin.php:1222
+msgid "Discover contacts from other servers"
 msgstr ""
 
-#: mod/settings.php:404
-msgid "Password update failed. Please try again."
+#: mod/admin.php:1222
+msgid ""
+"Periodically query other servers for contacts. You can choose between "
+"'users': the users on the remote system, 'Global Contacts': active contacts "
+"that are known on the system. The fallback is meant for Redmatrix servers "
+"and older friendica servers, where global contacts weren't available. The "
+"fallback increases the server load, so the recommened setting is 'Users, "
+"Global Contacts'."
 msgstr ""
 
-#: mod/settings.php:484
-msgid " Please use a shorter name."
+#: mod/admin.php:1223
+msgid "Timeframe for fetching global contacts"
 msgstr ""
 
-#: mod/settings.php:486
-msgid " Name too short."
+#: mod/admin.php:1223
+msgid ""
+"When the discovery is activated, this value defines the timeframe for the "
+"activity of the global contacts that are fetched from other servers."
 msgstr ""
 
-#: mod/settings.php:495
-msgid "Wrong Password"
+#: mod/admin.php:1224
+msgid "Search the local directory"
 msgstr ""
 
-#: mod/settings.php:500
-msgid " Not valid email."
+#: mod/admin.php:1224
+msgid ""
+"Search the local directory instead of the global directory. When searching "
+"locally, every search will be executed on the global directory in the "
+"background. This improves the search results when the search is repeated."
 msgstr ""
 
-#: mod/settings.php:506
-msgid " Cannot change to that email."
+#: mod/admin.php:1226
+msgid "Publish server information"
 msgstr ""
 
-#: mod/settings.php:562
-msgid "Private forum has no privacy permissions. Using default privacy group."
+#: mod/admin.php:1226
+msgid ""
+"If enabled, general server and usage data will be published. The data "
+"contains the name and version of the server, number of users with public "
+"profiles, number of posts and the activated protocols and connectors. See <a "
+"href='http://the-federation.info/'>the-federation.info</a> for details."
 msgstr ""
 
-#: mod/settings.php:566
-msgid "Private forum has no privacy permissions and no default privacy group."
+#: mod/admin.php:1228
+msgid "Suppress Tags"
 msgstr ""
 
-#: mod/settings.php:606
-msgid "Settings updated."
+#: mod/admin.php:1228
+msgid "Suppress showing a list of hashtags at the end of the posting."
 msgstr ""
 
-#: mod/settings.php:682 mod/settings.php:708 mod/settings.php:744
-msgid "Add application"
+#: mod/admin.php:1229
+msgid "Path to item cache"
 msgstr ""
 
-#: mod/settings.php:686 mod/settings.php:712
-msgid "Consumer Key"
+#: mod/admin.php:1229
+msgid "The item caches buffers generated bbcode and external images."
 msgstr ""
 
-#: mod/settings.php:687 mod/settings.php:713
-msgid "Consumer Secret"
+#: mod/admin.php:1230
+msgid "Cache duration in seconds"
 msgstr ""
 
-#: mod/settings.php:688 mod/settings.php:714
-msgid "Redirect"
+#: mod/admin.php:1230
+msgid ""
+"How long should the cache files be hold? Default value is 86400 seconds (One "
+"day). To disable the item cache, set the value to -1."
 msgstr ""
 
-#: mod/settings.php:689 mod/settings.php:715
-msgid "Icon url"
+#: mod/admin.php:1231
+msgid "Maximum numbers of comments per post"
 msgstr ""
 
-#: mod/settings.php:700
-msgid "You can't edit this application."
+#: mod/admin.php:1231
+msgid "How much comments should be shown for each post? Default value is 100."
 msgstr ""
 
-#: mod/settings.php:743
-msgid "Connected Apps"
+#: mod/admin.php:1232
+msgid "Temp path"
 msgstr ""
 
-#: mod/settings.php:747
-msgid "Client key starts with"
+#: mod/admin.php:1232
+msgid ""
+"If you have a restricted system where the webserver can't access the system "
+"temp path, enter another path here."
 msgstr ""
 
-#: mod/settings.php:748
-msgid "No name"
+#: mod/admin.php:1233
+msgid "Base path to installation"
 msgstr ""
 
-#: mod/settings.php:749
-msgid "Remove authorization"
+#: mod/admin.php:1233
+msgid ""
+"If the system cannot detect the correct path to your installation, enter the "
+"correct path here. This setting should only be set if you are using a "
+"restricted system and symbolic links to your webroot."
 msgstr ""
 
-#: mod/settings.php:761
-msgid "No Plugin settings configured"
+#: mod/admin.php:1234
+msgid "Disable picture proxy"
 msgstr ""
 
-#: mod/settings.php:770
-msgid "Plugin Settings"
+#: mod/admin.php:1234
+msgid ""
+"The picture proxy increases performance and privacy. It shouldn't be used on "
+"systems with very low bandwith."
 msgstr ""
 
-#: mod/settings.php:792
-msgid "Additional Features"
+#: mod/admin.php:1235
+msgid "Only search in tags"
 msgstr ""
 
-#: mod/settings.php:802 mod/settings.php:806
-msgid "General Social Media Settings"
+#: mod/admin.php:1235
+msgid "On large systems the text search can slow down the system extremely."
 msgstr ""
 
-#: mod/settings.php:812
-msgid "Disable intelligent shortening"
+#: mod/admin.php:1237
+msgid "New base url"
 msgstr ""
 
-#: mod/settings.php:814
+#: mod/admin.php:1237
 msgid ""
-"Normally the system tries to find the best link to add to shortened posts. "
-"If this option is enabled then every shortened post will always point to the "
-"original friendica post."
+"Change base url for this server. Sends relocate message to all DFRN contacts "
+"of all users."
 msgstr ""
 
-#: mod/settings.php:820
-msgid "Automatically follow any GNU Social (OStatus) followers/mentioners"
+#: mod/admin.php:1239
+msgid "RINO Encryption"
 msgstr ""
 
-#: mod/settings.php:822
-msgid ""
-"If you receive a message from an unknown OStatus user, this option decides "
-"what to do. If it is checked, a new contact will be created for every "
-"unknown user."
+#: mod/admin.php:1239
+msgid "Encryption layer between nodes."
 msgstr ""
 
-#: mod/settings.php:828
-msgid "Default group for OStatus contacts"
+#: mod/admin.php:1241
+msgid "Maximum number of parallel workers"
 msgstr ""
 
-#: mod/settings.php:836
-msgid "Your legacy GNU Social account"
+#: mod/admin.php:1241
+msgid ""
+"On shared hosters set this to 2. On larger systems, values of 10 are great. "
+"Default value is 4."
 msgstr ""
 
-#: mod/settings.php:838
-msgid ""
-"If you enter your old GNU Social/Statusnet account name here (in the format "
-"user@domain.tld), your contacts will be added automatically. The field will "
-"be emptied when done."
+#: mod/admin.php:1242
+msgid "Don't use 'proc_open' with the worker"
 msgstr ""
 
-#: mod/settings.php:841
-msgid "Repair OStatus subscriptions"
+#: mod/admin.php:1242
+msgid ""
+"Enable this if your system doesn't allow the use of 'proc_open'. This can "
+"happen on shared hosters. If this is enabled you should increase the "
+"frequency of poller calls in your crontab."
 msgstr ""
 
-#: mod/settings.php:850 mod/settings.php:851
-#, php-format
-msgid "Built-in support for %s connectivity is %s"
+#: mod/admin.php:1243
+msgid "Enable fastlane"
 msgstr ""
 
-#: mod/settings.php:850 mod/settings.php:851
-msgid "enabled"
+#: mod/admin.php:1243
+msgid ""
+"When enabed, the fastlane mechanism starts an additional worker if processes "
+"with higher priority are blocked by processes of lower priority."
 msgstr ""
 
-#: mod/settings.php:850 mod/settings.php:851
-msgid "disabled"
+#: mod/admin.php:1244
+msgid "Enable frontend worker"
 msgstr ""
 
-#: mod/settings.php:851
-msgid "GNU Social (OStatus)"
+#: mod/admin.php:1244
+#, php-format
+msgid ""
+"When enabled the Worker process is triggered when backend access is "
+"performed (e.g. messages being delivered). On smaller sites you might want "
+"to call %s/worker on a regular basis via an external cron job. You should "
+"only enable this option if you cannot utilize cron/scheduled jobs on your "
+"server."
 msgstr ""
 
-#: mod/settings.php:885
-msgid "Email access is disabled on this site."
+#: mod/admin.php:1274
+msgid "Update has been marked successful"
 msgstr ""
 
-#: mod/settings.php:897
-msgid "Email/Mailbox Setup"
+#: mod/admin.php:1282
+#, php-format
+msgid "Database structure update %s was successfully applied."
 msgstr ""
 
-#: mod/settings.php:898
-msgid ""
-"If you wish to communicate with email contacts using this service "
-"(optional), please specify how to connect to your mailbox."
+#: mod/admin.php:1285
+#, php-format
+msgid "Executing of database structure update %s failed with error: %s"
 msgstr ""
 
-#: mod/settings.php:899
-msgid "Last successful email check:"
+#: mod/admin.php:1299
+#, php-format
+msgid "Executing %s failed with error: %s"
 msgstr ""
 
-#: mod/settings.php:901
-msgid "IMAP server name:"
+#: mod/admin.php:1302
+#, php-format
+msgid "Update %s was successfully applied."
 msgstr ""
 
-#: mod/settings.php:902
-msgid "IMAP port:"
+#: mod/admin.php:1305
+#, php-format
+msgid "Update %s did not return a status. Unknown if it succeeded."
 msgstr ""
 
-#: mod/settings.php:903
-msgid "Security:"
+#: mod/admin.php:1308
+#, php-format
+msgid "There was no additional update function %s that needed to be called."
 msgstr ""
 
-#: mod/settings.php:903 mod/settings.php:908
-msgid "None"
+#: mod/admin.php:1328
+msgid "No failed updates."
 msgstr ""
 
-#: mod/settings.php:904
-msgid "Email login name:"
+#: mod/admin.php:1329
+msgid "Check database structure"
 msgstr ""
 
-#: mod/settings.php:905
-msgid "Email password:"
+#: mod/admin.php:1334
+msgid "Failed Updates"
 msgstr ""
 
-#: mod/settings.php:906
-msgid "Reply-to address:"
+#: mod/admin.php:1335
+msgid ""
+"This does not include updates prior to 1139, which did not return a status."
 msgstr ""
 
-#: mod/settings.php:907
-msgid "Send public posts to all email contacts:"
+#: mod/admin.php:1336
+msgid "Mark success (if update was manually applied)"
 msgstr ""
 
-#: mod/settings.php:908
-msgid "Action after import:"
+#: mod/admin.php:1337
+msgid "Attempt to execute this update step automatically"
 msgstr ""
 
-#: mod/settings.php:908
-msgid "Move to folder"
+#: mod/admin.php:1371
+#, php-format
+msgid ""
+"\n"
+"\t\t\tDear %1$s,\n"
+"\t\t\t\tthe administrator of %2$s has set up an account for you."
 msgstr ""
 
-#: mod/settings.php:909
-msgid "Move to folder:"
+#: mod/admin.php:1374
+#, php-format
+msgid ""
+"\n"
+"\t\t\tThe login details are as follows:\n"
+"\n"
+"\t\t\tSite Location:\t%1$s\n"
+"\t\t\tLogin Name:\t\t%2$s\n"
+"\t\t\tPassword:\t\t%3$s\n"
+"\n"
+"\t\t\tYou may change your password from your account \"Settings\" page after "
+"logging\n"
+"\t\t\tin.\n"
+"\n"
+"\t\t\tPlease take a few moments to review the other account settings on that "
+"page.\n"
+"\n"
+"\t\t\tYou may also wish to add some basic information to your default "
+"profile\n"
+"\t\t\t(on the \"Profiles\" page) so that other people can easily find you.\n"
+"\n"
+"\t\t\tWe recommend setting your full name, adding a profile photo,\n"
+"\t\t\tadding some profile \"keywords\" (very useful in making new friends) - "
+"and\n"
+"\t\t\tperhaps what country you live in; if you do not wish to be more "
+"specific\n"
+"\t\t\tthan that.\n"
+"\n"
+"\t\t\tWe fully respect your right to privacy, and none of these items are "
+"necessary.\n"
+"\t\t\tIf you are new and do not know anybody here, they may help\n"
+"\t\t\tyou to make some new and interesting friends.\n"
+"\n"
+"\t\t\tThank you and welcome to %4$s."
 msgstr ""
 
-#: mod/settings.php:1005
-msgid "Display Settings"
-msgstr ""
+#: mod/admin.php:1418
+#, php-format
+msgid "%s user blocked/unblocked"
+msgid_plural "%s users blocked/unblocked"
+msgstr[0] ""
+msgstr[1] ""
 
-#: mod/settings.php:1011 mod/settings.php:1034
-msgid "Display Theme:"
+#: mod/admin.php:1425
+#, php-format
+msgid "%s user deleted"
+msgid_plural "%s users deleted"
+msgstr[0] ""
+msgstr[1] ""
+
+#: mod/admin.php:1472
+#, php-format
+msgid "User '%s' deleted"
 msgstr ""
 
-#: mod/settings.php:1012
-msgid "Mobile Theme:"
+#: mod/admin.php:1480
+#, php-format
+msgid "User '%s' unblocked"
 msgstr ""
 
-#: mod/settings.php:1013
-msgid "Suppress warning of insecure networks"
+#: mod/admin.php:1480
+#, php-format
+msgid "User '%s' blocked"
 msgstr ""
 
-#: mod/settings.php:1013
-msgid ""
-"Should the system suppress the warning that the current group contains "
-"members of networks that can't receive non public postings."
+#: mod/admin.php:1588 mod/admin.php:1614
+msgid "Register date"
 msgstr ""
 
-#: mod/settings.php:1014
-msgid "Update browser every xx seconds"
+#: mod/admin.php:1588 mod/admin.php:1614
+msgid "Last login"
 msgstr ""
 
-#: mod/settings.php:1014
-msgid "Minimum of 10 seconds. Enter -1 to disable it."
+#: mod/admin.php:1588 mod/admin.php:1614
+msgid "Last item"
 msgstr ""
 
-#: mod/settings.php:1015
-msgid "Number of items to display per page:"
+#: mod/admin.php:1597
+msgid "Add User"
 msgstr ""
 
-#: mod/settings.php:1015 mod/settings.php:1016
-msgid "Maximum of 100 items"
+#: mod/admin.php:1598
+msgid "select all"
 msgstr ""
 
-#: mod/settings.php:1016
-msgid "Number of items to display per page when viewed from mobile device:"
+#: mod/admin.php:1599
+msgid "User registrations waiting for confirm"
 msgstr ""
 
-#: mod/settings.php:1017
-msgid "Don't show emoticons"
+#: mod/admin.php:1600
+msgid "User waiting for permanent deletion"
 msgstr ""
 
-#: mod/settings.php:1018
-msgid "Calendar"
+#: mod/admin.php:1601
+msgid "Request date"
 msgstr ""
 
-#: mod/settings.php:1019
-msgid "Beginning of week:"
+#: mod/admin.php:1602
+msgid "No registrations."
 msgstr ""
 
-#: mod/settings.php:1020
-msgid "Don't show notices"
+#: mod/admin.php:1603
+msgid "Note from the user"
 msgstr ""
 
-#: mod/settings.php:1021
-msgid "Infinite scroll"
+#: mod/admin.php:1605
+msgid "Deny"
 msgstr ""
 
-#: mod/settings.php:1022
-msgid "Automatic updates only at the top of the network page"
+#: mod/admin.php:1607 mod/contacts.php:634 mod/contacts.php:834
+#: mod/contacts.php:1012
+msgid "Block"
 msgstr ""
 
-#: mod/settings.php:1022
-msgid ""
-"When disabled, the network page is updated all the time, which could be "
-"confusing while reading."
+#: mod/admin.php:1608 mod/contacts.php:634 mod/contacts.php:834
+#: mod/contacts.php:1012
+msgid "Unblock"
 msgstr ""
 
-#: mod/settings.php:1023
-msgid "Bandwith Saver Mode"
+#: mod/admin.php:1609
+msgid "Site admin"
 msgstr ""
 
-#: mod/settings.php:1023
-msgid ""
-"When enabled, embedded content is not displayed on automatic updates, they "
-"only show on page reload."
+#: mod/admin.php:1610
+msgid "Account expired"
 msgstr ""
 
-#: mod/settings.php:1025
-msgid "General Theme Settings"
+#: mod/admin.php:1613
+msgid "New User"
 msgstr ""
 
-#: mod/settings.php:1026
-msgid "Custom Theme Settings"
+#: mod/admin.php:1614
+msgid "Deleted since"
 msgstr ""
 
-#: mod/settings.php:1027
-msgid "Content Settings"
+#: mod/admin.php:1619
+msgid ""
+"Selected users will be deleted!\\n\\nEverything these users had posted on "
+"this site will be permanently deleted!\\n\\nAre you sure?"
 msgstr ""
 
-#: mod/settings.php:1028 view/theme/duepuntozero/config.php:67
-#: view/theme/frio/config.php:70 view/theme/quattro/config.php:73
-#: view/theme/vier/config.php:116
-msgid "Theme settings"
+#: mod/admin.php:1620
+msgid ""
+"The user {0} will be deleted!\\n\\nEverything this user has posted on this "
+"site will be permanently deleted!\\n\\nAre you sure?"
 msgstr ""
 
-#: mod/settings.php:1112
-msgid "Account Types"
+#: mod/admin.php:1630
+msgid "Name of the new user."
 msgstr ""
 
-#: mod/settings.php:1113
-msgid "Personal Page Subtypes"
+#: mod/admin.php:1631
+msgid "Nickname"
 msgstr ""
 
-#: mod/settings.php:1114
-msgid "Community Forum Subtypes"
+#: mod/admin.php:1631
+msgid "Nickname of the new user."
 msgstr ""
 
-#: mod/settings.php:1121
-msgid "Personal Page"
+#: mod/admin.php:1632
+msgid "Email address of the new user."
 msgstr ""
 
-#: mod/settings.php:1122
-msgid "Account for a personal profile."
+#: mod/admin.php:1675
+#, php-format
+msgid "Plugin %s disabled."
 msgstr ""
 
-#: mod/settings.php:1125
-msgid "Organisation Page"
+#: mod/admin.php:1679
+#, php-format
+msgid "Plugin %s enabled."
 msgstr ""
 
-#: mod/settings.php:1126
-msgid ""
-"Account for an organisation that automatically approves contact requests as "
-"\"Followers\"."
+#: mod/admin.php:1690 mod/admin.php:1942
+msgid "Disable"
 msgstr ""
 
-#: mod/settings.php:1129
-msgid "News Page"
+#: mod/admin.php:1692 mod/admin.php:1944
+msgid "Enable"
 msgstr ""
 
-#: mod/settings.php:1130
-msgid ""
-"Account for a news reflector that automatically approves contact requests as "
-"\"Followers\"."
+#: mod/admin.php:1715 mod/admin.php:1991
+msgid "Toggle"
 msgstr ""
 
-#: mod/settings.php:1133
-msgid "Community Forum"
+#: mod/admin.php:1723 mod/admin.php:2000
+msgid "Author: "
 msgstr ""
 
-#: mod/settings.php:1134
-msgid "Account for community discussions."
+#: mod/admin.php:1724 mod/admin.php:2001
+msgid "Maintainer: "
 msgstr ""
 
-#: mod/settings.php:1137
-msgid "Normal Account Page"
+#: mod/admin.php:1779
+msgid "Reload active plugins"
 msgstr ""
 
-#: mod/settings.php:1138
+#: mod/admin.php:1784
+#, php-format
 msgid ""
-"Account for a regular personal profile that requires manual approval of "
-"\"Friends\" and \"Followers\"."
+"There are currently no plugins available on your node. You can find the "
+"official plugin repository at %1$s and might find other interesting plugins "
+"in the open plugin registry at %2$s"
 msgstr ""
 
-#: mod/settings.php:1141
-msgid "Soapbox Page"
+#: mod/admin.php:1903
+msgid "No themes found."
 msgstr ""
 
-#: mod/settings.php:1142
-msgid ""
-"Account for a public profile that automatically approves contact requests as "
-"\"Followers\"."
+#: mod/admin.php:1982
+msgid "Screenshot"
 msgstr ""
 
-#: mod/settings.php:1145
-msgid "Public Forum"
+#: mod/admin.php:2042
+msgid "Reload active themes"
 msgstr ""
 
-#: mod/settings.php:1146
-msgid "Automatically approves all contact requests."
+#: mod/admin.php:2047
+#, php-format
+msgid "No themes found on the system. They should be paced in %1$s"
 msgstr ""
 
-#: mod/settings.php:1149
-msgid "Automatic Friend Page"
+#: mod/admin.php:2048
+msgid "[Experimental]"
 msgstr ""
 
-#: mod/settings.php:1150
-msgid ""
-"Account for a popular profile that automatically approves contact requests "
-"as \"Friends\"."
+#: mod/admin.php:2049
+msgid "[Unsupported]"
 msgstr ""
 
-#: mod/settings.php:1153
-msgid "Private Forum [Experimental]"
+#: mod/admin.php:2073
+msgid "Log settings updated."
 msgstr ""
 
-#: mod/settings.php:1154
-msgid "Requires manual approval of contact requests."
+#: mod/admin.php:2105
+msgid "PHP log currently enabled."
 msgstr ""
 
-#: mod/settings.php:1165
-msgid "OpenID:"
+#: mod/admin.php:2107
+msgid "PHP log currently disabled."
 msgstr ""
 
-#: mod/settings.php:1165
-msgid "(Optional) Allow this OpenID to login to this account."
+#: mod/admin.php:2116
+msgid "Clear"
 msgstr ""
 
-#: mod/settings.php:1173
-msgid "Publish your default profile in your local site directory?"
+#: mod/admin.php:2121
+msgid "Enable Debugging"
 msgstr ""
 
-#: mod/settings.php:1173
-msgid "Your profile may be visible in public."
+#: mod/admin.php:2122
+msgid "Log file"
 msgstr ""
 
-#: mod/settings.php:1179
-msgid "Publish your default profile in the global social directory?"
+#: mod/admin.php:2122
+msgid ""
+"Must be writable by web server. Relative to your Friendica top-level "
+"directory."
 msgstr ""
 
-#: mod/settings.php:1186
-msgid "Hide your contact/friend list from viewers of your default profile?"
+#: mod/admin.php:2123
+msgid "Log level"
 msgstr ""
 
-#: mod/settings.php:1190
-msgid ""
-"If enabled, posting public messages to Diaspora and other networks isn't "
-"possible."
+#: mod/admin.php:2126
+msgid "PHP logging"
 msgstr ""
 
-#: mod/settings.php:1195
-msgid "Allow friends to post to your profile page?"
+#: mod/admin.php:2127
+msgid ""
+"To enable logging of PHP errors and warnings you can add the following to "
+"the .htconfig.php file of your installation. The filename set in the "
+"'error_log' line is relative to the friendica top-level directory and must "
+"be writeable by the web server. The option '1' for 'log_errors' and "
+"'display_errors' is to enable these options, set to '0' to disable them."
 msgstr ""
 
-#: mod/settings.php:1200
-msgid "Allow friends to tag your posts?"
+#: mod/admin.php:2258
+#, php-format
+msgid "Lock feature %s"
 msgstr ""
 
-#: mod/settings.php:1205
-msgid "Allow us to suggest you as a potential friend to new members?"
+#: mod/admin.php:2266
+msgid "Manage Additional Features"
 msgstr ""
 
-#: mod/settings.php:1210
-msgid "Permit unknown people to send you private mail?"
+#: mod/contacts.php:138
+#, php-format
+msgid "%d contact edited."
+msgid_plural "%d contacts edited."
+msgstr[0] ""
+msgstr[1] ""
+
+#: mod/contacts.php:173 mod/contacts.php:391
+msgid "Could not access contact record."
 msgstr ""
 
-#: mod/settings.php:1218
-msgid "Profile is <strong>not published</strong>."
+#: mod/contacts.php:187
+msgid "Could not locate selected profile."
 msgstr ""
 
-#: mod/settings.php:1226
-#, php-format
-msgid "Your Identity Address is <strong>'%s'</strong> or '%s'."
+#: mod/contacts.php:220
+msgid "Contact updated."
 msgstr ""
 
-#: mod/settings.php:1233
-msgid "Automatically expire posts after this many days:"
+#: mod/contacts.php:412
+msgid "Contact has been blocked"
 msgstr ""
 
-#: mod/settings.php:1233
-msgid "If empty, posts will not expire. Expired posts will be deleted"
+#: mod/contacts.php:412
+msgid "Contact has been unblocked"
 msgstr ""
 
-#: mod/settings.php:1234
-msgid "Advanced expiration settings"
+#: mod/contacts.php:423
+msgid "Contact has been ignored"
 msgstr ""
 
-#: mod/settings.php:1235
-msgid "Advanced Expiration"
+#: mod/contacts.php:423
+msgid "Contact has been unignored"
 msgstr ""
 
-#: mod/settings.php:1236
-msgid "Expire posts:"
+#: mod/contacts.php:435
+msgid "Contact has been archived"
 msgstr ""
 
-#: mod/settings.php:1237
-msgid "Expire personal notes:"
+#: mod/contacts.php:435
+msgid "Contact has been unarchived"
 msgstr ""
 
-#: mod/settings.php:1238
-msgid "Expire starred posts:"
+#: mod/contacts.php:460
+msgid "Drop contact"
 msgstr ""
 
-#: mod/settings.php:1239
-msgid "Expire photos:"
+#: mod/contacts.php:463 mod/contacts.php:830
+msgid "Do you really want to delete this contact?"
 msgstr ""
 
-#: mod/settings.php:1240
-msgid "Only expire posts by others:"
+#: mod/contacts.php:482
+msgid "Contact has been removed."
 msgstr ""
 
-#: mod/settings.php:1271
-msgid "Account Settings"
+#: mod/contacts.php:519
+#, php-format
+msgid "You are mutual friends with %s"
 msgstr ""
 
-#: mod/settings.php:1279
-msgid "Password Settings"
+#: mod/contacts.php:523
+#, php-format
+msgid "You are sharing with %s"
 msgstr ""
 
-#: mod/settings.php:1281
-msgid "Leave password fields blank unless changing"
+#: mod/contacts.php:528
+#, php-format
+msgid "%s is sharing with you"
 msgstr ""
 
-#: mod/settings.php:1282
-msgid "Current Password:"
+#: mod/contacts.php:548
+msgid "Private communications are not available for this contact."
 msgstr ""
 
-#: mod/settings.php:1282 mod/settings.php:1283
-msgid "Your current password to confirm the changes"
+#: mod/contacts.php:555
+msgid "(Update was successful)"
 msgstr ""
 
-#: mod/settings.php:1283
-msgid "Password:"
+#: mod/contacts.php:555
+msgid "(Update was not successful)"
 msgstr ""
 
-#: mod/settings.php:1287
-msgid "Basic Settings"
+#: mod/contacts.php:557 mod/contacts.php:993
+msgid "Suggest friends"
 msgstr ""
 
-#: mod/settings.php:1289
-msgid "Email Address:"
+#: mod/contacts.php:561
+#, php-format
+msgid "Network type: %s"
 msgstr ""
 
-#: mod/settings.php:1290
-msgid "Your Timezone:"
+#: mod/contacts.php:574
+msgid "Communications lost with this contact!"
 msgstr ""
 
-#: mod/settings.php:1291
-msgid "Your Language:"
+#: mod/contacts.php:577
+msgid "Fetch further information for feeds"
 msgstr ""
 
-#: mod/settings.php:1291
-msgid ""
-"Set the language we use to show you friendica interface and to send you "
-"emails"
+#: mod/contacts.php:578
+msgid "Fetch information"
 msgstr ""
 
-#: mod/settings.php:1292
-msgid "Default Post Location:"
+#: mod/contacts.php:578
+msgid "Fetch information and keywords"
 msgstr ""
 
-#: mod/settings.php:1293
-msgid "Use Browser Location:"
+#: mod/contacts.php:592 mod/unfollow.php:100
+msgid "Disconnect/Unfollow"
 msgstr ""
 
-#: mod/settings.php:1296
-msgid "Security and Privacy Settings"
+#: mod/contacts.php:602
+msgid "Contact"
 msgstr ""
 
-#: mod/settings.php:1298
-msgid "Maximum Friend Requests/Day:"
+#: mod/contacts.php:605
+msgid "Profile Visibility"
 msgstr ""
 
-#: mod/settings.php:1298 mod/settings.php:1328
-msgid "(to prevent spam abuse)"
+#: mod/contacts.php:606
+#, php-format
+msgid ""
+"Please choose the profile you would like to display to %s when viewing your "
+"profile securely."
 msgstr ""
 
-#: mod/settings.php:1299
-msgid "Default Post Permissions"
+#: mod/contacts.php:607
+msgid "Contact Information / Notes"
 msgstr ""
 
-#: mod/settings.php:1300
-msgid "(click to open/close)"
+#: mod/contacts.php:608
+msgid "Their personal note"
 msgstr ""
 
-#: mod/settings.php:1311
-msgid "Default Private Post"
+#: mod/contacts.php:610
+msgid "Edit contact notes"
 msgstr ""
 
-#: mod/settings.php:1312
-msgid "Default Public Post"
+#: mod/contacts.php:616
+msgid "Block/Unblock contact"
 msgstr ""
 
-#: mod/settings.php:1316
-msgid "Default Permissions for New Posts"
+#: mod/contacts.php:617
+msgid "Ignore contact"
 msgstr ""
 
-#: mod/settings.php:1328
-msgid "Maximum private messages per day from unknown people:"
+#: mod/contacts.php:618
+msgid "Repair URL settings"
 msgstr ""
 
-#: mod/settings.php:1331
-msgid "Notification Settings"
+#: mod/contacts.php:619
+msgid "View conversations"
 msgstr ""
 
-#: mod/settings.php:1332
-msgid "By default post a status message when:"
+#: mod/contacts.php:625
+msgid "Last update:"
 msgstr ""
 
-#: mod/settings.php:1333
-msgid "accepting a friend request"
+#: mod/contacts.php:627
+msgid "Update public posts"
 msgstr ""
 
-#: mod/settings.php:1334
-msgid "joining a forum/community"
+#: mod/contacts.php:629 mod/contacts.php:1003
+msgid "Update now"
 msgstr ""
 
-#: mod/settings.php:1335
-msgid "making an <em>interesting</em> profile change"
+#: mod/contacts.php:635 mod/contacts.php:835 mod/contacts.php:1020
+msgid "Unignore"
 msgstr ""
 
-#: mod/settings.php:1336
-msgid "Send a notification email when:"
+#: mod/contacts.php:639
+msgid "Currently blocked"
 msgstr ""
 
-#: mod/settings.php:1337
-msgid "You receive an introduction"
+#: mod/contacts.php:640
+msgid "Currently ignored"
 msgstr ""
 
-#: mod/settings.php:1338
-msgid "Your introductions are confirmed"
+#: mod/contacts.php:641
+msgid "Currently archived"
 msgstr ""
 
-#: mod/settings.php:1339
-msgid "Someone writes on your profile wall"
+#: mod/contacts.php:642
+msgid ""
+"Replies/likes to your public posts <strong>may</strong> still be visible"
 msgstr ""
 
-#: mod/settings.php:1340
-msgid "Someone writes a followup comment"
+#: mod/contacts.php:643
+msgid "Notification for new posts"
 msgstr ""
 
-#: mod/settings.php:1341
-msgid "You receive a private message"
+#: mod/contacts.php:643
+msgid "Send a notification of every new post of this contact"
 msgstr ""
 
-#: mod/settings.php:1342
-msgid "You receive a friend suggestion"
+#: mod/contacts.php:646
+msgid "Blacklisted keywords"
 msgstr ""
 
-#: mod/settings.php:1343
-msgid "You are tagged in a post"
+#: mod/contacts.php:646
+msgid ""
+"Comma separated list of keywords that should not be converted to hashtags, "
+"when \"Fetch information and keywords\" is selected"
 msgstr ""
 
-#: mod/settings.php:1344
-msgid "You are poked/prodded/etc. in a post"
+#: mod/contacts.php:664
+msgid "Actions"
 msgstr ""
 
-#: mod/settings.php:1346
-msgid "Activate desktop notifications"
+#: mod/contacts.php:667
+msgid "Contact Settings"
 msgstr ""
 
-#: mod/settings.php:1346
-msgid "Show desktop popup on new notifications"
+#: mod/contacts.php:713
+msgid "Suggestions"
 msgstr ""
 
-#: mod/settings.php:1348
-msgid "Text-only notification emails"
+#: mod/contacts.php:716
+msgid "Suggest potential friends"
 msgstr ""
 
-#: mod/settings.php:1350
-msgid "Send text only notification emails, without the html part"
+#: mod/contacts.php:724
+msgid "Show all contacts"
 msgstr ""
 
-#: mod/settings.php:1352
-msgid "Advanced Account/Page Type Settings"
+#: mod/contacts.php:729
+msgid "Unblocked"
 msgstr ""
 
-#: mod/settings.php:1353
-msgid "Change the behaviour of this account for special situations"
+#: mod/contacts.php:732
+msgid "Only show unblocked contacts"
 msgstr ""
 
-#: mod/settings.php:1356
-msgid "Relocate"
+#: mod/contacts.php:738
+msgid "Blocked"
 msgstr ""
 
-#: mod/settings.php:1357
-msgid ""
-"If you have moved this profile from another server, and some of your "
-"contacts don't receive your updates, try pushing this button."
+#: mod/contacts.php:741
+msgid "Only show blocked contacts"
 msgstr ""
 
-#: mod/settings.php:1358
-msgid "Resend relocate message to contacts"
+#: mod/contacts.php:747
+msgid "Ignored"
 msgstr ""
 
-#: mod/subthread.php:106
-#, php-format
-msgid "%1$s is following %2$s's %3$s"
+#: mod/contacts.php:750
+msgid "Only show ignored contacts"
 msgstr ""
 
-#: mod/suggest.php:30
-msgid "Do you really want to delete this suggestion?"
+#: mod/contacts.php:756
+msgid "Archived"
 msgstr ""
 
-#: mod/suggest.php:74
-msgid ""
-"No suggestions available. If this is a new site, please try again in 24 "
-"hours."
+#: mod/contacts.php:759
+msgid "Only show archived contacts"
 msgstr ""
 
-#: mod/suggest.php:87 mod/suggest.php:107
-msgid "Ignore/Hide"
+#: mod/contacts.php:765
+msgid "Hidden"
 msgstr ""
 
-#: mod/tagrm.php:46
-msgid "Tag removed"
+#: mod/contacts.php:768
+msgid "Only show hidden contacts"
 msgstr ""
 
-#: mod/tagrm.php:85
-msgid "Remove Item Tag"
+#: mod/contacts.php:825
+msgid "Search your contacts"
 msgstr ""
 
-#: mod/tagrm.php:87
-msgid "Select a tag to remove: "
+#: mod/contacts.php:836 mod/contacts.php:1028
+msgid "Archive"
 msgstr ""
 
-#: mod/uexport.php:39
-msgid "Export account"
+#: mod/contacts.php:836 mod/contacts.php:1028
+msgid "Unarchive"
 msgstr ""
 
-#: mod/uexport.php:39
-msgid ""
-"Export your account info and contacts. Use this to make a backup of your "
-"account and/or to move it to another server."
+#: mod/contacts.php:839
+msgid "Batch Actions"
 msgstr ""
 
-#: mod/uexport.php:40
-msgid "Export all"
+#: mod/contacts.php:885
+msgid "View all contacts"
 msgstr ""
 
-#: mod/uexport.php:40
-msgid ""
-"Export your accout info, contacts and all your items as json. Could be a "
-"very big file, and could take a lot of time. Use this to make a full backup "
-"of your account (photos are not exported)"
+#: mod/contacts.php:895
+msgid "View all common friends"
 msgstr ""
 
-#: mod/unfollow.php:33
-msgid "Contact wasn't found or can't be unfollowed."
+#: mod/contacts.php:902
+msgid "Advanced Contact Settings"
 msgstr ""
 
-#: mod/unfollow.php:47
-msgid "Contact unfollowed"
+#: mod/contacts.php:936
+msgid "Mutual Friendship"
 msgstr ""
 
-#: mod/unfollow.php:73
-msgid "You aren't a friend of this contact."
+#: mod/contacts.php:940
+msgid "is a fan of yours"
 msgstr ""
 
-#: mod/unfollow.php:79
-msgid "Unfollowing is currently not supported by your network."
+#: mod/contacts.php:944
+msgid "you are a fan of"
 msgstr ""
 
-#: mod/videos.php:127
-msgid "Do you really want to delete this video?"
+#: mod/contacts.php:1014
+msgid "Toggle Blocked status"
 msgstr ""
 
-#: mod/videos.php:132
-msgid "Delete Video"
+#: mod/contacts.php:1022
+msgid "Toggle Ignored status"
 msgstr ""
 
-#: mod/videos.php:211
-msgid "No videos selected"
+#: mod/contacts.php:1030
+msgid "Toggle Archive status"
 msgstr ""
 
-#: mod/videos.php:405
-msgid "Recent Videos"
+#: mod/contacts.php:1038
+msgid "Delete contact"
 msgstr ""
 
-#: mod/videos.php:407
-msgid "Upload New Videos"
+#: mod/fbrowser.php:136
+msgid "Files"
 msgstr ""
 
-#: mod/wallmessage.php:45 mod/wallmessage.php:109
-#, php-format
-msgid "Number of daily wall messages for %s exceeded. Message failed."
+#: mod/unfollow.php:33
+msgid "Contact wasn't found or can't be unfollowed."
 msgstr ""
 
-#: mod/wallmessage.php:56
-msgid "Unable to check your home location."
+#: mod/unfollow.php:47
+msgid "Contact unfollowed"
 msgstr ""
 
-#: mod/wallmessage.php:83 mod/wallmessage.php:92
-msgid "No recipient."
+#: mod/unfollow.php:73
+msgid "You aren't a friend of this contact."
 msgstr ""
 
-#: mod/wallmessage.php:130
-#, php-format
-msgid ""
-"If you wish for %s to respond, please check that the privacy settings on "
-"your site allow private mail from unknown senders."
+#: mod/unfollow.php:79
+msgid "Unfollowing is currently not supported by your network."
 msgstr ""
 
-#: object/Item.php:348
+#: object/Item.php:353
 msgid "via"
 msgstr ""
 
@@ -8993,44 +8993,44 @@ msgstr ""
 msgid "show fewer"
 msgstr ""
 
-#: boot.php:724
+#: boot.php:733
 #, php-format
 msgid "Update %s failed. See error logs."
 msgstr ""
 
-#: boot.php:836
+#: boot.php:845
 msgid "Create a New Account"
 msgstr ""
 
-#: boot.php:864
+#: boot.php:873
 msgid "Password: "
 msgstr ""
 
-#: boot.php:865
+#: boot.php:874
 msgid "Remember me"
 msgstr ""
 
-#: boot.php:868
+#: boot.php:877
 msgid "Or login using OpenID: "
 msgstr ""
 
-#: boot.php:874
+#: boot.php:883
 msgid "Forgot your password?"
 msgstr ""
 
-#: boot.php:877
+#: boot.php:886
 msgid "Website Terms of Service"
 msgstr ""
 
-#: boot.php:878
+#: boot.php:887
 msgid "terms of service"
 msgstr ""
 
-#: boot.php:880
+#: boot.php:889
 msgid "Website Privacy Policy"
 msgstr ""
 
-#: boot.php:881
+#: boot.php:890
 msgid "privacy policy"
 msgstr ""
 
index 381f06fd6f1857c3db87dbb67519e77c7142ba8d..bf813518db886fd679d04405d5828af2e8c2fa2f 100644 (file)
@@ -36,8 +36,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: friendica\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2017-08-26 09:47+0200\n"
-"PO-Revision-Date: 2017-09-05 16:17+0000\n"
+"POT-Creation-Date: 2017-10-01 08:52+0200\n"
+"PO-Revision-Date: 2017-10-03 04:26+0000\n"
 "Last-Translator: Tobias Diekershoff <tobias.diekershoff@gmx.net>\n"
 "Language-Team: German (http://www.transifex.com/Friendica/friendica/language/de/)\n"
 "MIME-Version: 1.0\n"
@@ -133,7 +133,7 @@ msgstr "Netzwerk Filter"
 msgid "Enable widget to display Network posts only from selected network"
 msgstr "Widget zum filtern der Beiträge in Abhängigkeit des Netzwerks aus dem der Ersteller sendet aktivieren."
 
-#: include/features.php:86 mod/search.php:37 mod/network.php:209
+#: include/features.php:86 mod/network.php:194 mod/search.php:37
 msgid "Saved Searches"
 msgstr "Gespeicherte Suchen"
 
@@ -205,7 +205,7 @@ msgstr "Beitragskategorien"
 msgid "Add categories to your posts"
 msgstr "Eigene Beiträge mit Kategorien versehen"
 
-#: include/features.php:104 include/contact_widgets.php:166
+#: include/features.php:104 include/contact_widgets.php:167
 msgid "Saved Folders"
 msgstr "Gespeicherte Ordner"
 
@@ -245,15 +245,15 @@ msgstr "Erweiterte Profil-Einstellungen"
 msgid "Show visitors public community forums at the Advanced Profile Page"
 msgstr "Zeige Besuchern öffentliche Gemeinschafts-Foren auf der Erweiterten Profil-Seite"
 
-#: include/datetime.php:66 include/datetime.php:68 mod/profiles.php:701
+#: include/datetime.php:66 include/datetime.php:68 mod/profiles.php:696
 msgid "Miscellaneous"
 msgstr "Verschiedenes"
 
-#: include/datetime.php:196 include/identity.php:653
+#: include/datetime.php:196 include/identity.php:654
 msgid "Birthday:"
 msgstr "Geburtstag:"
 
-#: include/datetime.php:198 mod/profiles.php:724
+#: include/datetime.php:198 mod/profiles.php:719
 msgid "Age: "
 msgstr "Alter: "
 
@@ -277,8 +277,8 @@ msgstr "Jahr"
 msgid "years"
 msgstr "Jahre"
 
-#: include/datetime.php:380 include/event.php:453 mod/cal.php:281
-#: mod/events.php:387
+#: include/datetime.php:380 include/event.php:454 mod/cal.php:282
+#: mod/events.php:388
 msgid "month"
 msgstr "Monat"
 
@@ -286,8 +286,8 @@ msgstr "Monat"
 msgid "months"
 msgstr "Monate"
 
-#: include/datetime.php:381 include/event.php:454 mod/cal.php:282
-#: mod/events.php:388
+#: include/datetime.php:381 include/event.php:455 mod/cal.php:283
+#: mod/events.php:389
 msgid "week"
 msgstr "Woche"
 
@@ -295,8 +295,8 @@ msgstr "Woche"
 msgid "weeks"
 msgstr "Wochen"
 
-#: include/datetime.php:382 include/event.php:455 mod/cal.php:283
-#: mod/events.php:389
+#: include/datetime.php:382 include/event.php:456 mod/cal.php:284
+#: mod/events.php:390
 msgid "day"
 msgstr "Tag"
 
@@ -338,209 +338,11 @@ msgstr "vor %1$d %2$s"
 msgid "%s's birthday"
 msgstr "%ss Geburtstag"
 
-#: include/datetime.php:621 include/dfrn.php:1318
+#: include/datetime.php:621 include/dfrn.php:1332
 #, php-format
 msgid "Happy Birthday %s"
 msgstr "Herzlichen Glückwunsch %s"
 
-#: include/like.php:30 include/conversation.php:154 include/diaspora.php:1653
-#, php-format
-msgid "%1$s likes %2$s's %3$s"
-msgstr "%1$s mag %2$ss %3$s"
-
-#: include/like.php:34 include/like.php:39 include/conversation.php:157
-#, php-format
-msgid "%1$s doesn't like %2$s's %3$s"
-msgstr "%1$s mag %2$ss %3$s nicht"
-
-#: include/like.php:44
-#, php-format
-msgid "%1$s is attending %2$s's %3$s"
-msgstr "%1$s nimmt an %2$ss %3$s teil."
-
-#: include/like.php:49
-#, php-format
-msgid "%1$s is not attending %2$s's %3$s"
-msgstr "%1$s nimmt nicht an %2$ss %3$s teil."
-
-#: include/like.php:54
-#, php-format
-msgid "%1$s may attend %2$s's %3$s"
-msgstr "%1$s nimmt eventuell an %2$ss %3$s teil."
-
-#: include/like.php:181 include/conversation.php:142
-#: include/conversation.php:294 include/text.php:1893 mod/subthread.php:89
-#: mod/tagger.php:63
-msgid "photo"
-msgstr "Foto"
-
-#: include/like.php:181 include/conversation.php:137
-#: include/conversation.php:147 include/conversation.php:289
-#: include/conversation.php:298 include/diaspora.php:1657 mod/subthread.php:89
-#: mod/tagger.php:63
-msgid "status"
-msgstr "Status"
-
-#: include/like.php:183 include/conversation.php:134
-#: include/conversation.php:286 include/text.php:1891
-msgid "event"
-msgstr "Event"
-
-#: include/user.php:39 mod/settings.php:377
-msgid "Passwords do not match. Password unchanged."
-msgstr "Die Passwörter stimmen nicht überein. Das Passwort bleibt unverändert."
-
-#: include/user.php:48
-msgid "An invitation is required."
-msgstr "Du benötigst eine Einladung."
-
-#: include/user.php:53
-msgid "Invitation could not be verified."
-msgstr "Die Einladung konnte nicht überprüft werden."
-
-#: include/user.php:61
-msgid "Invalid OpenID url"
-msgstr "Ungültige OpenID URL"
-
-#: include/user.php:75 include/auth.php:139
-msgid ""
-"We encountered a problem while logging in with the OpenID you provided. "
-"Please check the correct spelling of the ID."
-msgstr "Beim Versuch Dich mit der von Dir angegebenen OpenID anzumelden trat ein Problem auf. Bitte überprüfe, dass Du die OpenID richtig geschrieben hast."
-
-#: include/user.php:75 include/auth.php:139
-msgid "The error message was:"
-msgstr "Die Fehlermeldung lautete:"
-
-#: include/user.php:82
-msgid "Please enter the required information."
-msgstr "Bitte trage die erforderlichen Informationen ein."
-
-#: include/user.php:96
-msgid "Please use a shorter name."
-msgstr "Bitte verwende einen kürzeren Namen."
-
-#: include/user.php:98
-msgid "Name too short."
-msgstr "Der Name ist zu kurz."
-
-#: include/user.php:106
-msgid "That doesn't appear to be your full (First Last) name."
-msgstr "Das scheint nicht Dein kompletter Name (Vor- und Nachname) zu sein."
-
-#: include/user.php:111
-msgid "Your email domain is not among those allowed on this site."
-msgstr "Die Domain Deiner E-Mail Adresse ist auf dieser Seite nicht erlaubt."
-
-#: include/user.php:114
-msgid "Not a valid email address."
-msgstr "Keine gültige E-Mail-Adresse."
-
-#: include/user.php:127
-msgid "Cannot use that email."
-msgstr "Konnte diese E-Mail-Adresse nicht verwenden."
-
-#: include/user.php:133
-msgid "Your \"nickname\" can only contain \"a-z\", \"0-9\" and \"_\"."
-msgstr "Dein Spitzname darf nur aus Buchstaben und Zahlen (\"a-z\",\"0-9\" und \"_\") bestehen."
-
-#: include/user.php:140 include/user.php:228
-msgid "Nickname is already registered. Please choose another."
-msgstr "Dieser Spitzname ist bereits vergeben. Bitte wähle einen anderen."
-
-#: include/user.php:150
-msgid ""
-"Nickname was once registered here and may not be re-used. Please choose "
-"another."
-msgstr "Dieser Spitzname ist bereits vergeben. Bitte wähle einen anderen."
-
-#: include/user.php:166
-msgid "SERIOUS ERROR: Generation of security keys failed."
-msgstr "FATALER FEHLER: Sicherheitsschlüssel konnten nicht erzeugt werden."
-
-#: include/user.php:214
-msgid "An error occurred during registration. Please try again."
-msgstr "Während der Anmeldung ist ein Fehler aufgetreten. Bitte versuche es noch einmal."
-
-#: include/user.php:237 view/theme/duepuntozero/config.php:46
-msgid "default"
-msgstr "Standard"
-
-#: include/user.php:247
-msgid "An error occurred creating your default profile. Please try again."
-msgstr "Bei der Erstellung des Standardprofils ist ein Fehler aufgetreten. Bitte versuche es noch einmal."
-
-#: include/user.php:260 include/user.php:264 include/profile_selectors.php:42
-msgid "Friends"
-msgstr "Kontakte"
-
-#: include/user.php:306 include/user.php:314 include/user.php:322
-#: include/api.php:3702 mod/photos.php:73 mod/photos.php:189
-#: mod/photos.php:776 mod/photos.php:1258 mod/photos.php:1279
-#: mod/photos.php:1865 mod/profile_photo.php:74 mod/profile_photo.php:82
-#: mod/profile_photo.php:90 mod/profile_photo.php:214
-#: mod/profile_photo.php:309 mod/profile_photo.php:319
-msgid "Profile Photos"
-msgstr "Profilbilder"
-
-#: include/user.php:397
-#, php-format
-msgid ""
-"\n"
-"\t\tDear %1$s,\n"
-"\t\t\tThank you for registering at %2$s. Your account is pending for approval by the administrator.\n"
-"\t"
-msgstr "\nHallo %1$s,\n\ndanke für Deine Registrierung auf %2$s. Dein Account wurde muss noch vom Admin des Knotens geprüft werden."
-
-#: include/user.php:407
-#, php-format
-msgid "Registration at %s"
-msgstr "Registrierung als %s"
-
-#: include/user.php:417
-#, php-format
-msgid ""
-"\n"
-"\t\tDear %1$s,\n"
-"\t\t\tThank you for registering at %2$s. Your account has been created.\n"
-"\t"
-msgstr "\nHallo %1$s,\n\ndanke für Deine Registrierung auf %2$s. Dein Account wurde eingerichtet."
-
-#: include/user.php:421
-#, php-format
-msgid ""
-"\n"
-"\t\tThe login details are as follows:\n"
-"\t\t\tSite Location:\t%3$s\n"
-"\t\t\tLogin Name:\t%1$s\n"
-"\t\t\tPassword:\t%5$s\n"
-"\n"
-"\t\tYou may change your password from your account \"Settings\" page after logging\n"
-"\t\tin.\n"
-"\n"
-"\t\tPlease take a few moments to review the other account settings on that page.\n"
-"\n"
-"\t\tYou may also wish to add some basic information to your default profile\n"
-"\t\t(on the \"Profiles\" page) so that other people can easily find you.\n"
-"\n"
-"\t\tWe recommend setting your full name, adding a profile photo,\n"
-"\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n"
-"\t\tperhaps what country you live in; if you do not wish to be more specific\n"
-"\t\tthan that.\n"
-"\n"
-"\t\tWe fully respect your right to privacy, and none of these items are necessary.\n"
-"\t\tIf you are new and do not know anybody here, they may help\n"
-"\t\tyou to make some new and interesting friends.\n"
-"\n"
-"\n"
-"\t\tThank you and welcome to %2$s."
-msgstr "\nDie Anmelde-Details sind die folgenden:\n\tAdresse der Seite:\t%3$s\n\tBenutzernamename:\t%1$s\n\tPasswort:\t%5$s\n\nDu kannst Dein Passwort unter \"Einstellungen\" ändern, sobald Du Dich\nangemeldet hast.\n\nBitte nimm Dir ein paar Minuten um die anderen Einstellungen auf dieser\nSeite zu kontrollieren.\n\nEventuell magst Du ja auch einige Informationen über Dich in Deinem\nProfil veröffentlichen, damit andere Leute Dich einfacher finden können.\nBearbeite hierfür einfach Dein Standard-Profil (über die Profil-Seite).\n\nWir empfehlen Dir, Deinen kompletten Namen anzugeben und ein zu Dir\npassendes Profilbild zu wählen, damit Dich alte Bekannte wieder finden.\nAußerdem ist es nützlich, wenn Du auf Deinem Profil Schlüsselwörter\nangibst. Das erleichtert es, Leute zu finden, die Deine Interessen teilen.\n\nWir respektieren Deine Privatsphäre - keine dieser Angaben ist nötig.\nWenn Du neu im Netzwerk bist und noch niemanden kennst, dann können sie\nallerdings dabei helfen, neue und interessante Kontakte zu knüpfen.\n\nDanke für Deine Aufmerksamkeit und willkommen auf %2$s."
-
-#: include/user.php:453 mod/admin.php:1398
-#, php-format
-msgid "Registration details for %s"
-msgstr "Details der Registration von %s"
-
 #: include/profile_selectors.php:6
 msgid "Male"
 msgstr "Männlich"
@@ -593,7 +395,7 @@ msgstr "Nicht spezifiziert"
 msgid "Other"
 msgstr "Andere"
 
-#: include/profile_selectors.php:6 include/conversation.php:1555
+#: include/profile_selectors.php:6 include/conversation.php:1556
 msgid "Undecided"
 msgid_plural "Undecided"
 msgstr[0] "Unentschieden"
@@ -687,6 +489,10 @@ msgstr "Untreu"
 msgid "Sex Addict"
 msgstr "Sexbesessen"
 
+#: include/profile_selectors.php:42 include/user.php:262 include/user.php:266
+msgid "Friends"
+msgstr "Kontakte"
+
 #: include/profile_selectors.php:42
 msgid "Friends/Benefits"
 msgstr "Freunde/Zuwendungen"
@@ -771,1087 +577,1201 @@ msgstr "Ist mir nicht wichtig"
 msgid "Ask me"
 msgstr "Frag mich"
 
-#: include/NotificationsManager.php:155
-msgid "System"
-msgstr "System"
+#: include/dba_pdo.php:75 include/dba.php:56
+#, php-format
+msgid "Cannot locate DNS info for database server '%s'"
+msgstr "Kann die DNS Informationen für den Datenbankserver '%s' nicht ermitteln."
 
-#: include/NotificationsManager.php:162 include/nav.php:160 mod/admin.php:587
-#: view/theme/frio/theme.php:259
-msgid "Network"
-msgstr "Netzwerk"
+#: include/acl_selectors.php:355
+msgid "Post to Email"
+msgstr "An E-Mail senden"
 
-#: include/NotificationsManager.php:169 mod/profiles.php:699
-#: mod/network.php:867
-msgid "Personal"
-msgstr "Persönlich"
+#: include/acl_selectors.php:360
+#, php-format
+msgid "Connectors disabled, since \"%s\" is enabled."
+msgstr "Konnektoren sind nicht verfügbar, da \"%s\" aktiv ist."
 
-#: include/NotificationsManager.php:176 include/nav.php:107
-#: include/nav.php:163
-msgid "Home"
-msgstr "Pinnwand"
+#: include/acl_selectors.php:361 mod/settings.php:1185
+msgid "Hide your profile details from unknown viewers?"
+msgstr "Profil-Details vor unbekannten Betrachtern verbergen?"
 
-#: include/NotificationsManager.php:183 include/nav.php:168
-msgid "Introductions"
-msgstr "Kontaktanfragen"
+#: include/acl_selectors.php:367
+msgid "Visible to everybody"
+msgstr "Für jeden sichtbar"
 
-#: include/NotificationsManager.php:241 include/NotificationsManager.php:253
-#, php-format
-msgid "%s commented on %s's post"
-msgstr "%s hat %ss Beitrag kommentiert"
+#: include/acl_selectors.php:368 view/theme/vier/config.php:110
+msgid "show"
+msgstr "zeigen"
 
-#: include/NotificationsManager.php:252
-#, php-format
-msgid "%s created a new post"
-msgstr "%s hat einen neuen Beitrag erstellt"
+#: include/acl_selectors.php:369 view/theme/vier/config.php:110
+msgid "don't show"
+msgstr "nicht zeigen"
 
-#: include/NotificationsManager.php:267
-#, php-format
-msgid "%s liked %s's post"
-msgstr "%s mag %ss Beitrag"
+#: include/acl_selectors.php:375 mod/editpost.php:126
+msgid "CC: email addresses"
+msgstr "Cc: E-Mail-Addressen"
 
-#: include/NotificationsManager.php:280
-#, php-format
-msgid "%s disliked %s's post"
-msgstr "%s mag %ss Beitrag nicht"
+#: include/acl_selectors.php:376 mod/editpost.php:133
+msgid "Example: bob@example.com, mary@example.com"
+msgstr "Z.B.: bob@example.com, mary@example.com"
 
-#: include/NotificationsManager.php:293
-#, php-format
-msgid "%s is attending %s's event"
-msgstr "%s nimmt an %s's Event teil"
+#: include/acl_selectors.php:378 mod/events.php:512 mod/photos.php:1199
+#: mod/photos.php:1596
+msgid "Permissions"
+msgstr "Berechtigungen"
 
-#: include/NotificationsManager.php:306
-#, php-format
-msgid "%s is not attending %s's event"
-msgstr "%s nimmt nicht an %s's Event teil"
+#: include/acl_selectors.php:379
+msgid "Close"
+msgstr "Schließen"
 
-#: include/NotificationsManager.php:319
-#, php-format
-msgid "%s may attend %s's event"
-msgstr "%s nimmt eventuell an %s's Event teil"
+#: include/contact_selectors.php:32
+msgid "Unknown | Not categorised"
+msgstr "Unbekannt | Nicht kategorisiert"
 
-#: include/NotificationsManager.php:336
-#, php-format
-msgid "%s is now friends with %s"
-msgstr "%s ist jetzt mit %s befreundet"
+#: include/contact_selectors.php:33
+msgid "Block immediately"
+msgstr "Sofort blockieren"
 
-#: include/NotificationsManager.php:774
-msgid "Friend Suggestion"
-msgstr "Kontaktvorschlag"
+#: include/contact_selectors.php:34
+msgid "Shady, spammer, self-marketer"
+msgstr "Zwielichtig, Spammer, Selbstdarsteller"
 
-#: include/NotificationsManager.php:803
-msgid "Friend/Connect Request"
-msgstr "Kontakt-/Freundschaftsanfrage"
+#: include/contact_selectors.php:35
+msgid "Known to me, but no opinion"
+msgstr "Ist mir bekannt, hab aber keine Meinung"
 
-#: include/NotificationsManager.php:803
-msgid "New Follower"
-msgstr "Neuer Bewunderer"
+#: include/contact_selectors.php:36
+msgid "OK, probably harmless"
+msgstr "OK, wahrscheinlich harmlos"
 
-#: include/Photo.php:1075 include/Photo.php:1091 include/Photo.php:1099
-#: include/Photo.php:1124 include/message.php:145 mod/wall_upload.php:249
-#: mod/item.php:468
-msgid "Wall Photos"
-msgstr "Pinnwand-Bilder"
+#: include/contact_selectors.php:37
+msgid "Reputable, has my trust"
+msgstr "Seriös, hat mein Vertrauen"
 
-#: include/api.php:1102
-#, php-format
-msgid "Daily posting limit of %d posts reached. The post was rejected."
-msgstr "Das tägliche Nachrichtenlimit von %d Nachrichten wurde erreicht. Die Nachtricht wurde verworfen."
+#: include/contact_selectors.php:56 mod/admin.php:1079
+msgid "Frequently"
+msgstr "immer wieder"
 
-#: include/api.php:1123
-#, php-format
-msgid "Weekly posting limit of %d posts reached. The post was rejected."
-msgstr "Das wöchentliche Nachrichtenlimit von %d Nachrichten wurde erreicht. Die Nachtricht wurde verworfen."
-
-#: include/api.php:1144
-#, php-format
-msgid "Monthly posting limit of %d posts reached. The post was rejected."
-msgstr "Das monatliche Nachrichtenlimit von %d Nachrichten wurde erreicht. Die Nachtricht wurde verworfen."
+#: include/contact_selectors.php:57 mod/admin.php:1080
+msgid "Hourly"
+msgstr "Stündlich"
 
-#: include/auth.php:52
-msgid "Logged out."
-msgstr "Abgemeldet."
+#: include/contact_selectors.php:58 mod/admin.php:1081
+msgid "Twice daily"
+msgstr "Zweimal täglich"
 
-#: include/auth.php:123 include/auth.php:185 mod/openid.php:110
-msgid "Login failed."
-msgstr "Anmeldung fehlgeschlagen."
+#: include/contact_selectors.php:59 mod/admin.php:1082
+msgid "Daily"
+msgstr "Täglich"
 
-#: include/dba_pdo.php:75 include/dba.php:59
-#, php-format
-msgid "Cannot locate DNS info for database server '%s'"
-msgstr "Kann die DNS Informationen für den Datenbankserver '%s' nicht ermitteln."
+#: include/contact_selectors.php:60
+msgid "Weekly"
+msgstr "Wöchentlich"
 
-#: include/delivery.php:428
-msgid "(no subject)"
-msgstr "(kein Betreff)"
+#: include/contact_selectors.php:61
+msgid "Monthly"
+msgstr "Monatlich"
 
-#: include/delivery.php:440 include/enotify.php:46
-msgid "noreply"
-msgstr "noreply"
+#: include/contact_selectors.php:76 mod/dfrn_request.php:887
+msgid "Friendica"
+msgstr "Friendica"
 
-#: include/event.php:19 include/bb2diaspora.php:233 mod/localtime.php:13
-msgid "l F d, Y \\@ g:i A"
-msgstr "l, d. F Y\\, H:i"
+#: include/contact_selectors.php:77
+msgid "OStatus"
+msgstr "OStatus"
 
-#: include/event.php:36 include/event.php:56 include/event.php:459
-#: include/bb2diaspora.php:239
-msgid "Starts:"
-msgstr "Beginnt:"
+#: include/contact_selectors.php:78
+msgid "RSS/Atom"
+msgstr "RSS/Atom"
 
-#: include/event.php:39 include/event.php:62 include/event.php:460
-#: include/bb2diaspora.php:247
-msgid "Finishes:"
-msgstr "Endet:"
+#: include/contact_selectors.php:79 include/contact_selectors.php:86
+#: mod/admin.php:1588 mod/admin.php:1601 mod/admin.php:1614 mod/admin.php:1632
+msgid "Email"
+msgstr "E-Mail"
 
-#: include/event.php:43 include/event.php:69 include/event.php:461
-#: include/bb2diaspora.php:256 include/identity.php:338 mod/directory.php:135
-#: mod/notifications.php:246 mod/events.php:496 mod/contacts.php:641
-msgid "Location:"
-msgstr "Ort:"
+#: include/contact_selectors.php:80 mod/dfrn_request.php:889
+#: mod/settings.php:845
+msgid "Diaspora"
+msgstr "Diaspora"
 
-#: include/event.php:408
-msgid "all-day"
-msgstr "ganztägig"
+#: include/contact_selectors.php:81
+msgid "Facebook"
+msgstr "Facebook"
 
-#: include/event.php:410
-msgid "Sun"
-msgstr "So"
+#: include/contact_selectors.php:82
+msgid "Zot!"
+msgstr "Zott"
 
-#: include/event.php:411
-msgid "Mon"
-msgstr "Mo"
+#: include/contact_selectors.php:83
+msgid "LinkedIn"
+msgstr "LinkedIn"
 
-#: include/event.php:412
-msgid "Tue"
-msgstr "Di"
+#: include/contact_selectors.php:84
+msgid "XMPP/IM"
+msgstr "XMPP/Chat"
 
-#: include/event.php:413
-msgid "Wed"
-msgstr "Mi"
+#: include/contact_selectors.php:85
+msgid "MySpace"
+msgstr "MySpace"
 
-#: include/event.php:414
-msgid "Thu"
-msgstr "Do"
+#: include/contact_selectors.php:87
+msgid "Google+"
+msgstr "Google+"
 
-#: include/event.php:415
-msgid "Fri"
-msgstr "Fr"
+#: include/contact_selectors.php:88
+msgid "pump.io"
+msgstr "pump.io"
 
-#: include/event.php:416
-msgid "Sat"
-msgstr "Sa"
+#: include/contact_selectors.php:89
+msgid "Twitter"
+msgstr "Twitter"
 
-#: include/event.php:418 include/text.php:1206 mod/settings.php:982
-msgid "Sunday"
-msgstr "Sonntag"
+#: include/contact_selectors.php:90
+msgid "Diaspora Connector"
+msgstr "Diaspora"
 
-#: include/event.php:419 include/text.php:1206 mod/settings.php:982
-msgid "Monday"
-msgstr "Montag"
+#: include/contact_selectors.php:91
+msgid "GNU Social Connector"
+msgstr "GNU social Connector"
 
-#: include/event.php:420 include/text.php:1206
-msgid "Tuesday"
-msgstr "Dienstag"
+#: include/contact_selectors.php:92
+msgid "pnut"
+msgstr "pnut"
 
-#: include/event.php:421 include/text.php:1206
-msgid "Wednesday"
-msgstr "Mittwoch"
+#: include/contact_selectors.php:93
+msgid "App.net"
+msgstr "App.net"
 
-#: include/event.php:422 include/text.php:1206
-msgid "Thursday"
-msgstr "Donnerstag"
+#: include/group.php:25
+msgid ""
+"A deleted group with this name was revived. Existing item permissions "
+"<strong>may</strong> apply to this group and any future members. If this is "
+"not what you intended, please create another group with a different name."
+msgstr "Eine gelöschte Gruppe mit diesem Namen wurde wiederbelebt. Bestehende Berechtigungseinstellungen <strong>könnten</strong> auf diese Gruppe oder zukünftige Mitglieder angewandt werden. Falls Du dies nicht möchtest, erstelle bitte eine andere Gruppe mit einem anderen Namen."
 
-#: include/event.php:423 include/text.php:1206
-msgid "Friday"
-msgstr "Freitag"
+#: include/group.php:201
+msgid "Default privacy group for new contacts"
+msgstr "Voreingestellte Gruppe für neue Kontakte"
 
-#: include/event.php:424 include/text.php:1206
-msgid "Saturday"
-msgstr "Samstag"
+#: include/group.php:234
+msgid "Everybody"
+msgstr "Alle Kontakte"
 
-#: include/event.php:426
-msgid "Jan"
-msgstr "Jan"
+#: include/group.php:257
+msgid "edit"
+msgstr "bearbeiten"
 
-#: include/event.php:427
-msgid "Feb"
-msgstr "Feb"
+#: include/group.php:278 mod/newmember.php:39
+msgid "Groups"
+msgstr "Gruppen"
 
-#: include/event.php:428
-msgid "Mar"
-msgstr "März"
+#: include/group.php:280
+msgid "Edit groups"
+msgstr "Gruppen bearbeiten"
 
-#: include/event.php:429
-msgid "Apr"
-msgstr "Apr"
+#: include/group.php:282
+msgid "Edit group"
+msgstr "Gruppe bearbeiten"
 
-#: include/event.php:430 include/event.php:443 include/text.php:1210
-msgid "May"
-msgstr "Mai"
+#: include/group.php:283
+msgid "Create a new group"
+msgstr "Neue Gruppe erstellen"
 
-#: include/event.php:431
-msgid "Jun"
-msgstr "Jun"
+#: include/group.php:284 mod/group.php:101 mod/group.php:198
+msgid "Group Name: "
+msgstr "Gruppenname:"
 
-#: include/event.php:432
-msgid "Jul"
-msgstr "Juli"
+#: include/group.php:286
+msgid "Contacts not in any group"
+msgstr "Kontakte in keiner Gruppe"
 
-#: include/event.php:433
-msgid "Aug"
-msgstr "Aug"
+#: include/group.php:288 mod/network.php:195
+msgid "add"
+msgstr "hinzufügen"
 
-#: include/event.php:434
-msgid "Sept"
-msgstr "Sep"
+#: include/ForumManager.php:119 include/nav.php:134 include/text.php:1104
+#: view/theme/vier/theme.php:249
+msgid "Forums"
+msgstr "Foren"
 
-#: include/event.php:435
-msgid "Oct"
-msgstr "Okt"
+#: include/ForumManager.php:121 view/theme/vier/theme.php:251
+msgid "External link to forum"
+msgstr "Externer Link zum Forum"
 
-#: include/event.php:436
-msgid "Nov"
-msgstr "Nov"
+#: include/ForumManager.php:124 include/contact_widgets.php:272
+#: include/items.php:2407 mod/content.php:626 object/Item.php:417
+#: view/theme/vier/theme.php:254 src/App.php:524
+msgid "show more"
+msgstr "mehr anzeigen"
 
-#: include/event.php:437
-msgid "Dec"
-msgstr "Dez"
+#: include/NotificationsManager.php:157
+msgid "System"
+msgstr "System"
 
-#: include/event.php:439 include/text.php:1210
-msgid "January"
-msgstr "Januar"
+#: include/NotificationsManager.php:164 include/nav.php:161 mod/admin.php:589
+#: view/theme/frio/theme.php:260
+msgid "Network"
+msgstr "Netzwerk"
 
-#: include/event.php:440 include/text.php:1210
-msgid "February"
-msgstr "Februar"
+#: include/NotificationsManager.php:171 mod/network.php:911
+#: mod/profiles.php:694
+msgid "Personal"
+msgstr "Persönlich"
 
-#: include/event.php:441 include/text.php:1210
-msgid "March"
-msgstr "März"
+#: include/NotificationsManager.php:178 include/nav.php:108
+#: include/nav.php:164
+msgid "Home"
+msgstr "Pinnwand"
 
-#: include/event.php:442 include/text.php:1210
-msgid "April"
-msgstr "April"
+#: include/NotificationsManager.php:185 include/nav.php:169
+msgid "Introductions"
+msgstr "Kontaktanfragen"
 
-#: include/event.php:444 include/text.php:1210
-msgid "June"
-msgstr "Juni"
+#: include/NotificationsManager.php:243 include/NotificationsManager.php:255
+#, php-format
+msgid "%s commented on %s's post"
+msgstr "%s hat %ss Beitrag kommentiert"
 
-#: include/event.php:445 include/text.php:1210
-msgid "July"
-msgstr "Juli"
+#: include/NotificationsManager.php:254
+#, php-format
+msgid "%s created a new post"
+msgstr "%s hat einen neuen Beitrag erstellt"
 
-#: include/event.php:446 include/text.php:1210
-msgid "August"
-msgstr "August"
+#: include/NotificationsManager.php:269
+#, php-format
+msgid "%s liked %s's post"
+msgstr "%s mag %ss Beitrag"
 
-#: include/event.php:447 include/text.php:1210
-msgid "September"
-msgstr "September"
+#: include/NotificationsManager.php:282
+#, php-format
+msgid "%s disliked %s's post"
+msgstr "%s mag %ss Beitrag nicht"
 
-#: include/event.php:448 include/text.php:1210
-msgid "October"
-msgstr "Oktober"
+#: include/NotificationsManager.php:295
+#, php-format
+msgid "%s is attending %s's event"
+msgstr "%s nimmt an %s's Event teil"
 
-#: include/event.php:449 include/text.php:1210
-msgid "November"
-msgstr "November"
+#: include/NotificationsManager.php:308
+#, php-format
+msgid "%s is not attending %s's event"
+msgstr "%s nimmt nicht an %s's Event teil"
 
-#: include/event.php:450 include/text.php:1210
-msgid "December"
-msgstr "Dezember"
+#: include/NotificationsManager.php:321
+#, php-format
+msgid "%s may attend %s's event"
+msgstr "%s nimmt eventuell an %s's Event teil"
 
-#: include/event.php:452 mod/cal.php:280 mod/events.php:386
-msgid "today"
-msgstr "Heute"
+#: include/NotificationsManager.php:338
+#, php-format
+msgid "%s is now friends with %s"
+msgstr "%s ist jetzt mit %s befreundet"
 
-#: include/event.php:457
-msgid "No events to display"
-msgstr "Keine Veranstaltung zum Anzeigen"
+#: include/NotificationsManager.php:776
+msgid "Friend Suggestion"
+msgstr "Kontaktvorschlag"
 
-#: include/event.php:570
-msgid "l, F j"
-msgstr "l, F j"
+#: include/NotificationsManager.php:805
+msgid "Friend/Connect Request"
+msgstr "Kontakt-/Freundschaftsanfrage"
 
-#: include/event.php:592
-msgid "Edit event"
-msgstr "Veranstaltung bearbeiten"
+#: include/NotificationsManager.php:805
+msgid "New Follower"
+msgstr "Neuer Bewunderer"
 
-#: include/event.php:593
-msgid "Delete event"
-msgstr "Veranstaltung löschen"
+#: include/auth.php:53
+msgid "Logged out."
+msgstr "Abgemeldet."
 
-#: include/event.php:619 include/text.php:1615 include/text.php:1622
-msgid "link to source"
-msgstr "Link zum Originalbeitrag"
+#: include/auth.php:124 include/auth.php:186 mod/openid.php:111
+msgid "Login failed."
+msgstr "Anmeldung fehlgeschlagen."
 
-#: include/event.php:877
-msgid "Export"
-msgstr "Exportieren"
+#: include/auth.php:140 include/user.php:77
+msgid ""
+"We encountered a problem while logging in with the OpenID you provided. "
+"Please check the correct spelling of the ID."
+msgstr "Beim Versuch Dich mit der von Dir angegebenen OpenID anzumelden trat ein Problem auf. Bitte überprüfe, dass Du die OpenID richtig geschrieben hast."
 
-#: include/event.php:878
-msgid "Export calendar as ical"
-msgstr "Kalender als ical exportieren"
+#: include/auth.php:140 include/user.php:77
+msgid "The error message was:"
+msgstr "Die Fehlermeldung lautete:"
 
-#: include/event.php:879
-msgid "Export calendar as csv"
-msgstr "Kalender als csv exportieren"
+#: include/bb2diaspora.php:234 include/event.php:20 mod/localtime.php:14
+msgid "l F d, Y \\@ g:i A"
+msgstr "l, d. F Y\\, H:i"
 
-#: include/follow.php:84 mod/dfrn_request.php:514
-msgid "Disallowed profile URL."
-msgstr "Nicht erlaubte Profil-URL."
+#: include/bb2diaspora.php:240 include/event.php:37 include/event.php:57
+#: include/event.php:460
+msgid "Starts:"
+msgstr "Beginnt:"
 
-#: include/follow.php:89 mod/friendica.php:115 mod/dfrn_request.php:520
-#: mod/admin.php:288 mod/admin.php:306
-msgid "Blocked domain"
-msgstr "Blockierte Daimain"
+#: include/bb2diaspora.php:248 include/event.php:40 include/event.php:63
+#: include/event.php:461
+msgid "Finishes:"
+msgstr "Endet:"
 
-#: include/follow.php:94
-msgid "Connect URL missing."
-msgstr "Connect-URL fehlt"
+#: include/bb2diaspora.php:257 include/event.php:44 include/event.php:70
+#: include/event.php:462 include/identity.php:339 mod/directory.php:135
+#: mod/events.php:497 mod/notifications.php:247 mod/contacts.php:657
+msgid "Location:"
+msgstr "Ort:"
 
-#: include/follow.php:122
-msgid ""
-"This site is not configured to allow communications with other networks."
-msgstr "Diese Seite ist so konfiguriert, dass keine Kommunikation mit anderen Netzwerken erfolgen kann."
+#: include/bbcode.php:429 include/bbcode.php:1192 include/bbcode.php:1193
+msgid "Image/photo"
+msgstr "Bild/Foto"
 
-#: include/follow.php:123 include/follow.php:137
-msgid "No compatible communication protocols or feeds were discovered."
-msgstr "Es wurden keine kompatiblen Kommunikationsprotokolle oder Feeds gefunden."
+#: include/bbcode.php:545
+#, php-format
+msgid "<a href=\"%1$s\" target=\"_blank\">%2$s</a> %3$s"
+msgstr "<a href=\"%1$s\" target=\"_blank\">%2$s</a> %3$s"
 
-#: include/follow.php:135
-msgid "The profile address specified does not provide adequate information."
-msgstr "Die angegebene Profiladresse liefert unzureichende Informationen."
+#: include/bbcode.php:1149 include/bbcode.php:1171
+msgid "$1 wrote:"
+msgstr "$1 hat geschrieben:"
 
-#: include/follow.php:140
-msgid "An author or name was not found."
-msgstr "Es wurde kein Autor oder Name gefunden."
+#: include/bbcode.php:1201 include/bbcode.php:1202
+msgid "Encrypted content"
+msgstr "Verschlüsselter Inhalt"
 
-#: include/follow.php:143
-msgid "No browser URL could be matched to this address."
-msgstr "Zu dieser Adresse konnte keine passende Browser URL gefunden werden."
+#: include/bbcode.php:1321
+msgid "Invalid source protocol"
+msgstr "Ungültiges Quell-Protokoll"
 
-#: include/follow.php:146
-msgid ""
-"Unable to match @-style Identity Address with a known protocol or email "
-"contact."
-msgstr "Konnte die @-Adresse mit keinem der bekannten Protokolle oder Email-Kontakte abgleichen."
+#: include/bbcode.php:1332
+msgid "Invalid link protocol"
+msgstr "Ungültiges Link-Protokoll"
 
-#: include/follow.php:147
-msgid "Use mailto: in front of address to force email check."
-msgstr "Verwende mailto: vor der Email Adresse, um eine Überprüfung der E-Mail-Adresse zu erzwingen."
+#: include/contact_widgets.php:12
+msgid "Add New Contact"
+msgstr "Neuen Kontakt hinzufügen"
 
-#: include/follow.php:153
-msgid ""
-"The profile address specified belongs to a network which has been disabled "
-"on this site."
-msgstr "Die Adresse dieses Profils gehört zu einem Netzwerk, mit dem die Kommunikation auf dieser Seite ausgeschaltet wurde."
+#: include/contact_widgets.php:13
+msgid "Enter address or web location"
+msgstr "Adresse oder Web-Link eingeben"
 
-#: include/follow.php:158
-msgid ""
-"Limited profile. This person will be unable to receive direct/personal "
-"notifications from you."
-msgstr "Eingeschränktes Profil. Diese Person wird keine direkten/privaten Nachrichten von Dir erhalten können."
+#: include/contact_widgets.php:14
+msgid "Example: bob@example.com, http://example.com/barbara"
+msgstr "Beispiel: bob@example.com, http://example.com/barbara"
 
-#: include/follow.php:259
-msgid "Unable to retrieve contact information."
-msgstr "Konnte die Kontaktinformationen nicht empfangen."
+#: include/contact_widgets.php:16 include/identity.php:229
+#: mod/allfriends.php:88 mod/dirfind.php:210 mod/match.php:93
+#: mod/suggest.php:101
+msgid "Connect"
+msgstr "Verbinden"
 
-#: include/message.php:14 include/message.php:168
-msgid "[no subject]"
-msgstr "[kein Betreff]"
+#: include/contact_widgets.php:31
+#, php-format
+msgid "%d invitation available"
+msgid_plural "%d invitations available"
+msgstr[0] "%d Einladung verfügbar"
+msgstr[1] "%d Einladungen verfügbar"
 
-#: include/nav.php:37 mod/navigation.php:21
-msgid "Nothing new here"
-msgstr "Keine Neuigkeiten"
+#: include/contact_widgets.php:37
+msgid "Find People"
+msgstr "Leute finden"
 
-#: include/nav.php:41 mod/navigation.php:25
-msgid "Clear notifications"
-msgstr "Bereinige Benachrichtigungen"
+#: include/contact_widgets.php:38
+msgid "Enter name or interest"
+msgstr "Name oder Interessen eingeben"
 
-#: include/nav.php:42 include/text.php:1093
-msgid "@name, !forum, #tags, content"
-msgstr "@name, !forum, #tags, content"
+#: include/contact_widgets.php:39 include/conversation.php:1026
+#: include/Contact.php:415 mod/allfriends.php:72 mod/dirfind.php:213
+#: mod/follow.php:143 mod/match.php:78 mod/suggest.php:83 mod/contacts.php:589
+msgid "Connect/Follow"
+msgstr "Verbinden/Folgen"
 
-#: include/nav.php:80 view/theme/frio/theme.php:249 boot.php:871
-msgid "Logout"
-msgstr "Abmelden"
+#: include/contact_widgets.php:40
+msgid "Examples: Robert Morgenstein, Fishing"
+msgstr "Beispiel: Robert Morgenstein, Angeln"
 
-#: include/nav.php:80 view/theme/frio/theme.php:249
-msgid "End this session"
-msgstr "Diese Sitzung beenden"
+#: include/contact_widgets.php:41 mod/directory.php:202 mod/contacts.php:827
+msgid "Find"
+msgstr "Finde"
 
-#: include/nav.php:83 include/identity.php:783 mod/contacts.php:650
-#: mod/contacts.php:846 view/theme/frio/theme.php:252
-msgid "Status"
-msgstr "Status"
+#: include/contact_widgets.php:42 mod/suggest.php:114
+#: view/theme/vier/theme.php:196
+msgid "Friend Suggestions"
+msgstr "Kontaktvorschläge"
 
-#: include/nav.php:83 include/nav.php:163 view/theme/frio/theme.php:252
-msgid "Your posts and conversations"
-msgstr "Deine Beiträge und Unterhaltungen"
+#: include/contact_widgets.php:43 view/theme/vier/theme.php:195
+msgid "Similar Interests"
+msgstr "Ähnliche Interessen"
 
-#: include/nav.php:84 include/identity.php:629 include/identity.php:758
-#: include/identity.php:791 mod/newmember.php:20 mod/profperm.php:107
-#: mod/contacts.php:652 mod/contacts.php:854 view/theme/frio/theme.php:253
-msgid "Profile"
-msgstr "Profil"
+#: include/contact_widgets.php:44
+msgid "Random Profile"
+msgstr "Zufälliges Profil"
 
-#: include/nav.php:84 view/theme/frio/theme.php:253
-msgid "Your profile page"
-msgstr "Deine Profilseite"
+#: include/contact_widgets.php:45 view/theme/vier/theme.php:197
+msgid "Invite Friends"
+msgstr "Freunde einladen"
 
-#: include/nav.php:85 include/identity.php:799 mod/fbrowser.php:33
-#: view/theme/frio/theme.php:254
-msgid "Photos"
-msgstr "Bilder"
+#: include/contact_widgets.php:46
+msgid "View Global Directory"
+msgstr "Globales Verzeichnis betrachten"
 
-#: include/nav.php:85 view/theme/frio/theme.php:254
-msgid "Your photos"
-msgstr "Deine Fotos"
+#: include/contact_widgets.php:132
+msgid "Networks"
+msgstr "Netzwerke"
 
-#: include/nav.php:86 include/identity.php:807 include/identity.php:810
-#: view/theme/frio/theme.php:255
-msgid "Videos"
-msgstr "Videos"
+#: include/contact_widgets.php:135
+msgid "All Networks"
+msgstr "Alle Netzwerke"
 
-#: include/nav.php:86 view/theme/frio/theme.php:255
-msgid "Your videos"
-msgstr "Deine Videos"
+#: include/contact_widgets.php:170 include/contact_widgets.php:205
+msgid "Everything"
+msgstr "Alles"
 
-#: include/nav.php:87 include/nav.php:151 include/identity.php:819
-#: include/identity.php:830 mod/cal.php:272 mod/events.php:377
-#: view/theme/frio/theme.php:256 view/theme/frio/theme.php:260
-msgid "Events"
-msgstr "Veranstaltungen"
+#: include/contact_widgets.php:202
+msgid "Categories"
+msgstr "Kategorien"
 
-#: include/nav.php:87 view/theme/frio/theme.php:256
-msgid "Your events"
-msgstr "Deine Ereignisse"
+#: include/contact_widgets.php:267
+#, php-format
+msgid "%d contact in common"
+msgid_plural "%d contacts in common"
+msgstr[0] "%d gemeinsamer Kontakt"
+msgstr[1] "%d gemeinsame Kontakte"
 
-#: include/nav.php:88
-msgid "Personal notes"
-msgstr "Persönliche Notizen"
+#: include/conversation.php:135 include/conversation.php:287
+#: include/like.php:184 include/text.php:1885
+msgid "event"
+msgstr "Event"
 
-#: include/nav.php:88
-msgid "Your personal notes"
-msgstr "Deine persönlichen Notizen"
+#: include/conversation.php:138 include/conversation.php:148
+#: include/conversation.php:290 include/conversation.php:299
+#: include/like.php:182 include/diaspora.php:1695 mod/subthread.php:90
+#: mod/tagger.php:64
+msgid "status"
+msgstr "Status"
 
-#: include/nav.php:97 mod/bookmarklet.php:14 boot.php:872
-msgid "Login"
-msgstr "Anmeldung"
+#: include/conversation.php:143 include/conversation.php:295
+#: include/like.php:182 include/text.php:1887 mod/subthread.php:90
+#: mod/tagger.php:64
+msgid "photo"
+msgstr "Foto"
 
-#: include/nav.php:97
-msgid "Sign in"
-msgstr "Anmelden"
+#: include/conversation.php:155 include/like.php:31 include/diaspora.php:1691
+#, php-format
+msgid "%1$s likes %2$s's %3$s"
+msgstr "%1$s mag %2$ss %3$s"
 
-#: include/nav.php:107
-msgid "Home Page"
-msgstr "Homepage"
+#: include/conversation.php:158 include/like.php:35 include/like.php:40
+#, php-format
+msgid "%1$s doesn't like %2$s's %3$s"
+msgstr "%1$s mag %2$ss %3$s nicht"
 
-#: include/nav.php:111 mod/register.php:292 boot.php:848
-msgid "Register"
-msgstr "Registrieren"
+#: include/conversation.php:161
+#, php-format
+msgid "%1$s attends %2$s's %3$s"
+msgstr "%1$s nimmt an %2$ss %3$s teil."
 
-#: include/nav.php:111
-msgid "Create an account"
-msgstr "Nutzerkonto erstellen"
+#: include/conversation.php:164
+#, php-format
+msgid "%1$s doesn't attend %2$s's %3$s"
+msgstr "%1$s nimmt nicht an %2$ss %3$s teil."
 
-#: include/nav.php:117 mod/help.php:50 view/theme/vier/theme.php:291
-msgid "Help"
-msgstr "Hilfe"
+#: include/conversation.php:167
+#, php-format
+msgid "%1$s attends maybe %2$s's %3$s"
+msgstr "%1$s nimmt eventuell an %2$ss %3$s teil."
 
-#: include/nav.php:117
-msgid "Help and documentation"
-msgstr "Hilfe und Dokumentation"
+#: include/conversation.php:200 mod/dfrn_confirm.php:480
+#, php-format
+msgid "%1$s is now friends with %2$s"
+msgstr "%1$s ist nun mit %2$s befreundet"
 
-#: include/nav.php:121
-msgid "Apps"
-msgstr "Apps"
+#: include/conversation.php:241
+#, php-format
+msgid "%1$s poked %2$s"
+msgstr "%1$s stupste %2$s"
 
-#: include/nav.php:121
-msgid "Addon applications, utilities, games"
-msgstr "Addon Anwendungen, Dienstprogramme, Spiele"
+#: include/conversation.php:262 mod/mood.php:65
+#, php-format
+msgid "%1$s is currently %2$s"
+msgstr "%1$s ist momentan %2$s"
 
-#: include/nav.php:125 include/text.php:1090 mod/search.php:152
-msgid "Search"
-msgstr "Suche"
+#: include/conversation.php:309 mod/tagger.php:97
+#, php-format
+msgid "%1$s tagged %2$s's %3$s with %4$s"
+msgstr "%1$s hat %2$ss %3$s mit %4$s getaggt"
 
-#: include/nav.php:125
-msgid "Search site content"
-msgstr "Inhalt der Seite durchsuchen"
+#: include/conversation.php:336
+msgid "post/item"
+msgstr "Nachricht/Beitrag"
 
-#: include/nav.php:128 include/text.php:1098
-msgid "Full Text"
-msgstr "Volltext"
+#: include/conversation.php:337
+#, php-format
+msgid "%1$s marked %2$s's %3$s as favorite"
+msgstr "%1$s hat %2$s\\s %3$s als Favorit markiert"
 
-#: include/nav.php:129 include/text.php:1099
-msgid "Tags"
-msgstr "Tags"
+#: include/conversation.php:615 mod/content.php:374 mod/photos.php:1665
+#: mod/profiles.php:339
+msgid "Likes"
+msgstr "Likes"
 
-#: include/nav.php:130 include/nav.php:194 include/identity.php:852
-#: include/identity.php:855 include/text.php:1100 mod/viewcontacts.php:124
-#: mod/contacts.php:805 mod/contacts.php:866 view/theme/frio/theme.php:263
-msgid "Contacts"
-msgstr "Kontakte"
+#: include/conversation.php:615 mod/content.php:374 mod/photos.php:1665
+#: mod/profiles.php:343
+msgid "Dislikes"
+msgstr "Dislikes"
 
-#: include/nav.php:133 include/ForumManager.php:118 include/text.php:1103
-#: view/theme/vier/theme.php:248
-msgid "Forums"
-msgstr "Foren"
+#: include/conversation.php:616 include/conversation.php:1550
+#: mod/content.php:375 mod/photos.php:1666
+msgid "Attending"
+msgid_plural "Attending"
+msgstr[0] "Teilnehmend"
+msgstr[1] "Teilnehmend"
 
-#: include/nav.php:145 include/nav.php:147 mod/community.php:31
-msgid "Community"
-msgstr "Gemeinschaft"
-
-#: include/nav.php:145
-msgid "Conversations on this site"
-msgstr "Unterhaltungen auf dieser Seite"
+#: include/conversation.php:616 mod/content.php:375 mod/photos.php:1666
+msgid "Not attending"
+msgstr "Nicht teilnehmend"
 
-#: include/nav.php:147
-msgid "Conversations on the network"
-msgstr "Unterhaltungen im Netzwerk"
+#: include/conversation.php:616 mod/content.php:375 mod/photos.php:1666
+msgid "Might attend"
+msgstr "Eventuell teilnehmend"
 
-#: include/nav.php:151 include/identity.php:822 include/identity.php:833
-#: view/theme/frio/theme.php:260
-msgid "Events and Calendar"
-msgstr "Ereignisse und Kalender"
+#: include/conversation.php:753 mod/content.php:455 mod/content.php:761
+#: mod/photos.php:1731 object/Item.php:147
+msgid "Select"
+msgstr "Auswählen"
 
-#: include/nav.php:154
-msgid "Directory"
-msgstr "Verzeichnis"
+#: include/conversation.php:754 mod/content.php:456 mod/content.php:762
+#: mod/photos.php:1732 mod/settings.php:741 mod/admin.php:1606
+#: mod/contacts.php:837 mod/contacts.php:1036 object/Item.php:148
+msgid "Delete"
+msgstr "Löschen"
 
-#: include/nav.php:154
-msgid "People directory"
-msgstr "Nutzerverzeichnis"
+#: include/conversation.php:797 mod/content.php:489 mod/content.php:917
+#: mod/content.php:918 object/Item.php:350 object/Item.php:351
+#, php-format
+msgid "View %s's profile @ %s"
+msgstr "Das Profil von %s auf %s betrachten."
 
-#: include/nav.php:156
-msgid "Information"
-msgstr "Information"
+#: include/conversation.php:809 object/Item.php:338
+msgid "Categories:"
+msgstr "Kategorien:"
 
-#: include/nav.php:156
-msgid "Information about this friendica instance"
-msgstr "Informationen zu dieser Friendica Instanz"
+#: include/conversation.php:810 object/Item.php:339
+msgid "Filed under:"
+msgstr "Abgelegt unter:"
 
-#: include/nav.php:160 view/theme/frio/theme.php:259
-msgid "Conversations from your friends"
-msgstr "Unterhaltungen Deiner Kontakte"
+#: include/conversation.php:817 mod/content.php:499 mod/content.php:930
+#: object/Item.php:364
+#, php-format
+msgid "%s from %s"
+msgstr "%s von %s"
 
-#: include/nav.php:161
-msgid "Network Reset"
-msgstr "Netzwerk zurücksetzen"
+#: include/conversation.php:833 mod/content.php:515
+msgid "View in context"
+msgstr "Im Zusammenhang betrachten"
 
-#: include/nav.php:161
-msgid "Load Network page with no filters"
-msgstr "Netzwerk-Seite ohne Filter laden"
+#: include/conversation.php:835 include/conversation.php:1307
+#: mod/content.php:517 mod/content.php:955 mod/editpost.php:117
+#: mod/message.php:337 mod/message.php:522 mod/wallmessage.php:143
+#: mod/photos.php:1630 object/Item.php:389
+msgid "Please wait"
+msgstr "Bitte warten"
 
-#: include/nav.php:168
-msgid "Friend Requests"
-msgstr "Kontaktanfragen"
+#: include/conversation.php:912
+msgid "remove"
+msgstr "löschen"
 
-#: include/nav.php:171 mod/notifications.php:98
-msgid "Notifications"
-msgstr "Benachrichtigungen"
+#: include/conversation.php:916
+msgid "Delete Selected Items"
+msgstr "Lösche die markierten Beiträge"
 
-#: include/nav.php:172
-msgid "See all notifications"
-msgstr "Alle Benachrichtigungen anzeigen"
+#: include/conversation.php:1011 view/theme/frio/theme.php:347
+msgid "Follow Thread"
+msgstr "Folge der Unterhaltung"
 
-#: include/nav.php:173 mod/settings.php:907
-msgid "Mark as seen"
-msgstr "Als gelesen markieren"
+#: include/conversation.php:1012 include/Contact.php:458
+msgid "View Status"
+msgstr "Pinnwand anschauen"
 
-#: include/nav.php:173
-msgid "Mark all system notifications seen"
-msgstr "Markiere alle Systembenachrichtigungen als gelesen"
+#: include/conversation.php:1013 include/conversation.php:1029
+#: include/Contact.php:401 include/Contact.php:414 include/Contact.php:459
+#: mod/allfriends.php:71 mod/directory.php:153 mod/dirfind.php:212
+#: mod/match.php:77 mod/suggest.php:82
+msgid "View Profile"
+msgstr "Profil anschauen"
 
-#: include/nav.php:177 mod/message.php:181 view/theme/frio/theme.php:261
-msgid "Messages"
-msgstr "Nachrichten"
+#: include/conversation.php:1014 include/Contact.php:460
+msgid "View Photos"
+msgstr "Bilder anschauen"
 
-#: include/nav.php:177 view/theme/frio/theme.php:261
-msgid "Private mail"
-msgstr "Private E-Mail"
+#: include/conversation.php:1015 include/Contact.php:461
+msgid "Network Posts"
+msgstr "Netzwerkbeiträge"
 
-#: include/nav.php:178
-msgid "Inbox"
-msgstr "Eingang"
+#: include/conversation.php:1016 include/Contact.php:462
+msgid "View Contact"
+msgstr "Kontakt anzeigen"
 
-#: include/nav.php:179
-msgid "Outbox"
-msgstr "Ausgang"
+#: include/conversation.php:1017 include/Contact.php:464
+msgid "Send PM"
+msgstr "Private Nachricht senden"
 
-#: include/nav.php:180 mod/message.php:18
-msgid "New Message"
-msgstr "Neue Nachricht"
+#: include/conversation.php:1021 include/Contact.php:465
+msgid "Poke"
+msgstr "Anstupsen"
 
-#: include/nav.php:183
-msgid "Manage"
-msgstr "Verwalten"
+#: include/conversation.php:1148
+#, php-format
+msgid "%s likes this."
+msgstr "%s mag das."
 
-#: include/nav.php:183
-msgid "Manage other pages"
-msgstr "Andere Seiten verwalten"
+#: include/conversation.php:1151
+#, php-format
+msgid "%s doesn't like this."
+msgstr "%s mag das nicht."
 
-#: include/nav.php:186 mod/settings.php:83
-msgid "Delegations"
-msgstr "Delegationen"
+#: include/conversation.php:1154
+#, php-format
+msgid "%s attends."
+msgstr "%s nimmt teil."
 
-#: include/nav.php:186 mod/delegate.php:132
-msgid "Delegate Page Management"
-msgstr "Delegiere das Management für die Seite"
+#: include/conversation.php:1157
+#, php-format
+msgid "%s doesn't attend."
+msgstr "%s nimmt nicht teil."
 
-#: include/nav.php:188 mod/newmember.php:15 mod/settings.php:113
-#: mod/admin.php:1708 mod/admin.php:1984 view/theme/frio/theme.php:262
-msgid "Settings"
-msgstr "Einstellungen"
+#: include/conversation.php:1160
+#, php-format
+msgid "%s attends maybe."
+msgstr "%s nimmt eventuell teil."
 
-#: include/nav.php:188 view/theme/frio/theme.php:262
-msgid "Account settings"
-msgstr "Kontoeinstellungen"
+#: include/conversation.php:1171
+msgid "and"
+msgstr "und"
 
-#: include/nav.php:191 include/identity.php:292
-msgid "Profiles"
-msgstr "Profile"
+#: include/conversation.php:1177
+#, php-format
+msgid ", and %d other people"
+msgstr " und %d andere"
 
-#: include/nav.php:191
-msgid "Manage/Edit Profiles"
-msgstr "Profile Verwalten/Editieren"
+#: include/conversation.php:1186
+#, php-format
+msgid "<span  %1$s>%2$d people</span> like this"
+msgstr "<span  %1$s>%2$d Personen</span> mögen das"
 
-#: include/nav.php:194 view/theme/frio/theme.php:263
-msgid "Manage/edit friends and contacts"
-msgstr " Kontakte verwalten/editieren"
+#: include/conversation.php:1187
+#, php-format
+msgid "%s like this."
+msgstr "%s mögen das."
 
-#: include/nav.php:199 mod/admin.php:202
-msgid "Admin"
-msgstr "Administration"
+#: include/conversation.php:1190
+#, php-format
+msgid "<span  %1$s>%2$d people</span> don't like this"
+msgstr "<span  %1$s>%2$d Personen</span> mögen das nicht"
 
-#: include/nav.php:199
-msgid "Site setup and configuration"
-msgstr "Einstellungen der Seite und Konfiguration"
+#: include/conversation.php:1191
+#, php-format
+msgid "%s don't like this."
+msgstr "%s mögen dies nicht."
 
-#: include/nav.php:202
-msgid "Navigation"
-msgstr "Navigation"
+#: include/conversation.php:1194
+#, php-format
+msgid "<span  %1$s>%2$d people</span> attend"
+msgstr "<span %1$s>%2$d Personen</span> nehmen teil"
 
-#: include/nav.php:202
-msgid "Site map"
-msgstr "Sitemap"
+#: include/conversation.php:1195
+#, php-format
+msgid "%s attend."
+msgstr "%s nehmen teil."
 
-#: include/photos.php:57 include/photos.php:66 mod/fbrowser.php:42
-#: mod/fbrowser.php:63 mod/photos.php:189 mod/photos.php:1125
-#: mod/photos.php:1258 mod/photos.php:1279 mod/photos.php:1841
-#: mod/photos.php:1855
-msgid "Contact Photos"
-msgstr "Kontaktbilder"
+#: include/conversation.php:1198
+#, php-format
+msgid "<span  %1$s>%2$d people</span> don't attend"
+msgstr "<span %1$s>%2$d Personen</span> nehmen nicht teil"
 
-#: include/acl_selectors.php:355
-msgid "Post to Email"
-msgstr "An E-Mail senden"
+#: include/conversation.php:1199
+#, php-format
+msgid "%s don't attend."
+msgstr "%s nehmen nicht teil."
 
-#: include/acl_selectors.php:360
+#: include/conversation.php:1202
 #, php-format
-msgid "Connectors disabled, since \"%s\" is enabled."
-msgstr "Konnektoren sind nicht verfügbar, da \"%s\" aktiv ist."
+msgid "<span  %1$s>%2$d people</span> attend maybe"
+msgstr "<span %1$s>%2$d Personen</span> nehmen eventuell teil"
 
-#: include/acl_selectors.php:361 mod/settings.php:1189
-msgid "Hide your profile details from unknown viewers?"
-msgstr "Profil-Details vor unbekannten Betrachtern verbergen?"
+#: include/conversation.php:1203
+#, php-format
+msgid "%s anttend maybe."
+msgstr "%s  nehmen vielleicht teil."
 
-#: include/acl_selectors.php:367
-msgid "Visible to everybody"
-msgstr "Für jeden sichtbar"
+#: include/conversation.php:1232 include/conversation.php:1248
+msgid "Visible to <strong>everybody</strong>"
+msgstr "Für <strong>jedermann</strong> sichtbar"
 
-#: include/acl_selectors.php:368 view/theme/vier/config.php:109
-msgid "show"
-msgstr "zeigen"
+#: include/conversation.php:1233 include/conversation.php:1249
+#: mod/message.php:271 mod/message.php:278 mod/message.php:418
+#: mod/message.php:425 mod/wallmessage.php:117 mod/wallmessage.php:124
+msgid "Please enter a link URL:"
+msgstr "Bitte gib die URL des Links ein:"
 
-#: include/acl_selectors.php:369 view/theme/vier/config.php:109
-msgid "don't show"
-msgstr "nicht zeigen"
+#: include/conversation.php:1234 include/conversation.php:1250
+msgid "Please enter a video link/URL:"
+msgstr "Bitte Link/URL zum Video einfügen:"
 
-#: include/acl_selectors.php:375 mod/editpost.php:125
-msgid "CC: email addresses"
-msgstr "Cc: E-Mail-Addressen"
+#: include/conversation.php:1235 include/conversation.php:1251
+msgid "Please enter an audio link/URL:"
+msgstr "Bitte Link/URL zum Audio einfügen:"
 
-#: include/acl_selectors.php:376 mod/editpost.php:132
-msgid "Example: bob@example.com, mary@example.com"
-msgstr "Z.B.: bob@example.com, mary@example.com"
+#: include/conversation.php:1236 include/conversation.php:1252
+msgid "Tag term:"
+msgstr "Tag:"
 
-#: include/acl_selectors.php:378 mod/photos.php:1198 mod/photos.php:1595
-#: mod/events.php:511
-msgid "Permissions"
-msgstr "Berechtigungen"
+#: include/conversation.php:1237 include/conversation.php:1253
+#: mod/filer.php:31
+msgid "Save to Folder:"
+msgstr "In diesem Ordner speichern:"
 
-#: include/acl_selectors.php:379
-msgid "Close"
-msgstr "Schließen"
+#: include/conversation.php:1238 include/conversation.php:1254
+msgid "Where are you right now?"
+msgstr "Wo hältst Du Dich jetzt gerade auf?"
 
-#: include/contact_selectors.php:32
-msgid "Unknown | Not categorised"
-msgstr "Unbekannt | Nicht kategorisiert"
+#: include/conversation.php:1239
+msgid "Delete item(s)?"
+msgstr "Einträge löschen?"
 
-#: include/contact_selectors.php:33
-msgid "Block immediately"
-msgstr "Sofort blockieren"
+#: include/conversation.php:1288
+msgid "Share"
+msgstr "Teilen"
 
-#: include/contact_selectors.php:34
-msgid "Shady, spammer, self-marketer"
-msgstr "Zwielichtig, Spammer, Selbstdarsteller"
+#: include/conversation.php:1289 mod/editpost.php:103 mod/message.php:335
+#: mod/message.php:519 mod/wallmessage.php:141
+msgid "Upload photo"
+msgstr "Foto hochladen"
 
-#: include/contact_selectors.php:35
-msgid "Known to me, but no opinion"
-msgstr "Ist mir bekannt, hab aber keine Meinung"
+#: include/conversation.php:1290 mod/editpost.php:104
+msgid "upload photo"
+msgstr "Bild hochladen"
 
-#: include/contact_selectors.php:36
-msgid "OK, probably harmless"
-msgstr "OK, wahrscheinlich harmlos"
+#: include/conversation.php:1291 mod/editpost.php:105
+msgid "Attach file"
+msgstr "Datei anhängen"
 
-#: include/contact_selectors.php:37
-msgid "Reputable, has my trust"
-msgstr "Seriös, hat mein Vertrauen"
+#: include/conversation.php:1292 mod/editpost.php:106
+msgid "attach file"
+msgstr "Datei anhängen"
 
-#: include/contact_selectors.php:56 mod/admin.php:1070
-msgid "Frequently"
-msgstr "immer wieder"
+#: include/conversation.php:1293 mod/editpost.php:107 mod/message.php:336
+#: mod/message.php:520 mod/wallmessage.php:142
+msgid "Insert web link"
+msgstr "Einen Link einfügen"
 
-#: include/contact_selectors.php:57 mod/admin.php:1071
-msgid "Hourly"
-msgstr "Stündlich"
+#: include/conversation.php:1294 mod/editpost.php:108
+msgid "web link"
+msgstr "Weblink"
 
-#: include/contact_selectors.php:58 mod/admin.php:1072
-msgid "Twice daily"
-msgstr "Zweimal täglich"
+#: include/conversation.php:1295 mod/editpost.php:109
+msgid "Insert video link"
+msgstr "Video-Adresse einfügen"
 
-#: include/contact_selectors.php:59 mod/admin.php:1073
-msgid "Daily"
-msgstr "Täglich"
+#: include/conversation.php:1296 mod/editpost.php:110
+msgid "video link"
+msgstr "Video-Link"
 
-#: include/contact_selectors.php:60
-msgid "Weekly"
-msgstr "Wöchentlich"
+#: include/conversation.php:1297 mod/editpost.php:111
+msgid "Insert audio link"
+msgstr "Audio-Adresse einfügen"
 
-#: include/contact_selectors.php:61
-msgid "Monthly"
-msgstr "Monatlich"
+#: include/conversation.php:1298 mod/editpost.php:112
+msgid "audio link"
+msgstr "Audio-Link"
 
-#: include/contact_selectors.php:76 mod/dfrn_request.php:886
-msgid "Friendica"
-msgstr "Friendica"
+#: include/conversation.php:1299 mod/editpost.php:113
+msgid "Set your location"
+msgstr "Deinen Standort festlegen"
 
-#: include/contact_selectors.php:77
-msgid "OStatus"
-msgstr "OStatus"
+#: include/conversation.php:1300 mod/editpost.php:114
+msgid "set location"
+msgstr "Ort setzen"
 
-#: include/contact_selectors.php:78
-msgid "RSS/Atom"
-msgstr "RSS/Atom"
+#: include/conversation.php:1301 mod/editpost.php:115
+msgid "Clear browser location"
+msgstr "Browser-Standort leeren"
 
-#: include/contact_selectors.php:79 include/contact_selectors.php:86
-#: mod/admin.php:1580 mod/admin.php:1593 mod/admin.php:1606 mod/admin.php:1624
-msgid "Email"
-msgstr "E-Mail"
+#: include/conversation.php:1302 mod/editpost.php:116
+msgid "clear location"
+msgstr "Ort löschen"
 
-#: include/contact_selectors.php:80 mod/dfrn_request.php:888
-#: mod/settings.php:849
-msgid "Diaspora"
-msgstr "Diaspora"
+#: include/conversation.php:1304 mod/editpost.php:130
+msgid "Set title"
+msgstr "Titel setzen"
 
-#: include/contact_selectors.php:81
-msgid "Facebook"
-msgstr "Facebook"
+#: include/conversation.php:1306 mod/editpost.php:132
+msgid "Categories (comma-separated list)"
+msgstr "Kategorien (kommasepariert)"
 
-#: include/contact_selectors.php:82
-msgid "Zot!"
-msgstr "Zott"
+#: include/conversation.php:1308 mod/editpost.php:118
+msgid "Permission settings"
+msgstr "Berechtigungseinstellungen"
 
-#: include/contact_selectors.php:83
-msgid "LinkedIn"
-msgstr "LinkedIn"
+#: include/conversation.php:1309 mod/editpost.php:147
+msgid "permissions"
+msgstr "Zugriffsrechte"
 
-#: include/contact_selectors.php:84
-msgid "XMPP/IM"
-msgstr "XMPP/Chat"
+#: include/conversation.php:1317 mod/editpost.php:127
+msgid "Public post"
+msgstr "Öffentlicher Beitrag"
 
-#: include/contact_selectors.php:85
-msgid "MySpace"
-msgstr "MySpace"
+#: include/conversation.php:1322 mod/content.php:739 mod/editpost.php:138
+#: mod/events.php:507 mod/photos.php:1650 mod/photos.php:1692
+#: mod/photos.php:1772 object/Item.php:711
+msgid "Preview"
+msgstr "Vorschau"
 
-#: include/contact_selectors.php:87
-msgid "Google+"
-msgstr "Google+"
+#: include/conversation.php:1326 include/items.php:2148
+#: mod/dfrn_request.php:895 mod/editpost.php:141 mod/follow.php:161
+#: mod/message.php:210 mod/tagrm.php:14 mod/tagrm.php:99 mod/videos.php:135
+#: mod/photos.php:248 mod/photos.php:340 mod/settings.php:679
+#: mod/settings.php:705 mod/suggest.php:35 mod/contacts.php:468
+#: mod/fbrowser.php:104 mod/fbrowser.php:139 mod/unfollow.php:117
+msgid "Cancel"
+msgstr "Abbrechen"
 
-#: include/contact_selectors.php:88
-msgid "pump.io"
-msgstr "pump.io"
+#: include/conversation.php:1332
+msgid "Post to Groups"
+msgstr "Poste an Gruppe"
 
-#: include/contact_selectors.php:89
-msgid "Twitter"
-msgstr "Twitter"
+#: include/conversation.php:1333
+msgid "Post to Contacts"
+msgstr "Poste an Kontakte"
 
-#: include/contact_selectors.php:90
-msgid "Diaspora Connector"
-msgstr "Diaspora"
+#: include/conversation.php:1334
+msgid "Private post"
+msgstr "Privater Beitrag"
 
-#: include/contact_selectors.php:91
-msgid "GNU Social Connector"
-msgstr "GNU social Connector"
+#: include/conversation.php:1339 include/identity.php:267 mod/editpost.php:145
+msgid "Message"
+msgstr "Nachricht"
 
-#: include/contact_selectors.php:92
-msgid "pnut"
-msgstr "pnut"
+#: include/conversation.php:1340 mod/editpost.php:146
+msgid "Browser"
+msgstr "Browser"
 
-#: include/contact_selectors.php:93
-msgid "App.net"
-msgstr "App.net"
+#: include/conversation.php:1522
+msgid "View all"
+msgstr "Zeige alle"
+
+#: include/conversation.php:1544
+msgid "Like"
+msgid_plural "Likes"
+msgstr[0] "mag ich"
+msgstr[1] "Mag ich"
+
+#: include/conversation.php:1547
+msgid "Dislike"
+msgid_plural "Dislikes"
+msgstr[0] "mag ich nicht"
+msgstr[1] "Mag ich nicht"
+
+#: include/conversation.php:1553
+msgid "Not Attending"
+msgid_plural "Not Attending"
+msgstr[0] "Nicht teilnehmend "
+msgstr[1] "Nicht teilnehmend"
+
+#: include/dbstructure.php:26
+msgid "There are no tables on MyISAM."
+msgstr "Es gibt keine MyISAM Tabellen."
 
-#: include/enotify.php:27
+#: include/dbstructure.php:67
+#, php-format
+msgid ""
+"\n"
+"\t\t\tThe friendica developers released update %s recently,\n"
+"\t\t\tbut when I tried to install it, something went terribly wrong.\n"
+"\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n"
+"\t\t\tfriendica developer if you can not help me on your own. My database might be invalid."
+msgstr "\nDie Friendica-Entwickler haben vor kurzem das Update %s veröffentlicht, aber bei der Installation ging etwas schrecklich schief.\n\nDas Problem sollte so schnell wie möglich gelöst werden, aber ich schaffe es nicht alleine. Bitte kontaktiere einen Friendica-Entwickler falls Du mir nicht alleine helfen kannst. Meine Datenbank könnte ungültig sein."
+
+#: include/dbstructure.php:72
+#, php-format
+msgid ""
+"The error message is\n"
+"[pre]%s[/pre]"
+msgstr "Die Fehlermeldung lautet\n[pre]%s[/pre]"
+
+#: include/dbstructure.php:197
+#, php-format
+msgid ""
+"\n"
+"Error %d occurred during database update:\n"
+"%s\n"
+msgstr "\nFehler %d beim Update der Datenbank aufgetreten\n%s\n"
+
+#: include/dbstructure.php:200
+msgid "Errors encountered performing database changes: "
+msgstr "Fehler beim Ändern der Datenbank aufgetreten"
+
+#: include/dbstructure.php:208
+msgid ": Database update"
+msgstr ": Datenbank Update"
+
+#: include/dbstructure.php:440
+#, php-format
+msgid "%s: updating %s table."
+msgstr "%s: aktualisiere Tabelle %s"
+
+#: include/delivery.php:429
+msgid "(no subject)"
+msgstr "(kein Betreff)"
+
+#: include/delivery.php:441 include/enotify.php:47
+msgid "noreply"
+msgstr "noreply"
+
+#: include/enotify.php:28
 msgid "Friendica Notification"
 msgstr "Friendica-Benachrichtigung"
 
-#: include/enotify.php:30
+#: include/enotify.php:31
 msgid "Thank You,"
 msgstr "Danke,"
 
-#: include/enotify.php:33
+#: include/enotify.php:34
 #, php-format
 msgid "%s Administrator"
 msgstr "der Administrator von %s"
 
-#: include/enotify.php:35
+#: include/enotify.php:36
 #, php-format
 msgid "%1$s, %2$s Administrator"
 msgstr "%1$s, %2$s Administrator"
 
-#: include/enotify.php:78
+#: include/enotify.php:81
 #, php-format
 msgid "%s <!item_type!>"
 msgstr "%s <!item_type!>"
 
-#: include/enotify.php:91
+#: include/enotify.php:94
 #, php-format
 msgid "[Friendica:Notify] New mail received at %s"
 msgstr "[Friendica-Meldung] Neue Nachricht erhalten von %s"
 
-#: include/enotify.php:93
+#: include/enotify.php:96
 #, php-format
 msgid "%1$s sent you a new private message at %2$s."
 msgstr "%1$s hat Dir eine neue private Nachricht auf %2$s geschickt."
 
-#: include/enotify.php:94
+#: include/enotify.php:97
 #, php-format
 msgid "%1$s sent you %2$s."
 msgstr "%1$s schickte Dir %2$s."
 
-#: include/enotify.php:94
+#: include/enotify.php:97
 msgid "a private message"
 msgstr "eine private Nachricht"
 
-#: include/enotify.php:96
+#: include/enotify.php:99
 #, php-format
 msgid "Please visit %s to view and/or reply to your private messages."
 msgstr "Bitte besuche %s, um Deine privaten Nachrichten anzusehen und/oder zu beantworten."
 
-#: include/enotify.php:142
+#: include/enotify.php:145
 #, php-format
 msgid "%1$s commented on [url=%2$s]a %3$s[/url]"
 msgstr "%1$s kommentierte [url=%2$s]a %3$s[/url]"
 
-#: include/enotify.php:149
+#: include/enotify.php:152
 #, php-format
 msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]"
 msgstr "%1$s kommentierte [url=%2$s]%3$ss %4$s[/url]"
 
-#: include/enotify.php:157
+#: include/enotify.php:160
 #, php-format
 msgid "%1$s commented on [url=%2$s]your %3$s[/url]"
 msgstr "%1$s kommentierte [url=%2$s]Deinen %3$s[/url]"
 
-#: include/enotify.php:167
+#: include/enotify.php:170
 #, php-format
 msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s"
 msgstr "[Friendica-Meldung] Kommentar zum Beitrag #%1$d von %2$s"
 
-#: include/enotify.php:169
+#: include/enotify.php:172
 #, php-format
 msgid "%s commented on an item/conversation you have been following."
 msgstr "%s hat einen Beitrag kommentiert, dem Du folgst."
 
-#: include/enotify.php:172 include/enotify.php:186 include/enotify.php:200
-#: include/enotify.php:214 include/enotify.php:232 include/enotify.php:246
+#: include/enotify.php:175 include/enotify.php:189 include/enotify.php:203
+#: include/enotify.php:217 include/enotify.php:235 include/enotify.php:249
 #, php-format
 msgid "Please visit %s to view and/or reply to the conversation."
 msgstr "Bitte besuche %s, um die Konversation anzusehen und/oder zu kommentieren."
 
-#: include/enotify.php:179
+#: include/enotify.php:182
 #, php-format
 msgid "[Friendica:Notify] %s posted to your profile wall"
 msgstr "[Friendica-Meldung] %s hat auf Deine Pinnwand geschrieben"
 
-#: include/enotify.php:181
+#: include/enotify.php:184
 #, php-format
 msgid "%1$s posted to your profile wall at %2$s"
 msgstr "%1$s schrieb auf %2$s auf Deine Pinnwand"
 
-#: include/enotify.php:182
+#: include/enotify.php:185
 #, php-format
 msgid "%1$s posted to [url=%2$s]your wall[/url]"
 msgstr "%1$s hat etwas auf [url=%2$s]Deiner Pinnwand[/url] gepostet"
 
-#: include/enotify.php:193
+#: include/enotify.php:196
 #, php-format
 msgid "[Friendica:Notify] %s tagged you"
 msgstr "[Friendica-Meldung] %s hat Dich erwähnt"
 
-#: include/enotify.php:195
+#: include/enotify.php:198
 #, php-format
 msgid "%1$s tagged you at %2$s"
 msgstr "%1$s erwähnte Dich auf %2$s"
 
-#: include/enotify.php:196
+#: include/enotify.php:199
 #, php-format
 msgid "%1$s [url=%2$s]tagged you[/url]."
 msgstr "%1$s [url=%2$s]erwähnte Dich[/url]."
 
-#: include/enotify.php:207
+#: include/enotify.php:210
 #, php-format
 msgid "[Friendica:Notify] %s shared a new post"
 msgstr "[Friendica Benachrichtigung] %s hat einen Beitrag geteilt"
 
-#: include/enotify.php:209
+#: include/enotify.php:212
 #, php-format
 msgid "%1$s shared a new post at %2$s"
 msgstr "%1$s hat einen neuen Beitrag auf %2$s geteilt"
 
-#: include/enotify.php:210
+#: include/enotify.php:213
 #, php-format
 msgid "%1$s [url=%2$s]shared a post[/url]."
 msgstr "%1$s [url=%2$s]hat einen Beitrag geteilt[/url]."
 
-#: include/enotify.php:221
+#: include/enotify.php:224
 #, php-format
 msgid "[Friendica:Notify] %1$s poked you"
 msgstr "[Friendica-Meldung] %1$s hat Dich angestupst"
 
-#: include/enotify.php:223
+#: include/enotify.php:226
 #, php-format
 msgid "%1$s poked you at %2$s"
 msgstr "%1$s hat Dich auf %2$s angestupst"
 
-#: include/enotify.php:224
+#: include/enotify.php:227
 #, php-format
 msgid "%1$s [url=%2$s]poked you[/url]."
 msgstr "%1$s [url=%2$s]hat Dich angestupst[/url]."
 
-#: include/enotify.php:239
+#: include/enotify.php:242
 #, php-format
 msgid "[Friendica:Notify] %s tagged your post"
 msgstr "[Friendica-Meldung] %s hat Deinen Beitrag getaggt"
 
-#: include/enotify.php:241
+#: include/enotify.php:244
 #, php-format
 msgid "%1$s tagged your post at %2$s"
 msgstr "%1$s erwähnte Deinen Beitrag auf %2$s"
 
-#: include/enotify.php:242
+#: include/enotify.php:245
 #, php-format
 msgid "%1$s tagged [url=%2$s]your post[/url]"
 msgstr "%1$s erwähnte [url=%2$s]Deinen Beitrag[/url]"
 
-#: include/enotify.php:253
+#: include/enotify.php:256
 msgid "[Friendica:Notify] Introduction received"
 msgstr "[Friendica-Meldung] Kontaktanfrage erhalten"
 
-#: include/enotify.php:255
+#: include/enotify.php:258
 #, php-format
 msgid "You've received an introduction from '%1$s' at %2$s"
 msgstr "Du hast eine Kontaktanfrage von '%1$s' auf %2$s erhalten"
 
-#: include/enotify.php:256
+#: include/enotify.php:259
 #, php-format
 msgid "You've received [url=%1$s]an introduction[/url] from %2$s."
 msgstr "Du hast eine [url=%1$s]Kontaktanfrage[/url] von %2$s erhalten."
 
-#: include/enotify.php:260 include/enotify.php:303
+#: include/enotify.php:263 include/enotify.php:306
 #, php-format
 msgid "You may visit their profile at %s"
 msgstr "Hier kannst Du das Profil betrachten: %s"
 
-#: include/enotify.php:262
+#: include/enotify.php:265
 #, php-format
 msgid "Please visit %s to approve or reject the introduction."
 msgstr "Bitte besuche %s, um die Kontaktanfrage anzunehmen oder abzulehnen."
 
-#: include/enotify.php:270
+#: include/enotify.php:273
 msgid "[Friendica:Notify] A new person is sharing with you"
 msgstr "[Friendica Benachrichtigung] Eine neue Person teilt mit Dir"
 
-#: include/enotify.php:272 include/enotify.php:273
+#: include/enotify.php:275 include/enotify.php:276
 #, php-format
 msgid "%1$s is sharing with you at %2$s"
 msgstr "%1$s teilt mit Dir auf %2$s"
 
-#: include/enotify.php:279
+#: include/enotify.php:282
 msgid "[Friendica:Notify] You have a new follower"
 msgstr "[Friendica Benachrichtigung] Du hast einen neuen Kontakt auf "
 
-#: include/enotify.php:281 include/enotify.php:282
+#: include/enotify.php:284 include/enotify.php:285
 #, php-format
 msgid "You have a new follower at %2$s : %1$s"
 msgstr "Du hast einen neuen Kontakt auf %2$s: %1$s"
 
-#: include/enotify.php:293
+#: include/enotify.php:296
 msgid "[Friendica:Notify] Friend suggestion received"
 msgstr "[Friendica-Meldung] Kontaktvorschlag erhalten"
 
-#: include/enotify.php:295
+#: include/enotify.php:298
 #, php-format
 msgid "You've received a friend suggestion from '%1$s' at %2$s"
 msgstr "Du hast einen Kontakt-Vorschlag von '%1$s' auf %2$s erhalten"
 
-#: include/enotify.php:296
+#: include/enotify.php:299
 #, php-format
 msgid ""
 "You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s."
 msgstr "Du hast einen [url=%1$s]Kontakt-Vorschlag[/url] %2$s von %3$s erhalten."
 
-#: include/enotify.php:301
+#: include/enotify.php:304
 msgid "Name:"
 msgstr "Name:"
 
-#: include/enotify.php:302
+#: include/enotify.php:305
 msgid "Photo:"
 msgstr "Foto:"
 
-#: include/enotify.php:305
+#: include/enotify.php:308
 #, php-format
 msgid "Please visit %s to approve or reject the suggestion."
 msgstr "Bitte besuche %s, um den Vorschlag zu akzeptieren oder abzulehnen."
 
-#: include/enotify.php:313 include/enotify.php:327
+#: include/enotify.php:316 include/enotify.php:330
 msgid "[Friendica:Notify] Connection accepted"
 msgstr "[Friendica-Benachrichtigung] Kontaktanfrage bestätigt"
 
-#: include/enotify.php:315 include/enotify.php:329
+#: include/enotify.php:318 include/enotify.php:332
 #, php-format
 msgid "'%1$s' has accepted your connection request at %2$s"
 msgstr "'%1$s' hat Deine Kontaktanfrage auf  %2$s bestätigt"
 
-#: include/enotify.php:316 include/enotify.php:330
+#: include/enotify.php:319 include/enotify.php:333
 #, php-format
 msgid "%2$s has accepted your [url=%1$s]connection request[/url]."
 msgstr "%2$s hat Deine [url=%1$s]Kontaktanfrage[/url] akzeptiert."
 
-#: include/enotify.php:320
+#: include/enotify.php:323
 msgid ""
 "You are now mutual friends and may exchange status updates, photos, and "
 "email without restriction."
 msgstr "Ihr seid nun beidseitige Kontakte und könnt Statusmitteilungen, Bilder und Emails ohne Einschränkungen austauschen."
 
-#: include/enotify.php:322
+#: include/enotify.php:325
 #, php-format
 msgid "Please visit %s if you wish to make any changes to this relationship."
 msgstr "Bitte besuche %s, wenn Du Änderungen an eurer Beziehung vornehmen willst."
 
-#: include/enotify.php:334
+#: include/enotify.php:337
 #, php-format
 msgid ""
 "'%1$s' has chosen to accept you a \"fan\", which restricts some forms of "
@@ -1860,1207 +1780,953 @@ msgid ""
 "automatically."
 msgstr "'%1$s' hat sich entschieden Dich als \"Fan\" zu akzeptieren, dies schränkt einige Kommunikationswege - wie private Nachrichten und einige Interaktionsmöglichkeiten auf der Profilseite - ein. Wenn dies eine Berühmtheiten- oder Gemeinschaftsseite ist, werden diese Einstellungen automatisch vorgenommen."
 
-#: include/enotify.php:336
+#: include/enotify.php:339
 #, php-format
 msgid ""
 "'%1$s' may choose to extend this into a two-way or more permissive "
 "relationship in the future."
 msgstr "'%1$s' kann den Kontaktstatus zu einem späteren Zeitpunkt erweitern und diese Einschränkungen aufheben. "
 
-#: include/enotify.php:338
+#: include/enotify.php:341
 #, php-format
 msgid "Please visit %s  if you wish to make any changes to this relationship."
 msgstr "Bitte besuche %s, wenn Du Änderungen an eurer Beziehung vornehmen willst."
 
-#: include/enotify.php:348
+#: include/enotify.php:351
 msgid "[Friendica System:Notify] registration request"
 msgstr "[Friendica System:Benachrichtigung] Registrationsanfrage"
 
-#: include/enotify.php:350
+#: include/enotify.php:353
 #, php-format
 msgid "You've received a registration request from '%1$s' at %2$s"
 msgstr "Du hast eine Registrierungsanfrage von %2$s auf '%1$s' erhalten"
 
-#: include/enotify.php:351
+#: include/enotify.php:354
 #, php-format
 msgid "You've received a [url=%1$s]registration request[/url] from %2$s."
 msgstr "Du hast eine [url=%1$s]Registrierungsanfrage[/url] von %2$s erhalten."
 
-#: include/enotify.php:355
+#: include/enotify.php:358
 #, php-format
 msgid "Full Name:\t%1$s\\nSite Location:\t%2$s\\nLogin Name:\t%3$s (%4$s)"
 msgstr "Kompletter Name:\t%1$s\\nURL der Seite:\t%2$s\\nLogin Name:\t%3$s (%4$s)"
 
-#: include/enotify.php:358
+#: include/enotify.php:361
 #, php-format
 msgid "Please visit %s to approve or reject the request."
 msgstr "Bitte besuche %s um die Anfrage zu bearbeiten."
 
-#: include/group.php:25
-msgid ""
-"A deleted group with this name was revived. Existing item permissions "
-"<strong>may</strong> apply to this group and any future members. If this is "
-"not what you intended, please create another group with a different name."
-msgstr "Eine gelöschte Gruppe mit diesem Namen wurde wiederbelebt. Bestehende Berechtigungseinstellungen <strong>könnten</strong> auf diese Gruppe oder zukünftige Mitglieder angewandt werden. Falls Du dies nicht möchtest, erstelle bitte eine andere Gruppe mit einem anderen Namen."
+#: include/event.php:409
+msgid "all-day"
+msgstr "ganztägig"
 
-#: include/group.php:201
-msgid "Default privacy group for new contacts"
-msgstr "Voreingestellte Gruppe für neue Kontakte"
+#: include/event.php:411
+msgid "Sun"
+msgstr "So"
 
-#: include/group.php:234
-msgid "Everybody"
-msgstr "Alle Kontakte"
+#: include/event.php:412
+msgid "Mon"
+msgstr "Mo"
 
-#: include/group.php:257
-msgid "edit"
-msgstr "bearbeiten"
+#: include/event.php:413
+msgid "Tue"
+msgstr "Di"
 
-#: include/group.php:278 mod/newmember.php:39
-msgid "Groups"
-msgstr "Gruppen"
+#: include/event.php:414
+msgid "Wed"
+msgstr "Mi"
 
-#: include/group.php:280
-msgid "Edit groups"
-msgstr "Gruppen bearbeiten"
+#: include/event.php:415
+msgid "Thu"
+msgstr "Do"
 
-#: include/group.php:282
-msgid "Edit group"
-msgstr "Gruppe bearbeiten"
+#: include/event.php:416
+msgid "Fri"
+msgstr "Fr"
 
-#: include/group.php:283
-msgid "Create a new group"
-msgstr "Neue Gruppe erstellen"
+#: include/event.php:417
+msgid "Sat"
+msgstr "Sa"
 
-#: include/group.php:284 mod/group.php:100 mod/group.php:197
-msgid "Group Name: "
-msgstr "Gruppenname:"
+#: include/event.php:419 include/text.php:1207 mod/settings.php:978
+msgid "Sunday"
+msgstr "Sonntag"
 
-#: include/group.php:286
-msgid "Contacts not in any group"
-msgstr "Kontakte in keiner Gruppe"
+#: include/event.php:420 include/text.php:1207 mod/settings.php:978
+msgid "Monday"
+msgstr "Montag"
 
-#: include/group.php:288 mod/network.php:210
-msgid "add"
-msgstr "hinzufügen"
+#: include/event.php:421 include/text.php:1207
+msgid "Tuesday"
+msgstr "Dienstag"
 
-#: include/oembed.php:253
-msgid "Embedded content"
-msgstr "Eingebetteter Inhalt"
+#: include/event.php:422 include/text.php:1207
+msgid "Wednesday"
+msgstr "Mittwoch"
 
-#: include/oembed.php:261
-msgid "Embedding disabled"
-msgstr "Einbettungen deaktiviert"
+#: include/event.php:423 include/text.php:1207
+msgid "Thursday"
+msgstr "Donnerstag"
 
-#: include/Contact.php:380 include/Contact.php:393 include/Contact.php:438
-#: include/conversation.php:1012 include/conversation.php:1028
-#: mod/allfriends.php:70 mod/directory.php:153 mod/match.php:76
-#: mod/suggest.php:84 mod/dirfind.php:211
-msgid "View Profile"
-msgstr "Profil anschauen"
+#: include/event.php:424 include/text.php:1207
+msgid "Friday"
+msgstr "Freitag"
 
-#: include/Contact.php:394 include/contact_widgets.php:38
-#: include/conversation.php:1025 mod/allfriends.php:71 mod/match.php:77
-#: mod/suggest.php:85 mod/dirfind.php:212 mod/follow.php:108
-#: mod/contacts.php:615
-msgid "Connect/Follow"
-msgstr "Verbinden/Folgen"
+#: include/event.php:425 include/text.php:1207
+msgid "Saturday"
+msgstr "Samstag"
 
-#: include/Contact.php:437 include/conversation.php:1011
-msgid "View Status"
-msgstr "Pinnwand anschauen"
+#: include/event.php:427
+msgid "Jan"
+msgstr "Jan"
 
-#: include/Contact.php:439 include/conversation.php:1013
-msgid "View Photos"
-msgstr "Bilder anschauen"
+#: include/event.php:428
+msgid "Feb"
+msgstr "Feb"
 
-#: include/Contact.php:440 include/conversation.php:1014
-msgid "Network Posts"
-msgstr "Netzwerkbeiträge"
+#: include/event.php:429
+msgid "Mar"
+msgstr "März"
 
-#: include/Contact.php:441 include/conversation.php:1015
-msgid "View Contact"
-msgstr "Kontakt anzeigen"
+#: include/event.php:430
+msgid "Apr"
+msgstr "Apr"
 
-#: include/Contact.php:442
-msgid "Drop Contact"
-msgstr "Kontakt löschen"
+#: include/event.php:431 include/event.php:444 include/text.php:1211
+msgid "May"
+msgstr "Mai"
 
-#: include/Contact.php:443 include/conversation.php:1016
-msgid "Send PM"
-msgstr "Private Nachricht senden"
+#: include/event.php:432
+msgid "Jun"
+msgstr "Jun"
 
-#: include/Contact.php:444 include/conversation.php:1020
-msgid "Poke"
-msgstr "Anstupsen"
+#: include/event.php:433
+msgid "Jul"
+msgstr "Juli"
 
-#: include/Contact.php:813
-msgid "Organisation"
-msgstr "Organisation"
+#: include/event.php:434
+msgid "Aug"
+msgstr "Aug"
 
-#: include/Contact.php:816
-msgid "News"
-msgstr "Nachrichten"
+#: include/event.php:435
+msgid "Sept"
+msgstr "Sep"
 
-#: include/Contact.php:819
-msgid "Forum"
-msgstr "Forum"
+#: include/event.php:436
+msgid "Oct"
+msgstr "Okt"
 
-#: include/ForumManager.php:120 view/theme/vier/theme.php:250
-msgid "External link to forum"
-msgstr "Externer Link zum Forum"
+#: include/event.php:437
+msgid "Nov"
+msgstr "Nov"
 
-#: include/ForumManager.php:123 include/contact_widgets.php:271
-#: include/items.php:2385 mod/content.php:625 object/Item.php:419
-#: view/theme/vier/theme.php:253 src/App.php:528
-msgid "show more"
-msgstr "mehr anzeigen"
+#: include/event.php:438
+msgid "Dec"
+msgstr "Dez"
 
-#: include/bbcode.php:428 include/bbcode.php:1186 include/bbcode.php:1187
-msgid "Image/photo"
-msgstr "Bild/Foto"
+#: include/event.php:440 include/text.php:1211
+msgid "January"
+msgstr "Januar"
 
-#: include/bbcode.php:544
-#, php-format
-msgid "<a href=\"%1$s\" target=\"_blank\">%2$s</a> %3$s"
-msgstr "<a href=\"%1$s\" target=\"_blank\">%2$s</a> %3$s"
+#: include/event.php:441 include/text.php:1211
+msgid "February"
+msgstr "Februar"
 
-#: include/bbcode.php:1143 include/bbcode.php:1165
-msgid "$1 wrote:"
-msgstr "$1 hat geschrieben:"
+#: include/event.php:442 include/text.php:1211
+msgid "March"
+msgstr "März"
 
-#: include/bbcode.php:1195 include/bbcode.php:1196
-msgid "Encrypted content"
-msgstr "Verschlüsselter Inhalt"
+#: include/event.php:443 include/text.php:1211
+msgid "April"
+msgstr "April"
 
-#: include/bbcode.php:1315
-msgid "Invalid source protocol"
-msgstr "Ungültiges Quell-Protokoll"
+#: include/event.php:445 include/text.php:1211
+msgid "June"
+msgstr "Juni"
 
-#: include/bbcode.php:1326
-msgid "Invalid link protocol"
-msgstr "Ungültiges Link-Protokoll"
+#: include/event.php:446 include/text.php:1211
+msgid "July"
+msgstr "Juli"
 
-#: include/contact_widgets.php:11
-msgid "Add New Contact"
-msgstr "Neuen Kontakt hinzufügen"
+#: include/event.php:447 include/text.php:1211
+msgid "August"
+msgstr "August"
 
-#: include/contact_widgets.php:12
-msgid "Enter address or web location"
-msgstr "Adresse oder Web-Link eingeben"
+#: include/event.php:448 include/text.php:1211
+msgid "September"
+msgstr "September"
 
-#: include/contact_widgets.php:13
-msgid "Example: bob@example.com, http://example.com/barbara"
-msgstr "Beispiel: bob@example.com, http://example.com/barbara"
+#: include/event.php:449 include/text.php:1211
+msgid "October"
+msgstr "Oktober"
 
-#: include/contact_widgets.php:15 include/identity.php:228
-#: mod/allfriends.php:87 mod/match.php:92 mod/suggest.php:103
-#: mod/dirfind.php:209
-msgid "Connect"
-msgstr "Verbinden"
+#: include/event.php:450 include/text.php:1211
+msgid "November"
+msgstr "November"
 
-#: include/contact_widgets.php:30
-#, php-format
-msgid "%d invitation available"
-msgid_plural "%d invitations available"
-msgstr[0] "%d Einladung verfügbar"
-msgstr[1] "%d Einladungen verfügbar"
+#: include/event.php:451 include/text.php:1211
+msgid "December"
+msgstr "Dezember"
 
-#: include/contact_widgets.php:36
-msgid "Find People"
-msgstr "Leute finden"
+#: include/event.php:453 mod/cal.php:281 mod/events.php:387
+msgid "today"
+msgstr "Heute"
 
-#: include/contact_widgets.php:37
-msgid "Enter name or interest"
-msgstr "Name oder Interessen eingeben"
+#: include/event.php:458
+msgid "No events to display"
+msgstr "Keine Veranstaltung zum Anzeigen"
 
-#: include/contact_widgets.php:39
-msgid "Examples: Robert Morgenstein, Fishing"
-msgstr "Beispiel: Robert Morgenstein, Angeln"
+#: include/event.php:571
+msgid "l, F j"
+msgstr "l, F j"
 
-#: include/contact_widgets.php:40 mod/directory.php:202 mod/contacts.php:811
-msgid "Find"
-msgstr "Finde"
+#: include/event.php:593
+msgid "Edit event"
+msgstr "Veranstaltung bearbeiten"
 
-#: include/contact_widgets.php:41 mod/suggest.php:116
-#: view/theme/vier/theme.php:195
-msgid "Friend Suggestions"
-msgstr "Kontaktvorschläge"
+#: include/event.php:594
+msgid "Delete event"
+msgstr "Veranstaltung löschen"
 
-#: include/contact_widgets.php:42 view/theme/vier/theme.php:194
-msgid "Similar Interests"
-msgstr "Ähnliche Interessen"
+#: include/event.php:620 include/text.php:1609 include/text.php:1616
+msgid "link to source"
+msgstr "Link zum Originalbeitrag"
 
-#: include/contact_widgets.php:43
-msgid "Random Profile"
-msgstr "Zufälliges Profil"
+#: include/event.php:878
+msgid "Export"
+msgstr "Exportieren"
 
-#: include/contact_widgets.php:44 view/theme/vier/theme.php:196
-msgid "Invite Friends"
-msgstr "Freunde einladen"
+#: include/event.php:879
+msgid "Export calendar as ical"
+msgstr "Kalender als ical exportieren"
 
-#: include/contact_widgets.php:45
-msgid "View Global Directory"
-msgstr "Globales Verzeichnis betrachten"
+#: include/event.php:880
+msgid "Export calendar as csv"
+msgstr "Kalender als csv exportieren"
 
-#: include/contact_widgets.php:131
-msgid "Networks"
-msgstr "Netzwerke"
+#: include/identity.php:46
+msgid "Requested account is not available."
+msgstr "Das angefragte Profil ist nicht vorhanden."
 
-#: include/contact_widgets.php:134
-msgid "All Networks"
-msgstr "Alle Netzwerke"
+#: include/identity.php:55 mod/profile.php:23
+msgid "Requested profile is not available."
+msgstr "Das angefragte Profil ist nicht vorhanden."
 
-#: include/contact_widgets.php:169 include/contact_widgets.php:204
-msgid "Everything"
-msgstr "Alles"
+#: include/identity.php:99 include/identity.php:322 include/identity.php:755
+msgid "Edit profile"
+msgstr "Profil bearbeiten"
 
-#: include/contact_widgets.php:201
-msgid "Categories"
-msgstr "Kategorien"
+#: include/identity.php:262
+msgid "Atom feed"
+msgstr "Atom-Feed"
 
-#: include/contact_widgets.php:266
-#, php-format
-msgid "%d contact in common"
-msgid_plural "%d contacts in common"
-msgstr[0] "%d gemeinsamer Kontakt"
-msgstr[1] "%d gemeinsame Kontakte"
+#: include/identity.php:293 include/nav.php:192
+msgid "Profiles"
+msgstr "Profile"
 
-#: include/conversation.php:160
-#, php-format
-msgid "%1$s attends %2$s's %3$s"
-msgstr "%1$s nimmt an %2$ss %3$s teil."
+#: include/identity.php:293
+msgid "Manage/edit profiles"
+msgstr "Profile verwalten/editieren"
 
-#: include/conversation.php:163
-#, php-format
-msgid "%1$s doesn't attend %2$s's %3$s"
-msgstr "%1$s nimmt nicht an %2$ss %3$s teil."
+#: include/identity.php:298 include/identity.php:324 mod/profiles.php:785
+msgid "Change profile photo"
+msgstr "Profilbild ändern"
 
-#: include/conversation.php:166
-#, php-format
-msgid "%1$s attends maybe %2$s's %3$s"
-msgstr "%1$s nimmt eventuell an %2$ss %3$s teil."
+#: include/identity.php:299 mod/profiles.php:786
+msgid "Create New Profile"
+msgstr "Neues Profil anlegen"
 
-#: include/conversation.php:199 mod/dfrn_confirm.php:480
-#, php-format
-msgid "%1$s is now friends with %2$s"
-msgstr "%1$s ist nun mit %2$s befreundet"
+#: include/identity.php:309 mod/profiles.php:775
+msgid "Profile Image"
+msgstr "Profilbild"
 
-#: include/conversation.php:240
-#, php-format
-msgid "%1$s poked %2$s"
-msgstr "%1$s stupste %2$s"
+#: include/identity.php:312 mod/profiles.php:777
+msgid "visible to everybody"
+msgstr "sichtbar für jeden"
 
-#: include/conversation.php:261 mod/mood.php:64
-#, php-format
-msgid "%1$s is currently %2$s"
-msgstr "%1$s ist momentan %2$s"
+#: include/identity.php:313 mod/profiles.php:682 mod/profiles.php:778
+msgid "Edit visibility"
+msgstr "Sichtbarkeit bearbeiten"
 
-#: include/conversation.php:308 mod/tagger.php:96
-#, php-format
-msgid "%1$s tagged %2$s's %3$s with %4$s"
-msgstr "%1$s hat %2$ss %3$s mit %4$s getaggt"
+#: include/identity.php:341 include/identity.php:642 mod/directory.php:137
+#: mod/notifications.php:253
+msgid "Gender:"
+msgstr "Geschlecht:"
 
-#: include/conversation.php:335
-msgid "post/item"
-msgstr "Nachricht/Beitrag"
+#: include/identity.php:344 include/identity.php:665 mod/directory.php:139
+msgid "Status:"
+msgstr "Status:"
 
-#: include/conversation.php:336
-#, php-format
-msgid "%1$s marked %2$s's %3$s as favorite"
-msgstr "%1$s hat %2$s\\s %3$s als Favorit markiert"
+#: include/identity.php:346 include/identity.php:682 mod/directory.php:141
+msgid "Homepage:"
+msgstr "Homepage:"
 
-#: include/conversation.php:614 mod/content.php:373 mod/photos.php:1664
-#: mod/profiles.php:344
-msgid "Likes"
-msgstr "Likes"
+#: include/identity.php:348 include/identity.php:702 mod/directory.php:143
+#: mod/notifications.php:249 mod/contacts.php:661
+msgid "About:"
+msgstr "Über:"
 
-#: include/conversation.php:614 mod/content.php:373 mod/photos.php:1664
-#: mod/profiles.php:348
-msgid "Dislikes"
-msgstr "Dislikes"
+#: include/identity.php:350 mod/contacts.php:659
+msgid "XMPP:"
+msgstr "XMPP:"
 
-#: include/conversation.php:615 include/conversation.php:1549
-#: mod/content.php:374 mod/photos.php:1665
-msgid "Attending"
-msgid_plural "Attending"
-msgstr[0] "Teilnehmend"
-msgstr[1] "Teilnehmend"
+#: include/identity.php:436 mod/notifications.php:261 mod/contacts.php:59
+msgid "Network:"
+msgstr "Netzwerk:"
 
-#: include/conversation.php:615 mod/content.php:374 mod/photos.php:1665
-msgid "Not attending"
-msgstr "Nicht teilnehmend"
+#: include/identity.php:465 include/identity.php:556
+msgid "g A l F d"
+msgstr "l, d. F G \\U\\h\\r"
 
-#: include/conversation.php:615 mod/content.php:374 mod/photos.php:1665
-msgid "Might attend"
-msgstr "Eventuell teilnehmend"
+#: include/identity.php:466 include/identity.php:557
+msgid "d"
+msgstr "d. F"
 
-#: include/conversation.php:752 mod/content.php:454 mod/content.php:760
-#: mod/photos.php:1730 object/Item.php:137
-msgid "Select"
-msgstr "Auswählen"
+#: include/identity.php:518 include/identity.php:604
+msgid "[today]"
+msgstr "[heute]"
 
-#: include/conversation.php:753 mod/content.php:455 mod/content.php:761
-#: mod/photos.php:1731 mod/contacts.php:821 mod/contacts.php:1020
-#: mod/settings.php:745 mod/admin.php:1598 object/Item.php:138
-msgid "Delete"
-msgstr "Löschen"
+#: include/identity.php:530
+msgid "Birthday Reminders"
+msgstr "Geburtstagserinnerungen"
 
-#: include/conversation.php:796 mod/content.php:488 mod/content.php:916
-#: mod/content.php:917 object/Item.php:352 object/Item.php:353
-#, php-format
-msgid "View %s's profile @ %s"
-msgstr "Das Profil von %s auf %s betrachten."
+#: include/identity.php:531
+msgid "Birthdays this week:"
+msgstr "Geburtstage diese Woche:"
 
-#: include/conversation.php:808 object/Item.php:340
-msgid "Categories:"
-msgstr "Kategorien:"
+#: include/identity.php:591
+msgid "[No description]"
+msgstr "[keine Beschreibung]"
 
-#: include/conversation.php:809 object/Item.php:341
-msgid "Filed under:"
-msgstr "Abgelegt unter:"
+#: include/identity.php:618
+msgid "Event Reminders"
+msgstr "Veranstaltungserinnerungen"
 
-#: include/conversation.php:816 mod/content.php:498 mod/content.php:929
-#: object/Item.php:366
-#, php-format
-msgid "%s from %s"
-msgstr "%s von %s"
+#: include/identity.php:619
+msgid "Events this week:"
+msgstr "Veranstaltungen diese Woche"
 
-#: include/conversation.php:832 mod/content.php:514
-msgid "View in context"
-msgstr "Im Zusammenhang betrachten"
+#: include/identity.php:630 include/identity.php:759 include/identity.php:792
+#: include/nav.php:85 mod/newmember.php:20 mod/profperm.php:107
+#: mod/contacts.php:668 mod/contacts.php:870 view/theme/frio/theme.php:254
+msgid "Profile"
+msgstr "Profil"
 
-#: include/conversation.php:834 include/conversation.php:1306
-#: mod/content.php:516 mod/content.php:954 mod/editpost.php:116
-#: mod/message.php:339 mod/message.php:524 mod/photos.php:1629
-#: mod/wallmessage.php:142 object/Item.php:391
-msgid "Please wait"
-msgstr "Bitte warten"
+#: include/identity.php:639 mod/settings.php:1283
+msgid "Full Name:"
+msgstr "Kompletter Name:"
 
-#: include/conversation.php:911
-msgid "remove"
-msgstr "löschen"
+#: include/identity.php:646
+msgid "j F, Y"
+msgstr "j F, Y"
 
-#: include/conversation.php:915
-msgid "Delete Selected Items"
-msgstr "Lösche die markierten Beiträge"
+#: include/identity.php:647
+msgid "j F"
+msgstr "j F"
 
-#: include/conversation.php:1010 view/theme/frio/theme.php:346
-msgid "Follow Thread"
-msgstr "Folge der Unterhaltung"
+#: include/identity.php:661
+msgid "Age:"
+msgstr "Alter:"
 
-#: include/conversation.php:1147
+#: include/identity.php:674
 #, php-format
-msgid "%s likes this."
-msgstr "%s mag das."
+msgid "for %1$d %2$s"
+msgstr "für %1$d %2$s"
 
-#: include/conversation.php:1150
-#, php-format
-msgid "%s doesn't like this."
-msgstr "%s mag das nicht."
+#: include/identity.php:678 mod/profiles.php:701
+msgid "Sexual Preference:"
+msgstr "Sexuelle Vorlieben:"
 
-#: include/conversation.php:1153
-#, php-format
-msgid "%s attends."
-msgstr "%s nimmt teil."
+#: include/identity.php:686 mod/profiles.php:728
+msgid "Hometown:"
+msgstr "Heimatort:"
 
-#: include/conversation.php:1156
-#, php-format
-msgid "%s doesn't attend."
-msgstr "%s nimmt nicht teil."
+#: include/identity.php:690 mod/follow.php:174 mod/notifications.php:251
+#: mod/contacts.php:663
+msgid "Tags:"
+msgstr "Tags:"
 
-#: include/conversation.php:1159
-#, php-format
-msgid "%s attends maybe."
-msgstr "%s nimmt eventuell teil."
+#: include/identity.php:694 mod/profiles.php:729
+msgid "Political Views:"
+msgstr "Politische Ansichten:"
 
-#: include/conversation.php:1170
-msgid "and"
-msgstr "und"
+#: include/identity.php:698
+msgid "Religion:"
+msgstr "Religion:"
 
-#: include/conversation.php:1176
-#, php-format
-msgid ", and %d other people"
-msgstr " und %d andere"
+#: include/identity.php:706
+msgid "Hobbies/Interests:"
+msgstr "Hobbies/Interessen:"
 
-#: include/conversation.php:1185
-#, php-format
-msgid "<span  %1$s>%2$d people</span> like this"
-msgstr "<span  %1$s>%2$d Personen</span> mögen das"
+#: include/identity.php:710 mod/profiles.php:733
+msgid "Likes:"
+msgstr "Likes:"
 
-#: include/conversation.php:1186
-#, php-format
-msgid "%s like this."
-msgstr "%s mögen das."
+#: include/identity.php:714 mod/profiles.php:734
+msgid "Dislikes:"
+msgstr "Dislikes:"
 
-#: include/conversation.php:1189
-#, php-format
-msgid "<span  %1$s>%2$d people</span> don't like this"
-msgstr "<span  %1$s>%2$d Personen</span> mögen das nicht"
+#: include/identity.php:718
+msgid "Contact information and Social Networks:"
+msgstr "Kontaktinformationen und Soziale Netzwerke:"
 
-#: include/conversation.php:1190
-#, php-format
-msgid "%s don't like this."
-msgstr "%s mögen dies nicht."
+#: include/identity.php:722
+msgid "Musical interests:"
+msgstr "Musikalische Interessen:"
 
-#: include/conversation.php:1193
-#, php-format
-msgid "<span  %1$s>%2$d people</span> attend"
-msgstr "<span %1$s>%2$d Personen</span> nehmen teil"
+#: include/identity.php:726
+msgid "Books, literature:"
+msgstr "Literatur/Bücher:"
 
-#: include/conversation.php:1194
-#, php-format
-msgid "%s attend."
-msgstr "%s nehmen teil."
+#: include/identity.php:730
+msgid "Television:"
+msgstr "Fernsehen:"
 
-#: include/conversation.php:1197
-#, php-format
-msgid "<span  %1$s>%2$d people</span> don't attend"
-msgstr "<span %1$s>%2$d Personen</span> nehmen nicht teil"
+#: include/identity.php:734
+msgid "Film/dance/culture/entertainment:"
+msgstr "Filme/Tänze/Kultur/Unterhaltung:"
 
-#: include/conversation.php:1198
-#, php-format
-msgid "%s don't attend."
-msgstr "%s nehmen nicht teil."
+#: include/identity.php:738
+msgid "Love/Romance:"
+msgstr "Liebesleben:"
 
-#: include/conversation.php:1201
-#, php-format
-msgid "<span  %1$s>%2$d people</span> attend maybe"
-msgstr "<span %1$s>%2$d Personen</span> nehmen eventuell teil"
+#: include/identity.php:742
+msgid "Work/employment:"
+msgstr "Arbeit/Beschäftigung:"
 
-#: include/conversation.php:1202
-#, php-format
-msgid "%s anttend maybe."
-msgstr "%s  nehmen vielleicht teil."
+#: include/identity.php:746
+msgid "School/education:"
+msgstr "Schule/Ausbildung:"
 
-#: include/conversation.php:1231 include/conversation.php:1247
-msgid "Visible to <strong>everybody</strong>"
-msgstr "Für <strong>jedermann</strong> sichtbar"
+#: include/identity.php:751
+msgid "Forums:"
+msgstr "Foren:"
 
-#: include/conversation.php:1232 include/conversation.php:1248
-#: mod/message.php:273 mod/message.php:280 mod/message.php:420
-#: mod/message.php:427 mod/wallmessage.php:116 mod/wallmessage.php:123
-msgid "Please enter a link URL:"
-msgstr "Bitte gib die URL des Links ein:"
+#: include/identity.php:760 mod/events.php:510
+msgid "Basic"
+msgstr "Allgemein"
 
-#: include/conversation.php:1233 include/conversation.php:1249
-msgid "Please enter a video link/URL:"
-msgstr "Bitte Link/URL zum Video einfügen:"
+#: include/identity.php:761 mod/events.php:511 mod/admin.php:1158
+#: mod/contacts.php:899
+msgid "Advanced"
+msgstr "Erweitert"
 
-#: include/conversation.php:1234 include/conversation.php:1250
-msgid "Please enter an audio link/URL:"
-msgstr "Bitte Link/URL zum Audio einfügen:"
+#: include/identity.php:784 include/nav.php:84 mod/contacts.php:666
+#: mod/contacts.php:862 view/theme/frio/theme.php:253
+msgid "Status"
+msgstr "Status"
 
-#: include/conversation.php:1235 include/conversation.php:1251
-msgid "Tag term:"
-msgstr "Tag:"
+#: include/identity.php:787 mod/follow.php:182 mod/contacts.php:865
+#: mod/unfollow.php:133
+msgid "Status Messages and Posts"
+msgstr "Statusnachrichten und Beiträge"
 
-#: include/conversation.php:1236 include/conversation.php:1252
-#: mod/filer.php:31
-msgid "Save to Folder:"
-msgstr "In diesem Ordner speichern:"
+#: include/identity.php:795 mod/contacts.php:873
+msgid "Profile Details"
+msgstr "Profildetails"
 
-#: include/conversation.php:1237 include/conversation.php:1253
-msgid "Where are you right now?"
-msgstr "Wo hältst Du Dich jetzt gerade auf?"
+#: include/identity.php:800 include/nav.php:86 mod/fbrowser.php:34
+#: view/theme/frio/theme.php:255
+msgid "Photos"
+msgstr "Bilder"
 
-#: include/conversation.php:1238
-msgid "Delete item(s)?"
-msgstr "Einträge löschen?"
+#: include/identity.php:803 mod/photos.php:96
+msgid "Photo Albums"
+msgstr "Fotoalben"
 
-#: include/conversation.php:1287
-msgid "Share"
-msgstr "Teilen"
+#: include/identity.php:808 include/identity.php:811 include/nav.php:87
+#: view/theme/frio/theme.php:256
+msgid "Videos"
+msgstr "Videos"
 
-#: include/conversation.php:1288 mod/editpost.php:102 mod/message.php:337
-#: mod/message.php:521 mod/wallmessage.php:140
-msgid "Upload photo"
-msgstr "Foto hochladen"
+#: include/identity.php:820 include/identity.php:831 include/nav.php:88
+#: include/nav.php:152 mod/cal.php:273 mod/events.php:378
+#: view/theme/frio/theme.php:257 view/theme/frio/theme.php:261
+msgid "Events"
+msgstr "Veranstaltungen"
 
-#: include/conversation.php:1289 mod/editpost.php:103
-msgid "upload photo"
-msgstr "Bild hochladen"
+#: include/identity.php:823 include/identity.php:834 include/nav.php:152
+#: view/theme/frio/theme.php:261
+msgid "Events and Calendar"
+msgstr "Ereignisse und Kalender"
 
-#: include/conversation.php:1290 mod/editpost.php:104
-msgid "Attach file"
-msgstr "Datei anhängen"
+#: include/identity.php:842 mod/notes.php:49
+msgid "Personal Notes"
+msgstr "Persönliche Notizen"
 
-#: include/conversation.php:1291 mod/editpost.php:105
-msgid "attach file"
-msgstr "Datei anhängen"
+#: include/identity.php:845
+msgid "Only You Can See This"
+msgstr "Nur Du kannst das sehen"
 
-#: include/conversation.php:1292 mod/editpost.php:106 mod/message.php:338
-#: mod/message.php:522 mod/wallmessage.php:141
-msgid "Insert web link"
-msgstr "Einen Link einfügen"
+#: include/identity.php:853 include/identity.php:856 include/nav.php:131
+#: include/nav.php:195 include/text.php:1101 mod/viewcontacts.php:124
+#: mod/contacts.php:821 mod/contacts.php:882 view/theme/frio/theme.php:264
+msgid "Contacts"
+msgstr "Kontakte"
 
-#: include/conversation.php:1293 mod/editpost.php:107
-msgid "web link"
-msgstr "Weblink"
+#: include/like.php:45
+#, php-format
+msgid "%1$s is attending %2$s's %3$s"
+msgstr "%1$s nimmt an %2$ss %3$s teil."
 
-#: include/conversation.php:1294 mod/editpost.php:108
-msgid "Insert video link"
-msgstr "Video-Adresse einfügen"
+#: include/like.php:50
+#, php-format
+msgid "%1$s is not attending %2$s's %3$s"
+msgstr "%1$s nimmt nicht an %2$ss %3$s teil."
 
-#: include/conversation.php:1295 mod/editpost.php:109
-msgid "video link"
-msgstr "Video-Link"
+#: include/like.php:55
+#, php-format
+msgid "%1$s may attend %2$s's %3$s"
+msgstr "%1$s nimmt eventuell an %2$ss %3$s teil."
 
-#: include/conversation.php:1296 mod/editpost.php:110
-msgid "Insert audio link"
-msgstr "Audio-Adresse einfügen"
+#: include/nav.php:38 mod/navigation.php:22
+msgid "Nothing new here"
+msgstr "Keine Neuigkeiten"
 
-#: include/conversation.php:1297 mod/editpost.php:111
-msgid "audio link"
-msgstr "Audio-Link"
+#: include/nav.php:42 mod/navigation.php:26
+msgid "Clear notifications"
+msgstr "Bereinige Benachrichtigungen"
 
-#: include/conversation.php:1298 mod/editpost.php:112
-msgid "Set your location"
-msgstr "Deinen Standort festlegen"
+#: include/nav.php:43 include/text.php:1094
+msgid "@name, !forum, #tags, content"
+msgstr "@name, !forum, #tags, content"
 
-#: include/conversation.php:1299 mod/editpost.php:113
-msgid "set location"
-msgstr "Ort setzen"
+#: include/nav.php:81 view/theme/frio/theme.php:250 boot.php:869
+msgid "Logout"
+msgstr "Abmelden"
 
-#: include/conversation.php:1300 mod/editpost.php:114
-msgid "Clear browser location"
-msgstr "Browser-Standort leeren"
+#: include/nav.php:81 view/theme/frio/theme.php:250
+msgid "End this session"
+msgstr "Diese Sitzung beenden"
 
-#: include/conversation.php:1301 mod/editpost.php:115
-msgid "clear location"
-msgstr "Ort löschen"
+#: include/nav.php:84 include/nav.php:164 view/theme/frio/theme.php:253
+msgid "Your posts and conversations"
+msgstr "Deine Beiträge und Unterhaltungen"
 
-#: include/conversation.php:1303 mod/editpost.php:129
-msgid "Set title"
-msgstr "Titel setzen"
+#: include/nav.php:85 view/theme/frio/theme.php:254
+msgid "Your profile page"
+msgstr "Deine Profilseite"
 
-#: include/conversation.php:1305 mod/editpost.php:131
-msgid "Categories (comma-separated list)"
-msgstr "Kategorien (kommasepariert)"
-
-#: include/conversation.php:1307 mod/editpost.php:117
-msgid "Permission settings"
-msgstr "Berechtigungseinstellungen"
+#: include/nav.php:86 view/theme/frio/theme.php:255
+msgid "Your photos"
+msgstr "Deine Fotos"
 
-#: include/conversation.php:1308 mod/editpost.php:146
-msgid "permissions"
-msgstr "Zugriffsrechte"
+#: include/nav.php:87 view/theme/frio/theme.php:256
+msgid "Your videos"
+msgstr "Deine Videos"
 
-#: include/conversation.php:1316 mod/editpost.php:126
-msgid "Public post"
-msgstr "Öffentlicher Beitrag"
+#: include/nav.php:88 view/theme/frio/theme.php:257
+msgid "Your events"
+msgstr "Deine Ereignisse"
 
-#: include/conversation.php:1321 mod/content.php:738 mod/editpost.php:137
-#: mod/photos.php:1649 mod/photos.php:1691 mod/photos.php:1771
-#: mod/events.php:506 object/Item.php:713
-msgid "Preview"
-msgstr "Vorschau"
+#: include/nav.php:89
+msgid "Personal notes"
+msgstr "Persönliche Notizen"
 
-#: include/conversation.php:1325 include/items.php:2126 mod/editpost.php:140
-#: mod/fbrowser.php:102 mod/fbrowser.php:137 mod/message.php:211
-#: mod/photos.php:247 mod/photos.php:339 mod/suggest.php:34 mod/tagrm.php:13
-#: mod/tagrm.php:98 mod/videos.php:134 mod/dfrn_request.php:894
-#: mod/follow.php:126 mod/contacts.php:458 mod/settings.php:683
-#: mod/settings.php:709
-msgid "Cancel"
-msgstr "Abbrechen"
+#: include/nav.php:89
+msgid "Your personal notes"
+msgstr "Deine persönlichen Notizen"
 
-#: include/conversation.php:1331
-msgid "Post to Groups"
-msgstr "Poste an Gruppe"
+#: include/nav.php:98 mod/bookmarklet.php:15 boot.php:870
+msgid "Login"
+msgstr "Anmeldung"
 
-#: include/conversation.php:1332
-msgid "Post to Contacts"
-msgstr "Poste an Kontakte"
+#: include/nav.php:98
+msgid "Sign in"
+msgstr "Anmelden"
 
-#: include/conversation.php:1333
-msgid "Private post"
-msgstr "Privater Beitrag"
+#: include/nav.php:108
+msgid "Home Page"
+msgstr "Homepage"
 
-#: include/conversation.php:1338 include/identity.php:266 mod/editpost.php:144
-msgid "Message"
-msgstr "Nachricht"
+#: include/nav.php:112 mod/register.php:293 boot.php:846
+msgid "Register"
+msgstr "Registrieren"
 
-#: include/conversation.php:1339 mod/editpost.php:145
-msgid "Browser"
-msgstr "Browser"
+#: include/nav.php:112
+msgid "Create an account"
+msgstr "Nutzerkonto erstellen"
 
-#: include/conversation.php:1521
-msgid "View all"
-msgstr "Zeige alle"
+#: include/nav.php:118 mod/help.php:51 view/theme/vier/theme.php:292
+msgid "Help"
+msgstr "Hilfe"
 
-#: include/conversation.php:1543
-msgid "Like"
-msgid_plural "Likes"
-msgstr[0] "mag ich"
-msgstr[1] "Mag ich"
+#: include/nav.php:118
+msgid "Help and documentation"
+msgstr "Hilfe und Dokumentation"
 
-#: include/conversation.php:1546
-msgid "Dislike"
-msgid_plural "Dislikes"
-msgstr[0] "mag ich nicht"
-msgstr[1] "Mag ich nicht"
+#: include/nav.php:122
+msgid "Apps"
+msgstr "Apps"
 
-#: include/conversation.php:1552
-msgid "Not Attending"
-msgid_plural "Not Attending"
-msgstr[0] "Nicht teilnehmend "
-msgstr[1] "Nicht teilnehmend"
+#: include/nav.php:122
+msgid "Addon applications, utilities, games"
+msgstr "Addon Anwendungen, Dienstprogramme, Spiele"
 
-#: include/dbstructure.php:25
-msgid "There are no tables on MyISAM."
-msgstr "Es gibt keine MyISAM Tabellen."
+#: include/nav.php:126 include/text.php:1091 mod/search.php:145
+msgid "Search"
+msgstr "Suche"
 
-#: include/dbstructure.php:66
-#, php-format
-msgid ""
-"\n"
-"\t\t\tThe friendica developers released update %s recently,\n"
-"\t\t\tbut when I tried to install it, something went terribly wrong.\n"
-"\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n"
-"\t\t\tfriendica developer if you can not help me on your own. My database might be invalid."
-msgstr "\nDie Friendica-Entwickler haben vor kurzem das Update %s veröffentlicht, aber bei der Installation ging etwas schrecklich schief.\n\nDas Problem sollte so schnell wie möglich gelöst werden, aber ich schaffe es nicht alleine. Bitte kontaktiere einen Friendica-Entwickler falls Du mir nicht alleine helfen kannst. Meine Datenbank könnte ungültig sein."
+#: include/nav.php:126
+msgid "Search site content"
+msgstr "Inhalt der Seite durchsuchen"
 
-#: include/dbstructure.php:71
-#, php-format
-msgid ""
-"The error message is\n"
-"[pre]%s[/pre]"
-msgstr "Die Fehlermeldung lautet\n[pre]%s[/pre]"
+#: include/nav.php:129 include/text.php:1099
+msgid "Full Text"
+msgstr "Volltext"
 
-#: include/dbstructure.php:196
-#, php-format
-msgid ""
-"\n"
-"Error %d occurred during database update:\n"
-"%s\n"
-msgstr "\nFehler %d beim Update der Datenbank aufgetreten\n%s\n"
+#: include/nav.php:130 include/text.php:1100
+msgid "Tags"
+msgstr "Tags"
 
-#: include/dbstructure.php:199
-msgid "Errors encountered performing database changes: "
-msgstr "Fehler beim Ändern der Datenbank aufgetreten"
+#: include/nav.php:146 include/nav.php:148 mod/community.php:31
+msgid "Community"
+msgstr "Gemeinschaft"
 
-#: include/dbstructure.php:207
-msgid ": Database update"
-msgstr ": Datenbank Update"
+#: include/nav.php:146
+msgid "Conversations on this site"
+msgstr "Unterhaltungen auf dieser Seite"
 
-#: include/dbstructure.php:439
-#, php-format
-msgid "%s: updating %s table."
-msgstr "%s: aktualisiere Tabelle %s"
+#: include/nav.php:148
+msgid "Conversations on the network"
+msgstr "Unterhaltungen im Netzwerk"
 
-#: include/dfrn.php:1317
-#, php-format
-msgid "%s\\'s birthday"
-msgstr "%ss Geburtstag"
+#: include/nav.php:155
+msgid "Directory"
+msgstr "Verzeichnis"
 
-#: include/diaspora.php:2212
-msgid "Sharing notification from Diaspora network"
-msgstr "Freigabe-Benachrichtigung von Diaspora"
+#: include/nav.php:155
+msgid "People directory"
+msgstr "Nutzerverzeichnis"
 
-#: include/diaspora.php:3169
-msgid "Attachments:"
-msgstr "Anhänge:"
+#: include/nav.php:157
+msgid "Information"
+msgstr "Information"
 
-#: include/identity.php:45
-msgid "Requested account is not available."
-msgstr "Das angefragte Profil ist nicht vorhanden."
+#: include/nav.php:157
+msgid "Information about this friendica instance"
+msgstr "Informationen zu dieser Friendica Instanz"
 
-#: include/identity.php:54 mod/profile.php:22
-msgid "Requested profile is not available."
-msgstr "Das angefragte Profil ist nicht vorhanden."
+#: include/nav.php:161 view/theme/frio/theme.php:260
+msgid "Conversations from your friends"
+msgstr "Unterhaltungen Deiner Kontakte"
 
-#: include/identity.php:98 include/identity.php:321 include/identity.php:754
-msgid "Edit profile"
-msgstr "Profil bearbeiten"
+#: include/nav.php:162
+msgid "Network Reset"
+msgstr "Netzwerk zurücksetzen"
 
-#: include/identity.php:261
-msgid "Atom feed"
-msgstr "Atom-Feed"
+#: include/nav.php:162
+msgid "Load Network page with no filters"
+msgstr "Netzwerk-Seite ohne Filter laden"
 
-#: include/identity.php:292
-msgid "Manage/edit profiles"
-msgstr "Profile verwalten/editieren"
+#: include/nav.php:169
+msgid "Friend Requests"
+msgstr "Kontaktanfragen"
 
-#: include/identity.php:297 include/identity.php:323 mod/profiles.php:790
-msgid "Change profile photo"
-msgstr "Profilbild ändern"
+#: include/nav.php:172 mod/notifications.php:99
+msgid "Notifications"
+msgstr "Benachrichtigungen"
 
-#: include/identity.php:298 mod/profiles.php:791
-msgid "Create New Profile"
-msgstr "Neues Profil anlegen"
+#: include/nav.php:173
+msgid "See all notifications"
+msgstr "Alle Benachrichtigungen anzeigen"
 
-#: include/identity.php:308 mod/profiles.php:780
-msgid "Profile Image"
-msgstr "Profilbild"
+#: include/nav.php:174 mod/settings.php:903
+msgid "Mark as seen"
+msgstr "Als gelesen markieren"
 
-#: include/identity.php:311 mod/profiles.php:782
-msgid "visible to everybody"
-msgstr "sichtbar für jeden"
+#: include/nav.php:174
+msgid "Mark all system notifications seen"
+msgstr "Markiere alle Systembenachrichtigungen als gelesen"
 
-#: include/identity.php:312 mod/profiles.php:687 mod/profiles.php:783
-msgid "Edit visibility"
-msgstr "Sichtbarkeit bearbeiten"
+#: include/nav.php:178 mod/message.php:180 view/theme/frio/theme.php:262
+msgid "Messages"
+msgstr "Nachrichten"
 
-#: include/identity.php:340 include/identity.php:641 mod/directory.php:137
-#: mod/notifications.php:252
-msgid "Gender:"
-msgstr "Geschlecht:"
+#: include/nav.php:178 view/theme/frio/theme.php:262
+msgid "Private mail"
+msgstr "Private E-Mail"
 
-#: include/identity.php:343 include/identity.php:664 mod/directory.php:139
-msgid "Status:"
-msgstr "Status:"
+#: include/nav.php:179
+msgid "Inbox"
+msgstr "Eingang"
 
-#: include/identity.php:345 include/identity.php:681 mod/directory.php:141
-msgid "Homepage:"
-msgstr "Homepage:"
+#: include/nav.php:180
+msgid "Outbox"
+msgstr "Ausgang"
 
-#: include/identity.php:347 include/identity.php:701 mod/directory.php:143
-#: mod/notifications.php:248 mod/contacts.php:645
-msgid "About:"
-msgstr "Über:"
+#: include/nav.php:181 mod/message.php:19
+msgid "New Message"
+msgstr "Neue Nachricht"
 
-#: include/identity.php:349 mod/contacts.php:643
-msgid "XMPP:"
-msgstr "XMPP:"
+#: include/nav.php:184
+msgid "Manage"
+msgstr "Verwalten"
 
-#: include/identity.php:435 mod/notifications.php:260 mod/contacts.php:58
-msgid "Network:"
-msgstr "Netzwerk:"
+#: include/nav.php:184
+msgid "Manage other pages"
+msgstr "Andere Seiten verwalten"
 
-#: include/identity.php:464 include/identity.php:555
-msgid "g A l F d"
-msgstr "l, d. F G \\U\\h\\r"
+#: include/nav.php:187 mod/settings.php:84
+msgid "Delegations"
+msgstr "Delegationen"
 
-#: include/identity.php:465 include/identity.php:556
-msgid "F d"
-msgstr "d. F"
+#: include/nav.php:187 mod/delegate.php:130
+msgid "Delegate Page Management"
+msgstr "Delegiere das Management für die Seite"
 
-#: include/identity.php:517 include/identity.php:603
-msgid "[today]"
-msgstr "[heute]"
+#: include/nav.php:189 mod/newmember.php:15 mod/settings.php:114
+#: mod/admin.php:1716 mod/admin.php:1992 view/theme/frio/theme.php:263
+msgid "Settings"
+msgstr "Einstellungen"
 
-#: include/identity.php:529
-msgid "Birthday Reminders"
-msgstr "Geburtstagserinnerungen"
+#: include/nav.php:189 view/theme/frio/theme.php:263
+msgid "Account settings"
+msgstr "Kontoeinstellungen"
 
-#: include/identity.php:530
-msgid "Birthdays this week:"
-msgstr "Geburtstage diese Woche:"
+#: include/nav.php:192
+msgid "Manage/Edit Profiles"
+msgstr "Profile Verwalten/Editieren"
 
-#: include/identity.php:590
-msgid "[No description]"
-msgstr "[keine Beschreibung]"
+#: include/nav.php:195 view/theme/frio/theme.php:264
+msgid "Manage/edit friends and contacts"
+msgstr " Kontakte verwalten/editieren"
 
-#: include/identity.php:617
-msgid "Event Reminders"
-msgstr "Veranstaltungserinnerungen"
+#: include/nav.php:200 mod/admin.php:203
+msgid "Admin"
+msgstr "Administration"
 
-#: include/identity.php:618
-msgid "Events this week:"
-msgstr "Veranstaltungen diese Woche"
+#: include/nav.php:200
+msgid "Site setup and configuration"
+msgstr "Einstellungen der Seite und Konfiguration"
 
-#: include/identity.php:638 mod/settings.php:1287
-msgid "Full Name:"
-msgstr "Kompletter Name:"
+#: include/nav.php:203
+msgid "Navigation"
+msgstr "Navigation"
 
-#: include/identity.php:645
-msgid "j F, Y"
-msgstr "j F, Y"
+#: include/nav.php:203
+msgid "Site map"
+msgstr "Sitemap"
 
-#: include/identity.php:646
-msgid "j F"
-msgstr "j F"
+#: include/oembed.php:254
+msgid "Embedded content"
+msgstr "Eingebetteter Inhalt"
 
-#: include/identity.php:660
-msgid "Age:"
-msgstr "Alter:"
+#: include/oembed.php:262
+msgid "Embedding disabled"
+msgstr "Einbettungen deaktiviert"
 
-#: include/identity.php:673
-#, php-format
-msgid "for %1$d %2$s"
-msgstr "für %1$d %2$s"
+#: include/plugin.php:519 include/plugin.php:521
+msgid "Click here to upgrade."
+msgstr "Zum Upgraden hier klicken."
 
-#: include/identity.php:677 mod/profiles.php:706
-msgid "Sexual Preference:"
-msgstr "Sexuelle Vorlieben:"
+#: include/plugin.php:528
+msgid "This action exceeds the limits set by your subscription plan."
+msgstr "Diese Aktion überschreitet die Obergrenze Deines Abonnements."
 
-#: include/identity.php:685 mod/profiles.php:733
-msgid "Hometown:"
-msgstr "Heimatort:"
+#: include/plugin.php:533
+msgid "This action is not available under your subscription plan."
+msgstr "Diese Aktion ist in Deinem Abonnement nicht verfügbar."
 
-#: include/identity.php:689 mod/notifications.php:250 mod/follow.php:139
-#: mod/contacts.php:647
-msgid "Tags:"
-msgstr "Tags:"
-
-#: include/identity.php:693 mod/profiles.php:734
-msgid "Political Views:"
-msgstr "Politische Ansichten:"
-
-#: include/identity.php:697
-msgid "Religion:"
-msgstr "Religion:"
-
-#: include/identity.php:705
-msgid "Hobbies/Interests:"
-msgstr "Hobbies/Interessen:"
-
-#: include/identity.php:709 mod/profiles.php:738
-msgid "Likes:"
-msgstr "Likes:"
-
-#: include/identity.php:713 mod/profiles.php:739
-msgid "Dislikes:"
-msgstr "Dislikes:"
-
-#: include/identity.php:717
-msgid "Contact information and Social Networks:"
-msgstr "Kontaktinformationen und Soziale Netzwerke:"
-
-#: include/identity.php:721
-msgid "Musical interests:"
-msgstr "Musikalische Interessen:"
-
-#: include/identity.php:725
-msgid "Books, literature:"
-msgstr "Literatur/Bücher:"
-
-#: include/identity.php:729
-msgid "Television:"
-msgstr "Fernsehen:"
-
-#: include/identity.php:733
-msgid "Film/dance/culture/entertainment:"
-msgstr "Filme/Tänze/Kultur/Unterhaltung:"
-
-#: include/identity.php:737
-msgid "Love/Romance:"
-msgstr "Liebesleben:"
-
-#: include/identity.php:741
-msgid "Work/employment:"
-msgstr "Arbeit/Beschäftigung:"
-
-#: include/identity.php:745
-msgid "School/education:"
-msgstr "Schule/Ausbildung:"
-
-#: include/identity.php:750
-msgid "Forums:"
-msgstr "Foren:"
-
-#: include/identity.php:759 mod/events.php:509
-msgid "Basic"
-msgstr "Allgemein"
-
-#: include/identity.php:760 mod/events.php:510 mod/contacts.php:883
-#: mod/admin.php:1149
-msgid "Advanced"
-msgstr "Erweitert"
-
-#: include/identity.php:786 mod/follow.php:147 mod/contacts.php:849
-msgid "Status Messages and Posts"
-msgstr "Statusnachrichten und Beiträge"
-
-#: include/identity.php:794 mod/contacts.php:857
-msgid "Profile Details"
-msgstr "Profildetails"
-
-#: include/identity.php:802 mod/photos.php:95
-msgid "Photo Albums"
-msgstr "Fotoalben"
-
-#: include/identity.php:841 mod/notes.php:49
-msgid "Personal Notes"
-msgstr "Persönliche Notizen"
-
-#: include/identity.php:844
-msgid "Only You Can See This"
-msgstr "Nur Du kannst das sehen"
-
-#: include/items.php:1702 mod/dfrn_confirm.php:738 mod/dfrn_request.php:759
-msgid "[Name Withheld]"
-msgstr "[Name unterdrückt]"
-
-#: include/items.php:2078 mod/notice.php:17 mod/viewsrc.php:16
-#: mod/admin.php:256 mod/admin.php:1655 mod/admin.php:1906 mod/display.php:121
-#: mod/display.php:290 mod/display.php:498
-msgid "Item not found."
-msgstr "Beitrag nicht gefunden."
-
-#: include/items.php:2121
-msgid "Do you really want to delete this item?"
-msgstr "Möchtest Du wirklich dieses Item löschen?"
-
-#: include/items.php:2123 mod/api.php:107 mod/message.php:208
-#: mod/suggest.php:31 mod/dfrn_request.php:880 mod/follow.php:115
-#: mod/profiles.php:643 mod/profiles.php:646 mod/profiles.php:673
-#: mod/register.php:248 mod/contacts.php:455 mod/settings.php:1172
-#: mod/settings.php:1178 mod/settings.php:1185 mod/settings.php:1189
-#: mod/settings.php:1194 mod/settings.php:1199 mod/settings.php:1204
-#: mod/settings.php:1209 mod/settings.php:1235 mod/settings.php:1236
-#: mod/settings.php:1237 mod/settings.php:1238 mod/settings.php:1239
-msgid "Yes"
-msgstr "Ja"
-
-#: include/items.php:2262 mod/allfriends.php:14 mod/api.php:28 mod/api.php:33
-#: mod/attach.php:35 mod/cal.php:301 mod/common.php:20 mod/crepair.php:105
-#: mod/delegate.php:14 mod/dfrn_confirm.php:63 mod/editpost.php:12
-#: mod/fsuggest.php:80 mod/group.php:20 mod/manage.php:103 mod/message.php:48
-#: mod/message.php:173 mod/mood.php:116 mod/nogroup.php:29 mod/notes.php:25
-#: mod/notifications.php:73 mod/ostatus_subscribe.php:11 mod/photos.php:168
-#: mod/photos.php:1111 mod/poke.php:155 mod/repair_ostatus.php:11
-#: mod/suggest.php:60 mod/viewcontacts.php:49 mod/wall_attach.php:69
-#: mod/wall_attach.php:72 mod/wall_upload.php:101 mod/wall_upload.php:104
-#: mod/wallmessage.php:11 mod/wallmessage.php:35 mod/wallmessage.php:75
-#: mod/wallmessage.php:99 mod/regmod.php:106 mod/uimport.php:26
-#: mod/dirfind.php:15 mod/events.php:188 mod/follow.php:13 mod/follow.php:76
-#: mod/follow.php:160 mod/profile_photo.php:19 mod/profile_photo.php:179
-#: mod/profile_photo.php:190 mod/profile_photo.php:203 mod/profiles.php:172
-#: mod/profiles.php:610 mod/register.php:45 mod/contacts.php:363
-#: mod/invite.php:17 mod/invite.php:105 mod/settings.php:24
-#: mod/settings.php:132 mod/settings.php:669 mod/display.php:495
-#: mod/item.php:197 mod/item.php:209 mod/network.php:7 index.php:410
-msgid "Permission denied."
-msgstr "Zugriff verweigert."
-
-#: include/items.php:2379
-msgid "Archives"
-msgstr "Archiv"
-
-#: include/network.php:700
-msgid "view full size"
-msgstr "Volle Größe anzeigen"
-
-#: include/ostatus.php:1950
-#, php-format
-msgid "%s is now following %s."
-msgstr "%s folgt nun %s"
-
-#: include/ostatus.php:1951
-msgid "following"
-msgstr "folgen"
-
-#: include/ostatus.php:1954
-#, php-format
-msgid "%s stopped following %s."
-msgstr "%s hat aufgehört %s zu folgen"
-
-#: include/ostatus.php:1955
-msgid "stopped following"
-msgstr "wird nicht mehr gefolgt"
-
-#: include/plugin.php:518 include/plugin.php:520
-msgid "Click here to upgrade."
-msgstr "Zum Upgraden hier klicken."
-
-#: include/plugin.php:527
-msgid "This action exceeds the limits set by your subscription plan."
-msgstr "Diese Aktion überschreitet die Obergrenze Deines Abonnements."
-
-#: include/plugin.php:532
-msgid "This action is not available under your subscription plan."
-msgstr "Diese Aktion ist in Deinem Abonnement nicht verfügbar."
-
-#: include/security.php:63
+#: include/security.php:64
 msgid "Welcome "
 msgstr "Willkommen "
 
-#: include/security.php:64
+#: include/security.php:65
 msgid "Please upload a profile photo."
 msgstr "Bitte lade ein Profilbild hoch."
 
-#: include/security.php:66
+#: include/security.php:67
 msgid "Welcome back "
 msgstr "Willkommen zurück "
 
-#: include/security.php:423
+#: include/security.php:424
 msgid ""
 "The form security token was not correct. This probably happened because the "
 "form has been opened for too long (>3 hours) before submitting it."
 msgstr "Das Sicherheitsmerkmal war nicht korrekt. Das passiert meistens wenn das Formular vor dem Absenden zu lange geöffnet war (länger als 3 Stunden)."
 
-#: include/text.php:314
+#: include/text.php:315
 msgid "newer"
 msgstr "neuer"
 
-#: include/text.php:315
+#: include/text.php:316
 msgid "older"
 msgstr "älter"
 
-#: include/text.php:320
+#: include/text.php:321
 msgid "first"
 msgstr "erste"
 
-#: include/text.php:321
+#: include/text.php:322
 msgid "prev"
 msgstr "vorige"
 
-#: include/text.php:355
+#: include/text.php:356
 msgid "next"
 msgstr "nächste"
 
-#: include/text.php:356
+#: include/text.php:357
 msgid "last"
 msgstr "letzte"
 
-#: include/text.php:410
+#: include/text.php:411
 msgid "Loading more entries..."
 msgstr "lade weitere Einträge..."
 
-#: include/text.php:411
+#: include/text.php:412
 msgid "The end"
 msgstr "Das Ende"
 
-#: include/text.php:964
+#: include/text.php:965
 msgid "No contacts"
 msgstr "Keine Kontakte"
 
-#: include/text.php:988
+#: include/text.php:989
 #, php-format
 msgid "%d Contact"
 msgid_plural "%d Contacts"
 msgstr[0] "%d Kontakt"
 msgstr[1] "%d Kontakte"
 
-#: include/text.php:1001
+#: include/text.php:1002
 msgid "View Contacts"
 msgstr "Kontakte anzeigen"
 
-#: include/text.php:1091 mod/editpost.php:101 mod/filer.php:32
-#: mod/notes.php:64
+#: include/text.php:1092 mod/filer.php:32 mod/notes.php:64
+#: mod/editpost.php:102
 msgid "Save"
 msgstr "Speichern"
 
-#: include/text.php:1152
+#: include/text.php:1153
 msgid "poke"
 msgstr "anstupsen"
 
-#: include/text.php:1152
+#: include/text.php:1153
 msgid "poked"
 msgstr "stupste"
 
-#: include/text.php:1153
+#: include/text.php:1154
 msgid "ping"
 msgstr "anpingen"
 
-#: include/text.php:1153
+#: include/text.php:1154
 msgid "pinged"
 msgstr "pingte"
 
-#: include/text.php:1154
+#: include/text.php:1155
 msgid "prod"
 msgstr "knuffen"
 
-#: include/text.php:1154
+#: include/text.php:1155
 msgid "prodded"
 msgstr "knuffte"
 
-#: include/text.php:1155
+#: include/text.php:1156
 msgid "slap"
 msgstr "ohrfeigen"
 
-#: include/text.php:1155
+#: include/text.php:1156
 msgid "slapped"
 msgstr "ohrfeigte"
 
-#: include/text.php:1156
+#: include/text.php:1157
 msgid "finger"
 msgstr "befummeln"
 
-#: include/text.php:1156
+#: include/text.php:1157
 msgid "fingered"
 msgstr "befummelte"
 
-#: include/text.php:1157
+#: include/text.php:1158
 msgid "rebuff"
 msgstr "eine Abfuhr erteilen"
 
-#: include/text.php:1157
+#: include/text.php:1158
 msgid "rebuffed"
 msgstr "abfuhrerteilte"
 
-#: include/text.php:1171
+#: include/text.php:1172
 msgid "happy"
 msgstr "glücklich"
 
-#: include/text.php:1172
+#: include/text.php:1173
 msgid "sad"
 msgstr "traurig"
 
-#: include/text.php:1173
+#: include/text.php:1174
 msgid "mellow"
 msgstr "sanft"
 
-#: include/text.php:1174
+#: include/text.php:1175
 msgid "tired"
 msgstr "müde"
 
-#: include/text.php:1175
+#: include/text.php:1176
 msgid "perky"
 msgstr "frech"
 
-#: include/text.php:1176
+#: include/text.php:1177
 msgid "angry"
 msgstr "sauer"
 
-#: include/text.php:1177
+#: include/text.php:1178
 msgid "stupified"
 msgstr "verblüfft"
 
-#: include/text.php:1178
+#: include/text.php:1179
 msgid "puzzled"
 msgstr "verwirrt"
 
-#: include/text.php:1179
+#: include/text.php:1180
 msgid "interested"
 msgstr "interessiert"
 
-#: include/text.php:1180
+#: include/text.php:1181
 msgid "bitter"
 msgstr "verbittert"
 
-#: include/text.php:1181
+#: include/text.php:1182
 msgid "cheerful"
 msgstr "fröhlich"
 
-#: include/text.php:1182
+#: include/text.php:1183
 msgid "alive"
 msgstr "lebendig"
 
-#: include/text.php:1183
+#: include/text.php:1184
 msgid "annoyed"
 msgstr "verärgert"
 
-#: include/text.php:1184
+#: include/text.php:1185
 msgid "anxious"
 msgstr "unruhig"
 
-#: include/text.php:1185
+#: include/text.php:1186
 msgid "cranky"
 msgstr "schrullig"
 
-#: include/text.php:1186
+#: include/text.php:1187
 msgid "disturbed"
 msgstr "verstört"
 
-#: include/text.php:1187
+#: include/text.php:1188
 msgid "frustrated"
 msgstr "frustriert"
 
-#: include/text.php:1188
+#: include/text.php:1189
 msgid "motivated"
 msgstr "motiviert"
 
-#: include/text.php:1189
+#: include/text.php:1190
 msgid "relaxed"
 msgstr "entspannt"
 
-#: include/text.php:1190
+#: include/text.php:1191
 msgid "surprised"
 msgstr "überrascht"
 
-#: include/text.php:1408 mod/videos.php:388
+#: include/text.php:1408 mod/videos.php:389
 msgid "View Video"
 msgstr "Video ansehen"
 
@@ -3068,396 +2734,512 @@ msgstr "Video ansehen"
 msgid "bytes"
 msgstr "Byte"
 
-#: include/text.php:1466 include/text.php:1477
+#: include/text.php:1460 include/text.php:1471
 msgid "Click to open/close"
 msgstr "Zum öffnen/schließen klicken"
 
-#: include/text.php:1609
+#: include/text.php:1603
 msgid "View on separate page"
 msgstr "Auf separater Seite ansehen"
 
-#: include/text.php:1610
+#: include/text.php:1604
 msgid "view on separate page"
 msgstr "auf separater Seite ansehen"
 
-#: include/text.php:1895
+#: include/text.php:1889
 msgid "activity"
 msgstr "Aktivität"
 
-#: include/text.php:1897 mod/content.php:624 object/Item.php:418
-#: object/Item.php:430
+#: include/text.php:1891 mod/content.php:625 object/Item.php:416
+#: object/Item.php:428
 msgid "comment"
 msgid_plural "comments"
 msgstr[0] "Kommentar"
 msgstr[1] "Kommentare"
 
-#: include/text.php:1900
+#: include/text.php:1894
 msgid "post"
 msgstr "Beitrag"
 
-#: include/text.php:2066
+#: include/text.php:2060
 msgid "Item filed"
 msgstr "Beitrag abgelegt"
 
-#: include/uimport.php:83
+#: include/uimport.php:84
 msgid "Error decoding account file"
 msgstr "Fehler beim Verarbeiten der Account Datei"
 
-#: include/uimport.php:89
+#: include/uimport.php:90
 msgid "Error! No version data in file! This is not a Friendica account file?"
 msgstr "Fehler! Keine Versionsdaten in der Datei! Ist das wirklich eine Friendica Account Datei?"
 
-#: include/uimport.php:106 include/uimport.php:117
+#: include/uimport.php:107 include/uimport.php:118
 msgid "Error! Cannot check nickname"
 msgstr "Fehler! Konnte den Nickname nicht überprüfen."
 
-#: include/uimport.php:110 include/uimport.php:121
+#: include/uimport.php:111 include/uimport.php:122
 #, php-format
 msgid "User '%s' already exists on this server!"
 msgstr "Nutzer '%s' existiert bereits auf diesem Server!"
 
-#: include/uimport.php:143
+#: include/uimport.php:144
 msgid "User creation error"
 msgstr "Fehler beim Anlegen des Nutzeraccounts aufgetreten"
 
-#: include/uimport.php:164
+#: include/uimport.php:165
 msgid "User profile creation error"
 msgstr "Fehler beim Anlegen des Nutzerkontos"
 
-#: include/uimport.php:213
+#: include/uimport.php:214
 #, php-format
 msgid "%d contact not imported"
 msgid_plural "%d contacts not imported"
 msgstr[0] "%d Kontakt nicht importiert"
 msgstr[1] "%d Kontakte nicht importiert"
 
-#: include/uimport.php:279
+#: include/uimport.php:280
 msgid "Done. You can now login with your username and password"
 msgstr "Erledigt. Du kannst Dich jetzt mit Deinem Nutzernamen und Passwort anmelden"
 
-#: mod/allfriends.php:48
-msgid "No friends to display."
-msgstr "Keine Kontakte zum Anzeigen."
+#: include/user.php:41 mod/settings.php:373
+msgid "Passwords do not match. Password unchanged."
+msgstr "Die Passwörter stimmen nicht überein. Das Passwort bleibt unverändert."
 
-#: mod/api.php:78 mod/api.php:104
-msgid "Authorize application connection"
-msgstr "Verbindung der Applikation autorisieren"
+#: include/user.php:50
+msgid "An invitation is required."
+msgstr "Du benötigst eine Einladung."
 
-#: mod/api.php:79
-msgid "Return to your app and insert this Securty Code:"
-msgstr "Gehe zu Deiner Anwendung zurück und trage dort folgenden Sicherheitscode ein:"
+#: include/user.php:55
+msgid "Invitation could not be verified."
+msgstr "Die Einladung konnte nicht überprüft werden."
 
-#: mod/api.php:91
-msgid "Please login to continue."
-msgstr "Bitte melde Dich an um fortzufahren."
+#: include/user.php:63
+msgid "Invalid OpenID url"
+msgstr "Ungültige OpenID URL"
 
-#: mod/api.php:106
-msgid ""
-"Do you want to authorize this application to access your posts and contacts,"
-" and/or create new posts for you?"
-msgstr "Möchtest Du dieser Anwendung den Zugriff auf Deine Beiträge und Kontakte, sowie das Erstellen neuer Beiträge in Deinem Namen gestatten?"
+#: include/user.php:84
+msgid "Please enter the required information."
+msgstr "Bitte trage die erforderlichen Informationen ein."
 
-#: mod/api.php:108 mod/dfrn_request.php:880 mod/follow.php:115
-#: mod/profiles.php:643 mod/profiles.php:647 mod/profiles.php:673
-#: mod/register.php:249 mod/settings.php:1172 mod/settings.php:1178
-#: mod/settings.php:1185 mod/settings.php:1189 mod/settings.php:1194
-#: mod/settings.php:1199 mod/settings.php:1204 mod/settings.php:1209
-#: mod/settings.php:1235 mod/settings.php:1236 mod/settings.php:1237
-#: mod/settings.php:1238 mod/settings.php:1239
-msgid "No"
-msgstr "Nein"
+#: include/user.php:98
+msgid "Please use a shorter name."
+msgstr "Bitte verwende einen kürzeren Namen."
 
-#: mod/apps.php:9 index.php:257
-msgid "You must be logged in to use addons. "
-msgstr "Sie müssen angemeldet sein um Addons benutzen zu können."
+#: include/user.php:100
+msgid "Name too short."
+msgstr "Der Name ist zu kurz."
 
-#: mod/apps.php:14
-msgid "Applications"
-msgstr "Anwendungen"
+#: include/user.php:108
+msgid "That doesn't appear to be your full (First Last) name."
+msgstr "Das scheint nicht Dein kompletter Name (Vor- und Nachname) zu sein."
 
-#: mod/apps.php:17
-msgid "No installed applications."
-msgstr "Keine Applikationen installiert."
+#: include/user.php:113
+msgid "Your email domain is not among those allowed on this site."
+msgstr "Die Domain Deiner E-Mail Adresse ist auf dieser Seite nicht erlaubt."
 
-#: mod/attach.php:10
-msgid "Item not available."
-msgstr "Beitrag nicht verfügbar."
+#: include/user.php:116
+msgid "Not a valid email address."
+msgstr "Keine gültige E-Mail-Adresse."
 
-#: mod/attach.php:22
-msgid "Item was not found."
-msgstr "Beitrag konnte nicht gefunden werden."
+#: include/user.php:129
+msgid "Cannot use that email."
+msgstr "Konnte diese E-Mail-Adresse nicht verwenden."
 
-#: mod/babel.php:18
-msgid "Source (bbcode) text:"
-msgstr "Quelle (bbcode) Text:"
+#: include/user.php:135
+msgid "Your \"nickname\" can only contain \"a-z\", \"0-9\" and \"_\"."
+msgstr "Dein Spitzname darf nur aus Buchstaben und Zahlen (\"a-z\",\"0-9\" und \"_\") bestehen."
 
-#: mod/babel.php:25
-msgid "Source (Diaspora) text to convert to BBcode:"
-msgstr "Eingabe (Diaspora) nach BBCode zu konvertierender Text:"
+#: include/user.php:142 include/user.php:230
+msgid "Nickname is already registered. Please choose another."
+msgstr "Dieser Spitzname ist bereits vergeben. Bitte wähle einen anderen."
 
-#: mod/babel.php:33
-msgid "Source input: "
-msgstr "Originaltext:"
+#: include/user.php:152
+msgid ""
+"Nickname was once registered here and may not be re-used. Please choose "
+"another."
+msgstr "Dieser Spitzname ist bereits vergeben. Bitte wähle einen anderen."
 
-#: mod/babel.php:37
-msgid "bb2html (raw HTML): "
-msgstr "bb2html (reines HTML): "
+#: include/user.php:168
+msgid "SERIOUS ERROR: Generation of security keys failed."
+msgstr "FATALER FEHLER: Sicherheitsschlüssel konnten nicht erzeugt werden."
 
-#: mod/babel.php:41
-msgid "bb2html: "
-msgstr "bb2html: "
-
-#: mod/babel.php:45
-msgid "bb2html2bb: "
-msgstr "bb2html2bb: "
-
-#: mod/babel.php:49
-msgid "bb2md: "
-msgstr "bb2md: "
-
-#: mod/babel.php:53
-msgid "bb2md2html: "
-msgstr "bb2md2html: "
-
-#: mod/babel.php:57
-msgid "bb2dia2bb: "
-msgstr "bb2dia2bb: "
-
-#: mod/babel.php:61
-msgid "bb2md2html2bb: "
-msgstr "bb2md2html2bb: "
+#: include/user.php:216
+msgid "An error occurred during registration. Please try again."
+msgstr "Während der Anmeldung ist ein Fehler aufgetreten. Bitte versuche es noch einmal."
 
-#: mod/babel.php:67
-msgid "Source input (Diaspora format): "
-msgstr "Originaltext (Diaspora Format): "
+#: include/user.php:239 view/theme/duepuntozero/config.php:47
+msgid "default"
+msgstr "Standard"
 
-#: mod/babel.php:71
-msgid "diaspora2bb: "
-msgstr "diaspora2bb: "
+#: include/user.php:249
+msgid "An error occurred creating your default profile. Please try again."
+msgstr "Bei der Erstellung des Standardprofils ist ein Fehler aufgetreten. Bitte versuche es noch einmal."
 
-#: mod/bookmarklet.php:43
-msgid "The post was created"
-msgstr "Der Beitrag wurde angelegt"
+#: include/user.php:308 include/user.php:316 include/user.php:324
+#: include/api.php:3717 mod/profile_photo.php:75 mod/profile_photo.php:83
+#: mod/profile_photo.php:91 mod/profile_photo.php:215
+#: mod/profile_photo.php:310 mod/profile_photo.php:320 mod/photos.php:74
+#: mod/photos.php:190 mod/photos.php:777 mod/photos.php:1259
+#: mod/photos.php:1280 mod/photos.php:1866
+msgid "Profile Photos"
+msgstr "Profilbilder"
 
-#: mod/cal.php:145 mod/display.php:347 mod/profile.php:156
-msgid "Access to this profile has been restricted."
-msgstr "Der Zugriff zu diesem Profil wurde eingeschränkt."
+#: include/user.php:399
+#, php-format
+msgid ""
+"\n"
+"\t\tDear %1$s,\n"
+"\t\t\tThank you for registering at %2$s. Your account is pending for approval by the administrator.\n"
+"\t"
+msgstr "\nHallo %1$s,\n\ndanke für Deine Registrierung auf %2$s. Dein Account wurde muss noch vom Admin des Knotens geprüft werden."
 
-#: mod/cal.php:273 mod/events.php:378
-msgid "View"
-msgstr "Ansehen"
+#: include/user.php:409
+#, php-format
+msgid "Registration at %s"
+msgstr "Registrierung als %s"
 
-#: mod/cal.php:274 mod/events.php:380
-msgid "Previous"
-msgstr "Vorherige"
+#: include/user.php:419
+#, php-format
+msgid ""
+"\n"
+"\t\tDear %1$s,\n"
+"\t\t\tThank you for registering at %2$s. Your account has been created.\n"
+"\t"
+msgstr "\nHallo %1$s,\n\ndanke für Deine Registrierung auf %2$s. Dein Account wurde eingerichtet."
 
-#: mod/cal.php:275 mod/install.php:203 mod/events.php:381
-msgid "Next"
-msgstr "Nächste"
+#: include/user.php:423
+#, php-format
+msgid ""
+"\n"
+"\t\tThe login details are as follows:\n"
+"\t\t\tSite Location:\t%3$s\n"
+"\t\t\tLogin Name:\t%1$s\n"
+"\t\t\tPassword:\t%5$s\n"
+"\n"
+"\t\tYou may change your password from your account \"Settings\" page after logging\n"
+"\t\tin.\n"
+"\n"
+"\t\tPlease take a few moments to review the other account settings on that page.\n"
+"\n"
+"\t\tYou may also wish to add some basic information to your default profile\n"
+"\t\t(on the \"Profiles\" page) so that other people can easily find you.\n"
+"\n"
+"\t\tWe recommend setting your full name, adding a profile photo,\n"
+"\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n"
+"\t\tperhaps what country you live in; if you do not wish to be more specific\n"
+"\t\tthan that.\n"
+"\n"
+"\t\tWe fully respect your right to privacy, and none of these items are necessary.\n"
+"\t\tIf you are new and do not know anybody here, they may help\n"
+"\t\tyou to make some new and interesting friends.\n"
+"\n"
+"\n"
+"\t\tThank you and welcome to %2$s."
+msgstr "\nDie Anmelde-Details sind die folgenden:\n\tAdresse der Seite:\t%3$s\n\tBenutzernamename:\t%1$s\n\tPasswort:\t%5$s\n\nDu kannst Dein Passwort unter \"Einstellungen\" ändern, sobald Du Dich\nangemeldet hast.\n\nBitte nimm Dir ein paar Minuten um die anderen Einstellungen auf dieser\nSeite zu kontrollieren.\n\nEventuell magst Du ja auch einige Informationen über Dich in Deinem\nProfil veröffentlichen, damit andere Leute Dich einfacher finden können.\nBearbeite hierfür einfach Dein Standard-Profil (über die Profil-Seite).\n\nWir empfehlen Dir, Deinen kompletten Namen anzugeben und ein zu Dir\npassendes Profilbild zu wählen, damit Dich alte Bekannte wieder finden.\nAußerdem ist es nützlich, wenn Du auf Deinem Profil Schlüsselwörter\nangibst. Das erleichtert es, Leute zu finden, die Deine Interessen teilen.\n\nWir respektieren Deine Privatsphäre - keine dieser Angaben ist nötig.\nWenn Du neu im Netzwerk bist und noch niemanden kennst, dann können sie\nallerdings dabei helfen, neue und interessante Kontakte zu knüpfen.\n\nDanke für Deine Aufmerksamkeit und willkommen auf %2$s."
 
-#: mod/cal.php:284 mod/events.php:390
-msgid "list"
-msgstr "Liste"
+#: include/user.php:455 mod/admin.php:1406
+#, php-format
+msgid "Registration details for %s"
+msgstr "Details der Registration von %s"
 
-#: mod/cal.php:294
-msgid "User not found"
-msgstr "Nutzer nicht gefunden"
+#: include/Photo.php:1008 include/Photo.php:1024 include/Photo.php:1032
+#: include/Photo.php:1057 include/message.php:138 mod/item.php:469
+#: mod/wall_upload.php:250
+msgid "Wall Photos"
+msgstr "Pinnwand-Bilder"
 
-#: mod/cal.php:310
-msgid "This calendar format is not supported"
-msgstr "Dieses Kalenderformat wird nicht unterstützt."
+#: include/dfrn.php:1331
+#, php-format
+msgid "%s\\'s birthday"
+msgstr "%ss Geburtstag"
 
-#: mod/cal.php:312
-msgid "No exportable data found"
-msgstr "Keine exportierbaren Daten gefunden"
+#: include/message.php:15 include/message.php:161
+msgid "[no subject]"
+msgstr "[kein Betreff]"
 
-#: mod/cal.php:327
-msgid "calendar"
-msgstr "Kalender"
+#: include/photos.php:57 include/photos.php:66 mod/photos.php:190
+#: mod/photos.php:1126 mod/photos.php:1259 mod/photos.php:1280
+#: mod/photos.php:1842 mod/photos.php:1856 mod/fbrowser.php:43
+#: mod/fbrowser.php:65
+msgid "Contact Photos"
+msgstr "Kontaktbilder"
 
-#: mod/common.php:93
-msgid "No contacts in common."
-msgstr "Keine gemeinsamen Kontakte."
+#: include/Contact.php:463
+msgid "Drop Contact"
+msgstr "Kontakt löschen"
 
-#: mod/common.php:143 mod/contacts.php:876
-msgid "Common Friends"
-msgstr "Gemeinsame Kontakte"
+#: include/Contact.php:841
+msgid "Organisation"
+msgstr "Organisation"
 
-#: mod/content.php:120 mod/network.php:490
-msgid "No such group"
-msgstr "Es gibt keine solche Gruppe"
+#: include/Contact.php:844
+msgid "News"
+msgstr "Nachrichten"
 
-#: mod/content.php:131 mod/group.php:214 mod/network.php:517
-msgid "Group is empty"
-msgstr "Gruppe ist leer"
+#: include/Contact.php:847
+msgid "Forum"
+msgstr "Forum"
 
-#: mod/content.php:136 mod/network.php:521
+#: include/api.php:1103
 #, php-format
-msgid "Group: %s"
-msgstr "Gruppe: %s"
+msgid "Daily posting limit of %d posts reached. The post was rejected."
+msgstr "Das tägliche Nachrichtenlimit von %d Nachrichten wurde erreicht. Die Nachtricht wurde verworfen."
 
-#: mod/content.php:326 object/Item.php:96
-msgid "This entry was edited"
-msgstr "Dieser Beitrag wurde bearbeitet."
+#: include/api.php:1124
+#, php-format
+msgid "Weekly posting limit of %d posts reached. The post was rejected."
+msgstr "Das wöchentliche Nachrichtenlimit von %d Nachrichten wurde erreicht. Die Nachtricht wurde verworfen."
 
-#: mod/content.php:622 object/Item.php:416
+#: include/api.php:1145
 #, php-format
-msgid "%d comment"
-msgid_plural "%d comments"
-msgstr[0] "%d Kommentar"
-msgstr[1] "%d Kommentare"
+msgid "Monthly posting limit of %d posts reached. The post was rejected."
+msgstr "Das monatliche Nachrichtenlimit von %d Nachrichten wurde erreicht. Die Nachtricht wurde verworfen."
 
-#: mod/content.php:639 mod/photos.php:1431 object/Item.php:117
-msgid "Private Message"
-msgstr "Private Nachricht"
+#: include/diaspora.php:2259
+msgid "Sharing notification from Diaspora network"
+msgstr "Freigabe-Benachrichtigung von Diaspora"
 
-#: mod/content.php:703 mod/photos.php:1627 object/Item.php:270
-msgid "I like this (toggle)"
-msgstr "Ich mag das (toggle)"
+#: include/diaspora.php:3226
+msgid "Attachments:"
+msgstr "Anhänge:"
 
-#: mod/content.php:703 object/Item.php:270
-msgid "like"
-msgstr "mag ich"
+#: include/follow.php:85 mod/dfrn_request.php:515
+msgid "Disallowed profile URL."
+msgstr "Nicht erlaubte Profil-URL."
 
-#: mod/content.php:704 mod/photos.php:1628 object/Item.php:271
-msgid "I don't like this (toggle)"
-msgstr "Ich mag das nicht (toggle)"
+#: include/follow.php:90 mod/dfrn_request.php:521 mod/friendica.php:116
+#: mod/admin.php:289 mod/admin.php:307
+msgid "Blocked domain"
+msgstr "Blockierte Daimain"
 
-#: mod/content.php:704 object/Item.php:271
-msgid "dislike"
-msgstr "mag ich nicht"
+#: include/follow.php:95
+msgid "Connect URL missing."
+msgstr "Connect-URL fehlt"
 
-#: mod/content.php:706 object/Item.php:274
-msgid "Share this"
-msgstr "Weitersagen"
+#: include/follow.php:123
+msgid ""
+"This site is not configured to allow communications with other networks."
+msgstr "Diese Seite ist so konfiguriert, dass keine Kommunikation mit anderen Netzwerken erfolgen kann."
 
-#: mod/content.php:706 object/Item.php:274
-msgid "share"
-msgstr "Teilen"
+#: include/follow.php:124 include/follow.php:138
+msgid "No compatible communication protocols or feeds were discovered."
+msgstr "Es wurden keine kompatiblen Kommunikationsprotokolle oder Feeds gefunden."
 
-#: mod/content.php:726 mod/photos.php:1645 mod/photos.php:1687
-#: mod/photos.php:1767 object/Item.php:701
-msgid "This is you"
-msgstr "Das bist Du"
+#: include/follow.php:136
+msgid "The profile address specified does not provide adequate information."
+msgstr "Die angegebene Profiladresse liefert unzureichende Informationen."
 
-#: mod/content.php:728 mod/content.php:951 mod/photos.php:1647
-#: mod/photos.php:1689 mod/photos.php:1769 object/Item.php:388
-#: object/Item.php:703
-msgid "Comment"
-msgstr "Kommentar"
+#: include/follow.php:141
+msgid "An author or name was not found."
+msgstr "Es wurde kein Autor oder Name gefunden."
 
-#: mod/content.php:729 mod/crepair.php:159 mod/fsuggest.php:109
-#: mod/install.php:244 mod/install.php:284 mod/localtime.php:46
-#: mod/manage.php:156 mod/message.php:340 mod/message.php:523 mod/mood.php:139
-#: mod/photos.php:1143 mod/photos.php:1273 mod/photos.php:1599
-#: mod/photos.php:1648 mod/photos.php:1690 mod/photos.php:1770
-#: mod/poke.php:204 mod/events.php:508 mod/profiles.php:684
-#: mod/contacts.php:588 mod/invite.php:149 object/Item.php:704
-#: view/theme/duepuntozero/config.php:64 view/theme/frio/config.php:67
-#: view/theme/quattro/config.php:70 view/theme/vier/config.php:113
-msgid "Submit"
-msgstr "Senden"
+#: include/follow.php:144
+msgid "No browser URL could be matched to this address."
+msgstr "Zu dieser Adresse konnte keine passende Browser URL gefunden werden."
 
-#: mod/content.php:730 object/Item.php:705
-msgid "Bold"
-msgstr "Fett"
+#: include/follow.php:147
+msgid ""
+"Unable to match @-style Identity Address with a known protocol or email "
+"contact."
+msgstr "Konnte die @-Adresse mit keinem der bekannten Protokolle oder Email-Kontakte abgleichen."
 
-#: mod/content.php:731 object/Item.php:706
-msgid "Italic"
-msgstr "Kursiv"
+#: include/follow.php:148
+msgid "Use mailto: in front of address to force email check."
+msgstr "Verwende mailto: vor der Email Adresse, um eine Überprüfung der E-Mail-Adresse zu erzwingen."
 
-#: mod/content.php:732 object/Item.php:707
-msgid "Underline"
-msgstr "Unterstrichen"
+#: include/follow.php:154
+msgid ""
+"The profile address specified belongs to a network which has been disabled "
+"on this site."
+msgstr "Die Adresse dieses Profils gehört zu einem Netzwerk, mit dem die Kommunikation auf dieser Seite ausgeschaltet wurde."
 
-#: mod/content.php:733 object/Item.php:708
-msgid "Quote"
-msgstr "Zitat"
+#: include/follow.php:159
+msgid ""
+"Limited profile. This person will be unable to receive direct/personal "
+"notifications from you."
+msgstr "Eingeschränktes Profil. Diese Person wird keine direkten/privaten Nachrichten von Dir erhalten können."
 
-#: mod/content.php:734 object/Item.php:709
-msgid "Code"
-msgstr "Code"
+#: include/follow.php:256
+msgid "Unable to retrieve contact information."
+msgstr "Konnte die Kontaktinformationen nicht empfangen."
 
-#: mod/content.php:735 object/Item.php:710
-msgid "Image"
-msgstr "Bild"
+#: include/items.php:1724 mod/dfrn_confirm.php:738 mod/dfrn_request.php:760
+msgid "[Name Withheld]"
+msgstr "[Name unterdrückt]"
 
-#: mod/content.php:736 object/Item.php:711
-msgid "Link"
-msgstr "Link"
+#: include/items.php:2100 mod/viewsrc.php:16 mod/notice.php:18
+#: mod/display.php:122 mod/display.php:291 mod/display.php:496
+#: mod/admin.php:257 mod/admin.php:1663 mod/admin.php:1914
+msgid "Item not found."
+msgstr "Beitrag nicht gefunden."
 
-#: mod/content.php:737 object/Item.php:712
-msgid "Video"
-msgstr "Video"
+#: include/items.php:2143
+msgid "Do you really want to delete this item?"
+msgstr "Möchtest Du wirklich dieses Item löschen?"
 
-#: mod/content.php:747 mod/settings.php:744 object/Item.php:122
-#: object/Item.php:124
-msgid "Edit"
-msgstr "Bearbeiten"
+#: include/items.php:2145 mod/api.php:107 mod/dfrn_request.php:881
+#: mod/follow.php:150 mod/message.php:207 mod/register.php:249
+#: mod/profiles.php:638 mod/profiles.php:641 mod/profiles.php:668
+#: mod/settings.php:1168 mod/settings.php:1174 mod/settings.php:1181
+#: mod/settings.php:1185 mod/settings.php:1190 mod/settings.php:1195
+#: mod/settings.php:1200 mod/settings.php:1205 mod/settings.php:1231
+#: mod/settings.php:1232 mod/settings.php:1233 mod/settings.php:1234
+#: mod/settings.php:1235 mod/suggest.php:32 mod/contacts.php:465
+msgid "Yes"
+msgstr "Ja"
 
-#: mod/content.php:773 object/Item.php:237
-msgid "add star"
-msgstr "markieren"
+#: include/items.php:2284 mod/api.php:28 mod/api.php:33 mod/attach.php:35
+#: mod/common.php:20 mod/crepair.php:105 mod/fsuggest.php:80
+#: mod/nogroup.php:29 mod/notes.php:25 mod/viewcontacts.php:49
+#: mod/uimport.php:26 mod/allfriends.php:15 mod/cal.php:302
+#: mod/dfrn_confirm.php:64 mod/dirfind.php:16 mod/editpost.php:13
+#: mod/events.php:189 mod/follow.php:14 mod/follow.php:55 mod/follow.php:118
+#: mod/group.php:21 mod/invite.php:18 mod/invite.php:106 mod/item.php:198
+#: mod/item.php:210 mod/manage.php:104 mod/message.php:49 mod/message.php:172
+#: mod/mood.php:117 mod/network.php:17 mod/notifications.php:74
+#: mod/ostatus_subscribe.php:12 mod/poke.php:156 mod/profile_photo.php:20
+#: mod/profile_photo.php:180 mod/profile_photo.php:191
+#: mod/profile_photo.php:204 mod/register.php:46 mod/regmod.php:107
+#: mod/repair_ostatus.php:12 mod/wall_upload.php:102 mod/wall_upload.php:105
+#: mod/wallmessage.php:12 mod/wallmessage.php:36 mod/wallmessage.php:76
+#: mod/wallmessage.php:100 mod/delegate.php:15 mod/display.php:493
+#: mod/photos.php:169 mod/photos.php:1112 mod/profiles.php:167
+#: mod/profiles.php:605 mod/settings.php:25 mod/settings.php:133
+#: mod/settings.php:665 mod/suggest.php:58 mod/wall_attach.php:69
+#: mod/wall_attach.php:72 mod/contacts.php:373 mod/unfollow.php:14
+#: mod/unfollow.php:57 mod/unfollow.php:90 index.php:411
+msgid "Permission denied."
+msgstr "Zugriff verweigert."
 
-#: mod/content.php:774 object/Item.php:238
-msgid "remove star"
-msgstr "Markierung entfernen"
+#: include/items.php:2401
+msgid "Archives"
+msgstr "Archiv"
 
-#: mod/content.php:775 object/Item.php:239
-msgid "toggle star status"
-msgstr "Markierung umschalten"
+#: include/network.php:704
+msgid "view full size"
+msgstr "Volle Größe anzeigen"
 
-#: mod/content.php:778 object/Item.php:242
-msgid "starred"
-msgstr "markiert"
+#: include/ostatus.php:1690
+#, php-format
+msgid "%s is now following %s."
+msgstr "%s folgt nun %s"
 
-#: mod/content.php:779 mod/content.php:801 object/Item.php:259
-msgid "add tag"
-msgstr "Tag hinzufügen"
+#: include/ostatus.php:1691
+msgid "following"
+msgstr "folgen"
 
-#: mod/content.php:790 object/Item.php:247
-msgid "ignore thread"
-msgstr "Thread ignorieren"
+#: include/ostatus.php:1694
+#, php-format
+msgid "%s stopped following %s."
+msgstr "%s hat aufgehört %s zu folgen"
 
-#: mod/content.php:791 object/Item.php:248
-msgid "unignore thread"
-msgstr "Thread nicht mehr ignorieren"
+#: include/ostatus.php:1695
+msgid "stopped following"
+msgstr "wird nicht mehr gefolgt"
 
-#: mod/content.php:792 object/Item.php:249
-msgid "toggle ignore status"
-msgstr "Ignoriert-Status ein-/ausschalten"
+#: mod/api.php:78 mod/api.php:104
+msgid "Authorize application connection"
+msgstr "Verbindung der Applikation autorisieren"
 
-#: mod/content.php:795 mod/ostatus_subscribe.php:75 object/Item.php:252
-msgid "ignored"
-msgstr "Ignoriert"
+#: mod/api.php:79
+msgid "Return to your app and insert this Securty Code:"
+msgstr "Gehe zu Deiner Anwendung zurück und trage dort folgenden Sicherheitscode ein:"
 
-#: mod/content.php:806 object/Item.php:141
-msgid "save to folder"
-msgstr "In Ordner speichern"
+#: mod/api.php:91
+msgid "Please login to continue."
+msgstr "Bitte melde Dich an um fortzufahren."
 
-#: mod/content.php:854 object/Item.php:211
-msgid "I will attend"
-msgstr "Ich werde teilnehmen"
+#: mod/api.php:106
+msgid ""
+"Do you want to authorize this application to access your posts and contacts,"
+" and/or create new posts for you?"
+msgstr "Möchtest Du dieser Anwendung den Zugriff auf Deine Beiträge und Kontakte, sowie das Erstellen neuer Beiträge in Deinem Namen gestatten?"
 
-#: mod/content.php:854 object/Item.php:211
-msgid "I will not attend"
-msgstr "Ich werde nicht teilnehmen"
+#: mod/api.php:108 mod/dfrn_request.php:881 mod/follow.php:150
+#: mod/register.php:250 mod/profiles.php:638 mod/profiles.php:642
+#: mod/profiles.php:668 mod/settings.php:1168 mod/settings.php:1174
+#: mod/settings.php:1181 mod/settings.php:1185 mod/settings.php:1190
+#: mod/settings.php:1195 mod/settings.php:1200 mod/settings.php:1205
+#: mod/settings.php:1231 mod/settings.php:1232 mod/settings.php:1233
+#: mod/settings.php:1234 mod/settings.php:1235
+msgid "No"
+msgstr "Nein"
 
-#: mod/content.php:854 object/Item.php:211
-msgid "I might attend"
-msgstr "Ich werde eventuell teilnehmen"
+#: mod/apps.php:9 index.php:258
+msgid "You must be logged in to use addons. "
+msgstr "Sie müssen angemeldet sein um Addons benutzen zu können."
 
-#: mod/content.php:918 object/Item.php:354
-msgid "to"
-msgstr "zu"
+#: mod/apps.php:14
+msgid "Applications"
+msgstr "Anwendungen"
 
-#: mod/content.php:919 object/Item.php:356
-msgid "Wall-to-Wall"
-msgstr "Wall-to-Wall"
+#: mod/apps.php:17
+msgid "No installed applications."
+msgstr "Keine Applikationen installiert."
 
-#: mod/content.php:920 object/Item.php:357
-msgid "via Wall-To-Wall:"
-msgstr "via Wall-To-Wall:"
+#: mod/attach.php:10
+msgid "Item not available."
+msgstr "Beitrag nicht verfügbar."
+
+#: mod/attach.php:22
+msgid "Item was not found."
+msgstr "Beitrag konnte nicht gefunden werden."
+
+#: mod/babel.php:18
+msgid "Source (bbcode) text:"
+msgstr "Quelle (bbcode) Text:"
+
+#: mod/babel.php:25
+msgid "Source (Diaspora) text to convert to BBcode:"
+msgstr "Eingabe (Diaspora) nach BBCode zu konvertierender Text:"
+
+#: mod/babel.php:33
+msgid "Source input: "
+msgstr "Originaltext:"
+
+#: mod/babel.php:37
+msgid "bb2html (raw HTML): "
+msgstr "bb2html (reines HTML): "
+
+#: mod/babel.php:41
+msgid "bb2html: "
+msgstr "bb2html: "
+
+#: mod/babel.php:45
+msgid "bb2html2bb: "
+msgstr "bb2html2bb: "
+
+#: mod/babel.php:49
+msgid "bb2md: "
+msgstr "bb2md: "
+
+#: mod/babel.php:53
+msgid "bb2md2html: "
+msgstr "bb2md2html: "
+
+#: mod/babel.php:57
+msgid "bb2dia2bb: "
+msgstr "bb2dia2bb: "
+
+#: mod/babel.php:61
+msgid "bb2md2html2bb: "
+msgstr "bb2md2html2bb: "
+
+#: mod/babel.php:67
+msgid "Source input (Diaspora format): "
+msgstr "Originaltext (Diaspora Format): "
+
+#: mod/babel.php:71
+msgid "diaspora2bb: "
+msgstr "diaspora2bb: "
+
+#: mod/common.php:93
+msgid "No contacts in common."
+msgstr "Keine gemeinsamen Kontakte."
+
+#: mod/common.php:143 mod/contacts.php:892
+msgid "Common Friends"
+msgstr "Gemeinsame Kontakte"
 
 #: mod/credits.php:19
 msgid "Credits"
@@ -3478,8 +3260,8 @@ msgstr "Einstellungen zum Kontakt angewandt."
 msgid "Contact update failed."
 msgstr "Konnte den Kontakt nicht aktualisieren."
 
-#: mod/crepair.php:119 mod/dfrn_confirm.php:128 mod/fsuggest.php:22
-#: mod/fsuggest.php:94
+#: mod/crepair.php:119 mod/fsuggest.php:22 mod/fsuggest.php:94
+#: mod/dfrn_confirm.php:129
 msgid "Contact not found."
 msgstr "Kontakt nicht gefunden."
 
@@ -3515,6 +3297,18 @@ msgstr "Zurück zum Kontakteditor"
 msgid "Refetch contact data"
 msgstr "Kontaktdaten neu laden"
 
+#: mod/crepair.php:159 mod/fsuggest.php:109 mod/content.php:730
+#: mod/events.php:509 mod/install.php:245 mod/install.php:285
+#: mod/invite.php:150 mod/localtime.php:47 mod/manage.php:157
+#: mod/message.php:338 mod/message.php:521 mod/mood.php:140 mod/poke.php:205
+#: mod/photos.php:1144 mod/photos.php:1274 mod/photos.php:1600
+#: mod/photos.php:1649 mod/photos.php:1691 mod/photos.php:1771
+#: mod/profiles.php:679 mod/contacts.php:604 object/Item.php:702
+#: view/theme/duepuntozero/config.php:65 view/theme/frio/config.php:68
+#: view/theme/quattro/config.php:71 view/theme/vier/config.php:114
+msgid "Submit"
+msgstr "Senden"
+
 #: mod/crepair.php:161
 msgid "Remote Self"
 msgstr "Entfernte Konten"
@@ -3529,8 +3323,8 @@ msgid ""
 "entries from this contact."
 msgstr "Markiere diesen Kontakt als remote_self (entferntes Konto), dies veranlasst Friendica alle Top-Level Beiträge dieses Kontakts an all Deine Kontakte zu senden."
 
-#: mod/crepair.php:170 mod/settings.php:684 mod/settings.php:710
-#: mod/admin.php:1580 mod/admin.php:1593 mod/admin.php:1606 mod/admin.php:1622
+#: mod/crepair.php:170 mod/settings.php:680 mod/settings.php:706
+#: mod/admin.php:1588 mod/admin.php:1601 mod/admin.php:1614 mod/admin.php:1630
 msgid "Name"
 msgstr "Name"
 
@@ -3566,3828 +3360,3817 @@ msgstr "Pull/Feed-URL"
 msgid "New photo from this URL"
 msgstr "Neues Foto von dieser URL"
 
-#: mod/delegate.php:103
-msgid "No potential page delegates located."
-msgstr "Keine potentiellen Bevollmächtigten für die Seite gefunden."
+#: mod/filer.php:31
+msgid "- select -"
+msgstr "- auswählen -"
 
-#: mod/delegate.php:134
-msgid ""
-"Delegates are able to manage all aspects of this account/page except for "
-"basic account settings. Please do not delegate your personal account to "
-"anybody that you do not trust completely."
-msgstr "Bevollmächtigte sind in der Lage, alle Aspekte dieses Kontos/dieser Seite zu verwalten, abgesehen von den Grundeinstellungen des Kontos. Bitte gib niemandem eine Bevollmächtigung für Deinen privaten Account, dem Du nicht absolut vertraust!"
+#: mod/fsuggest.php:65
+msgid "Friend suggestion sent."
+msgstr "Kontaktvorschlag gesendet."
 
-#: mod/delegate.php:135
-msgid "Existing Page Managers"
-msgstr "Vorhandene Seitenmanager"
+#: mod/fsuggest.php:99
+msgid "Suggest Friends"
+msgstr "Kontakte vorschlagen"
 
-#: mod/delegate.php:137
-msgid "Existing Page Delegates"
-msgstr "Vorhandene Bevollmächtigte für die Seite"
+#: mod/fsuggest.php:101
+#, php-format
+msgid "Suggest a friend for %s"
+msgstr "Schlage %s einen Kontakt vor"
 
-#: mod/delegate.php:139
-msgid "Potential Delegates"
-msgstr "Potentielle Bevollmächtigte"
+#: mod/lockview.php:33 mod/lockview.php:41
+msgid "Remote privacy information not available."
+msgstr "Entfernte Privatsphäreneinstellungen nicht verfügbar."
 
-#: mod/delegate.php:141 mod/tagrm.php:97
-msgid "Remove"
-msgstr "Entfernen"
+#: mod/lockview.php:50
+msgid "Visible to:"
+msgstr "Sichtbar für:"
 
-#: mod/delegate.php:142
-msgid "Add"
-msgstr "Hinzufügen"
+#: mod/maintenance.php:21
+msgid "System down for maintenance"
+msgstr "System zur Wartung abgeschaltet"
 
-#: mod/delegate.php:143
-msgid "No entries."
-msgstr "Keine Einträge."
+#: mod/newmember.php:7
+msgid "Welcome to Friendica"
+msgstr "Willkommen bei Friendica"
 
-#: mod/dfrn_confirm.php:72 mod/profiles.php:23 mod/profiles.php:139
-#: mod/profiles.php:186 mod/profiles.php:622
-msgid "Profile not found."
-msgstr "Profil nicht gefunden."
+#: mod/newmember.php:8
+msgid "New Member Checklist"
+msgstr "Checkliste für neue Mitglieder"
 
-#: mod/dfrn_confirm.php:129
+#: mod/newmember.php:10
 msgid ""
-"This may occasionally happen if contact was requested by both persons and it"
-" has already been approved."
-msgstr "Das kann passieren, wenn sich zwei Kontakte gegenseitig eingeladen haben und bereits einer angenommen wurde."
-
-#: mod/dfrn_confirm.php:246
-msgid "Response from remote site was not understood."
-msgstr "Antwort der Gegenstelle unverständlich."
+"We would like to offer some tips and links to help make your experience "
+"enjoyable. Click any item to visit the relevant page. A link to this page "
+"will be visible from your home page for two weeks after your initial "
+"registration and then will quietly disappear."
+msgstr "Wir möchten Dir einige Tipps und Links anbieten, die Dir helfen könnten, den Einstieg angenehmer zu machen. Klicke auf ein Element, um die entsprechende Seite zu besuchen. Ein Link zu dieser Seite hier bleibt für Dich an Deiner Pinnwand für zwei Wochen nach dem Registrierungsdatum sichtbar und wird dann verschwinden."
 
-#: mod/dfrn_confirm.php:255 mod/dfrn_confirm.php:260
-msgid "Unexpected response from remote site: "
-msgstr "Unerwartete Antwort der Gegenstelle: "
+#: mod/newmember.php:11
+msgid "Getting Started"
+msgstr "Einstieg"
 
-#: mod/dfrn_confirm.php:269
-msgid "Confirmation completed successfully."
-msgstr "Bestätigung erfolgreich abgeschlossen."
+#: mod/newmember.php:13
+msgid "Friendica Walk-Through"
+msgstr "Friendica Rundgang"
 
-#: mod/dfrn_confirm.php:271 mod/dfrn_confirm.php:285 mod/dfrn_confirm.php:292
-msgid "Remote site reported: "
-msgstr "Gegenstelle meldet: "
+#: mod/newmember.php:13
+msgid ""
+"On your <em>Quick Start</em> page - find a brief introduction to your "
+"profile and network tabs, make some new connections, and find some groups to"
+" join."
+msgstr "Auf der <em>Quick Start</em> Seite findest Du eine kurze Einleitung in die einzelnen Funktionen Deines Profils und die Netzwerk-Reiter, wo Du interessante Foren findest und neue Kontakte knüpfst."
 
-#: mod/dfrn_confirm.php:283
-msgid "Temporary failure. Please wait and try again."
-msgstr "Zeitweiser Fehler. Bitte warte einige Momente und versuche es dann noch einmal."
+#: mod/newmember.php:17
+msgid "Go to Your Settings"
+msgstr "Gehe zu deinen Einstellungen"
 
-#: mod/dfrn_confirm.php:290
-msgid "Introduction failed or was revoked."
-msgstr "Kontaktanfrage schlug fehl oder wurde zurückgezogen."
+#: mod/newmember.php:17
+msgid ""
+"On your <em>Settings</em> page -  change your initial password. Also make a "
+"note of your Identity Address. This looks just like an email address - and "
+"will be useful in making friends on the free social web."
+msgstr "Ändere bitte unter <em>Einstellungen</em> dein Passwort. Außerdem merke dir deine Identifikationsadresse. Diese sieht aus wie eine E-Mail-Adresse und wird benötigt, um Kontakte mit anderen im Friendica Netzwerk zu knüpfen.."
 
-#: mod/dfrn_confirm.php:420
-msgid "Unable to set contact photo."
-msgstr "Konnte das Bild des Kontakts nicht speichern."
+#: mod/newmember.php:18
+msgid ""
+"Review the other settings, particularly the privacy settings. An unpublished"
+" directory listing is like having an unlisted phone number. In general, you "
+"should probably publish your listing - unless all of your friends and "
+"potential friends know exactly how to find you."
+msgstr "Überprüfe die restlichen Einstellungen, insbesondere die Einstellungen zur Privatsphäre. Wenn Du Dein Profil nicht veröffentlichst, ist das als wenn Du Deine Telefonnummer nicht ins Telefonbuch einträgst. Im Allgemeinen solltest Du es veröffentlichen - außer all Deine Kontakte und potentiellen Kontakte wissen genau, wie sie Dich finden können."
 
-#: mod/dfrn_confirm.php:561
-#, php-format
-msgid "No user record found for '%s' "
-msgstr "Für '%s' wurde kein Nutzer gefunden"
+#: mod/newmember.php:22 mod/profile_photo.php:256 mod/profiles.php:698
+msgid "Upload Profile Photo"
+msgstr "Profilbild hochladen"
 
-#: mod/dfrn_confirm.php:571
-msgid "Our site encryption key is apparently messed up."
-msgstr "Der Verschlüsselungsschlüssel unserer Seite ist anscheinend nicht in Ordnung."
+#: mod/newmember.php:22
+msgid ""
+"Upload a profile photo if you have not done so already. Studies have shown "
+"that people with real photos of themselves are ten times more likely to make"
+" friends than people who do not."
+msgstr "Lade ein Profilbild hoch, falls Du es noch nicht getan hast. Studien haben gezeigt, dass es zehnmal wahrscheinlicher ist neue Kontakte zu finden, wenn Du ein Bild von Dir selbst verwendest, als wenn Du dies nicht tust."
 
-#: mod/dfrn_confirm.php:582
-msgid "Empty site URL was provided or URL could not be decrypted by us."
-msgstr "Leere URL für die Seite erhalten oder die URL konnte nicht entschlüsselt werden."
+#: mod/newmember.php:23
+msgid "Edit Your Profile"
+msgstr "Editiere dein Profil"
 
-#: mod/dfrn_confirm.php:604
-msgid "Contact record was not found for you on our site."
-msgstr "Für diesen Kontakt wurde auf unserer Seite kein Eintrag gefunden."
+#: mod/newmember.php:23
+msgid ""
+"Edit your <strong>default</strong> profile to your liking. Review the "
+"settings for hiding your list of friends and hiding the profile from unknown"
+" visitors."
+msgstr "Editiere Dein <strong>Standard</strong> Profil nach Deinen Vorlieben. Überprüfe die Einstellungen zum Verbergen Deiner Kontaktliste vor unbekannten Betrachtern des Profils."
 
-#: mod/dfrn_confirm.php:618
-#, php-format
-msgid "Site public key not available in contact record for URL %s."
-msgstr "Die Kontaktdaten für URL %s enthalten keinen Public Key für den Server."
+#: mod/newmember.php:24
+msgid "Profile Keywords"
+msgstr "Profil Schlüsselbegriffe"
 
-#: mod/dfrn_confirm.php:638
+#: mod/newmember.php:24
 msgid ""
-"The ID provided by your system is a duplicate on our system. It should work "
-"if you try again."
-msgstr "Die ID, die uns Dein System angeboten hat, ist hier bereits vergeben. Bitte versuche es noch einmal."
-
-#: mod/dfrn_confirm.php:649
-msgid "Unable to set your contact credentials on our system."
-msgstr "Deine Kontaktreferenzen konnten nicht in unserem System gespeichert werden."
-
-#: mod/dfrn_confirm.php:711
-msgid "Unable to update your contact profile details on our system"
-msgstr "Die Updates für Dein Profil konnten nicht gespeichert werden"
-
-#: mod/dfrn_confirm.php:783
-#, php-format
-msgid "%1$s has joined %2$s"
-msgstr "%1$s ist %2$s beigetreten"
-
-#: mod/directory.php:33 mod/photos.php:981 mod/videos.php:200
-#: mod/viewcontacts.php:39 mod/webfinger.php:10 mod/dfrn_request.php:804
-#: mod/probe.php:9 mod/search.php:96 mod/search.php:102 mod/community.php:17
-#: mod/display.php:217
-msgid "Public access denied."
-msgstr "Öffentlicher Zugriff verweigert."
-
-#: mod/directory.php:195 view/theme/vier/theme.php:193
-msgid "Global Directory"
-msgstr "Weltweites Verzeichnis"
-
-#: mod/directory.php:197
-msgid "Find on this site"
-msgstr "Auf diesem Server suchen"
-
-#: mod/directory.php:199
-msgid "Results for:"
-msgstr "Ergebnisse für:"
-
-#: mod/directory.php:201
-msgid "Site Directory"
-msgstr "Verzeichnis"
-
-#: mod/directory.php:208
-msgid "No entries (some entries may be hidden)."
-msgstr "Keine Einträge (einige Einträge könnten versteckt sein)."
-
-#: mod/editpost.php:19 mod/editpost.php:29
-msgid "Item not found"
-msgstr "Beitrag nicht gefunden"
-
-#: mod/editpost.php:34
-msgid "Edit post"
-msgstr "Beitrag bearbeiten"
-
-#: mod/fbrowser.php:134
-msgid "Files"
-msgstr "Dateien"
-
-#: mod/filer.php:31
-msgid "- select -"
-msgstr "- auswählen -"
-
-#: mod/friendica.php:69
-msgid "This is Friendica, version"
-msgstr "Dies ist Friendica, Version"
-
-#: mod/friendica.php:70
-msgid "running at web location"
-msgstr "die unter folgender Webadresse zu finden ist"
-
-#: mod/friendica.php:74
-msgid ""
-"Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn "
-"more about the Friendica project."
-msgstr "Bitte besuche <a href=\"http://friendica.com\">Friendica.com</a>, um mehr über das Friendica Projekt zu erfahren."
-
-#: mod/friendica.php:78
-msgid "Bug reports and issues: please visit"
-msgstr "Probleme oder Fehler gefunden? Bitte besuche"
-
-#: mod/friendica.php:78
-msgid "the bugtracker at github"
-msgstr "den Bugtracker auf github"
-
-#: mod/friendica.php:81
-msgid ""
-"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - "
-"dot com"
-msgstr "Vorschläge, Lob, Spenden usw.: E-Mail an \"Info\" at Friendica - dot com"
-
-#: mod/friendica.php:95
-msgid "Installed plugins/addons/apps:"
-msgstr "Installierte Plugins/Erweiterungen/Apps:"
-
-#: mod/friendica.php:109
-msgid "No installed plugins/addons/apps"
-msgstr "Keine Plugins/Erweiterungen/Apps installiert"
-
-#: mod/friendica.php:114
-msgid "On this server the following remote servers are blocked."
-msgstr "Auf diesem Server werden die folgenden entfernten Server blockiert."
-
-#: mod/friendica.php:115 mod/admin.php:289 mod/admin.php:307
-msgid "Reason for the block"
-msgstr "Begründung für die Blockierung"
-
-#: mod/fsuggest.php:65
-msgid "Friend suggestion sent."
-msgstr "Kontaktvorschlag gesendet."
-
-#: mod/fsuggest.php:99
-msgid "Suggest Friends"
-msgstr "Kontakte vorschlagen"
-
-#: mod/fsuggest.php:101
-#, php-format
-msgid "Suggest a friend for %s"
-msgstr "Schlage %s einen Kontakt vor"
-
-#: mod/group.php:30
-msgid "Group created."
-msgstr "Gruppe erstellt."
-
-#: mod/group.php:36
-msgid "Could not create group."
-msgstr "Konnte die Gruppe nicht erstellen."
-
-#: mod/group.php:50 mod/group.php:155
-msgid "Group not found."
-msgstr "Gruppe nicht gefunden."
-
-#: mod/group.php:64
-msgid "Group name changed."
-msgstr "Gruppenname geändert."
-
-#: mod/group.php:77 mod/profperm.php:22 index.php:409
-msgid "Permission denied"
-msgstr "Zugriff verweigert"
-
-#: mod/group.php:94
-msgid "Save Group"
-msgstr "Gruppe speichern"
-
-#: mod/group.php:99
-msgid "Create a group of contacts/friends."
-msgstr "Eine Kontaktgruppe anlegen."
-
-#: mod/group.php:124
-msgid "Group removed."
-msgstr "Gruppe entfernt."
-
-#: mod/group.php:126
-msgid "Unable to remove group."
-msgstr "Konnte die Gruppe nicht entfernen."
-
-#: mod/group.php:190
-msgid "Delete Group"
-msgstr "Gruppe löschen"
-
-#: mod/group.php:196
-msgid "Group Editor"
-msgstr "Gruppeneditor"
-
-#: mod/group.php:201
-msgid "Edit Group Name"
-msgstr "Gruppen Name bearbeiten"
-
-#: mod/group.php:211
-msgid "Members"
-msgstr "Mitglieder"
-
-#: mod/group.php:213 mod/contacts.php:705
-msgid "All Contacts"
-msgstr "Alle Kontakte"
-
-#: mod/group.php:227
-msgid "Remove Contact"
-msgstr "Kontakt löschen"
-
-#: mod/group.php:251
-msgid "Add Contact"
-msgstr "Kontakt hinzufügen"
-
-#: mod/group.php:263 mod/profperm.php:109
-msgid "Click on a contact to add or remove."
-msgstr "Klicke einen Kontakt an, um ihn hinzuzufügen oder zu entfernen"
-
-#: mod/hcard.php:13
-msgid "No profile"
-msgstr "Kein Profil"
-
-#: mod/home.php:41
-#, php-format
-msgid "Welcome to %s"
-msgstr "Willkommen zu %s"
-
-#: mod/install.php:108
-msgid "Friendica Communications Server - Setup"
-msgstr "Friendica-Server für soziale Netzwerke – Setup"
-
-#: mod/install.php:114
-msgid "Could not connect to database."
-msgstr "Verbindung zur Datenbank gescheitert."
-
-#: mod/install.php:118
-msgid "Could not create table."
-msgstr "Tabelle konnte nicht angelegt werden."
-
-#: mod/install.php:124
-msgid "Your Friendica site database has been installed."
-msgstr "Die Datenbank Deiner Friendicaseite wurde installiert."
-
-#: mod/install.php:129
-msgid ""
-"You may need to import the file \"database.sql\" manually using phpmyadmin "
-"or mysql."
-msgstr "Möglicherweise musst Du die Datei \"database.sql\" manuell mit phpmyadmin oder mysql importieren."
-
-#: mod/install.php:130 mod/install.php:202 mod/install.php:549
-msgid "Please see the file \"INSTALL.txt\"."
-msgstr "Lies bitte die \"INSTALL.txt\"."
-
-#: mod/install.php:142
-msgid "Database already in use."
-msgstr "Die Datenbank wird bereits verwendet."
-
-#: mod/install.php:199
-msgid "System check"
-msgstr "Systemtest"
-
-#: mod/install.php:204
-msgid "Check again"
-msgstr "Noch einmal testen"
-
-#: mod/install.php:223
-msgid "Database connection"
-msgstr "Datenbankverbindung"
-
-#: mod/install.php:224
-msgid ""
-"In order to install Friendica we need to know how to connect to your "
-"database."
-msgstr "Um Friendica installieren zu können, müssen wir wissen, wie wir mit Deiner Datenbank Kontakt aufnehmen können."
-
-#: mod/install.php:225
-msgid ""
-"Please contact your hosting provider or site administrator if you have "
-"questions about these settings."
-msgstr "Bitte kontaktiere den Hosting Provider oder den Administrator der Seite, falls Du Fragen zu diesen Einstellungen haben solltest."
-
-#: mod/install.php:226
-msgid ""
-"The database you specify below should already exist. If it does not, please "
-"create it before continuing."
-msgstr "Die Datenbank, die Du unten angibst, sollte bereits existieren. Ist dies noch nicht der Fall, erzeuge sie bitte bevor Du mit der Installation fortfährst."
-
-#: mod/install.php:230
-msgid "Database Server Name"
-msgstr "Datenbank-Server"
-
-#: mod/install.php:231
-msgid "Database Login Name"
-msgstr "Datenbank-Nutzer"
-
-#: mod/install.php:232
-msgid "Database Login Password"
-msgstr "Datenbank-Passwort"
-
-#: mod/install.php:232
-msgid "For security reasons the password must not be empty"
-msgstr "Aus Sicherheitsgründen darf das Passwort nicht leer sein."
+"Set some public keywords for your default profile which describe your "
+"interests. We may be able to find other people with similar interests and "
+"suggest friendships."
+msgstr "Trage ein paar öffentliche Stichwörter in Dein Standardprofil ein, die Deine Interessen beschreiben. Eventuell sind wir in der Lage Leute zu finden, die Deine Interessen teilen und können Dir dann Kontakte vorschlagen."
 
-#: mod/install.php:233
-msgid "Database Name"
-msgstr "Datenbank-Name"
+#: mod/newmember.php:26
+msgid "Connecting"
+msgstr "Verbindungen knüpfen"
 
-#: mod/install.php:234 mod/install.php:275
-msgid "Site administrator email address"
-msgstr "E-Mail-Adresse des Administrators"
+#: mod/newmember.php:32
+msgid "Importing Emails"
+msgstr "Emails Importieren"
 
-#: mod/install.php:234 mod/install.php:275
+#: mod/newmember.php:32
 msgid ""
-"Your account email address must match this in order to use the web admin "
-"panel."
-msgstr "Die E-Mail-Adresse, die in Deinem Friendica-Account eingetragen ist, muss mit dieser Adresse übereinstimmen, damit Du das Admin-Panel benutzen kannst."
-
-#: mod/install.php:238 mod/install.php:278
-msgid "Please select a default timezone for your website"
-msgstr "Bitte wähle die Standardzeitzone Deiner Webseite"
-
-#: mod/install.php:265
-msgid "Site settings"
-msgstr "Server-Einstellungen"
+"Enter your email access information on your Connector Settings page if you "
+"wish to import and interact with friends or mailing lists from your email "
+"INBOX"
+msgstr "Gib Deine E-Mail-Zugangsinformationen auf der Connector-Einstellungsseite ein, falls Du E-Mails aus Deinem Posteingang importieren und mit Kontakten und Mailinglisten interagieren willst."
 
-#: mod/install.php:279
-msgid "System Language:"
-msgstr "Systemsprache:"
+#: mod/newmember.php:35
+msgid "Go to Your Contacts Page"
+msgstr "Gehe zu deiner Kontakt-Seite"
 
-#: mod/install.php:279
+#: mod/newmember.php:35
 msgid ""
-"Set the default language for your Friendica installation interface and to "
-"send emails."
-msgstr "Wähle die Standardsprache für deine Friendica-Installations-Oberfläche und den E-Mail-Versand"
+"Your Contacts page is your gateway to managing friendships and connecting "
+"with friends on other networks. Typically you enter their address or site "
+"URL in the <em>Add New Contact</em> dialog."
+msgstr "Die Kontakte-Seite ist die Einstiegsseite, von der aus Du Kontakte verwalten und Dich mit Personen in anderen Netzwerken verbinden kannst. Normalerweise gibst Du dazu einfach ihre Adresse oder die URL der Seite im Kasten <em>Neuen Kontakt hinzufügen</em> ein."
 
-#: mod/install.php:319
-msgid "Could not find a command line version of PHP in the web server PATH."
-msgstr "Konnte keine Kommandozeilenversion von PHP im PATH des Servers finden."
+#: mod/newmember.php:36
+msgid "Go to Your Site's Directory"
+msgstr "Gehe zum Verzeichnis Deiner Friendica Instanz"
 
-#: mod/install.php:320
+#: mod/newmember.php:36
 msgid ""
-"If you don't have a command line version of PHP installed on server, you "
-"will not be able to run the background processing. See <a "
-"href='https://github.com/friendica/friendica/blob/master/doc/Install.md#set-"
-"up-the-poller'>'Setup the poller'</a>"
-msgstr "Wenn auf deinem Server keine Kommandozeilenversion von PHP installiert ist, kannst du den Hintergrundprozess nicht einrichten. Hier findest du alternative Möglichkeiten<a href='https://github.com/friendica/friendica/blob/master/doc/Install.md#set-up-the-poller'>'für das Poller Setup'</a>"
+"The Directory page lets you find other people in this network or other "
+"federated sites. Look for a <em>Connect</em> or <em>Follow</em> link on "
+"their profile page. Provide your own Identity Address if requested."
+msgstr "Über die Verzeichnisseite kannst Du andere Personen auf diesem Server oder anderen verknüpften Seiten finden. Halte nach einem <em>Verbinden</em> oder <em>Folgen</em> Link auf deren Profilseiten Ausschau und gib Deine eigene Profiladresse an, falls Du danach gefragt wirst."
 
-#: mod/install.php:324
-msgid "PHP executable path"
-msgstr "Pfad zu PHP"
+#: mod/newmember.php:37
+msgid "Finding New People"
+msgstr "Neue Leute kennenlernen"
 
-#: mod/install.php:324
+#: mod/newmember.php:37
 msgid ""
-"Enter full path to php executable. You can leave this blank to continue the "
-"installation."
-msgstr "Gib den kompletten Pfad zur ausführbaren Datei von PHP an. Du kannst dieses Feld auch frei lassen und mit der Installation fortfahren."
-
-#: mod/install.php:329
-msgid "Command line PHP"
-msgstr "Kommandozeilen-PHP"
+"On the side panel of the Contacts page are several tools to find new "
+"friends. We can match people by interest, look up people by name or "
+"interest, and provide suggestions based on network relationships. On a brand"
+" new site, friend suggestions will usually begin to be populated within 24 "
+"hours."
+msgstr "Im seitlichen Bedienfeld der Kontakteseite gibt es diverse Werkzeuge, um neue Personen zu finden. Wir können Menschen mit den gleichen Interessen finden, anhand von Namen oder Interessen suchen oder aber aufgrund vorhandener Kontakte neue Leute vorschlagen.\nAuf einer brandneuen - soeben erstellten - Seite starten die Kontaktvorschläge innerhalb von 24 Stunden."
 
-#: mod/install.php:338
-msgid "PHP executable is not the php cli binary (could be cgi-fgci version)"
-msgstr "Die ausführbare Datei von PHP stimmt nicht mit der PHP cli Version überein (es könnte sich um die cgi-fgci Version handeln)"
+#: mod/newmember.php:41
+msgid "Group Your Contacts"
+msgstr "Gruppiere deine Kontakte"
 
-#: mod/install.php:339
-msgid "Found PHP version: "
-msgstr "Gefundene PHP Version:"
+#: mod/newmember.php:41
+msgid ""
+"Once you have made some friends, organize them into private conversation "
+"groups from the sidebar of your Contacts page and then you can interact with"
+" each group privately on your Network page."
+msgstr "Sobald Du einige Kontakte gefunden hast, organisiere sie in Gruppen zur privaten Kommunikation im Seitenmenü der Kontakte-Seite. Du kannst dann mit jeder dieser Gruppen von der Netzwerkseite aus privat interagieren."
 
-#: mod/install.php:341
-msgid "PHP cli binary"
-msgstr "PHP CLI Binary"
+#: mod/newmember.php:44
+msgid "Why Aren't My Posts Public?"
+msgstr "Warum sind meine Beiträge nicht öffentlich?"
 
-#: mod/install.php:352
+#: mod/newmember.php:44
 msgid ""
-"The command line version of PHP on your system does not have "
-"\"register_argc_argv\" enabled."
-msgstr "Die Kommandozeilenversion von PHP auf Deinem System hat \"register_argc_argv\" nicht aktiviert."
-
-#: mod/install.php:353
-msgid "This is required for message delivery to work."
-msgstr "Dies wird für die Auslieferung von Nachrichten benötigt."
+"Friendica respects your privacy. By default, your posts will only show up to"
+" people you've added as friends. For more information, see the help section "
+"from the link above."
+msgstr "Friendica respektiert Deine Privatsphäre. Mit der Grundeinstellung werden Deine Beiträge ausschließlich Deinen Kontakten angezeigt. Für weitere Informationen diesbezüglich lies Dir bitte den entsprechenden Abschnitt in der Hilfe unter dem obigen Link durch."
 
-#: mod/install.php:355
-msgid "PHP register_argc_argv"
-msgstr "PHP register_argc_argv"
+#: mod/newmember.php:48
+msgid "Getting Help"
+msgstr "Hilfe bekommen"
 
-#: mod/install.php:378
-msgid ""
-"Error: the \"openssl_pkey_new\" function on this system is not able to "
-"generate encryption keys"
-msgstr "Fehler: Die Funktion \"openssl_pkey_new\" auf diesem System ist nicht in der Lage, Verschlüsselungsschlüssel zu erzeugen"
+#: mod/newmember.php:50
+msgid "Go to the Help Section"
+msgstr "Zum Hilfe Abschnitt gehen"
 
-#: mod/install.php:379
+#: mod/newmember.php:50
 msgid ""
-"If running under Windows, please see "
-"\"http://www.php.net/manual/en/openssl.installation.php\"."
-msgstr "Wenn der Server unter Windows läuft, schau Dir bitte \"http://www.php.net/manual/en/openssl.installation.php\" an."
+"Our <strong>help</strong> pages may be consulted for detail on other program"
+" features and resources."
+msgstr "Unsere <strong>Hilfe</strong> Seiten können herangezogen werden, um weitere Einzelheiten zu andern Programm Features zu erhalten."
 
-#: mod/install.php:381
-msgid "Generate encryption keys"
-msgstr "Schlüssel erzeugen"
+#: mod/nogroup.php:45 mod/viewcontacts.php:105 mod/contacts.php:615
+#: mod/contacts.php:959
+#, php-format
+msgid "Visit %s's profile [%s]"
+msgstr "Besuche %ss Profil [%s]"
 
-#: mod/install.php:388
-msgid "libCurl PHP module"
-msgstr "PHP: libCurl-Modul"
+#: mod/nogroup.php:46 mod/contacts.php:960
+msgid "Edit contact"
+msgstr "Kontakt bearbeiten"
 
-#: mod/install.php:389
-msgid "GD graphics PHP module"
-msgstr "PHP: GD-Grafikmodul"
+#: mod/nogroup.php:67
+msgid "Contacts who are not members of a group"
+msgstr "Kontakte, die keiner Gruppe zugewiesen sind"
 
-#: mod/install.php:390
-msgid "OpenSSL PHP module"
-msgstr "PHP: OpenSSL-Modul"
+#: mod/profperm.php:22 mod/group.php:78 index.php:410
+msgid "Permission denied"
+msgstr "Zugriff verweigert"
 
-#: mod/install.php:391
-msgid "PDO or MySQLi PHP module"
-msgstr "PDO oder MySQLi PHP Modul"
+#: mod/profperm.php:28 mod/profperm.php:59
+msgid "Invalid profile identifier."
+msgstr "Ungültiger Profil-Bezeichner."
 
-#: mod/install.php:392
-msgid "mb_string PHP module"
-msgstr "PHP: mb_string-Modul"
+#: mod/profperm.php:105
+msgid "Profile Visibility Editor"
+msgstr "Editor für die Profil-Sichtbarkeit"
 
-#: mod/install.php:393
-msgid "XML PHP module"
-msgstr "XML PHP Modul"
+#: mod/profperm.php:109 mod/group.php:264
+msgid "Click on a contact to add or remove."
+msgstr "Klicke einen Kontakt an, um ihn hinzuzufügen oder zu entfernen"
 
-#: mod/install.php:394
-msgid "iconv module"
-msgstr "iconv module"
+#: mod/profperm.php:118
+msgid "Visible To"
+msgstr "Sichtbar für"
 
-#: mod/install.php:398 mod/install.php:400
-msgid "Apache mod_rewrite module"
-msgstr "Apache mod_rewrite module"
+#: mod/profperm.php:134
+msgid "All Contacts (with secure profile access)"
+msgstr "Alle Kontakte (mit gesichertem Profilzugriff)"
 
-#: mod/install.php:398
-msgid ""
-"Error: Apache webserver mod-rewrite module is required but not installed."
-msgstr "Fehler: Das Apache-Modul mod-rewrite wird benötigt, es ist allerdings nicht installiert."
+#: mod/update_community.php:21 mod/update_display.php:25
+#: mod/update_notes.php:38 mod/update_profile.php:37 mod/update_network.php:29
+msgid "[Embedded content - reload page to view]"
+msgstr "[Eingebetteter Inhalt - Seite neu laden zum Betrachten]"
 
-#: mod/install.php:406
-msgid "Error: libCURL PHP module required but not installed."
-msgstr "Fehler: Das libCURL PHP Modul wird benötigt, ist aber nicht installiert."
+#: mod/viewcontacts.php:39 mod/webfinger.php:10 mod/probe.php:9
+#: mod/community.php:17 mod/dfrn_request.php:805 mod/directory.php:33
+#: mod/videos.php:201 mod/display.php:218 mod/photos.php:982 mod/search.php:89
+#: mod/search.php:95
+msgid "Public access denied."
+msgstr "Öffentlicher Zugriff verweigert."
 
-#: mod/install.php:410
-msgid ""
-"Error: GD graphics PHP module with JPEG support required but not installed."
-msgstr "Fehler: Das GD-Graphikmodul für PHP mit JPEG-Unterstützung ist nicht installiert."
+#: mod/viewcontacts.php:78
+msgid "No contacts."
+msgstr "Keine Kontakte."
 
-#: mod/install.php:414
-msgid "Error: openssl PHP module required but not installed."
-msgstr "Fehler: Das openssl-Modul von PHP ist nicht installiert."
+#: mod/viewsrc.php:8
+msgid "Access denied."
+msgstr "Zugriff verweigert."
 
-#: mod/install.php:418
-msgid "Error: PDO or MySQLi PHP module required but not installed."
-msgstr "Fehler: PDO oder MySQLi PHP Modul erforderlich, aber nicht installiert."
+#: mod/webfinger.php:11 mod/probe.php:10
+msgid "Only logged in users are permitted to perform a probing."
+msgstr "Nur eingeloggten Benutzern ist das Untersuchen von Adressen gestattet."
 
-#: mod/install.php:422
-msgid "Error: The MySQL driver for PDO is not installed."
-msgstr "Fehler: der MySQL Treiber für PDO ist nicht installiert"
+#: mod/uimport.php:53 mod/register.php:202
+msgid ""
+"This site has exceeded the number of allowed daily account registrations. "
+"Please try again tomorrow."
+msgstr "Die maximale Anzahl täglicher Registrierungen auf dieser Seite wurde überschritten. Bitte versuche es morgen noch einmal."
 
-#: mod/install.php:426
-msgid "Error: mb_string PHP module required but not installed."
-msgstr "Fehler: mb_string PHP Module wird benötigt ist aber nicht installiert."
+#: mod/uimport.php:68 mod/register.php:299
+msgid "Import"
+msgstr "Import"
 
-#: mod/install.php:430
-msgid "Error: iconv PHP module required but not installed."
-msgstr "Fehler: Das iconv-Modul von PHP ist nicht installiert."
+#: mod/uimport.php:70
+msgid "Move account"
+msgstr "Account umziehen"
 
-#: mod/install.php:440
-msgid "Error, XML PHP module required but not installed."
-msgstr "Fehler: XML PHP Modul erforderlich aber nicht installiert."
+#: mod/uimport.php:71
+msgid "You can import an account from another Friendica server."
+msgstr "Du kannst einen Account von einem anderen Friendica Server importieren."
 
-#: mod/install.php:452
+#: mod/uimport.php:72
 msgid ""
-"The web installer needs to be able to create a file called \".htconfig.php\""
-" in the top folder of your web server and it is unable to do so."
-msgstr "Der Installationswizard muss in der Lage sein, eine Datei im Stammverzeichnis Deines Webservers anzulegen, ist allerdings derzeit nicht in der Lage, dies zu tun."
+"You need to export your account from the old server and upload it here. We "
+"will recreate your old account here with all your contacts. We will try also"
+" to inform your friends that you moved here."
+msgstr "Du musst Deinen Account vom alten Server exportieren und hier hochladen. Wir stellen Deinen alten Account mit all Deinen Kontakten wieder her. Wir werden auch versuchen all Deine Kontakte darüber zu informieren, dass Du hierher umgezogen bist."
 
-#: mod/install.php:453
+#: mod/uimport.php:73
 msgid ""
-"This is most often a permission setting, as the web server may not be able "
-"to write files in your folder - even if you can."
-msgstr "In den meisten Fällen ist dies ein Problem mit den Schreibrechten. Der Webserver könnte keine Schreiberlaubnis haben, selbst wenn Du sie hast."
+"This feature is experimental. We can't import contacts from the OStatus "
+"network (GNU Social/Statusnet) or from Diaspora"
+msgstr "Dieses Feature ist experimentell. Wir können keine Kontakte vom OStatus Netzwerk (GNU Social/Statusnet) oder von Diaspora importieren"
 
-#: mod/install.php:454
-msgid ""
-"At the end of this procedure, we will give you a text to save in a file "
-"named .htconfig.php in your Friendica top folder."
-msgstr "Nachdem Du alles ausgefüllt hast, erhältst Du einen Text, den Du in eine Datei namens .htconfig.php in Deinem Friendica-Wurzelverzeichnis kopieren musst."
+#: mod/uimport.php:74
+msgid "Account file"
+msgstr "Account Datei"
 
-#: mod/install.php:455
+#: mod/uimport.php:74
 msgid ""
-"You can alternatively skip this procedure and perform a manual installation."
-" Please see the file \"INSTALL.txt\" for instructions."
-msgstr "Alternativ kannst Du diesen Schritt aber auch überspringen und die Installation manuell durchführen. Eine Anleitung dazu (Englisch) findest Du in der Datei INSTALL.txt."
-
-#: mod/install.php:458
-msgid ".htconfig.php is writable"
-msgstr "Schreibrechte auf .htconfig.php"
+"To export your account, go to \"Settings->Export your personal data\" and "
+"select \"Export account\""
+msgstr "Um Deinen Account zu exportieren, rufe \"Einstellungen -> Persönliche Daten exportieren\" auf und wähle \"Account exportieren\""
 
-#: mod/install.php:468
-msgid ""
-"Friendica uses the Smarty3 template engine to render its web views. Smarty3 "
-"compiles templates to PHP to speed up rendering."
-msgstr "Friendica nutzt die Smarty3 Template Engine um die Webansichten zu rendern. Smarty3 kompiliert Templates zu PHP um das Rendern zu beschleunigen."
+#: mod/community.php:22
+msgid "Not available."
+msgstr "Nicht verfügbar."
 
-#: mod/install.php:469
-msgid ""
-"In order to store these compiled templates, the web server needs to have "
-"write access to the directory view/smarty3/ under the Friendica top level "
-"folder."
-msgstr "Um diese kompilierten Templates zu speichern benötigt der Webserver Schreibrechte zum Verzeichnis view/smarty3/ im obersten Ordner von Friendica."
+#: mod/community.php:49 mod/search.php:215
+msgid "No results."
+msgstr "Keine Ergebnisse."
 
-#: mod/install.php:470
-msgid ""
-"Please ensure that the user that your web server runs as (e.g. www-data) has"
-" write access to this folder."
-msgstr "Bitte stelle sicher, dass der Nutzer unter dem der Webserver läuft (z.B. www-data) Schreibrechte zu diesem Verzeichnis hat."
+#: mod/allfriends.php:49
+msgid "No friends to display."
+msgstr "Keine Kontakte zum Anzeigen."
 
-#: mod/install.php:471
-msgid ""
-"Note: as a security measure, you should give the web server write access to "
-"view/smarty3/ only--not the template files (.tpl) that it contains."
-msgstr "Hinweis: aus Sicherheitsgründen solltest Du dem Webserver nur Schreibrechte für view/smarty3/ geben -- Nicht den Templatedateien (.tpl) die sie enthalten."
+#: mod/bookmarklet.php:44
+msgid "The post was created"
+msgstr "Der Beitrag wurde angelegt"
 
-#: mod/install.php:474
-msgid "view/smarty3 is writable"
-msgstr "view/smarty3 ist schreibbar"
+#: mod/cal.php:146 mod/profile.php:157 mod/display.php:348
+msgid "Access to this profile has been restricted."
+msgstr "Der Zugriff zu diesem Profil wurde eingeschränkt."
 
-#: mod/install.php:490
-msgid ""
-"Url rewrite in .htaccess is not working. Check your server configuration."
-msgstr "Umschreiben der URLs in der .htaccess funktioniert nicht. Überprüfe die Konfiguration des Servers."
+#: mod/cal.php:274 mod/events.php:379
+msgid "View"
+msgstr "Ansehen"
 
-#: mod/install.php:492
-msgid "Url rewrite is working"
-msgstr "URL rewrite funktioniert"
+#: mod/cal.php:275 mod/events.php:381
+msgid "Previous"
+msgstr "Vorherige"
 
-#: mod/install.php:511
-msgid "ImageMagick PHP extension is not installed"
-msgstr "ImageMagicx PHP Erweiterung ist nicht installiert."
+#: mod/cal.php:276 mod/events.php:382 mod/install.php:204
+msgid "Next"
+msgstr "Nächste"
 
-#: mod/install.php:513
-msgid "ImageMagick PHP extension is installed"
-msgstr "ImageMagick PHP Erweiterung ist installiert"
+#: mod/cal.php:285 mod/events.php:391
+msgid "list"
+msgstr "Liste"
 
-#: mod/install.php:515
-msgid "ImageMagick supports GIF"
-msgstr "ImageMagick unterstützt GIF"
+#: mod/cal.php:295
+msgid "User not found"
+msgstr "Nutzer nicht gefunden"
 
-#: mod/install.php:522
-msgid ""
-"The database configuration file \".htconfig.php\" could not be written. "
-"Please use the enclosed text to create a configuration file in your web "
-"server root."
-msgstr "Die Konfigurationsdatei \".htconfig.php\" konnte nicht angelegt werden. Bitte verwende den angefügten Text, um die Datei im Stammverzeichnis Deiner Friendica-Installation zu erzeugen."
+#: mod/cal.php:311
+msgid "This calendar format is not supported"
+msgstr "Dieses Kalenderformat wird nicht unterstützt."
 
-#: mod/install.php:547
-msgid "<h1>What next</h1>"
-msgstr "<h1>Wie geht es weiter?</h1>"
+#: mod/cal.php:313
+msgid "No exportable data found"
+msgstr "Keine exportierbaren Daten gefunden"
 
-#: mod/install.php:548
-msgid ""
-"IMPORTANT: You will need to [manually] setup a scheduled task for the "
-"poller."
-msgstr "WICHTIG: Du musst [manuell] einen Cronjob (o.ä.) für den Poller einrichten."
+#: mod/cal.php:328
+msgid "calendar"
+msgstr "Kalender"
 
-#: mod/localtime.php:25
-msgid "Time Conversion"
-msgstr "Zeitumrechnung"
+#: mod/content.php:121 mod/network.php:632
+msgid "No such group"
+msgstr "Es gibt keine solche Gruppe"
 
-#: mod/localtime.php:27
-msgid ""
-"Friendica provides this service for sharing events with other networks and "
-"friends in unknown timezones."
-msgstr "Friendica bietet diese Funktion an, um das Teilen von Events mit Kontakten zu vereinfachen, deren Zeitzone nicht ermittelt werden kann."
+#: mod/content.php:132 mod/group.php:215 mod/network.php:653
+msgid "Group is empty"
+msgstr "Gruppe ist leer"
 
-#: mod/localtime.php:31
+#: mod/content.php:137 mod/network.php:657
 #, php-format
-msgid "UTC time: %s"
-msgstr "UTC Zeit: %s"
+msgid "Group: %s"
+msgstr "Gruppe: %s"
 
-#: mod/localtime.php:34
-#, php-format
-msgid "Current timezone: %s"
-msgstr "Aktuelle Zeitzone: %s"
+#: mod/content.php:327 object/Item.php:106
+msgid "This entry was edited"
+msgstr "Dieser Beitrag wurde bearbeitet."
 
-#: mod/localtime.php:37
+#: mod/content.php:623 object/Item.php:414
 #, php-format
-msgid "Converted localtime: %s"
-msgstr "Umgerechnete lokale Zeit: %s"
+msgid "%d comment"
+msgid_plural "%d comments"
+msgstr[0] "%d Kommentar"
+msgstr[1] "%d Kommentare"
 
-#: mod/localtime.php:42
-msgid "Please select your timezone:"
-msgstr "Bitte wähle Deine Zeitzone:"
+#: mod/content.php:640 mod/photos.php:1432 object/Item.php:127
+msgid "Private Message"
+msgstr "Private Nachricht"
 
-#: mod/lockview.php:33 mod/lockview.php:41
-msgid "Remote privacy information not available."
-msgstr "Entfernte Privatsphäreneinstellungen nicht verfügbar."
+#: mod/content.php:704 mod/photos.php:1628 object/Item.php:280
+msgid "I like this (toggle)"
+msgstr "Ich mag das (toggle)"
 
-#: mod/lockview.php:50
-msgid "Visible to:"
-msgstr "Sichtbar für:"
+#: mod/content.php:704 object/Item.php:280
+msgid "like"
+msgstr "mag ich"
 
-#: mod/lostpass.php:21
-msgid "No valid account found."
-msgstr "Kein gültiges Konto gefunden."
+#: mod/content.php:705 mod/photos.php:1629 object/Item.php:281
+msgid "I don't like this (toggle)"
+msgstr "Ich mag das nicht (toggle)"
 
-#: mod/lostpass.php:37
-msgid "Password reset request issued. Check your email."
-msgstr "Zurücksetzen des Passworts eingeleitet. Bitte überprüfe Deine E-Mail."
+#: mod/content.php:705 object/Item.php:281
+msgid "dislike"
+msgstr "mag ich nicht"
 
-#: mod/lostpass.php:43
-#, php-format
-msgid ""
-"\n"
-"\t\tDear %1$s,\n"
-"\t\t\tA request was recently received at \"%2$s\" to reset your account\n"
-"\t\tpassword. In order to confirm this request, please select the verification link\n"
-"\t\tbelow or paste it into your web browser address bar.\n"
-"\n"
-"\t\tIf you did NOT request this change, please DO NOT follow the link\n"
-"\t\tprovided and ignore and/or delete this email.\n"
-"\n"
-"\t\tYour password will not be changed unless we can verify that you\n"
-"\t\tissued this request."
-msgstr "\nHallo %1$s,\n\nAuf \"%2$s\" ist eine Anfrage auf das Zurücksetzen Deines Passworts gestellt\nworden. Um diese Anfrage zu verifizieren, folge bitte dem unten stehenden\nLink oder kopiere und füge ihn in die Adressleiste Deines Browsers ein.\n\nSolltest Du die Anfrage NICHT gemacht haben, ignoriere und/oder lösche diese\nE-Mail bitte.\n\nDein Passwort wird nicht geändert, solange wir nicht verifiziert haben, dass\nDu diese Änderung angefragt hast."
+#: mod/content.php:707 object/Item.php:284
+msgid "Share this"
+msgstr "Weitersagen"
 
-#: mod/lostpass.php:54
-#, php-format
-msgid ""
-"\n"
-"\t\tFollow this link to verify your identity:\n"
-"\n"
-"\t\t%1$s\n"
-"\n"
-"\t\tYou will then receive a follow-up message containing the new password.\n"
-"\t\tYou may change that password from your account settings page after logging in.\n"
-"\n"
-"\t\tThe login details are as follows:\n"
-"\n"
-"\t\tSite Location:\t%2$s\n"
-"\t\tLogin Name:\t%3$s"
-msgstr "\nUm Deine Identität zu verifizieren, folge bitte dem folgenden Link:\n\n%1$s\n\nDu wirst eine weitere E-Mail mit Deinem neuen Passwort erhalten. Sobald Du Dich\nangemeldet hast, kannst Du Dein Passwort in den Einstellungen ändern.\n\nDie Anmeldedetails sind die folgenden:\n\nAdresse der Seite:\t%2$s\nBenutzername:\t%3$s"
+#: mod/content.php:707 object/Item.php:284
+msgid "share"
+msgstr "Teilen"
 
-#: mod/lostpass.php:73
-#, php-format
-msgid "Password reset requested at %s"
-msgstr "Anfrage zum Zurücksetzen des Passworts auf %s erhalten"
+#: mod/content.php:727 mod/photos.php:1646 mod/photos.php:1688
+#: mod/photos.php:1768 object/Item.php:699
+msgid "This is you"
+msgstr "Das bist Du"
 
-#: mod/lostpass.php:93
-msgid ""
-"Request could not be verified. (You may have previously submitted it.) "
-"Password reset failed."
-msgstr "Anfrage konnte nicht verifiziert werden. (Eventuell hast Du bereits eine ähnliche Anfrage gestellt.) Zurücksetzen des Passworts gescheitert."
+#: mod/content.php:729 mod/content.php:952 mod/photos.php:1648
+#: mod/photos.php:1690 mod/photos.php:1770 object/Item.php:386
+#: object/Item.php:701
+msgid "Comment"
+msgstr "Kommentar"
 
-#: mod/lostpass.php:112 boot.php:886
-msgid "Password Reset"
-msgstr "Passwort zurücksetzen"
+#: mod/content.php:731 object/Item.php:703
+msgid "Bold"
+msgstr "Fett"
 
-#: mod/lostpass.php:113
-msgid "Your password has been reset as requested."
-msgstr "Dein Passwort wurde wie gewünscht zurückgesetzt."
+#: mod/content.php:732 object/Item.php:704
+msgid "Italic"
+msgstr "Kursiv"
 
-#: mod/lostpass.php:114
-msgid "Your new password is"
-msgstr "Dein neues Passwort lautet"
+#: mod/content.php:733 object/Item.php:705
+msgid "Underline"
+msgstr "Unterstrichen"
 
-#: mod/lostpass.php:115
-msgid "Save or copy your new password - and then"
-msgstr "Speichere oder kopiere Dein neues Passwort - und dann"
+#: mod/content.php:734 object/Item.php:706
+msgid "Quote"
+msgstr "Zitat"
 
-#: mod/lostpass.php:116
-msgid "click here to login"
-msgstr "hier klicken, um Dich anzumelden"
+#: mod/content.php:735 object/Item.php:707
+msgid "Code"
+msgstr "Code"
 
-#: mod/lostpass.php:117
-msgid ""
-"Your password may be changed from the <em>Settings</em> page after "
-"successful login."
-msgstr "Du kannst das Passwort in den <em>Einstellungen</em> ändern, sobald Du Dich erfolgreich angemeldet hast."
+#: mod/content.php:736 object/Item.php:708
+msgid "Image"
+msgstr "Bild"
 
-#: mod/lostpass.php:127
-#, php-format
-msgid ""
-"\n"
-"\t\t\t\tDear %1$s,\n"
-"\t\t\t\t\tYour password has been changed as requested. Please retain this\n"
-"\t\t\t\tinformation for your records (or change your password immediately to\n"
-"\t\t\t\tsomething that you will remember).\n"
-"\t\t\t"
-msgstr "\nHallo %1$s,\n\nDein Passwort wurde wie gewünscht geändert. Bitte bewahre diese Informationen gut auf (oder ändere Dein Passwort in eines, das Du Dir leicht merken kannst)."
+#: mod/content.php:737 object/Item.php:709
+msgid "Link"
+msgstr "Link"
 
-#: mod/lostpass.php:133
-#, php-format
-msgid ""
-"\n"
-"\t\t\t\tYour login details are as follows:\n"
-"\n"
-"\t\t\t\tSite Location:\t%1$s\n"
-"\t\t\t\tLogin Name:\t%2$s\n"
-"\t\t\t\tPassword:\t%3$s\n"
-"\n"
-"\t\t\t\tYou may change that password from your account settings page after logging in.\n"
-"\t\t\t"
-msgstr "\nDie Anmeldedaten sind die folgenden:\n\nAdresse der Seite: %1$s\nLogin Name: %2$s\nPasswort: %3$s\n\nDas Passwort kann und sollte in den Kontoeinstellungen nach der Anmeldung geändert werden."
+#: mod/content.php:738 object/Item.php:710
+msgid "Video"
+msgstr "Video"
 
-#: mod/lostpass.php:149
-#, php-format
-msgid "Your password has been changed at %s"
-msgstr "Auf %s wurde Dein Passwort geändert"
+#: mod/content.php:748 mod/settings.php:740 object/Item.php:132
+#: object/Item.php:134
+msgid "Edit"
+msgstr "Bearbeiten"
 
-#: mod/lostpass.php:161
-msgid "Forgot your Password?"
-msgstr "Hast Du Dein Passwort vergessen?"
+#: mod/content.php:774 object/Item.php:247
+msgid "add star"
+msgstr "markieren"
 
-#: mod/lostpass.php:162
-msgid ""
-"Enter your email address and submit to have your password reset. Then check "
-"your email for further instructions."
-msgstr "Gib Deine E-Mail-Adresse an und fordere ein neues Passwort an. Es werden Dir dann weitere Informationen per Mail zugesendet."
+#: mod/content.php:775 object/Item.php:248
+msgid "remove star"
+msgstr "Markierung entfernen"
 
-#: mod/lostpass.php:163 boot.php:874
-msgid "Nickname or Email: "
-msgstr "Spitzname oder E-Mail:"
+#: mod/content.php:776 object/Item.php:249
+msgid "toggle star status"
+msgstr "Markierung umschalten"
 
-#: mod/lostpass.php:164
-msgid "Reset"
-msgstr "Zurücksetzen"
+#: mod/content.php:779 object/Item.php:252
+msgid "starred"
+msgstr "markiert"
 
-#: mod/maintenance.php:21
-msgid "System down for maintenance"
-msgstr "System zur Wartung abgeschaltet"
+#: mod/content.php:780 mod/content.php:802 object/Item.php:269
+msgid "add tag"
+msgstr "Tag hinzufügen"
 
-#: mod/manage.php:152
-msgid "Manage Identities and/or Pages"
-msgstr "Verwalte Identitäten und/oder Seiten"
+#: mod/content.php:791 object/Item.php:257
+msgid "ignore thread"
+msgstr "Thread ignorieren"
 
-#: mod/manage.php:153
-msgid ""
-"Toggle between different identities or community/group pages which share "
-"your account details or which you have been granted \"manage\" permissions"
-msgstr "Zwischen verschiedenen Identitäten oder Gemeinschafts-/Gruppenseiten wechseln, die Deine Kontoinformationen teilen oder zu denen Du „Verwalten“-Befugnisse bekommen hast."
+#: mod/content.php:792 object/Item.php:258
+msgid "unignore thread"
+msgstr "Thread nicht mehr ignorieren"
 
-#: mod/manage.php:154
-msgid "Select an identity to manage: "
-msgstr "Wähle eine Identität zum Verwalten aus: "
+#: mod/content.php:793 object/Item.php:259
+msgid "toggle ignore status"
+msgstr "Ignoriert-Status ein-/ausschalten"
 
-#: mod/match.php:38
-msgid "No keywords to match. Please add keywords to your default profile."
-msgstr "Keine Schlüsselwörter zum Abgleichen gefunden. Bitte füge einige Schlüsselwörter zu Deinem Standardprofil hinzu."
+#: mod/content.php:796 mod/ostatus_subscribe.php:76 object/Item.php:262
+msgid "ignored"
+msgstr "Ignoriert"
 
-#: mod/match.php:91
-msgid "is interested in:"
-msgstr "ist interessiert an:"
+#: mod/content.php:807 object/Item.php:151
+msgid "save to folder"
+msgstr "In Ordner speichern"
 
-#: mod/match.php:105
-msgid "Profile Match"
-msgstr "Profilübereinstimmungen"
+#: mod/content.php:855 object/Item.php:221
+msgid "I will attend"
+msgstr "Ich werde teilnehmen"
 
-#: mod/match.php:112 mod/dirfind.php:247
-msgid "No matches"
-msgstr "Keine Übereinstimmungen"
+#: mod/content.php:855 object/Item.php:221
+msgid "I will not attend"
+msgstr "Ich werde nicht teilnehmen"
 
-#: mod/message.php:62 mod/wallmessage.php:52
-msgid "No recipient selected."
-msgstr "Kein Empfänger gewählt."
+#: mod/content.php:855 object/Item.php:221
+msgid "I might attend"
+msgstr "Ich werde eventuell teilnehmen"
 
-#: mod/message.php:66
-msgid "Unable to locate contact information."
-msgstr "Konnte die Kontaktinformationen nicht finden."
+#: mod/content.php:919 object/Item.php:352
+msgid "to"
+msgstr "zu"
 
-#: mod/message.php:69 mod/wallmessage.php:58
-msgid "Message could not be sent."
-msgstr "Nachricht konnte nicht gesendet werden."
+#: mod/content.php:920 object/Item.php:354
+msgid "Wall-to-Wall"
+msgstr "Wall-to-Wall"
 
-#: mod/message.php:72 mod/wallmessage.php:61
-msgid "Message collection failure."
-msgstr "Konnte Nachrichten nicht abrufen."
+#: mod/content.php:921 object/Item.php:355
+msgid "via Wall-To-Wall:"
+msgstr "via Wall-To-Wall:"
 
-#: mod/message.php:75 mod/wallmessage.php:64
-msgid "Message sent."
-msgstr "Nachricht gesendet."
+#: mod/dfrn_confirm.php:73 mod/profiles.php:24 mod/profiles.php:134
+#: mod/profiles.php:181 mod/profiles.php:617
+msgid "Profile not found."
+msgstr "Profil nicht gefunden."
 
-#: mod/message.php:206
-msgid "Do you really want to delete this message?"
-msgstr "Möchtest Du wirklich diese Nachricht löschen?"
+#: mod/dfrn_confirm.php:130
+msgid ""
+"This may occasionally happen if contact was requested by both persons and it"
+" has already been approved."
+msgstr "Das kann passieren, wenn sich zwei Kontakte gegenseitig eingeladen haben und bereits einer angenommen wurde."
 
-#: mod/message.php:226
-msgid "Message deleted."
-msgstr "Nachricht gelöscht."
+#: mod/dfrn_confirm.php:247
+msgid "Response from remote site was not understood."
+msgstr "Antwort der Gegenstelle unverständlich."
 
-#: mod/message.php:257
-msgid "Conversation removed."
-msgstr "Unterhaltung gelöscht."
+#: mod/dfrn_confirm.php:256 mod/dfrn_confirm.php:261
+msgid "Unexpected response from remote site: "
+msgstr "Unerwartete Antwort der Gegenstelle: "
 
-#: mod/message.php:324 mod/wallmessage.php:128
-msgid "Send Private Message"
-msgstr "Private Nachricht senden"
+#: mod/dfrn_confirm.php:270
+msgid "Confirmation completed successfully."
+msgstr "Bestätigung erfolgreich abgeschlossen."
 
-#: mod/message.php:325 mod/message.php:512 mod/wallmessage.php:130
-msgid "To:"
-msgstr "An:"
+#: mod/dfrn_confirm.php:272 mod/dfrn_confirm.php:286 mod/dfrn_confirm.php:293
+msgid "Remote site reported: "
+msgstr "Gegenstelle meldet: "
 
-#: mod/message.php:330 mod/message.php:514 mod/wallmessage.php:131
-msgid "Subject:"
-msgstr "Betreff:"
+#: mod/dfrn_confirm.php:284
+msgid "Temporary failure. Please wait and try again."
+msgstr "Zeitweiser Fehler. Bitte warte einige Momente und versuche es dann noch einmal."
+
+#: mod/dfrn_confirm.php:291
+msgid "Introduction failed or was revoked."
+msgstr "Kontaktanfrage schlug fehl oder wurde zurückgezogen."
+
+#: mod/dfrn_confirm.php:420
+msgid "Unable to set contact photo."
+msgstr "Konnte das Bild des Kontakts nicht speichern."
 
-#: mod/message.php:334 mod/message.php:517 mod/wallmessage.php:137
-#: mod/invite.php:143
-msgid "Your message:"
-msgstr "Deine Nachricht:"
+#: mod/dfrn_confirm.php:561
+#, php-format
+msgid "No user record found for '%s' "
+msgstr "Für '%s' wurde kein Nutzer gefunden"
 
-#: mod/message.php:366
-msgid "No messages."
-msgstr "Keine Nachrichten."
+#: mod/dfrn_confirm.php:571
+msgid "Our site encryption key is apparently messed up."
+msgstr "Der Verschlüsselungsschlüssel unserer Seite ist anscheinend nicht in Ordnung."
 
-#: mod/message.php:405
-msgid "Message not available."
-msgstr "Nachricht nicht verfügbar."
+#: mod/dfrn_confirm.php:582
+msgid "Empty site URL was provided or URL could not be decrypted by us."
+msgstr "Leere URL für die Seite erhalten oder die URL konnte nicht entschlüsselt werden."
 
-#: mod/message.php:479
-msgid "Delete message"
-msgstr "Nachricht löschen"
+#: mod/dfrn_confirm.php:604
+msgid "Contact record was not found for you on our site."
+msgstr "Für diesen Kontakt wurde auf unserer Seite kein Eintrag gefunden."
 
-#: mod/message.php:505 mod/message.php:593
-msgid "Delete conversation"
-msgstr "Unterhaltung löschen"
+#: mod/dfrn_confirm.php:618
+#, php-format
+msgid "Site public key not available in contact record for URL %s."
+msgstr "Die Kontaktdaten für URL %s enthalten keinen Public Key für den Server."
 
-#: mod/message.php:507
+#: mod/dfrn_confirm.php:638
 msgid ""
-"No secure communications available. You <strong>may</strong> be able to "
-"respond from the sender's profile page."
-msgstr "Sichere Kommunikation ist nicht verfügbar. <strong>Eventuell</strong> kannst Du auf der Profilseite des Absenders antworten."
+"The ID provided by your system is a duplicate on our system. It should work "
+"if you try again."
+msgstr "Die ID, die uns Dein System angeboten hat, ist hier bereits vergeben. Bitte versuche es noch einmal."
 
-#: mod/message.php:511
-msgid "Send Reply"
-msgstr "Antwort senden"
+#: mod/dfrn_confirm.php:649
+msgid "Unable to set your contact credentials on our system."
+msgstr "Deine Kontaktreferenzen konnten nicht in unserem System gespeichert werden."
 
-#: mod/message.php:563
-#, php-format
-msgid "Unknown sender - %s"
-msgstr "'Unbekannter Absender - %s"
+#: mod/dfrn_confirm.php:711
+msgid "Unable to update your contact profile details on our system"
+msgstr "Die Updates für Dein Profil konnten nicht gespeichert werden"
 
-#: mod/message.php:565
+#: mod/dfrn_confirm.php:783
 #, php-format
-msgid "You and %s"
-msgstr "Du und %s"
+msgid "%1$s has joined %2$s"
+msgstr "%1$s ist %2$s beigetreten"
 
-#: mod/message.php:567
+#: mod/dfrn_poll.php:114 mod/dfrn_poll.php:550
 #, php-format
-msgid "%s and You"
-msgstr "%s und Du"
+msgid "%1$s welcomes %2$s"
+msgstr "%1$s heißt %2$s herzlich willkommen"
 
-#: mod/message.php:596
-msgid "D, d M Y - g:i A"
-msgstr "D, d. M Y - g:i A"
+#: mod/dfrn_request.php:104
+msgid "This introduction has already been accepted."
+msgstr "Diese Kontaktanfrage wurde bereits akzeptiert."
+
+#: mod/dfrn_request.php:127 mod/dfrn_request.php:529
+msgid "Profile location is not valid or does not contain profile information."
+msgstr "Profiladresse ist ungültig oder stellt keine Profildaten zur Verfügung."
+
+#: mod/dfrn_request.php:132 mod/dfrn_request.php:534
+msgid "Warning: profile location has no identifiable owner name."
+msgstr "Warnung: Es konnte kein Name des Besitzers von der angegebenen Profiladresse gefunden werden."
 
-#: mod/message.php:599
+#: mod/dfrn_request.php:135 mod/dfrn_request.php:537
+msgid "Warning: profile location has no profile photo."
+msgstr "Warnung: Es gibt kein Profilbild bei der angegebenen Profiladresse."
+
+#: mod/dfrn_request.php:139 mod/dfrn_request.php:541
 #, php-format
-msgid "%d message"
-msgid_plural "%d messages"
-msgstr[0] "%d Nachricht"
-msgstr[1] "%d Nachrichten"
+msgid "%d required parameter was not found at the given location"
+msgid_plural "%d required parameters were not found at the given location"
+msgstr[0] "%d benötigter Parameter wurde an der angegebenen Stelle nicht gefunden"
+msgstr[1] "%d benötigte Parameter wurden an der angegebenen Stelle nicht gefunden"
 
-#: mod/mood.php:135
-msgid "Mood"
-msgstr "Stimmung"
+#: mod/dfrn_request.php:183
+msgid "Introduction complete."
+msgstr "Kontaktanfrage abgeschlossen."
 
-#: mod/mood.php:136
-msgid "Set your current mood and tell your friends"
-msgstr "Wähle Deine aktuelle Stimmung und erzähle sie Deinen Kontakten"
+#: mod/dfrn_request.php:228
+msgid "Unrecoverable protocol error."
+msgstr "Nicht behebbarer Protokollfehler."
 
-#: mod/newmember.php:7
-msgid "Welcome to Friendica"
-msgstr "Willkommen bei Friendica"
+#: mod/dfrn_request.php:256
+msgid "Profile unavailable."
+msgstr "Profil nicht verfügbar."
 
-#: mod/newmember.php:8
-msgid "New Member Checklist"
-msgstr "Checkliste für neue Mitglieder"
+#: mod/dfrn_request.php:283
+#, php-format
+msgid "%s has received too many connection requests today."
+msgstr "%s hat heute zu viele Kontaktanfragen erhalten."
 
-#: mod/newmember.php:10
-msgid ""
-"We would like to offer some tips and links to help make your experience "
-"enjoyable. Click any item to visit the relevant page. A link to this page "
-"will be visible from your home page for two weeks after your initial "
-"registration and then will quietly disappear."
-msgstr "Wir möchten Dir einige Tipps und Links anbieten, die Dir helfen könnten, den Einstieg angenehmer zu machen. Klicke auf ein Element, um die entsprechende Seite zu besuchen. Ein Link zu dieser Seite hier bleibt für Dich an Deiner Pinnwand für zwei Wochen nach dem Registrierungsdatum sichtbar und wird dann verschwinden."
+#: mod/dfrn_request.php:284
+msgid "Spam protection measures have been invoked."
+msgstr "Maßnahmen zum Spamschutz wurden ergriffen."
 
-#: mod/newmember.php:11
-msgid "Getting Started"
-msgstr "Einstieg"
+#: mod/dfrn_request.php:285
+msgid "Friends are advised to please try again in 24 hours."
+msgstr "Freunde sind angehalten, es in 24 Stunden erneut zu versuchen."
 
-#: mod/newmember.php:13
-msgid "Friendica Walk-Through"
-msgstr "Friendica Rundgang"
+#: mod/dfrn_request.php:347
+msgid "Invalid locator"
+msgstr "Ungültiger Locator"
 
-#: mod/newmember.php:13
-msgid ""
-"On your <em>Quick Start</em> page - find a brief introduction to your "
-"profile and network tabs, make some new connections, and find some groups to"
-" join."
-msgstr "Auf der <em>Quick Start</em> Seite findest Du eine kurze Einleitung in die einzelnen Funktionen Deines Profils und die Netzwerk-Reiter, wo Du interessante Foren findest und neue Kontakte knüpfst."
+#: mod/dfrn_request.php:356
+msgid "Invalid email address."
+msgstr "Ungültige E-Mail-Adresse."
 
-#: mod/newmember.php:17
-msgid "Go to Your Settings"
-msgstr "Gehe zu deinen Einstellungen"
+#: mod/dfrn_request.php:381
+msgid "This account has not been configured for email. Request failed."
+msgstr "Dieses Konto ist nicht für E-Mail konfiguriert. Anfrage fehlgeschlagen."
 
-#: mod/newmember.php:17
-msgid ""
-"On your <em>Settings</em> page -  change your initial password. Also make a "
-"note of your Identity Address. This looks just like an email address - and "
-"will be useful in making friends on the free social web."
-msgstr "Ändere bitte unter <em>Einstellungen</em> dein Passwort. Außerdem merke dir deine Identifikationsadresse. Diese sieht aus wie eine E-Mail-Adresse und wird benötigt, um Kontakte mit anderen im Friendica Netzwerk zu knüpfen.."
+#: mod/dfrn_request.php:484
+msgid "You have already introduced yourself here."
+msgstr "Du hast Dich hier bereits vorgestellt."
 
-#: mod/newmember.php:18
-msgid ""
-"Review the other settings, particularly the privacy settings. An unpublished"
-" directory listing is like having an unlisted phone number. In general, you "
-"should probably publish your listing - unless all of your friends and "
-"potential friends know exactly how to find you."
-msgstr "Überprüfe die restlichen Einstellungen, insbesondere die Einstellungen zur Privatsphäre. Wenn Du Dein Profil nicht veröffentlichst, ist das als wenn Du Deine Telefonnummer nicht ins Telefonbuch einträgst. Im Allgemeinen solltest Du es veröffentlichen - außer all Deine Kontakte und potentiellen Kontakte wissen genau, wie sie Dich finden können."
+#: mod/dfrn_request.php:488
+#, php-format
+msgid "Apparently you are already friends with %s."
+msgstr "Es scheint so, als ob Du bereits mit %s in Kontakt stehst."
 
-#: mod/newmember.php:22 mod/profile_photo.php:255 mod/profiles.php:703
-msgid "Upload Profile Photo"
-msgstr "Profilbild hochladen"
+#: mod/dfrn_request.php:509
+msgid "Invalid profile URL."
+msgstr "Ungültige Profil-URL."
 
-#: mod/newmember.php:22
-msgid ""
-"Upload a profile photo if you have not done so already. Studies have shown "
-"that people with real photos of themselves are ten times more likely to make"
-" friends than people who do not."
-msgstr "Lade ein Profilbild hoch, falls Du es noch nicht getan hast. Studien haben gezeigt, dass es zehnmal wahrscheinlicher ist neue Kontakte zu finden, wenn Du ein Bild von Dir selbst verwendest, als wenn Du dies nicht tust."
+#: mod/dfrn_request.php:594 mod/contacts.php:222
+msgid "Failed to update contact record."
+msgstr "Aktualisierung der Kontaktdaten fehlgeschlagen."
 
-#: mod/newmember.php:23
-msgid "Edit Your Profile"
-msgstr "Editiere dein Profil"
+#: mod/dfrn_request.php:615
+msgid "Your introduction has been sent."
+msgstr "Deine Kontaktanfrage wurde gesendet."
 
-#: mod/newmember.php:23
+#: mod/dfrn_request.php:657
 msgid ""
-"Edit your <strong>default</strong> profile to your liking. Review the "
-"settings for hiding your list of friends and hiding the profile from unknown"
-" visitors."
-msgstr "Editiere Dein <strong>Standard</strong> Profil nach Deinen Vorlieben. Überprüfe die Einstellungen zum Verbergen Deiner Kontaktliste vor unbekannten Betrachtern des Profils."
+"Remote subscription can't be done for your network. Please subscribe "
+"directly on your system."
+msgstr "Entferntes abon­nie­ren kann für dein Netzwerk nicht durchgeführt werden. Bitte nutze direkt die Abonnieren-Funktion deines Systems.   "
 
-#: mod/newmember.php:24
-msgid "Profile Keywords"
-msgstr "Profil Schlüsselbegriffe"
+#: mod/dfrn_request.php:678
+msgid "Please login to confirm introduction."
+msgstr "Bitte melde Dich an, um die Kontaktanfrage zu bestätigen."
 
-#: mod/newmember.php:24
+#: mod/dfrn_request.php:688
 msgid ""
-"Set some public keywords for your default profile which describe your "
-"interests. We may be able to find other people with similar interests and "
-"suggest friendships."
-msgstr "Trage ein paar öffentliche Stichwörter in Dein Standardprofil ein, die Deine Interessen beschreiben. Eventuell sind wir in der Lage Leute zu finden, die Deine Interessen teilen und können Dir dann Kontakte vorschlagen."
+"Incorrect identity currently logged in. Please login to "
+"<strong>this</strong> profile."
+msgstr "Momentan bist Du mit einer anderen Identität angemeldet. Bitte melde Dich mit <strong>diesem</strong> Profil an."
 
-#: mod/newmember.php:26
-msgid "Connecting"
-msgstr "Verbindungen knüpfen"
+#: mod/dfrn_request.php:702 mod/dfrn_request.php:719
+msgid "Confirm"
+msgstr "Bestätigen"
 
-#: mod/newmember.php:32
-msgid "Importing Emails"
-msgstr "Emails Importieren"
+#: mod/dfrn_request.php:714
+msgid "Hide this contact"
+msgstr "Verberge diesen Kontakt"
 
-#: mod/newmember.php:32
-msgid ""
-"Enter your email access information on your Connector Settings page if you "
-"wish to import and interact with friends or mailing lists from your email "
-"INBOX"
-msgstr "Gib Deine E-Mail-Zugangsinformationen auf der Connector-Einstellungsseite ein, falls Du E-Mails aus Deinem Posteingang importieren und mit Kontakten und Mailinglisten interagieren willst."
+#: mod/dfrn_request.php:717
+#, php-format
+msgid "Welcome home %s."
+msgstr "Willkommen zurück %s."
 
-#: mod/newmember.php:35
-msgid "Go to Your Contacts Page"
-msgstr "Gehe zu deiner Kontakt-Seite"
+#: mod/dfrn_request.php:718
+#, php-format
+msgid "Please confirm your introduction/connection request to %s."
+msgstr "Bitte bestätige Deine Kontaktanfrage bei %s."
 
-#: mod/newmember.php:35
+#: mod/dfrn_request.php:849
 msgid ""
-"Your Contacts page is your gateway to managing friendships and connecting "
-"with friends on other networks. Typically you enter their address or site "
-"URL in the <em>Add New Contact</em> dialog."
-msgstr "Die Kontakte-Seite ist die Einstiegsseite, von der aus Du Kontakte verwalten und Dich mit Personen in anderen Netzwerken verbinden kannst. Normalerweise gibst Du dazu einfach ihre Adresse oder die URL der Seite im Kasten <em>Neuen Kontakt hinzufügen</em> ein."
-
-#: mod/newmember.php:36
-msgid "Go to Your Site's Directory"
-msgstr "Gehe zum Verzeichnis Deiner Friendica Instanz"
+"Please enter your 'Identity Address' from one of the following supported "
+"communications networks:"
+msgstr "Bitte gib die Adresse Deines Profils in einem der unterstützten sozialen Netzwerke an:"
 
-#: mod/newmember.php:36
+#: mod/dfrn_request.php:873
+#, php-format
 msgid ""
-"The Directory page lets you find other people in this network or other "
-"federated sites. Look for a <em>Connect</em> or <em>Follow</em> link on "
-"their profile page. Provide your own Identity Address if requested."
-msgstr "Über die Verzeichnisseite kannst Du andere Personen auf diesem Server oder anderen verknüpften Seiten finden. Halte nach einem <em>Verbinden</em> oder <em>Folgen</em> Link auf deren Profilseiten Ausschau und gib Deine eigene Profiladresse an, falls Du danach gefragt wirst."
+"If you are not yet a member of the free social web, <a "
+"href=\"%s/siteinfo\">follow this link to find a public Friendica site and "
+"join us today</a>."
+msgstr "Wenn du noch kein Mitglied dieses freien sozialen Netzwerks bist, <a href=\"%s/siteinfo\">folge diesem Link</a> um einen öffentlichen Friendica-Server zu finden und beizutreten."
 
-#: mod/newmember.php:37
-msgid "Finding New People"
-msgstr "Neue Leute kennenlernen"
+#: mod/dfrn_request.php:878
+msgid "Friend/Connection Request"
+msgstr "Kontaktanfrage"
 
-#: mod/newmember.php:37
+#: mod/dfrn_request.php:879
 msgid ""
-"On the side panel of the Contacts page are several tools to find new "
-"friends. We can match people by interest, look up people by name or "
-"interest, and provide suggestions based on network relationships. On a brand"
-" new site, friend suggestions will usually begin to be populated within 24 "
-"hours."
-msgstr "Im seitlichen Bedienfeld der Kontakteseite gibt es diverse Werkzeuge, um neue Personen zu finden. Wir können Menschen mit den gleichen Interessen finden, anhand von Namen oder Interessen suchen oder aber aufgrund vorhandener Kontakte neue Leute vorschlagen.\nAuf einer brandneuen - soeben erstellten - Seite starten die Kontaktvorschläge innerhalb von 24 Stunden."
+"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, "
+"testuser@identi.ca"
+msgstr "Beispiele: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"
+
+#: mod/dfrn_request.php:880 mod/follow.php:149
+msgid "Please answer the following:"
+msgstr "Bitte beantworte folgendes:"
 
-#: mod/newmember.php:41
-msgid "Group Your Contacts"
-msgstr "Gruppiere deine Kontakte"
+#: mod/dfrn_request.php:881 mod/follow.php:150
+#, php-format
+msgid "Does %s know you?"
+msgstr "Kennt %s Dich?"
 
-#: mod/newmember.php:41
-msgid ""
-"Once you have made some friends, organize them into private conversation "
-"groups from the sidebar of your Contacts page and then you can interact with"
-" each group privately on your Network page."
-msgstr "Sobald Du einige Kontakte gefunden hast, organisiere sie in Gruppen zur privaten Kommunikation im Seitenmenü der Kontakte-Seite. Du kannst dann mit jeder dieser Gruppen von der Netzwerkseite aus privat interagieren."
+#: mod/dfrn_request.php:885 mod/follow.php:151
+msgid "Add a personal note:"
+msgstr "Eine persönliche Notiz beifügen:"
 
-#: mod/newmember.php:44
-msgid "Why Aren't My Posts Public?"
-msgstr "Warum sind meine Beiträge nicht öffentlich?"
+#: mod/dfrn_request.php:888
+msgid "StatusNet/Federated Social Web"
+msgstr "StatusNet/Federated Social Web"
 
-#: mod/newmember.php:44
+#: mod/dfrn_request.php:890
+#, php-format
 msgid ""
-"Friendica respects your privacy. By default, your posts will only show up to"
-" people you've added as friends. For more information, see the help section "
-"from the link above."
-msgstr "Friendica respektiert Deine Privatsphäre. Mit der Grundeinstellung werden Deine Beiträge ausschließlich Deinen Kontakten angezeigt. Für weitere Informationen diesbezüglich lies Dir bitte den entsprechenden Abschnitt in der Hilfe unter dem obigen Link durch."
+" - please do not use this form.  Instead, enter %s into your Diaspora search"
+" bar."
+msgstr " - bitte verwende dieses Formular nicht. Stattdessen suche nach %s in Deiner Diaspora Suchleiste."
 
-#: mod/newmember.php:48
-msgid "Getting Help"
-msgstr "Hilfe bekommen"
+#: mod/dfrn_request.php:891 mod/follow.php:157 mod/unfollow.php:113
+msgid "Your Identity Address:"
+msgstr "Adresse Deines Profils:"
 
-#: mod/newmember.php:50
-msgid "Go to the Help Section"
-msgstr "Zum Hilfe Abschnitt gehen"
+#: mod/dfrn_request.php:894 mod/follow.php:63 mod/unfollow.php:65
+msgid "Submit Request"
+msgstr "Anfrage abschicken"
 
-#: mod/newmember.php:50
-msgid ""
-"Our <strong>help</strong> pages may be consulted for detail on other program"
-" features and resources."
-msgstr "Unsere <strong>Hilfe</strong> Seiten können herangezogen werden, um weitere Einzelheiten zu andern Programm Features zu erhalten."
+#: mod/directory.php:195 view/theme/vier/theme.php:194
+msgid "Global Directory"
+msgstr "Weltweites Verzeichnis"
 
-#: mod/nogroup.php:45 mod/viewcontacts.php:105 mod/contacts.php:599
-#: mod/contacts.php:943
-#, php-format
-msgid "Visit %s's profile [%s]"
-msgstr "Besuche %ss Profil [%s]"
+#: mod/directory.php:197
+msgid "Find on this site"
+msgstr "Auf diesem Server suchen"
 
-#: mod/nogroup.php:46 mod/contacts.php:944
-msgid "Edit contact"
-msgstr "Kontakt bearbeiten"
+#: mod/directory.php:199
+msgid "Results for:"
+msgstr "Ergebnisse für:"
 
-#: mod/nogroup.php:67
-msgid "Contacts who are not members of a group"
-msgstr "Kontakte, die keiner Gruppe zugewiesen sind"
+#: mod/directory.php:201
+msgid "Site Directory"
+msgstr "Verzeichnis"
 
-#: mod/notifications.php:37
-msgid "Invalid request identifier."
-msgstr "Invalid request identifier."
+#: mod/directory.php:208
+msgid "No entries (some entries may be hidden)."
+msgstr "Keine Einträge (einige Einträge könnten versteckt sein)."
 
-#: mod/notifications.php:46 mod/notifications.php:182
-#: mod/notifications.php:229
-msgid "Discard"
-msgstr "Verwerfen"
+#: mod/dirfind.php:40
+#, php-format
+msgid "People Search - %s"
+msgstr "Personensuche - %s"
 
-#: mod/notifications.php:62 mod/notifications.php:181
-#: mod/notifications.php:265 mod/contacts.php:619 mod/contacts.php:819
-#: mod/contacts.php:1004
-msgid "Ignore"
-msgstr "Ignorieren"
+#: mod/dirfind.php:51
+#, php-format
+msgid "Forum Search - %s"
+msgstr "Forensuche - %s"
 
-#: mod/notifications.php:107
-msgid "Network Notifications"
-msgstr "Netzwerk Benachrichtigungen"
+#: mod/dirfind.php:248 mod/match.php:113
+msgid "No matches"
+msgstr "Keine Übereinstimmungen"
 
-#: mod/notifications.php:113 mod/notify.php:72
-msgid "System Notifications"
-msgstr "Systembenachrichtigungen"
+#: mod/editpost.php:20 mod/editpost.php:30
+msgid "Item not found"
+msgstr "Beitrag nicht gefunden"
 
-#: mod/notifications.php:119
-msgid "Personal Notifications"
-msgstr "Persönliche Benachrichtigungen"
+#: mod/editpost.php:35
+msgid "Edit post"
+msgstr "Beitrag bearbeiten"
 
-#: mod/notifications.php:125
-msgid "Home Notifications"
-msgstr "Pinnwand Benachrichtigungen"
+#: mod/events.php:97 mod/events.php:99
+msgid "Event can not end before it has started."
+msgstr "Die Veranstaltung kann nicht enden bevor sie beginnt."
 
-#: mod/notifications.php:154
-msgid "Show Ignored Requests"
-msgstr "Zeige ignorierte Anfragen"
+#: mod/events.php:106 mod/events.php:108
+msgid "Event title and start time are required."
+msgstr "Der Veranstaltungstitel und die Anfangszeit müssen angegeben werden."
 
-#: mod/notifications.php:154
-msgid "Hide Ignored Requests"
-msgstr "Verberge ignorierte Anfragen"
+#: mod/events.php:380
+msgid "Create New Event"
+msgstr "Neue Veranstaltung erstellen"
 
-#: mod/notifications.php:166 mod/notifications.php:236
-msgid "Notification type: "
-msgstr "Benachrichtigungstyp: "
+#: mod/events.php:485
+msgid "Event details"
+msgstr "Veranstaltungsdetails"
 
-#: mod/notifications.php:169
-#, php-format
-msgid "suggested by %s"
-msgstr "vorgeschlagen von %s"
+#: mod/events.php:486
+msgid "Starting date and Title are required."
+msgstr "Anfangszeitpunkt und Titel werden benötigt"
 
-#: mod/notifications.php:174 mod/notifications.php:253 mod/contacts.php:626
-msgid "Hide this contact from others"
-msgstr "Verbirg diesen Kontakt vor Anderen"
+#: mod/events.php:487 mod/events.php:488
+msgid "Event Starts:"
+msgstr "Veranstaltungsbeginn:"
 
-#: mod/notifications.php:175 mod/notifications.php:254
-msgid "Post a new friend activity"
-msgstr "Neue-Kontakt Nachricht senden"
+#: mod/events.php:487 mod/events.php:499 mod/profiles.php:707
+msgid "Required"
+msgstr "Benötigt"
 
-#: mod/notifications.php:175 mod/notifications.php:254
-msgid "if applicable"
-msgstr "falls anwendbar"
+#: mod/events.php:489 mod/events.php:505
+msgid "Finish date/time is not known or not relevant"
+msgstr "Enddatum/-zeit ist nicht bekannt oder nicht relevant"
 
-#: mod/notifications.php:178 mod/notifications.php:263 mod/admin.php:1596
-msgid "Approve"
-msgstr "Genehmigen"
+#: mod/events.php:491 mod/events.php:492
+msgid "Event Finishes:"
+msgstr "Veranstaltungsende:"
 
-#: mod/notifications.php:197
-msgid "Claims to be known to you: "
-msgstr "Behauptet Dich zu kennen: "
+#: mod/events.php:493 mod/events.php:506
+msgid "Adjust for viewer timezone"
+msgstr "An Zeitzone des Betrachters anpassen"
 
-#: mod/notifications.php:198
-msgid "yes"
-msgstr "ja"
+#: mod/events.php:495
+msgid "Description:"
+msgstr "Beschreibung"
 
-#: mod/notifications.php:198
-msgid "no"
-msgstr "nein"
+#: mod/events.php:499 mod/events.php:501
+msgid "Title:"
+msgstr "Titel:"
 
-#: mod/notifications.php:199 mod/notifications.php:204
-msgid "Shall your connection be bidirectional or not?"
-msgstr "Soll die Verbindung beidseitig sein oder nicht?"
+#: mod/events.php:502 mod/events.php:503
+msgid "Share this event"
+msgstr "Veranstaltung teilen"
 
-#: mod/notifications.php:200 mod/notifications.php:205
-#, php-format
-msgid ""
-"Accepting %s as a friend allows %s to subscribe to your posts, and you will "
-"also receive updates from them in your news feed."
-msgstr "Akzeptierst du %s als Kontakt, erlaubst du damit das Lesen deiner Beiträge und abonnierst selbst auch die Beiträge von %s."
+#: mod/events.php:532
+msgid "Failed to remove event"
+msgstr "Entfernen der Veranstaltung fehlgeschlagen"
 
-#: mod/notifications.php:201
-#, php-format
-msgid ""
-"Accepting %s as a subscriber allows them to subscribe to your posts, but you"
-" will not receive updates from them in your news feed."
-msgstr "Wenn du %s als Abonnent akzeptierst, erlaubst du damit das Lesen deiner Beiträge, wirst aber selbst die Beiträge der anderen Seite nicht erhalten."
+#: mod/events.php:534
+msgid "Event removed"
+msgstr "Veranstaltung enfternt"
 
-#: mod/notifications.php:206
-#, php-format
-msgid ""
-"Accepting %s as a sharer allows them to subscribe to your posts, but you "
-"will not receive updates from them in your news feed."
-msgstr "Wenn du %s als Teilenden akzeptierst, erlaubst du damit das Lesen deiner Beiträge, wirst aber selbst die Beiträge der anderen Seite nicht erhalten."
+#: mod/fetch.php:16 mod/fetch.php:43 mod/fetch.php:52 mod/help.php:57
+#: mod/p.php:20 mod/p.php:47 mod/p.php:56 index.php:302
+msgid "Not Found"
+msgstr "Nicht gefunden"
 
-#: mod/notifications.php:217
-msgid "Friend"
-msgstr "Kontakt"
+#: mod/follow.php:42
+msgid "Contact added"
+msgstr "Kontakt hinzugefügt"
 
-#: mod/notifications.php:218
-msgid "Sharer"
-msgstr "Teilenden"
+#: mod/follow.php:74
+msgid "You already added this contact."
+msgstr "Du hast den Kontakt bereits hinzugefügt."
 
-#: mod/notifications.php:218
-msgid "Subscriber"
-msgstr "Abonnent"
+#: mod/follow.php:83
+msgid "Diaspora support isn't enabled. Contact can't be added."
+msgstr "Diaspora Unterstützung ist nicht aktiviert. Der Kontakt kann nicht zugefügt werden."
 
-#: mod/notifications.php:257 mod/follow.php:131 mod/contacts.php:637
-msgid "Profile URL"
-msgstr "Profil URL"
+#: mod/follow.php:90
+msgid "OStatus support is disabled. Contact can't be added."
+msgstr "OStatus Unterstützung ist nicht aktiviert. Der Kontakt kann nicht zugefügt werden."
 
-#: mod/notifications.php:274
-msgid "No introductions."
-msgstr "Keine Kontaktanfragen."
+#: mod/follow.php:97
+msgid "The network type couldn't be detected. Contact can't be added."
+msgstr "Der Netzwerktype wurde nicht erkannt. Der Kontakt kann nicht hinzugefügt werden."
 
-#: mod/notifications.php:315
-msgid "Show unread"
-msgstr "Ungelesene anzeigen"
+#: mod/follow.php:166 mod/notifications.php:258 mod/contacts.php:653
+#: mod/unfollow.php:122
+msgid "Profile URL"
+msgstr "Profil URL"
 
-#: mod/notifications.php:315
-msgid "Show all"
-msgstr "Alle anzeigen"
+#: mod/friendica.php:70
+msgid "This is Friendica, version"
+msgstr "Dies ist Friendica, Version"
 
-#: mod/notifications.php:321
-#, php-format
-msgid "No more %s notifications."
-msgstr "Keine weiteren %s Benachrichtigungen"
+#: mod/friendica.php:71
+msgid "running at web location"
+msgstr "die unter folgender Webadresse zu finden ist"
 
-#: mod/notify.php:68
-msgid "No more system notifications."
-msgstr "Keine weiteren Systembenachrichtigungen."
+#: mod/friendica.php:75
+msgid ""
+"Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn "
+"more about the Friendica project."
+msgstr "Bitte besuche <a href=\"http://friendica.com\">Friendica.com</a>, um mehr über das Friendica Projekt zu erfahren."
 
-#: mod/oexchange.php:24
-msgid "Post successful."
-msgstr "Beitrag erfolgreich veröffentlicht."
+#: mod/friendica.php:79
+msgid "Bug reports and issues: please visit"
+msgstr "Probleme oder Fehler gefunden? Bitte besuche"
 
-#: mod/openid.php:24
-msgid "OpenID protocol error. No ID returned."
-msgstr "OpenID Protokollfehler. Keine ID zurückgegeben."
+#: mod/friendica.php:79
+msgid "the bugtracker at github"
+msgstr "den Bugtracker auf github"
 
-#: mod/openid.php:60
+#: mod/friendica.php:82
 msgid ""
-"Account not found and OpenID registration is not permitted on this site."
-msgstr "Nutzerkonto wurde nicht gefunden und OpenID-Registrierung ist auf diesem Server nicht gestattet."
-
-#: mod/ostatus_subscribe.php:16
-msgid "Subscribing to OStatus contacts"
-msgstr "OStatus Kontakten folgen"
+"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - "
+"dot com"
+msgstr "Vorschläge, Lob, Spenden usw.: E-Mail an \"Info\" at Friendica - dot com"
 
-#: mod/ostatus_subscribe.php:27
-msgid "No contact provided."
-msgstr "Keine Kontakte gefunden."
+#: mod/friendica.php:96
+msgid "Installed plugins/addons/apps:"
+msgstr "Installierte Plugins/Erweiterungen/Apps:"
 
-#: mod/ostatus_subscribe.php:33
-msgid "Couldn't fetch information for contact."
-msgstr "Konnte die Kontaktinformationen nicht einholen."
+#: mod/friendica.php:110
+msgid "No installed plugins/addons/apps"
+msgstr "Keine Plugins/Erweiterungen/Apps installiert"
 
-#: mod/ostatus_subscribe.php:42
-msgid "Couldn't fetch friends for contact."
-msgstr "Konnte die Kontaktliste des Kontakts nicht abfragen."
+#: mod/friendica.php:115
+msgid "On this server the following remote servers are blocked."
+msgstr "Auf diesem Server werden die folgenden entfernten Server blockiert."
 
-#: mod/ostatus_subscribe.php:56 mod/repair_ostatus.php:46
-msgid "Done"
-msgstr "Erledigt"
+#: mod/friendica.php:116 mod/admin.php:290 mod/admin.php:308
+msgid "Reason for the block"
+msgstr "Begründung für die Blockierung"
 
-#: mod/ostatus_subscribe.php:70
-msgid "success"
-msgstr "Erfolg"
+#: mod/group.php:31
+msgid "Group created."
+msgstr "Gruppe erstellt."
 
-#: mod/ostatus_subscribe.php:72
-msgid "failed"
-msgstr "Fehlgeschlagen"
+#: mod/group.php:37
+msgid "Could not create group."
+msgstr "Konnte die Gruppe nicht erstellen."
 
-#: mod/ostatus_subscribe.php:80 mod/repair_ostatus.php:52
-msgid "Keep this window open until done."
-msgstr "Lasse dieses Fenster offen, bis der Vorgang abgeschlossen ist."
+#: mod/group.php:51 mod/group.php:156
+msgid "Group not found."
+msgstr "Gruppe nicht gefunden."
 
-#: mod/p.php:12
-msgid "Not Extended"
-msgstr "Nicht erweitert."
+#: mod/group.php:65
+msgid "Group name changed."
+msgstr "Gruppenname geändert."
 
-#: mod/p.php:19 mod/p.php:46 mod/p.php:55 mod/fetch.php:15 mod/fetch.php:42
-#: mod/fetch.php:51 mod/help.php:56 index.php:301
-msgid "Not Found"
-msgstr "Nicht gefunden"
+#: mod/group.php:95
+msgid "Save Group"
+msgstr "Gruppe speichern"
 
-#: mod/photos.php:96 mod/photos.php:1902
-msgid "Recent Photos"
-msgstr "Neueste Fotos"
+#: mod/group.php:100
+msgid "Create a group of contacts/friends."
+msgstr "Eine Kontaktgruppe anlegen."
 
-#: mod/photos.php:99 mod/photos.php:1330 mod/photos.php:1904
-msgid "Upload New Photos"
-msgstr "Neue Fotos hochladen"
+#: mod/group.php:125
+msgid "Group removed."
+msgstr "Gruppe entfernt."
 
-#: mod/photos.php:114 mod/settings.php:38
-msgid "everybody"
-msgstr "jeder"
+#: mod/group.php:127
+msgid "Unable to remove group."
+msgstr "Konnte die Gruppe nicht entfernen."
 
-#: mod/photos.php:178
-msgid "Contact information unavailable"
-msgstr "Kontaktinformationen nicht verfügbar"
+#: mod/group.php:191
+msgid "Delete Group"
+msgstr "Gruppe löschen"
 
-#: mod/photos.php:199
-msgid "Album not found."
-msgstr "Album nicht gefunden."
+#: mod/group.php:197
+msgid "Group Editor"
+msgstr "Gruppeneditor"
 
-#: mod/photos.php:232 mod/photos.php:244 mod/photos.php:1274
-msgid "Delete Album"
-msgstr "Album löschen"
+#: mod/group.php:202
+msgid "Edit Group Name"
+msgstr "Gruppen Name bearbeiten"
 
-#: mod/photos.php:242
-msgid "Do you really want to delete this photo album and all its photos?"
-msgstr "Möchtest Du wirklich dieses Foto-Album und all seine Foto löschen?"
+#: mod/group.php:212
+msgid "Members"
+msgstr "Mitglieder"
 
-#: mod/photos.php:325 mod/photos.php:336 mod/photos.php:1600
-msgid "Delete Photo"
-msgstr "Foto löschen"
+#: mod/group.php:214 mod/contacts.php:721
+msgid "All Contacts"
+msgstr "Alle Kontakte"
 
-#: mod/photos.php:334
-msgid "Do you really want to delete this photo?"
-msgstr "Möchtest Du wirklich dieses Foto löschen?"
+#: mod/group.php:228
+msgid "Remove Contact"
+msgstr "Kontakt löschen"
 
-#: mod/photos.php:715
-#, php-format
-msgid "%1$s was tagged in %2$s by %3$s"
-msgstr "%1$s wurde von %3$s in %2$s getaggt"
+#: mod/group.php:252
+msgid "Add Contact"
+msgstr "Kontakt hinzufügen"
 
-#: mod/photos.php:715
-msgid "a photo"
-msgstr "einem Foto"
+#: mod/hcard.php:14
+msgid "No profile"
+msgstr "Kein Profil"
 
-#: mod/photos.php:815 mod/wall_upload.php:181 mod/profile_photo.php:155
-#, php-format
-msgid "Image exceeds size limit of %s"
-msgstr "Bildgröße überschreitet das Limit von %s"
+#: mod/help.php:45
+msgid "Help:"
+msgstr "Hilfe:"
 
-#: mod/photos.php:823
-msgid "Image file is empty."
-msgstr "Bilddatei ist leer."
+#: mod/help.php:60 index.php:305
+msgid "Page not found."
+msgstr "Seite nicht gefunden."
 
-#: mod/photos.php:856 mod/wall_upload.php:218 mod/profile_photo.php:164
-msgid "Unable to process image."
-msgstr "Konnte das Bild nicht bearbeiten."
+#: mod/home.php:42
+#, php-format
+msgid "Welcome to %s"
+msgstr "Willkommen zu %s"
 
-#: mod/photos.php:885 mod/wall_upload.php:257 mod/profile_photo.php:314
-msgid "Image upload failed."
-msgstr "Hochladen des Bildes gescheitert."
+#: mod/install.php:109
+msgid "Friendica Communications Server - Setup"
+msgstr "Friendica-Server für soziale Netzwerke – Setup"
 
-#: mod/photos.php:990
-msgid "No photos selected"
-msgstr "Keine Bilder ausgewählt"
+#: mod/install.php:115
+msgid "Could not connect to database."
+msgstr "Verbindung zur Datenbank gescheitert."
 
-#: mod/photos.php:1093 mod/videos.php:311
-msgid "Access to this item is restricted."
-msgstr "Zugriff zu diesem Eintrag wurde eingeschränkt."
+#: mod/install.php:119
+msgid "Could not create table."
+msgstr "Tabelle konnte nicht angelegt werden."
 
-#: mod/photos.php:1153
-#, php-format
-msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."
-msgstr "Du verwendest %1$.2f Mbyte von %2$.2f Mbyte des Foto-Speichers."
+#: mod/install.php:125
+msgid "Your Friendica site database has been installed."
+msgstr "Die Datenbank Deiner Friendicaseite wurde installiert."
 
-#: mod/photos.php:1190
-msgid "Upload Photos"
-msgstr "Bilder hochladen"
+#: mod/install.php:130
+msgid ""
+"You may need to import the file \"database.sql\" manually using phpmyadmin "
+"or mysql."
+msgstr "Möglicherweise musst Du die Datei \"database.sql\" manuell mit phpmyadmin oder mysql importieren."
 
-#: mod/photos.php:1194 mod/photos.php:1269
-msgid "New album name: "
-msgstr "Name des neuen Albums: "
+#: mod/install.php:131 mod/install.php:203 mod/install.php:550
+msgid "Please see the file \"INSTALL.txt\"."
+msgstr "Lies bitte die \"INSTALL.txt\"."
 
-#: mod/photos.php:1195
-msgid "or existing album name: "
-msgstr "oder existierender Albumname: "
+#: mod/install.php:143
+msgid "Database already in use."
+msgstr "Die Datenbank wird bereits verwendet."
 
-#: mod/photos.php:1196
-msgid "Do not show a status post for this upload"
-msgstr "Keine Status-Mitteilung für diesen Beitrag anzeigen"
+#: mod/install.php:200
+msgid "System check"
+msgstr "Systemtest"
 
-#: mod/photos.php:1207 mod/photos.php:1604 mod/settings.php:1308
-msgid "Show to Groups"
-msgstr "Zeige den Gruppen"
+#: mod/install.php:205
+msgid "Check again"
+msgstr "Noch einmal testen"
 
-#: mod/photos.php:1208 mod/photos.php:1605 mod/settings.php:1309
-msgid "Show to Contacts"
-msgstr "Zeige den Kontakten"
+#: mod/install.php:224
+msgid "Database connection"
+msgstr "Datenbankverbindung"
 
-#: mod/photos.php:1209
-msgid "Private Photo"
-msgstr "Privates Foto"
+#: mod/install.php:225
+msgid ""
+"In order to install Friendica we need to know how to connect to your "
+"database."
+msgstr "Um Friendica installieren zu können, müssen wir wissen, wie wir mit Deiner Datenbank Kontakt aufnehmen können."
 
-#: mod/photos.php:1210
-msgid "Public Photo"
-msgstr "Öffentliches Foto"
+#: mod/install.php:226
+msgid ""
+"Please contact your hosting provider or site administrator if you have "
+"questions about these settings."
+msgstr "Bitte kontaktiere den Hosting Provider oder den Administrator der Seite, falls Du Fragen zu diesen Einstellungen haben solltest."
 
-#: mod/photos.php:1280
-msgid "Edit Album"
-msgstr "Album bearbeiten"
+#: mod/install.php:227
+msgid ""
+"The database you specify below should already exist. If it does not, please "
+"create it before continuing."
+msgstr "Die Datenbank, die Du unten angibst, sollte bereits existieren. Ist dies noch nicht der Fall, erzeuge sie bitte bevor Du mit der Installation fortfährst."
 
-#: mod/photos.php:1285
-msgid "Show Newest First"
-msgstr "Zeige neueste zuerst"
+#: mod/install.php:231
+msgid "Database Server Name"
+msgstr "Datenbank-Server"
 
-#: mod/photos.php:1287
-msgid "Show Oldest First"
-msgstr "Zeige älteste zuerst"
+#: mod/install.php:232
+msgid "Database Login Name"
+msgstr "Datenbank-Nutzer"
 
-#: mod/photos.php:1316 mod/photos.php:1887
-msgid "View Photo"
-msgstr "Foto betrachten"
+#: mod/install.php:233
+msgid "Database Login Password"
+msgstr "Datenbank-Passwort"
 
-#: mod/photos.php:1361
-msgid "Permission denied. Access to this item may be restricted."
-msgstr "Zugriff verweigert. Zugriff zu diesem Eintrag könnte eingeschränkt sein."
+#: mod/install.php:233
+msgid "For security reasons the password must not be empty"
+msgstr "Aus Sicherheitsgründen darf das Passwort nicht leer sein."
 
-#: mod/photos.php:1363
-msgid "Photo not available"
-msgstr "Foto nicht verfügbar"
+#: mod/install.php:234
+msgid "Database Name"
+msgstr "Datenbank-Name"
 
-#: mod/photos.php:1424
-msgid "View photo"
-msgstr "Fotos ansehen"
+#: mod/install.php:235 mod/install.php:276
+msgid "Site administrator email address"
+msgstr "E-Mail-Adresse des Administrators"
 
-#: mod/photos.php:1424
-msgid "Edit photo"
-msgstr "Foto bearbeiten"
+#: mod/install.php:235 mod/install.php:276
+msgid ""
+"Your account email address must match this in order to use the web admin "
+"panel."
+msgstr "Die E-Mail-Adresse, die in Deinem Friendica-Account eingetragen ist, muss mit dieser Adresse übereinstimmen, damit Du das Admin-Panel benutzen kannst."
 
-#: mod/photos.php:1425
-msgid "Use as profile photo"
-msgstr "Als Profilbild verwenden"
+#: mod/install.php:239 mod/install.php:279
+msgid "Please select a default timezone for your website"
+msgstr "Bitte wähle die Standardzeitzone Deiner Webseite"
 
-#: mod/photos.php:1450
-msgid "View Full Size"
-msgstr "Betrachte Originalgröße"
+#: mod/install.php:266
+msgid "Site settings"
+msgstr "Server-Einstellungen"
 
-#: mod/photos.php:1540
-msgid "Tags: "
-msgstr "Tags: "
+#: mod/install.php:280
+msgid "System Language:"
+msgstr "Systemsprache:"
 
-#: mod/photos.php:1543
-msgid "[Remove any tag]"
-msgstr "[Tag entfernen]"
+#: mod/install.php:280
+msgid ""
+"Set the default language for your Friendica installation interface and to "
+"send emails."
+msgstr "Wähle die Standardsprache für deine Friendica-Installations-Oberfläche und den E-Mail-Versand"
 
-#: mod/photos.php:1586
-msgid "New album name"
-msgstr "Name des neuen Albums"
+#: mod/install.php:320
+msgid "Could not find a command line version of PHP in the web server PATH."
+msgstr "Konnte keine Kommandozeilenversion von PHP im PATH des Servers finden."
 
-#: mod/photos.php:1587
-msgid "Caption"
-msgstr "Bildunterschrift"
+#: mod/install.php:321
+msgid ""
+"If you don't have a command line version of PHP installed on server, you "
+"will not be able to run the background processing. See <a "
+"href='https://github.com/friendica/friendica/blob/master/doc/Install.md#set-"
+"up-the-poller'>'Setup the poller'</a>"
+msgstr "Wenn auf deinem Server keine Kommandozeilenversion von PHP installiert ist, kannst du den Hintergrundprozess nicht einrichten. Hier findest du alternative Möglichkeiten<a href='https://github.com/friendica/friendica/blob/master/doc/Install.md#set-up-the-poller'>'für das Poller Setup'</a>"
 
-#: mod/photos.php:1588
-msgid "Add a Tag"
-msgstr "Tag hinzufügen"
+#: mod/install.php:325
+msgid "PHP executable path"
+msgstr "Pfad zu PHP"
 
-#: mod/photos.php:1588
+#: mod/install.php:325
 msgid ""
-"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
-msgstr "Beispiel: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
+"Enter full path to php executable. You can leave this blank to continue the "
+"installation."
+msgstr "Gib den kompletten Pfad zur ausführbaren Datei von PHP an. Du kannst dieses Feld auch frei lassen und mit der Installation fortfahren."
 
-#: mod/photos.php:1589
-msgid "Do not rotate"
-msgstr "Nicht rotieren"
+#: mod/install.php:330
+msgid "Command line PHP"
+msgstr "Kommandozeilen-PHP"
 
-#: mod/photos.php:1590
-msgid "Rotate CW (right)"
-msgstr "Drehen US (rechts)"
+#: mod/install.php:339
+msgid "PHP executable is not the php cli binary (could be cgi-fgci version)"
+msgstr "Die ausführbare Datei von PHP stimmt nicht mit der PHP cli Version überein (es könnte sich um die cgi-fgci Version handeln)"
 
-#: mod/photos.php:1591
-msgid "Rotate CCW (left)"
-msgstr "Drehen EUS (links)"
+#: mod/install.php:340
+msgid "Found PHP version: "
+msgstr "Gefundene PHP Version:"
 
-#: mod/photos.php:1606
-msgid "Private photo"
-msgstr "Privates Foto"
+#: mod/install.php:342
+msgid "PHP cli binary"
+msgstr "PHP CLI Binary"
 
-#: mod/photos.php:1607
-msgid "Public photo"
-msgstr "Öffentliches Foto"
+#: mod/install.php:353
+msgid ""
+"The command line version of PHP on your system does not have "
+"\"register_argc_argv\" enabled."
+msgstr "Die Kommandozeilenversion von PHP auf Deinem System hat \"register_argc_argv\" nicht aktiviert."
 
-#: mod/photos.php:1816
-msgid "Map"
-msgstr "Karte"
+#: mod/install.php:354
+msgid "This is required for message delivery to work."
+msgstr "Dies wird für die Auslieferung von Nachrichten benötigt."
 
-#: mod/photos.php:1893 mod/videos.php:395
-msgid "View Album"
-msgstr "Album betrachten"
+#: mod/install.php:356
+msgid "PHP register_argc_argv"
+msgstr "PHP register_argc_argv"
 
-#: mod/poke.php:197
-msgid "Poke/Prod"
-msgstr "Anstupsen"
+#: mod/install.php:379
+msgid ""
+"Error: the \"openssl_pkey_new\" function on this system is not able to "
+"generate encryption keys"
+msgstr "Fehler: Die Funktion \"openssl_pkey_new\" auf diesem System ist nicht in der Lage, Verschlüsselungsschlüssel zu erzeugen"
+
+#: mod/install.php:380
+msgid ""
+"If running under Windows, please see "
+"\"http://www.php.net/manual/en/openssl.installation.php\"."
+msgstr "Wenn der Server unter Windows läuft, schau Dir bitte \"http://www.php.net/manual/en/openssl.installation.php\" an."
 
-#: mod/poke.php:198
-msgid "poke, prod or do other things to somebody"
-msgstr "Stupse Leute an oder mache anderes mit ihnen"
+#: mod/install.php:382
+msgid "Generate encryption keys"
+msgstr "Schlüssel erzeugen"
 
-#: mod/poke.php:199
-msgid "Recipient"
-msgstr "Empfänger"
+#: mod/install.php:389
+msgid "libCurl PHP module"
+msgstr "PHP: libCurl-Modul"
 
-#: mod/poke.php:200
-msgid "Choose what you wish to do to recipient"
-msgstr "Was willst Du mit dem Empfänger machen:"
+#: mod/install.php:390
+msgid "GD graphics PHP module"
+msgstr "PHP: GD-Grafikmodul"
 
-#: mod/poke.php:203
-msgid "Make this post private"
-msgstr "Diesen Beitrag privat machen"
+#: mod/install.php:391
+msgid "OpenSSL PHP module"
+msgstr "PHP: OpenSSL-Modul"
 
-#: mod/profperm.php:28 mod/profperm.php:59
-msgid "Invalid profile identifier."
-msgstr "Ungültiger Profil-Bezeichner."
+#: mod/install.php:392
+msgid "PDO or MySQLi PHP module"
+msgstr "PDO oder MySQLi PHP Modul"
 
-#: mod/profperm.php:105
-msgid "Profile Visibility Editor"
-msgstr "Editor für die Profil-Sichtbarkeit"
+#: mod/install.php:393
+msgid "mb_string PHP module"
+msgstr "PHP: mb_string-Modul"
 
-#: mod/profperm.php:118
-msgid "Visible To"
-msgstr "Sichtbar für"
+#: mod/install.php:394
+msgid "XML PHP module"
+msgstr "XML PHP Modul"
 
-#: mod/profperm.php:134
-msgid "All Contacts (with secure profile access)"
-msgstr "Alle Kontakte (mit gesichertem Profilzugriff)"
+#: mod/install.php:395
+msgid "iconv module"
+msgstr "iconv module"
 
-#: mod/removeme.php:54 mod/removeme.php:57
-msgid "Remove My Account"
-msgstr "Konto löschen"
+#: mod/install.php:399 mod/install.php:401
+msgid "Apache mod_rewrite module"
+msgstr "Apache mod_rewrite module"
 
-#: mod/removeme.php:55
+#: mod/install.php:399
 msgid ""
-"This will completely remove your account. Once this has been done it is not "
-"recoverable."
-msgstr "Dein Konto wird endgültig gelöscht. Es gibt keine Möglichkeit, es wiederherzustellen."
+"Error: Apache webserver mod-rewrite module is required but not installed."
+msgstr "Fehler: Das Apache-Modul mod-rewrite wird benötigt, es ist allerdings nicht installiert."
 
-#: mod/removeme.php:56
-msgid "Please enter your password for verification:"
-msgstr "Bitte gib Dein Passwort zur Verifikation ein:"
+#: mod/install.php:407
+msgid "Error: libCURL PHP module required but not installed."
+msgstr "Fehler: Das libCURL PHP Modul wird benötigt, ist aber nicht installiert."
 
-#: mod/repair_ostatus.php:16
-msgid "Resubscribing to OStatus contacts"
-msgstr "Erneuern der OStatus Abonements"
+#: mod/install.php:411
+msgid ""
+"Error: GD graphics PHP module with JPEG support required but not installed."
+msgstr "Fehler: Das GD-Graphikmodul für PHP mit JPEG-Unterstützung ist nicht installiert."
 
-#: mod/repair_ostatus.php:32
-msgid "Error"
-msgstr "Fehler"
+#: mod/install.php:415
+msgid "Error: openssl PHP module required but not installed."
+msgstr "Fehler: Das openssl-Modul von PHP ist nicht installiert."
 
-#: mod/subthread.php:105
-#, php-format
-msgid "%1$s is following %2$s's %3$s"
-msgstr "%1$s folgt %2$s %3$s"
+#: mod/install.php:419
+msgid "Error: PDO or MySQLi PHP module required but not installed."
+msgstr "Fehler: PDO oder MySQLi PHP Modul erforderlich, aber nicht installiert."
 
-#: mod/suggest.php:29
-msgid "Do you really want to delete this suggestion?"
-msgstr "Möchtest Du wirklich diese Empfehlung löschen?"
+#: mod/install.php:423
+msgid "Error: The MySQL driver for PDO is not installed."
+msgstr "Fehler: der MySQL Treiber für PDO ist nicht installiert"
 
-#: mod/suggest.php:73
-msgid ""
-"No suggestions available. If this is a new site, please try again in 24 "
-"hours."
-msgstr "Keine Vorschläge verfügbar. Falls der Server frisch aufgesetzt wurde, versuche es bitte in 24 Stunden noch einmal."
+#: mod/install.php:427
+msgid "Error: mb_string PHP module required but not installed."
+msgstr "Fehler: mb_string PHP Module wird benötigt ist aber nicht installiert."
 
-#: mod/suggest.php:86 mod/suggest.php:106
-msgid "Ignore/Hide"
-msgstr "Ignorieren/Verbergen"
+#: mod/install.php:431
+msgid "Error: iconv PHP module required but not installed."
+msgstr "Fehler: Das iconv-Modul von PHP ist nicht installiert."
 
-#: mod/tagrm.php:45
-msgid "Tag removed"
-msgstr "Tag entfernt"
+#: mod/install.php:441
+msgid "Error, XML PHP module required but not installed."
+msgstr "Fehler: XML PHP Modul erforderlich aber nicht installiert."
 
-#: mod/tagrm.php:84
-msgid "Remove Item Tag"
-msgstr "Gegenstands-Tag entfernen"
+#: mod/install.php:453
+msgid ""
+"The web installer needs to be able to create a file called \".htconfig.php\""
+" in the top folder of your web server and it is unable to do so."
+msgstr "Der Installationswizard muss in der Lage sein, eine Datei im Stammverzeichnis Deines Webservers anzulegen, ist allerdings derzeit nicht in der Lage, dies zu tun."
 
-#: mod/tagrm.php:86
-msgid "Select a tag to remove: "
-msgstr "Wähle ein Tag zum Entfernen aus: "
+#: mod/install.php:454
+msgid ""
+"This is most often a permission setting, as the web server may not be able "
+"to write files in your folder - even if you can."
+msgstr "In den meisten Fällen ist dies ein Problem mit den Schreibrechten. Der Webserver könnte keine Schreiberlaubnis haben, selbst wenn Du sie hast."
 
-#: mod/uexport.php:38
-msgid "Export account"
-msgstr "Account exportieren"
+#: mod/install.php:455
+msgid ""
+"At the end of this procedure, we will give you a text to save in a file "
+"named .htconfig.php in your Friendica top folder."
+msgstr "Nachdem Du alles ausgefüllt hast, erhältst Du einen Text, den Du in eine Datei namens .htconfig.php in Deinem Friendica-Wurzelverzeichnis kopieren musst."
 
-#: mod/uexport.php:38
+#: mod/install.php:456
 msgid ""
-"Export your account info and contacts. Use this to make a backup of your "
-"account and/or to move it to another server."
-msgstr "Exportiere Deine Accountinformationen und Kontakte. Verwende dies um ein Backup Deines Accounts anzulegen und/oder damit auf einen anderen Server umzuziehen."
+"You can alternatively skip this procedure and perform a manual installation."
+" Please see the file \"INSTALL.txt\" for instructions."
+msgstr "Alternativ kannst Du diesen Schritt aber auch überspringen und die Installation manuell durchführen. Eine Anleitung dazu (Englisch) findest Du in der Datei INSTALL.txt."
 
-#: mod/uexport.php:39
-msgid "Export all"
-msgstr "Alles exportieren"
+#: mod/install.php:459
+msgid ".htconfig.php is writable"
+msgstr "Schreibrechte auf .htconfig.php"
 
-#: mod/uexport.php:39
+#: mod/install.php:469
 msgid ""
-"Export your accout info, contacts and all your items as json. Could be a "
-"very big file, and could take a lot of time. Use this to make a full backup "
-"of your account (photos are not exported)"
-msgstr "Exportiere Deine Account Informationen, Kontakte und alle Einträge als JSON Datei. Dies könnte eine sehr große Datei werden und dementsprechend viel Zeit benötigen. Verwende dies um ein komplettes Backup Deines Accounts anzulegen (Fotos werden nicht exportiert)."
-
-#: mod/uexport.php:46 mod/settings.php:97
-msgid "Export personal data"
-msgstr "Persönliche Daten exportieren"
+"Friendica uses the Smarty3 template engine to render its web views. Smarty3 "
+"compiles templates to PHP to speed up rendering."
+msgstr "Friendica nutzt die Smarty3 Template Engine um die Webansichten zu rendern. Smarty3 kompiliert Templates zu PHP um das Rendern zu beschleunigen."
 
-#: mod/update_community.php:21 mod/update_display.php:25
-#: mod/update_notes.php:38 mod/update_profile.php:37 mod/update_network.php:29
-msgid "[Embedded content - reload page to view]"
-msgstr "[Eingebetteter Inhalt - Seite neu laden zum Betrachten]"
+#: mod/install.php:470
+msgid ""
+"In order to store these compiled templates, the web server needs to have "
+"write access to the directory view/smarty3/ under the Friendica top level "
+"folder."
+msgstr "Um diese kompilierten Templates zu speichern benötigt der Webserver Schreibrechte zum Verzeichnis view/smarty3/ im obersten Ordner von Friendica."
 
-#: mod/videos.php:126
-msgid "Do you really want to delete this video?"
-msgstr "Möchtest Du dieses Video wirklich löschen?"
+#: mod/install.php:471
+msgid ""
+"Please ensure that the user that your web server runs as (e.g. www-data) has"
+" write access to this folder."
+msgstr "Bitte stelle sicher, dass der Nutzer unter dem der Webserver läuft (z.B. www-data) Schreibrechte zu diesem Verzeichnis hat."
 
-#: mod/videos.php:131
-msgid "Delete Video"
-msgstr "Video Löschen"
+#: mod/install.php:472
+msgid ""
+"Note: as a security measure, you should give the web server write access to "
+"view/smarty3/ only--not the template files (.tpl) that it contains."
+msgstr "Hinweis: aus Sicherheitsgründen solltest Du dem Webserver nur Schreibrechte für view/smarty3/ geben -- Nicht den Templatedateien (.tpl) die sie enthalten."
 
-#: mod/videos.php:210
-msgid "No videos selected"
-msgstr "Keine Videos  ausgewählt"
+#: mod/install.php:475
+msgid "view/smarty3 is writable"
+msgstr "view/smarty3 ist schreibbar"
 
-#: mod/videos.php:404
-msgid "Recent Videos"
-msgstr "Neueste Videos"
+#: mod/install.php:491
+msgid ""
+"Url rewrite in .htaccess is not working. Check your server configuration."
+msgstr "Umschreiben der URLs in der .htaccess funktioniert nicht. Überprüfe die Konfiguration des Servers."
 
-#: mod/videos.php:406
-msgid "Upload New Videos"
-msgstr "Neues Video hochladen"
+#: mod/install.php:493
+msgid "Url rewrite is working"
+msgstr "URL rewrite funktioniert"
 
-#: mod/viewcontacts.php:78
-msgid "No contacts."
-msgstr "Keine Kontakte."
+#: mod/install.php:512
+msgid "ImageMagick PHP extension is not installed"
+msgstr "ImageMagicx PHP Erweiterung ist nicht installiert."
 
-#: mod/viewsrc.php:8
-msgid "Access denied."
-msgstr "Zugriff verweigert."
+#: mod/install.php:514
+msgid "ImageMagick PHP extension is installed"
+msgstr "ImageMagick PHP Erweiterung ist installiert"
 
-#: mod/wall_attach.php:19 mod/wall_attach.php:27 mod/wall_attach.php:78
-#: mod/wall_upload.php:36 mod/wall_upload.php:52 mod/wall_upload.php:110
-#: mod/wall_upload.php:150 mod/wall_upload.php:153
-msgid "Invalid request."
-msgstr "Ungültige Anfrage"
+#: mod/install.php:516
+msgid "ImageMagick supports GIF"
+msgstr "ImageMagick unterstützt GIF"
 
-#: mod/wall_attach.php:96
-msgid "Sorry, maybe your upload is bigger than the PHP configuration allows"
-msgstr "Entschuldige, die Datei scheint größer zu sein als es die PHP Konfiguration erlaubt."
+#: mod/install.php:523
+msgid ""
+"The database configuration file \".htconfig.php\" could not be written. "
+"Please use the enclosed text to create a configuration file in your web "
+"server root."
+msgstr "Die Konfigurationsdatei \".htconfig.php\" konnte nicht angelegt werden. Bitte verwende den angefügten Text, um die Datei im Stammverzeichnis Deiner Friendica-Installation zu erzeugen."
 
-#: mod/wall_attach.php:96
-msgid "Or - did you try to upload an empty file?"
-msgstr "Oder - hast Du versucht, eine leere Datei hochzuladen?"
+#: mod/install.php:548
+msgid "<h1>What next</h1>"
+msgstr "<h1>Wie geht es weiter?</h1>"
 
-#: mod/wall_attach.php:107
-#, php-format
-msgid "File exceeds size limit of %s"
-msgstr "Die Datei ist größer als das erlaubte Limit von %s"
+#: mod/install.php:549
+msgid ""
+"IMPORTANT: You will need to [manually] setup a scheduled task for the "
+"poller."
+msgstr "WICHTIG: Du musst [manuell] einen Cronjob (o.ä.) für den Poller einrichten."
 
-#: mod/wall_attach.php:160 mod/wall_attach.php:176
-msgid "File upload failed."
-msgstr "Hochladen der Datei fehlgeschlagen."
+#: mod/invite.php:31
+msgid "Total invitation limit exceeded."
+msgstr "Limit für Einladungen erreicht."
 
-#: mod/wallmessage.php:44 mod/wallmessage.php:108
+#: mod/invite.php:54
 #, php-format
-msgid "Number of daily wall messages for %s exceeded. Message failed."
-msgstr "Maximale Anzahl der täglichen Pinnwand Nachrichten für %s ist überschritten. Zustellung fehlgeschlagen."
+msgid "%s : Not a valid email address."
+msgstr "%s: Keine gültige Email Adresse."
 
-#: mod/wallmessage.php:55
-msgid "Unable to check your home location."
-msgstr "Konnte Deinen Heimatort nicht bestimmen."
+#: mod/invite.php:79
+msgid "Please join us on Friendica"
+msgstr "Ich lade Dich zu unserem sozialen Netzwerk Friendica ein"
 
-#: mod/wallmessage.php:82 mod/wallmessage.php:91
-msgid "No recipient."
-msgstr "Kein Empfänger."
+#: mod/invite.php:90
+msgid "Invitation limit exceeded. Please contact your site administrator."
+msgstr "Limit für Einladungen erreicht. Bitte kontaktiere des Administrator der Seite."
 
-#: mod/wallmessage.php:129
+#: mod/invite.php:94
 #, php-format
-msgid ""
-"If you wish for %s to respond, please check that the privacy settings on "
-"your site allow private mail from unknown senders."
-msgstr "Wenn Du möchtest, dass %s Dir antworten kann, überprüfe Deine Privatsphären-Einstellungen und erlaube private Nachrichten von unbekannten Absendern."
-
-#: mod/webfinger.php:11 mod/probe.php:10
-msgid "Only logged in users are permitted to perform a probing."
-msgstr "Nur eingeloggten Benutzern ist das Untersuchen von Adressen gestattet."
-
-#: mod/regmod.php:60
-msgid "Account approved."
-msgstr "Konto freigegeben."
+msgid "%s : Message delivery failed."
+msgstr "%s: Zustellung der Nachricht fehlgeschlagen."
 
-#: mod/regmod.php:88
+#: mod/invite.php:98
 #, php-format
-msgid "Registration revoked for %s"
-msgstr "Registrierung für %s wurde zurückgezogen"
-
-#: mod/regmod.php:100
-msgid "Please login."
-msgstr "Bitte melde Dich an."
-
-#: mod/uimport.php:53 mod/register.php:201
-msgid ""
-"This site has exceeded the number of allowed daily account registrations. "
-"Please try again tomorrow."
-msgstr "Die maximale Anzahl täglicher Registrierungen auf dieser Seite wurde überschritten. Bitte versuche es morgen noch einmal."
-
-#: mod/uimport.php:68 mod/register.php:298
-msgid "Import"
-msgstr "Import"
-
-#: mod/uimport.php:70
-msgid "Move account"
-msgstr "Account umziehen"
+msgid "%d message sent."
+msgid_plural "%d messages sent."
+msgstr[0] "%d Nachricht gesendet."
+msgstr[1] "%d Nachrichten gesendet."
 
-#: mod/uimport.php:71
-msgid "You can import an account from another Friendica server."
-msgstr "Du kannst einen Account von einem anderen Friendica Server importieren."
+#: mod/invite.php:117
+msgid "You have no more invitations available"
+msgstr "Du hast keine weiteren Einladungen"
 
-#: mod/uimport.php:72
+#: mod/invite.php:125
+#, php-format
 msgid ""
-"You need to export your account from the old server and upload it here. We "
-"will recreate your old account here with all your contacts. We will try also"
-" to inform your friends that you moved here."
-msgstr "Du musst Deinen Account vom alten Server exportieren und hier hochladen. Wir stellen Deinen alten Account mit all Deinen Kontakten wieder her. Wir werden auch versuchen all Deine Kontakte darüber zu informieren, dass Du hierher umgezogen bist."
+"Visit %s for a list of public sites that you can join. Friendica members on "
+"other sites can all connect with each other, as well as with members of many"
+" other social networks."
+msgstr "Besuche %s für eine Liste der öffentlichen Server, denen Du beitreten kannst. Friendica Mitglieder unterschiedlicher Server können sich sowohl alle miteinander verbinden, als auch mit Mitgliedern anderer Sozialer Netzwerke."
 
-#: mod/uimport.php:73
+#: mod/invite.php:127
+#, php-format
 msgid ""
-"This feature is experimental. We can't import contacts from the OStatus "
-"network (GNU Social/Statusnet) or from Diaspora"
-msgstr "Dieses Feature ist experimentell. Wir können keine Kontakte vom OStatus Netzwerk (GNU Social/Statusnet) oder von Diaspora importieren"
+"To accept this invitation, please visit and register at %s or any other "
+"public Friendica website."
+msgstr "Um diese Kontaktanfrage zu akzeptieren, besuche und registriere Dich bitte bei %s oder einer anderen öffentlichen Friendica Website."
 
-#: mod/uimport.php:74
-msgid "Account file"
-msgstr "Account Datei"
+#: mod/invite.php:128
+#, php-format
+msgid ""
+"Friendica sites all inter-connect to create a huge privacy-enhanced social "
+"web that is owned and controlled by its members. They can also connect with "
+"many traditional social networks. See %s for a list of alternate Friendica "
+"sites you can join."
+msgstr "Friendica Server verbinden sich alle untereinander, um ein großes datenschutzorientiertes Soziales Netzwerk zu bilden, das von seinen Mitgliedern betrieben und kontrolliert wird. Sie können sich auch mit vielen üblichen Sozialen Netzwerken verbinden. Besuche %s für eine Liste alternativer Friendica Server, denen Du beitreten kannst."
 
-#: mod/uimport.php:74
+#: mod/invite.php:132
 msgid ""
-"To export your account, go to \"Settings->Export your personal data\" and "
-"select \"Export account\""
-msgstr "Um Deinen Account zu exportieren, rufe \"Einstellungen -> Persönliche Daten exportieren\" auf und wähle \"Account exportieren\""
+"Our apologies. This system is not currently configured to connect with other"
+" public sites or invite members."
+msgstr "Es tut uns leid. Dieses System ist zurzeit nicht dafür konfiguriert, sich mit anderen öffentlichen Seiten zu verbinden oder Mitglieder einzuladen."
 
-#: mod/dfrn_request.php:103
-msgid "This introduction has already been accepted."
-msgstr "Diese Kontaktanfrage wurde bereits akzeptiert."
+#: mod/invite.php:135
+#, php-format
+msgid "To accept this invitation, please visit and register at %s."
+msgstr "Um diese Kontaktanfrage zu akzeptieren, besuche und registriere Dich bitte bei %s."
 
-#: mod/dfrn_request.php:126 mod/dfrn_request.php:528
-msgid "Profile location is not valid or does not contain profile information."
-msgstr "Profiladresse ist ungültig oder stellt keine Profildaten zur Verfügung."
+#: mod/invite.php:136
+msgid ""
+"Friendica sites all inter-connect to create a huge privacy-enhanced social "
+"web that is owned and controlled by its members. They can also connect with "
+"many traditional social networks."
+msgstr "Friendica Server verbinden sich alle untereinander, um ein großes datenschutzorientiertes Soziales Netzwerk zu bilden, das von seinen Mitgliedern betrieben und kontrolliert wird. Sie können sich auch mit vielen üblichen Sozialen Netzwerken verbinden."
 
-#: mod/dfrn_request.php:131 mod/dfrn_request.php:533
-msgid "Warning: profile location has no identifiable owner name."
-msgstr "Warnung: Es konnte kein Name des Besitzers von der angegebenen Profiladresse gefunden werden."
+#: mod/invite.php:142
+msgid "Send invitations"
+msgstr "Einladungen senden"
 
-#: mod/dfrn_request.php:134 mod/dfrn_request.php:536
-msgid "Warning: profile location has no profile photo."
-msgstr "Warnung: Es gibt kein Profilbild bei der angegebenen Profiladresse."
+#: mod/invite.php:143
+msgid "Enter email addresses, one per line:"
+msgstr "E-Mail-Adressen eingeben, eine pro Zeile:"
 
-#: mod/dfrn_request.php:138 mod/dfrn_request.php:540
-#, php-format
-msgid "%d required parameter was not found at the given location"
-msgid_plural "%d required parameters were not found at the given location"
-msgstr[0] "%d benötigter Parameter wurde an der angegebenen Stelle nicht gefunden"
-msgstr[1] "%d benötigte Parameter wurden an der angegebenen Stelle nicht gefunden"
+#: mod/invite.php:144 mod/message.php:332 mod/message.php:515
+#: mod/wallmessage.php:138
+msgid "Your message:"
+msgstr "Deine Nachricht:"
 
-#: mod/dfrn_request.php:182
-msgid "Introduction complete."
-msgstr "Kontaktanfrage abgeschlossen."
+#: mod/invite.php:145
+msgid ""
+"You are cordially invited to join me and other close friends on Friendica - "
+"and help us to create a better social web."
+msgstr "Du bist herzlich dazu eingeladen, Dich mir und anderen guten Freunden auf Friendica anzuschließen - und ein besseres Soziales Netz aufzubauen."
 
-#: mod/dfrn_request.php:227
-msgid "Unrecoverable protocol error."
-msgstr "Nicht behebbarer Protokollfehler."
+#: mod/invite.php:147
+msgid "You will need to supply this invitation code: $invite_code"
+msgstr "Du benötigst den folgenden Einladungscode: $invite_code"
 
-#: mod/dfrn_request.php:255
-msgid "Profile unavailable."
-msgstr "Profil nicht verfügbar."
+#: mod/invite.php:147
+msgid ""
+"Once you have registered, please connect with me via my profile page at:"
+msgstr "Sobald Du registriert bist, kontaktiere mich bitte auf meiner Profilseite:"
 
-#: mod/dfrn_request.php:282
-#, php-format
-msgid "%s has received too many connection requests today."
-msgstr "%s hat heute zu viele Kontaktanfragen erhalten."
+#: mod/invite.php:149
+msgid ""
+"For more information about the Friendica project and why we feel it is "
+"important, please visit http://friendi.ca"
+msgstr "Für weitere Informationen über das Friendica Projekt und warum wir es für ein wichtiges Projekt halten, besuche bitte http://friendi.ca."
 
-#: mod/dfrn_request.php:283
-msgid "Spam protection measures have been invoked."
-msgstr "Maßnahmen zum Spamschutz wurden ergriffen."
+#: mod/item.php:119
+msgid "Unable to locate original post."
+msgstr "Konnte den Originalbeitrag nicht finden."
 
-#: mod/dfrn_request.php:284
-msgid "Friends are advised to please try again in 24 hours."
-msgstr "Freunde sind angehalten, es in 24 Stunden erneut zu versuchen."
+#: mod/item.php:346
+msgid "Empty post discarded."
+msgstr "Leerer Beitrag wurde verworfen."
 
-#: mod/dfrn_request.php:346
-msgid "Invalid locator"
-msgstr "Ungültiger Locator"
+#: mod/item.php:903
+msgid "System error. Post not saved."
+msgstr "Systemfehler. Beitrag konnte nicht gespeichert werden."
 
-#: mod/dfrn_request.php:355
-msgid "Invalid email address."
-msgstr "Ungültige E-Mail-Adresse."
+#: mod/item.php:994
+#, php-format
+msgid ""
+"This message was sent to you by %s, a member of the Friendica social "
+"network."
+msgstr "Diese Nachricht wurde dir von %s geschickt, einem Mitglied des Sozialen Netzwerks Friendica."
 
-#: mod/dfrn_request.php:380
-msgid "This account has not been configured for email. Request failed."
-msgstr "Dieses Konto ist nicht für E-Mail konfiguriert. Anfrage fehlgeschlagen."
+#: mod/item.php:996
+#, php-format
+msgid "You may visit them online at %s"
+msgstr "Du kannst sie online unter %s besuchen"
 
-#: mod/dfrn_request.php:483
-msgid "You have already introduced yourself here."
-msgstr "Du hast Dich hier bereits vorgestellt."
+#: mod/item.php:997
+msgid ""
+"Please contact the sender by replying to this post if you do not wish to "
+"receive these messages."
+msgstr "Falls Du diese Beiträge nicht erhalten möchtest, kontaktiere bitte den Autor, indem Du auf diese Nachricht antwortest."
 
-#: mod/dfrn_request.php:487
+#: mod/item.php:1001
 #, php-format
-msgid "Apparently you are already friends with %s."
-msgstr "Es scheint so, als ob Du bereits mit %s in Kontakt stehst."
+msgid "%s posted an update."
+msgstr "%s hat ein Update veröffentlicht."
 
-#: mod/dfrn_request.php:508
-msgid "Invalid profile URL."
-msgstr "Ungültige Profil-URL."
+#: mod/localtime.php:26
+msgid "Time Conversion"
+msgstr "Zeitumrechnung"
 
-#: mod/dfrn_request.php:593 mod/contacts.php:221
-msgid "Failed to update contact record."
-msgstr "Aktualisierung der Kontaktdaten fehlgeschlagen."
+#: mod/localtime.php:28
+msgid ""
+"Friendica provides this service for sharing events with other networks and "
+"friends in unknown timezones."
+msgstr "Friendica bietet diese Funktion an, um das Teilen von Events mit Kontakten zu vereinfachen, deren Zeitzone nicht ermittelt werden kann."
 
-#: mod/dfrn_request.php:614
-msgid "Your introduction has been sent."
-msgstr "Deine Kontaktanfrage wurde gesendet."
+#: mod/localtime.php:32
+#, php-format
+msgid "UTC time: %s"
+msgstr "UTC Zeit: %s"
 
-#: mod/dfrn_request.php:656
-msgid ""
-"Remote subscription can't be done for your network. Please subscribe "
-"directly on your system."
-msgstr "Entferntes abon­nie­ren kann für dein Netzwerk nicht durchgeführt werden. Bitte nutze direkt die Abonnieren-Funktion deines Systems.   "
+#: mod/localtime.php:35
+#, php-format
+msgid "Current timezone: %s"
+msgstr "Aktuelle Zeitzone: %s"
 
-#: mod/dfrn_request.php:677
-msgid "Please login to confirm introduction."
-msgstr "Bitte melde Dich an, um die Kontaktanfrage zu bestätigen."
+#: mod/localtime.php:38
+#, php-format
+msgid "Converted localtime: %s"
+msgstr "Umgerechnete lokale Zeit: %s"
 
-#: mod/dfrn_request.php:687
-msgid ""
-"Incorrect identity currently logged in. Please login to "
-"<strong>this</strong> profile."
-msgstr "Momentan bist Du mit einer anderen Identität angemeldet. Bitte melde Dich mit <strong>diesem</strong> Profil an."
+#: mod/localtime.php:43
+msgid "Please select your timezone:"
+msgstr "Bitte wähle Deine Zeitzone:"
 
-#: mod/dfrn_request.php:701 mod/dfrn_request.php:718
-msgid "Confirm"
-msgstr "Bestätigen"
+#: mod/lostpass.php:22
+msgid "No valid account found."
+msgstr "Kein gültiges Konto gefunden."
 
-#: mod/dfrn_request.php:713
-msgid "Hide this contact"
-msgstr "Verberge diesen Kontakt"
+#: mod/lostpass.php:38
+msgid "Password reset request issued. Check your email."
+msgstr "Zurücksetzen des Passworts eingeleitet. Bitte überprüfe Deine E-Mail."
 
-#: mod/dfrn_request.php:716
+#: mod/lostpass.php:44
 #, php-format
-msgid "Welcome home %s."
-msgstr "Willkommen zurück %s."
+msgid ""
+"\n"
+"\t\tDear %1$s,\n"
+"\t\t\tA request was recently received at \"%2$s\" to reset your account\n"
+"\t\tpassword. In order to confirm this request, please select the verification link\n"
+"\t\tbelow or paste it into your web browser address bar.\n"
+"\n"
+"\t\tIf you did NOT request this change, please DO NOT follow the link\n"
+"\t\tprovided and ignore and/or delete this email.\n"
+"\n"
+"\t\tYour password will not be changed unless we can verify that you\n"
+"\t\tissued this request."
+msgstr "\nHallo %1$s,\n\nAuf \"%2$s\" ist eine Anfrage auf das Zurücksetzen Deines Passworts gestellt\nworden. Um diese Anfrage zu verifizieren, folge bitte dem unten stehenden\nLink oder kopiere und füge ihn in die Adressleiste Deines Browsers ein.\n\nSolltest Du die Anfrage NICHT gemacht haben, ignoriere und/oder lösche diese\nE-Mail bitte.\n\nDein Passwort wird nicht geändert, solange wir nicht verifiziert haben, dass\nDu diese Änderung angefragt hast."
 
-#: mod/dfrn_request.php:717
+#: mod/lostpass.php:55
 #, php-format
-msgid "Please confirm your introduction/connection request to %s."
-msgstr "Bitte bestätige Deine Kontaktanfrage bei %s."
-
-#: mod/dfrn_request.php:848
 msgid ""
-"Please enter your 'Identity Address' from one of the following supported "
-"communications networks:"
-msgstr "Bitte gib die Adresse Deines Profils in einem der unterstützten sozialen Netzwerke an:"
+"\n"
+"\t\tFollow this link to verify your identity:\n"
+"\n"
+"\t\t%1$s\n"
+"\n"
+"\t\tYou will then receive a follow-up message containing the new password.\n"
+"\t\tYou may change that password from your account settings page after logging in.\n"
+"\n"
+"\t\tThe login details are as follows:\n"
+"\n"
+"\t\tSite Location:\t%2$s\n"
+"\t\tLogin Name:\t%3$s"
+msgstr "\nUm Deine Identität zu verifizieren, folge bitte dem folgenden Link:\n\n%1$s\n\nDu wirst eine weitere E-Mail mit Deinem neuen Passwort erhalten. Sobald Du Dich\nangemeldet hast, kannst Du Dein Passwort in den Einstellungen ändern.\n\nDie Anmeldedetails sind die folgenden:\n\nAdresse der Seite:\t%2$s\nBenutzername:\t%3$s"
 
-#: mod/dfrn_request.php:872
+#: mod/lostpass.php:74
 #, php-format
+msgid "Password reset requested at %s"
+msgstr "Anfrage zum Zurücksetzen des Passworts auf %s erhalten"
+
+#: mod/lostpass.php:94
 msgid ""
-"If you are not yet a member of the free social web, <a "
-"href=\"%s/siteinfo\">follow this link to find a public Friendica site and "
-"join us today</a>."
-msgstr "Wenn du noch kein Mitglied dieses freien sozialen Netzwerks bist, <a href=\"%s/siteinfo\">folge diesem Link</a> um einen öffentlichen Friendica-Server zu finden und beizutreten."
+"Request could not be verified. (You may have previously submitted it.) "
+"Password reset failed."
+msgstr "Anfrage konnte nicht verifiziert werden. (Eventuell hast Du bereits eine ähnliche Anfrage gestellt.) Zurücksetzen des Passworts gescheitert."
 
-#: mod/dfrn_request.php:877
-msgid "Friend/Connection Request"
-msgstr "Kontaktanfrage"
+#: mod/lostpass.php:113 boot.php:884
+msgid "Password Reset"
+msgstr "Passwort zurücksetzen"
 
-#: mod/dfrn_request.php:878
-msgid ""
-"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, "
-"testuser@identi.ca"
-msgstr "Beispiele: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"
+#: mod/lostpass.php:114
+msgid "Your password has been reset as requested."
+msgstr "Dein Passwort wurde wie gewünscht zurückgesetzt."
 
-#: mod/dfrn_request.php:879 mod/follow.php:114
-msgid "Please answer the following:"
-msgstr "Bitte beantworte folgendes:"
+#: mod/lostpass.php:115
+msgid "Your new password is"
+msgstr "Dein neues Passwort lautet"
 
-#: mod/dfrn_request.php:880 mod/follow.php:115
-#, php-format
-msgid "Does %s know you?"
-msgstr "Kennt %s Dich?"
+#: mod/lostpass.php:116
+msgid "Save or copy your new password - and then"
+msgstr "Speichere oder kopiere Dein neues Passwort - und dann"
 
-#: mod/dfrn_request.php:884 mod/follow.php:116
-msgid "Add a personal note:"
-msgstr "Eine persönliche Notiz beifügen:"
+#: mod/lostpass.php:117
+msgid "click here to login"
+msgstr "hier klicken, um Dich anzumelden"
 
-#: mod/dfrn_request.php:887
-msgid "StatusNet/Federated Social Web"
-msgstr "StatusNet/Federated Social Web"
+#: mod/lostpass.php:118
+msgid ""
+"Your password may be changed from the <em>Settings</em> page after "
+"successful login."
+msgstr "Du kannst das Passwort in den <em>Einstellungen</em> ändern, sobald Du Dich erfolgreich angemeldet hast."
+
+#: mod/lostpass.php:128
+#, php-format
+msgid ""
+"\n"
+"\t\t\t\tDear %1$s,\n"
+"\t\t\t\t\tYour password has been changed as requested. Please retain this\n"
+"\t\t\t\tinformation for your records (or change your password immediately to\n"
+"\t\t\t\tsomething that you will remember).\n"
+"\t\t\t"
+msgstr "\nHallo %1$s,\n\nDein Passwort wurde wie gewünscht geändert. Bitte bewahre diese Informationen gut auf (oder ändere Dein Passwort in eines, das Du Dir leicht merken kannst)."
 
-#: mod/dfrn_request.php:889
+#: mod/lostpass.php:134
 #, php-format
 msgid ""
-" - please do not use this form.  Instead, enter %s into your Diaspora search"
-" bar."
-msgstr " - bitte verwende dieses Formular nicht. Stattdessen suche nach %s in Deiner Diaspora Suchleiste."
+"\n"
+"\t\t\t\tYour login details are as follows:\n"
+"\n"
+"\t\t\t\tSite Location:\t%1$s\n"
+"\t\t\t\tLogin Name:\t%2$s\n"
+"\t\t\t\tPassword:\t%3$s\n"
+"\n"
+"\t\t\t\tYou may change that password from your account settings page after logging in.\n"
+"\t\t\t"
+msgstr "\nDie Anmeldedaten sind die folgenden:\n\nAdresse der Seite: %1$s\nLogin Name: %2$s\nPasswort: %3$s\n\nDas Passwort kann und sollte in den Kontoeinstellungen nach der Anmeldung geändert werden."
 
-#: mod/dfrn_request.php:890 mod/follow.php:122
-msgid "Your Identity Address:"
-msgstr "Adresse Deines Profils:"
+#: mod/lostpass.php:150
+#, php-format
+msgid "Your password has been changed at %s"
+msgstr "Auf %s wurde Dein Passwort geändert"
 
-#: mod/dfrn_request.php:893 mod/follow.php:21
-msgid "Submit Request"
-msgstr "Anfrage abschicken"
+#: mod/lostpass.php:162
+msgid "Forgot your Password?"
+msgstr "Hast Du Dein Passwort vergessen?"
 
-#: mod/dirfind.php:39
-#, php-format
-msgid "People Search - %s"
-msgstr "Personensuche - %s"
+#: mod/lostpass.php:163
+msgid ""
+"Enter your email address and submit to have your password reset. Then check "
+"your email for further instructions."
+msgstr "Gib Deine E-Mail-Adresse an und fordere ein neues Passwort an. Es werden Dir dann weitere Informationen per Mail zugesendet."
 
-#: mod/dirfind.php:50
-#, php-format
-msgid "Forum Search - %s"
-msgstr "Forensuche - %s"
+#: mod/lostpass.php:164 boot.php:872
+msgid "Nickname or Email: "
+msgstr "Spitzname oder E-Mail:"
 
-#: mod/events.php:96 mod/events.php:98
-msgid "Event can not end before it has started."
-msgstr "Die Veranstaltung kann nicht enden bevor sie beginnt."
+#: mod/lostpass.php:165
+msgid "Reset"
+msgstr "Zurücksetzen"
 
-#: mod/events.php:105 mod/events.php:107
-msgid "Event title and start time are required."
-msgstr "Der Veranstaltungstitel und die Anfangszeit müssen angegeben werden."
+#: mod/manage.php:153
+msgid "Manage Identities and/or Pages"
+msgstr "Verwalte Identitäten und/oder Seiten"
 
-#: mod/events.php:379
-msgid "Create New Event"
-msgstr "Neue Veranstaltung erstellen"
+#: mod/manage.php:154
+msgid ""
+"Toggle between different identities or community/group pages which share "
+"your account details or which you have been granted \"manage\" permissions"
+msgstr "Zwischen verschiedenen Identitäten oder Gemeinschafts-/Gruppenseiten wechseln, die Deine Kontoinformationen teilen oder zu denen Du „Verwalten“-Befugnisse bekommen hast."
 
-#: mod/events.php:484
-msgid "Event details"
-msgstr "Veranstaltungsdetails"
+#: mod/manage.php:155
+msgid "Select an identity to manage: "
+msgstr "Wähle eine Identität zum Verwalten aus: "
 
-#: mod/events.php:485
-msgid "Starting date and Title are required."
-msgstr "Anfangszeitpunkt und Titel werden benötigt"
+#: mod/match.php:39
+msgid "No keywords to match. Please add keywords to your default profile."
+msgstr "Keine Schlüsselwörter zum Abgleichen gefunden. Bitte füge einige Schlüsselwörter zu Deinem Standardprofil hinzu."
 
-#: mod/events.php:486 mod/events.php:487
-msgid "Event Starts:"
-msgstr "Veranstaltungsbeginn:"
+#: mod/match.php:92
+msgid "is interested in:"
+msgstr "ist interessiert an:"
 
-#: mod/events.php:486 mod/events.php:498 mod/profiles.php:712
-msgid "Required"
-msgstr "Benötigt"
+#: mod/match.php:106
+msgid "Profile Match"
+msgstr "Profilübereinstimmungen"
 
-#: mod/events.php:488 mod/events.php:504
-msgid "Finish date/time is not known or not relevant"
-msgstr "Enddatum/-zeit ist nicht bekannt oder nicht relevant"
+#: mod/message.php:63 mod/wallmessage.php:53
+msgid "No recipient selected."
+msgstr "Kein Empfänger gewählt."
 
-#: mod/events.php:490 mod/events.php:491
-msgid "Event Finishes:"
-msgstr "Veranstaltungsende:"
+#: mod/message.php:67
+msgid "Unable to locate contact information."
+msgstr "Konnte die Kontaktinformationen nicht finden."
 
-#: mod/events.php:492 mod/events.php:505
-msgid "Adjust for viewer timezone"
-msgstr "An Zeitzone des Betrachters anpassen"
+#: mod/message.php:70 mod/wallmessage.php:59
+msgid "Message could not be sent."
+msgstr "Nachricht konnte nicht gesendet werden."
 
-#: mod/events.php:494
-msgid "Description:"
-msgstr "Beschreibung"
+#: mod/message.php:73 mod/wallmessage.php:62
+msgid "Message collection failure."
+msgstr "Konnte Nachrichten nicht abrufen."
 
-#: mod/events.php:498 mod/events.php:500
-msgid "Title:"
-msgstr "Titel:"
+#: mod/message.php:76 mod/wallmessage.php:65
+msgid "Message sent."
+msgstr "Nachricht gesendet."
 
-#: mod/events.php:501 mod/events.php:502
-msgid "Share this event"
-msgstr "Veranstaltung teilen"
+#: mod/message.php:205
+msgid "Do you really want to delete this message?"
+msgstr "Möchtest Du wirklich diese Nachricht löschen?"
 
-#: mod/events.php:531
-msgid "Failed to remove event"
-msgstr "Entfernen der Veranstaltung fehlgeschlagen"
+#: mod/message.php:225
+msgid "Message deleted."
+msgstr "Nachricht gelöscht."
 
-#: mod/events.php:533
-msgid "Event removed"
-msgstr "Veranstaltung enfternt"
+#: mod/message.php:255
+msgid "Conversation removed."
+msgstr "Unterhaltung gelöscht."
 
-#: mod/follow.php:32
-msgid "You already added this contact."
-msgstr "Du hast den Kontakt bereits hinzugefügt."
+#: mod/message.php:322 mod/wallmessage.php:129
+msgid "Send Private Message"
+msgstr "Private Nachricht senden"
 
-#: mod/follow.php:41
-msgid "Diaspora support isn't enabled. Contact can't be added."
-msgstr "Diaspora Unterstützung ist nicht aktiviert. Der Kontakt kann nicht zugefügt werden."
+#: mod/message.php:323 mod/message.php:510 mod/wallmessage.php:131
+msgid "To:"
+msgstr "An:"
 
-#: mod/follow.php:48
-msgid "OStatus support is disabled. Contact can't be added."
-msgstr "OStatus Unterstützung ist nicht aktiviert. Der Kontakt kann nicht zugefügt werden."
+#: mod/message.php:328 mod/message.php:512 mod/wallmessage.php:132
+msgid "Subject:"
+msgstr "Betreff:"
 
-#: mod/follow.php:55
-msgid "The network type couldn't be detected. Contact can't be added."
-msgstr "Der Netzwerktype wurde nicht erkannt. Der Kontakt kann nicht hinzugefügt werden."
+#: mod/message.php:364
+msgid "No messages."
+msgstr "Keine Nachrichten."
 
-#: mod/follow.php:188
-msgid "Contact added"
-msgstr "Kontakt hinzugefügt"
+#: mod/message.php:403
+msgid "Message not available."
+msgstr "Nachricht nicht verfügbar."
 
-#: mod/ping.php:274
-msgid "{0} wants to be your friend"
-msgstr "{0} möchte mit Dir in Kontakt treten"
+#: mod/message.php:478
+msgid "Delete message"
+msgstr "Nachricht löschen"
 
-#: mod/ping.php:289
-msgid "{0} sent you a message"
-msgstr "{0} schickte Dir eine Nachricht"
+#: mod/message.php:503 mod/message.php:591
+msgid "Delete conversation"
+msgstr "Unterhaltung löschen"
 
-#: mod/ping.php:304
-msgid "{0} requested registration"
-msgstr "{0} möchte sich registrieren"
+#: mod/message.php:505
+msgid ""
+"No secure communications available. You <strong>may</strong> be able to "
+"respond from the sender's profile page."
+msgstr "Sichere Kommunikation ist nicht verfügbar. <strong>Eventuell</strong> kannst Du auf der Profilseite des Absenders antworten."
 
-#: mod/profile_photo.php:44
-msgid "Image uploaded but image cropping failed."
-msgstr "Bild hochgeladen, aber das Zuschneiden schlug fehl."
+#: mod/message.php:509
+msgid "Send Reply"
+msgstr "Antwort senden"
 
-#: mod/profile_photo.php:77 mod/profile_photo.php:85 mod/profile_photo.php:93
-#: mod/profile_photo.php:322
+#: mod/message.php:561
 #, php-format
-msgid "Image size reduction [%s] failed."
-msgstr "Verkleinern der Bildgröße von [%s] scheiterte."
-
-#: mod/profile_photo.php:127
-msgid ""
-"Shift-reload the page or clear browser cache if the new photo does not "
-"display immediately."
-msgstr "Drücke Umschalt+Neu Laden oder leere den Browser-Cache, falls das neue Foto nicht gleich angezeigt wird."
+msgid "Unknown sender - %s"
+msgstr "'Unbekannter Absender - %s"
 
-#: mod/profile_photo.php:136
-msgid "Unable to process image"
-msgstr "Bild konnte nicht verarbeitet werden"
+#: mod/message.php:563
+#, php-format
+msgid "You and %s"
+msgstr "Du und %s"
 
-#: mod/profile_photo.php:253
-msgid "Upload File:"
-msgstr "Datei hochladen:"
+#: mod/message.php:565
+#, php-format
+msgid "%s and You"
+msgstr "%s und Du"
 
-#: mod/profile_photo.php:254
-msgid "Select a profile:"
-msgstr "Profil auswählen:"
+#: mod/message.php:594
+msgid "D, d M Y - g:i A"
+msgstr "D, d. M Y - g:i A"
 
-#: mod/profile_photo.php:256
-msgid "Upload"
-msgstr "Hochladen"
+#: mod/message.php:597
+#, php-format
+msgid "%d message"
+msgid_plural "%d messages"
+msgstr[0] "%d Nachricht"
+msgstr[1] "%d Nachrichten"
 
-#: mod/profile_photo.php:259
-msgid "or"
-msgstr "oder"
+#: mod/mood.php:136
+msgid "Mood"
+msgstr "Stimmung"
 
-#: mod/profile_photo.php:259
-msgid "skip this step"
-msgstr "diesen Schritt überspringen"
+#: mod/mood.php:137
+msgid "Set your current mood and tell your friends"
+msgstr "Wähle Deine aktuelle Stimmung und erzähle sie Deinen Kontakten"
 
-#: mod/profile_photo.php:259
-msgid "select a photo from your photo albums"
-msgstr "wähle ein Foto aus deinen Fotoalben"
+#: mod/network.php:187 mod/search.php:28
+msgid "Remove term"
+msgstr "Begriff entfernen"
 
-#: mod/profile_photo.php:273
-msgid "Crop Image"
-msgstr "Bild zurechtschneiden"
+#: mod/network.php:561
+#, php-format
+msgid ""
+"Warning: This group contains %s member from a network that doesn't allow non"
+" public messages."
+msgid_plural ""
+"Warning: This group contains %s members from a network that doesn't allow "
+"non public messages."
+msgstr[0] "Warnung: Diese Gruppe beinhaltet %s Person aus einem Netzwerk das keine nicht öffentlichen Beiträge empfangen kann."
+msgstr[1] "Warnung: Diese Gruppe beinhaltet %s Personen aus Netzwerken die keine nicht-öffentlichen Beiträge empfangen können."
 
-#: mod/profile_photo.php:274
-msgid "Please adjust the image cropping for optimum viewing."
-msgstr "Passe bitte den Bildausschnitt an, damit das Bild optimal dargestellt werden kann."
+#: mod/network.php:564
+msgid "Messages in this group won't be send to these receivers."
+msgstr "Beiträge in dieser Gruppe werden deshalb nicht an diese Personen zugestellt werden."
 
-#: mod/profile_photo.php:276
-msgid "Done Editing"
-msgstr "Bearbeitung abgeschlossen"
+#: mod/network.php:684
+msgid "Private messages to this person are at risk of public disclosure."
+msgstr "Private Nachrichten an diese Person könnten an die Öffentlichkeit gelangen."
 
-#: mod/profile_photo.php:312
-msgid "Image uploaded successfully."
-msgstr "Bild erfolgreich hochgeladen."
+#: mod/network.php:688
+msgid "Invalid contact."
+msgstr "Ungültiger Kontakt."
 
-#: mod/profiles.php:42
-msgid "Profile deleted."
-msgstr "Profil gelöscht."
+#: mod/network.php:892
+msgid "Commented Order"
+msgstr "Neueste Kommentare"
 
-#: mod/profiles.php:58 mod/profiles.php:94
-msgid "Profile-"
-msgstr "Profil-"
+#: mod/network.php:895
+msgid "Sort by Comment Date"
+msgstr "Nach Kommentardatum sortieren"
 
-#: mod/profiles.php:77 mod/profiles.php:122
-msgid "New profile created."
-msgstr "Neues Profil angelegt."
+#: mod/network.php:900
+msgid "Posted Order"
+msgstr "Neueste Beiträge"
 
-#: mod/profiles.php:100
-msgid "Profile unavailable to clone."
-msgstr "Profil nicht zum Duplizieren verfügbar."
+#: mod/network.php:903
+msgid "Sort by Post Date"
+msgstr "Nach Beitragsdatum sortieren"
 
-#: mod/profiles.php:196
-msgid "Profile Name is required."
-msgstr "Profilname ist erforderlich."
+#: mod/network.php:914
+msgid "Posts that mention or involve you"
+msgstr "Beiträge, in denen es um Dich geht"
 
-#: mod/profiles.php:336
-msgid "Marital Status"
-msgstr "Familienstand"
+#: mod/network.php:922
+msgid "New"
+msgstr "Neue"
 
-#: mod/profiles.php:340
-msgid "Romantic Partner"
-msgstr "Romanze"
+#: mod/network.php:925
+msgid "Activity Stream - by date"
+msgstr "Aktivitäten-Stream - nach Datum"
 
-#: mod/profiles.php:352
-msgid "Work/Employment"
-msgstr "Arbeit / Beschäftigung"
+#: mod/network.php:933
+msgid "Shared Links"
+msgstr "Geteilte Links"
 
-#: mod/profiles.php:355
-msgid "Religion"
-msgstr "Religion"
+#: mod/network.php:936
+msgid "Interesting Links"
+msgstr "Interessante Links"
 
-#: mod/profiles.php:359
-msgid "Political Views"
-msgstr "Politische Ansichten"
+#: mod/network.php:944
+msgid "Starred"
+msgstr "Markierte"
 
-#: mod/profiles.php:363
-msgid "Gender"
-msgstr "Geschlecht"
+#: mod/network.php:947
+msgid "Favourite Posts"
+msgstr "Favorisierte Beiträge"
 
-#: mod/profiles.php:367
-msgid "Sexual Preference"
-msgstr "Sexuelle Vorlieben"
+#: mod/notifications.php:38
+msgid "Invalid request identifier."
+msgstr "Invalid request identifier."
 
-#: mod/profiles.php:371
-msgid "XMPP"
-msgstr "XMPP"
+#: mod/notifications.php:47 mod/notifications.php:183
+#: mod/notifications.php:230
+msgid "Discard"
+msgstr "Verwerfen"
 
-#: mod/profiles.php:375
-msgid "Homepage"
-msgstr "Webseite"
+#: mod/notifications.php:63 mod/notifications.php:182
+#: mod/notifications.php:266 mod/contacts.php:635 mod/contacts.php:835
+#: mod/contacts.php:1020
+msgid "Ignore"
+msgstr "Ignorieren"
 
-#: mod/profiles.php:379 mod/profiles.php:698
-msgid "Interests"
-msgstr "Interessen"
+#: mod/notifications.php:108
+msgid "Network Notifications"
+msgstr "Netzwerk Benachrichtigungen"
 
-#: mod/profiles.php:383
-msgid "Address"
-msgstr "Adresse"
+#: mod/notifications.php:114 mod/notify.php:73
+msgid "System Notifications"
+msgstr "Systembenachrichtigungen"
 
-#: mod/profiles.php:390 mod/profiles.php:694
-msgid "Location"
-msgstr "Wohnort"
+#: mod/notifications.php:120
+msgid "Personal Notifications"
+msgstr "Persönliche Benachrichtigungen"
 
-#: mod/profiles.php:475
-msgid "Profile updated."
-msgstr "Profil aktualisiert."
+#: mod/notifications.php:126
+msgid "Home Notifications"
+msgstr "Pinnwand Benachrichtigungen"
 
-#: mod/profiles.php:567
-msgid " and "
-msgstr " und "
+#: mod/notifications.php:155
+msgid "Show Ignored Requests"
+msgstr "Zeige ignorierte Anfragen"
 
-#: mod/profiles.php:576
-msgid "public profile"
-msgstr "öffentliches Profil"
+#: mod/notifications.php:155
+msgid "Hide Ignored Requests"
+msgstr "Verberge ignorierte Anfragen"
 
-#: mod/profiles.php:579
-#, php-format
-msgid "%1$s changed %2$s to &ldquo;%3$s&rdquo;"
-msgstr "%1$s hat %2$s geändert auf &ldquo;%3$s&rdquo;"
+#: mod/notifications.php:167 mod/notifications.php:237
+msgid "Notification type: "
+msgstr "Benachrichtigungstyp: "
 
-#: mod/profiles.php:580
+#: mod/notifications.php:170
 #, php-format
-msgid " - Visit %1$s's %2$s"
-msgstr " – %1$ss %2$s besuchen"
+msgid "suggested by %s"
+msgstr "vorgeschlagen von %s"
 
-#: mod/profiles.php:582
-#, php-format
-msgid "%1$s has an updated %2$s, changing %3$s."
-msgstr "%1$s hat folgendes aktualisiert %2$s, verändert wurde %3$s."
+#: mod/notifications.php:175 mod/notifications.php:254 mod/contacts.php:642
+msgid "Hide this contact from others"
+msgstr "Verbirg diesen Kontakt vor Anderen"
 
-#: mod/profiles.php:640
-msgid "Hide contacts and friends:"
-msgstr "Kontakte und Freunde verbergen"
+#: mod/notifications.php:176 mod/notifications.php:255
+msgid "Post a new friend activity"
+msgstr "Neue-Kontakt Nachricht senden"
 
-#: mod/profiles.php:645
-msgid "Hide your contact/friend list from viewers of this profile?"
-msgstr "Liste der Kontakte vor Betrachtern dieses Profils verbergen?"
+#: mod/notifications.php:176 mod/notifications.php:255
+msgid "if applicable"
+msgstr "falls anwendbar"
 
-#: mod/profiles.php:670
-msgid "Show more profile fields:"
-msgstr "Zeige mehr Profil-Felder:"
+#: mod/notifications.php:179 mod/notifications.php:264 mod/admin.php:1604
+msgid "Approve"
+msgstr "Genehmigen"
 
-#: mod/profiles.php:682
-msgid "Profile Actions"
-msgstr "Profilaktionen"
+#: mod/notifications.php:198
+msgid "Claims to be known to you: "
+msgstr "Behauptet Dich zu kennen: "
 
-#: mod/profiles.php:683
-msgid "Edit Profile Details"
-msgstr "Profil bearbeiten"
+#: mod/notifications.php:199
+msgid "yes"
+msgstr "ja"
 
-#: mod/profiles.php:685
-msgid "Change Profile Photo"
-msgstr "Profilbild ändern"
+#: mod/notifications.php:199
+msgid "no"
+msgstr "nein"
 
-#: mod/profiles.php:686
-msgid "View this profile"
-msgstr "Dieses Profil anzeigen"
+#: mod/notifications.php:200 mod/notifications.php:205
+msgid "Shall your connection be bidirectional or not?"
+msgstr "Soll die Verbindung beidseitig sein oder nicht?"
 
-#: mod/profiles.php:688
-msgid "Create a new profile using these settings"
-msgstr "Neues Profil anlegen und diese Einstellungen verwenden"
+#: mod/notifications.php:201 mod/notifications.php:206
+#, php-format
+msgid ""
+"Accepting %s as a friend allows %s to subscribe to your posts, and you will "
+"also receive updates from them in your news feed."
+msgstr "Akzeptierst du %s als Kontakt, erlaubst du damit das Lesen deiner Beiträge und abonnierst selbst auch die Beiträge von %s."
 
-#: mod/profiles.php:689
-msgid "Clone this profile"
-msgstr "Dieses Profil duplizieren"
+#: mod/notifications.php:202
+#, php-format
+msgid ""
+"Accepting %s as a subscriber allows them to subscribe to your posts, but you"
+" will not receive updates from them in your news feed."
+msgstr "Wenn du %s als Abonnent akzeptierst, erlaubst du damit das Lesen deiner Beiträge, wirst aber selbst die Beiträge der anderen Seite nicht erhalten."
 
-#: mod/profiles.php:690
-msgid "Delete this profile"
-msgstr "Dieses Profil löschen"
+#: mod/notifications.php:207
+#, php-format
+msgid ""
+"Accepting %s as a sharer allows them to subscribe to your posts, but you "
+"will not receive updates from them in your news feed."
+msgstr "Wenn du %s als Teilenden akzeptierst, erlaubst du damit das Lesen deiner Beiträge, wirst aber selbst die Beiträge der anderen Seite nicht erhalten."
 
-#: mod/profiles.php:692
-msgid "Basic information"
-msgstr "Grundinformationen"
+#: mod/notifications.php:218
+msgid "Friend"
+msgstr "Kontakt"
 
-#: mod/profiles.php:693
-msgid "Profile picture"
-msgstr "Profilbild"
+#: mod/notifications.php:219
+msgid "Sharer"
+msgstr "Teilenden"
 
-#: mod/profiles.php:695
-msgid "Preferences"
-msgstr "Vorlieben"
+#: mod/notifications.php:219
+msgid "Subscriber"
+msgstr "Abonnent"
 
-#: mod/profiles.php:696
-msgid "Status information"
-msgstr "Status Informationen"
+#: mod/notifications.php:275
+msgid "No introductions."
+msgstr "Keine Kontaktanfragen."
 
-#: mod/profiles.php:697
-msgid "Additional information"
-msgstr "Zusätzliche Informationen"
+#: mod/notifications.php:316
+msgid "Show unread"
+msgstr "Ungelesene anzeigen"
 
-#: mod/profiles.php:700
-msgid "Relation"
-msgstr "Beziehung"
+#: mod/notifications.php:316
+msgid "Show all"
+msgstr "Alle anzeigen"
 
-#: mod/profiles.php:704
-msgid "Your Gender:"
-msgstr "Dein Geschlecht:"
+#: mod/notifications.php:322
+#, php-format
+msgid "No more %s notifications."
+msgstr "Keine weiteren %s Benachrichtigungen"
 
-#: mod/profiles.php:705
-msgid "<span class=\"heart\">&hearts;</span> Marital Status:"
-msgstr "<span class=\"heart\">&hearts;</span> Beziehungsstatus:"
+#: mod/notify.php:69
+msgid "No more system notifications."
+msgstr "Keine weiteren Systembenachrichtigungen."
 
-#: mod/profiles.php:707
-msgid "Example: fishing photography software"
-msgstr "Beispiel: Fischen Fotografie Software"
+#: mod/oexchange.php:25
+msgid "Post successful."
+msgstr "Beitrag erfolgreich veröffentlicht."
 
-#: mod/profiles.php:712
-msgid "Profile Name:"
-msgstr "Profilname:"
+#: mod/openid.php:25
+msgid "OpenID protocol error. No ID returned."
+msgstr "OpenID Protokollfehler. Keine ID zurückgegeben."
 
-#: mod/profiles.php:714
+#: mod/openid.php:61
 msgid ""
-"This is your <strong>public</strong> profile.<br />It <strong>may</strong> "
-"be visible to anybody using the internet."
-msgstr "Dies ist Dein <strong>öffentliches</strong> Profil.<br />Es <strong>könnte</strong> für jeden Nutzer des Internets sichtbar sein."
+"Account not found and OpenID registration is not permitted on this site."
+msgstr "Nutzerkonto wurde nicht gefunden und OpenID-Registrierung ist auf diesem Server nicht gestattet."
 
-#: mod/profiles.php:715
-msgid "Your Full Name:"
-msgstr "Dein kompletter Name:"
+#: mod/ostatus_subscribe.php:17
+msgid "Subscribing to OStatus contacts"
+msgstr "OStatus Kontakten folgen"
 
-#: mod/profiles.php:716
-msgid "Title/Description:"
-msgstr "Titel/Beschreibung:"
+#: mod/ostatus_subscribe.php:28
+msgid "No contact provided."
+msgstr "Keine Kontakte gefunden."
 
-#: mod/profiles.php:719
-msgid "Street Address:"
-msgstr "Adresse:"
+#: mod/ostatus_subscribe.php:34
+msgid "Couldn't fetch information for contact."
+msgstr "Konnte die Kontaktinformationen nicht einholen."
 
-#: mod/profiles.php:720
-msgid "Locality/City:"
-msgstr "Wohnort:"
+#: mod/ostatus_subscribe.php:43
+msgid "Couldn't fetch friends for contact."
+msgstr "Konnte die Kontaktliste des Kontakts nicht abfragen."
 
-#: mod/profiles.php:721
-msgid "Region/State:"
-msgstr "Region/Bundesstaat:"
+#: mod/ostatus_subscribe.php:57 mod/repair_ostatus.php:47
+msgid "Done"
+msgstr "Erledigt"
 
-#: mod/profiles.php:722
-msgid "Postal/Zip Code:"
-msgstr "Postleitzahl:"
+#: mod/ostatus_subscribe.php:71
+msgid "success"
+msgstr "Erfolg"
 
-#: mod/profiles.php:723
-msgid "Country:"
-msgstr "Land:"
+#: mod/ostatus_subscribe.php:73
+msgid "failed"
+msgstr "Fehlgeschlagen"
 
-#: mod/profiles.php:727
-msgid "Who: (if applicable)"
-msgstr "Wer: (falls anwendbar)"
+#: mod/ostatus_subscribe.php:81 mod/repair_ostatus.php:53
+msgid "Keep this window open until done."
+msgstr "Lasse dieses Fenster offen, bis der Vorgang abgeschlossen ist."
 
-#: mod/profiles.php:727
-msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
-msgstr "Beispiele: cathy123, Cathy Williams, cathy@example.com"
+#: mod/p.php:13
+msgid "Not Extended"
+msgstr "Nicht erweitert."
 
-#: mod/profiles.php:728
-msgid "Since [date]:"
-msgstr "Seit [Datum]:"
+#: mod/poke.php:198
+msgid "Poke/Prod"
+msgstr "Anstupsen"
 
-#: mod/profiles.php:730
-msgid "Tell us about yourself..."
-msgstr "Erzähle uns ein bisschen von Dir …"
+#: mod/poke.php:199
+msgid "poke, prod or do other things to somebody"
+msgstr "Stupse Leute an oder mache anderes mit ihnen"
 
-#: mod/profiles.php:731
-msgid "XMPP (Jabber) address:"
-msgstr "XMPP (Jabber) Adresse"
+#: mod/poke.php:200
+msgid "Recipient"
+msgstr "Empfänger"
 
-#: mod/profiles.php:731
-msgid ""
-"The XMPP address will be propagated to your contacts so that they can follow"
-" you."
-msgstr "Die XMPP Adresse wird an deine Kontakte verteilt werden, so dass sie auch über XMPP mit dir in Kontakt treten können."
+#: mod/poke.php:201
+msgid "Choose what you wish to do to recipient"
+msgstr "Was willst Du mit dem Empfänger machen:"
 
-#: mod/profiles.php:732
-msgid "Homepage URL:"
-msgstr "Adresse der Homepage:"
+#: mod/poke.php:204
+msgid "Make this post private"
+msgstr "Diesen Beitrag privat machen"
 
-#: mod/profiles.php:735
-msgid "Religious Views:"
-msgstr "Religiöse Ansichten:"
+#: mod/profile.php:177
+msgid "Tips for New Members"
+msgstr "Tipps für neue Nutzer"
 
-#: mod/profiles.php:736
-msgid "Public Keywords:"
-msgstr "Öffentliche Schlüsselwörter:"
+#: mod/profile_photo.php:45
+msgid "Image uploaded but image cropping failed."
+msgstr "Bild hochgeladen, aber das Zuschneiden schlug fehl."
 
-#: mod/profiles.php:736
-msgid "(Used for suggesting potential friends, can be seen by others)"
-msgstr "(Wird verwendet, um potentielle Kontakte zu finden, kann von Kontakten eingesehen werden)"
+#: mod/profile_photo.php:78 mod/profile_photo.php:86 mod/profile_photo.php:94
+#: mod/profile_photo.php:323
+#, php-format
+msgid "Image size reduction [%s] failed."
+msgstr "Verkleinern der Bildgröße von [%s] scheiterte."
+
+#: mod/profile_photo.php:128
+msgid ""
+"Shift-reload the page or clear browser cache if the new photo does not "
+"display immediately."
+msgstr "Drücke Umschalt+Neu Laden oder leere den Browser-Cache, falls das neue Foto nicht gleich angezeigt wird."
+
+#: mod/profile_photo.php:137
+msgid "Unable to process image"
+msgstr "Bild konnte nicht verarbeitet werden"
 
-#: mod/profiles.php:737
-msgid "Private Keywords:"
-msgstr "Private Schlüsselwörter:"
+#: mod/profile_photo.php:156 mod/wall_upload.php:182 mod/photos.php:816
+#, php-format
+msgid "Image exceeds size limit of %s"
+msgstr "Bildgröße überschreitet das Limit von %s"
 
-#: mod/profiles.php:737
-msgid "(Used for searching profiles, never shown to others)"
-msgstr "(Wird für die Suche nach Profilen verwendet und niemals veröffentlicht)"
+#: mod/profile_photo.php:165 mod/wall_upload.php:219 mod/photos.php:857
+msgid "Unable to process image."
+msgstr "Konnte das Bild nicht bearbeiten."
 
-#: mod/profiles.php:740
-msgid "Musical interests"
-msgstr "Musikalische Interessen"
+#: mod/profile_photo.php:254
+msgid "Upload File:"
+msgstr "Datei hochladen:"
 
-#: mod/profiles.php:741
-msgid "Books, literature"
-msgstr "Bücher, Literatur"
+#: mod/profile_photo.php:255
+msgid "Select a profile:"
+msgstr "Profil auswählen:"
 
-#: mod/profiles.php:742
-msgid "Television"
-msgstr "Fernsehen"
+#: mod/profile_photo.php:257
+msgid "Upload"
+msgstr "Hochladen"
 
-#: mod/profiles.php:743
-msgid "Film/dance/culture/entertainment"
-msgstr "Filme/Tänze/Kultur/Unterhaltung"
+#: mod/profile_photo.php:260
+msgid "or"
+msgstr "oder"
 
-#: mod/profiles.php:744
-msgid "Hobbies/Interests"
-msgstr "Hobbies/Interessen"
+#: mod/profile_photo.php:260
+msgid "skip this step"
+msgstr "diesen Schritt überspringen"
 
-#: mod/profiles.php:745
-msgid "Love/romance"
-msgstr "Liebe/Romantik"
+#: mod/profile_photo.php:260
+msgid "select a photo from your photo albums"
+msgstr "wähle ein Foto aus deinen Fotoalben"
 
-#: mod/profiles.php:746
-msgid "Work/employment"
-msgstr "Arbeit/Anstellung"
+#: mod/profile_photo.php:274
+msgid "Crop Image"
+msgstr "Bild zurechtschneiden"
 
-#: mod/profiles.php:747
-msgid "School/education"
-msgstr "Schule/Ausbildung"
+#: mod/profile_photo.php:275
+msgid "Please adjust the image cropping for optimum viewing."
+msgstr "Passe bitte den Bildausschnitt an, damit das Bild optimal dargestellt werden kann."
 
-#: mod/profiles.php:748
-msgid "Contact information and Social Networks"
-msgstr "Kontaktinformationen und Soziale Netzwerke"
+#: mod/profile_photo.php:277
+msgid "Done Editing"
+msgstr "Bearbeitung abgeschlossen"
 
-#: mod/profiles.php:789
-msgid "Edit/Manage Profiles"
-msgstr "Bearbeite/Verwalte Profile"
+#: mod/profile_photo.php:313
+msgid "Image uploaded successfully."
+msgstr "Bild erfolgreich hochgeladen."
+
+#: mod/profile_photo.php:315 mod/wall_upload.php:258 mod/photos.php:886
+msgid "Image upload failed."
+msgstr "Hochladen des Bildes gescheitert."
 
-#: mod/register.php:96
+#: mod/register.php:97
 msgid ""
 "Registration successful. Please check your email for further instructions."
 msgstr "Registrierung erfolgreich. Eine E-Mail mit weiteren Anweisungen wurde an Dich gesendet."
 
-#: mod/register.php:101
+#: mod/register.php:102
 #, php-format
 msgid ""
 "Failed to send email message. Here your accout details:<br> login: %s<br> "
 "password: %s<br><br>You can change your password after login."
 msgstr "Versenden der E-Mail fehlgeschlagen. Hier sind Deine Account Details:\n\nLogin: %s\nPasswort: %s\n\nDu kannst das Passwort nach dem Anmelden ändern."
 
-#: mod/register.php:108
+#: mod/register.php:109
 msgid "Registration successful."
 msgstr "Registrierung erfolgreich."
 
-#: mod/register.php:114
+#: mod/register.php:115
 msgid "Your registration can not be processed."
 msgstr "Deine Registrierung konnte nicht verarbeitet werden."
 
-#: mod/register.php:163
+#: mod/register.php:164
 msgid "Your registration is pending approval by the site owner."
 msgstr "Deine Registrierung muss noch vom Betreiber der Seite freigegeben werden."
 
-#: mod/register.php:229
+#: mod/register.php:230
 msgid ""
 "You may (optionally) fill in this form via OpenID by supplying your OpenID "
 "and clicking 'Register'."
 msgstr "Du kannst dieses Formular auch (optional) mit Deiner OpenID ausfüllen, indem Du Deine OpenID angibst und 'Registrieren' klickst."
 
-#: mod/register.php:230
+#: mod/register.php:231
 msgid ""
 "If you are not familiar with OpenID, please leave that field blank and fill "
 "in the rest of the items."
 msgstr "Wenn Du nicht mit OpenID vertraut bist, lass dieses Feld bitte leer und fülle die restlichen Felder aus."
 
-#: mod/register.php:231
+#: mod/register.php:232
 msgid "Your OpenID (optional): "
 msgstr "Deine OpenID (optional): "
 
-#: mod/register.php:245
+#: mod/register.php:246
 msgid "Include your profile in member directory?"
 msgstr "Soll Dein Profil im Nutzerverzeichnis angezeigt werden?"
 
-#: mod/register.php:270
+#: mod/register.php:271
 msgid "Note for the admin"
 msgstr "Hinweis für den Admin"
 
-#: mod/register.php:270
+#: mod/register.php:271
 msgid "Leave a message for the admin, why you want to join this node"
 msgstr "Hinterlasse eine Nachricht an den Admin, warum du einen Account auf dieser Instanz haben möchtest."
 
-#: mod/register.php:271
-msgid "Membership on this site is by invitation only."
-msgstr "Mitgliedschaft auf dieser Seite ist nur nach vorheriger Einladung möglich."
+#: mod/register.php:272
+msgid "Membership on this site is by invitation only."
+msgstr "Mitgliedschaft auf dieser Seite ist nur nach vorheriger Einladung möglich."
+
+#: mod/register.php:273
+msgid "Your invitation ID: "
+msgstr "ID Deiner Einladung: "
+
+#: mod/register.php:276 mod/admin.php:1155
+msgid "Registration"
+msgstr "Registrierung"
+
+#: mod/register.php:284
+msgid "Your Full Name (e.g. Joe Smith, real or real-looking): "
+msgstr "Dein vollständiger Name (z.B. Hans Mustermann, echt oder echt erscheinend):"
+
+#: mod/register.php:285
+msgid "Your Email Address: "
+msgstr "Deine E-Mail-Adresse: "
+
+#: mod/register.php:287 mod/settings.php:1275
+msgid "New Password:"
+msgstr "Neues Passwort:"
+
+#: mod/register.php:287
+msgid "Leave empty for an auto generated password."
+msgstr "Leer lassen um das Passwort automatisch zu generieren."
+
+#: mod/register.php:288 mod/settings.php:1276
+msgid "Confirm:"
+msgstr "Bestätigen:"
+
+#: mod/register.php:289
+msgid ""
+"Choose a profile nickname. This must begin with a text character. Your "
+"profile address on this site will then be "
+"'<strong>nickname@$sitename</strong>'."
+msgstr "Wähle einen Spitznamen für Dein Profil. Dieser muss mit einem Buchstaben beginnen. Die Adresse Deines Profils auf dieser Seite wird '<strong>spitzname@$sitename</strong>' sein."
+
+#: mod/register.php:290
+msgid "Choose a nickname: "
+msgstr "Spitznamen wählen: "
+
+#: mod/register.php:300
+msgid "Import your profile to this friendica instance"
+msgstr "Importiere Dein Profil auf diese Friendica Instanz"
+
+#: mod/regmod.php:61
+msgid "Account approved."
+msgstr "Konto freigegeben."
+
+#: mod/regmod.php:89
+#, php-format
+msgid "Registration revoked for %s"
+msgstr "Registrierung für %s wurde zurückgezogen"
+
+#: mod/regmod.php:101
+msgid "Please login."
+msgstr "Bitte melde Dich an."
+
+#: mod/removeme.php:55 mod/removeme.php:58
+msgid "Remove My Account"
+msgstr "Konto löschen"
+
+#: mod/removeme.php:56
+msgid ""
+"This will completely remove your account. Once this has been done it is not "
+"recoverable."
+msgstr "Dein Konto wird endgültig gelöscht. Es gibt keine Möglichkeit, es wiederherzustellen."
+
+#: mod/removeme.php:57
+msgid "Please enter your password for verification:"
+msgstr "Bitte gib Dein Passwort zur Verifikation ein:"
+
+#: mod/repair_ostatus.php:17
+msgid "Resubscribing to OStatus contacts"
+msgstr "Erneuern der OStatus Abonements"
+
+#: mod/repair_ostatus.php:33
+msgid "Error"
+msgstr "Fehler"
+
+#: mod/subthread.php:106
+#, php-format
+msgid "%1$s is following %2$s's %3$s"
+msgstr "%1$s folgt %2$s %3$s"
+
+#: mod/tagrm.php:46
+msgid "Tag removed"
+msgstr "Tag entfernt"
+
+#: mod/tagrm.php:85
+msgid "Remove Item Tag"
+msgstr "Gegenstands-Tag entfernen"
+
+#: mod/tagrm.php:87
+msgid "Select a tag to remove: "
+msgstr "Wähle ein Tag zum Entfernen aus: "
+
+#: mod/tagrm.php:98 mod/delegate.php:139
+msgid "Remove"
+msgstr "Entfernen"
+
+#: mod/uexport.php:39
+msgid "Export account"
+msgstr "Account exportieren"
+
+#: mod/uexport.php:39
+msgid ""
+"Export your account info and contacts. Use this to make a backup of your "
+"account and/or to move it to another server."
+msgstr "Exportiere Deine Accountinformationen und Kontakte. Verwende dies um ein Backup Deines Accounts anzulegen und/oder damit auf einen anderen Server umzuziehen."
+
+#: mod/uexport.php:40
+msgid "Export all"
+msgstr "Alles exportieren"
+
+#: mod/uexport.php:40
+msgid ""
+"Export your accout info, contacts and all your items as json. Could be a "
+"very big file, and could take a lot of time. Use this to make a full backup "
+"of your account (photos are not exported)"
+msgstr "Exportiere Deine Account Informationen, Kontakte und alle Einträge als JSON Datei. Dies könnte eine sehr große Datei werden und dementsprechend viel Zeit benötigen. Verwende dies um ein komplettes Backup Deines Accounts anzulegen (Fotos werden nicht exportiert)."
+
+#: mod/uexport.php:47 mod/settings.php:98
+msgid "Export personal data"
+msgstr "Persönliche Daten exportieren"
+
+#: mod/videos.php:127
+msgid "Do you really want to delete this video?"
+msgstr "Möchtest Du dieses Video wirklich löschen?"
+
+#: mod/videos.php:132
+msgid "Delete Video"
+msgstr "Video Löschen"
+
+#: mod/videos.php:211
+msgid "No videos selected"
+msgstr "Keine Videos  ausgewählt"
+
+#: mod/videos.php:312 mod/photos.php:1094
+msgid "Access to this item is restricted."
+msgstr "Zugriff zu diesem Eintrag wurde eingeschränkt."
+
+#: mod/videos.php:396 mod/photos.php:1894
+msgid "View Album"
+msgstr "Album betrachten"
+
+#: mod/videos.php:405
+msgid "Recent Videos"
+msgstr "Neueste Videos"
+
+#: mod/videos.php:407
+msgid "Upload New Videos"
+msgstr "Neues Video hochladen"
+
+#: mod/wall_upload.php:37 mod/wall_upload.php:53 mod/wall_upload.php:111
+#: mod/wall_upload.php:151 mod/wall_upload.php:154 mod/wall_attach.php:19
+#: mod/wall_attach.php:27 mod/wall_attach.php:78
+msgid "Invalid request."
+msgstr "Ungültige Anfrage"
+
+#: mod/wallmessage.php:45 mod/wallmessage.php:109
+#, php-format
+msgid "Number of daily wall messages for %s exceeded. Message failed."
+msgstr "Maximale Anzahl der täglichen Pinnwand Nachrichten für %s ist überschritten. Zustellung fehlgeschlagen."
+
+#: mod/wallmessage.php:56
+msgid "Unable to check your home location."
+msgstr "Konnte Deinen Heimatort nicht bestimmen."
+
+#: mod/wallmessage.php:83 mod/wallmessage.php:92
+msgid "No recipient."
+msgstr "Kein Empfänger."
+
+#: mod/wallmessage.php:130
+#, php-format
+msgid ""
+"If you wish for %s to respond, please check that the privacy settings on "
+"your site allow private mail from unknown senders."
+msgstr "Wenn Du möchtest, dass %s Dir antworten kann, überprüfe Deine Privatsphären-Einstellungen und erlaube private Nachrichten von unbekannten Absendern."
+
+#: mod/delegate.php:101
+msgid "No potential page delegates located."
+msgstr "Keine potentiellen Bevollmächtigten für die Seite gefunden."
+
+#: mod/delegate.php:132
+msgid ""
+"Delegates are able to manage all aspects of this account/page except for "
+"basic account settings. Please do not delegate your personal account to "
+"anybody that you do not trust completely."
+msgstr "Bevollmächtigte sind in der Lage, alle Aspekte dieses Kontos/dieser Seite zu verwalten, abgesehen von den Grundeinstellungen des Kontos. Bitte gib niemandem eine Bevollmächtigung für Deinen privaten Account, dem Du nicht absolut vertraust!"
+
+#: mod/delegate.php:133
+msgid "Existing Page Managers"
+msgstr "Vorhandene Seitenmanager"
+
+#: mod/delegate.php:135
+msgid "Existing Page Delegates"
+msgstr "Vorhandene Bevollmächtigte für die Seite"
+
+#: mod/delegate.php:137
+msgid "Potential Delegates"
+msgstr "Potentielle Bevollmächtigte"
+
+#: mod/delegate.php:140
+msgid "Add"
+msgstr "Hinzufügen"
+
+#: mod/delegate.php:141
+msgid "No entries."
+msgstr "Keine Einträge."
+
+#: mod/display.php:491
+msgid "Item has been removed."
+msgstr "Eintrag wurde entfernt."
+
+#: mod/photos.php:97 mod/photos.php:1903
+msgid "Recent Photos"
+msgstr "Neueste Fotos"
+
+#: mod/photos.php:100 mod/photos.php:1331 mod/photos.php:1905
+msgid "Upload New Photos"
+msgstr "Neue Fotos hochladen"
+
+#: mod/photos.php:115 mod/settings.php:39
+msgid "everybody"
+msgstr "jeder"
+
+#: mod/photos.php:179
+msgid "Contact information unavailable"
+msgstr "Kontaktinformationen nicht verfügbar"
+
+#: mod/photos.php:200
+msgid "Album not found."
+msgstr "Album nicht gefunden."
+
+#: mod/photos.php:233 mod/photos.php:245 mod/photos.php:1275
+msgid "Delete Album"
+msgstr "Album löschen"
 
-#: mod/register.php:272
-msgid "Your invitation ID: "
-msgstr "ID Deiner Einladung: "
+#: mod/photos.php:243
+msgid "Do you really want to delete this photo album and all its photos?"
+msgstr "Möchtest Du wirklich dieses Foto-Album und all seine Foto löschen?"
 
-#: mod/register.php:275 mod/admin.php:1146
-msgid "Registration"
-msgstr "Registrierung"
+#: mod/photos.php:326 mod/photos.php:337 mod/photos.php:1601
+msgid "Delete Photo"
+msgstr "Foto löschen"
 
-#: mod/register.php:283
-msgid "Your Full Name (e.g. Joe Smith, real or real-looking): "
-msgstr "Dein vollständiger Name (z.B. Hans Mustermann, echt oder echt erscheinend):"
+#: mod/photos.php:335
+msgid "Do you really want to delete this photo?"
+msgstr "Möchtest Du wirklich dieses Foto löschen?"
 
-#: mod/register.php:284
-msgid "Your Email Address: "
-msgstr "Deine E-Mail-Adresse: "
+#: mod/photos.php:716
+#, php-format
+msgid "%1$s was tagged in %2$s by %3$s"
+msgstr "%1$s wurde von %3$s in %2$s getaggt"
 
-#: mod/register.php:286 mod/settings.php:1279
-msgid "New Password:"
-msgstr "Neues Passwort:"
+#: mod/photos.php:716
+msgid "a photo"
+msgstr "einem Foto"
 
-#: mod/register.php:286
-msgid "Leave empty for an auto generated password."
-msgstr "Leer lassen um das Passwort automatisch zu generieren."
+#: mod/photos.php:824
+msgid "Image file is empty."
+msgstr "Bilddatei ist leer."
 
-#: mod/register.php:287 mod/settings.php:1280
-msgid "Confirm:"
-msgstr "Bestätigen:"
+#: mod/photos.php:991
+msgid "No photos selected"
+msgstr "Keine Bilder ausgewählt"
 
-#: mod/register.php:288
-msgid ""
-"Choose a profile nickname. This must begin with a text character. Your "
-"profile address on this site will then be "
-"'<strong>nickname@$sitename</strong>'."
-msgstr "Wähle einen Spitznamen für Dein Profil. Dieser muss mit einem Buchstaben beginnen. Die Adresse Deines Profils auf dieser Seite wird '<strong>spitzname@$sitename</strong>' sein."
+#: mod/photos.php:1154
+#, php-format
+msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."
+msgstr "Du verwendest %1$.2f Mbyte von %2$.2f Mbyte des Foto-Speichers."
 
-#: mod/register.php:289
-msgid "Choose a nickname: "
-msgstr "Spitznamen wählen: "
+#: mod/photos.php:1191
+msgid "Upload Photos"
+msgstr "Bilder hochladen"
 
-#: mod/register.php:299
-msgid "Import your profile to this friendica instance"
-msgstr "Importiere Dein Profil auf diese Friendica Instanz"
+#: mod/photos.php:1195 mod/photos.php:1270
+msgid "New album name: "
+msgstr "Name des neuen Albums: "
 
-#: mod/search.php:28 mod/network.php:200
-msgid "Remove term"
-msgstr "Begriff entfernen"
+#: mod/photos.php:1196
+msgid "or existing album name: "
+msgstr "oder existierender Albumname: "
 
-#: mod/search.php:103
-msgid "Only logged in users are permitted to perform a search."
-msgstr "Nur eingeloggten Benutzern ist das Suchen gestattet."
+#: mod/photos.php:1197
+msgid "Do not show a status post for this upload"
+msgstr "Keine Status-Mitteilung für diesen Beitrag anzeigen"
 
-#: mod/search.php:127
-msgid "Too Many Requests"
-msgstr "Zu viele Abfragen"
+#: mod/photos.php:1208 mod/photos.php:1605 mod/settings.php:1304
+msgid "Show to Groups"
+msgstr "Zeige den Gruppen"
 
-#: mod/search.php:128
-msgid "Only one search per minute is permitted for not logged in users."
-msgstr "Es ist nur eine Suchanfrage pro Minute für nicht eingeloggte Benutzer gestattet."
+#: mod/photos.php:1209 mod/photos.php:1606 mod/settings.php:1305
+msgid "Show to Contacts"
+msgstr "Zeige den Kontakten"
 
-#: mod/search.php:222 mod/community.php:49
-msgid "No results."
-msgstr "Keine Ergebnisse."
+#: mod/photos.php:1210
+msgid "Private Photo"
+msgstr "Privates Foto"
 
-#: mod/search.php:228
-#, php-format
-msgid "Items tagged with: %s"
-msgstr "Beiträge die mit %s getaggt sind"
+#: mod/photos.php:1211
+msgid "Public Photo"
+msgstr "Öffentliches Foto"
 
-#: mod/search.php:230 mod/contacts.php:810 mod/network.php:154
-#, php-format
-msgid "Results for: %s"
-msgstr "Ergebnisse für: %s"
+#: mod/photos.php:1281
+msgid "Edit Album"
+msgstr "Album bearbeiten"
 
-#: mod/contacts.php:137
-#, php-format
-msgid "%d contact edited."
-msgid_plural "%d contacts edited."
-msgstr[0] "%d Kontakt bearbeitet."
-msgstr[1] "%d Kontakte bearbeitet."
+#: mod/photos.php:1286
+msgid "Show Newest First"
+msgstr "Zeige neueste zuerst"
 
-#: mod/contacts.php:172 mod/contacts.php:381
-msgid "Could not access contact record."
-msgstr "Konnte nicht auf die Kontaktdaten zugreifen."
+#: mod/photos.php:1288
+msgid "Show Oldest First"
+msgstr "Zeige älteste zuerst"
 
-#: mod/contacts.php:186
-msgid "Could not locate selected profile."
-msgstr "Konnte das ausgewählte Profil nicht finden."
+#: mod/photos.php:1317 mod/photos.php:1888
+msgid "View Photo"
+msgstr "Foto betrachten"
 
-#: mod/contacts.php:219
-msgid "Contact updated."
-msgstr "Kontakt aktualisiert."
+#: mod/photos.php:1362
+msgid "Permission denied. Access to this item may be restricted."
+msgstr "Zugriff verweigert. Zugriff zu diesem Eintrag könnte eingeschränkt sein."
 
-#: mod/contacts.php:402
-msgid "Contact has been blocked"
-msgstr "Kontakt wurde blockiert"
+#: mod/photos.php:1364
+msgid "Photo not available"
+msgstr "Foto nicht verfügbar"
 
-#: mod/contacts.php:402
-msgid "Contact has been unblocked"
-msgstr "Kontakt wurde wieder freigegeben"
+#: mod/photos.php:1425
+msgid "View photo"
+msgstr "Fotos ansehen"
 
-#: mod/contacts.php:413
-msgid "Contact has been ignored"
-msgstr "Kontakt wurde ignoriert"
+#: mod/photos.php:1425
+msgid "Edit photo"
+msgstr "Foto bearbeiten"
 
-#: mod/contacts.php:413
-msgid "Contact has been unignored"
-msgstr "Kontakt wird nicht mehr ignoriert"
+#: mod/photos.php:1426
+msgid "Use as profile photo"
+msgstr "Als Profilbild verwenden"
 
-#: mod/contacts.php:425
-msgid "Contact has been archived"
-msgstr "Kontakt wurde archiviert"
+#: mod/photos.php:1451
+msgid "View Full Size"
+msgstr "Betrachte Originalgröße"
 
-#: mod/contacts.php:425
-msgid "Contact has been unarchived"
-msgstr "Kontakt wurde aus dem Archiv geholt"
+#: mod/photos.php:1541
+msgid "Tags: "
+msgstr "Tags: "
 
-#: mod/contacts.php:450
-msgid "Drop contact"
-msgstr "Kontakt löschen"
+#: mod/photos.php:1544
+msgid "[Remove any tag]"
+msgstr "[Tag entfernen]"
 
-#: mod/contacts.php:453 mod/contacts.php:814
-msgid "Do you really want to delete this contact?"
-msgstr "Möchtest Du wirklich diesen Kontakt löschen?"
+#: mod/photos.php:1587
+msgid "New album name"
+msgstr "Name des neuen Albums"
 
-#: mod/contacts.php:472
-msgid "Contact has been removed."
-msgstr "Kontakt wurde entfernt."
+#: mod/photos.php:1588
+msgid "Caption"
+msgstr "Bildunterschrift"
 
-#: mod/contacts.php:509
-#, php-format
-msgid "You are mutual friends with %s"
-msgstr "Du hast mit %s eine beidseitige Freundschaft"
+#: mod/photos.php:1589
+msgid "Add a Tag"
+msgstr "Tag hinzufügen"
 
-#: mod/contacts.php:513
-#, php-format
-msgid "You are sharing with %s"
-msgstr "Du teilst mit %s"
+#: mod/photos.php:1589
+msgid ""
+"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
+msgstr "Beispiel: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
 
-#: mod/contacts.php:518
-#, php-format
-msgid "%s is sharing with you"
-msgstr "%s teilt mit Dir"
+#: mod/photos.php:1590
+msgid "Do not rotate"
+msgstr "Nicht rotieren"
 
-#: mod/contacts.php:538
-msgid "Private communications are not available for this contact."
-msgstr "Private Kommunikation ist für diesen Kontakt nicht verfügbar."
+#: mod/photos.php:1591
+msgid "Rotate CW (right)"
+msgstr "Drehen US (rechts)"
 
-#: mod/contacts.php:541 mod/admin.php:1068
-msgid "Never"
-msgstr "Niemals"
+#: mod/photos.php:1592
+msgid "Rotate CCW (left)"
+msgstr "Drehen EUS (links)"
 
-#: mod/contacts.php:545
-msgid "(Update was successful)"
-msgstr "(Aktualisierung war erfolgreich)"
+#: mod/photos.php:1607
+msgid "Private photo"
+msgstr "Privates Foto"
 
-#: mod/contacts.php:545
-msgid "(Update was not successful)"
-msgstr "(Aktualisierung war nicht erfolgreich)"
+#: mod/photos.php:1608
+msgid "Public photo"
+msgstr "Öffentliches Foto"
 
-#: mod/contacts.php:547 mod/contacts.php:977
-msgid "Suggest friends"
-msgstr "Kontakte vorschlagen"
+#: mod/photos.php:1817
+msgid "Map"
+msgstr "Karte"
 
-#: mod/contacts.php:551
-#, php-format
-msgid "Network type: %s"
-msgstr "Netzwerktyp: %s"
+#: mod/ping.php:275
+msgid "{0} wants to be your friend"
+msgstr "{0} möchte mit Dir in Kontakt treten"
 
-#: mod/contacts.php:564
-msgid "Communications lost with this contact!"
-msgstr "Verbindungen mit diesem Kontakt verloren!"
+#: mod/ping.php:290
+msgid "{0} sent you a message"
+msgstr "{0} schickte Dir eine Nachricht"
 
-#: mod/contacts.php:567
-msgid "Fetch further information for feeds"
-msgstr "Weitere Informationen zu Feeds holen"
+#: mod/ping.php:305
+msgid "{0} requested registration"
+msgstr "{0} möchte sich registrieren"
 
-#: mod/contacts.php:568 mod/admin.php:1077
-msgid "Disabled"
-msgstr "Deaktiviert"
+#: mod/profiles.php:43
+msgid "Profile deleted."
+msgstr "Profil gelöscht."
 
-#: mod/contacts.php:568
-msgid "Fetch information"
-msgstr "Beziehe Information"
+#: mod/profiles.php:59 mod/profiles.php:95
+msgid "Profile-"
+msgstr "Profil-"
 
-#: mod/contacts.php:568
-msgid "Fetch information and keywords"
-msgstr "Beziehe Information und Schlüsselworte"
+#: mod/profiles.php:78 mod/profiles.php:117
+msgid "New profile created."
+msgstr "Neues Profil angelegt."
 
-#: mod/contacts.php:586
-msgid "Contact"
-msgstr "Kontakt"
+#: mod/profiles.php:101
+msgid "Profile unavailable to clone."
+msgstr "Profil nicht zum Duplizieren verfügbar."
 
-#: mod/contacts.php:589
-msgid "Profile Visibility"
-msgstr "Profil-Sichtbarkeit"
+#: mod/profiles.php:191
+msgid "Profile Name is required."
+msgstr "Profilname ist erforderlich."
 
-#: mod/contacts.php:590
-#, php-format
-msgid ""
-"Please choose the profile you would like to display to %s when viewing your "
-"profile securely."
-msgstr "Bitte wähle eines Deiner Profile das angezeigt werden soll, wenn %s Dein Profil aufruft."
+#: mod/profiles.php:331
+msgid "Marital Status"
+msgstr "Familienstand"
 
-#: mod/contacts.php:591
-msgid "Contact Information / Notes"
-msgstr "Kontakt Informationen / Notizen"
+#: mod/profiles.php:335
+msgid "Romantic Partner"
+msgstr "Romanze"
 
-#: mod/contacts.php:592
-msgid "Their personal note"
-msgstr "Die persönliche Mitteilung"
+#: mod/profiles.php:347
+msgid "Work/Employment"
+msgstr "Arbeit / Beschäftigung"
 
-#: mod/contacts.php:594
-msgid "Edit contact notes"
-msgstr "Notizen zum Kontakt bearbeiten"
+#: mod/profiles.php:350
+msgid "Religion"
+msgstr "Religion"
 
-#: mod/contacts.php:600
-msgid "Block/Unblock contact"
-msgstr "Kontakt blockieren/freischalten"
+#: mod/profiles.php:354
+msgid "Political Views"
+msgstr "Politische Ansichten"
 
-#: mod/contacts.php:601
-msgid "Ignore contact"
-msgstr "Ignoriere den Kontakt"
+#: mod/profiles.php:358
+msgid "Gender"
+msgstr "Geschlecht"
 
-#: mod/contacts.php:602
-msgid "Repair URL settings"
-msgstr "URL Einstellungen reparieren"
+#: mod/profiles.php:362
+msgid "Sexual Preference"
+msgstr "Sexuelle Vorlieben"
 
-#: mod/contacts.php:603
-msgid "View conversations"
-msgstr "Unterhaltungen anzeigen"
+#: mod/profiles.php:366
+msgid "XMPP"
+msgstr "XMPP"
 
-#: mod/contacts.php:609
-msgid "Last update:"
-msgstr "Letzte Aktualisierung: "
+#: mod/profiles.php:370
+msgid "Homepage"
+msgstr "Webseite"
 
-#: mod/contacts.php:611
-msgid "Update public posts"
-msgstr "Öffentliche Beiträge aktualisieren"
+#: mod/profiles.php:374 mod/profiles.php:693
+msgid "Interests"
+msgstr "Interessen"
 
-#: mod/contacts.php:613 mod/contacts.php:987
-msgid "Update now"
-msgstr "Jetzt aktualisieren"
+#: mod/profiles.php:378
+msgid "Address"
+msgstr "Adresse"
 
-#: mod/contacts.php:618 mod/contacts.php:818 mod/contacts.php:996
-#: mod/admin.php:1600
-msgid "Unblock"
-msgstr "Entsperren"
+#: mod/profiles.php:385 mod/profiles.php:689
+msgid "Location"
+msgstr "Wohnort"
 
-#: mod/contacts.php:618 mod/contacts.php:818 mod/contacts.php:996
-#: mod/admin.php:1599
-msgid "Block"
-msgstr "Sperren"
+#: mod/profiles.php:470
+msgid "Profile updated."
+msgstr "Profil aktualisiert."
 
-#: mod/contacts.php:619 mod/contacts.php:819 mod/contacts.php:1004
-msgid "Unignore"
-msgstr "Ignorieren aufheben"
+#: mod/profiles.php:562
+msgid " and "
+msgstr " und "
 
-#: mod/contacts.php:623
-msgid "Currently blocked"
-msgstr "Derzeit geblockt"
+#: mod/profiles.php:571
+msgid "public profile"
+msgstr "öffentliches Profil"
 
-#: mod/contacts.php:624
-msgid "Currently ignored"
-msgstr "Derzeit ignoriert"
+#: mod/profiles.php:574
+#, php-format
+msgid "%1$s changed %2$s to &ldquo;%3$s&rdquo;"
+msgstr "%1$s hat %2$s geändert auf &ldquo;%3$s&rdquo;"
 
-#: mod/contacts.php:625
-msgid "Currently archived"
-msgstr "Momentan archiviert"
+#: mod/profiles.php:575
+#, php-format
+msgid " - Visit %1$s's %2$s"
+msgstr " – %1$ss %2$s besuchen"
 
-#: mod/contacts.php:626
-msgid ""
-"Replies/likes to your public posts <strong>may</strong> still be visible"
-msgstr "Antworten/Likes auf deine öffentlichen Beiträge <strong>könnten</strong> weiterhin sichtbar sein"
+#: mod/profiles.php:577
+#, php-format
+msgid "%1$s has an updated %2$s, changing %3$s."
+msgstr "%1$s hat folgendes aktualisiert %2$s, verändert wurde %3$s."
 
-#: mod/contacts.php:627
-msgid "Notification for new posts"
-msgstr "Benachrichtigung bei neuen Beiträgen"
+#: mod/profiles.php:635
+msgid "Hide contacts and friends:"
+msgstr "Kontakte und Freunde verbergen"
 
-#: mod/contacts.php:627
-msgid "Send a notification of every new post of this contact"
-msgstr "Sende eine Benachrichtigung, wann immer dieser Kontakt einen neuen Beitrag schreibt."
+#: mod/profiles.php:640
+msgid "Hide your contact/friend list from viewers of this profile?"
+msgstr "Liste der Kontakte vor Betrachtern dieses Profils verbergen?"
 
-#: mod/contacts.php:630
-msgid "Blacklisted keywords"
-msgstr "Blacklistete Schlüsselworte "
+#: mod/profiles.php:665
+msgid "Show more profile fields:"
+msgstr "Zeige mehr Profil-Felder:"
 
-#: mod/contacts.php:630
-msgid ""
-"Comma separated list of keywords that should not be converted to hashtags, "
-"when \"Fetch information and keywords\" is selected"
-msgstr "Komma-Separierte Liste mit Schlüsselworten, die nicht in Hashtags konvertiert werden, wenn \"Beziehe Information und Schlüsselworte\" aktiviert wurde"
+#: mod/profiles.php:677
+msgid "Profile Actions"
+msgstr "Profilaktionen"
 
-#: mod/contacts.php:648
-msgid "Actions"
-msgstr "Aktionen"
+#: mod/profiles.php:678
+msgid "Edit Profile Details"
+msgstr "Profil bearbeiten"
 
-#: mod/contacts.php:651
-msgid "Contact Settings"
-msgstr "Kontakteinstellungen"
+#: mod/profiles.php:680
+msgid "Change Profile Photo"
+msgstr "Profilbild ändern"
 
-#: mod/contacts.php:697
-msgid "Suggestions"
-msgstr "Kontaktvorschläge"
+#: mod/profiles.php:681
+msgid "View this profile"
+msgstr "Dieses Profil anzeigen"
 
-#: mod/contacts.php:700
-msgid "Suggest potential friends"
-msgstr "Kontakte vorschlagen"
+#: mod/profiles.php:683
+msgid "Create a new profile using these settings"
+msgstr "Neues Profil anlegen und diese Einstellungen verwenden"
 
-#: mod/contacts.php:708
-msgid "Show all contacts"
-msgstr "Alle Kontakte anzeigen"
+#: mod/profiles.php:684
+msgid "Clone this profile"
+msgstr "Dieses Profil duplizieren"
 
-#: mod/contacts.php:713
-msgid "Unblocked"
-msgstr "Ungeblockt"
+#: mod/profiles.php:685
+msgid "Delete this profile"
+msgstr "Dieses Profil löschen"
 
-#: mod/contacts.php:716
-msgid "Only show unblocked contacts"
-msgstr "Nur nicht-blockierte Kontakte anzeigen"
+#: mod/profiles.php:687
+msgid "Basic information"
+msgstr "Grundinformationen"
 
-#: mod/contacts.php:722
-msgid "Blocked"
-msgstr "Geblockt"
+#: mod/profiles.php:688
+msgid "Profile picture"
+msgstr "Profilbild"
 
-#: mod/contacts.php:725
-msgid "Only show blocked contacts"
-msgstr "Nur blockierte Kontakte anzeigen"
+#: mod/profiles.php:690
+msgid "Preferences"
+msgstr "Vorlieben"
 
-#: mod/contacts.php:731
-msgid "Ignored"
-msgstr "Ignoriert"
+#: mod/profiles.php:691
+msgid "Status information"
+msgstr "Status Informationen"
 
-#: mod/contacts.php:734
-msgid "Only show ignored contacts"
-msgstr "Nur ignorierte Kontakte anzeigen"
+#: mod/profiles.php:692
+msgid "Additional information"
+msgstr "Zusätzliche Informationen"
 
-#: mod/contacts.php:740
-msgid "Archived"
-msgstr "Archiviert"
+#: mod/profiles.php:695
+msgid "Relation"
+msgstr "Beziehung"
 
-#: mod/contacts.php:743
-msgid "Only show archived contacts"
-msgstr "Nur archivierte Kontakte anzeigen"
+#: mod/profiles.php:699
+msgid "Your Gender:"
+msgstr "Dein Geschlecht:"
 
-#: mod/contacts.php:749
-msgid "Hidden"
-msgstr "Verborgen"
+#: mod/profiles.php:700
+msgid "<span class=\"heart\">&hearts;</span> Marital Status:"
+msgstr "<span class=\"heart\">&hearts;</span> Beziehungsstatus:"
 
-#: mod/contacts.php:752
-msgid "Only show hidden contacts"
-msgstr "Nur verborgene Kontakte anzeigen"
+#: mod/profiles.php:702
+msgid "Example: fishing photography software"
+msgstr "Beispiel: Fischen Fotografie Software"
 
-#: mod/contacts.php:809
-msgid "Search your contacts"
-msgstr "Suche in deinen Kontakten"
+#: mod/profiles.php:707
+msgid "Profile Name:"
+msgstr "Profilname:"
 
-#: mod/contacts.php:817 mod/settings.php:162 mod/settings.php:708
-msgid "Update"
-msgstr "Aktualisierungen"
+#: mod/profiles.php:709
+msgid ""
+"This is your <strong>public</strong> profile.<br />It <strong>may</strong> "
+"be visible to anybody using the internet."
+msgstr "Dies ist Dein <strong>öffentliches</strong> Profil.<br />Es <strong>könnte</strong> für jeden Nutzer des Internets sichtbar sein."
 
-#: mod/contacts.php:820 mod/contacts.php:1012
-msgid "Archive"
-msgstr "Archivieren"
+#: mod/profiles.php:710
+msgid "Your Full Name:"
+msgstr "Dein kompletter Name:"
 
-#: mod/contacts.php:820 mod/contacts.php:1012
-msgid "Unarchive"
-msgstr "Aus Archiv zurückholen"
+#: mod/profiles.php:711
+msgid "Title/Description:"
+msgstr "Titel/Beschreibung:"
 
-#: mod/contacts.php:823
-msgid "Batch Actions"
-msgstr "Stapelverarbeitung"
+#: mod/profiles.php:714
+msgid "Street Address:"
+msgstr "Adresse:"
 
-#: mod/contacts.php:869
-msgid "View all contacts"
-msgstr "Alle Kontakte anzeigen"
+#: mod/profiles.php:715
+msgid "Locality/City:"
+msgstr "Wohnort:"
 
-#: mod/contacts.php:879
-msgid "View all common friends"
-msgstr "Alle Kontakte anzeigen"
+#: mod/profiles.php:716
+msgid "Region/State:"
+msgstr "Region/Bundesstaat:"
 
-#: mod/contacts.php:886
-msgid "Advanced Contact Settings"
-msgstr "Fortgeschrittene Kontakteinstellungen"
+#: mod/profiles.php:717
+msgid "Postal/Zip Code:"
+msgstr "Postleitzahl:"
 
-#: mod/contacts.php:920
-msgid "Mutual Friendship"
-msgstr "Beidseitige Freundschaft"
+#: mod/profiles.php:718
+msgid "Country:"
+msgstr "Land:"
 
-#: mod/contacts.php:924
-msgid "is a fan of yours"
-msgstr "ist ein Fan von dir"
+#: mod/profiles.php:722
+msgid "Who: (if applicable)"
+msgstr "Wer: (falls anwendbar)"
 
-#: mod/contacts.php:928
-msgid "you are a fan of"
-msgstr "Du bist Fan von"
+#: mod/profiles.php:722
+msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
+msgstr "Beispiele: cathy123, Cathy Williams, cathy@example.com"
 
-#: mod/contacts.php:998
-msgid "Toggle Blocked status"
-msgstr "Geblockt-Status ein-/ausschalten"
+#: mod/profiles.php:723
+msgid "Since [date]:"
+msgstr "Seit [Datum]:"
 
-#: mod/contacts.php:1006
-msgid "Toggle Ignored status"
-msgstr "Ignoriert-Status ein-/ausschalten"
+#: mod/profiles.php:725
+msgid "Tell us about yourself..."
+msgstr "Erzähle uns ein bisschen von Dir …"
 
-#: mod/contacts.php:1014
-msgid "Toggle Archive status"
-msgstr "Archiviert-Status ein-/ausschalten"
+#: mod/profiles.php:726
+msgid "XMPP (Jabber) address:"
+msgstr "XMPP (Jabber) Adresse"
 
-#: mod/contacts.php:1022
-msgid "Delete contact"
-msgstr "Lösche den Kontakt"
+#: mod/profiles.php:726
+msgid ""
+"The XMPP address will be propagated to your contacts so that they can follow"
+" you."
+msgstr "Die XMPP Adresse wird an deine Kontakte verteilt werden, so dass sie auch über XMPP mit dir in Kontakt treten können."
 
-#: mod/help.php:44
-msgid "Help:"
-msgstr "Hilfe:"
+#: mod/profiles.php:727
+msgid "Homepage URL:"
+msgstr "Adresse der Homepage:"
 
-#: mod/help.php:59 index.php:304
-msgid "Page not found."
-msgstr "Seite nicht gefunden."
+#: mod/profiles.php:730
+msgid "Religious Views:"
+msgstr "Religiöse Ansichten:"
 
-#: mod/invite.php:30
-msgid "Total invitation limit exceeded."
-msgstr "Limit für Einladungen erreicht."
+#: mod/profiles.php:731
+msgid "Public Keywords:"
+msgstr "Öffentliche Schlüsselwörter:"
 
-#: mod/invite.php:53
-#, php-format
-msgid "%s : Not a valid email address."
-msgstr "%s: Keine gültige Email Adresse."
+#: mod/profiles.php:731
+msgid "(Used for suggesting potential friends, can be seen by others)"
+msgstr "(Wird verwendet, um potentielle Kontakte zu finden, kann von Kontakten eingesehen werden)"
 
-#: mod/invite.php:78
-msgid "Please join us on Friendica"
-msgstr "Ich lade Dich zu unserem sozialen Netzwerk Friendica ein"
+#: mod/profiles.php:732
+msgid "Private Keywords:"
+msgstr "Private Schlüsselwörter:"
 
-#: mod/invite.php:89
-msgid "Invitation limit exceeded. Please contact your site administrator."
-msgstr "Limit für Einladungen erreicht. Bitte kontaktiere des Administrator der Seite."
+#: mod/profiles.php:732
+msgid "(Used for searching profiles, never shown to others)"
+msgstr "(Wird für die Suche nach Profilen verwendet und niemals veröffentlicht)"
 
-#: mod/invite.php:93
-#, php-format
-msgid "%s : Message delivery failed."
-msgstr "%s: Zustellung der Nachricht fehlgeschlagen."
+#: mod/profiles.php:735
+msgid "Musical interests"
+msgstr "Musikalische Interessen"
 
-#: mod/invite.php:97
-#, php-format
-msgid "%d message sent."
-msgid_plural "%d messages sent."
-msgstr[0] "%d Nachricht gesendet."
-msgstr[1] "%d Nachrichten gesendet."
+#: mod/profiles.php:736
+msgid "Books, literature"
+msgstr "Bücher, Literatur"
 
-#: mod/invite.php:116
-msgid "You have no more invitations available"
-msgstr "Du hast keine weiteren Einladungen"
+#: mod/profiles.php:737
+msgid "Television"
+msgstr "Fernsehen"
 
-#: mod/invite.php:124
-#, php-format
-msgid ""
-"Visit %s for a list of public sites that you can join. Friendica members on "
-"other sites can all connect with each other, as well as with members of many"
-" other social networks."
-msgstr "Besuche %s für eine Liste der öffentlichen Server, denen Du beitreten kannst. Friendica Mitglieder unterschiedlicher Server können sich sowohl alle miteinander verbinden, als auch mit Mitgliedern anderer Sozialer Netzwerke."
+#: mod/profiles.php:738
+msgid "Film/dance/culture/entertainment"
+msgstr "Filme/Tänze/Kultur/Unterhaltung"
 
-#: mod/invite.php:126
-#, php-format
-msgid ""
-"To accept this invitation, please visit and register at %s or any other "
-"public Friendica website."
-msgstr "Um diese Kontaktanfrage zu akzeptieren, besuche und registriere Dich bitte bei %s oder einer anderen öffentlichen Friendica Website."
+#: mod/profiles.php:739
+msgid "Hobbies/Interests"
+msgstr "Hobbies/Interessen"
 
-#: mod/invite.php:127
-#, php-format
-msgid ""
-"Friendica sites all inter-connect to create a huge privacy-enhanced social "
-"web that is owned and controlled by its members. They can also connect with "
-"many traditional social networks. See %s for a list of alternate Friendica "
-"sites you can join."
-msgstr "Friendica Server verbinden sich alle untereinander, um ein großes datenschutzorientiertes Soziales Netzwerk zu bilden, das von seinen Mitgliedern betrieben und kontrolliert wird. Sie können sich auch mit vielen üblichen Sozialen Netzwerken verbinden. Besuche %s für eine Liste alternativer Friendica Server, denen Du beitreten kannst."
+#: mod/profiles.php:740
+msgid "Love/romance"
+msgstr "Liebe/Romantik"
 
-#: mod/invite.php:131
-msgid ""
-"Our apologies. This system is not currently configured to connect with other"
-" public sites or invite members."
-msgstr "Es tut uns leid. Dieses System ist zurzeit nicht dafür konfiguriert, sich mit anderen öffentlichen Seiten zu verbinden oder Mitglieder einzuladen."
+#: mod/profiles.php:741
+msgid "Work/employment"
+msgstr "Arbeit/Anstellung"
 
-#: mod/invite.php:134
-#, php-format
-msgid "To accept this invitation, please visit and register at %s."
-msgstr "Um diese Kontaktanfrage zu akzeptieren, besuche und registriere Dich bitte bei %s."
+#: mod/profiles.php:742
+msgid "School/education"
+msgstr "Schule/Ausbildung"
 
-#: mod/invite.php:135
-msgid ""
-"Friendica sites all inter-connect to create a huge privacy-enhanced social "
-"web that is owned and controlled by its members. They can also connect with "
-"many traditional social networks."
-msgstr "Friendica Server verbinden sich alle untereinander, um ein großes datenschutzorientiertes Soziales Netzwerk zu bilden, das von seinen Mitgliedern betrieben und kontrolliert wird. Sie können sich auch mit vielen üblichen Sozialen Netzwerken verbinden."
+#: mod/profiles.php:743
+msgid "Contact information and Social Networks"
+msgstr "Kontaktinformationen und Soziale Netzwerke"
 
-#: mod/invite.php:141
-msgid "Send invitations"
-msgstr "Einladungen senden"
+#: mod/profiles.php:784
+msgid "Edit/Manage Profiles"
+msgstr "Bearbeite/Verwalte Profile"
 
-#: mod/invite.php:142
-msgid "Enter email addresses, one per line:"
-msgstr "E-Mail-Adressen eingeben, eine pro Zeile:"
+#: mod/search.php:96
+msgid "Only logged in users are permitted to perform a search."
+msgstr "Nur eingeloggten Benutzern ist das Suchen gestattet."
 
-#: mod/invite.php:144
-msgid ""
-"You are cordially invited to join me and other close friends on Friendica - "
-"and help us to create a better social web."
-msgstr "Du bist herzlich dazu eingeladen, Dich mir und anderen guten Freunden auf Friendica anzuschließen - und ein besseres Soziales Netz aufzubauen."
+#: mod/search.php:120
+msgid "Too Many Requests"
+msgstr "Zu viele Abfragen"
 
-#: mod/invite.php:146
-msgid "You will need to supply this invitation code: $invite_code"
-msgstr "Du benötigst den folgenden Einladungscode: $invite_code"
+#: mod/search.php:121
+msgid "Only one search per minute is permitted for not logged in users."
+msgstr "Es ist nur eine Suchanfrage pro Minute für nicht eingeloggte Benutzer gestattet."
 
-#: mod/invite.php:146
-msgid ""
-"Once you have registered, please connect with me via my profile page at:"
-msgstr "Sobald Du registriert bist, kontaktiere mich bitte auf meiner Profilseite:"
+#: mod/search.php:221
+#, php-format
+msgid "Items tagged with: %s"
+msgstr "Beiträge die mit %s getaggt sind"
 
-#: mod/invite.php:148
-msgid ""
-"For more information about the Friendica project and why we feel it is "
-"important, please visit http://friendi.ca"
-msgstr "Für weitere Informationen über das Friendica Projekt und warum wir es für ein wichtiges Projekt halten, besuche bitte http://friendi.ca."
+#: mod/search.php:223 mod/contacts.php:826
+#, php-format
+msgid "Results for: %s"
+msgstr "Ergebnisse für: %s"
 
-#: mod/settings.php:45 mod/admin.php:1580
+#: mod/settings.php:46 mod/admin.php:1588
 msgid "Account"
 msgstr "Nutzerkonto"
 
-#: mod/settings.php:54 mod/admin.php:174
+#: mod/settings.php:55 mod/admin.php:175
 msgid "Additional features"
 msgstr "Zusätzliche Features"
 
-#: mod/settings.php:62
+#: mod/settings.php:63
 msgid "Display"
 msgstr "Anzeige"
 
-#: mod/settings.php:69 mod/settings.php:891
+#: mod/settings.php:70 mod/settings.php:887
 msgid "Social Networks"
 msgstr "Soziale Netzwerke"
 
-#: mod/settings.php:76 mod/admin.php:172 mod/admin.php:1706 mod/admin.php:1769
+#: mod/settings.php:77 mod/admin.php:173 mod/admin.php:1714 mod/admin.php:1777
 msgid "Plugins"
 msgstr "Plugins"
 
-#: mod/settings.php:90
+#: mod/settings.php:91
 msgid "Connected apps"
 msgstr "Verbundene Programme"
 
-#: mod/settings.php:104
+#: mod/settings.php:105
 msgid "Remove account"
 msgstr "Konto löschen"
 
-#: mod/settings.php:159
+#: mod/settings.php:160
 msgid "Missing some important data!"
 msgstr "Wichtige Daten fehlen!"
 
-#: mod/settings.php:273
+#: mod/settings.php:163 mod/settings.php:704 mod/contacts.php:833
+msgid "Update"
+msgstr "Aktualisierungen"
+
+#: mod/settings.php:269
 msgid "Failed to connect with email account using the settings provided."
 msgstr "Verbindung zum E-Mail-Konto mit den angegebenen Einstellungen nicht möglich."
 
-#: mod/settings.php:278
+#: mod/settings.php:274
 msgid "Email settings updated."
 msgstr "E-Mail Einstellungen bearbeitet."
 
-#: mod/settings.php:293
+#: mod/settings.php:289
 msgid "Features updated"
 msgstr "Features aktualisiert"
 
-#: mod/settings.php:363
+#: mod/settings.php:359
 msgid "Relocate message has been send to your contacts"
 msgstr "Die Umzugsbenachrichtigung wurde an Deine Kontakte versendet."
 
-#: mod/settings.php:382
+#: mod/settings.php:378
 msgid "Empty passwords are not allowed. Password unchanged."
 msgstr "Leere Passwörter sind nicht erlaubt. Passwort bleibt unverändert."
 
-#: mod/settings.php:390
+#: mod/settings.php:386
 msgid "Wrong password."
 msgstr "Falsches Passwort."
 
-#: mod/settings.php:401
+#: mod/settings.php:397
 msgid "Password changed."
 msgstr "Passwort geändert."
 
-#: mod/settings.php:403
+#: mod/settings.php:399
 msgid "Password update failed. Please try again."
 msgstr "Aktualisierung des Passworts gescheitert, bitte versuche es noch einmal."
 
-#: mod/settings.php:483
+#: mod/settings.php:479
 msgid " Please use a shorter name."
 msgstr " Bitte verwende einen kürzeren Namen."
 
-#: mod/settings.php:485
+#: mod/settings.php:481
 msgid " Name too short."
 msgstr " Name ist zu kurz."
 
-#: mod/settings.php:494
+#: mod/settings.php:490
 msgid "Wrong Password"
 msgstr "Falsches Passwort"
 
-#: mod/settings.php:499
+#: mod/settings.php:495
 msgid " Not valid email."
 msgstr " Keine gültige E-Mail."
 
-#: mod/settings.php:505
+#: mod/settings.php:501
 msgid " Cannot change to that email."
 msgstr "Ändern der E-Mail nicht möglich. "
 
-#: mod/settings.php:561
+#: mod/settings.php:557
 msgid "Private forum has no privacy permissions. Using default privacy group."
 msgstr "Für das private Forum sind keine Zugriffsrechte eingestellt. Die voreingestellte Gruppe für neue Kontakte wird benutzt."
 
-#: mod/settings.php:565
+#: mod/settings.php:561
 msgid "Private forum has no privacy permissions and no default privacy group."
 msgstr "Für das private Forum sind keine Zugriffsrechte eingestellt, und es gibt keine voreingestellte Gruppe für neue Kontakte."
 
-#: mod/settings.php:605
+#: mod/settings.php:601
 msgid "Settings updated."
 msgstr "Einstellungen aktualisiert."
 
-#: mod/settings.php:681 mod/settings.php:707 mod/settings.php:743
+#: mod/settings.php:677 mod/settings.php:703 mod/settings.php:739
 msgid "Add application"
 msgstr "Programm hinzufügen"
 
-#: mod/settings.php:682 mod/settings.php:793 mod/settings.php:842
-#: mod/settings.php:909 mod/settings.php:1006 mod/settings.php:1272
-#: mod/admin.php:1145 mod/admin.php:1770 mod/admin.php:2033 mod/admin.php:2107
-#: mod/admin.php:2260
+#: mod/settings.php:678 mod/settings.php:789 mod/settings.php:838
+#: mod/settings.php:905 mod/settings.php:1002 mod/settings.php:1268
+#: mod/admin.php:1154 mod/admin.php:1778 mod/admin.php:2041 mod/admin.php:2115
+#: mod/admin.php:2268
 msgid "Save Settings"
 msgstr "Einstellungen speichern"
 
-#: mod/settings.php:685 mod/settings.php:711
+#: mod/settings.php:681 mod/settings.php:707
 msgid "Consumer Key"
 msgstr "Consumer Key"
 
-#: mod/settings.php:686 mod/settings.php:712
+#: mod/settings.php:682 mod/settings.php:708
 msgid "Consumer Secret"
 msgstr "Consumer Secret"
 
-#: mod/settings.php:687 mod/settings.php:713
+#: mod/settings.php:683 mod/settings.php:709
 msgid "Redirect"
 msgstr "Umleiten"
 
-#: mod/settings.php:688 mod/settings.php:714
+#: mod/settings.php:684 mod/settings.php:710
 msgid "Icon url"
 msgstr "Icon URL"
 
-#: mod/settings.php:699
+#: mod/settings.php:695
 msgid "You can't edit this application."
 msgstr "Du kannst dieses Programm nicht bearbeiten."
 
-#: mod/settings.php:742
+#: mod/settings.php:738
 msgid "Connected Apps"
 msgstr "Verbundene Programme"
 
-#: mod/settings.php:746
+#: mod/settings.php:742
 msgid "Client key starts with"
 msgstr "Anwenderschlüssel beginnt mit"
 
-#: mod/settings.php:747
+#: mod/settings.php:743
 msgid "No name"
 msgstr "Kein Name"
 
-#: mod/settings.php:748
+#: mod/settings.php:744
 msgid "Remove authorization"
 msgstr "Autorisierung entziehen"
 
-#: mod/settings.php:760
+#: mod/settings.php:756
 msgid "No Plugin settings configured"
 msgstr "Keine Plugin-Einstellungen konfiguriert"
 
-#: mod/settings.php:769
+#: mod/settings.php:765
 msgid "Plugin Settings"
 msgstr "Plugin-Einstellungen"
 
-#: mod/settings.php:783 mod/admin.php:2249 mod/admin.php:2250
+#: mod/settings.php:779 mod/admin.php:2257 mod/admin.php:2258
 msgid "Off"
 msgstr "Aus"
 
-#: mod/settings.php:783 mod/admin.php:2249 mod/admin.php:2250
+#: mod/settings.php:779 mod/admin.php:2257 mod/admin.php:2258
 msgid "On"
 msgstr "An"
 
-#: mod/settings.php:791
+#: mod/settings.php:787
 msgid "Additional Features"
 msgstr "Zusätzliche Features"
 
-#: mod/settings.php:801 mod/settings.php:805
+#: mod/settings.php:797 mod/settings.php:801
 msgid "General Social Media Settings"
 msgstr "Allgemeine Einstellungen zu Sozialen Medien"
 
-#: mod/settings.php:811
+#: mod/settings.php:807
 msgid "Disable intelligent shortening"
 msgstr "Intelligentes Link kürzen ausschalten"
 
-#: mod/settings.php:813
+#: mod/settings.php:809
 msgid ""
 "Normally the system tries to find the best link to add to shortened posts. "
 "If this option is enabled then every shortened post will always point to the"
 " original friendica post."
 msgstr "Normalerweise versucht das System den besten Link zu finden um ihn zu gekürzten Postings hinzu zu fügen. Wird diese Option ausgewählt wird stets ein Link auf die originale Friendica Nachricht beigefügt."
 
-#: mod/settings.php:819
+#: mod/settings.php:815
 msgid "Automatically follow any GNU Social (OStatus) followers/mentioners"
 msgstr "Automatisch allen GNU Social (OStatus) Followern/Erwähnern folgen"
 
-#: mod/settings.php:821
+#: mod/settings.php:817
 msgid ""
 "If you receive a message from an unknown OStatus user, this option decides "
 "what to do. If it is checked, a new contact will be created for every "
 "unknown user."
 msgstr "Wenn du eine Nachricht eines unbekannten OStatus Nutzers bekommst, entscheidet diese Option wie diese behandelt werden soll. Ist die Option aktiviert, wird ein neuer Kontakt für den Verfasser erstellt,."
 
-#: mod/settings.php:827
+#: mod/settings.php:823
 msgid "Default group for OStatus contacts"
 msgstr "Voreingestellte Gruppe für OStatus Kontakte"
 
-#: mod/settings.php:835
+#: mod/settings.php:831
 msgid "Your legacy GNU Social account"
 msgstr "Dein alter GNU Social Account"
 
-#: mod/settings.php:837
+#: mod/settings.php:833
 msgid ""
 "If you enter your old GNU Social/Statusnet account name here (in the format "
 "user@domain.tld), your contacts will be added automatically. The field will "
 "be emptied when done."
 msgstr "Wenn du deinen alten GNU Socual/Statusnet Accountnamen hier angibst (Format name@domain.tld) werden deine Kontakte automatisch hinzugefügt. Dieses Feld wird geleert, wenn die Kontakte hinzugefügt wurden."
 
-#: mod/settings.php:840
+#: mod/settings.php:836
 msgid "Repair OStatus subscriptions"
 msgstr "OStatus Abonnements reparieren"
 
-#: mod/settings.php:849 mod/settings.php:850
+#: mod/settings.php:845 mod/settings.php:846
 #, php-format
 msgid "Built-in support for %s connectivity is %s"
 msgstr "Eingebaute Unterstützung für Verbindungen zu %s ist %s"
 
-#: mod/settings.php:849 mod/settings.php:850
+#: mod/settings.php:845 mod/settings.php:846
 msgid "enabled"
 msgstr "eingeschaltet"
 
-#: mod/settings.php:849 mod/settings.php:850
+#: mod/settings.php:845 mod/settings.php:846
 msgid "disabled"
 msgstr "ausgeschaltet"
 
-#: mod/settings.php:850
+#: mod/settings.php:846
 msgid "GNU Social (OStatus)"
 msgstr "GNU Social (OStatus)"
 
-#: mod/settings.php:884
+#: mod/settings.php:880
 msgid "Email access is disabled on this site."
 msgstr "Zugriff auf E-Mails für diese Seite deaktiviert."
 
-#: mod/settings.php:896
+#: mod/settings.php:892
 msgid "Email/Mailbox Setup"
 msgstr "E-Mail/Postfach-Einstellungen"
 
-#: mod/settings.php:897
+#: mod/settings.php:893
 msgid ""
 "If you wish to communicate with email contacts using this service "
 "(optional), please specify how to connect to your mailbox."
 msgstr "Wenn Du mit E-Mail-Kontakten über diesen Service kommunizieren möchtest (optional), gib bitte die Einstellungen für Dein Postfach an."
 
-#: mod/settings.php:898
+#: mod/settings.php:894
 msgid "Last successful email check:"
 msgstr "Letzter erfolgreicher E-Mail Check"
 
-#: mod/settings.php:900
+#: mod/settings.php:896
 msgid "IMAP server name:"
 msgstr "IMAP-Server-Name:"
 
-#: mod/settings.php:901
+#: mod/settings.php:897
 msgid "IMAP port:"
 msgstr "IMAP-Port:"
 
-#: mod/settings.php:902
+#: mod/settings.php:898
 msgid "Security:"
 msgstr "Sicherheit:"
 
-#: mod/settings.php:902 mod/settings.php:907
+#: mod/settings.php:898 mod/settings.php:903
 msgid "None"
 msgstr "Keine"
 
-#: mod/settings.php:903
+#: mod/settings.php:899
 msgid "Email login name:"
 msgstr "E-Mail-Login-Name:"
 
-#: mod/settings.php:904
+#: mod/settings.php:900
 msgid "Email password:"
 msgstr "E-Mail-Passwort:"
 
-#: mod/settings.php:905
+#: mod/settings.php:901
 msgid "Reply-to address:"
 msgstr "Reply-to Adresse:"
 
-#: mod/settings.php:906
+#: mod/settings.php:902
 msgid "Send public posts to all email contacts:"
 msgstr "Sende öffentliche Beiträge an alle E-Mail-Kontakte:"
 
-#: mod/settings.php:907
+#: mod/settings.php:903
 msgid "Action after import:"
 msgstr "Aktion nach Import:"
 
-#: mod/settings.php:907
+#: mod/settings.php:903
 msgid "Move to folder"
 msgstr "In einen Ordner verschieben"
 
-#: mod/settings.php:908
+#: mod/settings.php:904
 msgid "Move to folder:"
 msgstr "In diesen Ordner verschieben:"
 
-#: mod/settings.php:944 mod/admin.php:1032
+#: mod/settings.php:940 mod/admin.php:1041
 msgid "No special theme for mobile devices"
 msgstr "Kein spezielles Theme für mobile Geräte verwenden."
 
-#: mod/settings.php:1004
+#: mod/settings.php:1000
 msgid "Display Settings"
 msgstr "Anzeige-Einstellungen"
 
-#: mod/settings.php:1010 mod/settings.php:1033
+#: mod/settings.php:1006 mod/settings.php:1029
 msgid "Display Theme:"
 msgstr "Theme:"
 
-#: mod/settings.php:1011
+#: mod/settings.php:1007
 msgid "Mobile Theme:"
 msgstr "Mobiles Theme"
 
-#: mod/settings.php:1012
+#: mod/settings.php:1008
 msgid "Suppress warning of insecure networks"
 msgstr "Warnung wegen unsicheren Netzwerken unterdrücken"
 
-#: mod/settings.php:1012
+#: mod/settings.php:1008
 msgid ""
 "Should the system suppress the warning that the current group contains "
 "members of networks that can't receive non public postings."
 msgstr "Soll das System Warnungen unterdrücken, die angezeigt werden weil von dir eingerichtete Kontakt-Gruppen Accounts aus Netzwerken beinhalten, die keine nicht öffentlichen Beiträge empfangen können."
 
-#: mod/settings.php:1013
+#: mod/settings.php:1009
 msgid "Update browser every xx seconds"
 msgstr "Browser alle xx Sekunden aktualisieren"
 
-#: mod/settings.php:1013
+#: mod/settings.php:1009
 msgid "Minimum of 10 seconds. Enter -1 to disable it."
 msgstr "Minimum sind 10 Sekunden. Gib -1 ein um abzuschalten."
 
-#: mod/settings.php:1014
+#: mod/settings.php:1010
 msgid "Number of items to display per page:"
 msgstr "Zahl der Beiträge, die pro Netzwerkseite angezeigt werden sollen: "
 
-#: mod/settings.php:1014 mod/settings.php:1015
+#: mod/settings.php:1010 mod/settings.php:1011
 msgid "Maximum of 100 items"
 msgstr "Maximal 100 Beiträge"
 
-#: mod/settings.php:1015
+#: mod/settings.php:1011
 msgid "Number of items to display per page when viewed from mobile device:"
 msgstr "Zahl der Beiträge, die pro Netzwerkseite auf mobilen Geräten angezeigt werden sollen:"
 
-#: mod/settings.php:1016
+#: mod/settings.php:1012
 msgid "Don't show emoticons"
 msgstr "Keine Smilies anzeigen"
 
-#: mod/settings.php:1017
+#: mod/settings.php:1013
 msgid "Calendar"
 msgstr "Kalender"
 
-#: mod/settings.php:1018
+#: mod/settings.php:1014
 msgid "Beginning of week:"
 msgstr "Wochenbeginn:"
 
-#: mod/settings.php:1019
+#: mod/settings.php:1015
 msgid "Don't show notices"
 msgstr "Info-Popups nicht anzeigen"
 
-#: mod/settings.php:1020
+#: mod/settings.php:1016
 msgid "Infinite scroll"
 msgstr "Endloses Scrollen"
 
-#: mod/settings.php:1021
+#: mod/settings.php:1017
 msgid "Automatic updates only at the top of the network page"
 msgstr "Automatische Updates nur, wenn Du oben auf der Netzwerkseite bist."
 
-#: mod/settings.php:1021
+#: mod/settings.php:1017
 msgid ""
 "When disabled, the network page is updated all the time, which could be "
 "confusing while reading."
 msgstr "Wenn dies deaktiviert ist, wird die Netzwerk Seite aktualisiert, wann immer neue Beiträge eintreffen, egal an welcher Stelle gerade gelesen wird."
 
-#: mod/settings.php:1022
+#: mod/settings.php:1018
 msgid "Bandwith Saver Mode"
 msgstr "Bandbreiten-Spar-Modus"
 
-#: mod/settings.php:1022
+#: mod/settings.php:1018
 msgid ""
 "When enabled, embedded content is not displayed on automatic updates, they "
 "only show on page reload."
 msgstr "Wenn aktiviert, wird der eingebettete Inhalt nicht automatisch aktualisiert. In diesem Fall Seite bitte neu laden."
 
-#: mod/settings.php:1024
+#: mod/settings.php:1020
 msgid "General Theme Settings"
 msgstr "Allgemeine Themeneinstellungen"
 
-#: mod/settings.php:1025
+#: mod/settings.php:1021
 msgid "Custom Theme Settings"
 msgstr "Benutzerdefinierte Theme Einstellungen"
 
-#: mod/settings.php:1026
+#: mod/settings.php:1022
 msgid "Content Settings"
 msgstr "Einstellungen zum Inhalt"
 
-#: mod/settings.php:1027 view/theme/duepuntozero/config.php:66
-#: view/theme/frio/config.php:69 view/theme/quattro/config.php:72
-#: view/theme/vier/config.php:115
+#: mod/settings.php:1023 view/theme/duepuntozero/config.php:67
+#: view/theme/frio/config.php:70 view/theme/quattro/config.php:73
+#: view/theme/vier/config.php:116
 msgid "Theme settings"
 msgstr "Themeneinstellungen"
 
-#: mod/settings.php:1111
+#: mod/settings.php:1107
 msgid "Account Types"
 msgstr "Kontenarten"
 
-#: mod/settings.php:1112
+#: mod/settings.php:1108
 msgid "Personal Page Subtypes"
 msgstr "Unterarten der persönlichen Seite"
 
-#: mod/settings.php:1113
+#: mod/settings.php:1109
 msgid "Community Forum Subtypes"
 msgstr "Unterarten des Gemeinschaftsforums"
 
-#: mod/settings.php:1120
+#: mod/settings.php:1116
 msgid "Personal Page"
 msgstr "Persönliche Seite"
 
-#: mod/settings.php:1121
+#: mod/settings.php:1117
 msgid "Account for a personal profile."
 msgstr "Konto für ein persönliches Profil."
 
-#: mod/settings.php:1124
+#: mod/settings.php:1120
 msgid "Organisation Page"
 msgstr "Organisationsseite"
 
-#: mod/settings.php:1125
+#: mod/settings.php:1121
 msgid ""
 "Account for an organisation that automatically approves contact requests as "
 "\"Followers\"."
 msgstr "Konto für eine Organisation, das Kontaktanfragen automatisch als \"Follower\" annimmt."
 
-#: mod/settings.php:1128
+#: mod/settings.php:1124
 msgid "News Page"
 msgstr "Nachrichtenseite"
 
-#: mod/settings.php:1129
+#: mod/settings.php:1125
 msgid ""
 "Account for a news reflector that automatically approves contact requests as"
 " \"Followers\"."
 msgstr "Konto für einen Feedspiegel, das Kontaktanfragen automatisch als \"Follower\" annimmt."
 
-#: mod/settings.php:1132
+#: mod/settings.php:1128
 msgid "Community Forum"
 msgstr "Gemeinschaftsforum"
 
-#: mod/settings.php:1133
+#: mod/settings.php:1129
 msgid "Account for community discussions."
 msgstr "Konto für Diskussionsforen. "
 
-#: mod/settings.php:1136
+#: mod/settings.php:1132
 msgid "Normal Account Page"
 msgstr "Normales Konto"
 
-#: mod/settings.php:1137
+#: mod/settings.php:1133
 msgid ""
 "Account for a regular personal profile that requires manual approval of "
 "\"Friends\" and \"Followers\"."
 msgstr "Konto für ein normales persönliches Profil. Kontaktanfragen müssen manuell als \"Friend\" oder \"Follower\" bestätigt werden."
 
-#: mod/settings.php:1140
+#: mod/settings.php:1136
 msgid "Soapbox Page"
 msgstr "Marktschreier-Konto"
 
-#: mod/settings.php:1141
+#: mod/settings.php:1137
 msgid ""
 "Account for a public profile that automatically approves contact requests as"
 " \"Followers\"."
 msgstr "Konto für ein öffentliches Profil, das Kontaktanfragen automatisch als \"Follower\" annimmt."
 
-#: mod/settings.php:1144
+#: mod/settings.php:1140
 msgid "Public Forum"
 msgstr "Öffentliches Forum"
 
-#: mod/settings.php:1145
+#: mod/settings.php:1141
 msgid "Automatically approves all contact requests."
 msgstr "Bestätigt alle Kontaktanfragen automatisch."
 
-#: mod/settings.php:1148
+#: mod/settings.php:1144
 msgid "Automatic Friend Page"
 msgstr "Automatische Freunde Seite"
 
-#: mod/settings.php:1149
+#: mod/settings.php:1145
 msgid ""
 "Account for a popular profile that automatically approves contact requests "
 "as \"Friends\"."
 msgstr "Konto für ein gefragtes Profil, das Kontaktanfragen automatisch als \"Friend\" annimmt."
 
-#: mod/settings.php:1152
+#: mod/settings.php:1148
 msgid "Private Forum [Experimental]"
 msgstr "Privates Forum [Versuchsstadium]"
 
-#: mod/settings.php:1153
+#: mod/settings.php:1149
 msgid "Requires manual approval of contact requests."
 msgstr "Kontaktanfragen müssen manuell bestätigt werden."
 
-#: mod/settings.php:1164
+#: mod/settings.php:1160
 msgid "OpenID:"
 msgstr "OpenID:"
 
-#: mod/settings.php:1164
+#: mod/settings.php:1160
 msgid "(Optional) Allow this OpenID to login to this account."
 msgstr "(Optional) Erlaube die Anmeldung für dieses Konto mit dieser OpenID."
 
-#: mod/settings.php:1172
+#: mod/settings.php:1168
 msgid "Publish your default profile in your local site directory?"
 msgstr "Darf Dein Standardprofil im Verzeichnis dieses Servers veröffentlicht werden?"
 
-#: mod/settings.php:1172
+#: mod/settings.php:1168
 msgid "Your profile may be visible in public."
 msgstr "Dein Profil könnte öffentlich abrufbar sein."
 
-#: mod/settings.php:1178
+#: mod/settings.php:1174
 msgid "Publish your default profile in the global social directory?"
 msgstr "Darf Dein Standardprofil im weltweiten Verzeichnis veröffentlicht werden?"
 
-#: mod/settings.php:1185
+#: mod/settings.php:1181
 msgid "Hide your contact/friend list from viewers of your default profile?"
 msgstr "Liste der Kontakte vor Betrachtern des Standardprofils verbergen?"
 
-#: mod/settings.php:1189
+#: mod/settings.php:1185
 msgid ""
 "If enabled, posting public messages to Diaspora and other networks isn't "
 "possible."
 msgstr "Wenn aktiviert, ist das senden öffentliche Nachrichten zu Diaspora und anderen Netzwerken nicht möglich"
 
-#: mod/settings.php:1194
+#: mod/settings.php:1190
 msgid "Allow friends to post to your profile page?"
 msgstr "Dürfen Deine Kontakte auf Deine Pinnwand schreiben?"
 
-#: mod/settings.php:1199
+#: mod/settings.php:1195
 msgid "Allow friends to tag your posts?"
 msgstr "Dürfen Deine Kontakte Deine Beiträge mit Schlagwörtern versehen?"
 
-#: mod/settings.php:1204
+#: mod/settings.php:1200
 msgid "Allow us to suggest you as a potential friend to new members?"
 msgstr "Dürfen wir Dich neuen Mitgliedern als potentiellen Kontakt vorschlagen?"
 
-#: mod/settings.php:1209
+#: mod/settings.php:1205
 msgid "Permit unknown people to send you private mail?"
 msgstr "Dürfen Dir Unbekannte private Nachrichten schicken?"
 
-#: mod/settings.php:1217
+#: mod/settings.php:1213
 msgid "Profile is <strong>not published</strong>."
 msgstr "Profil ist <strong>nicht veröffentlicht</strong>."
 
-#: mod/settings.php:1225
+#: mod/settings.php:1221
 #, php-format
 msgid "Your Identity Address is <strong>'%s'</strong> or '%s'."
 msgstr "Die Adresse deines Profils lautet <strong>'%s'</strong> oder '%s'."
 
-#: mod/settings.php:1232
+#: mod/settings.php:1228
 msgid "Automatically expire posts after this many days:"
 msgstr "Beiträge verfallen automatisch nach dieser Anzahl von Tagen:"
 
-#: mod/settings.php:1232
+#: mod/settings.php:1228
 msgid "If empty, posts will not expire. Expired posts will be deleted"
 msgstr "Wenn leer verfallen Beiträge nie automatisch. Verfallene Beiträge werden gelöscht."
 
-#: mod/settings.php:1233
+#: mod/settings.php:1229
 msgid "Advanced expiration settings"
 msgstr "Erweiterte Verfallseinstellungen"
 
-#: mod/settings.php:1234
+#: mod/settings.php:1230
 msgid "Advanced Expiration"
 msgstr "Erweitertes Verfallen"
 
-#: mod/settings.php:1235
+#: mod/settings.php:1231
 msgid "Expire posts:"
 msgstr "Beiträge verfallen lassen:"
 
-#: mod/settings.php:1236
+#: mod/settings.php:1232
 msgid "Expire personal notes:"
 msgstr "Persönliche Notizen verfallen lassen:"
 
-#: mod/settings.php:1237
+#: mod/settings.php:1233
 msgid "Expire starred posts:"
 msgstr "Markierte Beiträge verfallen lassen:"
 
-#: mod/settings.php:1238
+#: mod/settings.php:1234
 msgid "Expire photos:"
 msgstr "Fotos verfallen lassen:"
 
-#: mod/settings.php:1239
+#: mod/settings.php:1235
 msgid "Only expire posts by others:"
 msgstr "Nur Beiträge anderer verfallen:"
 
-#: mod/settings.php:1270
+#: mod/settings.php:1266
 msgid "Account Settings"
 msgstr "Kontoeinstellungen"
 
-#: mod/settings.php:1278
+#: mod/settings.php:1274
 msgid "Password Settings"
 msgstr "Passwort-Einstellungen"
 
-#: mod/settings.php:1280
+#: mod/settings.php:1276
 msgid "Leave password fields blank unless changing"
 msgstr "Lass die Passwort-Felder leer, außer Du willst das Passwort ändern"
 
-#: mod/settings.php:1281
+#: mod/settings.php:1277
 msgid "Current Password:"
 msgstr "Aktuelles Passwort:"
 
-#: mod/settings.php:1281 mod/settings.php:1282
+#: mod/settings.php:1277 mod/settings.php:1278
 msgid "Your current password to confirm the changes"
 msgstr "Dein aktuelles Passwort um die Änderungen zu bestätigen"
 
-#: mod/settings.php:1282
+#: mod/settings.php:1278
 msgid "Password:"
 msgstr "Passwort:"
 
-#: mod/settings.php:1286
+#: mod/settings.php:1282
 msgid "Basic Settings"
 msgstr "Grundeinstellungen"
 
-#: mod/settings.php:1288
+#: mod/settings.php:1284
 msgid "Email Address:"
 msgstr "E-Mail-Adresse:"
 
-#: mod/settings.php:1289
+#: mod/settings.php:1285
 msgid "Your Timezone:"
 msgstr "Deine Zeitzone:"
 
-#: mod/settings.php:1290
+#: mod/settings.php:1286
 msgid "Your Language:"
 msgstr "Deine Sprache:"
 
-#: mod/settings.php:1290
+#: mod/settings.php:1286
 msgid ""
 "Set the language we use to show you friendica interface and to send you "
 "emails"
 msgstr "Wähle die Sprache, in der wir Dir die Friendica-Oberfläche präsentieren sollen und Dir E-Mail schicken"
 
-#: mod/settings.php:1291
+#: mod/settings.php:1287
 msgid "Default Post Location:"
 msgstr "Standardstandort:"
 
-#: mod/settings.php:1292
+#: mod/settings.php:1288
 msgid "Use Browser Location:"
 msgstr "Standort des Browsers verwenden:"
 
-#: mod/settings.php:1295
+#: mod/settings.php:1291
 msgid "Security and Privacy Settings"
 msgstr "Sicherheits- und Privatsphäre-Einstellungen"
 
-#: mod/settings.php:1297
+#: mod/settings.php:1293
 msgid "Maximum Friend Requests/Day:"
 msgstr "Maximale Anzahl vonKontaktanfragen/Tag:"
 
-#: mod/settings.php:1297 mod/settings.php:1327
+#: mod/settings.php:1293 mod/settings.php:1323
 msgid "(to prevent spam abuse)"
 msgstr "(um SPAM zu vermeiden)"
 
-#: mod/settings.php:1298
+#: mod/settings.php:1294
 msgid "Default Post Permissions"
 msgstr "Standard-Zugriffsrechte für Beiträge"
 
-#: mod/settings.php:1299
+#: mod/settings.php:1295
 msgid "(click to open/close)"
 msgstr "(klicke zum öffnen/schließen)"
 
-#: mod/settings.php:1310
+#: mod/settings.php:1306
 msgid "Default Private Post"
 msgstr "Privater Standardbeitrag"
 
-#: mod/settings.php:1311
+#: mod/settings.php:1307
 msgid "Default Public Post"
 msgstr "Öffentlicher Standardbeitrag"
 
-#: mod/settings.php:1315
+#: mod/settings.php:1311
 msgid "Default Permissions for New Posts"
 msgstr "Standardberechtigungen für neue Beiträge"
 
-#: mod/settings.php:1327
+#: mod/settings.php:1323
 msgid "Maximum private messages per day from unknown people:"
 msgstr "Maximale Anzahl privater Nachrichten von Unbekannten pro Tag:"
 
-#: mod/settings.php:1330
+#: mod/settings.php:1326
 msgid "Notification Settings"
 msgstr "Benachrichtigungseinstellungen"
 
-#: mod/settings.php:1331
+#: mod/settings.php:1327
 msgid "By default post a status message when:"
 msgstr "Standardmäßig eine Statusnachricht posten, wenn:"
 
-#: mod/settings.php:1332
+#: mod/settings.php:1328
 msgid "accepting a friend request"
 msgstr "– Du eine Kontaktanfrage akzeptierst"
 
-#: mod/settings.php:1333
+#: mod/settings.php:1329
 msgid "joining a forum/community"
 msgstr "– Du einem Forum/einer Gemeinschaftsseite beitrittst"
 
-#: mod/settings.php:1334
+#: mod/settings.php:1330
 msgid "making an <em>interesting</em> profile change"
 msgstr "– Du eine <em>interessante</em> Änderung an Deinem Profil durchführst"
 
-#: mod/settings.php:1335
+#: mod/settings.php:1331
 msgid "Send a notification email when:"
 msgstr "Benachrichtigungs-E-Mail senden wenn:"
 
-#: mod/settings.php:1336
+#: mod/settings.php:1332
 msgid "You receive an introduction"
 msgstr "– Du eine Kontaktanfrage erhältst"
 
-#: mod/settings.php:1337
+#: mod/settings.php:1333
 msgid "Your introductions are confirmed"
 msgstr "– eine Deiner Kontaktanfragen akzeptiert wurde"
 
-#: mod/settings.php:1338
+#: mod/settings.php:1334
 msgid "Someone writes on your profile wall"
 msgstr "– jemand etwas auf Deine Pinnwand schreibt"
 
-#: mod/settings.php:1339
+#: mod/settings.php:1335
 msgid "Someone writes a followup comment"
 msgstr "– jemand auch einen Kommentar verfasst"
 
-#: mod/settings.php:1340
+#: mod/settings.php:1336
 msgid "You receive a private message"
 msgstr "– Du eine private Nachricht erhältst"
 
-#: mod/settings.php:1341
+#: mod/settings.php:1337
 msgid "You receive a friend suggestion"
 msgstr "– Du eine Empfehlung erhältst"
 
-#: mod/settings.php:1342
+#: mod/settings.php:1338
 msgid "You are tagged in a post"
 msgstr "– Du in einem Beitrag erwähnt wirst"
 
-#: mod/settings.php:1343
+#: mod/settings.php:1339
 msgid "You are poked/prodded/etc. in a post"
 msgstr "– Du von jemandem angestupst oder sonstwie behandelt wirst"
 
-#: mod/settings.php:1345
+#: mod/settings.php:1341
 msgid "Activate desktop notifications"
 msgstr "Desktop Benachrichtigungen einschalten"
 
-#: mod/settings.php:1345
+#: mod/settings.php:1341
 msgid "Show desktop popup on new notifications"
 msgstr "Desktop Benachrichtigungen einschalten"
 
-#: mod/settings.php:1347
+#: mod/settings.php:1343
 msgid "Text-only notification emails"
 msgstr "Benachrichtigungs E-Mail als Rein-Text."
 
-#: mod/settings.php:1349
+#: mod/settings.php:1345
 msgid "Send text only notification emails, without the html part"
 msgstr "Sende Benachrichtigungs E-Mail als Rein-Text - ohne HTML-Teil"
 
-#: mod/settings.php:1351
+#: mod/settings.php:1347
 msgid "Advanced Account/Page Type Settings"
 msgstr "Erweiterte Konto-/Seitentyp-Einstellungen"
 
-#: mod/settings.php:1352
+#: mod/settings.php:1348
 msgid "Change the behaviour of this account for special situations"
 msgstr "Verhalten dieses Kontos in bestimmten Situationen:"
 
-#: mod/settings.php:1355
+#: mod/settings.php:1351
 msgid "Relocate"
 msgstr "Umziehen"
 
-#: mod/settings.php:1356
-msgid ""
-"If you have moved this profile from another server, and some of your "
-"contacts don't receive your updates, try pushing this button."
-msgstr "Wenn Du Dein Profil von einem anderen Server umgezogen hast und einige Deiner Kontakte Deine Beiträge nicht erhalten, verwende diesen Button."
+#: mod/settings.php:1352
+msgid ""
+"If you have moved this profile from another server, and some of your "
+"contacts don't receive your updates, try pushing this button."
+msgstr "Wenn Du Dein Profil von einem anderen Server umgezogen hast und einige Deiner Kontakte Deine Beiträge nicht erhalten, verwende diesen Button."
+
+#: mod/settings.php:1353
+msgid "Resend relocate message to contacts"
+msgstr "Umzugsbenachrichtigung erneut an Kontakte senden"
+
+#: mod/suggest.php:30
+msgid "Do you really want to delete this suggestion?"
+msgstr "Möchtest Du wirklich diese Empfehlung löschen?"
+
+#: mod/suggest.php:71
+msgid ""
+"No suggestions available. If this is a new site, please try again in 24 "
+"hours."
+msgstr "Keine Vorschläge verfügbar. Falls der Server frisch aufgesetzt wurde, versuche es bitte in 24 Stunden noch einmal."
+
+#: mod/suggest.php:84 mod/suggest.php:104
+msgid "Ignore/Hide"
+msgstr "Ignorieren/Verbergen"
+
+#: mod/wall_attach.php:96
+msgid "Sorry, maybe your upload is bigger than the PHP configuration allows"
+msgstr "Entschuldige, die Datei scheint größer zu sein als es die PHP Konfiguration erlaubt."
+
+#: mod/wall_attach.php:96
+msgid "Or - did you try to upload an empty file?"
+msgstr "Oder - hast Du versucht, eine leere Datei hochzuladen?"
+
+#: mod/wall_attach.php:107
+#, php-format
+msgid "File exceeds size limit of %s"
+msgstr "Die Datei ist größer als das erlaubte Limit von %s"
 
-#: mod/settings.php:1357
-msgid "Resend relocate message to contacts"
-msgstr "Umzugsbenachrichtigung erneut an Kontakte senden"
+#: mod/wall_attach.php:151 mod/wall_attach.php:167
+msgid "File upload failed."
+msgstr "Hochladen der Datei fehlgeschlagen."
 
-#: mod/admin.php:98
+#: mod/admin.php:99
 msgid "Theme settings updated."
 msgstr "Themeneinstellungen aktualisiert."
 
-#: mod/admin.php:170 mod/admin.php:1144
+#: mod/admin.php:171 mod/admin.php:1153
 msgid "Site"
 msgstr "Seite"
 
-#: mod/admin.php:171 mod/admin.php:1078 mod/admin.php:1588 mod/admin.php:1604
+#: mod/admin.php:172 mod/admin.php:1087 mod/admin.php:1596 mod/admin.php:1612
 msgid "Users"
 msgstr "Nutzer"
 
-#: mod/admin.php:173 mod/admin.php:1982 mod/admin.php:2032
+#: mod/admin.php:174 mod/admin.php:1990 mod/admin.php:2040
 msgid "Themes"
 msgstr "Themen"
 
-#: mod/admin.php:175
+#: mod/admin.php:176
 msgid "DB updates"
 msgstr "DB Updates"
 
-#: mod/admin.php:176 mod/admin.php:582
+#: mod/admin.php:177 mod/admin.php:584
 msgid "Inspect Queue"
 msgstr "Warteschlange Inspizieren"
 
-#: mod/admin.php:177 mod/admin.php:297
+#: mod/admin.php:178 mod/admin.php:298
 msgid "Server Blocklist"
 msgstr "Server Blockliste"
 
-#: mod/admin.php:178 mod/admin.php:548
+#: mod/admin.php:179 mod/admin.php:550
 msgid "Federation Statistics"
 msgstr "Federation Statistik"
 
-#: mod/admin.php:179 mod/admin.php:374
+#: mod/admin.php:180 mod/admin.php:375
 msgid "Delete Item"
 msgstr "Eintrag löschen"
 
-#: mod/admin.php:193 mod/admin.php:204 mod/admin.php:2106
+#: mod/admin.php:194 mod/admin.php:205 mod/admin.php:2114
 msgid "Logs"
 msgstr "Protokolle"
 
-#: mod/admin.php:194 mod/admin.php:2174
+#: mod/admin.php:195 mod/admin.php:2182
 msgid "View Logs"
 msgstr "Protokolle anzeigen"
 
-#: mod/admin.php:195
+#: mod/admin.php:196
 msgid "probe address"
 msgstr "Adresse untersuchen"
 
-#: mod/admin.php:196
+#: mod/admin.php:197
 msgid "check webfinger"
 msgstr "Webfinger überprüfen"
 
-#: mod/admin.php:203
+#: mod/admin.php:204
 msgid "Plugin Features"
 msgstr "Plugin Features"
 
-#: mod/admin.php:205
+#: mod/admin.php:206
 msgid "diagnostics"
 msgstr "Diagnose"
 
-#: mod/admin.php:206
+#: mod/admin.php:207
 msgid "User registrations waiting for confirmation"
 msgstr "Nutzeranmeldungen die auf Bestätigung warten"
 
-#: mod/admin.php:288
+#: mod/admin.php:289
 msgid "The blocked domain"
 msgstr "Die blockierte Domain"
 
-#: mod/admin.php:289 mod/admin.php:302
+#: mod/admin.php:290 mod/admin.php:303
 msgid "The reason why you blocked this domain."
 msgstr "Die Begründung warum du diese Domain blockiert hast."
 
-#: mod/admin.php:290
+#: mod/admin.php:291
 msgid "Delete domain"
 msgstr "Domain löschen"
 
-#: mod/admin.php:290
+#: mod/admin.php:291
 msgid "Check to delete this entry from the blocklist"
 msgstr "Markieren, um diesen Eintrag von der Blocklist zu entfernen"
 
-#: mod/admin.php:296 mod/admin.php:373 mod/admin.php:547 mod/admin.php:581
-#: mod/admin.php:661 mod/admin.php:1143 mod/admin.php:1587 mod/admin.php:1705
-#: mod/admin.php:1768 mod/admin.php:1981 mod/admin.php:2031 mod/admin.php:2105
-#: mod/admin.php:2173
+#: mod/admin.php:297 mod/admin.php:374 mod/admin.php:549 mod/admin.php:583
+#: mod/admin.php:672 mod/admin.php:1152 mod/admin.php:1595 mod/admin.php:1713
+#: mod/admin.php:1776 mod/admin.php:1989 mod/admin.php:2039 mod/admin.php:2113
+#: mod/admin.php:2181
 msgid "Administration"
 msgstr "Administration"
 
-#: mod/admin.php:298
+#: mod/admin.php:299
 msgid ""
 "This page can be used to define a black list of servers from the federated "
 "network that are not allowed to interact with your node. For all entered "
@@ -7395,138 +7178,138 @@ msgid ""
 "server."
 msgstr "Auf dieser Seite kannst du die Liste der blockierten Domains aus dem föderalen Netzwerk verwalten, denen es untersagt ist mit deinem Knoten zu interagieren. Für jede der blockierten Domains musst du außerdem einen Grund für die Sperrung angeben."
 
-#: mod/admin.php:299
+#: mod/admin.php:300
 msgid ""
 "The list of blocked servers will be made publically available on the "
 "/friendica page so that your users and people investigating communication "
 "problems can find the reason easily."
 msgstr "Die Liste der blockierten Domains wird auf der /friendica Seite öffentlich einsehbar gemacht, damit deine Nutzer und Personen die Kommunikationsprobleme erkunden, die Ursachen einfach finden können."
 
-#: mod/admin.php:300
+#: mod/admin.php:301
 msgid "Add new entry to block list"
 msgstr "Neuen Eintrag in die Blockliste"
 
-#: mod/admin.php:301
+#: mod/admin.php:302
 msgid "Server Domain"
 msgstr "Domain des Servers"
 
-#: mod/admin.php:301
+#: mod/admin.php:302
 msgid ""
 "The domain of the new server to add to the block list. Do not include the "
 "protocol."
 msgstr "Der Domain-Name des Servers der geblockt werden soll. Gib das Protokoll nicht mit an!"
 
-#: mod/admin.php:302
+#: mod/admin.php:303
 msgid "Block reason"
 msgstr "Begründung der Blockierung"
 
-#: mod/admin.php:303
+#: mod/admin.php:304
 msgid "Add Entry"
 msgstr "Eintrag hinzufügen"
 
-#: mod/admin.php:304
+#: mod/admin.php:305
 msgid "Save changes to the blocklist"
 msgstr "Änderungen der Blockliste speichern"
 
-#: mod/admin.php:305
+#: mod/admin.php:306
 msgid "Current Entries in the Blocklist"
 msgstr "Aktuelle Einträge der Blockliste"
 
-#: mod/admin.php:308
+#: mod/admin.php:309
 msgid "Delete entry from blocklist"
 msgstr "Eintrag von der Blockliste entfernen"
 
-#: mod/admin.php:311
+#: mod/admin.php:312
 msgid "Delete entry from blocklist?"
 msgstr "Eintrag von der Blockliste entfernen?"
 
-#: mod/admin.php:336
+#: mod/admin.php:337
 msgid "Server added to blocklist."
 msgstr "Server zur Blockliste hinzugefügt."
 
-#: mod/admin.php:352
+#: mod/admin.php:353
 msgid "Site blocklist updated."
 msgstr "Blockliste aktualisiert."
 
-#: mod/admin.php:375
+#: mod/admin.php:376
 msgid "Delete this Item"
 msgstr "Diesen Eintrag löschen"
 
-#: mod/admin.php:376
+#: mod/admin.php:377
 msgid ""
 "On this page you can delete an item from your node. If the item is a top "
 "level posting, the entire thread will be deleted."
 msgstr "Auf dieser Seite kannst du Einträge von deinem Knoten löschen. Wenn der Eintrag der Anfang einer Diskussion ist, wird der gesamte Diskussionsverlauf gelöscht."
 
-#: mod/admin.php:377
+#: mod/admin.php:378
 msgid ""
 "You need to know the GUID of the item. You can find it e.g. by looking at "
 "the display URL. The last part of http://example.com/display/123456 is the "
 "GUID, here 123456."
 msgstr "Zur Löschung musst du die GUID des Eintrags kennen. Diese findest du z.B. durch die /display URL des Eintrags. Der letzte Teil der URL ist die GUID. Lautet die URL beispielsweise http://example.com/display/123456 ist die GUID 123456."
 
-#: mod/admin.php:378
+#: mod/admin.php:379
 msgid "GUID"
 msgstr "GUID"
 
-#: mod/admin.php:378
+#: mod/admin.php:379
 msgid "The GUID of the item you want to delete."
 msgstr "Die GUID des zu löschenden Eintrags"
 
-#: mod/admin.php:415
+#: mod/admin.php:416
 msgid "Item marked for deletion."
 msgstr "Eintrag wurden zur Löschung markiert"
 
-#: mod/admin.php:478
+#: mod/admin.php:480
 msgid "unknown"
 msgstr "Unbekannt"
 
-#: mod/admin.php:541
+#: mod/admin.php:543
 msgid ""
 "This page offers you some numbers to the known part of the federated social "
 "network your Friendica node is part of. These numbers are not complete but "
 "only reflect the part of the network your node is aware of."
 msgstr "Diese Seite präsentiert einige Zahlen zu dem bekannten Teil des föderalen sozialen Netzwerks, von dem deine Friendica Installation ein Teil ist. Diese Zahlen sind nicht absolut und reflektieren nur den Teil des Netzwerks, den dein Knoten kennt."
 
-#: mod/admin.php:542
+#: mod/admin.php:544
 msgid ""
 "The <em>Auto Discovered Contact Directory</em> feature is not enabled, it "
 "will improve the data displayed here."
 msgstr "Die Funktion um <em>Automatisch ein Kontaktverzeichnis erstellen</em> ist nicht aktiv. Es wird die hier angezeigten Daten verbessern."
 
-#: mod/admin.php:554
+#: mod/admin.php:556
 #, php-format
 msgid "Currently this node is aware of %d nodes from the following platforms:"
 msgstr "Momentan kennt dieser Knoten %d andere Knoten der folgenden Plattformen:"
 
-#: mod/admin.php:584
+#: mod/admin.php:586
 msgid "ID"
 msgstr "ID"
 
-#: mod/admin.php:585
+#: mod/admin.php:587
 msgid "Recipient Name"
 msgstr "Empfänger Name"
 
-#: mod/admin.php:586
+#: mod/admin.php:588
 msgid "Recipient Profile"
 msgstr "Empfänger Profil"
 
-#: mod/admin.php:588
+#: mod/admin.php:590
 msgid "Created"
 msgstr "Erstellt"
 
-#: mod/admin.php:589
+#: mod/admin.php:591
 msgid "Last Tried"
 msgstr "Zuletzt versucht"
 
-#: mod/admin.php:590
+#: mod/admin.php:592
 msgid ""
 "This page lists the content of the queue for outgoing postings. These are "
 "postings the initial delivery failed for. They will be resend later and "
 "eventually deleted if the delivery fails permanently."
 msgstr "Auf dieser Seite werden die in der Warteschlange eingereihten Beiträge aufgelistet. Bei diesen Beiträgen schlug die erste Zustellung fehl. Es wird später wiederholt versucht die Beiträge zuzustellen, bis sie schließlich gelöscht werden."
 
-#: mod/admin.php:615
+#: mod/admin.php:617
 #, php-format
 msgid ""
 "Your DB still runs with MyISAM tables. You should change the engine type to "
@@ -7537,424 +7320,443 @@ msgid ""
 "automatic conversion.<br />"
 msgstr "Deine DB verwendet derzeit noch MyISAM Tabellen. Du solltest die Datenbank Engine auf InnoDB umstellen, da Friendica in Zukunft InnoDB Features verwenden wird. Eine Anleitung zur Umstellung der Datenbank kannst du  <a href=\"%s\">hier</a>  finden. Du kannst außerdem mit dem Befehl <tt>php include/dbstructure.php toinnodb</tt> auf der Kommandozeile die Umstellung automatisch vornehmen lassen."
 
-#: mod/admin.php:624
+#: mod/admin.php:626
 msgid ""
 "The database update failed. Please run \"php include/dbstructure.php "
 "update\" from the command line and have a look at the errors that might "
 "appear."
 msgstr "Das Update der Datenbank ist fehlgeschlagen. Bitte führe 'php include/dbstructure.php update' in der Kommandozeile aus und achte auf eventuell auftretende Fehlermeldungen."
 
-#: mod/admin.php:629 mod/admin.php:1537
+#: mod/admin.php:632
+msgid "The worker was never executed. Please check your database structure!"
+msgstr "Der Hintergrundprozess (worker) wurde noch nie gestartet. Bitte überprüfe deine Datenbankstruktur."
+
+#: mod/admin.php:635
+#, php-format
+msgid ""
+"The last worker execution was on %s UTC. This is older than one hour. Please"
+" check your crontab settings."
+msgstr "Der Hintergrundprozess (worker) wurde zuletzt um %s UTC ausgeführt. Das war vor mehr als einer Stunde. Bitte überprüfe deine crontab Einstellungen."
+
+#: mod/admin.php:640 mod/admin.php:1545
 msgid "Normal Account"
 msgstr "Normales Konto"
 
-#: mod/admin.php:630 mod/admin.php:1538
+#: mod/admin.php:641 mod/admin.php:1546
 msgid "Automatic Follower Account"
 msgstr "Automatisc Folgender Account"
 
-#: mod/admin.php:631 mod/admin.php:1539
+#: mod/admin.php:642 mod/admin.php:1547
 msgid "Public Forum Account"
 msgstr "Öffentliche Gemeinschaftsforen Accoun"
 
-#: mod/admin.php:632 mod/admin.php:1540
+#: mod/admin.php:643 mod/admin.php:1548
 msgid "Automatic Friend Account"
 msgstr "Automatisches Freundekonto"
 
-#: mod/admin.php:633
+#: mod/admin.php:644
 msgid "Blog Account"
 msgstr "Blog-Konto"
 
-#: mod/admin.php:634
+#: mod/admin.php:645
 msgid "Private Forum Account"
 msgstr "Private Gemeinschaftsforen Accoun"
 
-#: mod/admin.php:656
+#: mod/admin.php:667
 msgid "Message queues"
 msgstr "Nachrichten-Warteschlangen"
 
-#: mod/admin.php:662
+#: mod/admin.php:673
 msgid "Summary"
 msgstr "Zusammenfassung"
 
-#: mod/admin.php:664
+#: mod/admin.php:675
 msgid "Registered users"
 msgstr "Registrierte Nutzer"
 
-#: mod/admin.php:666
+#: mod/admin.php:677
 msgid "Pending registrations"
 msgstr "Anstehende Anmeldungen"
 
-#: mod/admin.php:667
+#: mod/admin.php:678
 msgid "Version"
 msgstr "Version"
 
-#: mod/admin.php:672
+#: mod/admin.php:683
 msgid "Active plugins"
 msgstr "Aktive Plugins"
 
-#: mod/admin.php:697
+#: mod/admin.php:708
 msgid "Can not parse base url. Must have at least <scheme>://<domain>"
 msgstr "Die Basis-URL konnte nicht analysiert werden. Sie muss mindestens aus <protokoll>://<domain> bestehen"
 
-#: mod/admin.php:1004
+#: mod/admin.php:1013
 msgid "Site settings updated."
 msgstr "Seiteneinstellungen aktualisiert."
 
-#: mod/admin.php:1061
+#: mod/admin.php:1070
 msgid "No community page"
 msgstr "Keine Gemeinschaftsseite"
 
-#: mod/admin.php:1062
+#: mod/admin.php:1071
 msgid "Public postings from users of this site"
 msgstr "Öffentliche Beiträge von Nutzer_innen dieser Seite"
 
-#: mod/admin.php:1063
+#: mod/admin.php:1072
 msgid "Global community page"
 msgstr "Globale Gemeinschaftsseite"
 
-#: mod/admin.php:1069
+#: mod/admin.php:1077 mod/contacts.php:551
+msgid "Never"
+msgstr "Niemals"
+
+#: mod/admin.php:1078
 msgid "At post arrival"
 msgstr "Beim Empfang von Nachrichten"
 
-#: mod/admin.php:1079
+#: mod/admin.php:1086 mod/contacts.php:578
+msgid "Disabled"
+msgstr "Deaktiviert"
+
+#: mod/admin.php:1088
 msgid "Users, Global Contacts"
 msgstr "Nutzer, globale Kontakte"
 
-#: mod/admin.php:1080
+#: mod/admin.php:1089
 msgid "Users, Global Contacts/fallback"
 msgstr "Nutzer, globale Kontakte / Fallback"
 
-#: mod/admin.php:1084
+#: mod/admin.php:1093
 msgid "One month"
 msgstr "ein Monat"
 
-#: mod/admin.php:1085
+#: mod/admin.php:1094
 msgid "Three months"
 msgstr "drei Monate"
 
-#: mod/admin.php:1086
+#: mod/admin.php:1095
 msgid "Half a year"
 msgstr "ein halbes Jahr"
 
-#: mod/admin.php:1087
+#: mod/admin.php:1096
 msgid "One year"
 msgstr "ein Jahr"
 
-#: mod/admin.php:1092
+#: mod/admin.php:1101
 msgid "Multi user instance"
 msgstr "Mehrbenutzer Instanz"
 
-#: mod/admin.php:1115
+#: mod/admin.php:1124
 msgid "Closed"
 msgstr "Geschlossen"
 
-#: mod/admin.php:1116
+#: mod/admin.php:1125
 msgid "Requires approval"
 msgstr "Bedarf der Zustimmung"
 
-#: mod/admin.php:1117
+#: mod/admin.php:1126
 msgid "Open"
 msgstr "Offen"
 
-#: mod/admin.php:1121
+#: mod/admin.php:1130
 msgid "No SSL policy, links will track page SSL state"
 msgstr "Keine SSL Richtlinie, Links werden das verwendete Protokoll beibehalten"
 
-#: mod/admin.php:1122
+#: mod/admin.php:1131
 msgid "Force all links to use SSL"
 msgstr "SSL für alle Links erzwingen"
 
-#: mod/admin.php:1123
+#: mod/admin.php:1132
 msgid "Self-signed certificate, use SSL for local links only (discouraged)"
 msgstr "Selbst-unterzeichnetes Zertifikat, SSL nur für lokale Links verwenden (nicht empfohlen)"
 
-#: mod/admin.php:1147
+#: mod/admin.php:1156
 msgid "File upload"
 msgstr "Datei hochladen"
 
-#: mod/admin.php:1148
+#: mod/admin.php:1157
 msgid "Policies"
 msgstr "Regeln"
 
-#: mod/admin.php:1150
+#: mod/admin.php:1159
 msgid "Auto Discovered Contact Directory"
 msgstr "Automatisch ein Kontaktverzeichnis erstellen"
 
-#: mod/admin.php:1151
+#: mod/admin.php:1160
 msgid "Performance"
 msgstr "Performance"
 
-#: mod/admin.php:1152
+#: mod/admin.php:1161
 msgid "Worker"
 msgstr "Worker"
 
-#: mod/admin.php:1153
+#: mod/admin.php:1162
 msgid ""
 "Relocate - WARNING: advanced function. Could make this server unreachable."
 msgstr "Umsiedeln - WARNUNG: Könnte diesen Server unerreichbar machen."
 
-#: mod/admin.php:1156
+#: mod/admin.php:1165
 msgid "Site name"
 msgstr "Seitenname"
 
-#: mod/admin.php:1157
+#: mod/admin.php:1166
 msgid "Host name"
 msgstr "Host Name"
 
-#: mod/admin.php:1158
+#: mod/admin.php:1167
 msgid "Sender Email"
 msgstr "Absender für Emails"
 
-#: mod/admin.php:1158
+#: mod/admin.php:1167
 msgid ""
 "The email address your server shall use to send notification emails from."
 msgstr "Die E-Mail Adresse die dein Server zum Versenden von Benachrichtigungen verwenden soll."
 
-#: mod/admin.php:1159
+#: mod/admin.php:1168
 msgid "Banner/Logo"
 msgstr "Banner/Logo"
 
-#: mod/admin.php:1160
+#: mod/admin.php:1169
 msgid "Shortcut icon"
 msgstr "Shortcut Icon"
 
-#: mod/admin.php:1160
+#: mod/admin.php:1169
 msgid "Link to an icon that will be used for browsers."
 msgstr "Link zu einem Icon, das Browser verwenden werden."
 
-#: mod/admin.php:1161
+#: mod/admin.php:1170
 msgid "Touch icon"
 msgstr "Touch Icon"
 
-#: mod/admin.php:1161
+#: mod/admin.php:1170
 msgid "Link to an icon that will be used for tablets and mobiles."
 msgstr "Link zu einem Icon das Tablets und Handies verwenden sollen."
 
-#: mod/admin.php:1162
+#: mod/admin.php:1171
 msgid "Additional Info"
 msgstr "Zusätzliche Informationen"
 
-#: mod/admin.php:1162
+#: mod/admin.php:1171
 #, php-format
 msgid ""
 "For public servers: you can add additional information here that will be "
 "listed at %s/siteinfo."
 msgstr "Für öffentliche Server kannst Du hier zusätzliche Informationen angeben, die dann auf %s/siteinfo angezeigt werden."
 
-#: mod/admin.php:1163
+#: mod/admin.php:1172
 msgid "System language"
 msgstr "Systemsprache"
 
-#: mod/admin.php:1164
+#: mod/admin.php:1173
 msgid "System theme"
 msgstr "Systemweites Theme"
 
-#: mod/admin.php:1164
+#: mod/admin.php:1173
 msgid ""
 "Default system theme - may be over-ridden by user profiles - <a href='#' "
 "id='cnftheme'>change theme settings</a>"
 msgstr "Vorgabe für das System-Theme - kann von Benutzerprofilen überschrieben werden - <a href='#' id='cnftheme'>Theme-Einstellungen ändern</a>"
 
-#: mod/admin.php:1165
+#: mod/admin.php:1174
 msgid "Mobile system theme"
 msgstr "Systemweites mobiles Theme"
 
-#: mod/admin.php:1165
+#: mod/admin.php:1174
 msgid "Theme for mobile devices"
 msgstr "Thema für mobile Geräte"
 
-#: mod/admin.php:1166
+#: mod/admin.php:1175
 msgid "SSL link policy"
 msgstr "Regeln für SSL Links"
 
-#: mod/admin.php:1166
+#: mod/admin.php:1175
 msgid "Determines whether generated links should be forced to use SSL"
 msgstr "Bestimmt, ob generierte Links SSL verwenden müssen"
 
-#: mod/admin.php:1167
+#: mod/admin.php:1176
 msgid "Force SSL"
 msgstr "Erzwinge SSL"
 
-#: mod/admin.php:1167
+#: mod/admin.php:1176
 msgid ""
 "Force all Non-SSL requests to SSL - Attention: on some systems it could lead"
 " to endless loops."
 msgstr "Erzinge alle Nicht-SSL Anfragen auf SSL - Achtung: auf manchen Systemen verursacht dies eine Endlosschleife."
 
-#: mod/admin.php:1168
+#: mod/admin.php:1177
 msgid "Hide help entry from navigation menu"
 msgstr "Verberge den Menüeintrag für die Hilfe im Navigationsmenü"
 
-#: mod/admin.php:1168
+#: mod/admin.php:1177
 msgid ""
 "Hides the menu entry for the Help pages from the navigation menu. You can "
 "still access it calling /help directly."
 msgstr "Verbirgt den Menüeintrag für die Hilfe-Seiten im Navigationsmenü. Die Seiten können weiterhin über /help aufgerufen werden."
 
-#: mod/admin.php:1169
+#: mod/admin.php:1178
 msgid "Single user instance"
 msgstr "Ein-Nutzer Instanz"
 
-#: mod/admin.php:1169
+#: mod/admin.php:1178
 msgid "Make this instance multi-user or single-user for the named user"
 msgstr "Regelt ob es sich bei dieser Instanz um eine ein Personen Installation oder eine Installation mit mehr als einem Nutzer handelt."
 
-#: mod/admin.php:1170
+#: mod/admin.php:1179
 msgid "Maximum image size"
 msgstr "Maximale Bildgröße"
 
-#: mod/admin.php:1170
+#: mod/admin.php:1179
 msgid ""
 "Maximum size in bytes of uploaded images. Default is 0, which means no "
 "limits."
 msgstr "Maximale Uploadgröße von Bildern in Bytes. Standard ist 0, d.h. ohne Limit."
 
-#: mod/admin.php:1171
+#: mod/admin.php:1180
 msgid "Maximum image length"
 msgstr "Maximale Bildlänge"
 
-#: mod/admin.php:1171
+#: mod/admin.php:1180
 msgid ""
 "Maximum length in pixels of the longest side of uploaded images. Default is "
 "-1, which means no limits."
 msgstr "Maximale Länge in Pixeln der längsten Seite eines hoch geladenen Bildes. Grundeinstellung ist -1 was keine Einschränkung bedeutet."
 
-#: mod/admin.php:1172
+#: mod/admin.php:1181
 msgid "JPEG image quality"
 msgstr "Qualität des JPEG Bildes"
 
-#: mod/admin.php:1172
+#: mod/admin.php:1181
 msgid ""
 "Uploaded JPEGS will be saved at this quality setting [0-100]. Default is "
 "100, which is full quality."
 msgstr "Hoch geladene JPEG Bilder werden mit dieser Qualität [0-100] gespeichert. Grundeinstellung ist 100, kein Qualitätsverlust."
 
-#: mod/admin.php:1174
+#: mod/admin.php:1183
 msgid "Register policy"
 msgstr "Registrierungsmethode"
 
-#: mod/admin.php:1175
+#: mod/admin.php:1184
 msgid "Maximum Daily Registrations"
 msgstr "Maximum täglicher Registrierungen"
 
-#: mod/admin.php:1175
+#: mod/admin.php:1184
 msgid ""
 "If registration is permitted above, this sets the maximum number of new user"
 " registrations to accept per day.  If register is set to closed, this "
 "setting has no effect."
 msgstr "Wenn die Registrierung weiter oben erlaubt ist, regelt dies die maximale Anzahl von Neuanmeldungen pro Tag. Wenn die Registrierung geschlossen ist, hat diese Einstellung keinen Effekt."
 
-#: mod/admin.php:1176
+#: mod/admin.php:1185
 msgid "Register text"
 msgstr "Registrierungstext"
 
-#: mod/admin.php:1176
+#: mod/admin.php:1185
 msgid "Will be displayed prominently on the registration page."
 msgstr "Wird gut sichtbar auf der Registrierungsseite angezeigt."
 
-#: mod/admin.php:1177
+#: mod/admin.php:1186
 msgid "Accounts abandoned after x days"
 msgstr "Nutzerkonten gelten nach x Tagen als unbenutzt"
 
-#: mod/admin.php:1177
+#: mod/admin.php:1186
 msgid ""
 "Will not waste system resources polling external sites for abandonded "
 "accounts. Enter 0 for no time limit."
 msgstr "Verschwende keine System-Ressourcen auf das Pollen externer Seiten, wenn Konten nicht mehr benutzt werden. 0 eingeben für kein Limit."
 
-#: mod/admin.php:1178
+#: mod/admin.php:1187
 msgid "Allowed friend domains"
 msgstr "Erlaubte Domains für Kontakte"
 
-#: mod/admin.php:1178
+#: mod/admin.php:1187
 msgid ""
 "Comma separated list of domains which are allowed to establish friendships "
 "with this site. Wildcards are accepted. Empty to allow any domains"
 msgstr "Liste der Domains, die für Kontakte erlaubt sind, durch Kommas getrennt. Platzhalter werden akzeptiert. Leer lassen, um alle Domains zu erlauben."
 
-#: mod/admin.php:1179
+#: mod/admin.php:1188
 msgid "Allowed email domains"
 msgstr "Erlaubte Domains für E-Mails"
 
-#: mod/admin.php:1179
+#: mod/admin.php:1188
 msgid ""
 "Comma separated list of domains which are allowed in email addresses for "
 "registrations to this site. Wildcards are accepted. Empty to allow any "
 "domains"
 msgstr "Liste der Domains, die für E-Mail-Adressen bei der Registrierung erlaubt sind, durch Kommas getrennt. Platzhalter werden akzeptiert. Leer lassen, um alle Domains zu erlauben."
 
-#: mod/admin.php:1180
+#: mod/admin.php:1189
 msgid "Block public"
 msgstr "Öffentlichen Zugriff blockieren"
 
-#: mod/admin.php:1180
+#: mod/admin.php:1189
 msgid ""
 "Check to block public access to all otherwise public personal pages on this "
 "site unless you are currently logged in."
 msgstr "Klicken, um öffentlichen Zugriff auf sonst öffentliche Profile zu blockieren, wenn man nicht eingeloggt ist."
 
-#: mod/admin.php:1181
+#: mod/admin.php:1190
 msgid "Force publish"
 msgstr "Erzwinge Veröffentlichung"
 
-#: mod/admin.php:1181
+#: mod/admin.php:1190
 msgid ""
 "Check to force all profiles on this site to be listed in the site directory."
 msgstr "Klicken, um Anzeige aller Profile dieses Servers im Verzeichnis zu erzwingen."
 
-#: mod/admin.php:1182
+#: mod/admin.php:1191
 msgid "Global directory URL"
 msgstr "URL des weltweiten Verzeichnisses"
 
-#: mod/admin.php:1182
+#: mod/admin.php:1191
 msgid ""
 "URL to the global directory. If this is not set, the global directory is "
 "completely unavailable to the application."
 msgstr "URL des weltweiten Verzeichnisses. Wenn diese nicht gesetzt ist, ist das Verzeichnis für die Applikation nicht erreichbar."
 
-#: mod/admin.php:1183
+#: mod/admin.php:1192
 msgid "Allow threaded items"
 msgstr "Erlaube Threads in Diskussionen"
 
-#: mod/admin.php:1183
+#: mod/admin.php:1192
 msgid "Allow infinite level threading for items on this site."
 msgstr "Erlaube ein unendliches Level für Threads auf dieser Seite."
 
-#: mod/admin.php:1184
+#: mod/admin.php:1193
 msgid "Private posts by default for new users"
 msgstr "Private Beiträge als Standard für neue Nutzer"
 
-#: mod/admin.php:1184
+#: mod/admin.php:1193
 msgid ""
 "Set default post permissions for all new members to the default privacy "
 "group rather than public."
 msgstr "Die Standard-Zugriffsrechte für neue Nutzer werden so gesetzt, dass als Voreinstellung in die private Gruppe gepostet wird anstelle von öffentlichen Beiträgen."
 
-#: mod/admin.php:1185
+#: mod/admin.php:1194
 msgid "Don't include post content in email notifications"
 msgstr "Inhalte von Beiträgen nicht in E-Mail-Benachrichtigungen versenden"
 
-#: mod/admin.php:1185
+#: mod/admin.php:1194
 msgid ""
 "Don't include the content of a post/comment/private message/etc. in the "
 "email notifications that are sent out from this site, as a privacy measure."
 msgstr "Inhalte von Beiträgen/Kommentaren/privaten Nachrichten/usw., zum Datenschutz nicht in E-Mail-Benachrichtigungen einbinden."
 
-#: mod/admin.php:1186
+#: mod/admin.php:1195
 msgid "Disallow public access to addons listed in the apps menu."
 msgstr "Öffentlichen Zugriff auf Addons im Apps Menü verbieten."
 
-#: mod/admin.php:1186
+#: mod/admin.php:1195
 msgid ""
 "Checking this box will restrict addons listed in the apps menu to members "
 "only."
 msgstr "Wenn ausgewählt werden die im Apps Menü aufgeführten Addons nur angemeldeten Nutzern der Seite zur Verfügung gestellt."
 
-#: mod/admin.php:1187
+#: mod/admin.php:1196
 msgid "Don't embed private images in posts"
 msgstr "Private Bilder nicht in Beiträgen einbetten."
 
-#: mod/admin.php:1187
+#: mod/admin.php:1196
 msgid ""
 "Don't replace locally-hosted private photos in posts with an embedded copy "
 "of the image. This means that contacts who receive posts containing private "
@@ -7962,220 +7764,210 @@ msgid ""
 "while."
 msgstr "Ersetze lokal gehostete private Fotos in Beiträgen nicht mit einer eingebetteten Kopie des Bildes. Dies bedeutet, dass Kontakte, die Beiträge mit privaten Fotos erhalten sich zunächst auf den jeweiligen Servern authentifizieren müssen bevor die Bilder geladen und angezeigt werden, was eine gewisse Zeit dauert."
 
-#: mod/admin.php:1188
+#: mod/admin.php:1197
 msgid "Allow Users to set remote_self"
 msgstr "Nutzern erlauben das remote_self Flag zu setzen"
 
-#: mod/admin.php:1188
+#: mod/admin.php:1197
 msgid ""
 "With checking this, every user is allowed to mark every contact as a "
 "remote_self in the repair contact dialog. Setting this flag on a contact "
 "causes mirroring every posting of that contact in the users stream."
 msgstr "Ist dies ausgewählt kann jeder Nutzer jeden seiner Kontakte als remote_self (entferntes Konto) im Kontakt reparieren Dialog markieren. Nach dem setzten dieses Flags werden alle Top-Level Beiträge dieser Kontakte automatisch in den Stream dieses Nutzers gepostet."
 
-#: mod/admin.php:1189
+#: mod/admin.php:1198
 msgid "Block multiple registrations"
 msgstr "Unterbinde Mehrfachregistrierung"
 
-#: mod/admin.php:1189
+#: mod/admin.php:1198
 msgid "Disallow users to register additional accounts for use as pages."
 msgstr "Benutzern nicht erlauben, weitere Konten als zusätzliche Profile anzulegen."
 
-#: mod/admin.php:1190
+#: mod/admin.php:1199
 msgid "OpenID support"
 msgstr "OpenID Unterstützung"
 
-#: mod/admin.php:1190
+#: mod/admin.php:1199
 msgid "OpenID support for registration and logins."
 msgstr "OpenID-Unterstützung für Registrierung und Login."
 
-#: mod/admin.php:1191
+#: mod/admin.php:1200
 msgid "Fullname check"
 msgstr "Namen auf Vollständigkeit überprüfen"
 
-#: mod/admin.php:1191
+#: mod/admin.php:1200
 msgid ""
 "Force users to register with a space between firstname and lastname in Full "
 "name, as an antispam measure"
 msgstr "Leerzeichen zwischen Vor- und Nachname im vollständigen Namen erzwingen, um SPAM zu vermeiden."
 
-#: mod/admin.php:1192
+#: mod/admin.php:1201
 msgid "Community Page Style"
 msgstr "Art der Gemeinschaftsseite"
 
-#: mod/admin.php:1192
+#: mod/admin.php:1201
 msgid ""
 "Type of community page to show. 'Global community' shows every public "
 "posting from an open distributed network that arrived on this server."
 msgstr "Welche Art der Gemeinschaftsseite soll verwendet werden? Globale Gemeinschaftsseite zeigt alle öffentlichen Beiträge eines offenen dezentralen Netzwerks an die auf diesem Server eintreffen."
 
-#: mod/admin.php:1193
+#: mod/admin.php:1202
 msgid "Posts per user on community page"
 msgstr "Anzahl der Beiträge pro Benutzer auf der Gemeinschaftsseite"
 
-#: mod/admin.php:1193
+#: mod/admin.php:1202
 msgid ""
 "The maximum number of posts per user on the community page. (Not valid for "
 "'Global Community')"
 msgstr "Die Anzahl der Beiträge die von jedem Nutzer maximal auf der Gemeinschaftsseite angezeigt werden sollen. Dieser Parameter wird nicht für die Globale Gemeinschaftsseite genutzt."
 
-#: mod/admin.php:1194
+#: mod/admin.php:1203
 msgid "Enable OStatus support"
 msgstr "OStatus Unterstützung aktivieren"
 
-#: mod/admin.php:1194
+#: mod/admin.php:1203
 msgid ""
 "Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All "
 "communications in OStatus are public, so privacy warnings will be "
 "occasionally displayed."
 msgstr "Biete die eingebaute OStatus (iStatusNet, GNU Social, etc.) Unterstützung an. Jede Kommunikation in OStatus ist öffentlich, Privatsphäre Warnungen werden nur bei Bedarf angezeigt."
 
-#: mod/admin.php:1195
-msgid "OStatus conversation completion interval"
-msgstr "Intervall zum Vervollständigen von OStatus Unterhaltungen"
-
-#: mod/admin.php:1195
-msgid ""
-"How often shall the poller check for new entries in OStatus conversations? "
-"This can be a very ressource task."
-msgstr "Wie oft soll der Poller checken ob es neue Nachrichten in OStatus Unterhaltungen gibt die geladen werden müssen. Je nach Anzahl der OStatus Kontakte könnte dies ein sehr Ressourcen lastiger Job sein."
-
-#: mod/admin.php:1196
+#: mod/admin.php:1204
 msgid "Only import OStatus threads from our contacts"
 msgstr "Nur OStatus Konversationen unserer Kontakte importieren"
 
-#: mod/admin.php:1196
+#: mod/admin.php:1204
 msgid ""
 "Normally we import every content from our OStatus contacts. With this option"
 " we only store threads that are started by a contact that is known on our "
 "system."
 msgstr "Normalerweise werden alle Inhalte von OStatus Kontakten importiert. Mit dieser Option werden nur solche Konversationen gespeichert, die von Kontakten der Nutzer dieses Knotens gestartet wurden."
 
-#: mod/admin.php:1197
+#: mod/admin.php:1205
 msgid "OStatus support can only be enabled if threading is enabled."
 msgstr "OStatus Unterstützung kann nur aktiviert werden wenn \"Threading\" aktiviert ist. "
 
-#: mod/admin.php:1199
+#: mod/admin.php:1207
 msgid ""
 "Diaspora support can't be enabled because Friendica was installed into a sub"
 " directory."
 msgstr "Diaspora Unterstützung kann nicht aktiviert werden da Friendica in ein Unterverzeichnis installiert ist."
 
-#: mod/admin.php:1200
+#: mod/admin.php:1208
 msgid "Enable Diaspora support"
 msgstr "Diaspora Unterstützung aktivieren"
 
-#: mod/admin.php:1200
+#: mod/admin.php:1208
 msgid "Provide built-in Diaspora network compatibility."
 msgstr "Verwende die eingebaute Diaspora-Verknüpfung."
 
-#: mod/admin.php:1201
+#: mod/admin.php:1209
 msgid "Only allow Friendica contacts"
 msgstr "Nur Friendica-Kontakte erlauben"
 
-#: mod/admin.php:1201
+#: mod/admin.php:1209
 msgid ""
 "All contacts must use Friendica protocols. All other built-in communication "
 "protocols disabled."
 msgstr "Alle Kontakte müssen das Friendica Protokoll nutzen. Alle anderen Kommunikationsprotokolle werden deaktiviert."
 
-#: mod/admin.php:1202
+#: mod/admin.php:1210
 msgid "Verify SSL"
 msgstr "SSL Überprüfen"
 
-#: mod/admin.php:1202
+#: mod/admin.php:1210
 msgid ""
 "If you wish, you can turn on strict certificate checking. This will mean you"
 " cannot connect (at all) to self-signed SSL sites."
 msgstr "Wenn gewollt, kann man hier eine strenge Zertifikatkontrolle einstellen. Das bedeutet, dass man zu keinen Seiten mit selbst unterzeichnetem SSL eine Verbindung herstellen kann."
 
-#: mod/admin.php:1203
+#: mod/admin.php:1211
 msgid "Proxy user"
 msgstr "Proxy Nutzer"
 
-#: mod/admin.php:1204
+#: mod/admin.php:1212
 msgid "Proxy URL"
 msgstr "Proxy URL"
 
-#: mod/admin.php:1205
+#: mod/admin.php:1213
 msgid "Network timeout"
 msgstr "Netzwerk Wartezeit"
 
-#: mod/admin.php:1205
+#: mod/admin.php:1213
 msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
 msgstr "Der Wert ist in Sekunden. Setze 0 für unbegrenzt (nicht empfohlen)."
 
-#: mod/admin.php:1206
+#: mod/admin.php:1214
 msgid "Maximum Load Average"
 msgstr "Maximum Load Average"
 
-#: mod/admin.php:1206
+#: mod/admin.php:1214
 msgid ""
 "Maximum system load before delivery and poll processes are deferred - "
 "default 50."
 msgstr "Maximale Systemlast bevor Verteil- und Empfangsprozesse verschoben werden - Standard 50"
 
-#: mod/admin.php:1207
+#: mod/admin.php:1215
 msgid "Maximum Load Average (Frontend)"
 msgstr "Maximum Load Average (Frontend)"
 
-#: mod/admin.php:1207
+#: mod/admin.php:1215
 msgid "Maximum system load before the frontend quits service - default 50."
 msgstr "Maximale Systemlast bevor Vordergrundprozesse pausiert werden - Standard 50."
 
-#: mod/admin.php:1208
+#: mod/admin.php:1216
 msgid "Minimal Memory"
 msgstr "Minimaler Speicher"
 
-#: mod/admin.php:1208
+#: mod/admin.php:1216
 msgid ""
 "Minimal free memory in MB for the poller. Needs access to /proc/meminfo - "
 "default 0 (deactivated)."
 msgstr "Minimal freier Speicher in MB für den Poller. Benötigt Zugriff auf /proc/meminfo - Standard 0 (Deaktiviert)."
 
-#: mod/admin.php:1209
+#: mod/admin.php:1217
 msgid "Maximum table size for optimization"
 msgstr "Maximale Tabellengröße zur Optimierung"
 
-#: mod/admin.php:1209
+#: mod/admin.php:1217
 msgid ""
 "Maximum table size (in MB) for the automatic optimization - default 100 MB. "
 "Enter -1 to disable it."
 msgstr "Maximale Tabellengröße (in MB) für die automatische Optimierung - Standard 100 MB. Gib -1 für Deaktivierung ein."
 
-#: mod/admin.php:1210
+#: mod/admin.php:1218
 msgid "Minimum level of fragmentation"
 msgstr "Minimaler Fragmentationsgrad"
 
-#: mod/admin.php:1210
+#: mod/admin.php:1218
 msgid ""
 "Minimum fragmenation level to start the automatic optimization - default "
 "value is 30%."
 msgstr "Minimales Fragmentationsgrad von Datenbanktabellen um die automatische Optimierung einzuleiten - Standardwert ist 30%"
 
-#: mod/admin.php:1212
+#: mod/admin.php:1220
 msgid "Periodical check of global contacts"
 msgstr "Regelmäßig globale Kontakte überprüfen"
 
-#: mod/admin.php:1212
+#: mod/admin.php:1220
 msgid ""
 "If enabled, the global contacts are checked periodically for missing or "
 "outdated data and the vitality of the contacts and servers."
 msgstr "Wenn diese Option aktiviert ist, werden die globalen Kontakte regelmäßig auf fehlende oder veraltete Daten sowie auf Erreichbarkeit des Kontakts und des Servers überprüft."
 
-#: mod/admin.php:1213
+#: mod/admin.php:1221
 msgid "Days between requery"
 msgstr "Tage zwischen erneuten Abfragen"
 
-#: mod/admin.php:1213
+#: mod/admin.php:1221
 msgid "Number of days after which a server is requeried for his contacts."
 msgstr "Legt das Abfrageintervall fest, nachdem ein Server erneut nach Kontakten abgefragt werden soll."
 
-#: mod/admin.php:1214
+#: mod/admin.php:1222
 msgid "Discover contacts from other servers"
 msgstr "Neue Kontakte auf anderen Servern entdecken"
 
-#: mod/admin.php:1214
+#: mod/admin.php:1222
 msgid ""
 "Periodically query other servers for contacts. You can choose between "
 "'users': the users on the remote system, 'Global Contacts': active contacts "
@@ -8185,32 +7977,32 @@ msgid ""
 "Global Contacts'."
 msgstr "Regelmäßig andere Server nach potentiellen Kontakten absuchen. Du kannst zwischen 'Nutzern', den tatsächlichen Nutzern des anderen Systems und 'globalen Kontakten', aktiven Kontakten die auf dem System bekannt sind, wählen. Der Fallback-Mechanismus ist für ältere Friendica und Redmatrix Server gedacht, bei denen globale Kontakte noch nicht verfügbar sind. Durch den Fallbackmodus entsteht auf deinem Server eine wesentlich höhere Last, empfohlen wird der Modus 'Nutzer, globale Kontakte'."
 
-#: mod/admin.php:1215
+#: mod/admin.php:1223
 msgid "Timeframe for fetching global contacts"
 msgstr "Zeitfenster für globale Kontakte"
 
-#: mod/admin.php:1215
+#: mod/admin.php:1223
 msgid ""
 "When the discovery is activated, this value defines the timeframe for the "
 "activity of the global contacts that are fetched from other servers."
 msgstr "Wenn die Entdeckung neuer Kontakte aktiv ist, definiert dieses Zeitfenster den Zeitraum in dem globale Kontakte als aktiv gelten und von anderen Servern importiert werden."
 
-#: mod/admin.php:1216
+#: mod/admin.php:1224
 msgid "Search the local directory"
 msgstr "Lokales Verzeichnis durchsuchen"
 
-#: mod/admin.php:1216
+#: mod/admin.php:1224
 msgid ""
 "Search the local directory instead of the global directory. When searching "
 "locally, every search will be executed on the global directory in the "
 "background. This improves the search results when the search is repeated."
 msgstr "Suche im lokalen Verzeichnis anstelle des globalen Verzeichnisses durchführen. Jede Suche wird im Hintergrund auch im globalen Verzeichnis durchgeführt umd die Suchresultate zu verbessern, wenn diese Suche wiederholt wird."
 
-#: mod/admin.php:1218
+#: mod/admin.php:1226
 msgid "Publish server information"
 msgstr "Server Informationen veröffentlichen"
 
-#: mod/admin.php:1218
+#: mod/admin.php:1226
 msgid ""
 "If enabled, general server and usage data will be published. The data "
 "contains the name and version of the server, number of users with public "
@@ -8218,133 +8010,133 @@ msgid ""
 " href='http://the-federation.info/'>the-federation.info</a> for details."
 msgstr "Wenn aktiviert, werden allgemeine Informationen über den Server und Nutzungsdaten veröffentlicht. Die Daten beinhalten den Namen sowie die Version des Servers, die Anzahl der Nutzer_innen mit öffentlichen Profilen, die Anzahl der Beiträge sowie aktivierte Protokolle und Connectoren. Für Details bitte <a href='http://the-federation.info/'>the-federation.info</a> aufrufen."
 
-#: mod/admin.php:1220
+#: mod/admin.php:1228
 msgid "Suppress Tags"
 msgstr "Tags Unterdrücken"
 
-#: mod/admin.php:1220
+#: mod/admin.php:1228
 msgid "Suppress showing a list of hashtags at the end of the posting."
 msgstr "Unterdrückt die Anzeige von Tags am Ende eines Beitrags."
 
-#: mod/admin.php:1221
+#: mod/admin.php:1229
 msgid "Path to item cache"
 msgstr "Pfad zum Eintrag Cache"
 
-#: mod/admin.php:1221
+#: mod/admin.php:1229
 msgid "The item caches buffers generated bbcode and external images."
 msgstr "Im Item-Cache werden externe Bilder und geparster BBCode zwischen gespeichert."
 
-#: mod/admin.php:1222
+#: mod/admin.php:1230
 msgid "Cache duration in seconds"
 msgstr "Cache-Dauer in Sekunden"
 
-#: mod/admin.php:1222
+#: mod/admin.php:1230
 msgid ""
 "How long should the cache files be hold? Default value is 86400 seconds (One"
 " day). To disable the item cache, set the value to -1."
 msgstr "Wie lange sollen die gecachedten Dateien vorgehalten werden? Grundeinstellung sind 86400 Sekunden (ein Tag). Um den Item Cache zu deaktivieren, setze diesen Wert auf -1."
 
-#: mod/admin.php:1223
+#: mod/admin.php:1231
 msgid "Maximum numbers of comments per post"
 msgstr "Maximale Anzahl von Kommentaren pro Beitrag"
 
-#: mod/admin.php:1223
+#: mod/admin.php:1231
 msgid "How much comments should be shown for each post? Default value is 100."
 msgstr "Wie viele Kommentare sollen pro Beitrag angezeigt werden? Standardwert sind 100."
 
-#: mod/admin.php:1224
+#: mod/admin.php:1232
 msgid "Temp path"
 msgstr "Temp Pfad"
 
-#: mod/admin.php:1224
+#: mod/admin.php:1232
 msgid ""
 "If you have a restricted system where the webserver can't access the system "
 "temp path, enter another path here."
 msgstr "Solltest du ein eingeschränktes System haben, auf dem der Webserver nicht auf das temp Verzeichnis des Systems zugreifen kann, setze hier einen anderen Pfad."
 
-#: mod/admin.php:1225
+#: mod/admin.php:1233
 msgid "Base path to installation"
 msgstr "Basis-Pfad zur Installation"
 
-#: mod/admin.php:1225
+#: mod/admin.php:1233
 msgid ""
 "If the system cannot detect the correct path to your installation, enter the"
 " correct path here. This setting should only be set if you are using a "
 "restricted system and symbolic links to your webroot."
 msgstr "Falls das System nicht den korrekten Pfad zu deiner Installation gefunden hat, gib den richtigen Pfad bitte hier ein. Du solltest hier den Pfad nur auf einem eingeschränkten System angeben müssen, bei dem du mit symbolischen Links auf dein Webverzeichnis verweist."
 
-#: mod/admin.php:1226
+#: mod/admin.php:1234
 msgid "Disable picture proxy"
 msgstr "Bilder Proxy deaktivieren"
 
-#: mod/admin.php:1226
+#: mod/admin.php:1234
 msgid ""
 "The picture proxy increases performance and privacy. It shouldn't be used on"
 " systems with very low bandwith."
 msgstr "Der Proxy für Bilder verbessert die Leistung und Privatsphäre der Nutzer. Er sollte nicht auf Systemen verwendet werden, die nur über begrenzte Bandbreite verfügen."
 
-#: mod/admin.php:1227
+#: mod/admin.php:1235
 msgid "Only search in tags"
 msgstr "Nur in Tags suchen"
 
-#: mod/admin.php:1227
+#: mod/admin.php:1235
 msgid "On large systems the text search can slow down the system extremely."
 msgstr "Auf großen Knoten kann die Volltext-Suche das System ausbremsen."
 
-#: mod/admin.php:1229
+#: mod/admin.php:1237
 msgid "New base url"
 msgstr "Neue Basis-URL"
 
-#: mod/admin.php:1229
+#: mod/admin.php:1237
 msgid ""
 "Change base url for this server. Sends relocate message to all DFRN contacts"
 " of all users."
 msgstr "Ändert die Basis-URL dieses Servers und sendet eine Umzugsmitteilung an alle DFRN Kontakte deiner Nutzer_innen."
 
-#: mod/admin.php:1231
+#: mod/admin.php:1239
 msgid "RINO Encryption"
 msgstr "RINO Verschlüsselung"
 
-#: mod/admin.php:1231
+#: mod/admin.php:1239
 msgid "Encryption layer between nodes."
 msgstr "Verschlüsselung zwischen Friendica Instanzen"
 
-#: mod/admin.php:1233
+#: mod/admin.php:1241
 msgid "Maximum number of parallel workers"
 msgstr "Maximale Anzahl parallel laufender Worker"
 
-#: mod/admin.php:1233
+#: mod/admin.php:1241
 msgid ""
 "On shared hosters set this to 2. On larger systems, values of 10 are great. "
 "Default value is 4."
 msgstr "Wenn dein Knoten bei einem Shared Hoster ist, setzte diesen Wert auf 2. Auf größeren Systemen funktioniert ein Wert von 10 recht gut. Standardeinstellung sind 4."
 
-#: mod/admin.php:1234
+#: mod/admin.php:1242
 msgid "Don't use 'proc_open' with the worker"
 msgstr "'proc_open' nicht mit den Workern verwenden"
 
-#: mod/admin.php:1234
+#: mod/admin.php:1242
 msgid ""
 "Enable this if your system doesn't allow the use of 'proc_open'. This can "
 "happen on shared hosters. If this is enabled you should increase the "
 "frequency of poller calls in your crontab."
 msgstr "Aktiviere diese Option, wenn dein System die Verwendung von 'proc_open' verhindert. Dies könnte auf Shared Hostern der Fall sein. Wenn du diese Option aktivierst, solltest du die Frequenz der poller Aufrufe in deiner crontab erhöhen."
 
-#: mod/admin.php:1235
+#: mod/admin.php:1243
 msgid "Enable fastlane"
 msgstr "Aktiviere Fastlane"
 
-#: mod/admin.php:1235
+#: mod/admin.php:1243
 msgid ""
 "When enabed, the fastlane mechanism starts an additional worker if processes"
 " with higher priority are blocked by processes of lower priority."
 msgstr "Wenn aktiviert, wird der Fastlane-Mechanismus einen weiteren Worker-Prozeß starten wenn Prozesse mit höherer Priorität von Prozessen mit niedrigerer Priorität blockiert werden."
 
-#: mod/admin.php:1236
+#: mod/admin.php:1244
 msgid "Enable frontend worker"
 msgstr "Aktiviere den Frontend Worker"
 
-#: mod/admin.php:1236
+#: mod/admin.php:1244
 #, php-format
 msgid ""
 "When enabled the Worker process is triggered when backend access is "
@@ -8354,66 +8146,66 @@ msgid ""
 "server."
 msgstr "Ist diese Option aktiv, wird der Worker Prozess durch Aktionen am Frontend gestartet (z.B. wenn Nachrichten zugestellt werden). Auf kleineren Seiten sollte %s/worker regelmäßig, beispielsweise durch einen externen Cron Anbieter, aufgerufen werden. Du solltest dies Option nur dann aktivieren, wenn du keinen Cron Job auf deinem eigenen Server starten kannst."
 
-#: mod/admin.php:1266
+#: mod/admin.php:1274
 msgid "Update has been marked successful"
 msgstr "Update wurde als erfolgreich markiert"
 
-#: mod/admin.php:1274
+#: mod/admin.php:1282
 #, php-format
 msgid "Database structure update %s was successfully applied."
 msgstr "Das Update %s der Struktur der Datenbank wurde erfolgreich angewandt."
 
-#: mod/admin.php:1277
+#: mod/admin.php:1285
 #, php-format
 msgid "Executing of database structure update %s failed with error: %s"
 msgstr "Das Update %s der Struktur der Datenbank schlug mit folgender Fehlermeldung fehl: %s"
 
-#: mod/admin.php:1291
+#: mod/admin.php:1299
 #, php-format
 msgid "Executing %s failed with error: %s"
 msgstr "Die Ausführung von %s schlug fehl. Fehlermeldung: %s"
 
-#: mod/admin.php:1294
+#: mod/admin.php:1302
 #, php-format
 msgid "Update %s was successfully applied."
 msgstr "Update %s war erfolgreich."
 
-#: mod/admin.php:1297
+#: mod/admin.php:1305
 #, php-format
 msgid "Update %s did not return a status. Unknown if it succeeded."
 msgstr "Update %s hat keinen Status zurückgegeben. Unbekannter Status."
 
-#: mod/admin.php:1300
+#: mod/admin.php:1308
 #, php-format
 msgid "There was no additional update function %s that needed to be called."
 msgstr "Es gab keine weitere Update-Funktion, die von %s ausgeführt werden musste."
 
-#: mod/admin.php:1320
+#: mod/admin.php:1328
 msgid "No failed updates."
 msgstr "Keine fehlgeschlagenen Updates."
 
-#: mod/admin.php:1321
+#: mod/admin.php:1329
 msgid "Check database structure"
 msgstr "Datenbank Struktur überprüfen"
 
-#: mod/admin.php:1326
+#: mod/admin.php:1334
 msgid "Failed Updates"
 msgstr "Fehlgeschlagene Updates"
 
-#: mod/admin.php:1327
+#: mod/admin.php:1335
 msgid ""
 "This does not include updates prior to 1139, which did not return a status."
 msgstr "Ohne Updates vor 1139, da diese keinen Status zurückgegeben haben."
 
-#: mod/admin.php:1328
+#: mod/admin.php:1336
 msgid "Mark success (if update was manually applied)"
 msgstr "Als erfolgreich markieren (falls das Update manuell installiert wurde)"
 
-#: mod/admin.php:1329
+#: mod/admin.php:1337
 msgid "Attempt to execute this update step automatically"
 msgstr "Versuchen, diesen Schritt automatisch auszuführen"
 
-#: mod/admin.php:1363
+#: mod/admin.php:1371
 #, php-format
 msgid ""
 "\n"
@@ -8421,7 +8213,7 @@ msgid ""
 "\t\t\t\tthe administrator of %2$s has set up an account for you."
 msgstr "\nHallo %1$s,\n\nauf %2$s wurde ein Account für Dich angelegt."
 
-#: mod/admin.php:1366
+#: mod/admin.php:1374
 #, php-format
 msgid ""
 "\n"
@@ -8451,394 +8243,626 @@ msgid ""
 "\t\t\tThank you and welcome to %4$s."
 msgstr "\nNachfolgend die Anmelde-Details:\n\tAdresse der Seite:\t%1$s\n\tBenutzername:\t%2$s\n\tPasswort:\t%3$s\n\nDu kannst Dein Passwort unter \"Einstellungen\" ändern, sobald Du Dich\nangemeldet hast.\n\nBitte nimm Dir ein paar Minuten um die anderen Einstellungen auf dieser\nSeite zu kontrollieren.\n\nEventuell magst Du ja auch einige Informationen über Dich in Deinem\nProfil veröffentlichen, damit andere Leute Dich einfacher finden können.\nBearbeite hierfür einfach Dein Standard-Profil (über die Profil-Seite).\n\nWir empfehlen Dir, Deinen kompletten Namen anzugeben und ein zu Dir\npassendes Profilbild zu wählen, damit Dich alte Bekannte wieder finden.\nAußerdem ist es nützlich, wenn Du auf Deinem Profil Schlüsselwörter\nangibst. Das erleichtert es, Leute zu finden, die Deine Interessen teilen.\n\nWir respektieren Deine Privatsphäre - keine dieser Angaben ist nötig.\nWenn Du neu im Netzwerk bist und noch niemanden kennst, dann können sie\nallerdings dabei helfen, neue und interessante Kontakte zu knüpfen.\n\nNun viel Spaß, gute Begegnungen und willkommen auf %4$s."
 
-#: mod/admin.php:1410
+#: mod/admin.php:1418
 #, php-format
 msgid "%s user blocked/unblocked"
 msgid_plural "%s users blocked/unblocked"
 msgstr[0] "%s Benutzer geblockt/freigegeben"
 msgstr[1] "%s Benutzer geblockt/freigegeben"
 
-#: mod/admin.php:1417
+#: mod/admin.php:1425
 #, php-format
 msgid "%s user deleted"
 msgid_plural "%s users deleted"
 msgstr[0] "%s Nutzer gelöscht"
 msgstr[1] "%s Nutzer gelöscht"
 
-#: mod/admin.php:1464
+#: mod/admin.php:1472
 #, php-format
 msgid "User '%s' deleted"
 msgstr "Nutzer '%s' gelöscht"
 
-#: mod/admin.php:1472
+#: mod/admin.php:1480
 #, php-format
 msgid "User '%s' unblocked"
 msgstr "Nutzer '%s' entsperrt"
 
-#: mod/admin.php:1472
+#: mod/admin.php:1480
 #, php-format
 msgid "User '%s' blocked"
 msgstr "Nutzer '%s' gesperrt"
 
-#: mod/admin.php:1580 mod/admin.php:1606
+#: mod/admin.php:1588 mod/admin.php:1614
 msgid "Register date"
 msgstr "Anmeldedatum"
 
-#: mod/admin.php:1580 mod/admin.php:1606
+#: mod/admin.php:1588 mod/admin.php:1614
 msgid "Last login"
 msgstr "Letzte Anmeldung"
 
-#: mod/admin.php:1580 mod/admin.php:1606
+#: mod/admin.php:1588 mod/admin.php:1614
 msgid "Last item"
 msgstr "Letzter Beitrag"
 
-#: mod/admin.php:1589
+#: mod/admin.php:1597
 msgid "Add User"
 msgstr "Nutzer hinzufügen"
 
-#: mod/admin.php:1590
+#: mod/admin.php:1598
 msgid "select all"
 msgstr "Alle auswählen"
 
-#: mod/admin.php:1591
+#: mod/admin.php:1599
 msgid "User registrations waiting for confirm"
 msgstr "Neuanmeldungen, die auf Deine Bestätigung warten"
 
-#: mod/admin.php:1592
+#: mod/admin.php:1600
 msgid "User waiting for permanent deletion"
 msgstr "Nutzer wartet auf permanente Löschung"
 
-#: mod/admin.php:1593
+#: mod/admin.php:1601
 msgid "Request date"
 msgstr "Anfragedatum"
 
-#: mod/admin.php:1594
+#: mod/admin.php:1602
 msgid "No registrations."
 msgstr "Keine Neuanmeldungen."
 
-#: mod/admin.php:1595
+#: mod/admin.php:1603
 msgid "Note from the user"
 msgstr "Hinweis vom Nutzer"
 
-#: mod/admin.php:1597
+#: mod/admin.php:1605
 msgid "Deny"
 msgstr "Verwehren"
 
-#: mod/admin.php:1601
+#: mod/admin.php:1607 mod/contacts.php:634 mod/contacts.php:834
+#: mod/contacts.php:1012
+msgid "Block"
+msgstr "Sperren"
+
+#: mod/admin.php:1608 mod/contacts.php:634 mod/contacts.php:834
+#: mod/contacts.php:1012
+msgid "Unblock"
+msgstr "Entsperren"
+
+#: mod/admin.php:1609
 msgid "Site admin"
 msgstr "Seitenadministrator"
 
-#: mod/admin.php:1602
+#: mod/admin.php:1610
 msgid "Account expired"
 msgstr "Account ist abgelaufen"
 
-#: mod/admin.php:1605
+#: mod/admin.php:1613
 msgid "New User"
 msgstr "Neuer Nutzer"
 
-#: mod/admin.php:1606
+#: mod/admin.php:1614
 msgid "Deleted since"
 msgstr "Gelöscht seit"
 
-#: mod/admin.php:1611
+#: mod/admin.php:1619
 msgid ""
 "Selected users will be deleted!\\n\\nEverything these users had posted on "
 "this site will be permanently deleted!\\n\\nAre you sure?"
 msgstr "Die markierten Nutzer werden gelöscht!\\n\\nAlle Beiträge, die diese Nutzer auf dieser Seite veröffentlicht haben, werden permanent gelöscht!\\n\\nBist Du sicher?"
 
-#: mod/admin.php:1612
+#: mod/admin.php:1620
 msgid ""
 "The user {0} will be deleted!\\n\\nEverything this user has posted on this "
 "site will be permanently deleted!\\n\\nAre you sure?"
 msgstr "Der Nutzer {0} wird gelöscht!\\n\\nAlles was dieser Nutzer auf dieser Seite veröffentlicht hat, wird permanent gelöscht!\\n\\nBist Du sicher?"
 
-#: mod/admin.php:1622
+#: mod/admin.php:1630
 msgid "Name of the new user."
 msgstr "Name des neuen Nutzers"
 
-#: mod/admin.php:1623
+#: mod/admin.php:1631
 msgid "Nickname"
 msgstr "Spitzname"
 
-#: mod/admin.php:1623
+#: mod/admin.php:1631
 msgid "Nickname of the new user."
 msgstr "Spitznamen für den neuen Nutzer"
 
-#: mod/admin.php:1624
+#: mod/admin.php:1632
 msgid "Email address of the new user."
 msgstr "Email Adresse des neuen Nutzers"
 
-#: mod/admin.php:1667
+#: mod/admin.php:1675
 #, php-format
 msgid "Plugin %s disabled."
 msgstr "Plugin %s deaktiviert."
 
-#: mod/admin.php:1671
+#: mod/admin.php:1679
 #, php-format
 msgid "Plugin %s enabled."
 msgstr "Plugin %s aktiviert."
 
-#: mod/admin.php:1682 mod/admin.php:1934
+#: mod/admin.php:1690 mod/admin.php:1942
 msgid "Disable"
 msgstr "Ausschalten"
 
-#: mod/admin.php:1684 mod/admin.php:1936
+#: mod/admin.php:1692 mod/admin.php:1944
 msgid "Enable"
 msgstr "Einschalten"
 
-#: mod/admin.php:1707 mod/admin.php:1983
+#: mod/admin.php:1715 mod/admin.php:1991
 msgid "Toggle"
 msgstr "Umschalten"
 
-#: mod/admin.php:1715 mod/admin.php:1992
+#: mod/admin.php:1723 mod/admin.php:2000
 msgid "Author: "
 msgstr "Autor:"
 
-#: mod/admin.php:1716 mod/admin.php:1993
+#: mod/admin.php:1724 mod/admin.php:2001
 msgid "Maintainer: "
 msgstr "Betreuer:"
 
-#: mod/admin.php:1771
-msgid "Reload active plugins"
-msgstr "Aktive Plugins neu laden"
+#: mod/admin.php:1779
+msgid "Reload active plugins"
+msgstr "Aktive Plugins neu laden"
+
+#: mod/admin.php:1784
+#, php-format
+msgid ""
+"There are currently no plugins available on your node. You can find the "
+"official plugin repository at %1$s and might find other interesting plugins "
+"in the open plugin registry at %2$s"
+msgstr "Es sind derzeit keine Plugins auf diesem Knoten verfügbar. Du findest das offizielle Plugin-Repository unter %1$s und weitere eventuell interessante Plugins im offenen Plugins-Verzeichnis auf %2$s."
+
+#: mod/admin.php:1903
+msgid "No themes found."
+msgstr "Keine Themen gefunden."
+
+#: mod/admin.php:1982
+msgid "Screenshot"
+msgstr "Bildschirmfoto"
+
+#: mod/admin.php:2042
+msgid "Reload active themes"
+msgstr "Aktives Theme neu laden"
+
+#: mod/admin.php:2047
+#, php-format
+msgid "No themes found on the system. They should be paced in %1$s"
+msgstr "Es wurden keine Themes auf dem System gefunden. Diese sollten in %1$s patziert werden."
+
+#: mod/admin.php:2048
+msgid "[Experimental]"
+msgstr "[Experimentell]"
+
+#: mod/admin.php:2049
+msgid "[Unsupported]"
+msgstr "[Nicht unterstützt]"
+
+#: mod/admin.php:2073
+msgid "Log settings updated."
+msgstr "Protokolleinstellungen aktualisiert."
+
+#: mod/admin.php:2105
+msgid "PHP log currently enabled."
+msgstr "PHP Protokollierung ist derzeit aktiviert."
+
+#: mod/admin.php:2107
+msgid "PHP log currently disabled."
+msgstr "PHP Protokollierung ist derzeit nicht aktiviert."
+
+#: mod/admin.php:2116
+msgid "Clear"
+msgstr "löschen"
+
+#: mod/admin.php:2121
+msgid "Enable Debugging"
+msgstr "Protokoll führen"
+
+#: mod/admin.php:2122
+msgid "Log file"
+msgstr "Protokolldatei"
+
+#: mod/admin.php:2122
+msgid ""
+"Must be writable by web server. Relative to your Friendica top-level "
+"directory."
+msgstr "Webserver muss Schreibrechte besitzen. Abhängig vom Friendica-Installationsverzeichnis."
+
+#: mod/admin.php:2123
+msgid "Log level"
+msgstr "Protokoll-Level"
+
+#: mod/admin.php:2126
+msgid "PHP logging"
+msgstr "PHP Protokollieren"
+
+#: mod/admin.php:2127
+msgid ""
+"To enable logging of PHP errors and warnings you can add the following to "
+"the .htconfig.php file of your installation. The filename set in the "
+"'error_log' line is relative to the friendica top-level directory and must "
+"be writeable by the web server. The option '1' for 'log_errors' and "
+"'display_errors' is to enable these options, set to '0' to disable them."
+msgstr "Um PHP Warnungen und Fehler zu protokollieren, kannst du die folgenden Zeilen zur .htconfig.php Datei deiner Installation hinzufügen. Den Dateinamen der Log-Datei legst du in der Zeile mit dem 'error_log' fest,  Er ist relativ zum Friendica-Stammverzeichnis und muss schreibbar durch den Webserver sein. Eine \"1\" als Option für die Punkte 'log_errors' und 'display_errors' aktiviert die Funktionen zum Protokollieren bzw. Anzeigen der Fehler, eine \"0\" deaktiviert sie."
+
+#: mod/admin.php:2258
+#, php-format
+msgid "Lock feature %s"
+msgstr "Feature festlegen: %s"
+
+#: mod/admin.php:2266
+msgid "Manage Additional Features"
+msgstr "Zusätzliche Features Verwalten"
+
+#: mod/contacts.php:138
+#, php-format
+msgid "%d contact edited."
+msgid_plural "%d contacts edited."
+msgstr[0] "%d Kontakt bearbeitet."
+msgstr[1] "%d Kontakte bearbeitet."
+
+#: mod/contacts.php:173 mod/contacts.php:391
+msgid "Could not access contact record."
+msgstr "Konnte nicht auf die Kontaktdaten zugreifen."
+
+#: mod/contacts.php:187
+msgid "Could not locate selected profile."
+msgstr "Konnte das ausgewählte Profil nicht finden."
+
+#: mod/contacts.php:220
+msgid "Contact updated."
+msgstr "Kontakt aktualisiert."
+
+#: mod/contacts.php:412
+msgid "Contact has been blocked"
+msgstr "Kontakt wurde blockiert"
+
+#: mod/contacts.php:412
+msgid "Contact has been unblocked"
+msgstr "Kontakt wurde wieder freigegeben"
+
+#: mod/contacts.php:423
+msgid "Contact has been ignored"
+msgstr "Kontakt wurde ignoriert"
+
+#: mod/contacts.php:423
+msgid "Contact has been unignored"
+msgstr "Kontakt wird nicht mehr ignoriert"
+
+#: mod/contacts.php:435
+msgid "Contact has been archived"
+msgstr "Kontakt wurde archiviert"
+
+#: mod/contacts.php:435
+msgid "Contact has been unarchived"
+msgstr "Kontakt wurde aus dem Archiv geholt"
+
+#: mod/contacts.php:460
+msgid "Drop contact"
+msgstr "Kontakt löschen"
+
+#: mod/contacts.php:463 mod/contacts.php:830
+msgid "Do you really want to delete this contact?"
+msgstr "Möchtest Du wirklich diesen Kontakt löschen?"
+
+#: mod/contacts.php:482
+msgid "Contact has been removed."
+msgstr "Kontakt wurde entfernt."
+
+#: mod/contacts.php:519
+#, php-format
+msgid "You are mutual friends with %s"
+msgstr "Du hast mit %s eine beidseitige Freundschaft"
+
+#: mod/contacts.php:523
+#, php-format
+msgid "You are sharing with %s"
+msgstr "Du teilst mit %s"
+
+#: mod/contacts.php:528
+#, php-format
+msgid "%s is sharing with you"
+msgstr "%s teilt mit Dir"
+
+#: mod/contacts.php:548
+msgid "Private communications are not available for this contact."
+msgstr "Private Kommunikation ist für diesen Kontakt nicht verfügbar."
+
+#: mod/contacts.php:555
+msgid "(Update was successful)"
+msgstr "(Aktualisierung war erfolgreich)"
+
+#: mod/contacts.php:555
+msgid "(Update was not successful)"
+msgstr "(Aktualisierung war nicht erfolgreich)"
+
+#: mod/contacts.php:557 mod/contacts.php:993
+msgid "Suggest friends"
+msgstr "Kontakte vorschlagen"
+
+#: mod/contacts.php:561
+#, php-format
+msgid "Network type: %s"
+msgstr "Netzwerktyp: %s"
+
+#: mod/contacts.php:574
+msgid "Communications lost with this contact!"
+msgstr "Verbindungen mit diesem Kontakt verloren!"
+
+#: mod/contacts.php:577
+msgid "Fetch further information for feeds"
+msgstr "Weitere Informationen zu Feeds holen"
+
+#: mod/contacts.php:578
+msgid "Fetch information"
+msgstr "Beziehe Information"
+
+#: mod/contacts.php:578
+msgid "Fetch information and keywords"
+msgstr "Beziehe Information und Schlüsselworte"
+
+#: mod/contacts.php:592 mod/unfollow.php:100
+msgid "Disconnect/Unfollow"
+msgstr "Verbindung lösen/Nicht mehr folgen"
+
+#: mod/contacts.php:602
+msgid "Contact"
+msgstr "Kontakt"
+
+#: mod/contacts.php:605
+msgid "Profile Visibility"
+msgstr "Profil-Sichtbarkeit"
+
+#: mod/contacts.php:606
+#, php-format
+msgid ""
+"Please choose the profile you would like to display to %s when viewing your "
+"profile securely."
+msgstr "Bitte wähle eines Deiner Profile das angezeigt werden soll, wenn %s Dein Profil aufruft."
+
+#: mod/contacts.php:607
+msgid "Contact Information / Notes"
+msgstr "Kontakt Informationen / Notizen"
+
+#: mod/contacts.php:608
+msgid "Their personal note"
+msgstr "Die persönliche Mitteilung"
+
+#: mod/contacts.php:610
+msgid "Edit contact notes"
+msgstr "Notizen zum Kontakt bearbeiten"
+
+#: mod/contacts.php:616
+msgid "Block/Unblock contact"
+msgstr "Kontakt blockieren/freischalten"
+
+#: mod/contacts.php:617
+msgid "Ignore contact"
+msgstr "Ignoriere den Kontakt"
+
+#: mod/contacts.php:618
+msgid "Repair URL settings"
+msgstr "URL Einstellungen reparieren"
+
+#: mod/contacts.php:619
+msgid "View conversations"
+msgstr "Unterhaltungen anzeigen"
+
+#: mod/contacts.php:625
+msgid "Last update:"
+msgstr "Letzte Aktualisierung: "
 
-#: mod/admin.php:1776
-#, php-format
-msgid ""
-"There are currently no plugins available on your node. You can find the "
-"official plugin repository at %1$s and might find other interesting plugins "
-"in the open plugin registry at %2$s"
-msgstr "Es sind derzeit keine Plugins auf diesem Knoten verfügbar. Du findest das offizielle Plugin-Repository unter %1$s und weitere eventuell interessante Plugins im offenen Plugins-Verzeichnis auf %2$s."
+#: mod/contacts.php:627
+msgid "Update public posts"
+msgstr "Öffentliche Beiträge aktualisieren"
 
-#: mod/admin.php:1895
-msgid "No themes found."
-msgstr "Keine Themen gefunden."
+#: mod/contacts.php:629 mod/contacts.php:1003
+msgid "Update now"
+msgstr "Jetzt aktualisieren"
 
-#: mod/admin.php:1974
-msgid "Screenshot"
-msgstr "Bildschirmfoto"
+#: mod/contacts.php:635 mod/contacts.php:835 mod/contacts.php:1020
+msgid "Unignore"
+msgstr "Ignorieren aufheben"
 
-#: mod/admin.php:2034
-msgid "Reload active themes"
-msgstr "Aktives Theme neu laden"
+#: mod/contacts.php:639
+msgid "Currently blocked"
+msgstr "Derzeit geblockt"
 
-#: mod/admin.php:2039
-#, php-format
-msgid "No themes found on the system. They should be paced in %1$s"
-msgstr "Es wurden keine Themes auf dem System gefunden. Diese sollten in %1$s patziert werden."
+#: mod/contacts.php:640
+msgid "Currently ignored"
+msgstr "Derzeit ignoriert"
 
-#: mod/admin.php:2040
-msgid "[Experimental]"
-msgstr "[Experimentell]"
+#: mod/contacts.php:641
+msgid "Currently archived"
+msgstr "Momentan archiviert"
 
-#: mod/admin.php:2041
-msgid "[Unsupported]"
-msgstr "[Nicht unterstützt]"
+#: mod/contacts.php:642
+msgid ""
+"Replies/likes to your public posts <strong>may</strong> still be visible"
+msgstr "Antworten/Likes auf deine öffentlichen Beiträge <strong>könnten</strong> weiterhin sichtbar sein"
 
-#: mod/admin.php:2065
-msgid "Log settings updated."
-msgstr "Protokolleinstellungen aktualisiert."
+#: mod/contacts.php:643
+msgid "Notification for new posts"
+msgstr "Benachrichtigung bei neuen Beiträgen"
 
-#: mod/admin.php:2097
-msgid "PHP log currently enabled."
-msgstr "PHP Protokollierung ist derzeit aktiviert."
+#: mod/contacts.php:643
+msgid "Send a notification of every new post of this contact"
+msgstr "Sende eine Benachrichtigung, wann immer dieser Kontakt einen neuen Beitrag schreibt."
 
-#: mod/admin.php:2099
-msgid "PHP log currently disabled."
-msgstr "PHP Protokollierung ist derzeit nicht aktiviert."
+#: mod/contacts.php:646
+msgid "Blacklisted keywords"
+msgstr "Blacklistete Schlüsselworte "
 
-#: mod/admin.php:2108
-msgid "Clear"
-msgstr "löschen"
+#: mod/contacts.php:646
+msgid ""
+"Comma separated list of keywords that should not be converted to hashtags, "
+"when \"Fetch information and keywords\" is selected"
+msgstr "Komma-Separierte Liste mit Schlüsselworten, die nicht in Hashtags konvertiert werden, wenn \"Beziehe Information und Schlüsselworte\" aktiviert wurde"
 
-#: mod/admin.php:2113
-msgid "Enable Debugging"
-msgstr "Protokoll führen"
+#: mod/contacts.php:664
+msgid "Actions"
+msgstr "Aktionen"
 
-#: mod/admin.php:2114
-msgid "Log file"
-msgstr "Protokolldatei"
+#: mod/contacts.php:667
+msgid "Contact Settings"
+msgstr "Kontakteinstellungen"
 
-#: mod/admin.php:2114
-msgid ""
-"Must be writable by web server. Relative to your Friendica top-level "
-"directory."
-msgstr "Webserver muss Schreibrechte besitzen. Abhängig vom Friendica-Installationsverzeichnis."
+#: mod/contacts.php:713
+msgid "Suggestions"
+msgstr "Kontaktvorschläge"
 
-#: mod/admin.php:2115
-msgid "Log level"
-msgstr "Protokoll-Level"
+#: mod/contacts.php:716
+msgid "Suggest potential friends"
+msgstr "Kontakte vorschlagen"
 
-#: mod/admin.php:2118
-msgid "PHP logging"
-msgstr "PHP Protokollieren"
+#: mod/contacts.php:724
+msgid "Show all contacts"
+msgstr "Alle Kontakte anzeigen"
 
-#: mod/admin.php:2119
-msgid ""
-"To enable logging of PHP errors and warnings you can add the following to "
-"the .htconfig.php file of your installation. The filename set in the "
-"'error_log' line is relative to the friendica top-level directory and must "
-"be writeable by the web server. The option '1' for 'log_errors' and "
-"'display_errors' is to enable these options, set to '0' to disable them."
-msgstr "Um PHP Warnungen und Fehler zu protokollieren, kannst du die folgenden Zeilen zur .htconfig.php Datei deiner Installation hinzufügen. Den Dateinamen der Log-Datei legst du in der Zeile mit dem 'error_log' fest,  Er ist relativ zum Friendica-Stammverzeichnis und muss schreibbar durch den Webserver sein. Eine \"1\" als Option für die Punkte 'log_errors' und 'display_errors' aktiviert die Funktionen zum Protokollieren bzw. Anzeigen der Fehler, eine \"0\" deaktiviert sie."
+#: mod/contacts.php:729
+msgid "Unblocked"
+msgstr "Ungeblockt"
 
-#: mod/admin.php:2250
-#, php-format
-msgid "Lock feature %s"
-msgstr "Feature festlegen: %s"
+#: mod/contacts.php:732
+msgid "Only show unblocked contacts"
+msgstr "Nur nicht-blockierte Kontakte anzeigen"
 
-#: mod/admin.php:2258
-msgid "Manage Additional Features"
-msgstr "Zusätzliche Features Verwalten"
+#: mod/contacts.php:738
+msgid "Blocked"
+msgstr "Geblockt"
 
-#: mod/community.php:22
-msgid "Not available."
-msgstr "Nicht verfügbar."
+#: mod/contacts.php:741
+msgid "Only show blocked contacts"
+msgstr "Nur blockierte Kontakte anzeigen"
 
-#: mod/dfrn_poll.php:113 mod/dfrn_poll.php:549
-#, php-format
-msgid "%1$s welcomes %2$s"
-msgstr "%1$s heißt %2$s herzlich willkommen"
+#: mod/contacts.php:747
+msgid "Ignored"
+msgstr "Ignoriert"
 
-#: mod/display.php:493
-msgid "Item has been removed."
-msgstr "Eintrag wurde entfernt."
+#: mod/contacts.php:750
+msgid "Only show ignored contacts"
+msgstr "Nur ignorierte Kontakte anzeigen"
 
-#: mod/item.php:118
-msgid "Unable to locate original post."
-msgstr "Konnte den Originalbeitrag nicht finden."
+#: mod/contacts.php:756
+msgid "Archived"
+msgstr "Archiviert"
 
-#: mod/item.php:345
-msgid "Empty post discarded."
-msgstr "Leerer Beitrag wurde verworfen."
+#: mod/contacts.php:759
+msgid "Only show archived contacts"
+msgstr "Nur archivierte Kontakte anzeigen"
 
-#: mod/item.php:899
-msgid "System error. Post not saved."
-msgstr "Systemfehler. Beitrag konnte nicht gespeichert werden."
+#: mod/contacts.php:765
+msgid "Hidden"
+msgstr "Verborgen"
 
-#: mod/item.php:990
-#, php-format
-msgid ""
-"This message was sent to you by %s, a member of the Friendica social "
-"network."
-msgstr "Diese Nachricht wurde dir von %s geschickt, einem Mitglied des Sozialen Netzwerks Friendica."
+#: mod/contacts.php:768
+msgid "Only show hidden contacts"
+msgstr "Nur verborgene Kontakte anzeigen"
 
-#: mod/item.php:992
-#, php-format
-msgid "You may visit them online at %s"
-msgstr "Du kannst sie online unter %s besuchen"
+#: mod/contacts.php:825
+msgid "Search your contacts"
+msgstr "Suche in deinen Kontakten"
 
-#: mod/item.php:993
-msgid ""
-"Please contact the sender by replying to this post if you do not wish to "
-"receive these messages."
-msgstr "Falls Du diese Beiträge nicht erhalten möchtest, kontaktiere bitte den Autor, indem Du auf diese Nachricht antwortest."
+#: mod/contacts.php:836 mod/contacts.php:1028
+msgid "Archive"
+msgstr "Archivieren"
 
-#: mod/item.php:997
-#, php-format
-msgid "%s posted an update."
-msgstr "%s hat ein Update veröffentlicht."
+#: mod/contacts.php:836 mod/contacts.php:1028
+msgid "Unarchive"
+msgstr "Aus Archiv zurückholen"
 
-#: mod/network.php:419
-#, php-format
-msgid ""
-"Warning: This group contains %s member from a network that doesn't allow non"
-" public messages."
-msgid_plural ""
-"Warning: This group contains %s members from a network that doesn't allow "
-"non public messages."
-msgstr[0] "Warnung: Diese Gruppe beinhaltet %s Person aus einem Netzwerk das keine nicht öffentlichen Beiträge empfangen kann."
-msgstr[1] "Warnung: Diese Gruppe beinhaltet %s Personen aus Netzwerken die keine nicht-öffentlichen Beiträge empfangen können."
+#: mod/contacts.php:839
+msgid "Batch Actions"
+msgstr "Stapelverarbeitung"
 
-#: mod/network.php:422
-msgid "Messages in this group won't be send to these receivers."
-msgstr "Beiträge in dieser Gruppe werden deshalb nicht an diese Personen zugestellt werden."
+#: mod/contacts.php:885
+msgid "View all contacts"
+msgstr "Alle Kontakte anzeigen"
 
-#: mod/network.php:550
-msgid "Private messages to this person are at risk of public disclosure."
-msgstr "Private Nachrichten an diese Person könnten an die Öffentlichkeit gelangen."
+#: mod/contacts.php:895
+msgid "View all common friends"
+msgstr "Alle Kontakte anzeigen"
 
-#: mod/network.php:555
-msgid "Invalid contact."
-msgstr "Ungültiger Kontakt."
+#: mod/contacts.php:902
+msgid "Advanced Contact Settings"
+msgstr "Fortgeschrittene Kontakteinstellungen"
 
-#: mod/network.php:848
-msgid "Commented Order"
-msgstr "Neueste Kommentare"
+#: mod/contacts.php:936
+msgid "Mutual Friendship"
+msgstr "Beidseitige Freundschaft"
 
-#: mod/network.php:851
-msgid "Sort by Comment Date"
-msgstr "Nach Kommentardatum sortieren"
+#: mod/contacts.php:940
+msgid "is a fan of yours"
+msgstr "ist ein Fan von dir"
 
-#: mod/network.php:856
-msgid "Posted Order"
-msgstr "Neueste Beiträge"
+#: mod/contacts.php:944
+msgid "you are a fan of"
+msgstr "Du bist Fan von"
 
-#: mod/network.php:859
-msgid "Sort by Post Date"
-msgstr "Nach Beitragsdatum sortieren"
+#: mod/contacts.php:1014
+msgid "Toggle Blocked status"
+msgstr "Geblockt-Status ein-/ausschalten"
 
-#: mod/network.php:870
-msgid "Posts that mention or involve you"
-msgstr "Beiträge, in denen es um Dich geht"
+#: mod/contacts.php:1022
+msgid "Toggle Ignored status"
+msgstr "Ignoriert-Status ein-/ausschalten"
 
-#: mod/network.php:878
-msgid "New"
-msgstr "Neue"
+#: mod/contacts.php:1030
+msgid "Toggle Archive status"
+msgstr "Archiviert-Status ein-/ausschalten"
 
-#: mod/network.php:881
-msgid "Activity Stream - by date"
-msgstr "Aktivitäten-Stream - nach Datum"
+#: mod/contacts.php:1038
+msgid "Delete contact"
+msgstr "Lösche den Kontakt"
 
-#: mod/network.php:889
-msgid "Shared Links"
-msgstr "Geteilte Links"
+#: mod/fbrowser.php:136
+msgid "Files"
+msgstr "Dateien"
 
-#: mod/network.php:892
-msgid "Interesting Links"
-msgstr "Interessante Links"
+#: mod/unfollow.php:33
+msgid "Contact wasn't found or can't be unfollowed."
+msgstr "Der Kontakt konnte nicht gefunden oder nicht entfolgt werden."
 
-#: mod/network.php:900
-msgid "Starred"
-msgstr "Markierte"
+#: mod/unfollow.php:47
+msgid "Contact unfollowed"
+msgstr "Kontakt wird nicht mehr gefolgt"
 
-#: mod/network.php:903
-msgid "Favourite Posts"
-msgstr "Favorisierte Beiträge"
+#: mod/unfollow.php:73
+msgid "You aren't a friend of this contact."
+msgstr "Du hast keine beidseitige Freundschaft mit diesem Kontakt."
 
-#: mod/profile.php:176
-msgid "Tips for New Members"
-msgstr "Tipps für neue Nutzer"
+#: mod/unfollow.php:79
+msgid "Unfollowing is currently not supported by your network."
+msgstr "Bei diesem Netzwerk wird das Entfolgen derzeit nicht unterstützt."
 
-#: object/Item.php:355
+#: object/Item.php:353
 msgid "via"
 msgstr "via"
 
-#: view/theme/duepuntozero/config.php:47
+#: view/theme/duepuntozero/config.php:48
 msgid "greenzero"
 msgstr "greenzero"
 
-#: view/theme/duepuntozero/config.php:48
+#: view/theme/duepuntozero/config.php:49
 msgid "purplezero"
 msgstr "purplezero"
 
-#: view/theme/duepuntozero/config.php:49
+#: view/theme/duepuntozero/config.php:50
 msgid "easterbunny"
 msgstr "easterbunny"
 
-#: view/theme/duepuntozero/config.php:50
+#: view/theme/duepuntozero/config.php:51
 msgid "darkzero"
 msgstr "darkzero"
 
-#: view/theme/duepuntozero/config.php:51
+#: view/theme/duepuntozero/config.php:52
 msgid "comix"
 msgstr "comix"
 
-#: view/theme/duepuntozero/config.php:52
+#: view/theme/duepuntozero/config.php:53
 msgid "slackr"
 msgstr "slackr"
 
-#: view/theme/duepuntozero/config.php:67
+#: view/theme/duepuntozero/config.php:68
 msgid "Variations"
 msgstr "Variationen"
 
@@ -8874,167 +8898,167 @@ msgstr "Größe anpassen - Optimale Größe"
 msgid "Resize to best fit and retain aspect ratio."
 msgstr "Größe anpassen - Optimale Größe und Seitenverhältnisse beibehalten"
 
-#: view/theme/frio/config.php:50
+#: view/theme/frio/config.php:51
 msgid "Default"
 msgstr "Standard"
 
-#: view/theme/frio/config.php:62
+#: view/theme/frio/config.php:63
 msgid "Note: "
 msgstr "Hinweis:"
 
-#: view/theme/frio/config.php:62
+#: view/theme/frio/config.php:63
 msgid "Check image permissions if all users are allowed to visit the image"
 msgstr "Überprüfe, dass alle Benutzer die Berechtigung haben dieses Bild anzusehen"
 
-#: view/theme/frio/config.php:70
+#: view/theme/frio/config.php:71
 msgid "Select scheme"
 msgstr "Schema auswählen"
 
-#: view/theme/frio/config.php:71
+#: view/theme/frio/config.php:72
 msgid "Navigation bar background color"
 msgstr "Hintergrundfarbe der Navigationsleiste"
 
-#: view/theme/frio/config.php:72
+#: view/theme/frio/config.php:73
 msgid "Navigation bar icon color "
 msgstr "Icon Farbe in der Navigationsleiste"
 
-#: view/theme/frio/config.php:73
+#: view/theme/frio/config.php:74
 msgid "Link color"
 msgstr "Linkfarbe"
 
-#: view/theme/frio/config.php:74
+#: view/theme/frio/config.php:75
 msgid "Set the background color"
 msgstr "Hintergrundfarbe festlegen"
 
-#: view/theme/frio/config.php:75
+#: view/theme/frio/config.php:76
 msgid "Content background transparency"
 msgstr "Transparanz des Hintergrunds von Beiträgem"
 
-#: view/theme/frio/config.php:76
+#: view/theme/frio/config.php:77
 msgid "Set the background image"
 msgstr "Hintergrundbild festlegen"
 
-#: view/theme/frio/theme.php:230
+#: view/theme/frio/theme.php:231
 msgid "Guest"
 msgstr "Gast"
 
-#: view/theme/frio/theme.php:236
+#: view/theme/frio/theme.php:237
 msgid "Visitor"
 msgstr "Besucher"
 
-#: view/theme/quattro/config.php:73
+#: view/theme/quattro/config.php:74
 msgid "Alignment"
 msgstr "Ausrichtung"
 
-#: view/theme/quattro/config.php:73
+#: view/theme/quattro/config.php:74
 msgid "Left"
 msgstr "Links"
 
-#: view/theme/quattro/config.php:73
+#: view/theme/quattro/config.php:74
 msgid "Center"
 msgstr "Mitte"
 
-#: view/theme/quattro/config.php:74
+#: view/theme/quattro/config.php:75
 msgid "Color scheme"
 msgstr "Farbschema"
 
-#: view/theme/quattro/config.php:75
+#: view/theme/quattro/config.php:76
 msgid "Posts font size"
 msgstr "Schriftgröße in Beiträgen"
 
-#: view/theme/quattro/config.php:76
+#: view/theme/quattro/config.php:77
 msgid "Textareas font size"
 msgstr "Schriftgröße in Eingabefeldern"
 
-#: view/theme/vier/config.php:70
+#: view/theme/vier/config.php:71
 msgid "Comma separated list of helper forums"
 msgstr "Komma-Separierte Liste der Helfer-Foren"
 
-#: view/theme/vier/config.php:116
+#: view/theme/vier/config.php:117
 msgid "Set style"
 msgstr "Stil auswählen"
 
-#: view/theme/vier/config.php:117
+#: view/theme/vier/config.php:118
 msgid "Community Pages"
 msgstr "Foren"
 
-#: view/theme/vier/config.php:118 view/theme/vier/theme.php:143
+#: view/theme/vier/config.php:119 view/theme/vier/theme.php:144
 msgid "Community Profiles"
 msgstr "Community-Profile"
 
-#: view/theme/vier/config.php:119
+#: view/theme/vier/config.php:120
 msgid "Help or @NewHere ?"
 msgstr "Hilfe oder @NewHere"
 
-#: view/theme/vier/config.php:120 view/theme/vier/theme.php:384
+#: view/theme/vier/config.php:121 view/theme/vier/theme.php:385
 msgid "Connect Services"
 msgstr "Verbinde Dienste"
 
-#: view/theme/vier/config.php:121 view/theme/vier/theme.php:191
+#: view/theme/vier/config.php:122 view/theme/vier/theme.php:192
 msgid "Find Friends"
 msgstr "Kontakte finden"
 
-#: view/theme/vier/config.php:122 view/theme/vier/theme.php:173
+#: view/theme/vier/config.php:123 view/theme/vier/theme.php:174
 msgid "Last users"
 msgstr "Letzte Nutzer"
 
-#: view/theme/vier/theme.php:192
+#: view/theme/vier/theme.php:193
 msgid "Local Directory"
 msgstr "Lokales Verzeichnis"
 
-#: view/theme/vier/theme.php:284
+#: view/theme/vier/theme.php:285
 msgid "Quick Start"
 msgstr "Schnell-Start"
 
-#: src/App.php:527
+#: src/App.php:523
 msgid "Delete this item?"
 msgstr "Diesen Beitrag löschen?"
 
-#: src/App.php:529
+#: src/App.php:525
 msgid "show fewer"
 msgstr "weniger anzeigen"
 
-#: boot.php:735
+#: boot.php:733
 #, php-format
 msgid "Update %s failed. See error logs."
 msgstr "Update %s fehlgeschlagen. Bitte Fehlerprotokoll überprüfen."
 
-#: boot.php:847
+#: boot.php:845
 msgid "Create a New Account"
 msgstr "Neues Konto erstellen"
 
-#: boot.php:875
+#: boot.php:873
 msgid "Password: "
 msgstr "Passwort: "
 
-#: boot.php:876
+#: boot.php:874
 msgid "Remember me"
 msgstr "Anmeldedaten merken"
 
-#: boot.php:879
+#: boot.php:877
 msgid "Or login using OpenID: "
 msgstr "Oder melde Dich mit Deiner OpenID an: "
 
-#: boot.php:885
+#: boot.php:883
 msgid "Forgot your password?"
 msgstr "Passwort vergessen?"
 
-#: boot.php:888
+#: boot.php:886
 msgid "Website Terms of Service"
 msgstr "Website Nutzungsbedingungen"
 
-#: boot.php:889
+#: boot.php:887
 msgid "terms of service"
 msgstr "Nutzungsbedingungen"
 
-#: boot.php:891
+#: boot.php:889
 msgid "Website Privacy Policy"
 msgstr "Website Datenschutzerklärung"
 
-#: boot.php:892
+#: boot.php:890
 msgid "privacy policy"
 msgstr "Datenschutzerklärung"
 
-#: index.php:436
+#: index.php:437
 msgid "toggle mobile"
 msgstr "auf/von Mobile Ansicht wechseln"
index 68a10aee22d3a26fc31a5c3af049deed0696366f..4757a35d58dbad12c2db4d6273a564b29f3b8ff2 100644 (file)
@@ -77,41 +77,6 @@ $a->strings["seconds"] = "Sekunden";
 $a->strings["%1\$d %2\$s ago"] = "vor %1\$d %2\$s";
 $a->strings["%s's birthday"] = "%ss Geburtstag";
 $a->strings["Happy Birthday %s"] = "Herzlichen Glückwunsch %s";
-$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s mag %2\$ss %3\$s";
-$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s mag %2\$ss %3\$s nicht";
-$a->strings["%1\$s is attending %2\$s's %3\$s"] = "%1\$s nimmt an %2\$ss %3\$s teil.";
-$a->strings["%1\$s is not attending %2\$s's %3\$s"] = "%1\$s nimmt nicht an %2\$ss %3\$s teil.";
-$a->strings["%1\$s may attend %2\$s's %3\$s"] = "%1\$s nimmt eventuell an %2\$ss %3\$s teil.";
-$a->strings["photo"] = "Foto";
-$a->strings["status"] = "Status";
-$a->strings["event"] = "Event";
-$a->strings["Passwords do not match. Password unchanged."] = "Die Passwörter stimmen nicht überein. Das Passwort bleibt unverändert.";
-$a->strings["An invitation is required."] = "Du benötigst eine Einladung.";
-$a->strings["Invitation could not be verified."] = "Die Einladung konnte nicht überprüft werden.";
-$a->strings["Invalid OpenID url"] = "Ungültige OpenID URL";
-$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Beim Versuch Dich mit der von Dir angegebenen OpenID anzumelden trat ein Problem auf. Bitte überprüfe, dass Du die OpenID richtig geschrieben hast.";
-$a->strings["The error message was:"] = "Die Fehlermeldung lautete:";
-$a->strings["Please enter the required information."] = "Bitte trage die erforderlichen Informationen ein.";
-$a->strings["Please use a shorter name."] = "Bitte verwende einen kürzeren Namen.";
-$a->strings["Name too short."] = "Der Name ist zu kurz.";
-$a->strings["That doesn't appear to be your full (First Last) name."] = "Das scheint nicht Dein kompletter Name (Vor- und Nachname) zu sein.";
-$a->strings["Your email domain is not among those allowed on this site."] = "Die Domain Deiner E-Mail Adresse ist auf dieser Seite nicht erlaubt.";
-$a->strings["Not a valid email address."] = "Keine gültige E-Mail-Adresse.";
-$a->strings["Cannot use that email."] = "Konnte diese E-Mail-Adresse nicht verwenden.";
-$a->strings["Your \"nickname\" can only contain \"a-z\", \"0-9\" and \"_\"."] = "Dein Spitzname darf nur aus Buchstaben und Zahlen (\"a-z\",\"0-9\" und \"_\") bestehen.";
-$a->strings["Nickname is already registered. Please choose another."] = "Dieser Spitzname ist bereits vergeben. Bitte wähle einen anderen.";
-$a->strings["Nickname was once registered here and may not be re-used. Please choose another."] = "Dieser Spitzname ist bereits vergeben. Bitte wähle einen anderen.";
-$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "FATALER FEHLER: Sicherheitsschlüssel konnten nicht erzeugt werden.";
-$a->strings["An error occurred during registration. Please try again."] = "Während der Anmeldung ist ein Fehler aufgetreten. Bitte versuche es noch einmal.";
-$a->strings["default"] = "Standard";
-$a->strings["An error occurred creating your default profile. Please try again."] = "Bei der Erstellung des Standardprofils ist ein Fehler aufgetreten. Bitte versuche es noch einmal.";
-$a->strings["Friends"] = "Kontakte";
-$a->strings["Profile Photos"] = "Profilbilder";
-$a->strings["\n\t\tDear %1\$s,\n\t\t\tThank you for registering at %2\$s. Your account is pending for approval by the administrator.\n\t"] = "\nHallo %1\$s,\n\ndanke für Deine Registrierung auf %2\$s. Dein Account wurde muss noch vom Admin des Knotens geprüft werden.";
-$a->strings["Registration at %s"] = "Registrierung als %s";
-$a->strings["\n\t\tDear %1\$s,\n\t\t\tThank you for registering at %2\$s. Your account has been created.\n\t"] = "\nHallo %1\$s,\n\ndanke für Deine Registrierung auf %2\$s. Dein Account wurde eingerichtet.";
-$a->strings["\n\t\tThe login details are as follows:\n\t\t\tSite Location:\t%3\$s\n\t\t\tLogin Name:\t%1\$s\n\t\t\tPassword:\t%5\$s\n\n\t\tYou may change your password from your account \"Settings\" page after logging\n\t\tin.\n\n\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\tYou may also wish to add some basic information to your default profile\n\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\tWe recommend setting your full name, adding a profile photo,\n\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\tperhaps what country you live in; if you do not wish to be more specific\n\t\tthan that.\n\n\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\tIf you are new and do not know anybody here, they may help\n\t\tyou to make some new and interesting friends.\n\n\n\t\tThank you and welcome to %2\$s."] = "\nDie Anmelde-Details sind die folgenden:\n\tAdresse der Seite:\t%3\$s\n\tBenutzernamename:\t%1\$s\n\tPasswort:\t%5\$s\n\nDu kannst Dein Passwort unter \"Einstellungen\" ändern, sobald Du Dich\nangemeldet hast.\n\nBitte nimm Dir ein paar Minuten um die anderen Einstellungen auf dieser\nSeite zu kontrollieren.\n\nEventuell magst Du ja auch einige Informationen über Dich in Deinem\nProfil veröffentlichen, damit andere Leute Dich einfacher finden können.\nBearbeite hierfür einfach Dein Standard-Profil (über die Profil-Seite).\n\nWir empfehlen Dir, Deinen kompletten Namen anzugeben und ein zu Dir\npassendes Profilbild zu wählen, damit Dich alte Bekannte wieder finden.\nAußerdem ist es nützlich, wenn Du auf Deinem Profil Schlüsselwörter\nangibst. Das erleichtert es, Leute zu finden, die Deine Interessen teilen.\n\nWir respektieren Deine Privatsphäre - keine dieser Angaben ist nötig.\nWenn Du neu im Netzwerk bist und noch niemanden kennst, dann können sie\nallerdings dabei helfen, neue und interessante Kontakte zu knüpfen.\n\nDanke für Deine Aufmerksamkeit und willkommen auf %2\$s.";
-$a->strings["Registration details for %s"] = "Details der Registration von %s";
 $a->strings["Male"] = "Männlich";
 $a->strings["Female"] = "Weiblich";
 $a->strings["Currently Male"] = "Momentan männlich";
@@ -151,6 +116,7 @@ $a->strings["Infatuated"] = "verliebt";
 $a->strings["Dating"] = "Dating";
 $a->strings["Unfaithful"] = "Untreu";
 $a->strings["Sex Addict"] = "Sexbesessen";
+$a->strings["Friends"] = "Kontakte";
 $a->strings["Friends/Benefits"] = "Freunde/Zuwendungen";
 $a->strings["Casual"] = "Casual";
 $a->strings["Engaged"] = "Verlobt";
@@ -172,163 +138,7 @@ $a->strings["Uncertain"] = "Unsicher";
 $a->strings["It's complicated"] = "Ist kompliziert";
 $a->strings["Don't care"] = "Ist mir nicht wichtig";
 $a->strings["Ask me"] = "Frag mich";
-$a->strings["System"] = "System";
-$a->strings["Network"] = "Netzwerk";
-$a->strings["Personal"] = "Persönlich";
-$a->strings["Home"] = "Pinnwand";
-$a->strings["Introductions"] = "Kontaktanfragen";
-$a->strings["%s commented on %s's post"] = "%s hat %ss Beitrag kommentiert";
-$a->strings["%s created a new post"] = "%s hat einen neuen Beitrag erstellt";
-$a->strings["%s liked %s's post"] = "%s mag %ss Beitrag";
-$a->strings["%s disliked %s's post"] = "%s mag %ss Beitrag nicht";
-$a->strings["%s is attending %s's event"] = "%s nimmt an %s's Event teil";
-$a->strings["%s is not attending %s's event"] = "%s nimmt nicht an %s's Event teil";
-$a->strings["%s may attend %s's event"] = "%s nimmt eventuell an %s's Event teil";
-$a->strings["%s is now friends with %s"] = "%s ist jetzt mit %s befreundet";
-$a->strings["Friend Suggestion"] = "Kontaktvorschlag";
-$a->strings["Friend/Connect Request"] = "Kontakt-/Freundschaftsanfrage";
-$a->strings["New Follower"] = "Neuer Bewunderer";
-$a->strings["Wall Photos"] = "Pinnwand-Bilder";
-$a->strings["Daily posting limit of %d posts reached. The post was rejected."] = "Das tägliche Nachrichtenlimit von %d Nachrichten wurde erreicht. Die Nachtricht wurde verworfen.";
-$a->strings["Weekly posting limit of %d posts reached. The post was rejected."] = "Das wöchentliche Nachrichtenlimit von %d Nachrichten wurde erreicht. Die Nachtricht wurde verworfen.";
-$a->strings["Monthly posting limit of %d posts reached. The post was rejected."] = "Das monatliche Nachrichtenlimit von %d Nachrichten wurde erreicht. Die Nachtricht wurde verworfen.";
-$a->strings["Logged out."] = "Abgemeldet.";
-$a->strings["Login failed."] = "Anmeldung fehlgeschlagen.";
 $a->strings["Cannot locate DNS info for database server '%s'"] = "Kann die DNS Informationen für den Datenbankserver '%s' nicht ermitteln.";
-$a->strings["(no subject)"] = "(kein Betreff)";
-$a->strings["noreply"] = "noreply";
-$a->strings["l F d, Y \\@ g:i A"] = "l, d. F Y\\, H:i";
-$a->strings["Starts:"] = "Beginnt:";
-$a->strings["Finishes:"] = "Endet:";
-$a->strings["Location:"] = "Ort:";
-$a->strings["all-day"] = "ganztägig";
-$a->strings["Sun"] = "So";
-$a->strings["Mon"] = "Mo";
-$a->strings["Tue"] = "Di";
-$a->strings["Wed"] = "Mi";
-$a->strings["Thu"] = "Do";
-$a->strings["Fri"] = "Fr";
-$a->strings["Sat"] = "Sa";
-$a->strings["Sunday"] = "Sonntag";
-$a->strings["Monday"] = "Montag";
-$a->strings["Tuesday"] = "Dienstag";
-$a->strings["Wednesday"] = "Mittwoch";
-$a->strings["Thursday"] = "Donnerstag";
-$a->strings["Friday"] = "Freitag";
-$a->strings["Saturday"] = "Samstag";
-$a->strings["Jan"] = "Jan";
-$a->strings["Feb"] = "Feb";
-$a->strings["Mar"] = "März";
-$a->strings["Apr"] = "Apr";
-$a->strings["May"] = "Mai";
-$a->strings["Jun"] = "Jun";
-$a->strings["Jul"] = "Juli";
-$a->strings["Aug"] = "Aug";
-$a->strings["Sept"] = "Sep";
-$a->strings["Oct"] = "Okt";
-$a->strings["Nov"] = "Nov";
-$a->strings["Dec"] = "Dez";
-$a->strings["January"] = "Januar";
-$a->strings["February"] = "Februar";
-$a->strings["March"] = "März";
-$a->strings["April"] = "April";
-$a->strings["June"] = "Juni";
-$a->strings["July"] = "Juli";
-$a->strings["August"] = "August";
-$a->strings["September"] = "September";
-$a->strings["October"] = "Oktober";
-$a->strings["November"] = "November";
-$a->strings["December"] = "Dezember";
-$a->strings["today"] = "Heute";
-$a->strings["No events to display"] = "Keine Veranstaltung zum Anzeigen";
-$a->strings["l, F j"] = "l, F j";
-$a->strings["Edit event"] = "Veranstaltung bearbeiten";
-$a->strings["Delete event"] = "Veranstaltung löschen";
-$a->strings["link to source"] = "Link zum Originalbeitrag";
-$a->strings["Export"] = "Exportieren";
-$a->strings["Export calendar as ical"] = "Kalender als ical exportieren";
-$a->strings["Export calendar as csv"] = "Kalender als csv exportieren";
-$a->strings["Disallowed profile URL."] = "Nicht erlaubte Profil-URL.";
-$a->strings["Blocked domain"] = "Blockierte Daimain";
-$a->strings["Connect URL missing."] = "Connect-URL fehlt";
-$a->strings["This site is not configured to allow communications with other networks."] = "Diese Seite ist so konfiguriert, dass keine Kommunikation mit anderen Netzwerken erfolgen kann.";
-$a->strings["No compatible communication protocols or feeds were discovered."] = "Es wurden keine kompatiblen Kommunikationsprotokolle oder Feeds gefunden.";
-$a->strings["The profile address specified does not provide adequate information."] = "Die angegebene Profiladresse liefert unzureichende Informationen.";
-$a->strings["An author or name was not found."] = "Es wurde kein Autor oder Name gefunden.";
-$a->strings["No browser URL could be matched to this address."] = "Zu dieser Adresse konnte keine passende Browser URL gefunden werden.";
-$a->strings["Unable to match @-style Identity Address with a known protocol or email contact."] = "Konnte die @-Adresse mit keinem der bekannten Protokolle oder Email-Kontakte abgleichen.";
-$a->strings["Use mailto: in front of address to force email check."] = "Verwende mailto: vor der Email Adresse, um eine Überprüfung der E-Mail-Adresse zu erzwingen.";
-$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "Die Adresse dieses Profils gehört zu einem Netzwerk, mit dem die Kommunikation auf dieser Seite ausgeschaltet wurde.";
-$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "Eingeschränktes Profil. Diese Person wird keine direkten/privaten Nachrichten von Dir erhalten können.";
-$a->strings["Unable to retrieve contact information."] = "Konnte die Kontaktinformationen nicht empfangen.";
-$a->strings["[no subject]"] = "[kein Betreff]";
-$a->strings["Nothing new here"] = "Keine Neuigkeiten";
-$a->strings["Clear notifications"] = "Bereinige Benachrichtigungen";
-$a->strings["@name, !forum, #tags, content"] = "@name, !forum, #tags, content";
-$a->strings["Logout"] = "Abmelden";
-$a->strings["End this session"] = "Diese Sitzung beenden";
-$a->strings["Status"] = "Status";
-$a->strings["Your posts and conversations"] = "Deine Beiträge und Unterhaltungen";
-$a->strings["Profile"] = "Profil";
-$a->strings["Your profile page"] = "Deine Profilseite";
-$a->strings["Photos"] = "Bilder";
-$a->strings["Your photos"] = "Deine Fotos";
-$a->strings["Videos"] = "Videos";
-$a->strings["Your videos"] = "Deine Videos";
-$a->strings["Events"] = "Veranstaltungen";
-$a->strings["Your events"] = "Deine Ereignisse";
-$a->strings["Personal notes"] = "Persönliche Notizen";
-$a->strings["Your personal notes"] = "Deine persönlichen Notizen";
-$a->strings["Login"] = "Anmeldung";
-$a->strings["Sign in"] = "Anmelden";
-$a->strings["Home Page"] = "Homepage";
-$a->strings["Register"] = "Registrieren";
-$a->strings["Create an account"] = "Nutzerkonto erstellen";
-$a->strings["Help"] = "Hilfe";
-$a->strings["Help and documentation"] = "Hilfe und Dokumentation";
-$a->strings["Apps"] = "Apps";
-$a->strings["Addon applications, utilities, games"] = "Addon Anwendungen, Dienstprogramme, Spiele";
-$a->strings["Search"] = "Suche";
-$a->strings["Search site content"] = "Inhalt der Seite durchsuchen";
-$a->strings["Full Text"] = "Volltext";
-$a->strings["Tags"] = "Tags";
-$a->strings["Contacts"] = "Kontakte";
-$a->strings["Forums"] = "Foren";
-$a->strings["Community"] = "Gemeinschaft";
-$a->strings["Conversations on this site"] = "Unterhaltungen auf dieser Seite";
-$a->strings["Conversations on the network"] = "Unterhaltungen im Netzwerk";
-$a->strings["Events and Calendar"] = "Ereignisse und Kalender";
-$a->strings["Directory"] = "Verzeichnis";
-$a->strings["People directory"] = "Nutzerverzeichnis";
-$a->strings["Information"] = "Information";
-$a->strings["Information about this friendica instance"] = "Informationen zu dieser Friendica Instanz";
-$a->strings["Conversations from your friends"] = "Unterhaltungen Deiner Kontakte";
-$a->strings["Network Reset"] = "Netzwerk zurücksetzen";
-$a->strings["Load Network page with no filters"] = "Netzwerk-Seite ohne Filter laden";
-$a->strings["Friend Requests"] = "Kontaktanfragen";
-$a->strings["Notifications"] = "Benachrichtigungen";
-$a->strings["See all notifications"] = "Alle Benachrichtigungen anzeigen";
-$a->strings["Mark as seen"] = "Als gelesen markieren";
-$a->strings["Mark all system notifications seen"] = "Markiere alle Systembenachrichtigungen als gelesen";
-$a->strings["Messages"] = "Nachrichten";
-$a->strings["Private mail"] = "Private E-Mail";
-$a->strings["Inbox"] = "Eingang";
-$a->strings["Outbox"] = "Ausgang";
-$a->strings["New Message"] = "Neue Nachricht";
-$a->strings["Manage"] = "Verwalten";
-$a->strings["Manage other pages"] = "Andere Seiten verwalten";
-$a->strings["Delegations"] = "Delegationen";
-$a->strings["Delegate Page Management"] = "Delegiere das Management für die Seite";
-$a->strings["Settings"] = "Einstellungen";
-$a->strings["Account settings"] = "Kontoeinstellungen";
-$a->strings["Profiles"] = "Profile";
-$a->strings["Manage/Edit Profiles"] = "Profile Verwalten/Editieren";
-$a->strings["Manage/edit friends and contacts"] = " Kontakte verwalten/editieren";
-$a->strings["Admin"] = "Administration";
-$a->strings["Site setup and configuration"] = "Einstellungen der Seite und Konfiguration";
-$a->strings["Navigation"] = "Navigation";
-$a->strings["Site map"] = "Sitemap";
-$a->strings["Contact Photos"] = "Kontaktbilder";
 $a->strings["Post to Email"] = "An E-Mail senden";
 $a->strings["Connectors disabled, since \"%s\" is enabled."] = "Konnektoren sind nicht verfügbar, da \"%s\" aktiv ist.";
 $a->strings["Hide your profile details from unknown viewers?"] = "Profil-Details vor unbekannten Betrachtern verbergen?";
@@ -368,65 +178,6 @@ $a->strings["Diaspora Connector"] = "Diaspora";
 $a->strings["GNU Social Connector"] = "GNU social Connector";
 $a->strings["pnut"] = "pnut";
 $a->strings["App.net"] = "App.net";
-$a->strings["Friendica Notification"] = "Friendica-Benachrichtigung";
-$a->strings["Thank You,"] = "Danke,";
-$a->strings["%s Administrator"] = "der Administrator von %s";
-$a->strings["%1\$s, %2\$s Administrator"] = "%1\$s, %2\$s Administrator";
-$a->strings["%s <!item_type!>"] = "%s <!item_type!>";
-$a->strings["[Friendica:Notify] New mail received at %s"] = "[Friendica-Meldung] Neue Nachricht erhalten von %s";
-$a->strings["%1\$s sent you a new private message at %2\$s."] = "%1\$s hat Dir eine neue private Nachricht auf %2\$s geschickt.";
-$a->strings["%1\$s sent you %2\$s."] = "%1\$s schickte Dir %2\$s.";
-$a->strings["a private message"] = "eine private Nachricht";
-$a->strings["Please visit %s to view and/or reply to your private messages."] = "Bitte besuche %s, um Deine privaten Nachrichten anzusehen und/oder zu beantworten.";
-$a->strings["%1\$s commented on [url=%2\$s]a %3\$s[/url]"] = "%1\$s kommentierte [url=%2\$s]a %3\$s[/url]";
-$a->strings["%1\$s commented on [url=%2\$s]%3\$s's %4\$s[/url]"] = "%1\$s kommentierte [url=%2\$s]%3\$ss %4\$s[/url]";
-$a->strings["%1\$s commented on [url=%2\$s]your %3\$s[/url]"] = "%1\$s kommentierte [url=%2\$s]Deinen %3\$s[/url]";
-$a->strings["[Friendica:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Friendica-Meldung] Kommentar zum Beitrag #%1\$d von %2\$s";
-$a->strings["%s commented on an item/conversation you have been following."] = "%s hat einen Beitrag kommentiert, dem Du folgst.";
-$a->strings["Please visit %s to view and/or reply to the conversation."] = "Bitte besuche %s, um die Konversation anzusehen und/oder zu kommentieren.";
-$a->strings["[Friendica:Notify] %s posted to your profile wall"] = "[Friendica-Meldung] %s hat auf Deine Pinnwand geschrieben";
-$a->strings["%1\$s posted to your profile wall at %2\$s"] = "%1\$s schrieb auf %2\$s auf Deine Pinnwand";
-$a->strings["%1\$s posted to [url=%2\$s]your wall[/url]"] = "%1\$s hat etwas auf [url=%2\$s]Deiner Pinnwand[/url] gepostet";
-$a->strings["[Friendica:Notify] %s tagged you"] = "[Friendica-Meldung] %s hat Dich erwähnt";
-$a->strings["%1\$s tagged you at %2\$s"] = "%1\$s erwähnte Dich auf %2\$s";
-$a->strings["%1\$s [url=%2\$s]tagged you[/url]."] = "%1\$s [url=%2\$s]erwähnte Dich[/url].";
-$a->strings["[Friendica:Notify] %s shared a new post"] = "[Friendica Benachrichtigung] %s hat einen Beitrag geteilt";
-$a->strings["%1\$s shared a new post at %2\$s"] = "%1\$s hat einen neuen Beitrag auf %2\$s geteilt";
-$a->strings["%1\$s [url=%2\$s]shared a post[/url]."] = "%1\$s [url=%2\$s]hat einen Beitrag geteilt[/url].";
-$a->strings["[Friendica:Notify] %1\$s poked you"] = "[Friendica-Meldung] %1\$s hat Dich angestupst";
-$a->strings["%1\$s poked you at %2\$s"] = "%1\$s hat Dich auf %2\$s angestupst";
-$a->strings["%1\$s [url=%2\$s]poked you[/url]."] = "%1\$s [url=%2\$s]hat Dich angestupst[/url].";
-$a->strings["[Friendica:Notify] %s tagged your post"] = "[Friendica-Meldung] %s hat Deinen Beitrag getaggt";
-$a->strings["%1\$s tagged your post at %2\$s"] = "%1\$s erwähnte Deinen Beitrag auf %2\$s";
-$a->strings["%1\$s tagged [url=%2\$s]your post[/url]"] = "%1\$s erwähnte [url=%2\$s]Deinen Beitrag[/url]";
-$a->strings["[Friendica:Notify] Introduction received"] = "[Friendica-Meldung] Kontaktanfrage erhalten";
-$a->strings["You've received an introduction from '%1\$s' at %2\$s"] = "Du hast eine Kontaktanfrage von '%1\$s' auf %2\$s erhalten";
-$a->strings["You've received [url=%1\$s]an introduction[/url] from %2\$s."] = "Du hast eine [url=%1\$s]Kontaktanfrage[/url] von %2\$s erhalten.";
-$a->strings["You may visit their profile at %s"] = "Hier kannst Du das Profil betrachten: %s";
-$a->strings["Please visit %s to approve or reject the introduction."] = "Bitte besuche %s, um die Kontaktanfrage anzunehmen oder abzulehnen.";
-$a->strings["[Friendica:Notify] A new person is sharing with you"] = "[Friendica Benachrichtigung] Eine neue Person teilt mit Dir";
-$a->strings["%1\$s is sharing with you at %2\$s"] = "%1\$s teilt mit Dir auf %2\$s";
-$a->strings["[Friendica:Notify] You have a new follower"] = "[Friendica Benachrichtigung] Du hast einen neuen Kontakt auf ";
-$a->strings["You have a new follower at %2\$s : %1\$s"] = "Du hast einen neuen Kontakt auf %2\$s: %1\$s";
-$a->strings["[Friendica:Notify] Friend suggestion received"] = "[Friendica-Meldung] Kontaktvorschlag erhalten";
-$a->strings["You've received a friend suggestion from '%1\$s' at %2\$s"] = "Du hast einen Kontakt-Vorschlag von '%1\$s' auf %2\$s erhalten";
-$a->strings["You've received [url=%1\$s]a friend suggestion[/url] for %2\$s from %3\$s."] = "Du hast einen [url=%1\$s]Kontakt-Vorschlag[/url] %2\$s von %3\$s erhalten.";
-$a->strings["Name:"] = "Name:";
-$a->strings["Photo:"] = "Foto:";
-$a->strings["Please visit %s to approve or reject the suggestion."] = "Bitte besuche %s, um den Vorschlag zu akzeptieren oder abzulehnen.";
-$a->strings["[Friendica:Notify] Connection accepted"] = "[Friendica-Benachrichtigung] Kontaktanfrage bestätigt";
-$a->strings["'%1\$s' has accepted your connection request at %2\$s"] = "'%1\$s' hat Deine Kontaktanfrage auf  %2\$s bestätigt";
-$a->strings["%2\$s has accepted your [url=%1\$s]connection request[/url]."] = "%2\$s hat Deine [url=%1\$s]Kontaktanfrage[/url] akzeptiert.";
-$a->strings["You are now mutual friends and may exchange status updates, photos, and email without restriction."] = "Ihr seid nun beidseitige Kontakte und könnt Statusmitteilungen, Bilder und Emails ohne Einschränkungen austauschen.";
-$a->strings["Please visit %s if you wish to make any changes to this relationship."] = "Bitte besuche %s, wenn Du Änderungen an eurer Beziehung vornehmen willst.";
-$a->strings["'%1\$s' has chosen to accept you a \"fan\", which restricts some forms of communication - such as private messaging and some profile interactions. If this is a celebrity or community page, these settings were applied automatically."] = "'%1\$s' hat sich entschieden Dich als \"Fan\" zu akzeptieren, dies schränkt einige Kommunikationswege - wie private Nachrichten und einige Interaktionsmöglichkeiten auf der Profilseite - ein. Wenn dies eine Berühmtheiten- oder Gemeinschaftsseite ist, werden diese Einstellungen automatisch vorgenommen.";
-$a->strings["'%1\$s' may choose to extend this into a two-way or more permissive relationship in the future."] = "'%1\$s' kann den Kontaktstatus zu einem späteren Zeitpunkt erweitern und diese Einschränkungen aufheben. ";
-$a->strings["Please visit %s  if you wish to make any changes to this relationship."] = "Bitte besuche %s, wenn Du Änderungen an eurer Beziehung vornehmen willst.";
-$a->strings["[Friendica System:Notify] registration request"] = "[Friendica System:Benachrichtigung] Registrationsanfrage";
-$a->strings["You've received a registration request from '%1\$s' at %2\$s"] = "Du hast eine Registrierungsanfrage von %2\$s auf '%1\$s' erhalten";
-$a->strings["You've received a [url=%1\$s]registration request[/url] from %2\$s."] = "Du hast eine [url=%1\$s]Registrierungsanfrage[/url] von %2\$s erhalten.";
-$a->strings["Full Name:\t%1\$s\\nSite Location:\t%2\$s\\nLogin Name:\t%3\$s (%4\$s)"] = "Kompletter Name:\t%1\$s\\nURL der Seite:\t%2\$s\\nLogin Name:\t%3\$s (%4\$s)";
-$a->strings["Please visit %s to approve or reject the request."] = "Bitte besuche %s um die Anfrage zu bearbeiten.";
 $a->strings["A deleted group with this name was revived. Existing item permissions <strong>may</strong> apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Eine gelöschte Gruppe mit diesem Namen wurde wiederbelebt. Bestehende Berechtigungseinstellungen <strong>könnten</strong> auf diese Gruppe oder zukünftige Mitglieder angewandt werden. Falls Du dies nicht möchtest, erstelle bitte eine andere Gruppe mit einem anderen Namen.";
 $a->strings["Default privacy group for new contacts"] = "Voreingestellte Gruppe für neue Kontakte";
 $a->strings["Everybody"] = "Alle Kontakte";
@@ -438,22 +189,33 @@ $a->strings["Create a new group"] = "Neue Gruppe erstellen";
 $a->strings["Group Name: "] = "Gruppenname:";
 $a->strings["Contacts not in any group"] = "Kontakte in keiner Gruppe";
 $a->strings["add"] = "hinzufügen";
-$a->strings["Embedded content"] = "Eingebetteter Inhalt";
-$a->strings["Embedding disabled"] = "Einbettungen deaktiviert";
-$a->strings["View Profile"] = "Profil anschauen";
-$a->strings["Connect/Follow"] = "Verbinden/Folgen";
-$a->strings["View Status"] = "Pinnwand anschauen";
-$a->strings["View Photos"] = "Bilder anschauen";
-$a->strings["Network Posts"] = "Netzwerkbeiträge";
-$a->strings["View Contact"] = "Kontakt anzeigen";
-$a->strings["Drop Contact"] = "Kontakt löschen";
-$a->strings["Send PM"] = "Private Nachricht senden";
-$a->strings["Poke"] = "Anstupsen";
-$a->strings["Organisation"] = "Organisation";
-$a->strings["News"] = "Nachrichten";
-$a->strings["Forum"] = "Forum";
+$a->strings["Forums"] = "Foren";
 $a->strings["External link to forum"] = "Externer Link zum Forum";
 $a->strings["show more"] = "mehr anzeigen";
+$a->strings["System"] = "System";
+$a->strings["Network"] = "Netzwerk";
+$a->strings["Personal"] = "Persönlich";
+$a->strings["Home"] = "Pinnwand";
+$a->strings["Introductions"] = "Kontaktanfragen";
+$a->strings["%s commented on %s's post"] = "%s hat %ss Beitrag kommentiert";
+$a->strings["%s created a new post"] = "%s hat einen neuen Beitrag erstellt";
+$a->strings["%s liked %s's post"] = "%s mag %ss Beitrag";
+$a->strings["%s disliked %s's post"] = "%s mag %ss Beitrag nicht";
+$a->strings["%s is attending %s's event"] = "%s nimmt an %s's Event teil";
+$a->strings["%s is not attending %s's event"] = "%s nimmt nicht an %s's Event teil";
+$a->strings["%s may attend %s's event"] = "%s nimmt eventuell an %s's Event teil";
+$a->strings["%s is now friends with %s"] = "%s ist jetzt mit %s befreundet";
+$a->strings["Friend Suggestion"] = "Kontaktvorschlag";
+$a->strings["Friend/Connect Request"] = "Kontakt-/Freundschaftsanfrage";
+$a->strings["New Follower"] = "Neuer Bewunderer";
+$a->strings["Logged out."] = "Abgemeldet.";
+$a->strings["Login failed."] = "Anmeldung fehlgeschlagen.";
+$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Beim Versuch Dich mit der von Dir angegebenen OpenID anzumelden trat ein Problem auf. Bitte überprüfe, dass Du die OpenID richtig geschrieben hast.";
+$a->strings["The error message was:"] = "Die Fehlermeldung lautete:";
+$a->strings["l F d, Y \\@ g:i A"] = "l, d. F Y\\, H:i";
+$a->strings["Starts:"] = "Beginnt:";
+$a->strings["Finishes:"] = "Endet:";
+$a->strings["Location:"] = "Ort:";
 $a->strings["Image/photo"] = "Bild/Foto";
 $a->strings["<a href=\"%1\$s\" target=\"_blank\">%2\$s</a> %3\$s"] = "<a href=\"%1\$s\" target=\"_blank\">%2\$s</a> %3\$s";
 $a->strings["$1 wrote:"] = "$1 hat geschrieben:";
@@ -470,6 +232,7 @@ $a->strings["%d invitation available"] = array(
 );
 $a->strings["Find People"] = "Leute finden";
 $a->strings["Enter name or interest"] = "Name oder Interessen eingeben";
+$a->strings["Connect/Follow"] = "Verbinden/Folgen";
 $a->strings["Examples: Robert Morgenstein, Fishing"] = "Beispiel: Robert Morgenstein, Angeln";
 $a->strings["Find"] = "Finde";
 $a->strings["Friend Suggestions"] = "Kontaktvorschläge";
@@ -485,6 +248,11 @@ $a->strings["%d contact in common"] = array(
        0 => "%d gemeinsamer Kontakt",
        1 => "%d gemeinsame Kontakte",
 );
+$a->strings["event"] = "Event";
+$a->strings["status"] = "Status";
+$a->strings["photo"] = "Foto";
+$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s mag %2\$ss %3\$s";
+$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s mag %2\$ss %3\$s nicht";
 $a->strings["%1\$s attends %2\$s's %3\$s"] = "%1\$s nimmt an %2\$ss %3\$s teil.";
 $a->strings["%1\$s doesn't attend %2\$s's %3\$s"] = "%1\$s nimmt nicht an %2\$ss %3\$s teil.";
 $a->strings["%1\$s attends maybe %2\$s's %3\$s"] = "%1\$s nimmt eventuell an %2\$ss %3\$s teil.";
@@ -513,6 +281,13 @@ $a->strings["Please wait"] = "Bitte warten";
 $a->strings["remove"] = "löschen";
 $a->strings["Delete Selected Items"] = "Lösche die markierten Beiträge";
 $a->strings["Follow Thread"] = "Folge der Unterhaltung";
+$a->strings["View Status"] = "Pinnwand anschauen";
+$a->strings["View Profile"] = "Profil anschauen";
+$a->strings["View Photos"] = "Bilder anschauen";
+$a->strings["Network Posts"] = "Netzwerkbeiträge";
+$a->strings["View Contact"] = "Kontakt anzeigen";
+$a->strings["Send PM"] = "Private Nachricht senden";
+$a->strings["Poke"] = "Anstupsen";
 $a->strings["%s likes this."] = "%s mag das.";
 $a->strings["%s doesn't like this."] = "%s mag das nicht.";
 $a->strings["%s attends."] = "%s nimmt teil.";
@@ -585,13 +360,119 @@ $a->strings["\nError %d occurred during database update:\n%s\n"] = "\nFehler %d
 $a->strings["Errors encountered performing database changes: "] = "Fehler beim Ändern der Datenbank aufgetreten";
 $a->strings[": Database update"] = ": Datenbank Update";
 $a->strings["%s: updating %s table."] = "%s: aktualisiere Tabelle %s";
-$a->strings["%s\\'s birthday"] = "%ss Geburtstag";
-$a->strings["Sharing notification from Diaspora network"] = "Freigabe-Benachrichtigung von Diaspora";
-$a->strings["Attachments:"] = "Anhänge:";
+$a->strings["(no subject)"] = "(kein Betreff)";
+$a->strings["noreply"] = "noreply";
+$a->strings["Friendica Notification"] = "Friendica-Benachrichtigung";
+$a->strings["Thank You,"] = "Danke,";
+$a->strings["%s Administrator"] = "der Administrator von %s";
+$a->strings["%1\$s, %2\$s Administrator"] = "%1\$s, %2\$s Administrator";
+$a->strings["%s <!item_type!>"] = "%s <!item_type!>";
+$a->strings["[Friendica:Notify] New mail received at %s"] = "[Friendica-Meldung] Neue Nachricht erhalten von %s";
+$a->strings["%1\$s sent you a new private message at %2\$s."] = "%1\$s hat Dir eine neue private Nachricht auf %2\$s geschickt.";
+$a->strings["%1\$s sent you %2\$s."] = "%1\$s schickte Dir %2\$s.";
+$a->strings["a private message"] = "eine private Nachricht";
+$a->strings["Please visit %s to view and/or reply to your private messages."] = "Bitte besuche %s, um Deine privaten Nachrichten anzusehen und/oder zu beantworten.";
+$a->strings["%1\$s commented on [url=%2\$s]a %3\$s[/url]"] = "%1\$s kommentierte [url=%2\$s]a %3\$s[/url]";
+$a->strings["%1\$s commented on [url=%2\$s]%3\$s's %4\$s[/url]"] = "%1\$s kommentierte [url=%2\$s]%3\$ss %4\$s[/url]";
+$a->strings["%1\$s commented on [url=%2\$s]your %3\$s[/url]"] = "%1\$s kommentierte [url=%2\$s]Deinen %3\$s[/url]";
+$a->strings["[Friendica:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Friendica-Meldung] Kommentar zum Beitrag #%1\$d von %2\$s";
+$a->strings["%s commented on an item/conversation you have been following."] = "%s hat einen Beitrag kommentiert, dem Du folgst.";
+$a->strings["Please visit %s to view and/or reply to the conversation."] = "Bitte besuche %s, um die Konversation anzusehen und/oder zu kommentieren.";
+$a->strings["[Friendica:Notify] %s posted to your profile wall"] = "[Friendica-Meldung] %s hat auf Deine Pinnwand geschrieben";
+$a->strings["%1\$s posted to your profile wall at %2\$s"] = "%1\$s schrieb auf %2\$s auf Deine Pinnwand";
+$a->strings["%1\$s posted to [url=%2\$s]your wall[/url]"] = "%1\$s hat etwas auf [url=%2\$s]Deiner Pinnwand[/url] gepostet";
+$a->strings["[Friendica:Notify] %s tagged you"] = "[Friendica-Meldung] %s hat Dich erwähnt";
+$a->strings["%1\$s tagged you at %2\$s"] = "%1\$s erwähnte Dich auf %2\$s";
+$a->strings["%1\$s [url=%2\$s]tagged you[/url]."] = "%1\$s [url=%2\$s]erwähnte Dich[/url].";
+$a->strings["[Friendica:Notify] %s shared a new post"] = "[Friendica Benachrichtigung] %s hat einen Beitrag geteilt";
+$a->strings["%1\$s shared a new post at %2\$s"] = "%1\$s hat einen neuen Beitrag auf %2\$s geteilt";
+$a->strings["%1\$s [url=%2\$s]shared a post[/url]."] = "%1\$s [url=%2\$s]hat einen Beitrag geteilt[/url].";
+$a->strings["[Friendica:Notify] %1\$s poked you"] = "[Friendica-Meldung] %1\$s hat Dich angestupst";
+$a->strings["%1\$s poked you at %2\$s"] = "%1\$s hat Dich auf %2\$s angestupst";
+$a->strings["%1\$s [url=%2\$s]poked you[/url]."] = "%1\$s [url=%2\$s]hat Dich angestupst[/url].";
+$a->strings["[Friendica:Notify] %s tagged your post"] = "[Friendica-Meldung] %s hat Deinen Beitrag getaggt";
+$a->strings["%1\$s tagged your post at %2\$s"] = "%1\$s erwähnte Deinen Beitrag auf %2\$s";
+$a->strings["%1\$s tagged [url=%2\$s]your post[/url]"] = "%1\$s erwähnte [url=%2\$s]Deinen Beitrag[/url]";
+$a->strings["[Friendica:Notify] Introduction received"] = "[Friendica-Meldung] Kontaktanfrage erhalten";
+$a->strings["You've received an introduction from '%1\$s' at %2\$s"] = "Du hast eine Kontaktanfrage von '%1\$s' auf %2\$s erhalten";
+$a->strings["You've received [url=%1\$s]an introduction[/url] from %2\$s."] = "Du hast eine [url=%1\$s]Kontaktanfrage[/url] von %2\$s erhalten.";
+$a->strings["You may visit their profile at %s"] = "Hier kannst Du das Profil betrachten: %s";
+$a->strings["Please visit %s to approve or reject the introduction."] = "Bitte besuche %s, um die Kontaktanfrage anzunehmen oder abzulehnen.";
+$a->strings["[Friendica:Notify] A new person is sharing with you"] = "[Friendica Benachrichtigung] Eine neue Person teilt mit Dir";
+$a->strings["%1\$s is sharing with you at %2\$s"] = "%1\$s teilt mit Dir auf %2\$s";
+$a->strings["[Friendica:Notify] You have a new follower"] = "[Friendica Benachrichtigung] Du hast einen neuen Kontakt auf ";
+$a->strings["You have a new follower at %2\$s : %1\$s"] = "Du hast einen neuen Kontakt auf %2\$s: %1\$s";
+$a->strings["[Friendica:Notify] Friend suggestion received"] = "[Friendica-Meldung] Kontaktvorschlag erhalten";
+$a->strings["You've received a friend suggestion from '%1\$s' at %2\$s"] = "Du hast einen Kontakt-Vorschlag von '%1\$s' auf %2\$s erhalten";
+$a->strings["You've received [url=%1\$s]a friend suggestion[/url] for %2\$s from %3\$s."] = "Du hast einen [url=%1\$s]Kontakt-Vorschlag[/url] %2\$s von %3\$s erhalten.";
+$a->strings["Name:"] = "Name:";
+$a->strings["Photo:"] = "Foto:";
+$a->strings["Please visit %s to approve or reject the suggestion."] = "Bitte besuche %s, um den Vorschlag zu akzeptieren oder abzulehnen.";
+$a->strings["[Friendica:Notify] Connection accepted"] = "[Friendica-Benachrichtigung] Kontaktanfrage bestätigt";
+$a->strings["'%1\$s' has accepted your connection request at %2\$s"] = "'%1\$s' hat Deine Kontaktanfrage auf  %2\$s bestätigt";
+$a->strings["%2\$s has accepted your [url=%1\$s]connection request[/url]."] = "%2\$s hat Deine [url=%1\$s]Kontaktanfrage[/url] akzeptiert.";
+$a->strings["You are now mutual friends and may exchange status updates, photos, and email without restriction."] = "Ihr seid nun beidseitige Kontakte und könnt Statusmitteilungen, Bilder und Emails ohne Einschränkungen austauschen.";
+$a->strings["Please visit %s if you wish to make any changes to this relationship."] = "Bitte besuche %s, wenn Du Änderungen an eurer Beziehung vornehmen willst.";
+$a->strings["'%1\$s' has chosen to accept you a \"fan\", which restricts some forms of communication - such as private messaging and some profile interactions. If this is a celebrity or community page, these settings were applied automatically."] = "'%1\$s' hat sich entschieden Dich als \"Fan\" zu akzeptieren, dies schränkt einige Kommunikationswege - wie private Nachrichten und einige Interaktionsmöglichkeiten auf der Profilseite - ein. Wenn dies eine Berühmtheiten- oder Gemeinschaftsseite ist, werden diese Einstellungen automatisch vorgenommen.";
+$a->strings["'%1\$s' may choose to extend this into a two-way or more permissive relationship in the future."] = "'%1\$s' kann den Kontaktstatus zu einem späteren Zeitpunkt erweitern und diese Einschränkungen aufheben. ";
+$a->strings["Please visit %s  if you wish to make any changes to this relationship."] = "Bitte besuche %s, wenn Du Änderungen an eurer Beziehung vornehmen willst.";
+$a->strings["[Friendica System:Notify] registration request"] = "[Friendica System:Benachrichtigung] Registrationsanfrage";
+$a->strings["You've received a registration request from '%1\$s' at %2\$s"] = "Du hast eine Registrierungsanfrage von %2\$s auf '%1\$s' erhalten";
+$a->strings["You've received a [url=%1\$s]registration request[/url] from %2\$s."] = "Du hast eine [url=%1\$s]Registrierungsanfrage[/url] von %2\$s erhalten.";
+$a->strings["Full Name:\t%1\$s\\nSite Location:\t%2\$s\\nLogin Name:\t%3\$s (%4\$s)"] = "Kompletter Name:\t%1\$s\\nURL der Seite:\t%2\$s\\nLogin Name:\t%3\$s (%4\$s)";
+$a->strings["Please visit %s to approve or reject the request."] = "Bitte besuche %s um die Anfrage zu bearbeiten.";
+$a->strings["all-day"] = "ganztägig";
+$a->strings["Sun"] = "So";
+$a->strings["Mon"] = "Mo";
+$a->strings["Tue"] = "Di";
+$a->strings["Wed"] = "Mi";
+$a->strings["Thu"] = "Do";
+$a->strings["Fri"] = "Fr";
+$a->strings["Sat"] = "Sa";
+$a->strings["Sunday"] = "Sonntag";
+$a->strings["Monday"] = "Montag";
+$a->strings["Tuesday"] = "Dienstag";
+$a->strings["Wednesday"] = "Mittwoch";
+$a->strings["Thursday"] = "Donnerstag";
+$a->strings["Friday"] = "Freitag";
+$a->strings["Saturday"] = "Samstag";
+$a->strings["Jan"] = "Jan";
+$a->strings["Feb"] = "Feb";
+$a->strings["Mar"] = "März";
+$a->strings["Apr"] = "Apr";
+$a->strings["May"] = "Mai";
+$a->strings["Jun"] = "Jun";
+$a->strings["Jul"] = "Juli";
+$a->strings["Aug"] = "Aug";
+$a->strings["Sept"] = "Sep";
+$a->strings["Oct"] = "Okt";
+$a->strings["Nov"] = "Nov";
+$a->strings["Dec"] = "Dez";
+$a->strings["January"] = "Januar";
+$a->strings["February"] = "Februar";
+$a->strings["March"] = "März";
+$a->strings["April"] = "April";
+$a->strings["June"] = "Juni";
+$a->strings["July"] = "Juli";
+$a->strings["August"] = "August";
+$a->strings["September"] = "September";
+$a->strings["October"] = "Oktober";
+$a->strings["November"] = "November";
+$a->strings["December"] = "Dezember";
+$a->strings["today"] = "Heute";
+$a->strings["No events to display"] = "Keine Veranstaltung zum Anzeigen";
+$a->strings["l, F j"] = "l, F j";
+$a->strings["Edit event"] = "Veranstaltung bearbeiten";
+$a->strings["Delete event"] = "Veranstaltung löschen";
+$a->strings["link to source"] = "Link zum Originalbeitrag";
+$a->strings["Export"] = "Exportieren";
+$a->strings["Export calendar as ical"] = "Kalender als ical exportieren";
+$a->strings["Export calendar as csv"] = "Kalender als csv exportieren";
 $a->strings["Requested account is not available."] = "Das angefragte Profil ist nicht vorhanden.";
 $a->strings["Requested profile is not available."] = "Das angefragte Profil ist nicht vorhanden.";
 $a->strings["Edit profile"] = "Profil bearbeiten";
 $a->strings["Atom feed"] = "Atom-Feed";
+$a->strings["Profiles"] = "Profile";
 $a->strings["Manage/edit profiles"] = "Profile verwalten/editieren";
 $a->strings["Change profile photo"] = "Profilbild ändern";
 $a->strings["Create New Profile"] = "Neues Profil anlegen";
@@ -612,6 +493,7 @@ $a->strings["Birthdays this week:"] = "Geburtstage diese Woche:";
 $a->strings["[No description]"] = "[keine Beschreibung]";
 $a->strings["Event Reminders"] = "Veranstaltungserinnerungen";
 $a->strings["Events this week:"] = "Veranstaltungen diese Woche";
+$a->strings["Profile"] = "Profil";
 $a->strings["Full Name:"] = "Kompletter Name:";
 $a->strings["j F, Y"] = "j F, Y";
 $a->strings["j F"] = "j F";
@@ -636,22 +518,79 @@ $a->strings["School/education:"] = "Schule/Ausbildung:";
 $a->strings["Forums:"] = "Foren:";
 $a->strings["Basic"] = "Allgemein";
 $a->strings["Advanced"] = "Erweitert";
+$a->strings["Status"] = "Status";
 $a->strings["Status Messages and Posts"] = "Statusnachrichten und Beiträge";
 $a->strings["Profile Details"] = "Profildetails";
+$a->strings["Photos"] = "Bilder";
 $a->strings["Photo Albums"] = "Fotoalben";
+$a->strings["Videos"] = "Videos";
+$a->strings["Events"] = "Veranstaltungen";
+$a->strings["Events and Calendar"] = "Ereignisse und Kalender";
 $a->strings["Personal Notes"] = "Persönliche Notizen";
 $a->strings["Only You Can See This"] = "Nur Du kannst das sehen";
-$a->strings["[Name Withheld]"] = "[Name unterdrückt]";
-$a->strings["Item not found."] = "Beitrag nicht gefunden.";
-$a->strings["Do you really want to delete this item?"] = "Möchtest Du wirklich dieses Item löschen?";
-$a->strings["Yes"] = "Ja";
-$a->strings["Permission denied."] = "Zugriff verweigert.";
-$a->strings["Archives"] = "Archiv";
-$a->strings["view full size"] = "Volle Größe anzeigen";
-$a->strings["%s is now following %s."] = "%s folgt nun %s";
-$a->strings["following"] = "folgen";
-$a->strings["%s stopped following %s."] = "%s hat aufgehört %s zu folgen";
-$a->strings["stopped following"] = "wird nicht mehr gefolgt";
+$a->strings["Contacts"] = "Kontakte";
+$a->strings["%1\$s is attending %2\$s's %3\$s"] = "%1\$s nimmt an %2\$ss %3\$s teil.";
+$a->strings["%1\$s is not attending %2\$s's %3\$s"] = "%1\$s nimmt nicht an %2\$ss %3\$s teil.";
+$a->strings["%1\$s may attend %2\$s's %3\$s"] = "%1\$s nimmt eventuell an %2\$ss %3\$s teil.";
+$a->strings["Nothing new here"] = "Keine Neuigkeiten";
+$a->strings["Clear notifications"] = "Bereinige Benachrichtigungen";
+$a->strings["@name, !forum, #tags, content"] = "@name, !forum, #tags, content";
+$a->strings["Logout"] = "Abmelden";
+$a->strings["End this session"] = "Diese Sitzung beenden";
+$a->strings["Your posts and conversations"] = "Deine Beiträge und Unterhaltungen";
+$a->strings["Your profile page"] = "Deine Profilseite";
+$a->strings["Your photos"] = "Deine Fotos";
+$a->strings["Your videos"] = "Deine Videos";
+$a->strings["Your events"] = "Deine Ereignisse";
+$a->strings["Personal notes"] = "Persönliche Notizen";
+$a->strings["Your personal notes"] = "Deine persönlichen Notizen";
+$a->strings["Login"] = "Anmeldung";
+$a->strings["Sign in"] = "Anmelden";
+$a->strings["Home Page"] = "Homepage";
+$a->strings["Register"] = "Registrieren";
+$a->strings["Create an account"] = "Nutzerkonto erstellen";
+$a->strings["Help"] = "Hilfe";
+$a->strings["Help and documentation"] = "Hilfe und Dokumentation";
+$a->strings["Apps"] = "Apps";
+$a->strings["Addon applications, utilities, games"] = "Addon Anwendungen, Dienstprogramme, Spiele";
+$a->strings["Search"] = "Suche";
+$a->strings["Search site content"] = "Inhalt der Seite durchsuchen";
+$a->strings["Full Text"] = "Volltext";
+$a->strings["Tags"] = "Tags";
+$a->strings["Community"] = "Gemeinschaft";
+$a->strings["Conversations on this site"] = "Unterhaltungen auf dieser Seite";
+$a->strings["Conversations on the network"] = "Unterhaltungen im Netzwerk";
+$a->strings["Directory"] = "Verzeichnis";
+$a->strings["People directory"] = "Nutzerverzeichnis";
+$a->strings["Information"] = "Information";
+$a->strings["Information about this friendica instance"] = "Informationen zu dieser Friendica Instanz";
+$a->strings["Conversations from your friends"] = "Unterhaltungen Deiner Kontakte";
+$a->strings["Network Reset"] = "Netzwerk zurücksetzen";
+$a->strings["Load Network page with no filters"] = "Netzwerk-Seite ohne Filter laden";
+$a->strings["Friend Requests"] = "Kontaktanfragen";
+$a->strings["Notifications"] = "Benachrichtigungen";
+$a->strings["See all notifications"] = "Alle Benachrichtigungen anzeigen";
+$a->strings["Mark as seen"] = "Als gelesen markieren";
+$a->strings["Mark all system notifications seen"] = "Markiere alle Systembenachrichtigungen als gelesen";
+$a->strings["Messages"] = "Nachrichten";
+$a->strings["Private mail"] = "Private E-Mail";
+$a->strings["Inbox"] = "Eingang";
+$a->strings["Outbox"] = "Ausgang";
+$a->strings["New Message"] = "Neue Nachricht";
+$a->strings["Manage"] = "Verwalten";
+$a->strings["Manage other pages"] = "Andere Seiten verwalten";
+$a->strings["Delegations"] = "Delegationen";
+$a->strings["Delegate Page Management"] = "Delegiere das Management für die Seite";
+$a->strings["Settings"] = "Einstellungen";
+$a->strings["Account settings"] = "Kontoeinstellungen";
+$a->strings["Manage/Edit Profiles"] = "Profile Verwalten/Editieren";
+$a->strings["Manage/edit friends and contacts"] = " Kontakte verwalten/editieren";
+$a->strings["Admin"] = "Administration";
+$a->strings["Site setup and configuration"] = "Einstellungen der Seite und Konfiguration";
+$a->strings["Navigation"] = "Navigation";
+$a->strings["Site map"] = "Sitemap";
+$a->strings["Embedded content"] = "Eingebetteter Inhalt";
+$a->strings["Embedding disabled"] = "Einbettungen deaktiviert";
 $a->strings["Click here to upgrade."] = "Zum Upgraden hier klicken.";
 $a->strings["This action exceeds the limits set by your subscription plan."] = "Diese Aktion überschreitet die Obergrenze Deines Abonnements.";
 $a->strings["This action is not available under your subscription plan."] = "Diese Aktion ist in Deinem Abonnement nicht verfügbar.";
@@ -729,29 +668,179 @@ $a->strings["%d contact not imported"] = array(
        1 => "%d Kontakte nicht importiert",
 );
 $a->strings["Done. You can now login with your username and password"] = "Erledigt. Du kannst Dich jetzt mit Deinem Nutzernamen und Passwort anmelden";
-$a->strings["No friends to display."] = "Keine Kontakte zum Anzeigen.";
-$a->strings["Authorize application connection"] = "Verbindung der Applikation autorisieren";
-$a->strings["Return to your app and insert this Securty Code:"] = "Gehe zu Deiner Anwendung zurück und trage dort folgenden Sicherheitscode ein:";
-$a->strings["Please login to continue."] = "Bitte melde Dich an um fortzufahren.";
-$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Möchtest Du dieser Anwendung den Zugriff auf Deine Beiträge und Kontakte, sowie das Erstellen neuer Beiträge in Deinem Namen gestatten?";
-$a->strings["No"] = "Nein";
-$a->strings["You must be logged in to use addons. "] = "Sie müssen angemeldet sein um Addons benutzen zu können.";
-$a->strings["Applications"] = "Anwendungen";
-$a->strings["No installed applications."] = "Keine Applikationen installiert.";
-$a->strings["Item not available."] = "Beitrag nicht verfügbar.";
-$a->strings["Item was not found."] = "Beitrag konnte nicht gefunden werden.";
-$a->strings["Source (bbcode) text:"] = "Quelle (bbcode) Text:";
-$a->strings["Source (Diaspora) text to convert to BBcode:"] = "Eingabe (Diaspora) nach BBCode zu konvertierender Text:";
-$a->strings["Source input: "] = "Originaltext:";
-$a->strings["bb2html (raw HTML): "] = "bb2html (reines HTML): ";
-$a->strings["bb2html: "] = "bb2html: ";
-$a->strings["bb2html2bb: "] = "bb2html2bb: ";
+$a->strings["Passwords do not match. Password unchanged."] = "Die Passwörter stimmen nicht überein. Das Passwort bleibt unverändert.";
+$a->strings["An invitation is required."] = "Du benötigst eine Einladung.";
+$a->strings["Invitation could not be verified."] = "Die Einladung konnte nicht überprüft werden.";
+$a->strings["Invalid OpenID url"] = "Ungültige OpenID URL";
+$a->strings["Please enter the required information."] = "Bitte trage die erforderlichen Informationen ein.";
+$a->strings["Please use a shorter name."] = "Bitte verwende einen kürzeren Namen.";
+$a->strings["Name too short."] = "Der Name ist zu kurz.";
+$a->strings["That doesn't appear to be your full (First Last) name."] = "Das scheint nicht Dein kompletter Name (Vor- und Nachname) zu sein.";
+$a->strings["Your email domain is not among those allowed on this site."] = "Die Domain Deiner E-Mail Adresse ist auf dieser Seite nicht erlaubt.";
+$a->strings["Not a valid email address."] = "Keine gültige E-Mail-Adresse.";
+$a->strings["Cannot use that email."] = "Konnte diese E-Mail-Adresse nicht verwenden.";
+$a->strings["Your \"nickname\" can only contain \"a-z\", \"0-9\" and \"_\"."] = "Dein Spitzname darf nur aus Buchstaben und Zahlen (\"a-z\",\"0-9\" und \"_\") bestehen.";
+$a->strings["Nickname is already registered. Please choose another."] = "Dieser Spitzname ist bereits vergeben. Bitte wähle einen anderen.";
+$a->strings["Nickname was once registered here and may not be re-used. Please choose another."] = "Dieser Spitzname ist bereits vergeben. Bitte wähle einen anderen.";
+$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "FATALER FEHLER: Sicherheitsschlüssel konnten nicht erzeugt werden.";
+$a->strings["An error occurred during registration. Please try again."] = "Während der Anmeldung ist ein Fehler aufgetreten. Bitte versuche es noch einmal.";
+$a->strings["default"] = "Standard";
+$a->strings["An error occurred creating your default profile. Please try again."] = "Bei der Erstellung des Standardprofils ist ein Fehler aufgetreten. Bitte versuche es noch einmal.";
+$a->strings["Profile Photos"] = "Profilbilder";
+$a->strings["\n\t\tDear %1\$s,\n\t\t\tThank you for registering at %2\$s. Your account is pending for approval by the administrator.\n\t"] = "\nHallo %1\$s,\n\ndanke für Deine Registrierung auf %2\$s. Dein Account wurde muss noch vom Admin des Knotens geprüft werden.";
+$a->strings["Registration at %s"] = "Registrierung als %s";
+$a->strings["\n\t\tDear %1\$s,\n\t\t\tThank you for registering at %2\$s. Your account has been created.\n\t"] = "\nHallo %1\$s,\n\ndanke für Deine Registrierung auf %2\$s. Dein Account wurde eingerichtet.";
+$a->strings["\n\t\tThe login details are as follows:\n\t\t\tSite Location:\t%3\$s\n\t\t\tLogin Name:\t%1\$s\n\t\t\tPassword:\t%5\$s\n\n\t\tYou may change your password from your account \"Settings\" page after logging\n\t\tin.\n\n\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\tYou may also wish to add some basic information to your default profile\n\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\tWe recommend setting your full name, adding a profile photo,\n\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\tperhaps what country you live in; if you do not wish to be more specific\n\t\tthan that.\n\n\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\tIf you are new and do not know anybody here, they may help\n\t\tyou to make some new and interesting friends.\n\n\n\t\tThank you and welcome to %2\$s."] = "\nDie Anmelde-Details sind die folgenden:\n\tAdresse der Seite:\t%3\$s\n\tBenutzernamename:\t%1\$s\n\tPasswort:\t%5\$s\n\nDu kannst Dein Passwort unter \"Einstellungen\" ändern, sobald Du Dich\nangemeldet hast.\n\nBitte nimm Dir ein paar Minuten um die anderen Einstellungen auf dieser\nSeite zu kontrollieren.\n\nEventuell magst Du ja auch einige Informationen über Dich in Deinem\nProfil veröffentlichen, damit andere Leute Dich einfacher finden können.\nBearbeite hierfür einfach Dein Standard-Profil (über die Profil-Seite).\n\nWir empfehlen Dir, Deinen kompletten Namen anzugeben und ein zu Dir\npassendes Profilbild zu wählen, damit Dich alte Bekannte wieder finden.\nAußerdem ist es nützlich, wenn Du auf Deinem Profil Schlüsselwörter\nangibst. Das erleichtert es, Leute zu finden, die Deine Interessen teilen.\n\nWir respektieren Deine Privatsphäre - keine dieser Angaben ist nötig.\nWenn Du neu im Netzwerk bist und noch niemanden kennst, dann können sie\nallerdings dabei helfen, neue und interessante Kontakte zu knüpfen.\n\nDanke für Deine Aufmerksamkeit und willkommen auf %2\$s.";
+$a->strings["Registration details for %s"] = "Details der Registration von %s";
+$a->strings["Wall Photos"] = "Pinnwand-Bilder";
+$a->strings["%s\\'s birthday"] = "%ss Geburtstag";
+$a->strings["[no subject]"] = "[kein Betreff]";
+$a->strings["Contact Photos"] = "Kontaktbilder";
+$a->strings["Drop Contact"] = "Kontakt löschen";
+$a->strings["Organisation"] = "Organisation";
+$a->strings["News"] = "Nachrichten";
+$a->strings["Forum"] = "Forum";
+$a->strings["Daily posting limit of %d posts reached. The post was rejected."] = "Das tägliche Nachrichtenlimit von %d Nachrichten wurde erreicht. Die Nachtricht wurde verworfen.";
+$a->strings["Weekly posting limit of %d posts reached. The post was rejected."] = "Das wöchentliche Nachrichtenlimit von %d Nachrichten wurde erreicht. Die Nachtricht wurde verworfen.";
+$a->strings["Monthly posting limit of %d posts reached. The post was rejected."] = "Das monatliche Nachrichtenlimit von %d Nachrichten wurde erreicht. Die Nachtricht wurde verworfen.";
+$a->strings["Sharing notification from Diaspora network"] = "Freigabe-Benachrichtigung von Diaspora";
+$a->strings["Attachments:"] = "Anhänge:";
+$a->strings["Disallowed profile URL."] = "Nicht erlaubte Profil-URL.";
+$a->strings["Blocked domain"] = "Blockierte Daimain";
+$a->strings["Connect URL missing."] = "Connect-URL fehlt";
+$a->strings["This site is not configured to allow communications with other networks."] = "Diese Seite ist so konfiguriert, dass keine Kommunikation mit anderen Netzwerken erfolgen kann.";
+$a->strings["No compatible communication protocols or feeds were discovered."] = "Es wurden keine kompatiblen Kommunikationsprotokolle oder Feeds gefunden.";
+$a->strings["The profile address specified does not provide adequate information."] = "Die angegebene Profiladresse liefert unzureichende Informationen.";
+$a->strings["An author or name was not found."] = "Es wurde kein Autor oder Name gefunden.";
+$a->strings["No browser URL could be matched to this address."] = "Zu dieser Adresse konnte keine passende Browser URL gefunden werden.";
+$a->strings["Unable to match @-style Identity Address with a known protocol or email contact."] = "Konnte die @-Adresse mit keinem der bekannten Protokolle oder Email-Kontakte abgleichen.";
+$a->strings["Use mailto: in front of address to force email check."] = "Verwende mailto: vor der Email Adresse, um eine Überprüfung der E-Mail-Adresse zu erzwingen.";
+$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "Die Adresse dieses Profils gehört zu einem Netzwerk, mit dem die Kommunikation auf dieser Seite ausgeschaltet wurde.";
+$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "Eingeschränktes Profil. Diese Person wird keine direkten/privaten Nachrichten von Dir erhalten können.";
+$a->strings["Unable to retrieve contact information."] = "Konnte die Kontaktinformationen nicht empfangen.";
+$a->strings["[Name Withheld]"] = "[Name unterdrückt]";
+$a->strings["Item not found."] = "Beitrag nicht gefunden.";
+$a->strings["Do you really want to delete this item?"] = "Möchtest Du wirklich dieses Item löschen?";
+$a->strings["Yes"] = "Ja";
+$a->strings["Permission denied."] = "Zugriff verweigert.";
+$a->strings["Archives"] = "Archiv";
+$a->strings["view full size"] = "Volle Größe anzeigen";
+$a->strings["%s is now following %s."] = "%s folgt nun %s";
+$a->strings["following"] = "folgen";
+$a->strings["%s stopped following %s."] = "%s hat aufgehört %s zu folgen";
+$a->strings["stopped following"] = "wird nicht mehr gefolgt";
+$a->strings["Authorize application connection"] = "Verbindung der Applikation autorisieren";
+$a->strings["Return to your app and insert this Securty Code:"] = "Gehe zu Deiner Anwendung zurück und trage dort folgenden Sicherheitscode ein:";
+$a->strings["Please login to continue."] = "Bitte melde Dich an um fortzufahren.";
+$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Möchtest Du dieser Anwendung den Zugriff auf Deine Beiträge und Kontakte, sowie das Erstellen neuer Beiträge in Deinem Namen gestatten?";
+$a->strings["No"] = "Nein";
+$a->strings["You must be logged in to use addons. "] = "Sie müssen angemeldet sein um Addons benutzen zu können.";
+$a->strings["Applications"] = "Anwendungen";
+$a->strings["No installed applications."] = "Keine Applikationen installiert.";
+$a->strings["Item not available."] = "Beitrag nicht verfügbar.";
+$a->strings["Item was not found."] = "Beitrag konnte nicht gefunden werden.";
+$a->strings["Source (bbcode) text:"] = "Quelle (bbcode) Text:";
+$a->strings["Source (Diaspora) text to convert to BBcode:"] = "Eingabe (Diaspora) nach BBCode zu konvertierender Text:";
+$a->strings["Source input: "] = "Originaltext:";
+$a->strings["bb2html (raw HTML): "] = "bb2html (reines HTML): ";
+$a->strings["bb2html: "] = "bb2html: ";
+$a->strings["bb2html2bb: "] = "bb2html2bb: ";
 $a->strings["bb2md: "] = "bb2md: ";
 $a->strings["bb2md2html: "] = "bb2md2html: ";
 $a->strings["bb2dia2bb: "] = "bb2dia2bb: ";
 $a->strings["bb2md2html2bb: "] = "bb2md2html2bb: ";
 $a->strings["Source input (Diaspora format): "] = "Originaltext (Diaspora Format): ";
 $a->strings["diaspora2bb: "] = "diaspora2bb: ";
+$a->strings["No contacts in common."] = "Keine gemeinsamen Kontakte.";
+$a->strings["Common Friends"] = "Gemeinsame Kontakte";
+$a->strings["Credits"] = "Credits";
+$a->strings["Friendica is a community project, that would not be possible without the help of many people. Here is a list of those who have contributed to the code or the translation of Friendica. Thank you all!"] = "Friendica ist ein Gemeinschaftsprojekt, das nicht ohne die Hilfe vieler Personen möglich wäre. Hier ist eine Aufzählung der Personen, die zum Code oder der Übersetzung beigetragen haben. Dank an alle !";
+$a->strings["Contact settings applied."] = "Einstellungen zum Kontakt angewandt.";
+$a->strings["Contact update failed."] = "Konnte den Kontakt nicht aktualisieren.";
+$a->strings["Contact not found."] = "Kontakt nicht gefunden.";
+$a->strings["<strong>WARNING: This is highly advanced</strong> and if you enter incorrect information your communications with this contact may stop working."] = "<strong>ACHTUNG: Das sind Experten-Einstellungen!</strong> Wenn Du etwas Falsches eingibst, funktioniert die Kommunikation mit diesem Kontakt evtl. nicht mehr.";
+$a->strings["Please use your browser 'Back' button <strong>now</strong> if you are uncertain what to do on this page."] = "Bitte nutze den Zurück-Button Deines Browsers <strong>jetzt</strong>, wenn Du Dir unsicher bist, was Du tun willst.";
+$a->strings["No mirroring"] = "Kein Spiegeln";
+$a->strings["Mirror as forwarded posting"] = "Spiegeln als weitergeleitete Beiträge";
+$a->strings["Mirror as my own posting"] = "Spiegeln als meine eigenen Beiträge";
+$a->strings["Return to contact editor"] = "Zurück zum Kontakteditor";
+$a->strings["Refetch contact data"] = "Kontaktdaten neu laden";
+$a->strings["Submit"] = "Senden";
+$a->strings["Remote Self"] = "Entfernte Konten";
+$a->strings["Mirror postings from this contact"] = "Spiegle Beiträge dieses Kontakts";
+$a->strings["Mark this contact as remote_self, this will cause friendica to repost new entries from this contact."] = "Markiere diesen Kontakt als remote_self (entferntes Konto), dies veranlasst Friendica alle Top-Level Beiträge dieses Kontakts an all Deine Kontakte zu senden.";
+$a->strings["Name"] = "Name";
+$a->strings["Account Nickname"] = "Konto-Spitzname";
+$a->strings["@Tagname - overrides Name/Nickname"] = "@Tagname - überschreibt Name/Spitzname";
+$a->strings["Account URL"] = "Konto-URL";
+$a->strings["Friend Request URL"] = "URL für Kontaktschaftsanfragen";
+$a->strings["Friend Confirm URL"] = "URL für Bestätigungen von Kontaktanfragen";
+$a->strings["Notification Endpoint URL"] = "URL-Endpunkt für Benachrichtigungen";
+$a->strings["Poll/Feed URL"] = "Pull/Feed-URL";
+$a->strings["New photo from this URL"] = "Neues Foto von dieser URL";
+$a->strings["- select -"] = "- auswählen -";
+$a->strings["Friend suggestion sent."] = "Kontaktvorschlag gesendet.";
+$a->strings["Suggest Friends"] = "Kontakte vorschlagen";
+$a->strings["Suggest a friend for %s"] = "Schlage %s einen Kontakt vor";
+$a->strings["Remote privacy information not available."] = "Entfernte Privatsphäreneinstellungen nicht verfügbar.";
+$a->strings["Visible to:"] = "Sichtbar für:";
+$a->strings["System down for maintenance"] = "System zur Wartung abgeschaltet";
+$a->strings["Welcome to Friendica"] = "Willkommen bei Friendica";
+$a->strings["New Member Checklist"] = "Checkliste für neue Mitglieder";
+$a->strings["We would like to offer some tips and links to help make your experience enjoyable. Click any item to visit the relevant page. A link to this page will be visible from your home page for two weeks after your initial registration and then will quietly disappear."] = "Wir möchten Dir einige Tipps und Links anbieten, die Dir helfen könnten, den Einstieg angenehmer zu machen. Klicke auf ein Element, um die entsprechende Seite zu besuchen. Ein Link zu dieser Seite hier bleibt für Dich an Deiner Pinnwand für zwei Wochen nach dem Registrierungsdatum sichtbar und wird dann verschwinden.";
+$a->strings["Getting Started"] = "Einstieg";
+$a->strings["Friendica Walk-Through"] = "Friendica Rundgang";
+$a->strings["On your <em>Quick Start</em> page - find a brief introduction to your profile and network tabs, make some new connections, and find some groups to join."] = "Auf der <em>Quick Start</em> Seite findest Du eine kurze Einleitung in die einzelnen Funktionen Deines Profils und die Netzwerk-Reiter, wo Du interessante Foren findest und neue Kontakte knüpfst.";
+$a->strings["Go to Your Settings"] = "Gehe zu deinen Einstellungen";
+$a->strings["On your <em>Settings</em> page -  change your initial password. Also make a note of your Identity Address. This looks just like an email address - and will be useful in making friends on the free social web."] = "Ändere bitte unter <em>Einstellungen</em> dein Passwort. Außerdem merke dir deine Identifikationsadresse. Diese sieht aus wie eine E-Mail-Adresse und wird benötigt, um Kontakte mit anderen im Friendica Netzwerk zu knüpfen..";
+$a->strings["Review the other settings, particularly the privacy settings. An unpublished directory listing is like having an unlisted phone number. In general, you should probably publish your listing - unless all of your friends and potential friends know exactly how to find you."] = "Überprüfe die restlichen Einstellungen, insbesondere die Einstellungen zur Privatsphäre. Wenn Du Dein Profil nicht veröffentlichst, ist das als wenn Du Deine Telefonnummer nicht ins Telefonbuch einträgst. Im Allgemeinen solltest Du es veröffentlichen - außer all Deine Kontakte und potentiellen Kontakte wissen genau, wie sie Dich finden können.";
+$a->strings["Upload Profile Photo"] = "Profilbild hochladen";
+$a->strings["Upload a profile photo if you have not done so already. Studies have shown that people with real photos of themselves are ten times more likely to make friends than people who do not."] = "Lade ein Profilbild hoch, falls Du es noch nicht getan hast. Studien haben gezeigt, dass es zehnmal wahrscheinlicher ist neue Kontakte zu finden, wenn Du ein Bild von Dir selbst verwendest, als wenn Du dies nicht tust.";
+$a->strings["Edit Your Profile"] = "Editiere dein Profil";
+$a->strings["Edit your <strong>default</strong> profile to your liking. Review the settings for hiding your list of friends and hiding the profile from unknown visitors."] = "Editiere Dein <strong>Standard</strong> Profil nach Deinen Vorlieben. Überprüfe die Einstellungen zum Verbergen Deiner Kontaktliste vor unbekannten Betrachtern des Profils.";
+$a->strings["Profile Keywords"] = "Profil Schlüsselbegriffe";
+$a->strings["Set some public keywords for your default profile which describe your interests. We may be able to find other people with similar interests and suggest friendships."] = "Trage ein paar öffentliche Stichwörter in Dein Standardprofil ein, die Deine Interessen beschreiben. Eventuell sind wir in der Lage Leute zu finden, die Deine Interessen teilen und können Dir dann Kontakte vorschlagen.";
+$a->strings["Connecting"] = "Verbindungen knüpfen";
+$a->strings["Importing Emails"] = "Emails Importieren";
+$a->strings["Enter your email access information on your Connector Settings page if you wish to import and interact with friends or mailing lists from your email INBOX"] = "Gib Deine E-Mail-Zugangsinformationen auf der Connector-Einstellungsseite ein, falls Du E-Mails aus Deinem Posteingang importieren und mit Kontakten und Mailinglisten interagieren willst.";
+$a->strings["Go to Your Contacts Page"] = "Gehe zu deiner Kontakt-Seite";
+$a->strings["Your Contacts page is your gateway to managing friendships and connecting with friends on other networks. Typically you enter their address or site URL in the <em>Add New Contact</em> dialog."] = "Die Kontakte-Seite ist die Einstiegsseite, von der aus Du Kontakte verwalten und Dich mit Personen in anderen Netzwerken verbinden kannst. Normalerweise gibst Du dazu einfach ihre Adresse oder die URL der Seite im Kasten <em>Neuen Kontakt hinzufügen</em> ein.";
+$a->strings["Go to Your Site's Directory"] = "Gehe zum Verzeichnis Deiner Friendica Instanz";
+$a->strings["The Directory page lets you find other people in this network or other federated sites. Look for a <em>Connect</em> or <em>Follow</em> link on their profile page. Provide your own Identity Address if requested."] = "Über die Verzeichnisseite kannst Du andere Personen auf diesem Server oder anderen verknüpften Seiten finden. Halte nach einem <em>Verbinden</em> oder <em>Folgen</em> Link auf deren Profilseiten Ausschau und gib Deine eigene Profiladresse an, falls Du danach gefragt wirst.";
+$a->strings["Finding New People"] = "Neue Leute kennenlernen";
+$a->strings["On the side panel of the Contacts page are several tools to find new friends. We can match people by interest, look up people by name or interest, and provide suggestions based on network relationships. On a brand new site, friend suggestions will usually begin to be populated within 24 hours."] = "Im seitlichen Bedienfeld der Kontakteseite gibt es diverse Werkzeuge, um neue Personen zu finden. Wir können Menschen mit den gleichen Interessen finden, anhand von Namen oder Interessen suchen oder aber aufgrund vorhandener Kontakte neue Leute vorschlagen.\nAuf einer brandneuen - soeben erstellten - Seite starten die Kontaktvorschläge innerhalb von 24 Stunden.";
+$a->strings["Group Your Contacts"] = "Gruppiere deine Kontakte";
+$a->strings["Once you have made some friends, organize them into private conversation groups from the sidebar of your Contacts page and then you can interact with each group privately on your Network page."] = "Sobald Du einige Kontakte gefunden hast, organisiere sie in Gruppen zur privaten Kommunikation im Seitenmenü der Kontakte-Seite. Du kannst dann mit jeder dieser Gruppen von der Netzwerkseite aus privat interagieren.";
+$a->strings["Why Aren't My Posts Public?"] = "Warum sind meine Beiträge nicht öffentlich?";
+$a->strings["Friendica respects your privacy. By default, your posts will only show up to people you've added as friends. For more information, see the help section from the link above."] = "Friendica respektiert Deine Privatsphäre. Mit der Grundeinstellung werden Deine Beiträge ausschließlich Deinen Kontakten angezeigt. Für weitere Informationen diesbezüglich lies Dir bitte den entsprechenden Abschnitt in der Hilfe unter dem obigen Link durch.";
+$a->strings["Getting Help"] = "Hilfe bekommen";
+$a->strings["Go to the Help Section"] = "Zum Hilfe Abschnitt gehen";
+$a->strings["Our <strong>help</strong> pages may be consulted for detail on other program features and resources."] = "Unsere <strong>Hilfe</strong> Seiten können herangezogen werden, um weitere Einzelheiten zu andern Programm Features zu erhalten.";
+$a->strings["Visit %s's profile [%s]"] = "Besuche %ss Profil [%s]";
+$a->strings["Edit contact"] = "Kontakt bearbeiten";
+$a->strings["Contacts who are not members of a group"] = "Kontakte, die keiner Gruppe zugewiesen sind";
+$a->strings["Permission denied"] = "Zugriff verweigert";
+$a->strings["Invalid profile identifier."] = "Ungültiger Profil-Bezeichner.";
+$a->strings["Profile Visibility Editor"] = "Editor für die Profil-Sichtbarkeit";
+$a->strings["Click on a contact to add or remove."] = "Klicke einen Kontakt an, um ihn hinzuzufügen oder zu entfernen";
+$a->strings["Visible To"] = "Sichtbar für";
+$a->strings["All Contacts (with secure profile access)"] = "Alle Kontakte (mit gesichertem Profilzugriff)";
+$a->strings["[Embedded content - reload page to view]"] = "[Eingebetteter Inhalt - Seite neu laden zum Betrachten]";
+$a->strings["Public access denied."] = "Öffentlicher Zugriff verweigert.";
+$a->strings["No contacts."] = "Keine Kontakte.";
+$a->strings["Access denied."] = "Zugriff verweigert.";
+$a->strings["Only logged in users are permitted to perform a probing."] = "Nur eingeloggten Benutzern ist das Untersuchen von Adressen gestattet.";
+$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Die maximale Anzahl täglicher Registrierungen auf dieser Seite wurde überschritten. Bitte versuche es morgen noch einmal.";
+$a->strings["Import"] = "Import";
+$a->strings["Move account"] = "Account umziehen";
+$a->strings["You can import an account from another Friendica server."] = "Du kannst einen Account von einem anderen Friendica Server importieren.";
+$a->strings["You need to export your account from the old server and upload it here. We will recreate your old account here with all your contacts. We will try also to inform your friends that you moved here."] = "Du musst Deinen Account vom alten Server exportieren und hier hochladen. Wir stellen Deinen alten Account mit all Deinen Kontakten wieder her. Wir werden auch versuchen all Deine Kontakte darüber zu informieren, dass Du hierher umgezogen bist.";
+$a->strings["This feature is experimental. We can't import contacts from the OStatus network (GNU Social/Statusnet) or from Diaspora"] = "Dieses Feature ist experimentell. Wir können keine Kontakte vom OStatus Netzwerk (GNU Social/Statusnet) oder von Diaspora importieren";
+$a->strings["Account file"] = "Account Datei";
+$a->strings["To export your account, go to \"Settings->Export your personal data\" and select \"Export account\""] = "Um Deinen Account zu exportieren, rufe \"Einstellungen -> Persönliche Daten exportieren\" auf und wähle \"Account exportieren\"";
+$a->strings["Not available."] = "Nicht verfügbar.";
+$a->strings["No results."] = "Keine Ergebnisse.";
+$a->strings["No friends to display."] = "Keine Kontakte zum Anzeigen.";
 $a->strings["The post was created"] = "Der Beitrag wurde angelegt";
 $a->strings["Access to this profile has been restricted."] = "Der Zugriff zu diesem Profil wurde eingeschränkt.";
 $a->strings["View"] = "Ansehen";
@@ -762,8 +851,6 @@ $a->strings["User not found"] = "Nutzer nicht gefunden";
 $a->strings["This calendar format is not supported"] = "Dieses Kalenderformat wird nicht unterstützt.";
 $a->strings["No exportable data found"] = "Keine exportierbaren Daten gefunden";
 $a->strings["calendar"] = "Kalender";
-$a->strings["No contacts in common."] = "Keine gemeinsamen Kontakte.";
-$a->strings["Common Friends"] = "Gemeinsame Kontakte";
 $a->strings["No such group"] = "Es gibt keine solche Gruppe";
 $a->strings["Group is empty"] = "Gruppe ist leer";
 $a->strings["Group: %s"] = "Gruppe: %s";
@@ -781,7 +868,6 @@ $a->strings["Share this"] = "Weitersagen";
 $a->strings["share"] = "Teilen";
 $a->strings["This is you"] = "Das bist Du";
 $a->strings["Comment"] = "Kommentar";
-$a->strings["Submit"] = "Senden";
 $a->strings["Bold"] = "Fett";
 $a->strings["Italic"] = "Kursiv";
 $a->strings["Underline"] = "Unterstrichen";
@@ -807,38 +893,6 @@ $a->strings["I might attend"] = "Ich werde eventuell teilnehmen";
 $a->strings["to"] = "zu";
 $a->strings["Wall-to-Wall"] = "Wall-to-Wall";
 $a->strings["via Wall-To-Wall:"] = "via Wall-To-Wall:";
-$a->strings["Credits"] = "Credits";
-$a->strings["Friendica is a community project, that would not be possible without the help of many people. Here is a list of those who have contributed to the code or the translation of Friendica. Thank you all!"] = "Friendica ist ein Gemeinschaftsprojekt, das nicht ohne die Hilfe vieler Personen möglich wäre. Hier ist eine Aufzählung der Personen, die zum Code oder der Übersetzung beigetragen haben. Dank an alle !";
-$a->strings["Contact settings applied."] = "Einstellungen zum Kontakt angewandt.";
-$a->strings["Contact update failed."] = "Konnte den Kontakt nicht aktualisieren.";
-$a->strings["Contact not found."] = "Kontakt nicht gefunden.";
-$a->strings["<strong>WARNING: This is highly advanced</strong> and if you enter incorrect information your communications with this contact may stop working."] = "<strong>ACHTUNG: Das sind Experten-Einstellungen!</strong> Wenn Du etwas Falsches eingibst, funktioniert die Kommunikation mit diesem Kontakt evtl. nicht mehr.";
-$a->strings["Please use your browser 'Back' button <strong>now</strong> if you are uncertain what to do on this page."] = "Bitte nutze den Zurück-Button Deines Browsers <strong>jetzt</strong>, wenn Du Dir unsicher bist, was Du tun willst.";
-$a->strings["No mirroring"] = "Kein Spiegeln";
-$a->strings["Mirror as forwarded posting"] = "Spiegeln als weitergeleitete Beiträge";
-$a->strings["Mirror as my own posting"] = "Spiegeln als meine eigenen Beiträge";
-$a->strings["Return to contact editor"] = "Zurück zum Kontakteditor";
-$a->strings["Refetch contact data"] = "Kontaktdaten neu laden";
-$a->strings["Remote Self"] = "Entfernte Konten";
-$a->strings["Mirror postings from this contact"] = "Spiegle Beiträge dieses Kontakts";
-$a->strings["Mark this contact as remote_self, this will cause friendica to repost new entries from this contact."] = "Markiere diesen Kontakt als remote_self (entferntes Konto), dies veranlasst Friendica alle Top-Level Beiträge dieses Kontakts an all Deine Kontakte zu senden.";
-$a->strings["Name"] = "Name";
-$a->strings["Account Nickname"] = "Konto-Spitzname";
-$a->strings["@Tagname - overrides Name/Nickname"] = "@Tagname - überschreibt Name/Spitzname";
-$a->strings["Account URL"] = "Konto-URL";
-$a->strings["Friend Request URL"] = "URL für Kontaktschaftsanfragen";
-$a->strings["Friend Confirm URL"] = "URL für Bestätigungen von Kontaktanfragen";
-$a->strings["Notification Endpoint URL"] = "URL-Endpunkt für Benachrichtigungen";
-$a->strings["Poll/Feed URL"] = "Pull/Feed-URL";
-$a->strings["New photo from this URL"] = "Neues Foto von dieser URL";
-$a->strings["No potential page delegates located."] = "Keine potentiellen Bevollmächtigten für die Seite gefunden.";
-$a->strings["Delegates are able to manage all aspects of this account/page except for basic account settings. Please do not delegate your personal account to anybody that you do not trust completely."] = "Bevollmächtigte sind in der Lage, alle Aspekte dieses Kontos/dieser Seite zu verwalten, abgesehen von den Grundeinstellungen des Kontos. Bitte gib niemandem eine Bevollmächtigung für Deinen privaten Account, dem Du nicht absolut vertraust!";
-$a->strings["Existing Page Managers"] = "Vorhandene Seitenmanager";
-$a->strings["Existing Page Delegates"] = "Vorhandene Bevollmächtigte für die Seite";
-$a->strings["Potential Delegates"] = "Potentielle Bevollmächtigte";
-$a->strings["Remove"] = "Entfernen";
-$a->strings["Add"] = "Hinzufügen";
-$a->strings["No entries."] = "Keine Einträge.";
 $a->strings["Profile not found."] = "Profil nicht gefunden.";
 $a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = "Das kann passieren, wenn sich zwei Kontakte gegenseitig eingeladen haben und bereits einer angenommen wurde.";
 $a->strings["Response from remote site was not understood."] = "Antwort der Gegenstelle unverständlich.";
@@ -857,16 +911,79 @@ $a->strings["The ID provided by your system is a duplicate on our system. It sho
 $a->strings["Unable to set your contact credentials on our system."] = "Deine Kontaktreferenzen konnten nicht in unserem System gespeichert werden.";
 $a->strings["Unable to update your contact profile details on our system"] = "Die Updates für Dein Profil konnten nicht gespeichert werden";
 $a->strings["%1\$s has joined %2\$s"] = "%1\$s ist %2\$s beigetreten";
-$a->strings["Public access denied."] = "Öffentlicher Zugriff verweigert.";
+$a->strings["%1\$s welcomes %2\$s"] = "%1\$s heißt %2\$s herzlich willkommen";
+$a->strings["This introduction has already been accepted."] = "Diese Kontaktanfrage wurde bereits akzeptiert.";
+$a->strings["Profile location is not valid or does not contain profile information."] = "Profiladresse ist ungültig oder stellt keine Profildaten zur Verfügung.";
+$a->strings["Warning: profile location has no identifiable owner name."] = "Warnung: Es konnte kein Name des Besitzers von der angegebenen Profiladresse gefunden werden.";
+$a->strings["Warning: profile location has no profile photo."] = "Warnung: Es gibt kein Profilbild bei der angegebenen Profiladresse.";
+$a->strings["%d required parameter was not found at the given location"] = array(
+       0 => "%d benötigter Parameter wurde an der angegebenen Stelle nicht gefunden",
+       1 => "%d benötigte Parameter wurden an der angegebenen Stelle nicht gefunden",
+);
+$a->strings["Introduction complete."] = "Kontaktanfrage abgeschlossen.";
+$a->strings["Unrecoverable protocol error."] = "Nicht behebbarer Protokollfehler.";
+$a->strings["Profile unavailable."] = "Profil nicht verfügbar.";
+$a->strings["%s has received too many connection requests today."] = "%s hat heute zu viele Kontaktanfragen erhalten.";
+$a->strings["Spam protection measures have been invoked."] = "Maßnahmen zum Spamschutz wurden ergriffen.";
+$a->strings["Friends are advised to please try again in 24 hours."] = "Freunde sind angehalten, es in 24 Stunden erneut zu versuchen.";
+$a->strings["Invalid locator"] = "Ungültiger Locator";
+$a->strings["Invalid email address."] = "Ungültige E-Mail-Adresse.";
+$a->strings["This account has not been configured for email. Request failed."] = "Dieses Konto ist nicht für E-Mail konfiguriert. Anfrage fehlgeschlagen.";
+$a->strings["You have already introduced yourself here."] = "Du hast Dich hier bereits vorgestellt.";
+$a->strings["Apparently you are already friends with %s."] = "Es scheint so, als ob Du bereits mit %s in Kontakt stehst.";
+$a->strings["Invalid profile URL."] = "Ungültige Profil-URL.";
+$a->strings["Failed to update contact record."] = "Aktualisierung der Kontaktdaten fehlgeschlagen.";
+$a->strings["Your introduction has been sent."] = "Deine Kontaktanfrage wurde gesendet.";
+$a->strings["Remote subscription can't be done for your network. Please subscribe directly on your system."] = "Entferntes abon­nie­ren kann für dein Netzwerk nicht durchgeführt werden. Bitte nutze direkt die Abonnieren-Funktion deines Systems.   ";
+$a->strings["Please login to confirm introduction."] = "Bitte melde Dich an, um die Kontaktanfrage zu bestätigen.";
+$a->strings["Incorrect identity currently logged in. Please login to <strong>this</strong> profile."] = "Momentan bist Du mit einer anderen Identität angemeldet. Bitte melde Dich mit <strong>diesem</strong> Profil an.";
+$a->strings["Confirm"] = "Bestätigen";
+$a->strings["Hide this contact"] = "Verberge diesen Kontakt";
+$a->strings["Welcome home %s."] = "Willkommen zurück %s.";
+$a->strings["Please confirm your introduction/connection request to %s."] = "Bitte bestätige Deine Kontaktanfrage bei %s.";
+$a->strings["Please enter your 'Identity Address' from one of the following supported communications networks:"] = "Bitte gib die Adresse Deines Profils in einem der unterstützten sozialen Netzwerke an:";
+$a->strings["If you are not yet a member of the free social web, <a href=\"%s/siteinfo\">follow this link to find a public Friendica site and join us today</a>."] = "Wenn du noch kein Mitglied dieses freien sozialen Netzwerks bist, <a href=\"%s/siteinfo\">folge diesem Link</a> um einen öffentlichen Friendica-Server zu finden und beizutreten.";
+$a->strings["Friend/Connection Request"] = "Kontaktanfrage";
+$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"] = "Beispiele: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca";
+$a->strings["Please answer the following:"] = "Bitte beantworte folgendes:";
+$a->strings["Does %s know you?"] = "Kennt %s Dich?";
+$a->strings["Add a personal note:"] = "Eine persönliche Notiz beifügen:";
+$a->strings["StatusNet/Federated Social Web"] = "StatusNet/Federated Social Web";
+$a->strings[" - please do not use this form.  Instead, enter %s into your Diaspora search bar."] = " - bitte verwende dieses Formular nicht. Stattdessen suche nach %s in Deiner Diaspora Suchleiste.";
+$a->strings["Your Identity Address:"] = "Adresse Deines Profils:";
+$a->strings["Submit Request"] = "Anfrage abschicken";
 $a->strings["Global Directory"] = "Weltweites Verzeichnis";
 $a->strings["Find on this site"] = "Auf diesem Server suchen";
 $a->strings["Results for:"] = "Ergebnisse für:";
 $a->strings["Site Directory"] = "Verzeichnis";
 $a->strings["No entries (some entries may be hidden)."] = "Keine Einträge (einige Einträge könnten versteckt sein).";
+$a->strings["People Search - %s"] = "Personensuche - %s";
+$a->strings["Forum Search - %s"] = "Forensuche - %s";
+$a->strings["No matches"] = "Keine Übereinstimmungen";
 $a->strings["Item not found"] = "Beitrag nicht gefunden";
 $a->strings["Edit post"] = "Beitrag bearbeiten";
-$a->strings["Files"] = "Dateien";
-$a->strings["- select -"] = "- auswählen -";
+$a->strings["Event can not end before it has started."] = "Die Veranstaltung kann nicht enden bevor sie beginnt.";
+$a->strings["Event title and start time are required."] = "Der Veranstaltungstitel und die Anfangszeit müssen angegeben werden.";
+$a->strings["Create New Event"] = "Neue Veranstaltung erstellen";
+$a->strings["Event details"] = "Veranstaltungsdetails";
+$a->strings["Starting date and Title are required."] = "Anfangszeitpunkt und Titel werden benötigt";
+$a->strings["Event Starts:"] = "Veranstaltungsbeginn:";
+$a->strings["Required"] = "Benötigt";
+$a->strings["Finish date/time is not known or not relevant"] = "Enddatum/-zeit ist nicht bekannt oder nicht relevant";
+$a->strings["Event Finishes:"] = "Veranstaltungsende:";
+$a->strings["Adjust for viewer timezone"] = "An Zeitzone des Betrachters anpassen";
+$a->strings["Description:"] = "Beschreibung";
+$a->strings["Title:"] = "Titel:";
+$a->strings["Share this event"] = "Veranstaltung teilen";
+$a->strings["Failed to remove event"] = "Entfernen der Veranstaltung fehlgeschlagen";
+$a->strings["Event removed"] = "Veranstaltung enfternt";
+$a->strings["Not Found"] = "Nicht gefunden";
+$a->strings["Contact added"] = "Kontakt hinzugefügt";
+$a->strings["You already added this contact."] = "Du hast den Kontakt bereits hinzugefügt.";
+$a->strings["Diaspora support isn't enabled. Contact can't be added."] = "Diaspora Unterstützung ist nicht aktiviert. Der Kontakt kann nicht zugefügt werden.";
+$a->strings["OStatus support is disabled. Contact can't be added."] = "OStatus Unterstützung ist nicht aktiviert. Der Kontakt kann nicht zugefügt werden.";
+$a->strings["The network type couldn't be detected. Contact can't be added."] = "Der Netzwerktype wurde nicht erkannt. Der Kontakt kann nicht hinzugefügt werden.";
+$a->strings["Profile URL"] = "Profil URL";
 $a->strings["This is Friendica, version"] = "Dies ist Friendica, Version";
 $a->strings["running at web location"] = "die unter folgender Webadresse zu finden ist";
 $a->strings["Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn more about the Friendica project."] = "Bitte besuche <a href=\"http://friendica.com\">Friendica.com</a>, um mehr über das Friendica Projekt zu erfahren.";
@@ -877,14 +994,10 @@ $a->strings["Installed plugins/addons/apps:"] = "Installierte Plugins/Erweiterun
 $a->strings["No installed plugins/addons/apps"] = "Keine Plugins/Erweiterungen/Apps installiert";
 $a->strings["On this server the following remote servers are blocked."] = "Auf diesem Server werden die folgenden entfernten Server blockiert.";
 $a->strings["Reason for the block"] = "Begründung für die Blockierung";
-$a->strings["Friend suggestion sent."] = "Kontaktvorschlag gesendet.";
-$a->strings["Suggest Friends"] = "Kontakte vorschlagen";
-$a->strings["Suggest a friend for %s"] = "Schlage %s einen Kontakt vor";
 $a->strings["Group created."] = "Gruppe erstellt.";
 $a->strings["Could not create group."] = "Konnte die Gruppe nicht erstellen.";
 $a->strings["Group not found."] = "Gruppe nicht gefunden.";
 $a->strings["Group name changed."] = "Gruppenname geändert.";
-$a->strings["Permission denied"] = "Zugriff verweigert";
 $a->strings["Save Group"] = "Gruppe speichern";
 $a->strings["Create a group of contacts/friends."] = "Eine Kontaktgruppe anlegen.";
 $a->strings["Group removed."] = "Gruppe entfernt.";
@@ -896,8 +1009,9 @@ $a->strings["Members"] = "Mitglieder";
 $a->strings["All Contacts"] = "Alle Kontakte";
 $a->strings["Remove Contact"] = "Kontakt löschen";
 $a->strings["Add Contact"] = "Kontakt hinzufügen";
-$a->strings["Click on a contact to add or remove."] = "Klicke einen Kontakt an, um ihn hinzuzufügen oder zu entfernen";
 $a->strings["No profile"] = "Kein Profil";
+$a->strings["Help:"] = "Hilfe:";
+$a->strings["Page not found."] = "Seite nicht gefunden.";
 $a->strings["Welcome to %s"] = "Willkommen zu %s";
 $a->strings["Friendica Communications Server - Setup"] = "Friendica-Server für soziale Netzwerke – Setup";
 $a->strings["Could not connect to database."] = "Verbindung zur Datenbank gescheitert.";
@@ -972,14 +1086,42 @@ $a->strings["ImageMagick supports GIF"] = "ImageMagick unterstützt GIF";
 $a->strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = "Die Konfigurationsdatei \".htconfig.php\" konnte nicht angelegt werden. Bitte verwende den angefügten Text, um die Datei im Stammverzeichnis Deiner Friendica-Installation zu erzeugen.";
 $a->strings["<h1>What next</h1>"] = "<h1>Wie geht es weiter?</h1>";
 $a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "WICHTIG: Du musst [manuell] einen Cronjob (o.ä.) für den Poller einrichten.";
+$a->strings["Total invitation limit exceeded."] = "Limit für Einladungen erreicht.";
+$a->strings["%s : Not a valid email address."] = "%s: Keine gültige Email Adresse.";
+$a->strings["Please join us on Friendica"] = "Ich lade Dich zu unserem sozialen Netzwerk Friendica ein";
+$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Limit für Einladungen erreicht. Bitte kontaktiere des Administrator der Seite.";
+$a->strings["%s : Message delivery failed."] = "%s: Zustellung der Nachricht fehlgeschlagen.";
+$a->strings["%d message sent."] = array(
+       0 => "%d Nachricht gesendet.",
+       1 => "%d Nachrichten gesendet.",
+);
+$a->strings["You have no more invitations available"] = "Du hast keine weiteren Einladungen";
+$a->strings["Visit %s for a list of public sites that you can join. Friendica members on other sites can all connect with each other, as well as with members of many other social networks."] = "Besuche %s für eine Liste der öffentlichen Server, denen Du beitreten kannst. Friendica Mitglieder unterschiedlicher Server können sich sowohl alle miteinander verbinden, als auch mit Mitgliedern anderer Sozialer Netzwerke.";
+$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = "Um diese Kontaktanfrage zu akzeptieren, besuche und registriere Dich bitte bei %s oder einer anderen öffentlichen Friendica Website.";
+$a->strings["Friendica sites all inter-connect to create a huge privacy-enhanced social web that is owned and controlled by its members. They can also connect with many traditional social networks. See %s for a list of alternate Friendica sites you can join."] = "Friendica Server verbinden sich alle untereinander, um ein großes datenschutzorientiertes Soziales Netzwerk zu bilden, das von seinen Mitgliedern betrieben und kontrolliert wird. Sie können sich auch mit vielen üblichen Sozialen Netzwerken verbinden. Besuche %s für eine Liste alternativer Friendica Server, denen Du beitreten kannst.";
+$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = "Es tut uns leid. Dieses System ist zurzeit nicht dafür konfiguriert, sich mit anderen öffentlichen Seiten zu verbinden oder Mitglieder einzuladen.";
+$a->strings["To accept this invitation, please visit and register at %s."] = "Um diese Kontaktanfrage zu akzeptieren, besuche und registriere Dich bitte bei %s.";
+$a->strings["Friendica sites all inter-connect to create a huge privacy-enhanced social web that is owned and controlled by its members. They can also connect with many traditional social networks."] = "Friendica Server verbinden sich alle untereinander, um ein großes datenschutzorientiertes Soziales Netzwerk zu bilden, das von seinen Mitgliedern betrieben und kontrolliert wird. Sie können sich auch mit vielen üblichen Sozialen Netzwerken verbinden.";
+$a->strings["Send invitations"] = "Einladungen senden";
+$a->strings["Enter email addresses, one per line:"] = "E-Mail-Adressen eingeben, eine pro Zeile:";
+$a->strings["Your message:"] = "Deine Nachricht:";
+$a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = "Du bist herzlich dazu eingeladen, Dich mir und anderen guten Freunden auf Friendica anzuschließen - und ein besseres Soziales Netz aufzubauen.";
+$a->strings["You will need to supply this invitation code: \$invite_code"] = "Du benötigst den folgenden Einladungscode: \$invite_code";
+$a->strings["Once you have registered, please connect with me via my profile page at:"] = "Sobald Du registriert bist, kontaktiere mich bitte auf meiner Profilseite:";
+$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendi.ca"] = "Für weitere Informationen über das Friendica Projekt und warum wir es für ein wichtiges Projekt halten, besuche bitte http://friendi.ca.";
+$a->strings["Unable to locate original post."] = "Konnte den Originalbeitrag nicht finden.";
+$a->strings["Empty post discarded."] = "Leerer Beitrag wurde verworfen.";
+$a->strings["System error. Post not saved."] = "Systemfehler. Beitrag konnte nicht gespeichert werden.";
+$a->strings["This message was sent to you by %s, a member of the Friendica social network."] = "Diese Nachricht wurde dir von %s geschickt, einem Mitglied des Sozialen Netzwerks Friendica.";
+$a->strings["You may visit them online at %s"] = "Du kannst sie online unter %s besuchen";
+$a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "Falls Du diese Beiträge nicht erhalten möchtest, kontaktiere bitte den Autor, indem Du auf diese Nachricht antwortest.";
+$a->strings["%s posted an update."] = "%s hat ein Update veröffentlicht.";
 $a->strings["Time Conversion"] = "Zeitumrechnung";
 $a->strings["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = "Friendica bietet diese Funktion an, um das Teilen von Events mit Kontakten zu vereinfachen, deren Zeitzone nicht ermittelt werden kann.";
 $a->strings["UTC time: %s"] = "UTC Zeit: %s";
 $a->strings["Current timezone: %s"] = "Aktuelle Zeitzone: %s";
 $a->strings["Converted localtime: %s"] = "Umgerechnete lokale Zeit: %s";
 $a->strings["Please select your timezone:"] = "Bitte wähle Deine Zeitzone:";
-$a->strings["Remote privacy information not available."] = "Entfernte Privatsphäreneinstellungen nicht verfügbar.";
-$a->strings["Visible to:"] = "Sichtbar für:";
 $a->strings["No valid account found."] = "Kein gültiges Konto gefunden.";
 $a->strings["Password reset request issued. Check your email."] = "Zurücksetzen des Passworts eingeleitet. Bitte überprüfe Deine E-Mail.";
 $a->strings["\n\t\tDear %1\$s,\n\t\t\tA request was recently received at \"%2\$s\" to reset your account\n\t\tpassword. In order to confirm this request, please select the verification link\n\t\tbelow or paste it into your web browser address bar.\n\n\t\tIf you did NOT request this change, please DO NOT follow the link\n\t\tprovided and ignore and/or delete this email.\n\n\t\tYour password will not be changed unless we can verify that you\n\t\tissued this request."] = "\nHallo %1\$s,\n\nAuf \"%2\$s\" ist eine Anfrage auf das Zurücksetzen Deines Passworts gestellt\nworden. Um diese Anfrage zu verifizieren, folge bitte dem unten stehenden\nLink oder kopiere und füge ihn in die Adressleiste Deines Browsers ein.\n\nSolltest Du die Anfrage NICHT gemacht haben, ignoriere und/oder lösche diese\nE-Mail bitte.\n\nDein Passwort wird nicht geändert, solange wir nicht verifiziert haben, dass\nDu diese Änderung angefragt hast.";
@@ -999,14 +1141,12 @@ $a->strings["Forgot your Password?"] = "Hast Du Dein Passwort vergessen?";
 $a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Gib Deine E-Mail-Adresse an und fordere ein neues Passwort an. Es werden Dir dann weitere Informationen per Mail zugesendet.";
 $a->strings["Nickname or Email: "] = "Spitzname oder E-Mail:";
 $a->strings["Reset"] = "Zurücksetzen";
-$a->strings["System down for maintenance"] = "System zur Wartung abgeschaltet";
 $a->strings["Manage Identities and/or Pages"] = "Verwalte Identitäten und/oder Seiten";
 $a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "Zwischen verschiedenen Identitäten oder Gemeinschafts-/Gruppenseiten wechseln, die Deine Kontoinformationen teilen oder zu denen Du „Verwalten“-Befugnisse bekommen hast.";
 $a->strings["Select an identity to manage: "] = "Wähle eine Identität zum Verwalten aus: ";
 $a->strings["No keywords to match. Please add keywords to your default profile."] = "Keine Schlüsselwörter zum Abgleichen gefunden. Bitte füge einige Schlüsselwörter zu Deinem Standardprofil hinzu.";
 $a->strings["is interested in:"] = "ist interessiert an:";
 $a->strings["Profile Match"] = "Profilübereinstimmungen";
-$a->strings["No matches"] = "Keine Übereinstimmungen";
 $a->strings["No recipient selected."] = "Kein Empfänger gewählt.";
 $a->strings["Unable to locate contact information."] = "Konnte die Kontaktinformationen nicht finden.";
 $a->strings["Message could not be sent."] = "Nachricht konnte nicht gesendet werden.";
@@ -1018,57 +1158,41 @@ $a->strings["Conversation removed."] = "Unterhaltung gelöscht.";
 $a->strings["Send Private Message"] = "Private Nachricht senden";
 $a->strings["To:"] = "An:";
 $a->strings["Subject:"] = "Betreff:";
-$a->strings["Your message:"] = "Deine Nachricht:";
 $a->strings["No messages."] = "Keine Nachrichten.";
 $a->strings["Message not available."] = "Nachricht nicht verfügbar.";
 $a->strings["Delete message"] = "Nachricht löschen";
 $a->strings["Delete conversation"] = "Unterhaltung löschen";
 $a->strings["No secure communications available. You <strong>may</strong> be able to respond from the sender's profile page."] = "Sichere Kommunikation ist nicht verfügbar. <strong>Eventuell</strong> kannst Du auf der Profilseite des Absenders antworten.";
-$a->strings["Send Reply"] = "Antwort senden";
-$a->strings["Unknown sender - %s"] = "'Unbekannter Absender - %s";
-$a->strings["You and %s"] = "Du und %s";
-$a->strings["%s and You"] = "%s und Du";
-$a->strings["D, d M Y - g:i A"] = "D, d. M Y - g:i A";
-$a->strings["%d message"] = array(
-       0 => "%d Nachricht",
-       1 => "%d Nachrichten",
-);
-$a->strings["Mood"] = "Stimmung";
-$a->strings["Set your current mood and tell your friends"] = "Wähle Deine aktuelle Stimmung und erzähle sie Deinen Kontakten";
-$a->strings["Welcome to Friendica"] = "Willkommen bei Friendica";
-$a->strings["New Member Checklist"] = "Checkliste für neue Mitglieder";
-$a->strings["We would like to offer some tips and links to help make your experience enjoyable. Click any item to visit the relevant page. A link to this page will be visible from your home page for two weeks after your initial registration and then will quietly disappear."] = "Wir möchten Dir einige Tipps und Links anbieten, die Dir helfen könnten, den Einstieg angenehmer zu machen. Klicke auf ein Element, um die entsprechende Seite zu besuchen. Ein Link zu dieser Seite hier bleibt für Dich an Deiner Pinnwand für zwei Wochen nach dem Registrierungsdatum sichtbar und wird dann verschwinden.";
-$a->strings["Getting Started"] = "Einstieg";
-$a->strings["Friendica Walk-Through"] = "Friendica Rundgang";
-$a->strings["On your <em>Quick Start</em> page - find a brief introduction to your profile and network tabs, make some new connections, and find some groups to join."] = "Auf der <em>Quick Start</em> Seite findest Du eine kurze Einleitung in die einzelnen Funktionen Deines Profils und die Netzwerk-Reiter, wo Du interessante Foren findest und neue Kontakte knüpfst.";
-$a->strings["Go to Your Settings"] = "Gehe zu deinen Einstellungen";
-$a->strings["On your <em>Settings</em> page -  change your initial password. Also make a note of your Identity Address. This looks just like an email address - and will be useful in making friends on the free social web."] = "Ändere bitte unter <em>Einstellungen</em> dein Passwort. Außerdem merke dir deine Identifikationsadresse. Diese sieht aus wie eine E-Mail-Adresse und wird benötigt, um Kontakte mit anderen im Friendica Netzwerk zu knüpfen..";
-$a->strings["Review the other settings, particularly the privacy settings. An unpublished directory listing is like having an unlisted phone number. In general, you should probably publish your listing - unless all of your friends and potential friends know exactly how to find you."] = "Überprüfe die restlichen Einstellungen, insbesondere die Einstellungen zur Privatsphäre. Wenn Du Dein Profil nicht veröffentlichst, ist das als wenn Du Deine Telefonnummer nicht ins Telefonbuch einträgst. Im Allgemeinen solltest Du es veröffentlichen - außer all Deine Kontakte und potentiellen Kontakte wissen genau, wie sie Dich finden können.";
-$a->strings["Upload Profile Photo"] = "Profilbild hochladen";
-$a->strings["Upload a profile photo if you have not done so already. Studies have shown that people with real photos of themselves are ten times more likely to make friends than people who do not."] = "Lade ein Profilbild hoch, falls Du es noch nicht getan hast. Studien haben gezeigt, dass es zehnmal wahrscheinlicher ist neue Kontakte zu finden, wenn Du ein Bild von Dir selbst verwendest, als wenn Du dies nicht tust.";
-$a->strings["Edit Your Profile"] = "Editiere dein Profil";
-$a->strings["Edit your <strong>default</strong> profile to your liking. Review the settings for hiding your list of friends and hiding the profile from unknown visitors."] = "Editiere Dein <strong>Standard</strong> Profil nach Deinen Vorlieben. Überprüfe die Einstellungen zum Verbergen Deiner Kontaktliste vor unbekannten Betrachtern des Profils.";
-$a->strings["Profile Keywords"] = "Profil Schlüsselbegriffe";
-$a->strings["Set some public keywords for your default profile which describe your interests. We may be able to find other people with similar interests and suggest friendships."] = "Trage ein paar öffentliche Stichwörter in Dein Standardprofil ein, die Deine Interessen beschreiben. Eventuell sind wir in der Lage Leute zu finden, die Deine Interessen teilen und können Dir dann Kontakte vorschlagen.";
-$a->strings["Connecting"] = "Verbindungen knüpfen";
-$a->strings["Importing Emails"] = "Emails Importieren";
-$a->strings["Enter your email access information on your Connector Settings page if you wish to import and interact with friends or mailing lists from your email INBOX"] = "Gib Deine E-Mail-Zugangsinformationen auf der Connector-Einstellungsseite ein, falls Du E-Mails aus Deinem Posteingang importieren und mit Kontakten und Mailinglisten interagieren willst.";
-$a->strings["Go to Your Contacts Page"] = "Gehe zu deiner Kontakt-Seite";
-$a->strings["Your Contacts page is your gateway to managing friendships and connecting with friends on other networks. Typically you enter their address or site URL in the <em>Add New Contact</em> dialog."] = "Die Kontakte-Seite ist die Einstiegsseite, von der aus Du Kontakte verwalten und Dich mit Personen in anderen Netzwerken verbinden kannst. Normalerweise gibst Du dazu einfach ihre Adresse oder die URL der Seite im Kasten <em>Neuen Kontakt hinzufügen</em> ein.";
-$a->strings["Go to Your Site's Directory"] = "Gehe zum Verzeichnis Deiner Friendica Instanz";
-$a->strings["The Directory page lets you find other people in this network or other federated sites. Look for a <em>Connect</em> or <em>Follow</em> link on their profile page. Provide your own Identity Address if requested."] = "Über die Verzeichnisseite kannst Du andere Personen auf diesem Server oder anderen verknüpften Seiten finden. Halte nach einem <em>Verbinden</em> oder <em>Folgen</em> Link auf deren Profilseiten Ausschau und gib Deine eigene Profiladresse an, falls Du danach gefragt wirst.";
-$a->strings["Finding New People"] = "Neue Leute kennenlernen";
-$a->strings["On the side panel of the Contacts page are several tools to find new friends. We can match people by interest, look up people by name or interest, and provide suggestions based on network relationships. On a brand new site, friend suggestions will usually begin to be populated within 24 hours."] = "Im seitlichen Bedienfeld der Kontakteseite gibt es diverse Werkzeuge, um neue Personen zu finden. Wir können Menschen mit den gleichen Interessen finden, anhand von Namen oder Interessen suchen oder aber aufgrund vorhandener Kontakte neue Leute vorschlagen.\nAuf einer brandneuen - soeben erstellten - Seite starten die Kontaktvorschläge innerhalb von 24 Stunden.";
-$a->strings["Group Your Contacts"] = "Gruppiere deine Kontakte";
-$a->strings["Once you have made some friends, organize them into private conversation groups from the sidebar of your Contacts page and then you can interact with each group privately on your Network page."] = "Sobald Du einige Kontakte gefunden hast, organisiere sie in Gruppen zur privaten Kommunikation im Seitenmenü der Kontakte-Seite. Du kannst dann mit jeder dieser Gruppen von der Netzwerkseite aus privat interagieren.";
-$a->strings["Why Aren't My Posts Public?"] = "Warum sind meine Beiträge nicht öffentlich?";
-$a->strings["Friendica respects your privacy. By default, your posts will only show up to people you've added as friends. For more information, see the help section from the link above."] = "Friendica respektiert Deine Privatsphäre. Mit der Grundeinstellung werden Deine Beiträge ausschließlich Deinen Kontakten angezeigt. Für weitere Informationen diesbezüglich lies Dir bitte den entsprechenden Abschnitt in der Hilfe unter dem obigen Link durch.";
-$a->strings["Getting Help"] = "Hilfe bekommen";
-$a->strings["Go to the Help Section"] = "Zum Hilfe Abschnitt gehen";
-$a->strings["Our <strong>help</strong> pages may be consulted for detail on other program features and resources."] = "Unsere <strong>Hilfe</strong> Seiten können herangezogen werden, um weitere Einzelheiten zu andern Programm Features zu erhalten.";
-$a->strings["Visit %s's profile [%s]"] = "Besuche %ss Profil [%s]";
-$a->strings["Edit contact"] = "Kontakt bearbeiten";
-$a->strings["Contacts who are not members of a group"] = "Kontakte, die keiner Gruppe zugewiesen sind";
+$a->strings["Send Reply"] = "Antwort senden";
+$a->strings["Unknown sender - %s"] = "'Unbekannter Absender - %s";
+$a->strings["You and %s"] = "Du und %s";
+$a->strings["%s and You"] = "%s und Du";
+$a->strings["D, d M Y - g:i A"] = "D, d. M Y - g:i A";
+$a->strings["%d message"] = array(
+       0 => "%d Nachricht",
+       1 => "%d Nachrichten",
+);
+$a->strings["Mood"] = "Stimmung";
+$a->strings["Set your current mood and tell your friends"] = "Wähle Deine aktuelle Stimmung und erzähle sie Deinen Kontakten";
+$a->strings["Remove term"] = "Begriff entfernen";
+$a->strings["Warning: This group contains %s member from a network that doesn't allow non public messages."] = array(
+       0 => "Warnung: Diese Gruppe beinhaltet %s Person aus einem Netzwerk das keine nicht öffentlichen Beiträge empfangen kann.",
+       1 => "Warnung: Diese Gruppe beinhaltet %s Personen aus Netzwerken die keine nicht-öffentlichen Beiträge empfangen können.",
+);
+$a->strings["Messages in this group won't be send to these receivers."] = "Beiträge in dieser Gruppe werden deshalb nicht an diese Personen zugestellt werden.";
+$a->strings["Private messages to this person are at risk of public disclosure."] = "Private Nachrichten an diese Person könnten an die Öffentlichkeit gelangen.";
+$a->strings["Invalid contact."] = "Ungültiger Kontakt.";
+$a->strings["Commented Order"] = "Neueste Kommentare";
+$a->strings["Sort by Comment Date"] = "Nach Kommentardatum sortieren";
+$a->strings["Posted Order"] = "Neueste Beiträge";
+$a->strings["Sort by Post Date"] = "Nach Beitragsdatum sortieren";
+$a->strings["Posts that mention or involve you"] = "Beiträge, in denen es um Dich geht";
+$a->strings["New"] = "Neue";
+$a->strings["Activity Stream - by date"] = "Aktivitäten-Stream - nach Datum";
+$a->strings["Shared Links"] = "Geteilte Links";
+$a->strings["Interesting Links"] = "Interessante Links";
+$a->strings["Starred"] = "Markierte";
+$a->strings["Favourite Posts"] = "Favorisierte Beiträge";
 $a->strings["Invalid request identifier."] = "Invalid request identifier.";
 $a->strings["Discard"] = "Verwerfen";
 $a->strings["Ignore"] = "Ignorieren";
@@ -1094,7 +1218,6 @@ $a->strings["Accepting %s as a sharer allows them to subscribe to your posts, bu
 $a->strings["Friend"] = "Kontakt";
 $a->strings["Sharer"] = "Teilenden";
 $a->strings["Subscriber"] = "Abonnent";
-$a->strings["Profile URL"] = "Profil URL";
 $a->strings["No introductions."] = "Keine Kontaktanfragen.";
 $a->strings["Show unread"] = "Ungelesene anzeigen";
 $a->strings["Show all"] = "Alle anzeigen";
@@ -1112,7 +1235,89 @@ $a->strings["success"] = "Erfolg";
 $a->strings["failed"] = "Fehlgeschlagen";
 $a->strings["Keep this window open until done."] = "Lasse dieses Fenster offen, bis der Vorgang abgeschlossen ist.";
 $a->strings["Not Extended"] = "Nicht erweitert.";
-$a->strings["Not Found"] = "Nicht gefunden";
+$a->strings["Poke/Prod"] = "Anstupsen";
+$a->strings["poke, prod or do other things to somebody"] = "Stupse Leute an oder mache anderes mit ihnen";
+$a->strings["Recipient"] = "Empfänger";
+$a->strings["Choose what you wish to do to recipient"] = "Was willst Du mit dem Empfänger machen:";
+$a->strings["Make this post private"] = "Diesen Beitrag privat machen";
+$a->strings["Tips for New Members"] = "Tipps für neue Nutzer";
+$a->strings["Image uploaded but image cropping failed."] = "Bild hochgeladen, aber das Zuschneiden schlug fehl.";
+$a->strings["Image size reduction [%s] failed."] = "Verkleinern der Bildgröße von [%s] scheiterte.";
+$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Drücke Umschalt+Neu Laden oder leere den Browser-Cache, falls das neue Foto nicht gleich angezeigt wird.";
+$a->strings["Unable to process image"] = "Bild konnte nicht verarbeitet werden";
+$a->strings["Image exceeds size limit of %s"] = "Bildgröße überschreitet das Limit von %s";
+$a->strings["Unable to process image."] = "Konnte das Bild nicht bearbeiten.";
+$a->strings["Upload File:"] = "Datei hochladen:";
+$a->strings["Select a profile:"] = "Profil auswählen:";
+$a->strings["Upload"] = "Hochladen";
+$a->strings["or"] = "oder";
+$a->strings["skip this step"] = "diesen Schritt überspringen";
+$a->strings["select a photo from your photo albums"] = "wähle ein Foto aus deinen Fotoalben";
+$a->strings["Crop Image"] = "Bild zurechtschneiden";
+$a->strings["Please adjust the image cropping for optimum viewing."] = "Passe bitte den Bildausschnitt an, damit das Bild optimal dargestellt werden kann.";
+$a->strings["Done Editing"] = "Bearbeitung abgeschlossen";
+$a->strings["Image uploaded successfully."] = "Bild erfolgreich hochgeladen.";
+$a->strings["Image upload failed."] = "Hochladen des Bildes gescheitert.";
+$a->strings["Registration successful. Please check your email for further instructions."] = "Registrierung erfolgreich. Eine E-Mail mit weiteren Anweisungen wurde an Dich gesendet.";
+$a->strings["Failed to send email message. Here your accout details:<br> login: %s<br> password: %s<br><br>You can change your password after login."] = "Versenden der E-Mail fehlgeschlagen. Hier sind Deine Account Details:\n\nLogin: %s\nPasswort: %s\n\nDu kannst das Passwort nach dem Anmelden ändern.";
+$a->strings["Registration successful."] = "Registrierung erfolgreich.";
+$a->strings["Your registration can not be processed."] = "Deine Registrierung konnte nicht verarbeitet werden.";
+$a->strings["Your registration is pending approval by the site owner."] = "Deine Registrierung muss noch vom Betreiber der Seite freigegeben werden.";
+$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "Du kannst dieses Formular auch (optional) mit Deiner OpenID ausfüllen, indem Du Deine OpenID angibst und 'Registrieren' klickst.";
+$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "Wenn Du nicht mit OpenID vertraut bist, lass dieses Feld bitte leer und fülle die restlichen Felder aus.";
+$a->strings["Your OpenID (optional): "] = "Deine OpenID (optional): ";
+$a->strings["Include your profile in member directory?"] = "Soll Dein Profil im Nutzerverzeichnis angezeigt werden?";
+$a->strings["Note for the admin"] = "Hinweis für den Admin";
+$a->strings["Leave a message for the admin, why you want to join this node"] = "Hinterlasse eine Nachricht an den Admin, warum du einen Account auf dieser Instanz haben möchtest.";
+$a->strings["Membership on this site is by invitation only."] = "Mitgliedschaft auf dieser Seite ist nur nach vorheriger Einladung möglich.";
+$a->strings["Your invitation ID: "] = "ID Deiner Einladung: ";
+$a->strings["Registration"] = "Registrierung";
+$a->strings["Your Full Name (e.g. Joe Smith, real or real-looking): "] = "Dein vollständiger Name (z.B. Hans Mustermann, echt oder echt erscheinend):";
+$a->strings["Your Email Address: "] = "Deine E-Mail-Adresse: ";
+$a->strings["New Password:"] = "Neues Passwort:";
+$a->strings["Leave empty for an auto generated password."] = "Leer lassen um das Passwort automatisch zu generieren.";
+$a->strings["Confirm:"] = "Bestätigen:";
+$a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be '<strong>nickname@\$sitename</strong>'."] = "Wähle einen Spitznamen für Dein Profil. Dieser muss mit einem Buchstaben beginnen. Die Adresse Deines Profils auf dieser Seite wird '<strong>spitzname@\$sitename</strong>' sein.";
+$a->strings["Choose a nickname: "] = "Spitznamen wählen: ";
+$a->strings["Import your profile to this friendica instance"] = "Importiere Dein Profil auf diese Friendica Instanz";
+$a->strings["Account approved."] = "Konto freigegeben.";
+$a->strings["Registration revoked for %s"] = "Registrierung für %s wurde zurückgezogen";
+$a->strings["Please login."] = "Bitte melde Dich an.";
+$a->strings["Remove My Account"] = "Konto löschen";
+$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Dein Konto wird endgültig gelöscht. Es gibt keine Möglichkeit, es wiederherzustellen.";
+$a->strings["Please enter your password for verification:"] = "Bitte gib Dein Passwort zur Verifikation ein:";
+$a->strings["Resubscribing to OStatus contacts"] = "Erneuern der OStatus Abonements";
+$a->strings["Error"] = "Fehler";
+$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s folgt %2\$s %3\$s";
+$a->strings["Tag removed"] = "Tag entfernt";
+$a->strings["Remove Item Tag"] = "Gegenstands-Tag entfernen";
+$a->strings["Select a tag to remove: "] = "Wähle ein Tag zum Entfernen aus: ";
+$a->strings["Remove"] = "Entfernen";
+$a->strings["Export account"] = "Account exportieren";
+$a->strings["Export your account info and contacts. Use this to make a backup of your account and/or to move it to another server."] = "Exportiere Deine Accountinformationen und Kontakte. Verwende dies um ein Backup Deines Accounts anzulegen und/oder damit auf einen anderen Server umzuziehen.";
+$a->strings["Export all"] = "Alles exportieren";
+$a->strings["Export your accout info, contacts and all your items as json. Could be a very big file, and could take a lot of time. Use this to make a full backup of your account (photos are not exported)"] = "Exportiere Deine Account Informationen, Kontakte und alle Einträge als JSON Datei. Dies könnte eine sehr große Datei werden und dementsprechend viel Zeit benötigen. Verwende dies um ein komplettes Backup Deines Accounts anzulegen (Fotos werden nicht exportiert).";
+$a->strings["Export personal data"] = "Persönliche Daten exportieren";
+$a->strings["Do you really want to delete this video?"] = "Möchtest Du dieses Video wirklich löschen?";
+$a->strings["Delete Video"] = "Video Löschen";
+$a->strings["No videos selected"] = "Keine Videos  ausgewählt";
+$a->strings["Access to this item is restricted."] = "Zugriff zu diesem Eintrag wurde eingeschränkt.";
+$a->strings["View Album"] = "Album betrachten";
+$a->strings["Recent Videos"] = "Neueste Videos";
+$a->strings["Upload New Videos"] = "Neues Video hochladen";
+$a->strings["Invalid request."] = "Ungültige Anfrage";
+$a->strings["Number of daily wall messages for %s exceeded. Message failed."] = "Maximale Anzahl der täglichen Pinnwand Nachrichten für %s ist überschritten. Zustellung fehlgeschlagen.";
+$a->strings["Unable to check your home location."] = "Konnte Deinen Heimatort nicht bestimmen.";
+$a->strings["No recipient."] = "Kein Empfänger.";
+$a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = "Wenn Du möchtest, dass %s Dir antworten kann, überprüfe Deine Privatsphären-Einstellungen und erlaube private Nachrichten von unbekannten Absendern.";
+$a->strings["No potential page delegates located."] = "Keine potentiellen Bevollmächtigten für die Seite gefunden.";
+$a->strings["Delegates are able to manage all aspects of this account/page except for basic account settings. Please do not delegate your personal account to anybody that you do not trust completely."] = "Bevollmächtigte sind in der Lage, alle Aspekte dieses Kontos/dieser Seite zu verwalten, abgesehen von den Grundeinstellungen des Kontos. Bitte gib niemandem eine Bevollmächtigung für Deinen privaten Account, dem Du nicht absolut vertraust!";
+$a->strings["Existing Page Managers"] = "Vorhandene Seitenmanager";
+$a->strings["Existing Page Delegates"] = "Vorhandene Bevollmächtigte für die Seite";
+$a->strings["Potential Delegates"] = "Potentielle Bevollmächtigte";
+$a->strings["Add"] = "Hinzufügen";
+$a->strings["No entries."] = "Keine Einträge.";
+$a->strings["Item has been removed."] = "Eintrag wurde entfernt.";
 $a->strings["Recent Photos"] = "Neueste Fotos";
 $a->strings["Upload New Photos"] = "Neue Fotos hochladen";
 $a->strings["everybody"] = "jeder";
@@ -1124,12 +1329,8 @@ $a->strings["Delete Photo"] = "Foto löschen";
 $a->strings["Do you really want to delete this photo?"] = "Möchtest Du wirklich dieses Foto löschen?";
 $a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "%1\$s wurde von %3\$s in %2\$s getaggt";
 $a->strings["a photo"] = "einem Foto";
-$a->strings["Image exceeds size limit of %s"] = "Bildgröße überschreitet das Limit von %s";
 $a->strings["Image file is empty."] = "Bilddatei ist leer.";
-$a->strings["Unable to process image."] = "Konnte das Bild nicht bearbeiten.";
-$a->strings["Image upload failed."] = "Hochladen des Bildes gescheitert.";
 $a->strings["No photos selected"] = "Keine Bilder ausgewählt";
-$a->strings["Access to this item is restricted."] = "Zugriff zu diesem Eintrag wurde eingeschränkt.";
 $a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = "Du verwendest %1$.2f Mbyte von %2$.2f Mbyte des Foto-Speichers.";
 $a->strings["Upload Photos"] = "Bilder hochladen";
 $a->strings["New album name: "] = "Name des neuen Albums: ";
@@ -1159,143 +1360,11 @@ $a->strings["Do not rotate"] = "Nicht rotieren";
 $a->strings["Rotate CW (right)"] = "Drehen US (rechts)";
 $a->strings["Rotate CCW (left)"] = "Drehen EUS (links)";
 $a->strings["Private photo"] = "Privates Foto";
-$a->strings["Public photo"] = "Öffentliches Foto";
-$a->strings["Map"] = "Karte";
-$a->strings["View Album"] = "Album betrachten";
-$a->strings["Poke/Prod"] = "Anstupsen";
-$a->strings["poke, prod or do other things to somebody"] = "Stupse Leute an oder mache anderes mit ihnen";
-$a->strings["Recipient"] = "Empfänger";
-$a->strings["Choose what you wish to do to recipient"] = "Was willst Du mit dem Empfänger machen:";
-$a->strings["Make this post private"] = "Diesen Beitrag privat machen";
-$a->strings["Invalid profile identifier."] = "Ungültiger Profil-Bezeichner.";
-$a->strings["Profile Visibility Editor"] = "Editor für die Profil-Sichtbarkeit";
-$a->strings["Visible To"] = "Sichtbar für";
-$a->strings["All Contacts (with secure profile access)"] = "Alle Kontakte (mit gesichertem Profilzugriff)";
-$a->strings["Remove My Account"] = "Konto löschen";
-$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Dein Konto wird endgültig gelöscht. Es gibt keine Möglichkeit, es wiederherzustellen.";
-$a->strings["Please enter your password for verification:"] = "Bitte gib Dein Passwort zur Verifikation ein:";
-$a->strings["Resubscribing to OStatus contacts"] = "Erneuern der OStatus Abonements";
-$a->strings["Error"] = "Fehler";
-$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s folgt %2\$s %3\$s";
-$a->strings["Do you really want to delete this suggestion?"] = "Möchtest Du wirklich diese Empfehlung löschen?";
-$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Keine Vorschläge verfügbar. Falls der Server frisch aufgesetzt wurde, versuche es bitte in 24 Stunden noch einmal.";
-$a->strings["Ignore/Hide"] = "Ignorieren/Verbergen";
-$a->strings["Tag removed"] = "Tag entfernt";
-$a->strings["Remove Item Tag"] = "Gegenstands-Tag entfernen";
-$a->strings["Select a tag to remove: "] = "Wähle ein Tag zum Entfernen aus: ";
-$a->strings["Export account"] = "Account exportieren";
-$a->strings["Export your account info and contacts. Use this to make a backup of your account and/or to move it to another server."] = "Exportiere Deine Accountinformationen und Kontakte. Verwende dies um ein Backup Deines Accounts anzulegen und/oder damit auf einen anderen Server umzuziehen.";
-$a->strings["Export all"] = "Alles exportieren";
-$a->strings["Export your accout info, contacts and all your items as json. Could be a very big file, and could take a lot of time. Use this to make a full backup of your account (photos are not exported)"] = "Exportiere Deine Account Informationen, Kontakte und alle Einträge als JSON Datei. Dies könnte eine sehr große Datei werden und dementsprechend viel Zeit benötigen. Verwende dies um ein komplettes Backup Deines Accounts anzulegen (Fotos werden nicht exportiert).";
-$a->strings["Export personal data"] = "Persönliche Daten exportieren";
-$a->strings["[Embedded content - reload page to view]"] = "[Eingebetteter Inhalt - Seite neu laden zum Betrachten]";
-$a->strings["Do you really want to delete this video?"] = "Möchtest Du dieses Video wirklich löschen?";
-$a->strings["Delete Video"] = "Video Löschen";
-$a->strings["No videos selected"] = "Keine Videos  ausgewählt";
-$a->strings["Recent Videos"] = "Neueste Videos";
-$a->strings["Upload New Videos"] = "Neues Video hochladen";
-$a->strings["No contacts."] = "Keine Kontakte.";
-$a->strings["Access denied."] = "Zugriff verweigert.";
-$a->strings["Invalid request."] = "Ungültige Anfrage";
-$a->strings["Sorry, maybe your upload is bigger than the PHP configuration allows"] = "Entschuldige, die Datei scheint größer zu sein als es die PHP Konfiguration erlaubt.";
-$a->strings["Or - did you try to upload an empty file?"] = "Oder - hast Du versucht, eine leere Datei hochzuladen?";
-$a->strings["File exceeds size limit of %s"] = "Die Datei ist größer als das erlaubte Limit von %s";
-$a->strings["File upload failed."] = "Hochladen der Datei fehlgeschlagen.";
-$a->strings["Number of daily wall messages for %s exceeded. Message failed."] = "Maximale Anzahl der täglichen Pinnwand Nachrichten für %s ist überschritten. Zustellung fehlgeschlagen.";
-$a->strings["Unable to check your home location."] = "Konnte Deinen Heimatort nicht bestimmen.";
-$a->strings["No recipient."] = "Kein Empfänger.";
-$a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = "Wenn Du möchtest, dass %s Dir antworten kann, überprüfe Deine Privatsphären-Einstellungen und erlaube private Nachrichten von unbekannten Absendern.";
-$a->strings["Only logged in users are permitted to perform a probing."] = "Nur eingeloggten Benutzern ist das Untersuchen von Adressen gestattet.";
-$a->strings["Account approved."] = "Konto freigegeben.";
-$a->strings["Registration revoked for %s"] = "Registrierung für %s wurde zurückgezogen";
-$a->strings["Please login."] = "Bitte melde Dich an.";
-$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Die maximale Anzahl täglicher Registrierungen auf dieser Seite wurde überschritten. Bitte versuche es morgen noch einmal.";
-$a->strings["Import"] = "Import";
-$a->strings["Move account"] = "Account umziehen";
-$a->strings["You can import an account from another Friendica server."] = "Du kannst einen Account von einem anderen Friendica Server importieren.";
-$a->strings["You need to export your account from the old server and upload it here. We will recreate your old account here with all your contacts. We will try also to inform your friends that you moved here."] = "Du musst Deinen Account vom alten Server exportieren und hier hochladen. Wir stellen Deinen alten Account mit all Deinen Kontakten wieder her. Wir werden auch versuchen all Deine Kontakte darüber zu informieren, dass Du hierher umgezogen bist.";
-$a->strings["This feature is experimental. We can't import contacts from the OStatus network (GNU Social/Statusnet) or from Diaspora"] = "Dieses Feature ist experimentell. Wir können keine Kontakte vom OStatus Netzwerk (GNU Social/Statusnet) oder von Diaspora importieren";
-$a->strings["Account file"] = "Account Datei";
-$a->strings["To export your account, go to \"Settings->Export your personal data\" and select \"Export account\""] = "Um Deinen Account zu exportieren, rufe \"Einstellungen -> Persönliche Daten exportieren\" auf und wähle \"Account exportieren\"";
-$a->strings["This introduction has already been accepted."] = "Diese Kontaktanfrage wurde bereits akzeptiert.";
-$a->strings["Profile location is not valid or does not contain profile information."] = "Profiladresse ist ungültig oder stellt keine Profildaten zur Verfügung.";
-$a->strings["Warning: profile location has no identifiable owner name."] = "Warnung: Es konnte kein Name des Besitzers von der angegebenen Profiladresse gefunden werden.";
-$a->strings["Warning: profile location has no profile photo."] = "Warnung: Es gibt kein Profilbild bei der angegebenen Profiladresse.";
-$a->strings["%d required parameter was not found at the given location"] = array(
-       0 => "%d benötigter Parameter wurde an der angegebenen Stelle nicht gefunden",
-       1 => "%d benötigte Parameter wurden an der angegebenen Stelle nicht gefunden",
-);
-$a->strings["Introduction complete."] = "Kontaktanfrage abgeschlossen.";
-$a->strings["Unrecoverable protocol error."] = "Nicht behebbarer Protokollfehler.";
-$a->strings["Profile unavailable."] = "Profil nicht verfügbar.";
-$a->strings["%s has received too many connection requests today."] = "%s hat heute zu viele Kontaktanfragen erhalten.";
-$a->strings["Spam protection measures have been invoked."] = "Maßnahmen zum Spamschutz wurden ergriffen.";
-$a->strings["Friends are advised to please try again in 24 hours."] = "Freunde sind angehalten, es in 24 Stunden erneut zu versuchen.";
-$a->strings["Invalid locator"] = "Ungültiger Locator";
-$a->strings["Invalid email address."] = "Ungültige E-Mail-Adresse.";
-$a->strings["This account has not been configured for email. Request failed."] = "Dieses Konto ist nicht für E-Mail konfiguriert. Anfrage fehlgeschlagen.";
-$a->strings["You have already introduced yourself here."] = "Du hast Dich hier bereits vorgestellt.";
-$a->strings["Apparently you are already friends with %s."] = "Es scheint so, als ob Du bereits mit %s in Kontakt stehst.";
-$a->strings["Invalid profile URL."] = "Ungültige Profil-URL.";
-$a->strings["Failed to update contact record."] = "Aktualisierung der Kontaktdaten fehlgeschlagen.";
-$a->strings["Your introduction has been sent."] = "Deine Kontaktanfrage wurde gesendet.";
-$a->strings["Remote subscription can't be done for your network. Please subscribe directly on your system."] = "Entferntes abon­nie­ren kann für dein Netzwerk nicht durchgeführt werden. Bitte nutze direkt die Abonnieren-Funktion deines Systems.   ";
-$a->strings["Please login to confirm introduction."] = "Bitte melde Dich an, um die Kontaktanfrage zu bestätigen.";
-$a->strings["Incorrect identity currently logged in. Please login to <strong>this</strong> profile."] = "Momentan bist Du mit einer anderen Identität angemeldet. Bitte melde Dich mit <strong>diesem</strong> Profil an.";
-$a->strings["Confirm"] = "Bestätigen";
-$a->strings["Hide this contact"] = "Verberge diesen Kontakt";
-$a->strings["Welcome home %s."] = "Willkommen zurück %s.";
-$a->strings["Please confirm your introduction/connection request to %s."] = "Bitte bestätige Deine Kontaktanfrage bei %s.";
-$a->strings["Please enter your 'Identity Address' from one of the following supported communications networks:"] = "Bitte gib die Adresse Deines Profils in einem der unterstützten sozialen Netzwerke an:";
-$a->strings["If you are not yet a member of the free social web, <a href=\"%s/siteinfo\">follow this link to find a public Friendica site and join us today</a>."] = "Wenn du noch kein Mitglied dieses freien sozialen Netzwerks bist, <a href=\"%s/siteinfo\">folge diesem Link</a> um einen öffentlichen Friendica-Server zu finden und beizutreten.";
-$a->strings["Friend/Connection Request"] = "Kontaktanfrage";
-$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"] = "Beispiele: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca";
-$a->strings["Please answer the following:"] = "Bitte beantworte folgendes:";
-$a->strings["Does %s know you?"] = "Kennt %s Dich?";
-$a->strings["Add a personal note:"] = "Eine persönliche Notiz beifügen:";
-$a->strings["StatusNet/Federated Social Web"] = "StatusNet/Federated Social Web";
-$a->strings[" - please do not use this form.  Instead, enter %s into your Diaspora search bar."] = " - bitte verwende dieses Formular nicht. Stattdessen suche nach %s in Deiner Diaspora Suchleiste.";
-$a->strings["Your Identity Address:"] = "Adresse Deines Profils:";
-$a->strings["Submit Request"] = "Anfrage abschicken";
-$a->strings["People Search - %s"] = "Personensuche - %s";
-$a->strings["Forum Search - %s"] = "Forensuche - %s";
-$a->strings["Event can not end before it has started."] = "Die Veranstaltung kann nicht enden bevor sie beginnt.";
-$a->strings["Event title and start time are required."] = "Der Veranstaltungstitel und die Anfangszeit müssen angegeben werden.";
-$a->strings["Create New Event"] = "Neue Veranstaltung erstellen";
-$a->strings["Event details"] = "Veranstaltungsdetails";
-$a->strings["Starting date and Title are required."] = "Anfangszeitpunkt und Titel werden benötigt";
-$a->strings["Event Starts:"] = "Veranstaltungsbeginn:";
-$a->strings["Required"] = "Benötigt";
-$a->strings["Finish date/time is not known or not relevant"] = "Enddatum/-zeit ist nicht bekannt oder nicht relevant";
-$a->strings["Event Finishes:"] = "Veranstaltungsende:";
-$a->strings["Adjust for viewer timezone"] = "An Zeitzone des Betrachters anpassen";
-$a->strings["Description:"] = "Beschreibung";
-$a->strings["Title:"] = "Titel:";
-$a->strings["Share this event"] = "Veranstaltung teilen";
-$a->strings["Failed to remove event"] = "Entfernen der Veranstaltung fehlgeschlagen";
-$a->strings["Event removed"] = "Veranstaltung enfternt";
-$a->strings["You already added this contact."] = "Du hast den Kontakt bereits hinzugefügt.";
-$a->strings["Diaspora support isn't enabled. Contact can't be added."] = "Diaspora Unterstützung ist nicht aktiviert. Der Kontakt kann nicht zugefügt werden.";
-$a->strings["OStatus support is disabled. Contact can't be added."] = "OStatus Unterstützung ist nicht aktiviert. Der Kontakt kann nicht zugefügt werden.";
-$a->strings["The network type couldn't be detected. Contact can't be added."] = "Der Netzwerktype wurde nicht erkannt. Der Kontakt kann nicht hinzugefügt werden.";
-$a->strings["Contact added"] = "Kontakt hinzugefügt";
-$a->strings["{0} wants to be your friend"] = "{0} möchte mit Dir in Kontakt treten";
-$a->strings["{0} sent you a message"] = "{0} schickte Dir eine Nachricht";
-$a->strings["{0} requested registration"] = "{0} möchte sich registrieren";
-$a->strings["Image uploaded but image cropping failed."] = "Bild hochgeladen, aber das Zuschneiden schlug fehl.";
-$a->strings["Image size reduction [%s] failed."] = "Verkleinern der Bildgröße von [%s] scheiterte.";
-$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Drücke Umschalt+Neu Laden oder leere den Browser-Cache, falls das neue Foto nicht gleich angezeigt wird.";
-$a->strings["Unable to process image"] = "Bild konnte nicht verarbeitet werden";
-$a->strings["Upload File:"] = "Datei hochladen:";
-$a->strings["Select a profile:"] = "Profil auswählen:";
-$a->strings["Upload"] = "Hochladen";
-$a->strings["or"] = "oder";
-$a->strings["skip this step"] = "diesen Schritt überspringen";
-$a->strings["select a photo from your photo albums"] = "wähle ein Foto aus deinen Fotoalben";
-$a->strings["Crop Image"] = "Bild zurechtschneiden";
-$a->strings["Please adjust the image cropping for optimum viewing."] = "Passe bitte den Bildausschnitt an, damit das Bild optimal dargestellt werden kann.";
-$a->strings["Done Editing"] = "Bearbeitung abgeschlossen";
-$a->strings["Image uploaded successfully."] = "Bild erfolgreich hochgeladen.";
+$a->strings["Public photo"] = "Öffentliches Foto";
+$a->strings["Map"] = "Karte";
+$a->strings["{0} wants to be your friend"] = "{0} möchte mit Dir in Kontakt treten";
+$a->strings["{0} sent you a message"] = "{0} schickte Dir eine Nachricht";
+$a->strings["{0} requested registration"] = "{0} möchte sich registrieren";
 $a->strings["Profile deleted."] = "Profil gelöscht.";
 $a->strings["Profile-"] = "Profil-";
 $a->strings["New profile created."] = "Neues Profil angelegt.";
@@ -1369,143 +1438,11 @@ $a->strings["Work/employment"] = "Arbeit/Anstellung";
 $a->strings["School/education"] = "Schule/Ausbildung";
 $a->strings["Contact information and Social Networks"] = "Kontaktinformationen und Soziale Netzwerke";
 $a->strings["Edit/Manage Profiles"] = "Bearbeite/Verwalte Profile";
-$a->strings["Registration successful. Please check your email for further instructions."] = "Registrierung erfolgreich. Eine E-Mail mit weiteren Anweisungen wurde an Dich gesendet.";
-$a->strings["Failed to send email message. Here your accout details:<br> login: %s<br> password: %s<br><br>You can change your password after login."] = "Versenden der E-Mail fehlgeschlagen. Hier sind Deine Account Details:\n\nLogin: %s\nPasswort: %s\n\nDu kannst das Passwort nach dem Anmelden ändern.";
-$a->strings["Registration successful."] = "Registrierung erfolgreich.";
-$a->strings["Your registration can not be processed."] = "Deine Registrierung konnte nicht verarbeitet werden.";
-$a->strings["Your registration is pending approval by the site owner."] = "Deine Registrierung muss noch vom Betreiber der Seite freigegeben werden.";
-$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "Du kannst dieses Formular auch (optional) mit Deiner OpenID ausfüllen, indem Du Deine OpenID angibst und 'Registrieren' klickst.";
-$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "Wenn Du nicht mit OpenID vertraut bist, lass dieses Feld bitte leer und fülle die restlichen Felder aus.";
-$a->strings["Your OpenID (optional): "] = "Deine OpenID (optional): ";
-$a->strings["Include your profile in member directory?"] = "Soll Dein Profil im Nutzerverzeichnis angezeigt werden?";
-$a->strings["Note for the admin"] = "Hinweis für den Admin";
-$a->strings["Leave a message for the admin, why you want to join this node"] = "Hinterlasse eine Nachricht an den Admin, warum du einen Account auf dieser Instanz haben möchtest.";
-$a->strings["Membership on this site is by invitation only."] = "Mitgliedschaft auf dieser Seite ist nur nach vorheriger Einladung möglich.";
-$a->strings["Your invitation ID: "] = "ID Deiner Einladung: ";
-$a->strings["Registration"] = "Registrierung";
-$a->strings["Your Full Name (e.g. Joe Smith, real or real-looking): "] = "Dein vollständiger Name (z.B. Hans Mustermann, echt oder echt erscheinend):";
-$a->strings["Your Email Address: "] = "Deine E-Mail-Adresse: ";
-$a->strings["New Password:"] = "Neues Passwort:";
-$a->strings["Leave empty for an auto generated password."] = "Leer lassen um das Passwort automatisch zu generieren.";
-$a->strings["Confirm:"] = "Bestätigen:";
-$a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be '<strong>nickname@\$sitename</strong>'."] = "Wähle einen Spitznamen für Dein Profil. Dieser muss mit einem Buchstaben beginnen. Die Adresse Deines Profils auf dieser Seite wird '<strong>spitzname@\$sitename</strong>' sein.";
-$a->strings["Choose a nickname: "] = "Spitznamen wählen: ";
-$a->strings["Import your profile to this friendica instance"] = "Importiere Dein Profil auf diese Friendica Instanz";
-$a->strings["Remove term"] = "Begriff entfernen";
 $a->strings["Only logged in users are permitted to perform a search."] = "Nur eingeloggten Benutzern ist das Suchen gestattet.";
 $a->strings["Too Many Requests"] = "Zu viele Abfragen";
 $a->strings["Only one search per minute is permitted for not logged in users."] = "Es ist nur eine Suchanfrage pro Minute für nicht eingeloggte Benutzer gestattet.";
-$a->strings["No results."] = "Keine Ergebnisse.";
 $a->strings["Items tagged with: %s"] = "Beiträge die mit %s getaggt sind";
 $a->strings["Results for: %s"] = "Ergebnisse für: %s";
-$a->strings["%d contact edited."] = array(
-       0 => "%d Kontakt bearbeitet.",
-       1 => "%d Kontakte bearbeitet.",
-);
-$a->strings["Could not access contact record."] = "Konnte nicht auf die Kontaktdaten zugreifen.";
-$a->strings["Could not locate selected profile."] = "Konnte das ausgewählte Profil nicht finden.";
-$a->strings["Contact updated."] = "Kontakt aktualisiert.";
-$a->strings["Contact has been blocked"] = "Kontakt wurde blockiert";
-$a->strings["Contact has been unblocked"] = "Kontakt wurde wieder freigegeben";
-$a->strings["Contact has been ignored"] = "Kontakt wurde ignoriert";
-$a->strings["Contact has been unignored"] = "Kontakt wird nicht mehr ignoriert";
-$a->strings["Contact has been archived"] = "Kontakt wurde archiviert";
-$a->strings["Contact has been unarchived"] = "Kontakt wurde aus dem Archiv geholt";
-$a->strings["Drop contact"] = "Kontakt löschen";
-$a->strings["Do you really want to delete this contact?"] = "Möchtest Du wirklich diesen Kontakt löschen?";
-$a->strings["Contact has been removed."] = "Kontakt wurde entfernt.";
-$a->strings["You are mutual friends with %s"] = "Du hast mit %s eine beidseitige Freundschaft";
-$a->strings["You are sharing with %s"] = "Du teilst mit %s";
-$a->strings["%s is sharing with you"] = "%s teilt mit Dir";
-$a->strings["Private communications are not available for this contact."] = "Private Kommunikation ist für diesen Kontakt nicht verfügbar.";
-$a->strings["Never"] = "Niemals";
-$a->strings["(Update was successful)"] = "(Aktualisierung war erfolgreich)";
-$a->strings["(Update was not successful)"] = "(Aktualisierung war nicht erfolgreich)";
-$a->strings["Suggest friends"] = "Kontakte vorschlagen";
-$a->strings["Network type: %s"] = "Netzwerktyp: %s";
-$a->strings["Communications lost with this contact!"] = "Verbindungen mit diesem Kontakt verloren!";
-$a->strings["Fetch further information for feeds"] = "Weitere Informationen zu Feeds holen";
-$a->strings["Disabled"] = "Deaktiviert";
-$a->strings["Fetch information"] = "Beziehe Information";
-$a->strings["Fetch information and keywords"] = "Beziehe Information und Schlüsselworte";
-$a->strings["Contact"] = "Kontakt";
-$a->strings["Profile Visibility"] = "Profil-Sichtbarkeit";
-$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Bitte wähle eines Deiner Profile das angezeigt werden soll, wenn %s Dein Profil aufruft.";
-$a->strings["Contact Information / Notes"] = "Kontakt Informationen / Notizen";
-$a->strings["Their personal note"] = "Die persönliche Mitteilung";
-$a->strings["Edit contact notes"] = "Notizen zum Kontakt bearbeiten";
-$a->strings["Block/Unblock contact"] = "Kontakt blockieren/freischalten";
-$a->strings["Ignore contact"] = "Ignoriere den Kontakt";
-$a->strings["Repair URL settings"] = "URL Einstellungen reparieren";
-$a->strings["View conversations"] = "Unterhaltungen anzeigen";
-$a->strings["Last update:"] = "Letzte Aktualisierung: ";
-$a->strings["Update public posts"] = "Öffentliche Beiträge aktualisieren";
-$a->strings["Update now"] = "Jetzt aktualisieren";
-$a->strings["Unblock"] = "Entsperren";
-$a->strings["Block"] = "Sperren";
-$a->strings["Unignore"] = "Ignorieren aufheben";
-$a->strings["Currently blocked"] = "Derzeit geblockt";
-$a->strings["Currently ignored"] = "Derzeit ignoriert";
-$a->strings["Currently archived"] = "Momentan archiviert";
-$a->strings["Replies/likes to your public posts <strong>may</strong> still be visible"] = "Antworten/Likes auf deine öffentlichen Beiträge <strong>könnten</strong> weiterhin sichtbar sein";
-$a->strings["Notification for new posts"] = "Benachrichtigung bei neuen Beiträgen";
-$a->strings["Send a notification of every new post of this contact"] = "Sende eine Benachrichtigung, wann immer dieser Kontakt einen neuen Beitrag schreibt.";
-$a->strings["Blacklisted keywords"] = "Blacklistete Schlüsselworte ";
-$a->strings["Comma separated list of keywords that should not be converted to hashtags, when \"Fetch information and keywords\" is selected"] = "Komma-Separierte Liste mit Schlüsselworten, die nicht in Hashtags konvertiert werden, wenn \"Beziehe Information und Schlüsselworte\" aktiviert wurde";
-$a->strings["Actions"] = "Aktionen";
-$a->strings["Contact Settings"] = "Kontakteinstellungen";
-$a->strings["Suggestions"] = "Kontaktvorschläge";
-$a->strings["Suggest potential friends"] = "Kontakte vorschlagen";
-$a->strings["Show all contacts"] = "Alle Kontakte anzeigen";
-$a->strings["Unblocked"] = "Ungeblockt";
-$a->strings["Only show unblocked contacts"] = "Nur nicht-blockierte Kontakte anzeigen";
-$a->strings["Blocked"] = "Geblockt";
-$a->strings["Only show blocked contacts"] = "Nur blockierte Kontakte anzeigen";
-$a->strings["Ignored"] = "Ignoriert";
-$a->strings["Only show ignored contacts"] = "Nur ignorierte Kontakte anzeigen";
-$a->strings["Archived"] = "Archiviert";
-$a->strings["Only show archived contacts"] = "Nur archivierte Kontakte anzeigen";
-$a->strings["Hidden"] = "Verborgen";
-$a->strings["Only show hidden contacts"] = "Nur verborgene Kontakte anzeigen";
-$a->strings["Search your contacts"] = "Suche in deinen Kontakten";
-$a->strings["Update"] = "Aktualisierungen";
-$a->strings["Archive"] = "Archivieren";
-$a->strings["Unarchive"] = "Aus Archiv zurückholen";
-$a->strings["Batch Actions"] = "Stapelverarbeitung";
-$a->strings["View all contacts"] = "Alle Kontakte anzeigen";
-$a->strings["View all common friends"] = "Alle Kontakte anzeigen";
-$a->strings["Advanced Contact Settings"] = "Fortgeschrittene Kontakteinstellungen";
-$a->strings["Mutual Friendship"] = "Beidseitige Freundschaft";
-$a->strings["is a fan of yours"] = "ist ein Fan von dir";
-$a->strings["you are a fan of"] = "Du bist Fan von";
-$a->strings["Toggle Blocked status"] = "Geblockt-Status ein-/ausschalten";
-$a->strings["Toggle Ignored status"] = "Ignoriert-Status ein-/ausschalten";
-$a->strings["Toggle Archive status"] = "Archiviert-Status ein-/ausschalten";
-$a->strings["Delete contact"] = "Lösche den Kontakt";
-$a->strings["Help:"] = "Hilfe:";
-$a->strings["Page not found."] = "Seite nicht gefunden.";
-$a->strings["Total invitation limit exceeded."] = "Limit für Einladungen erreicht.";
-$a->strings["%s : Not a valid email address."] = "%s: Keine gültige Email Adresse.";
-$a->strings["Please join us on Friendica"] = "Ich lade Dich zu unserem sozialen Netzwerk Friendica ein";
-$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Limit für Einladungen erreicht. Bitte kontaktiere des Administrator der Seite.";
-$a->strings["%s : Message delivery failed."] = "%s: Zustellung der Nachricht fehlgeschlagen.";
-$a->strings["%d message sent."] = array(
-       0 => "%d Nachricht gesendet.",
-       1 => "%d Nachrichten gesendet.",
-);
-$a->strings["You have no more invitations available"] = "Du hast keine weiteren Einladungen";
-$a->strings["Visit %s for a list of public sites that you can join. Friendica members on other sites can all connect with each other, as well as with members of many other social networks."] = "Besuche %s für eine Liste der öffentlichen Server, denen Du beitreten kannst. Friendica Mitglieder unterschiedlicher Server können sich sowohl alle miteinander verbinden, als auch mit Mitgliedern anderer Sozialer Netzwerke.";
-$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = "Um diese Kontaktanfrage zu akzeptieren, besuche und registriere Dich bitte bei %s oder einer anderen öffentlichen Friendica Website.";
-$a->strings["Friendica sites all inter-connect to create a huge privacy-enhanced social web that is owned and controlled by its members. They can also connect with many traditional social networks. See %s for a list of alternate Friendica sites you can join."] = "Friendica Server verbinden sich alle untereinander, um ein großes datenschutzorientiertes Soziales Netzwerk zu bilden, das von seinen Mitgliedern betrieben und kontrolliert wird. Sie können sich auch mit vielen üblichen Sozialen Netzwerken verbinden. Besuche %s für eine Liste alternativer Friendica Server, denen Du beitreten kannst.";
-$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = "Es tut uns leid. Dieses System ist zurzeit nicht dafür konfiguriert, sich mit anderen öffentlichen Seiten zu verbinden oder Mitglieder einzuladen.";
-$a->strings["To accept this invitation, please visit and register at %s."] = "Um diese Kontaktanfrage zu akzeptieren, besuche und registriere Dich bitte bei %s.";
-$a->strings["Friendica sites all inter-connect to create a huge privacy-enhanced social web that is owned and controlled by its members. They can also connect with many traditional social networks."] = "Friendica Server verbinden sich alle untereinander, um ein großes datenschutzorientiertes Soziales Netzwerk zu bilden, das von seinen Mitgliedern betrieben und kontrolliert wird. Sie können sich auch mit vielen üblichen Sozialen Netzwerken verbinden.";
-$a->strings["Send invitations"] = "Einladungen senden";
-$a->strings["Enter email addresses, one per line:"] = "E-Mail-Adressen eingeben, eine pro Zeile:";
-$a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = "Du bist herzlich dazu eingeladen, Dich mir und anderen guten Freunden auf Friendica anzuschließen - und ein besseres Soziales Netz aufzubauen.";
-$a->strings["You will need to supply this invitation code: \$invite_code"] = "Du benötigst den folgenden Einladungscode: \$invite_code";
-$a->strings["Once you have registered, please connect with me via my profile page at:"] = "Sobald Du registriert bist, kontaktiere mich bitte auf meiner Profilseite:";
-$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendi.ca"] = "Für weitere Informationen über das Friendica Projekt und warum wir es für ein wichtiges Projekt halten, besuche bitte http://friendi.ca.";
 $a->strings["Account"] = "Nutzerkonto";
 $a->strings["Additional features"] = "Zusätzliche Features";
 $a->strings["Display"] = "Anzeige";
@@ -1514,6 +1451,7 @@ $a->strings["Plugins"] = "Plugins";
 $a->strings["Connected apps"] = "Verbundene Programme";
 $a->strings["Remove account"] = "Konto löschen";
 $a->strings["Missing some important data!"] = "Wichtige Daten fehlen!";
+$a->strings["Update"] = "Aktualisierungen";
 $a->strings["Failed to connect with email account using the settings provided."] = "Verbindung zum E-Mail-Konto mit den angegebenen Einstellungen nicht möglich.";
 $a->strings["Email settings updated."] = "E-Mail Einstellungen bearbeitet.";
 $a->strings["Features updated"] = "Features aktualisiert";
@@ -1686,6 +1624,13 @@ $a->strings["Change the behaviour of this account for special situations"] = "Ve
 $a->strings["Relocate"] = "Umziehen";
 $a->strings["If you have moved this profile from another server, and some of your contacts don't receive your updates, try pushing this button."] = "Wenn Du Dein Profil von einem anderen Server umgezogen hast und einige Deiner Kontakte Deine Beiträge nicht erhalten, verwende diesen Button.";
 $a->strings["Resend relocate message to contacts"] = "Umzugsbenachrichtigung erneut an Kontakte senden";
+$a->strings["Do you really want to delete this suggestion?"] = "Möchtest Du wirklich diese Empfehlung löschen?";
+$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Keine Vorschläge verfügbar. Falls der Server frisch aufgesetzt wurde, versuche es bitte in 24 Stunden noch einmal.";
+$a->strings["Ignore/Hide"] = "Ignorieren/Verbergen";
+$a->strings["Sorry, maybe your upload is bigger than the PHP configuration allows"] = "Entschuldige, die Datei scheint größer zu sein als es die PHP Konfiguration erlaubt.";
+$a->strings["Or - did you try to upload an empty file?"] = "Oder - hast Du versucht, eine leere Datei hochzuladen?";
+$a->strings["File exceeds size limit of %s"] = "Die Datei ist größer als das erlaubte Limit von %s";
+$a->strings["File upload failed."] = "Hochladen der Datei fehlgeschlagen.";
 $a->strings["Theme settings updated."] = "Themeneinstellungen aktualisiert.";
 $a->strings["Site"] = "Seite";
 $a->strings["Users"] = "Nutzer";
@@ -1738,6 +1683,8 @@ $a->strings["Last Tried"] = "Zuletzt versucht";
 $a->strings["This page lists the content of the queue for outgoing postings. These are postings the initial delivery failed for. They will be resend later and eventually deleted if the delivery fails permanently."] = "Auf dieser Seite werden die in der Warteschlange eingereihten Beiträge aufgelistet. Bei diesen Beiträgen schlug die erste Zustellung fehl. Es wird später wiederholt versucht die Beiträge zuzustellen, bis sie schließlich gelöscht werden.";
 $a->strings["Your DB still runs with MyISAM tables. You should change the engine type to InnoDB. As Friendica will use InnoDB only features in the future, you should change this! See <a href=\"%s\">here</a> for a guide that may be helpful converting the table engines. You may also use the command <tt>php include/dbstructure.php toinnodb</tt> of your Friendica installation for an automatic conversion.<br />"] = "Deine DB verwendet derzeit noch MyISAM Tabellen. Du solltest die Datenbank Engine auf InnoDB umstellen, da Friendica in Zukunft InnoDB Features verwenden wird. Eine Anleitung zur Umstellung der Datenbank kannst du  <a href=\"%s\">hier</a>  finden. Du kannst außerdem mit dem Befehl <tt>php include/dbstructure.php toinnodb</tt> auf der Kommandozeile die Umstellung automatisch vornehmen lassen.";
 $a->strings["The database update failed. Please run \"php include/dbstructure.php update\" from the command line and have a look at the errors that might appear."] = "Das Update der Datenbank ist fehlgeschlagen. Bitte führe 'php include/dbstructure.php update' in der Kommandozeile aus und achte auf eventuell auftretende Fehlermeldungen.";
+$a->strings["The worker was never executed. Please check your database structure!"] = "Der Hintergrundprozess (worker) wurde noch nie gestartet. Bitte überprüfe deine Datenbankstruktur.";
+$a->strings["The last worker execution was on %s UTC. This is older than one hour. Please check your crontab settings."] = "Der Hintergrundprozess (worker) wurde zuletzt um %s UTC ausgeführt. Das war vor mehr als einer Stunde. Bitte überprüfe deine crontab Einstellungen.";
 $a->strings["Normal Account"] = "Normales Konto";
 $a->strings["Automatic Follower Account"] = "Automatisc Folgender Account";
 $a->strings["Public Forum Account"] = "Öffentliche Gemeinschaftsforen Accoun";
@@ -1755,7 +1702,9 @@ $a->strings["Site settings updated."] = "Seiteneinstellungen aktualisiert.";
 $a->strings["No community page"] = "Keine Gemeinschaftsseite";
 $a->strings["Public postings from users of this site"] = "Öffentliche Beiträge von Nutzer_innen dieser Seite";
 $a->strings["Global community page"] = "Globale Gemeinschaftsseite";
+$a->strings["Never"] = "Niemals";
 $a->strings["At post arrival"] = "Beim Empfang von Nachrichten";
+$a->strings["Disabled"] = "Deaktiviert";
 $a->strings["Users, Global Contacts"] = "Nutzer, globale Kontakte";
 $a->strings["Users, Global Contacts/fallback"] = "Nutzer, globale Kontakte / Fallback";
 $a->strings["One month"] = "ein Monat";
@@ -1846,8 +1795,6 @@ $a->strings["Posts per user on community page"] = "Anzahl der Beiträge pro Benu
 $a->strings["The maximum number of posts per user on the community page. (Not valid for 'Global Community')"] = "Die Anzahl der Beiträge die von jedem Nutzer maximal auf der Gemeinschaftsseite angezeigt werden sollen. Dieser Parameter wird nicht für die Globale Gemeinschaftsseite genutzt.";
 $a->strings["Enable OStatus support"] = "OStatus Unterstützung aktivieren";
 $a->strings["Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All communications in OStatus are public, so privacy warnings will be occasionally displayed."] = "Biete die eingebaute OStatus (iStatusNet, GNU Social, etc.) Unterstützung an. Jede Kommunikation in OStatus ist öffentlich, Privatsphäre Warnungen werden nur bei Bedarf angezeigt.";
-$a->strings["OStatus conversation completion interval"] = "Intervall zum Vervollständigen von OStatus Unterhaltungen";
-$a->strings["How often shall the poller check for new entries in OStatus conversations? This can be a very ressource task."] = "Wie oft soll der Poller checken ob es neue Nachrichten in OStatus Unterhaltungen gibt die geladen werden müssen. Je nach Anzahl der OStatus Kontakte könnte dies ein sehr Ressourcen lastiger Job sein.";
 $a->strings["Only import OStatus threads from our contacts"] = "Nur OStatus Konversationen unserer Kontakte importieren";
 $a->strings["Normally we import every content from our OStatus contacts. With this option we only store threads that are started by a contact that is known on our system."] = "Normalerweise werden alle Inhalte von OStatus Kontakten importiert. Mit dieser Option werden nur solche Konversationen gespeichert, die von Kontakten der Nutzer dieses Knotens gestartet wurden.";
 $a->strings["OStatus support can only be enabled if threading is enabled."] = "OStatus Unterstützung kann nur aktiviert werden wenn \"Threading\" aktiviert ist. ";
@@ -1949,6 +1896,8 @@ $a->strings["Request date"] = "Anfragedatum";
 $a->strings["No registrations."] = "Keine Neuanmeldungen.";
 $a->strings["Note from the user"] = "Hinweis vom Nutzer";
 $a->strings["Deny"] = "Verwehren";
+$a->strings["Block"] = "Sperren";
+$a->strings["Unblock"] = "Entsperren";
 $a->strings["Site admin"] = "Seitenadministrator";
 $a->strings["Account expired"] = "Account ist abgelaufen";
 $a->strings["New User"] = "Neuer Nutzer";
@@ -1986,35 +1935,91 @@ $a->strings["PHP logging"] = "PHP Protokollieren";
 $a->strings["To enable logging of PHP errors and warnings you can add the following to the .htconfig.php file of your installation. The filename set in the 'error_log' line is relative to the friendica top-level directory and must be writeable by the web server. The option '1' for 'log_errors' and 'display_errors' is to enable these options, set to '0' to disable them."] = "Um PHP Warnungen und Fehler zu protokollieren, kannst du die folgenden Zeilen zur .htconfig.php Datei deiner Installation hinzufügen. Den Dateinamen der Log-Datei legst du in der Zeile mit dem 'error_log' fest,  Er ist relativ zum Friendica-Stammverzeichnis und muss schreibbar durch den Webserver sein. Eine \"1\" als Option für die Punkte 'log_errors' und 'display_errors' aktiviert die Funktionen zum Protokollieren bzw. Anzeigen der Fehler, eine \"0\" deaktiviert sie.";
 $a->strings["Lock feature %s"] = "Feature festlegen: %s";
 $a->strings["Manage Additional Features"] = "Zusätzliche Features Verwalten";
-$a->strings["Not available."] = "Nicht verfügbar.";
-$a->strings["%1\$s welcomes %2\$s"] = "%1\$s heißt %2\$s herzlich willkommen";
-$a->strings["Item has been removed."] = "Eintrag wurde entfernt.";
-$a->strings["Unable to locate original post."] = "Konnte den Originalbeitrag nicht finden.";
-$a->strings["Empty post discarded."] = "Leerer Beitrag wurde verworfen.";
-$a->strings["System error. Post not saved."] = "Systemfehler. Beitrag konnte nicht gespeichert werden.";
-$a->strings["This message was sent to you by %s, a member of the Friendica social network."] = "Diese Nachricht wurde dir von %s geschickt, einem Mitglied des Sozialen Netzwerks Friendica.";
-$a->strings["You may visit them online at %s"] = "Du kannst sie online unter %s besuchen";
-$a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "Falls Du diese Beiträge nicht erhalten möchtest, kontaktiere bitte den Autor, indem Du auf diese Nachricht antwortest.";
-$a->strings["%s posted an update."] = "%s hat ein Update veröffentlicht.";
-$a->strings["Warning: This group contains %s member from a network that doesn't allow non public messages."] = array(
-       0 => "Warnung: Diese Gruppe beinhaltet %s Person aus einem Netzwerk das keine nicht öffentlichen Beiträge empfangen kann.",
-       1 => "Warnung: Diese Gruppe beinhaltet %s Personen aus Netzwerken die keine nicht-öffentlichen Beiträge empfangen können.",
+$a->strings["%d contact edited."] = array(
+       0 => "%d Kontakt bearbeitet.",
+       1 => "%d Kontakte bearbeitet.",
 );
-$a->strings["Messages in this group won't be send to these receivers."] = "Beiträge in dieser Gruppe werden deshalb nicht an diese Personen zugestellt werden.";
-$a->strings["Private messages to this person are at risk of public disclosure."] = "Private Nachrichten an diese Person könnten an die Öffentlichkeit gelangen.";
-$a->strings["Invalid contact."] = "Ungültiger Kontakt.";
-$a->strings["Commented Order"] = "Neueste Kommentare";
-$a->strings["Sort by Comment Date"] = "Nach Kommentardatum sortieren";
-$a->strings["Posted Order"] = "Neueste Beiträge";
-$a->strings["Sort by Post Date"] = "Nach Beitragsdatum sortieren";
-$a->strings["Posts that mention or involve you"] = "Beiträge, in denen es um Dich geht";
-$a->strings["New"] = "Neue";
-$a->strings["Activity Stream - by date"] = "Aktivitäten-Stream - nach Datum";
-$a->strings["Shared Links"] = "Geteilte Links";
-$a->strings["Interesting Links"] = "Interessante Links";
-$a->strings["Starred"] = "Markierte";
-$a->strings["Favourite Posts"] = "Favorisierte Beiträge";
-$a->strings["Tips for New Members"] = "Tipps für neue Nutzer";
+$a->strings["Could not access contact record."] = "Konnte nicht auf die Kontaktdaten zugreifen.";
+$a->strings["Could not locate selected profile."] = "Konnte das ausgewählte Profil nicht finden.";
+$a->strings["Contact updated."] = "Kontakt aktualisiert.";
+$a->strings["Contact has been blocked"] = "Kontakt wurde blockiert";
+$a->strings["Contact has been unblocked"] = "Kontakt wurde wieder freigegeben";
+$a->strings["Contact has been ignored"] = "Kontakt wurde ignoriert";
+$a->strings["Contact has been unignored"] = "Kontakt wird nicht mehr ignoriert";
+$a->strings["Contact has been archived"] = "Kontakt wurde archiviert";
+$a->strings["Contact has been unarchived"] = "Kontakt wurde aus dem Archiv geholt";
+$a->strings["Drop contact"] = "Kontakt löschen";
+$a->strings["Do you really want to delete this contact?"] = "Möchtest Du wirklich diesen Kontakt löschen?";
+$a->strings["Contact has been removed."] = "Kontakt wurde entfernt.";
+$a->strings["You are mutual friends with %s"] = "Du hast mit %s eine beidseitige Freundschaft";
+$a->strings["You are sharing with %s"] = "Du teilst mit %s";
+$a->strings["%s is sharing with you"] = "%s teilt mit Dir";
+$a->strings["Private communications are not available for this contact."] = "Private Kommunikation ist für diesen Kontakt nicht verfügbar.";
+$a->strings["(Update was successful)"] = "(Aktualisierung war erfolgreich)";
+$a->strings["(Update was not successful)"] = "(Aktualisierung war nicht erfolgreich)";
+$a->strings["Suggest friends"] = "Kontakte vorschlagen";
+$a->strings["Network type: %s"] = "Netzwerktyp: %s";
+$a->strings["Communications lost with this contact!"] = "Verbindungen mit diesem Kontakt verloren!";
+$a->strings["Fetch further information for feeds"] = "Weitere Informationen zu Feeds holen";
+$a->strings["Fetch information"] = "Beziehe Information";
+$a->strings["Fetch information and keywords"] = "Beziehe Information und Schlüsselworte";
+$a->strings["Disconnect/Unfollow"] = "Verbindung lösen/Nicht mehr folgen";
+$a->strings["Contact"] = "Kontakt";
+$a->strings["Profile Visibility"] = "Profil-Sichtbarkeit";
+$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Bitte wähle eines Deiner Profile das angezeigt werden soll, wenn %s Dein Profil aufruft.";
+$a->strings["Contact Information / Notes"] = "Kontakt Informationen / Notizen";
+$a->strings["Their personal note"] = "Die persönliche Mitteilung";
+$a->strings["Edit contact notes"] = "Notizen zum Kontakt bearbeiten";
+$a->strings["Block/Unblock contact"] = "Kontakt blockieren/freischalten";
+$a->strings["Ignore contact"] = "Ignoriere den Kontakt";
+$a->strings["Repair URL settings"] = "URL Einstellungen reparieren";
+$a->strings["View conversations"] = "Unterhaltungen anzeigen";
+$a->strings["Last update:"] = "Letzte Aktualisierung: ";
+$a->strings["Update public posts"] = "Öffentliche Beiträge aktualisieren";
+$a->strings["Update now"] = "Jetzt aktualisieren";
+$a->strings["Unignore"] = "Ignorieren aufheben";
+$a->strings["Currently blocked"] = "Derzeit geblockt";
+$a->strings["Currently ignored"] = "Derzeit ignoriert";
+$a->strings["Currently archived"] = "Momentan archiviert";
+$a->strings["Replies/likes to your public posts <strong>may</strong> still be visible"] = "Antworten/Likes auf deine öffentlichen Beiträge <strong>könnten</strong> weiterhin sichtbar sein";
+$a->strings["Notification for new posts"] = "Benachrichtigung bei neuen Beiträgen";
+$a->strings["Send a notification of every new post of this contact"] = "Sende eine Benachrichtigung, wann immer dieser Kontakt einen neuen Beitrag schreibt.";
+$a->strings["Blacklisted keywords"] = "Blacklistete Schlüsselworte ";
+$a->strings["Comma separated list of keywords that should not be converted to hashtags, when \"Fetch information and keywords\" is selected"] = "Komma-Separierte Liste mit Schlüsselworten, die nicht in Hashtags konvertiert werden, wenn \"Beziehe Information und Schlüsselworte\" aktiviert wurde";
+$a->strings["Actions"] = "Aktionen";
+$a->strings["Contact Settings"] = "Kontakteinstellungen";
+$a->strings["Suggestions"] = "Kontaktvorschläge";
+$a->strings["Suggest potential friends"] = "Kontakte vorschlagen";
+$a->strings["Show all contacts"] = "Alle Kontakte anzeigen";
+$a->strings["Unblocked"] = "Ungeblockt";
+$a->strings["Only show unblocked contacts"] = "Nur nicht-blockierte Kontakte anzeigen";
+$a->strings["Blocked"] = "Geblockt";
+$a->strings["Only show blocked contacts"] = "Nur blockierte Kontakte anzeigen";
+$a->strings["Ignored"] = "Ignoriert";
+$a->strings["Only show ignored contacts"] = "Nur ignorierte Kontakte anzeigen";
+$a->strings["Archived"] = "Archiviert";
+$a->strings["Only show archived contacts"] = "Nur archivierte Kontakte anzeigen";
+$a->strings["Hidden"] = "Verborgen";
+$a->strings["Only show hidden contacts"] = "Nur verborgene Kontakte anzeigen";
+$a->strings["Search your contacts"] = "Suche in deinen Kontakten";
+$a->strings["Archive"] = "Archivieren";
+$a->strings["Unarchive"] = "Aus Archiv zurückholen";
+$a->strings["Batch Actions"] = "Stapelverarbeitung";
+$a->strings["View all contacts"] = "Alle Kontakte anzeigen";
+$a->strings["View all common friends"] = "Alle Kontakte anzeigen";
+$a->strings["Advanced Contact Settings"] = "Fortgeschrittene Kontakteinstellungen";
+$a->strings["Mutual Friendship"] = "Beidseitige Freundschaft";
+$a->strings["is a fan of yours"] = "ist ein Fan von dir";
+$a->strings["you are a fan of"] = "Du bist Fan von";
+$a->strings["Toggle Blocked status"] = "Geblockt-Status ein-/ausschalten";
+$a->strings["Toggle Ignored status"] = "Ignoriert-Status ein-/ausschalten";
+$a->strings["Toggle Archive status"] = "Archiviert-Status ein-/ausschalten";
+$a->strings["Delete contact"] = "Lösche den Kontakt";
+$a->strings["Files"] = "Dateien";
+$a->strings["Contact wasn't found or can't be unfollowed."] = "Der Kontakt konnte nicht gefunden oder nicht entfolgt werden.";
+$a->strings["Contact unfollowed"] = "Kontakt wird nicht mehr gefolgt";
+$a->strings["You aren't a friend of this contact."] = "Du hast keine beidseitige Freundschaft mit diesem Kontakt.";
+$a->strings["Unfollowing is currently not supported by your network."] = "Bei diesem Netzwerk wird das Entfolgen derzeit nicht unterstützt.";
 $a->strings["via"] = "via";
 $a->strings["greenzero"] = "greenzero";
 $a->strings["purplezero"] = "purplezero";
index 291325fa9daa5137d0061bb8334176930096319f..81f7c3a515715ff9f1dd9ae3efe5f900ac4f145e 100644 (file)
@@ -8,8 +8,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: friendica\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2017-08-12 09:42+0200\n"
-"PO-Revision-Date: 2017-08-23 08:34+0000\n"
+"POT-Creation-Date: 2017-09-15 10:07+0200\n"
+"PO-Revision-Date: 2017-09-26 08:27+0000\n"
 "Last-Translator: Andy H3 <andy@hubup.pro>\n"
 "Language-Team: English (United Kingdom) (http://www.transifex.com/Friendica/friendica/language/en_GB/)\n"
 "MIME-Version: 1.0\n"
@@ -105,7 +105,7 @@ msgstr "Network filter"
 msgid "Enable widget to display Network posts only from selected network"
 msgstr "Enable widget to display network posts only from selected network"
 
-#: include/features.php:86 mod/search.php:37 mod/network.php:209
+#: include/features.php:86 mod/search.php:37 mod/network.php:194
 msgid "Saved Searches"
 msgstr "Saved searches"
 
@@ -177,7 +177,7 @@ msgstr "Post categories"
 msgid "Add categories to your posts"
 msgstr "Add categories to your posts"
 
-#: include/features.php:104 include/contact_widgets.php:166
+#: include/features.php:104 include/contact_widgets.php:167
 msgid "Saved Folders"
 msgstr "Saved Folders"
 
@@ -217,22 +217,7 @@ msgstr "Advanced profiles"
 msgid "Show visitors public community forums at the Advanced Profile Page"
 msgstr "Show visitors of public community forums at the advanced profile page"
 
-#: include/ForumManager.php:116 include/nav.php:133 include/text.php:1109
-#: view/theme/vier/theme.php:248
-msgid "Forums"
-msgstr "Forums"
-
-#: include/ForumManager.php:118 view/theme/vier/theme.php:250
-msgid "External link to forum"
-msgstr "External link to forum"
-
-#: include/ForumManager.php:121 include/contact_widgets.php:275
-#: include/items.php:2390 mod/content.php:625 object/Item.php:420
-#: view/theme/vier/theme.php:253 src/App.php:528
-msgid "show more"
-msgstr "Show more..."
-
-#: include/datetime.php:66 include/datetime.php:68 mod/profiles.php:701
+#: include/datetime.php:66 include/datetime.php:68 mod/profiles.php:702
 msgid "Miscellaneous"
 msgstr "Miscellaneous"
 
@@ -240,7 +225,7 @@ msgstr "Miscellaneous"
 msgid "Birthday:"
 msgstr "Birthday:"
 
-#: include/datetime.php:198 mod/profiles.php:724
+#: include/datetime.php:198 mod/profiles.php:725
 msgid "Age: "
 msgstr "Age: "
 
@@ -264,8 +249,8 @@ msgstr "year"
 msgid "years"
 msgstr "years"
 
-#: include/datetime.php:380 include/event.php:453 mod/cal.php:281
-#: mod/events.php:387
+#: include/datetime.php:380 include/event.php:454 mod/cal.php:282
+#: mod/events.php:388
 msgid "month"
 msgstr "month"
 
@@ -273,8 +258,8 @@ msgstr "month"
 msgid "months"
 msgstr "months"
 
-#: include/datetime.php:381 include/event.php:454 mod/cal.php:282
-#: mod/events.php:388
+#: include/datetime.php:381 include/event.php:455 mod/cal.php:283
+#: mod/events.php:389
 msgid "week"
 msgstr "week"
 
@@ -282,8 +267,8 @@ msgstr "week"
 msgid "weeks"
 msgstr "weeks"
 
-#: include/datetime.php:382 include/event.php:455 mod/cal.php:283
-#: mod/events.php:389
+#: include/datetime.php:382 include/event.php:456 mod/cal.php:284
+#: mod/events.php:390
 msgid "day"
 msgstr "day"
 
@@ -325,245 +310,11 @@ msgstr "%1$d %2$s ago"
 msgid "%s's birthday"
 msgstr "%s's birthday"
 
-#: include/datetime.php:621 include/dfrn.php:1310
+#: include/datetime.php:621 include/dfrn.php:1332
 #, php-format
 msgid "Happy Birthday %s"
 msgstr "Happy Birthday, %s!"
 
-#: include/like.php:30 include/conversation.php:154 include/diaspora.php:1653
-#, php-format
-msgid "%1$s likes %2$s's %3$s"
-msgstr "%1$s likes %2$s's %3$s"
-
-#: include/like.php:34 include/like.php:39 include/conversation.php:157
-#, php-format
-msgid "%1$s doesn't like %2$s's %3$s"
-msgstr "%1$s doesn't like %2$s's %3$s"
-
-#: include/like.php:44
-#, php-format
-msgid "%1$s is attending %2$s's %3$s"
-msgstr "%1$s is going to %2$s's %3$s"
-
-#: include/like.php:49
-#, php-format
-msgid "%1$s is not attending %2$s's %3$s"
-msgstr "%1$s is not going to %2$s's %3$s"
-
-#: include/like.php:54
-#, php-format
-msgid "%1$s may attend %2$s's %3$s"
-msgstr "%1$s may go to %2$s's %3$s"
-
-#: include/like.php:181 include/conversation.php:142
-#: include/conversation.php:294 include/text.php:1891 mod/subthread.php:89
-#: mod/tagger.php:63
-msgid "photo"
-msgstr "photo"
-
-#: include/like.php:181 include/conversation.php:137
-#: include/conversation.php:147 include/conversation.php:289
-#: include/conversation.php:298 include/diaspora.php:1657 mod/subthread.php:89
-#: mod/tagger.php:63
-msgid "status"
-msgstr "status"
-
-#: include/like.php:183 include/conversation.php:134
-#: include/conversation.php:286 include/text.php:1889
-msgid "event"
-msgstr "event"
-
-#: include/uimport.php:85
-msgid "Error decoding account file"
-msgstr "Error decoding account file"
-
-#: include/uimport.php:91
-msgid "Error! No version data in file! This is not a Friendica account file?"
-msgstr "Error! No version data in file! Is this a Friendica account file?"
-
-#: include/uimport.php:108 include/uimport.php:119
-msgid "Error! Cannot check nickname"
-msgstr "Error! Cannot check nickname."
-
-#: include/uimport.php:112 include/uimport.php:123
-#, php-format
-msgid "User '%s' already exists on this server!"
-msgstr "User '%s' already exists on this server!"
-
-#: include/uimport.php:145
-msgid "User creation error"
-msgstr "User creation error"
-
-#: include/uimport.php:166
-msgid "User profile creation error"
-msgstr "User profile creation error"
-
-#: include/uimport.php:215
-#, php-format
-msgid "%d contact not imported"
-msgid_plural "%d contacts not imported"
-msgstr[0] "%d contact not imported"
-msgstr[1] "%d contacts not imported"
-
-#: include/uimport.php:281
-msgid "Done. You can now login with your username and password"
-msgstr "Done. You can now login with your username and password"
-
-#: include/user.php:39 mod/settings.php:377
-msgid "Passwords do not match. Password unchanged."
-msgstr "Passwords do not match. Password unchanged."
-
-#: include/user.php:48
-msgid "An invitation is required."
-msgstr "An invitation is required."
-
-#: include/user.php:53
-msgid "Invitation could not be verified."
-msgstr "Invitation could not be verified."
-
-#: include/user.php:61
-msgid "Invalid OpenID url"
-msgstr "Invalid OpenID URL"
-
-#: include/user.php:75 include/auth.php:139
-msgid ""
-"We encountered a problem while logging in with the OpenID you provided. "
-"Please check the correct spelling of the ID."
-msgstr "We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."
-
-#: include/user.php:75 include/auth.php:139
-msgid "The error message was:"
-msgstr "The error message was:"
-
-#: include/user.php:82
-msgid "Please enter the required information."
-msgstr "Please enter the required information."
-
-#: include/user.php:96
-msgid "Please use a shorter name."
-msgstr "Please use a shorter name."
-
-#: include/user.php:98
-msgid "Name too short."
-msgstr "Name too short."
-
-#: include/user.php:106
-msgid "That doesn't appear to be your full (First Last) name."
-msgstr "That doesn't appear to be your full (i.e first and last) name."
-
-#: include/user.php:111
-msgid "Your email domain is not among those allowed on this site."
-msgstr "Your email domain is not allowed on this site."
-
-#: include/user.php:114
-msgid "Not a valid email address."
-msgstr "Not a valid email address."
-
-#: include/user.php:127
-msgid "Cannot use that email."
-msgstr "Cannot use that email."
-
-#: include/user.php:133
-msgid "Your \"nickname\" can only contain \"a-z\", \"0-9\" and \"_\"."
-msgstr "Your \"nickname\" can only contain \"a-z\", \"0-9\" and \"_\"."
-
-#: include/user.php:140 include/user.php:228
-msgid "Nickname is already registered. Please choose another."
-msgstr "Nickname is already registered. Please choose another."
-
-#: include/user.php:150
-msgid ""
-"Nickname was once registered here and may not be re-used. Please choose "
-"another."
-msgstr "Nickname was once registered here and may not be re-used. Please choose another."
-
-#: include/user.php:166
-msgid "SERIOUS ERROR: Generation of security keys failed."
-msgstr "SERIOUS ERROR: Generation of security keys failed."
-
-#: include/user.php:214
-msgid "An error occurred during registration. Please try again."
-msgstr "An error occurred during registration. Please try again."
-
-#: include/user.php:237 view/theme/duepuntozero/config.php:46
-msgid "default"
-msgstr "default"
-
-#: include/user.php:247
-msgid "An error occurred creating your default profile. Please try again."
-msgstr "An error occurred creating your default profile. Please try again."
-
-#: include/user.php:260 include/user.php:264 include/profile_selectors.php:42
-msgid "Friends"
-msgstr "Friends"
-
-#: include/user.php:306 include/user.php:314 include/user.php:322
-#: include/api.php:3702 mod/photos.php:73 mod/photos.php:189
-#: mod/photos.php:776 mod/photos.php:1258 mod/photos.php:1279
-#: mod/photos.php:1865 mod/profile_photo.php:74 mod/profile_photo.php:82
-#: mod/profile_photo.php:90 mod/profile_photo.php:214
-#: mod/profile_photo.php:309 mod/profile_photo.php:319
-msgid "Profile Photos"
-msgstr "Profile photos"
-
-#: include/user.php:397
-#, php-format
-msgid ""
-"\n"
-"\t\tDear %1$s,\n"
-"\t\t\tThank you for registering at %2$s. Your account is pending for approval by the administrator.\n"
-"\t"
-msgstr "\n\t\tDear %1$s,\n\t\t\tThank you for signing up at %2$s. Your account is pending approval by the administrator.\n\t"
-
-#: include/user.php:407
-#, php-format
-msgid "Registration at %s"
-msgstr "Registration at %s"
-
-#: include/user.php:417
-#, php-format
-msgid ""
-"\n"
-"\t\tDear %1$s,\n"
-"\t\t\tThank you for registering at %2$s. Your account has been created.\n"
-"\t"
-msgstr "\n\t\tDear %1$s,\n\t\t\tThank you for signing up at %2$s. Your account has been created.\n\t"
-
-#: include/user.php:421
-#, php-format
-msgid ""
-"\n"
-"\t\tThe login details are as follows:\n"
-"\t\t\tSite Location:\t%3$s\n"
-"\t\t\tLogin Name:\t%1$s\n"
-"\t\t\tPassword:\t%5$s\n"
-"\n"
-"\t\tYou may change your password from your account \"Settings\" page after logging\n"
-"\t\tin.\n"
-"\n"
-"\t\tPlease take a few moments to review the other account settings on that page.\n"
-"\n"
-"\t\tYou may also wish to add some basic information to your default profile\n"
-"\t\t(on the \"Profiles\" page) so that other people can easily find you.\n"
-"\n"
-"\t\tWe recommend setting your full name, adding a profile photo,\n"
-"\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n"
-"\t\tperhaps what country you live in; if you do not wish to be more specific\n"
-"\t\tthan that.\n"
-"\n"
-"\t\tWe fully respect your right to privacy, and none of these items are necessary.\n"
-"\t\tIf you are new and do not know anybody here, they may help\n"
-"\t\tyou to make some new and interesting friends.\n"
-"\n"
-"\n"
-"\t\tThank you and welcome to %2$s."
-msgstr "\n\t\tThe login details are as follows:\n\t\t\tSite Location:\t%3$s\n\t\t\tLogin Name:\t%1$s\n\t\t\tPassword:\t%5$s\n\n\t\tYou may change your password for your account \"Settings\" after logging\n\t\tin.\n\n\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\tYou may wish to add some basic information to your default profile\n\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\tWe recommend setting your full name, adding a profile photo,\n\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\tperhaps what country you live in, if you do not wish to be more specific\n\t\tthan that.\n\n\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\tIf you are new and do not know anybody here, these settings may help to\n\t\tmake new and interesting friends.\n\n\n\t\tThank you and welcome to %2$s."
-
-#: include/user.php:453 mod/admin.php:1398
-#, php-format
-msgid "Registration details for %s"
-msgstr "Registration details for %s"
-
 #: include/profile_selectors.php:6
 msgid "Male"
 msgstr "Male"
@@ -616,7 +367,7 @@ msgstr "Non-specific"
 msgid "Other"
 msgstr "Other"
 
-#: include/profile_selectors.php:6 include/conversation.php:1546
+#: include/profile_selectors.php:6 include/conversation.php:1556
 msgid "Undecided"
 msgid_plural "Undecided"
 msgstr[0] "Undecided"
@@ -710,6 +461,10 @@ msgstr "Unfaithful"
 msgid "Sex Addict"
 msgstr "Sex addict"
 
+#: include/profile_selectors.php:42 include/user.php:262 include/user.php:266
+msgid "Friends"
+msgstr "Friends"
+
 #: include/profile_selectors.php:42
 msgid "Friends/Benefits"
 msgstr "Friends with benefits"
@@ -794,1882 +549,1650 @@ msgstr "Don't care"
 msgid "Ask me"
 msgstr "Ask me"
 
-#: include/NotificationsManager.php:155
-msgid "System"
-msgstr "System"
-
-#: include/NotificationsManager.php:162 include/nav.php:160 mod/admin.php:587
-#: view/theme/frio/theme.php:259
-msgid "Network"
-msgstr "Network"
-
-#: include/NotificationsManager.php:169 mod/profiles.php:699
-#: mod/network.php:868
-msgid "Personal"
-msgstr "Personal"
+#: include/dba_pdo.php:75 include/dba.php:61
+#, php-format
+msgid "Cannot locate DNS info for database server '%s'"
+msgstr "Cannot locate DNS info for database server '%s'"
 
-#: include/NotificationsManager.php:176 include/nav.php:107
-#: include/nav.php:163
-msgid "Home"
-msgstr "Home"
+#: include/photos.php:57 include/photos.php:66 mod/fbrowser.php:43
+#: mod/fbrowser.php:64 mod/photos.php:190 mod/photos.php:1126
+#: mod/photos.php:1259 mod/photos.php:1280 mod/photos.php:1842
+#: mod/photos.php:1856
+msgid "Contact Photos"
+msgstr "Contact photos"
 
-#: include/NotificationsManager.php:183 include/nav.php:168
-msgid "Introductions"
-msgstr "Introductions"
+#: include/acl_selectors.php:355
+msgid "Post to Email"
+msgstr "Post to email"
 
-#: include/NotificationsManager.php:241 include/NotificationsManager.php:253
+#: include/acl_selectors.php:360
 #, php-format
-msgid "%s commented on %s's post"
-msgstr "%s commented on %s's post"
+msgid "Connectors disabled, since \"%s\" is enabled."
+msgstr "Connectors are disabled since \"%s\" is enabled."
 
-#: include/NotificationsManager.php:252
-#, php-format
-msgid "%s created a new post"
-msgstr "%s posted something new"
+#: include/acl_selectors.php:361 mod/settings.php:1190
+msgid "Hide your profile details from unknown viewers?"
+msgstr "Hide profile details from unknown viewers?"
 
-#: include/NotificationsManager.php:267
-#, php-format
-msgid "%s liked %s's post"
-msgstr "%s liked %s's post"
+#: include/acl_selectors.php:367
+msgid "Visible to everybody"
+msgstr "Visible to everybody"
 
-#: include/NotificationsManager.php:280
-#, php-format
-msgid "%s disliked %s's post"
-msgstr "%s disliked %s's post"
+#: include/acl_selectors.php:368 view/theme/vier/config.php:110
+msgid "show"
+msgstr "show"
 
-#: include/NotificationsManager.php:293
-#, php-format
-msgid "%s is attending %s's event"
-msgstr "%s is going to %s's event"
+#: include/acl_selectors.php:369 view/theme/vier/config.php:110
+msgid "don't show"
+msgstr "don't show"
 
-#: include/NotificationsManager.php:306
-#, php-format
-msgid "%s is not attending %s's event"
-msgstr "%s is not going to %s's event"
+#: include/acl_selectors.php:375 mod/editpost.php:126
+msgid "CC: email addresses"
+msgstr "CC: email addresses"
 
-#: include/NotificationsManager.php:319
-#, php-format
-msgid "%s may attend %s's event"
-msgstr "%s may go to %s's event"
+#: include/acl_selectors.php:376 mod/editpost.php:133
+msgid "Example: bob@example.com, mary@example.com"
+msgstr "Example: bob@example.com, mary@example.com"
 
-#: include/NotificationsManager.php:336
-#, php-format
-msgid "%s is now friends with %s"
-msgstr "%s is now friends with %s"
+#: include/acl_selectors.php:378 mod/events.php:512 mod/photos.php:1199
+#: mod/photos.php:1596
+msgid "Permissions"
+msgstr "Permissions"
 
-#: include/NotificationsManager.php:774
-msgid "Friend Suggestion"
-msgstr "Friend suggestion"
+#: include/acl_selectors.php:379
+msgid "Close"
+msgstr "Close"
 
-#: include/NotificationsManager.php:803
-msgid "Friend/Connect Request"
-msgstr "Friend/Contact request"
+#: include/contact_selectors.php:32
+msgid "Unknown | Not categorised"
+msgstr "Unknown | Not categorised"
 
-#: include/NotificationsManager.php:803
-msgid "New Follower"
-msgstr "New follower"
+#: include/contact_selectors.php:33
+msgid "Block immediately"
+msgstr "Block immediately"
 
-#: include/Photo.php:1075 include/Photo.php:1091 include/Photo.php:1099
-#: include/Photo.php:1124 include/message.php:145 mod/wall_upload.php:249
-#: mod/item.php:468
-msgid "Wall Photos"
-msgstr "Wall photos"
+#: include/contact_selectors.php:34
+msgid "Shady, spammer, self-marketer"
+msgstr "Shady, spammer, self-marketer"
 
-#: include/api.php:1102
-#, php-format
-msgid "Daily posting limit of %d posts reached. The post was rejected."
-msgstr "Daily posting limit of %d posts reached. This post was rejected."
+#: include/contact_selectors.php:35
+msgid "Known to me, but no opinion"
+msgstr "Known to me, but no opinion"
 
-#: include/api.php:1123
-#, php-format
-msgid "Weekly posting limit of %d posts reached. The post was rejected."
-msgstr "Weekly posting limit of %d posts reached. This post was rejected."
+#: include/contact_selectors.php:36
+msgid "OK, probably harmless"
+msgstr "OK, probably harmless"
 
-#: include/api.php:1144
-#, php-format
-msgid "Monthly posting limit of %d posts reached. The post was rejected."
-msgstr "Monthly posting limit of %d posts reached. This post was rejected."
+#: include/contact_selectors.php:37
+msgid "Reputable, has my trust"
+msgstr "Reputable, has my trust"
 
-#: include/auth.php:52
-msgid "Logged out."
-msgstr "Logged out."
+#: include/contact_selectors.php:56 mod/admin.php:1072
+msgid "Frequently"
+msgstr "Frequently"
 
-#: include/auth.php:123 include/auth.php:185 mod/openid.php:110
-msgid "Login failed."
-msgstr "Login failed."
+#: include/contact_selectors.php:57 mod/admin.php:1073
+msgid "Hourly"
+msgstr "Hourly"
 
-#: include/bbcode.php:419 include/bbcode.php:1178 include/bbcode.php:1179
-msgid "Image/photo"
-msgstr "Image/Photo"
+#: include/contact_selectors.php:58 mod/admin.php:1074
+msgid "Twice daily"
+msgstr "Twice daily"
 
-#: include/bbcode.php:536
-#, php-format
-msgid "<a href=\"%1$s\" target=\"_blank\">%2$s</a> %3$s"
-msgstr "<a href=\"%1$s\" target=\"_blank\">%2$s</a> %3$s"
+#: include/contact_selectors.php:59 mod/admin.php:1075
+msgid "Daily"
+msgstr "Daily"
 
-#: include/bbcode.php:1135 include/bbcode.php:1157
-msgid "$1 wrote:"
-msgstr "$1 wrote:"
+#: include/contact_selectors.php:60
+msgid "Weekly"
+msgstr "Weekly"
 
-#: include/bbcode.php:1187 include/bbcode.php:1188
-msgid "Encrypted content"
-msgstr "Encrypted content"
+#: include/contact_selectors.php:61
+msgid "Monthly"
+msgstr "Monthly"
 
-#: include/bbcode.php:1303
-msgid "Invalid source protocol"
-msgstr "Invalid source protocol"
+#: include/contact_selectors.php:76 mod/dfrn_request.php:887
+msgid "Friendica"
+msgstr "Friendica"
 
-#: include/bbcode.php:1313
-msgid "Invalid link protocol"
-msgstr "Invalid link protocol"
+#: include/contact_selectors.php:77
+msgid "OStatus"
+msgstr "OStatus"
 
-#: include/dba_pdo.php:75 include/dba.php:59
-#, php-format
-msgid "Cannot locate DNS info for database server '%s'"
-msgstr "Cannot locate DNS info for database server '%s'"
+#: include/contact_selectors.php:78
+msgid "RSS/Atom"
+msgstr "RSS/Atom"
 
-#: include/delivery.php:428
-msgid "(no subject)"
-msgstr "(no subject)"
+#: include/contact_selectors.php:79 include/contact_selectors.php:86
+#: mod/admin.php:1582 mod/admin.php:1595 mod/admin.php:1608 mod/admin.php:1626
+msgid "Email"
+msgstr "Email"
 
-#: include/delivery.php:440 include/enotify.php:46
-msgid "noreply"
-msgstr "noreply"
+#: include/contact_selectors.php:80 mod/dfrn_request.php:889
+#: mod/settings.php:850
+msgid "Diaspora"
+msgstr "Diaspora"
 
-#: include/event.php:19 include/bb2diaspora.php:233 mod/localtime.php:13
-msgid "l F d, Y \\@ g:i A"
-msgstr "l F d, Y \\@ g:i A"
+#: include/contact_selectors.php:81
+msgid "Facebook"
+msgstr "Facebook"
 
-#: include/event.php:36 include/event.php:56 include/event.php:459
-#: include/bb2diaspora.php:239
-msgid "Starts:"
-msgstr "Starts:"
+#: include/contact_selectors.php:82
+msgid "Zot!"
+msgstr "Zot!"
 
-#: include/event.php:39 include/event.php:62 include/event.php:460
-#: include/bb2diaspora.php:247
-msgid "Finishes:"
-msgstr "Finishes:"
+#: include/contact_selectors.php:83
+msgid "LinkedIn"
+msgstr "LinkedIn"
 
-#: include/event.php:43 include/event.php:69 include/event.php:461
-#: include/bb2diaspora.php:256 include/identity.php:340 mod/directory.php:135
-#: mod/notifications.php:246 mod/events.php:496 mod/contacts.php:641
-msgid "Location:"
-msgstr "Location:"
+#: include/contact_selectors.php:84
+msgid "XMPP/IM"
+msgstr "XMPP/IM"
 
-#: include/event.php:408
-msgid "all-day"
-msgstr "All-day"
+#: include/contact_selectors.php:85
+msgid "MySpace"
+msgstr "MySpace"
 
-#: include/event.php:410
-msgid "Sun"
-msgstr "Sun"
+#: include/contact_selectors.php:87
+msgid "Google+"
+msgstr "Google+"
 
-#: include/event.php:411
-msgid "Mon"
-msgstr "Mon"
+#: include/contact_selectors.php:88
+msgid "pump.io"
+msgstr "Pump.io"
 
-#: include/event.php:412
-msgid "Tue"
-msgstr "Tue"
+#: include/contact_selectors.php:89
+msgid "Twitter"
+msgstr "Twitter"
 
-#: include/event.php:413
-msgid "Wed"
-msgstr "Wed"
+#: include/contact_selectors.php:90
+msgid "Diaspora Connector"
+msgstr "Diaspora connector"
 
-#: include/event.php:414
-msgid "Thu"
-msgstr "Thu"
+#: include/contact_selectors.php:91
+msgid "GNU Social Connector"
+msgstr "GNU Social connector"
 
-#: include/event.php:415
-msgid "Fri"
-msgstr "Fri"
+#: include/contact_selectors.php:92
+msgid "pnut"
+msgstr "Pnut"
 
-#: include/event.php:416
-msgid "Sat"
-msgstr "Sat"
+#: include/contact_selectors.php:93
+msgid "App.net"
+msgstr "App.net"
 
-#: include/event.php:418 include/text.php:1212 mod/settings.php:982
-msgid "Sunday"
-msgstr "Sunday"
+#: include/group.php:25
+msgid ""
+"A deleted group with this name was revived. Existing item permissions "
+"<strong>may</strong> apply to this group and any future members. If this is "
+"not what you intended, please create another group with a different name."
+msgstr "A deleted group with this name has been revived. Existing item permissions <strong>may</strong> apply to this group and any future members. If this is not what you intended, please create another group with a different name."
 
-#: include/event.php:419 include/text.php:1212 mod/settings.php:982
-msgid "Monday"
-msgstr "Monday"
+#: include/group.php:201
+msgid "Default privacy group for new contacts"
+msgstr "Default privacy group for new contacts"
 
-#: include/event.php:420 include/text.php:1212
-msgid "Tuesday"
-msgstr "Tuesday"
+#: include/group.php:234
+msgid "Everybody"
+msgstr "Everybody"
 
-#: include/event.php:421 include/text.php:1212
-msgid "Wednesday"
-msgstr "Wednesday"
+#: include/group.php:257
+msgid "edit"
+msgstr "edit"
 
-#: include/event.php:422 include/text.php:1212
-msgid "Thursday"
-msgstr "Thursday"
+#: include/group.php:278 mod/newmember.php:39
+msgid "Groups"
+msgstr "Groups"
 
-#: include/event.php:423 include/text.php:1212
-msgid "Friday"
-msgstr "Friday"
+#: include/group.php:280
+msgid "Edit groups"
+msgstr "Edit groups"
 
-#: include/event.php:424 include/text.php:1212
-msgid "Saturday"
-msgstr "Saturday"
+#: include/group.php:282
+msgid "Edit group"
+msgstr "Edit group"
 
-#: include/event.php:426
-msgid "Jan"
-msgstr "Jan"
+#: include/group.php:283
+msgid "Create a new group"
+msgstr "Create new group"
 
-#: include/event.php:427
-msgid "Feb"
-msgstr "Feb"
+#: include/group.php:284 mod/group.php:101 mod/group.php:198
+msgid "Group Name: "
+msgstr "Group name: "
 
-#: include/event.php:428
-msgid "Mar"
-msgstr "Mar"
+#: include/group.php:286
+msgid "Contacts not in any group"
+msgstr "Contacts not in any group"
 
-#: include/event.php:429
-msgid "Apr"
-msgstr "Apr"
+#: include/group.php:288 mod/network.php:195
+msgid "add"
+msgstr "add"
 
-#: include/event.php:430 include/event.php:443 include/text.php:1216
-msgid "May"
-msgstr "May"
+#: include/Contact.php:381 include/Contact.php:394 include/Contact.php:439
+#: include/conversation.php:1013 include/conversation.php:1029
+#: mod/allfriends.php:71 mod/directory.php:153 mod/dirfind.php:212
+#: mod/match.php:77 mod/suggest.php:85
+msgid "View Profile"
+msgstr "View profile"
 
-#: include/event.php:431
-msgid "Jun"
-msgstr "Jun"
+#: include/Contact.php:395 include/contact_widgets.php:39
+#: include/conversation.php:1026 mod/allfriends.php:72 mod/contacts.php:580
+#: mod/dirfind.php:213 mod/follow.php:143 mod/match.php:78 mod/suggest.php:86
+msgid "Connect/Follow"
+msgstr "Connect/Follow"
 
-#: include/event.php:432
-msgid "Jul"
-msgstr "Jul"
+#: include/Contact.php:438 include/conversation.php:1012
+msgid "View Status"
+msgstr "View status"
 
-#: include/event.php:433
-msgid "Aug"
-msgstr "Aug"
+#: include/Contact.php:440 include/conversation.php:1014
+msgid "View Photos"
+msgstr "View photos"
 
-#: include/event.php:434
-msgid "Sept"
-msgstr "Sep"
+#: include/Contact.php:441 include/conversation.php:1015
+msgid "Network Posts"
+msgstr "Network posts"
 
-#: include/event.php:435
-msgid "Oct"
-msgstr "Oct"
+#: include/Contact.php:442 include/conversation.php:1016
+msgid "View Contact"
+msgstr "View contact"
 
-#: include/event.php:436
-msgid "Nov"
-msgstr "Nov"
+#: include/Contact.php:443
+msgid "Drop Contact"
+msgstr "Drop contact"
 
-#: include/event.php:437
-msgid "Dec"
-msgstr "Dec"
+#: include/Contact.php:444 include/conversation.php:1017
+msgid "Send PM"
+msgstr "Send PM"
 
-#: include/event.php:439 include/text.php:1216
-msgid "January"
-msgstr "January"
-
-#: include/event.php:440 include/text.php:1216
-msgid "February"
-msgstr "February"
+#: include/Contact.php:445 include/conversation.php:1021
+msgid "Poke"
+msgstr "Poke"
 
-#: include/event.php:441 include/text.php:1216
-msgid "March"
-msgstr "March"
+#: include/Contact.php:814
+msgid "Organisation"
+msgstr "Organisation"
 
-#: include/event.php:442 include/text.php:1216
-msgid "April"
-msgstr "April"
+#: include/Contact.php:817
+msgid "News"
+msgstr "News"
 
-#: include/event.php:444 include/text.php:1216
-msgid "June"
-msgstr "June"
+#: include/Contact.php:820
+msgid "Forum"
+msgstr "Forum"
 
-#: include/event.php:445 include/text.php:1216
-msgid "July"
-msgstr "July"
+#: include/ForumManager.php:119 include/nav.php:134 include/text.php:1104
+#: view/theme/vier/theme.php:249
+msgid "Forums"
+msgstr "Forums"
 
-#: include/event.php:446 include/text.php:1216
-msgid "August"
-msgstr "August"
+#: include/ForumManager.php:121 view/theme/vier/theme.php:251
+msgid "External link to forum"
+msgstr "External link to forum"
 
-#: include/event.php:447 include/text.php:1216
-msgid "September"
-msgstr "September"
+#: include/ForumManager.php:124 include/contact_widgets.php:272
+#: include/items.php:2398 mod/content.php:626 object/Item.php:412
+#: view/theme/vier/theme.php:254 src/App.php:524
+msgid "show more"
+msgstr "Show more..."
 
-#: include/event.php:448 include/text.php:1216
-msgid "October"
-msgstr "October"
+#: include/NotificationsManager.php:157
+msgid "System"
+msgstr "System"
 
-#: include/event.php:449 include/text.php:1216
-msgid "November"
-msgstr "November"
+#: include/NotificationsManager.php:164 include/nav.php:161 mod/admin.php:589
+#: view/theme/frio/theme.php:260
+msgid "Network"
+msgstr "Network"
 
-#: include/event.php:450 include/text.php:1216
-msgid "December"
-msgstr "December"
+#: include/NotificationsManager.php:171 mod/network.php:911
+#: mod/profiles.php:700
+msgid "Personal"
+msgstr "Personal"
 
-#: include/event.php:452 mod/cal.php:280 mod/events.php:386
-msgid "today"
-msgstr "today"
+#: include/NotificationsManager.php:178 include/nav.php:108
+#: include/nav.php:164
+msgid "Home"
+msgstr "Home"
 
-#: include/event.php:457
-msgid "No events to display"
-msgstr "No events to display"
+#: include/NotificationsManager.php:185 include/nav.php:169
+msgid "Introductions"
+msgstr "Introductions"
 
-#: include/event.php:570
-msgid "l, F j"
-msgstr "l, F j"
+#: include/NotificationsManager.php:243 include/NotificationsManager.php:255
+#, php-format
+msgid "%s commented on %s's post"
+msgstr "%s commented on %s's post"
 
-#: include/event.php:592
-msgid "Edit event"
-msgstr "Edit event"
+#: include/NotificationsManager.php:254
+#, php-format
+msgid "%s created a new post"
+msgstr "%s posted something new"
 
-#: include/event.php:593
-msgid "Delete event"
-msgstr "Delete event"
+#: include/NotificationsManager.php:269
+#, php-format
+msgid "%s liked %s's post"
+msgstr "%s liked %s's post"
 
-#: include/event.php:619 include/text.php:1613 include/text.php:1620
-msgid "link to source"
-msgstr "Link to source"
+#: include/NotificationsManager.php:282
+#, php-format
+msgid "%s disliked %s's post"
+msgstr "%s disliked %s's post"
 
-#: include/event.php:877
-msgid "Export"
-msgstr "Export"
+#: include/NotificationsManager.php:295
+#, php-format
+msgid "%s is attending %s's event"
+msgstr "%s is going to %s's event"
 
-#: include/event.php:878
-msgid "Export calendar as ical"
-msgstr "Export calendar as ical"
+#: include/NotificationsManager.php:308
+#, php-format
+msgid "%s is not attending %s's event"
+msgstr "%s is not going to %s's event"
 
-#: include/event.php:879
-msgid "Export calendar as csv"
-msgstr "Export calendar as csv"
+#: include/NotificationsManager.php:321
+#, php-format
+msgid "%s may attend %s's event"
+msgstr "%s may go to %s's event"
 
-#: include/follow.php:84 mod/dfrn_request.php:514
-msgid "Disallowed profile URL."
-msgstr "Disallowed profile URL."
+#: include/NotificationsManager.php:338
+#, php-format
+msgid "%s is now friends with %s"
+msgstr "%s is now friends with %s"
 
-#: include/follow.php:89 mod/friendica.php:115 mod/dfrn_request.php:520
-#: mod/admin.php:288 mod/admin.php:306
-msgid "Blocked domain"
-msgstr "Blocked domain"
+#: include/NotificationsManager.php:776
+msgid "Friend Suggestion"
+msgstr "Friend suggestion"
 
-#: include/follow.php:94
-msgid "Connect URL missing."
-msgstr "Connect URL missing."
+#: include/NotificationsManager.php:805
+msgid "Friend/Connect Request"
+msgstr "Friend/Contact request"
 
-#: include/follow.php:122
-msgid ""
-"This site is not configured to allow communications with other networks."
-msgstr "This site is not configured to allow communications with other networks."
+#: include/NotificationsManager.php:805
+msgid "New Follower"
+msgstr "New follower"
 
-#: include/follow.php:123 include/follow.php:137
-msgid "No compatible communication protocols or feeds were discovered."
-msgstr "No compatible communication protocols or feeds were discovered."
+#: include/Photo.php:1076 include/Photo.php:1092 include/Photo.php:1100
+#: include/Photo.php:1125 include/message.php:146 mod/item.php:469
+#: mod/wall_upload.php:250
+msgid "Wall Photos"
+msgstr "Wall photos"
 
-#: include/follow.php:135
-msgid "The profile address specified does not provide adequate information."
-msgstr "The profile address specified does not provide adequate information."
+#: include/api.php:1103
+#, php-format
+msgid "Daily posting limit of %d posts reached. The post was rejected."
+msgstr "Daily posting limit of %d posts reached. This post was rejected."
 
-#: include/follow.php:140
-msgid "An author or name was not found."
-msgstr "An author or name was not found."
+#: include/api.php:1124
+#, php-format
+msgid "Weekly posting limit of %d posts reached. The post was rejected."
+msgstr "Weekly posting limit of %d posts reached. This post was rejected."
 
-#: include/follow.php:143
-msgid "No browser URL could be matched to this address."
-msgstr "No browser URL could be matched to this address."
+#: include/api.php:1145
+#, php-format
+msgid "Monthly posting limit of %d posts reached. The post was rejected."
+msgstr "Monthly posting limit of %d posts reached. This post was rejected."
 
-#: include/follow.php:146
-msgid ""
-"Unable to match @-style Identity Address with a known protocol or email "
-"contact."
-msgstr "Unable to match @-style identity address with a known protocol or email contact."
+#: include/api.php:3717 include/user.php:308 include/user.php:316
+#: include/user.php:324 mod/photos.php:74 mod/photos.php:190
+#: mod/photos.php:777 mod/photos.php:1259 mod/photos.php:1280
+#: mod/photos.php:1866 mod/profile_photo.php:75 mod/profile_photo.php:83
+#: mod/profile_photo.php:91 mod/profile_photo.php:215
+#: mod/profile_photo.php:310 mod/profile_photo.php:320
+msgid "Profile Photos"
+msgstr "Profile photos"
 
-#: include/follow.php:147
-msgid "Use mailto: in front of address to force email check."
-msgstr "Use mailto: in front of address to force email check."
+#: include/auth.php:53
+msgid "Logged out."
+msgstr "Logged out."
 
-#: include/follow.php:153
-msgid ""
-"The profile address specified belongs to a network which has been disabled "
-"on this site."
-msgstr "The profile address specified belongs to a network which has been disabled on this site."
+#: include/auth.php:124 include/auth.php:186 mod/openid.php:111
+msgid "Login failed."
+msgstr "Login failed."
 
-#: include/follow.php:158
+#: include/auth.php:140 include/user.php:77
 msgid ""
-"Limited profile. This person will be unable to receive direct/personal "
-"notifications from you."
-msgstr "Limited profile: This person will be unable to receive direct/private messages from you."
+"We encountered a problem while logging in with the OpenID you provided. "
+"Please check the correct spelling of the ID."
+msgstr "We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."
 
-#: include/follow.php:259
-msgid "Unable to retrieve contact information."
-msgstr "Unable to retrieve contact information."
+#: include/auth.php:140 include/user.php:77
+msgid "The error message was:"
+msgstr "The error message was:"
 
-#: include/message.php:14 include/message.php:168
-msgid "[no subject]"
-msgstr "[no subject]"
+#: include/bb2diaspora.php:234 include/event.php:20 mod/localtime.php:14
+msgid "l F d, Y \\@ g:i A"
+msgstr "l F d, Y \\@ g:i A"
 
-#: include/nav.php:37 mod/navigation.php:21
-msgid "Nothing new here"
-msgstr "Nothing new here"
+#: include/bb2diaspora.php:240 include/event.php:37 include/event.php:57
+#: include/event.php:460
+msgid "Starts:"
+msgstr "Starts:"
 
-#: include/nav.php:41 mod/navigation.php:25
-msgid "Clear notifications"
-msgstr "Clear notifications"
+#: include/bb2diaspora.php:248 include/event.php:40 include/event.php:63
+#: include/event.php:461
+msgid "Finishes:"
+msgstr "Finishes:"
 
-#: include/nav.php:42 include/text.php:1099
-msgid "@name, !forum, #tags, content"
-msgstr "@name, !forum, #tags, content"
+#: include/bb2diaspora.php:257 include/event.php:44 include/event.php:70
+#: include/event.php:462 include/identity.php:339 mod/contacts.php:648
+#: mod/directory.php:135 mod/events.php:497 mod/notifications.php:247
+msgid "Location:"
+msgstr "Location:"
 
-#: include/nav.php:80 view/theme/frio/theme.php:249 boot.php:871
-msgid "Logout"
-msgstr "Logout"
+#: include/bbcode.php:429 include/bbcode.php:1192 include/bbcode.php:1193
+msgid "Image/photo"
+msgstr "Image/Photo"
 
-#: include/nav.php:80 view/theme/frio/theme.php:249
-msgid "End this session"
-msgstr "End this session"
+#: include/bbcode.php:545
+#, php-format
+msgid "<a href=\"%1$s\" target=\"_blank\">%2$s</a> %3$s"
+msgstr "<a href=\"%1$s\" target=\"_blank\">%2$s</a> %3$s"
 
-#: include/nav.php:83 include/identity.php:784 mod/contacts.php:650
-#: mod/contacts.php:846 view/theme/frio/theme.php:252
-msgid "Status"
-msgstr "Status"
+#: include/bbcode.php:1149 include/bbcode.php:1171
+msgid "$1 wrote:"
+msgstr "$1 wrote:"
 
-#: include/nav.php:83 include/nav.php:163 view/theme/frio/theme.php:252
-msgid "Your posts and conversations"
-msgstr "My posts and conversations"
+#: include/bbcode.php:1201 include/bbcode.php:1202
+msgid "Encrypted content"
+msgstr "Encrypted content"
 
-#: include/nav.php:84 include/identity.php:630 include/identity.php:759
-#: include/identity.php:792 mod/newmember.php:20 mod/profperm.php:107
-#: mod/contacts.php:652 mod/contacts.php:854 view/theme/frio/theme.php:253
-msgid "Profile"
-msgstr "Profile"
+#: include/bbcode.php:1321
+msgid "Invalid source protocol"
+msgstr "Invalid source protocol"
 
-#: include/nav.php:84 view/theme/frio/theme.php:253
-msgid "Your profile page"
-msgstr "My profile page"
+#: include/bbcode.php:1332
+msgid "Invalid link protocol"
+msgstr "Invalid link protocol"
 
-#: include/nav.php:85 include/identity.php:800 mod/fbrowser.php:33
-#: view/theme/frio/theme.php:254
-msgid "Photos"
-msgstr "Photos"
+#: include/contact_widgets.php:12
+msgid "Add New Contact"
+msgstr "Add new contact"
 
-#: include/nav.php:85 view/theme/frio/theme.php:254
-msgid "Your photos"
-msgstr "My photos"
+#: include/contact_widgets.php:13
+msgid "Enter address or web location"
+msgstr "Enter address or web location"
 
-#: include/nav.php:86 include/identity.php:808 include/identity.php:811
-#: view/theme/frio/theme.php:255
-msgid "Videos"
-msgstr "Videos"
+#: include/contact_widgets.php:14
+msgid "Example: bob@example.com, http://example.com/barbara"
+msgstr "Example: jo@example.com, http://example.com/jo"
 
-#: include/nav.php:86 view/theme/frio/theme.php:255
-msgid "Your videos"
-msgstr "My videos"
+#: include/contact_widgets.php:16 include/identity.php:229
+#: mod/allfriends.php:88 mod/dirfind.php:210 mod/match.php:93
+#: mod/suggest.php:104
+msgid "Connect"
+msgstr "Connect"
 
-#: include/nav.php:87 include/nav.php:151 include/identity.php:820
-#: include/identity.php:831 mod/cal.php:272 mod/events.php:377
-#: view/theme/frio/theme.php:256 view/theme/frio/theme.php:260
-msgid "Events"
-msgstr "Events"
+#: include/contact_widgets.php:31
+#, php-format
+msgid "%d invitation available"
+msgid_plural "%d invitations available"
+msgstr[0] "%d invitation available"
+msgstr[1] "%d invitations available"
 
-#: include/nav.php:87 view/theme/frio/theme.php:256
-msgid "Your events"
-msgstr "My events"
+#: include/contact_widgets.php:37
+msgid "Find People"
+msgstr "Find people"
 
-#: include/nav.php:88
-msgid "Personal notes"
-msgstr "Personal notes"
+#: include/contact_widgets.php:38
+msgid "Enter name or interest"
+msgstr "Enter name or interest"
 
-#: include/nav.php:88
-msgid "Your personal notes"
-msgstr "My personal notes"
+#: include/contact_widgets.php:40
+msgid "Examples: Robert Morgenstein, Fishing"
+msgstr "Examples: Robert Morgenstein, fishing"
 
-#: include/nav.php:97 mod/bookmarklet.php:14 boot.php:872
-msgid "Login"
-msgstr "Login"
+#: include/contact_widgets.php:41 mod/contacts.php:818 mod/directory.php:202
+msgid "Find"
+msgstr "Find"
 
-#: include/nav.php:97
-msgid "Sign in"
-msgstr "Sign in"
+#: include/contact_widgets.php:42 mod/suggest.php:117
+#: view/theme/vier/theme.php:196
+msgid "Friend Suggestions"
+msgstr "Friend suggestions"
 
-#: include/nav.php:107
-msgid "Home Page"
-msgstr "Home page"
+#: include/contact_widgets.php:43 view/theme/vier/theme.php:195
+msgid "Similar Interests"
+msgstr "Similar interests"
 
-#: include/nav.php:111 mod/register.php:292 boot.php:848
-msgid "Register"
-msgstr "Sign up now >>"
+#: include/contact_widgets.php:44
+msgid "Random Profile"
+msgstr "Random profile"
 
-#: include/nav.php:111
-msgid "Create an account"
-msgstr "Create account"
+#: include/contact_widgets.php:45 view/theme/vier/theme.php:197
+msgid "Invite Friends"
+msgstr "Invite friends"
 
-#: include/nav.php:117 mod/help.php:50 view/theme/vier/theme.php:291
-msgid "Help"
-msgstr "Help"
-
-#: include/nav.php:117
-msgid "Help and documentation"
-msgstr "Help and documentation"
+#: include/contact_widgets.php:46
+msgid "View Global Directory"
+msgstr "View global directory"
 
-#: include/nav.php:121
-msgid "Apps"
-msgstr "Apps"
+#: include/contact_widgets.php:132
+msgid "Networks"
+msgstr "Networks"
 
-#: include/nav.php:121
-msgid "Addon applications, utilities, games"
-msgstr "Addon applications, utilities, games"
+#: include/contact_widgets.php:135
+msgid "All Networks"
+msgstr "All networks"
 
-#: include/nav.php:125 include/text.php:1096 mod/search.php:152
-msgid "Search"
-msgstr "Search"
+#: include/contact_widgets.php:170 include/contact_widgets.php:205
+msgid "Everything"
+msgstr "Everything"
 
-#: include/nav.php:125
-msgid "Search site content"
-msgstr "Search site content"
+#: include/contact_widgets.php:202
+msgid "Categories"
+msgstr "Categories"
 
-#: include/nav.php:128 include/text.php:1104
-msgid "Full Text"
-msgstr "Full text"
+#: include/contact_widgets.php:267
+#, php-format
+msgid "%d contact in common"
+msgid_plural "%d contacts in common"
+msgstr[0] "%d contact in common"
+msgstr[1] "%d contacts in common"
 
-#: include/nav.php:129 include/text.php:1105
-msgid "Tags"
-msgstr "Tags"
+#: include/conversation.php:135 include/conversation.php:287
+#: include/like.php:184 include/text.php:1885
+msgid "event"
+msgstr "event"
 
-#: include/nav.php:130 include/nav.php:194 include/identity.php:853
-#: include/identity.php:856 include/text.php:1106 mod/viewcontacts.php:124
-#: mod/contacts.php:805 mod/contacts.php:866 view/theme/frio/theme.php:263
-msgid "Contacts"
-msgstr "Contacts"
+#: include/conversation.php:138 include/conversation.php:148
+#: include/conversation.php:290 include/conversation.php:299
+#: include/diaspora.php:1663 include/like.php:182 mod/subthread.php:90
+#: mod/tagger.php:64
+msgid "status"
+msgstr "status"
 
-#: include/nav.php:145 include/nav.php:147 mod/community.php:32
-msgid "Community"
-msgstr "Community"
+#: include/conversation.php:143 include/conversation.php:295
+#: include/like.php:182 include/text.php:1887 mod/subthread.php:90
+#: mod/tagger.php:64
+msgid "photo"
+msgstr "photo"
 
-#: include/nav.php:145
-msgid "Conversations on this site"
-msgstr "Public conversations on this site"
+#: include/conversation.php:155 include/diaspora.php:1659 include/like.php:31
+#, php-format
+msgid "%1$s likes %2$s's %3$s"
+msgstr "%1$s likes %2$s's %3$s"
 
-#: include/nav.php:147
-msgid "Conversations on the network"
-msgstr "Conversations on the network"
+#: include/conversation.php:158 include/like.php:35 include/like.php:40
+#, php-format
+msgid "%1$s doesn't like %2$s's %3$s"
+msgstr "%1$s doesn't like %2$s's %3$s"
 
-#: include/nav.php:151 include/identity.php:823 include/identity.php:834
-#: view/theme/frio/theme.php:260
-msgid "Events and Calendar"
-msgstr "Events and calendar"
+#: include/conversation.php:161
+#, php-format
+msgid "%1$s attends %2$s's %3$s"
+msgstr "%1$s goes to %2$s's %3$s"
 
-#: include/nav.php:154
-msgid "Directory"
-msgstr "Directory"
+#: include/conversation.php:164
+#, php-format
+msgid "%1$s doesn't attend %2$s's %3$s"
+msgstr "%1$s doesn't go %2$s's %3$s"
 
-#: include/nav.php:154
-msgid "People directory"
-msgstr "People directory"
+#: include/conversation.php:167
+#, php-format
+msgid "%1$s attends maybe %2$s's %3$s"
+msgstr "%1$s might go to %2$s's %3$s"
 
-#: include/nav.php:156
-msgid "Information"
-msgstr "Information"
+#: include/conversation.php:200 mod/dfrn_confirm.php:480
+#, php-format
+msgid "%1$s is now friends with %2$s"
+msgstr "%1$s is now friends with %2$s"
 
-#: include/nav.php:156
-msgid "Information about this friendica instance"
-msgstr "Information about this Friendica instance"
+#: include/conversation.php:241
+#, php-format
+msgid "%1$s poked %2$s"
+msgstr "%1$s poked %2$s"
 
-#: include/nav.php:160 view/theme/frio/theme.php:259
-msgid "Conversations from your friends"
-msgstr "My friends' conversations"
+#: include/conversation.php:262 mod/mood.php:65
+#, php-format
+msgid "%1$s is currently %2$s"
+msgstr "%1$s is currently %2$s"
 
-#: include/nav.php:161
-msgid "Network Reset"
-msgstr "Network reset"
+#: include/conversation.php:309 mod/tagger.php:97
+#, php-format
+msgid "%1$s tagged %2$s's %3$s with %4$s"
+msgstr "%1$s tagged %2$s's %3$s with %4$s"
 
-#: include/nav.php:161
-msgid "Load Network page with no filters"
-msgstr "Load network page without filters"
+#: include/conversation.php:336
+msgid "post/item"
+msgstr "Post/Item"
 
-#: include/nav.php:168
-msgid "Friend Requests"
-msgstr "Friend requests"
+#: include/conversation.php:337
+#, php-format
+msgid "%1$s marked %2$s's %3$s as favorite"
+msgstr "%1$s marked %2$s's %3$s as favourite"
 
-#: include/nav.php:171 mod/notifications.php:98
-msgid "Notifications"
-msgstr "Notifications"
+#: include/conversation.php:615 mod/content.php:374 mod/photos.php:1665
+#: mod/profiles.php:345
+msgid "Likes"
+msgstr "Likes"
 
-#: include/nav.php:172
-msgid "See all notifications"
-msgstr "See all notifications"
+#: include/conversation.php:615 mod/content.php:374 mod/photos.php:1665
+#: mod/profiles.php:349
+msgid "Dislikes"
+msgstr "Dislikes"
 
-#: include/nav.php:173 mod/settings.php:907
-msgid "Mark as seen"
-msgstr "Mark as seen"
+#: include/conversation.php:616 include/conversation.php:1550
+#: mod/content.php:375 mod/photos.php:1666
+msgid "Attending"
+msgid_plural "Attending"
+msgstr[0] "Attending"
+msgstr[1] "Attending"
 
-#: include/nav.php:173
-msgid "Mark all system notifications seen"
-msgstr "Mark all system notifications seen"
+#: include/conversation.php:616 mod/content.php:375 mod/photos.php:1666
+msgid "Not attending"
+msgstr "Not attending"
 
-#: include/nav.php:177 mod/message.php:181 view/theme/frio/theme.php:261
-msgid "Messages"
-msgstr "Messages"
+#: include/conversation.php:616 mod/content.php:375 mod/photos.php:1666
+msgid "Might attend"
+msgstr "Might attend"
 
-#: include/nav.php:177 view/theme/frio/theme.php:261
-msgid "Private mail"
-msgstr "Private messages"
+#: include/conversation.php:753 mod/content.php:455 mod/content.php:761
+#: mod/photos.php:1731 object/Item.php:142
+msgid "Select"
+msgstr "Select"
 
-#: include/nav.php:178
-msgid "Inbox"
-msgstr "Inbox"
+#: include/conversation.php:754 mod/admin.php:1600 mod/contacts.php:828
+#: mod/contacts.php:1027 mod/content.php:456 mod/content.php:762
+#: mod/photos.php:1732 mod/settings.php:746 object/Item.php:143
+msgid "Delete"
+msgstr "Delete"
 
-#: include/nav.php:179
-msgid "Outbox"
-msgstr "Outbox"
+#: include/conversation.php:797 mod/content.php:489 mod/content.php:917
+#: mod/content.php:918 object/Item.php:345 object/Item.php:346
+#, php-format
+msgid "View %s's profile @ %s"
+msgstr "View %s's profile @ %s"
 
-#: include/nav.php:180 mod/message.php:18
-msgid "New Message"
-msgstr "New Message"
+#: include/conversation.php:809 object/Item.php:333
+msgid "Categories:"
+msgstr "Categories:"
 
-#: include/nav.php:183
-msgid "Manage"
-msgstr "Manage"
+#: include/conversation.php:810 object/Item.php:334
+msgid "Filed under:"
+msgstr "Filed under:"
 
-#: include/nav.php:183
-msgid "Manage other pages"
-msgstr "Manage other pages"
+#: include/conversation.php:817 mod/content.php:499 mod/content.php:930
+#: object/Item.php:359
+#, php-format
+msgid "%s from %s"
+msgstr "%s from %s"
 
-#: include/nav.php:186 mod/settings.php:83
-msgid "Delegations"
-msgstr "Delegations"
+#: include/conversation.php:833 mod/content.php:515
+msgid "View in context"
+msgstr "View in context"
 
-#: include/nav.php:186 mod/delegate.php:132
-msgid "Delegate Page Management"
-msgstr "Delegate Page Management"
+#: include/conversation.php:835 include/conversation.php:1307
+#: mod/content.php:517 mod/content.php:955 mod/editpost.php:117
+#: mod/message.php:337 mod/message.php:522 mod/photos.php:1630
+#: mod/wallmessage.php:143 object/Item.php:384
+msgid "Please wait"
+msgstr "Please wait"
 
-#: include/nav.php:188 mod/newmember.php:15 mod/admin.php:1708
-#: mod/admin.php:1984 mod/settings.php:113 view/theme/frio/theme.php:262
-msgid "Settings"
-msgstr "Settings"
+#: include/conversation.php:912
+msgid "remove"
+msgstr "Remove"
 
-#: include/nav.php:188 view/theme/frio/theme.php:262
-msgid "Account settings"
-msgstr "Account settings"
+#: include/conversation.php:916
+msgid "Delete Selected Items"
+msgstr "Delete selected items"
 
-#: include/nav.php:191 include/identity.php:294
-msgid "Profiles"
-msgstr "Profiles"
+#: include/conversation.php:1011 view/theme/frio/theme.php:347
+msgid "Follow Thread"
+msgstr "Follow thread"
 
-#: include/nav.php:191
-msgid "Manage/Edit Profiles"
-msgstr "Manage/Edit profiles"
+#: include/conversation.php:1148
+#, php-format
+msgid "%s likes this."
+msgstr "%s likes this."
 
-#: include/nav.php:194 view/theme/frio/theme.php:263
-msgid "Manage/edit friends and contacts"
-msgstr "Manage/Edit friends and contacts"
+#: include/conversation.php:1151
+#, php-format
+msgid "%s doesn't like this."
+msgstr "%s doesn't like this."
 
-#: include/nav.php:199 mod/admin.php:202
-msgid "Admin"
-msgstr "Admin"
+#: include/conversation.php:1154
+#, php-format
+msgid "%s attends."
+msgstr "%s attends."
 
-#: include/nav.php:199
-msgid "Site setup and configuration"
-msgstr "Site setup and configuration"
+#: include/conversation.php:1157
+#, php-format
+msgid "%s doesn't attend."
+msgstr "%s doesn't attend."
 
-#: include/nav.php:202
-msgid "Navigation"
-msgstr "Navigation"
+#: include/conversation.php:1160
+#, php-format
+msgid "%s attends maybe."
+msgstr "%s may attend."
 
-#: include/nav.php:202
-msgid "Site map"
-msgstr "Site map"
+#: include/conversation.php:1171
+msgid "and"
+msgstr "and"
 
-#: include/network.php:687
-msgid "view full size"
-msgstr "view full size"
+#: include/conversation.php:1177
+#, php-format
+msgid ", and %d other people"
+msgstr ", and %d other people"
 
-#: include/photos.php:57 include/photos.php:66 mod/fbrowser.php:42
-#: mod/fbrowser.php:63 mod/photos.php:189 mod/photos.php:1125
-#: mod/photos.php:1258 mod/photos.php:1279 mod/photos.php:1841
-#: mod/photos.php:1855
-msgid "Contact Photos"
-msgstr "Contact photos"
+#: include/conversation.php:1186
+#, php-format
+msgid "<span  %1$s>%2$d people</span> like this"
+msgstr "<span  %1$s>%2$d people</span> like this"
 
-#: include/security.php:63
-msgid "Welcome "
-msgstr "Welcome "
+#: include/conversation.php:1187
+#, php-format
+msgid "%s like this."
+msgstr "%s like this."
 
-#: include/security.php:64
-msgid "Please upload a profile photo."
-msgstr "Please upload a profile photo."
+#: include/conversation.php:1190
+#, php-format
+msgid "<span  %1$s>%2$d people</span> don't like this"
+msgstr "<span  %1$s>%2$d people</span> don't like this"
 
-#: include/security.php:66
-msgid "Welcome back "
-msgstr "Welcome back "
+#: include/conversation.php:1191
+#, php-format
+msgid "%s don't like this."
+msgstr "%s don't like this."
 
-#: include/security.php:438
-msgid ""
-"The form security token was not correct. This probably happened because the "
-"form has been opened for too long (>3 hours) before submitting it."
-msgstr "The form security token was incorrect. This probably happened because the form has not been submitted within 3 hours."
+#: include/conversation.php:1194
+#, php-format
+msgid "<span  %1$s>%2$d people</span> attend"
+msgstr "<span  %1$s>%2$d people</span> attend"
 
-#: include/contact_widgets.php:9
-msgid "Add New Contact"
-msgstr "Add new contact"
+#: include/conversation.php:1195
+#, php-format
+msgid "%s attend."
+msgstr "%s attend."
 
-#: include/contact_widgets.php:10
-msgid "Enter address or web location"
-msgstr "Enter address or web location"
+#: include/conversation.php:1198
+#, php-format
+msgid "<span  %1$s>%2$d people</span> don't attend"
+msgstr "<span  %1$s>%2$d people</span> don't attend"
 
-#: include/contact_widgets.php:11
-msgid "Example: bob@example.com, http://example.com/barbara"
-msgstr "Example: jo@example.com, http://example.com/jo"
+#: include/conversation.php:1199
+#, php-format
+msgid "%s don't attend."
+msgstr "%s don't attend."
 
-#: include/contact_widgets.php:13 include/identity.php:228
-#: mod/allfriends.php:87 mod/match.php:92 mod/suggest.php:103
-#: mod/dirfind.php:209
-msgid "Connect"
-msgstr "Connect"
+#: include/conversation.php:1202
+#, php-format
+msgid "<span  %1$s>%2$d people</span> attend maybe"
+msgstr "<span  %1$s>%2$d people</span> attend maybe"
 
-#: include/contact_widgets.php:28
+#: include/conversation.php:1203
 #, php-format
-msgid "%d invitation available"
-msgid_plural "%d invitations available"
-msgstr[0] "%d invitation available"
-msgstr[1] "%d invitations available"
+msgid "%s anttend maybe."
+msgstr "%s attend maybe."
 
-#: include/contact_widgets.php:34
-msgid "Find People"
-msgstr "Find people"
+#: include/conversation.php:1232 include/conversation.php:1248
+msgid "Visible to <strong>everybody</strong>"
+msgstr "Visible to <strong>everybody</strong>"
 
-#: include/contact_widgets.php:35
-msgid "Enter name or interest"
-msgstr "Enter name or interest"
+#: include/conversation.php:1233 include/conversation.php:1249
+#: mod/message.php:271 mod/message.php:278 mod/message.php:418
+#: mod/message.php:425 mod/wallmessage.php:117 mod/wallmessage.php:124
+msgid "Please enter a link URL:"
+msgstr "Please enter a link URL:"
 
-#: include/contact_widgets.php:36 include/Contact.php:389
-#: include/conversation.php:1016 mod/allfriends.php:71 mod/match.php:77
-#: mod/suggest.php:85 mod/dirfind.php:212 mod/follow.php:108
-#: mod/contacts.php:615
-msgid "Connect/Follow"
-msgstr "Connect/Follow"
+#: include/conversation.php:1234 include/conversation.php:1250
+msgid "Please enter a video link/URL:"
+msgstr "Please enter a video link/URL:"
 
-#: include/contact_widgets.php:37
-msgid "Examples: Robert Morgenstein, Fishing"
-msgstr "Examples: Robert Morgenstein, fishing"
+#: include/conversation.php:1235 include/conversation.php:1251
+msgid "Please enter an audio link/URL:"
+msgstr "Please enter an audio link/URL:"
 
-#: include/contact_widgets.php:38 mod/directory.php:202 mod/contacts.php:811
-msgid "Find"
-msgstr "Find"
+#: include/conversation.php:1236 include/conversation.php:1252
+msgid "Tag term:"
+msgstr "Tag term:"
 
-#: include/contact_widgets.php:39 mod/suggest.php:116
-#: view/theme/vier/theme.php:195
-msgid "Friend Suggestions"
-msgstr "Friend suggestions"
+#: include/conversation.php:1237 include/conversation.php:1253
+#: mod/filer.php:31
+msgid "Save to Folder:"
+msgstr "Save to folder:"
 
-#: include/contact_widgets.php:40 view/theme/vier/theme.php:194
-msgid "Similar Interests"
-msgstr "Similar interests"
+#: include/conversation.php:1238 include/conversation.php:1254
+msgid "Where are you right now?"
+msgstr "Where are you right now?"
 
-#: include/contact_widgets.php:41
-msgid "Random Profile"
-msgstr "Random profile"
+#: include/conversation.php:1239
+msgid "Delete item(s)?"
+msgstr "Delete item(s)?"
 
-#: include/contact_widgets.php:42 view/theme/vier/theme.php:196
-msgid "Invite Friends"
-msgstr "Invite friends"
+#: include/conversation.php:1288
+msgid "Share"
+msgstr "Share"
 
-#: include/contact_widgets.php:43
-msgid "View Global Directory"
-msgstr "View global directory"
+#: include/conversation.php:1289 mod/editpost.php:103 mod/message.php:335
+#: mod/message.php:519 mod/wallmessage.php:141
+msgid "Upload photo"
+msgstr "Upload photo"
 
-#: include/contact_widgets.php:131
-msgid "Networks"
-msgstr "Networks"
+#: include/conversation.php:1290 mod/editpost.php:104
+msgid "upload photo"
+msgstr "upload photo"
 
-#: include/contact_widgets.php:134
-msgid "All Networks"
-msgstr "All networks"
+#: include/conversation.php:1291 mod/editpost.php:105
+msgid "Attach file"
+msgstr "Attach file"
 
-#: include/contact_widgets.php:169 include/contact_widgets.php:204
-msgid "Everything"
-msgstr "Everything"
+#: include/conversation.php:1292 mod/editpost.php:106
+msgid "attach file"
+msgstr "attach file"
 
-#: include/contact_widgets.php:201
-msgid "Categories"
-msgstr "Categories"
+#: include/conversation.php:1293 mod/editpost.php:107 mod/message.php:336
+#: mod/message.php:520 mod/wallmessage.php:142
+msgid "Insert web link"
+msgstr "Insert web link"
 
-#: include/contact_widgets.php:270
-#, php-format
-msgid "%d contact in common"
-msgid_plural "%d contacts in common"
-msgstr[0] "%d contact in common"
-msgstr[1] "%d contacts in common"
+#: include/conversation.php:1294 mod/editpost.php:108
+msgid "web link"
+msgstr "web link"
 
-#: include/dfrn.php:1309
-#, php-format
-msgid "%s\\'s birthday"
-msgstr "%s\\'s birthday"
+#: include/conversation.php:1295 mod/editpost.php:109
+msgid "Insert video link"
+msgstr "Insert video link"
 
-#: include/Contact.php:375 include/Contact.php:388 include/Contact.php:433
-#: include/conversation.php:1003 include/conversation.php:1019
-#: mod/allfriends.php:70 mod/directory.php:153 mod/match.php:76
-#: mod/suggest.php:84 mod/dirfind.php:211
-msgid "View Profile"
-msgstr "View profile"
+#: include/conversation.php:1296 mod/editpost.php:110
+msgid "video link"
+msgstr "video link"
 
-#: include/Contact.php:432 include/conversation.php:1002
-msgid "View Status"
-msgstr "View status"
+#: include/conversation.php:1297 mod/editpost.php:111
+msgid "Insert audio link"
+msgstr "Insert audio link"
 
-#: include/Contact.php:434 include/conversation.php:1004
-msgid "View Photos"
-msgstr "View photos"
+#: include/conversation.php:1298 mod/editpost.php:112
+msgid "audio link"
+msgstr "audio link"
 
-#: include/Contact.php:435 include/conversation.php:1005
-msgid "Network Posts"
-msgstr "Network posts"
+#: include/conversation.php:1299 mod/editpost.php:113
+msgid "Set your location"
+msgstr "Set your location"
 
-#: include/Contact.php:436 include/conversation.php:1006
-msgid "View Contact"
-msgstr "View contact"
+#: include/conversation.php:1300 mod/editpost.php:114
+msgid "set location"
+msgstr "set location"
 
-#: include/Contact.php:437
-msgid "Drop Contact"
-msgstr "Drop contact"
+#: include/conversation.php:1301 mod/editpost.php:115
+msgid "Clear browser location"
+msgstr "Clear browser location"
 
-#: include/Contact.php:438 include/conversation.php:1007
-msgid "Send PM"
-msgstr "Send PM"
+#: include/conversation.php:1302 mod/editpost.php:116
+msgid "clear location"
+msgstr "clear location"
 
-#: include/Contact.php:439 include/conversation.php:1011
-msgid "Poke"
-msgstr "Poke"
+#: include/conversation.php:1304 mod/editpost.php:130
+msgid "Set title"
+msgstr "Set title"
 
-#: include/Contact.php:808
-msgid "Organisation"
-msgstr "Organisation"
+#: include/conversation.php:1306 mod/editpost.php:132
+msgid "Categories (comma-separated list)"
+msgstr "Categories (comma-separated list)"
 
-#: include/Contact.php:811
-msgid "News"
-msgstr "News"
+#: include/conversation.php:1308 mod/editpost.php:118
+msgid "Permission settings"
+msgstr "Permission settings"
 
-#: include/Contact.php:814
-msgid "Forum"
-msgstr "Forum"
+#: include/conversation.php:1309 mod/editpost.php:147
+msgid "permissions"
+msgstr "permissions"
 
-#: include/acl_selectors.php:355
-msgid "Post to Email"
-msgstr "Post to email"
+#: include/conversation.php:1317 mod/editpost.php:127
+msgid "Public post"
+msgstr "Public post"
 
-#: include/acl_selectors.php:360
-#, php-format
-msgid "Connectors disabled, since \"%s\" is enabled."
-msgstr "Connectors are disabled since \"%s\" is enabled."
+#: include/conversation.php:1322 mod/content.php:739 mod/editpost.php:138
+#: mod/events.php:507 mod/photos.php:1650 mod/photos.php:1692
+#: mod/photos.php:1772 object/Item.php:706
+msgid "Preview"
+msgstr "Preview"
 
-#: include/acl_selectors.php:361 mod/settings.php:1189
-msgid "Hide your profile details from unknown viewers?"
-msgstr "Hide profile details from unknown viewers?"
+#: include/conversation.php:1326 include/items.php:2139 mod/contacts.php:459
+#: mod/dfrn_request.php:895 mod/editpost.php:141 mod/fbrowser.php:103
+#: mod/fbrowser.php:138 mod/follow.php:161 mod/message.php:210
+#: mod/photos.php:248 mod/photos.php:340 mod/settings.php:684
+#: mod/settings.php:710 mod/suggest.php:35 mod/tagrm.php:14 mod/tagrm.php:99
+#: mod/unfollow.php:117 mod/videos.php:135
+msgid "Cancel"
+msgstr "Cancel"
 
-#: include/acl_selectors.php:367
-msgid "Visible to everybody"
-msgstr "Visible to everybody"
+#: include/conversation.php:1332
+msgid "Post to Groups"
+msgstr "Post to groups"
 
-#: include/acl_selectors.php:368 view/theme/vier/config.php:109
-msgid "show"
-msgstr "show"
+#: include/conversation.php:1333
+msgid "Post to Contacts"
+msgstr "Post to contacts"
 
-#: include/acl_selectors.php:369 view/theme/vier/config.php:109
-msgid "don't show"
-msgstr "don't show"
+#: include/conversation.php:1334
+msgid "Private post"
+msgstr "Private post"
 
-#: include/acl_selectors.php:375 mod/editpost.php:125
-msgid "CC: email addresses"
-msgstr "CC: email addresses"
+#: include/conversation.php:1339 include/identity.php:267 mod/editpost.php:145
+msgid "Message"
+msgstr "Message"
 
-#: include/acl_selectors.php:376 mod/editpost.php:132
-msgid "Example: bob@example.com, mary@example.com"
-msgstr "Example: bob@example.com, mary@example.com"
+#: include/conversation.php:1340 mod/editpost.php:146
+msgid "Browser"
+msgstr "Browser"
 
-#: include/acl_selectors.php:378 mod/photos.php:1198 mod/photos.php:1595
-#: mod/events.php:511
-msgid "Permissions"
-msgstr "Permissions"
+#: include/conversation.php:1522
+msgid "View all"
+msgstr "View all"
 
-#: include/acl_selectors.php:379
-msgid "Close"
-msgstr "Close"
+#: include/conversation.php:1544
+msgid "Like"
+msgid_plural "Likes"
+msgstr[0] "Like"
+msgstr[1] "Likes"
 
-#: include/contact_selectors.php:32
-msgid "Unknown | Not categorised"
-msgstr "Unknown | Not categorised"
+#: include/conversation.php:1547
+msgid "Dislike"
+msgid_plural "Dislikes"
+msgstr[0] "Dislike"
+msgstr[1] "Dislikes"
 
-#: include/contact_selectors.php:33
-msgid "Block immediately"
-msgstr "Block immediately"
+#: include/conversation.php:1553
+msgid "Not Attending"
+msgid_plural "Not Attending"
+msgstr[0] "Not attending"
+msgstr[1] "Not attending"
 
-#: include/contact_selectors.php:34
-msgid "Shady, spammer, self-marketer"
-msgstr "Shady, spammer, self-marketer"
+#: include/dbstructure.php:26
+msgid "There are no tables on MyISAM."
+msgstr "There are no tables on MyISAM."
 
-#: include/contact_selectors.php:35
-msgid "Known to me, but no opinion"
-msgstr "Known to me, but no opinion"
+#: include/dbstructure.php:67
+#, php-format
+msgid ""
+"\n"
+"\t\t\tThe friendica developers released update %s recently,\n"
+"\t\t\tbut when I tried to install it, something went terribly wrong.\n"
+"\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n"
+"\t\t\tfriendica developer if you can not help me on your own. My database might be invalid."
+msgstr "\n\t\t\tThe Friendica developers released update %s recently,\n\t\t\tbut when I tried to install it, something went terribly wrong.\n\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n\t\t\tFriendica developer if you can not help me on your own. My database\n                        might be invalid."
 
-#: include/contact_selectors.php:36
-msgid "OK, probably harmless"
-msgstr "OK, probably harmless"
+#: include/dbstructure.php:72
+#, php-format
+msgid ""
+"The error message is\n"
+"[pre]%s[/pre]"
+msgstr "The error message is\n[pre]%s[/pre]"
 
-#: include/contact_selectors.php:37
-msgid "Reputable, has my trust"
-msgstr "Reputable, has my trust"
+#: include/dbstructure.php:197
+#, php-format
+msgid ""
+"\n"
+"Error %d occurred during database update:\n"
+"%s\n"
+msgstr "\nError %d occurred during database update:\n%s\n"
 
-#: include/contact_selectors.php:56 mod/admin.php:1070
-msgid "Frequently"
-msgstr "Frequently"
+#: include/dbstructure.php:200
+msgid "Errors encountered performing database changes: "
+msgstr "Errors encountered performing database changes: "
 
-#: include/contact_selectors.php:57 mod/admin.php:1071
-msgid "Hourly"
-msgstr "Hourly"
+#: include/dbstructure.php:208
+msgid ": Database update"
+msgstr ": Database update"
 
-#: include/contact_selectors.php:58 mod/admin.php:1072
-msgid "Twice daily"
-msgstr "Twice daily"
+#: include/dbstructure.php:440
+#, php-format
+msgid "%s: updating %s table."
+msgstr "%s: updating %s table."
 
-#: include/contact_selectors.php:59 mod/admin.php:1073
-msgid "Daily"
-msgstr "Daily"
+#: include/delivery.php:429
+msgid "(no subject)"
+msgstr "(no subject)"
 
-#: include/contact_selectors.php:60
-msgid "Weekly"
-msgstr "Weekly"
+#: include/delivery.php:441 include/enotify.php:47
+msgid "noreply"
+msgstr "noreply"
 
-#: include/contact_selectors.php:61
-msgid "Monthly"
-msgstr "Monthly"
+#: include/dfrn.php:1331
+#, php-format
+msgid "%s\\'s birthday"
+msgstr "%s\\'s birthday"
 
-#: include/contact_selectors.php:76 mod/dfrn_request.php:886
-msgid "Friendica"
-msgstr "Friendica"
+#: include/diaspora.php:2226
+msgid "Sharing notification from Diaspora network"
+msgstr "Sharing notification from Diaspora network"
 
-#: include/contact_selectors.php:77
-msgid "OStatus"
-msgstr "OStatus"
+#: include/diaspora.php:3183
+msgid "Attachments:"
+msgstr "Attachments:"
 
-#: include/contact_selectors.php:78
-msgid "RSS/Atom"
-msgstr "RSS/Atom"
+#: include/enotify.php:28
+msgid "Friendica Notification"
+msgstr "Friendica notification"
 
-#: include/contact_selectors.php:79 include/contact_selectors.php:86
-#: mod/admin.php:1580 mod/admin.php:1593 mod/admin.php:1606 mod/admin.php:1624
-msgid "Email"
-msgstr "Email"
-
-#: include/contact_selectors.php:80 mod/dfrn_request.php:888
-#: mod/settings.php:849
-msgid "Diaspora"
-msgstr "Diaspora"
-
-#: include/contact_selectors.php:81
-msgid "Facebook"
-msgstr "Facebook"
-
-#: include/contact_selectors.php:82
-msgid "Zot!"
-msgstr "Zot!"
-
-#: include/contact_selectors.php:83
-msgid "LinkedIn"
-msgstr "LinkedIn"
-
-#: include/contact_selectors.php:84
-msgid "XMPP/IM"
-msgstr "XMPP/IM"
-
-#: include/contact_selectors.php:85
-msgid "MySpace"
-msgstr "MySpace"
+#: include/enotify.php:31
+msgid "Thank You,"
+msgstr "Thank you"
 
-#: include/contact_selectors.php:87
-msgid "Google+"
-msgstr "Google+"
+#: include/enotify.php:34
+#, php-format
+msgid "%s Administrator"
+msgstr "%s Administrator"
 
-#: include/contact_selectors.php:88
-msgid "pump.io"
-msgstr "Pump.io"
+#: include/enotify.php:36
+#, php-format
+msgid "%1$s, %2$s Administrator"
+msgstr "%1$s, %2$s Administrator"
 
-#: include/contact_selectors.php:89
-msgid "Twitter"
-msgstr "Twitter"
+#: include/enotify.php:81
+#, php-format
+msgid "%s <!item_type!>"
+msgstr "%s <!item_type!>"
 
-#: include/contact_selectors.php:90
-msgid "Diaspora Connector"
-msgstr "Diaspora connector"
+#: include/enotify.php:94
+#, php-format
+msgid "[Friendica:Notify] New mail received at %s"
+msgstr "[Friendica:Notify] New mail received at %s"
 
-#: include/contact_selectors.php:91
-msgid "GNU Social Connector"
-msgstr "GNU Social connector"
+#: include/enotify.php:96
+#, php-format
+msgid "%1$s sent you a new private message at %2$s."
+msgstr "%1$s sent you a new private message at %2$s."
 
-#: include/contact_selectors.php:92
-msgid "pnut"
-msgstr "Pnut"
+#: include/enotify.php:97
+#, php-format
+msgid "%1$s sent you %2$s."
+msgstr "%1$s sent you %2$s."
 
-#: include/contact_selectors.php:93
-msgid "App.net"
-msgstr "App.net"
+#: include/enotify.php:97
+msgid "a private message"
+msgstr "a private message"
 
-#: include/conversation.php:160
+#: include/enotify.php:99
 #, php-format
-msgid "%1$s attends %2$s's %3$s"
-msgstr "%1$s goes to %2$s's %3$s"
+msgid "Please visit %s to view and/or reply to your private messages."
+msgstr "Please visit %s to view or reply to your private messages."
 
-#: include/conversation.php:163
+#: include/enotify.php:145
 #, php-format
-msgid "%1$s doesn't attend %2$s's %3$s"
-msgstr "%1$s doesn't go %2$s's %3$s"
+msgid "%1$s commented on [url=%2$s]a %3$s[/url]"
+msgstr "%1$s commented on [url=%2$s]a %3$s[/url]"
 
-#: include/conversation.php:166
+#: include/enotify.php:152
 #, php-format
-msgid "%1$s attends maybe %2$s's %3$s"
-msgstr "%1$s might go to %2$s's %3$s"
+msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]"
+msgstr "%1$s commented on [url=%2$s]%3$s's %4$s[/url]"
 
-#: include/conversation.php:199 mod/dfrn_confirm.php:480
+#: include/enotify.php:160
 #, php-format
-msgid "%1$s is now friends with %2$s"
-msgstr "%1$s is now friends with %2$s"
+msgid "%1$s commented on [url=%2$s]your %3$s[/url]"
+msgstr "%1$s commented on [url=%2$s]your %3$s[/url]"
 
-#: include/conversation.php:240
+#: include/enotify.php:170
 #, php-format
-msgid "%1$s poked %2$s"
-msgstr "%1$s poked %2$s"
+msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s"
+msgstr "[Friendica:Notify] Comment to conversation #%1$d by %2$s"
 
-#: include/conversation.php:261 mod/mood.php:64
+#: include/enotify.php:172
 #, php-format
-msgid "%1$s is currently %2$s"
-msgstr "%1$s is currently %2$s"
+msgid "%s commented on an item/conversation you have been following."
+msgstr "%s commented on an item/conversation you have been following."
 
-#: include/conversation.php:308 mod/tagger.php:96
+#: include/enotify.php:175 include/enotify.php:189 include/enotify.php:203
+#: include/enotify.php:217 include/enotify.php:235 include/enotify.php:249
 #, php-format
-msgid "%1$s tagged %2$s's %3$s with %4$s"
-msgstr "%1$s tagged %2$s's %3$s with %4$s"
-
-#: include/conversation.php:335
-msgid "post/item"
-msgstr "Post/Item"
+msgid "Please visit %s to view and/or reply to the conversation."
+msgstr "Please visit %s to view or reply to the conversation."
 
-#: include/conversation.php:336
+#: include/enotify.php:182
 #, php-format
-msgid "%1$s marked %2$s's %3$s as favorite"
-msgstr "%1$s marked %2$s's %3$s as favourite"
-
-#: include/conversation.php:614 mod/content.php:373 mod/photos.php:1664
-#: mod/profiles.php:344
-msgid "Likes"
-msgstr "Likes"
-
-#: include/conversation.php:614 mod/content.php:373 mod/photos.php:1664
-#: mod/profiles.php:348
-msgid "Dislikes"
-msgstr "Dislikes"
-
-#: include/conversation.php:615 include/conversation.php:1540
-#: mod/content.php:374 mod/photos.php:1665
-msgid "Attending"
-msgid_plural "Attending"
-msgstr[0] "Attending"
-msgstr[1] "Attending"
-
-#: include/conversation.php:615 mod/content.php:374 mod/photos.php:1665
-msgid "Not attending"
-msgstr "Not attending"
-
-#: include/conversation.php:615 mod/content.php:374 mod/photos.php:1665
-msgid "Might attend"
-msgstr "Might attend"
-
-#: include/conversation.php:747 mod/content.php:454 mod/content.php:760
-#: mod/photos.php:1730 object/Item.php:137
-msgid "Select"
-msgstr "Select"
-
-#: include/conversation.php:748 mod/content.php:455 mod/content.php:761
-#: mod/photos.php:1731 mod/admin.php:1598 mod/contacts.php:821
-#: mod/contacts.php:1020 mod/settings.php:745 object/Item.php:138
-msgid "Delete"
-msgstr "Delete"
+msgid "[Friendica:Notify] %s posted to your profile wall"
+msgstr "[Friendica:Notify] %s posted to your profile wall"
 
-#: include/conversation.php:791 mod/content.php:488 mod/content.php:916
-#: mod/content.php:917 object/Item.php:353 object/Item.php:354
+#: include/enotify.php:184
 #, php-format
-msgid "View %s's profile @ %s"
-msgstr "View %s's profile @ %s"
+msgid "%1$s posted to your profile wall at %2$s"
+msgstr "%1$s posted to your profile wall at %2$s"
 
-#: include/conversation.php:803 object/Item.php:341
-msgid "Categories:"
-msgstr "Categories:"
+#: include/enotify.php:185
+#, php-format
+msgid "%1$s posted to [url=%2$s]your wall[/url]"
+msgstr "%1$s posted to [url=%2$s]your wall[/url]"
 
-#: include/conversation.php:804 object/Item.php:342
-msgid "Filed under:"
-msgstr "Filed under:"
+#: include/enotify.php:196
+#, php-format
+msgid "[Friendica:Notify] %s tagged you"
+msgstr "[Friendica:Notify] %s tagged you"
 
-#: include/conversation.php:811 mod/content.php:498 mod/content.php:929
-#: object/Item.php:367
+#: include/enotify.php:198
 #, php-format
-msgid "%s from %s"
-msgstr "%s from %s"
+msgid "%1$s tagged you at %2$s"
+msgstr "%1$s tagged you at %2$s"
 
-#: include/conversation.php:827 mod/content.php:514
-msgid "View in context"
-msgstr "View in context"
+#: include/enotify.php:199
+#, php-format
+msgid "%1$s [url=%2$s]tagged you[/url]."
+msgstr "%1$s [url=%2$s]tagged you[/url]."
 
-#: include/conversation.php:829 include/conversation.php:1297
-#: mod/content.php:516 mod/content.php:954 mod/editpost.php:116
-#: mod/message.php:339 mod/message.php:524 mod/photos.php:1629
-#: mod/wallmessage.php:142 object/Item.php:392
-msgid "Please wait"
-msgstr "Please wait"
+#: include/enotify.php:210
+#, php-format
+msgid "[Friendica:Notify] %s shared a new post"
+msgstr "[Friendica:Notify] %s shared a new post"
 
-#: include/conversation.php:906
-msgid "remove"
-msgstr "Remove"
+#: include/enotify.php:212
+#, php-format
+msgid "%1$s shared a new post at %2$s"
+msgstr "%1$s shared a new post at %2$s"
 
-#: include/conversation.php:910
-msgid "Delete Selected Items"
-msgstr "Delete selected items"
+#: include/enotify.php:213
+#, php-format
+msgid "%1$s [url=%2$s]shared a post[/url]."
+msgstr "%1$s [url=%2$s]shared a post[/url]."
 
-#: include/conversation.php:1001 view/theme/frio/theme.php:346
-msgid "Follow Thread"
-msgstr "Follow thread"
+#: include/enotify.php:224
+#, php-format
+msgid "[Friendica:Notify] %1$s poked you"
+msgstr "[Friendica:Notify] %1$s poked you"
 
-#: include/conversation.php:1138
+#: include/enotify.php:226
 #, php-format
-msgid "%s likes this."
-msgstr "%s likes this."
+msgid "%1$s poked you at %2$s"
+msgstr "%1$s poked you at %2$s"
 
-#: include/conversation.php:1141
+#: include/enotify.php:227
 #, php-format
-msgid "%s doesn't like this."
-msgstr "%s doesn't like this."
+msgid "%1$s [url=%2$s]poked you[/url]."
+msgstr "%1$s [url=%2$s]poked you[/url]."
 
-#: include/conversation.php:1144
+#: include/enotify.php:242
 #, php-format
-msgid "%s attends."
-msgstr "%s attends."
+msgid "[Friendica:Notify] %s tagged your post"
+msgstr "[Friendica:Notify] %s tagged your post"
 
-#: include/conversation.php:1147
+#: include/enotify.php:244
 #, php-format
-msgid "%s doesn't attend."
-msgstr "%s doesn't attend."
+msgid "%1$s tagged your post at %2$s"
+msgstr "%1$s tagged your post at %2$s"
 
-#: include/conversation.php:1150
+#: include/enotify.php:245
 #, php-format
-msgid "%s attends maybe."
-msgstr "%s may attend."
+msgid "%1$s tagged [url=%2$s]your post[/url]"
+msgstr "%1$s tagged [url=%2$s]your post[/url]"
 
-#: include/conversation.php:1161
-msgid "and"
-msgstr "and"
+#: include/enotify.php:256
+msgid "[Friendica:Notify] Introduction received"
+msgstr "[Friendica:Notify] Introduction received"
 
-#: include/conversation.php:1167
+#: include/enotify.php:258
 #, php-format
-msgid ", and %d other people"
-msgstr ", and %d other people"
+msgid "You've received an introduction from '%1$s' at %2$s"
+msgstr "You've received an introduction from '%1$s' at %2$s"
 
-#: include/conversation.php:1176
+#: include/enotify.php:259
 #, php-format
-msgid "<span  %1$s>%2$d people</span> like this"
-msgstr "<span  %1$s>%2$d people</span> like this"
+msgid "You've received [url=%1$s]an introduction[/url] from %2$s."
+msgstr "You've received [url=%1$s]an introduction[/url] from %2$s."
 
-#: include/conversation.php:1177
+#: include/enotify.php:263 include/enotify.php:306
 #, php-format
-msgid "%s like this."
-msgstr "%s like this."
+msgid "You may visit their profile at %s"
+msgstr "You may visit their profile at %s"
 
-#: include/conversation.php:1180
+#: include/enotify.php:265
 #, php-format
-msgid "<span  %1$s>%2$d people</span> don't like this"
-msgstr "<span  %1$s>%2$d people</span> don't like this"
+msgid "Please visit %s to approve or reject the introduction."
+msgstr "Please visit %s to approve or reject the introduction."
 
-#: include/conversation.php:1181
-#, php-format
-msgid "%s don't like this."
-msgstr "%s don't like this."
+#: include/enotify.php:273
+msgid "[Friendica:Notify] A new person is sharing with you"
+msgstr "[Friendica:Notify] A new person is sharing with you"
 
-#: include/conversation.php:1184
+#: include/enotify.php:275 include/enotify.php:276
 #, php-format
-msgid "<span  %1$s>%2$d people</span> attend"
-msgstr "<span  %1$s>%2$d people</span> attend"
+msgid "%1$s is sharing with you at %2$s"
+msgstr "%1$s is sharing with you at %2$s"
 
-#: include/conversation.php:1185
-#, php-format
-msgid "%s attend."
-msgstr "%s attend."
+#: include/enotify.php:282
+msgid "[Friendica:Notify] You have a new follower"
+msgstr "[Friendica:Notify] You have a new follower"
 
-#: include/conversation.php:1188
+#: include/enotify.php:284 include/enotify.php:285
 #, php-format
-msgid "<span  %1$s>%2$d people</span> don't attend"
-msgstr "<span  %1$s>%2$d people</span> don't attend"
+msgid "You have a new follower at %2$s : %1$s"
+msgstr "You have a new follower at %2$s : %1$s"
 
-#: include/conversation.php:1189
-#, php-format
-msgid "%s don't attend."
-msgstr "%s don't attend."
+#: include/enotify.php:296
+msgid "[Friendica:Notify] Friend suggestion received"
+msgstr "[Friendica:Notify] Friend suggestion received"
 
-#: include/conversation.php:1192
+#: include/enotify.php:298
 #, php-format
-msgid "<span  %1$s>%2$d people</span> attend maybe"
-msgstr "<span  %1$s>%2$d people</span> attend maybe"
+msgid "You've received a friend suggestion from '%1$s' at %2$s"
+msgstr "You've received a friend suggestion from '%1$s' at %2$s"
 
-#: include/conversation.php:1193
+#: include/enotify.php:299
 #, php-format
-msgid "%s anttend maybe."
-msgstr "%s attend maybe."
+msgid ""
+"You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s."
+msgstr "You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s."
 
-#: include/conversation.php:1222 include/conversation.php:1238
-msgid "Visible to <strong>everybody</strong>"
-msgstr "Visible to <strong>everybody</strong>"
+#: include/enotify.php:304
+msgid "Name:"
+msgstr "Name:"
 
-#: include/conversation.php:1223 include/conversation.php:1239
-#: mod/message.php:273 mod/message.php:280 mod/message.php:420
-#: mod/message.php:427 mod/wallmessage.php:116 mod/wallmessage.php:123
-msgid "Please enter a link URL:"
-msgstr "Please enter a link URL:"
+#: include/enotify.php:305
+msgid "Photo:"
+msgstr "Photo:"
 
-#: include/conversation.php:1224 include/conversation.php:1240
-msgid "Please enter a video link/URL:"
-msgstr "Please enter a video link/URL:"
+#: include/enotify.php:308
+#, php-format
+msgid "Please visit %s to approve or reject the suggestion."
+msgstr "Please visit %s to approve or reject the suggestion."
 
-#: include/conversation.php:1225 include/conversation.php:1241
-msgid "Please enter an audio link/URL:"
-msgstr "Please enter an audio link/URL:"
+#: include/enotify.php:316 include/enotify.php:330
+msgid "[Friendica:Notify] Connection accepted"
+msgstr "[Friendica:Notify] Connection accepted"
 
-#: include/conversation.php:1226 include/conversation.php:1242
-msgid "Tag term:"
-msgstr "Tag term:"
+#: include/enotify.php:318 include/enotify.php:332
+#, php-format
+msgid "'%1$s' has accepted your connection request at %2$s"
+msgstr "'%1$s' has accepted your connection request at %2$s"
 
-#: include/conversation.php:1227 include/conversation.php:1243
-#: mod/filer.php:31
-msgid "Save to Folder:"
-msgstr "Save to folder:"
+#: include/enotify.php:319 include/enotify.php:333
+#, php-format
+msgid "%2$s has accepted your [url=%1$s]connection request[/url]."
+msgstr "%2$s has accepted your [url=%1$s]connection request[/url]."
 
-#: include/conversation.php:1228 include/conversation.php:1244
-msgid "Where are you right now?"
-msgstr "Where are you right now?"
+#: include/enotify.php:323
+msgid ""
+"You are now mutual friends and may exchange status updates, photos, and "
+"email without restriction."
+msgstr "You are now mutual friends and may exchange status updates, photos, and email without restriction."
 
-#: include/conversation.php:1229
-msgid "Delete item(s)?"
-msgstr "Delete item(s)?"
+#: include/enotify.php:325
+#, php-format
+msgid "Please visit %s if you wish to make any changes to this relationship."
+msgstr "Please visit %s if you wish to make any changes to this relationship."
 
-#: include/conversation.php:1278
-msgid "Share"
-msgstr "Share"
+#: include/enotify.php:337
+#, php-format
+msgid ""
+"'%1$s' has chosen to accept you a \"fan\", which restricts some forms of "
+"communication - such as private messaging and some profile interactions. If "
+"this is a celebrity or community page, these settings were applied "
+"automatically."
+msgstr "'%1$s' has chosen to accept you as \"Follower\". This restricts some forms of communication, such as private messaging and some profile interactions. If this is a celebrity or community page, these settings were applied automatically."
 
-#: include/conversation.php:1279 mod/editpost.php:102 mod/message.php:337
-#: mod/message.php:521 mod/wallmessage.php:140
-msgid "Upload photo"
-msgstr "Upload photo"
+#: include/enotify.php:339
+#, php-format
+msgid ""
+"'%1$s' may choose to extend this into a two-way or more permissive "
+"relationship in the future."
+msgstr "'%1$s' may choose to extend this into a two-way or more permissive relationship in the future."
 
-#: include/conversation.php:1280 mod/editpost.php:103
-msgid "upload photo"
-msgstr "upload photo"
+#: include/enotify.php:341
+#, php-format
+msgid "Please visit %s  if you wish to make any changes to this relationship."
+msgstr "Please visit %s  if you wish to make any changes to this relationship."
 
-#: include/conversation.php:1281 mod/editpost.php:104
-msgid "Attach file"
-msgstr "Attach file"
+#: include/enotify.php:351
+msgid "[Friendica System:Notify] registration request"
+msgstr "[Friendica:Notify] registration request"
 
-#: include/conversation.php:1282 mod/editpost.php:105
-msgid "attach file"
-msgstr "attach file"
+#: include/enotify.php:353
+#, php-format
+msgid "You've received a registration request from '%1$s' at %2$s"
+msgstr "You've received a registration request from '%1$s' at %2$s."
 
-#: include/conversation.php:1283 mod/editpost.php:106 mod/message.php:338
-#: mod/message.php:522 mod/wallmessage.php:141
-msgid "Insert web link"
-msgstr "Insert web link"
+#: include/enotify.php:354
+#, php-format
+msgid "You've received a [url=%1$s]registration request[/url] from %2$s."
+msgstr "You've received a [url=%1$s]registration request[/url] from %2$s."
 
-#: include/conversation.php:1284 mod/editpost.php:107
-msgid "web link"
-msgstr "web link"
+#: include/enotify.php:358
+#, php-format
+msgid "Full Name:\t%1$s\\nSite Location:\t%2$s\\nLogin Name:\t%3$s (%4$s)"
+msgstr "Full Name:\t%1$s\\nSite Location:\t%2$s\\nLogin Name:\t%3$s (%4$s)"
 
-#: include/conversation.php:1285 mod/editpost.php:108
-msgid "Insert video link"
-msgstr "Insert video link"
+#: include/enotify.php:361
+#, php-format
+msgid "Please visit %s to approve or reject the request."
+msgstr "Please visit %s to approve or reject the request."
 
-#: include/conversation.php:1286 mod/editpost.php:109
-msgid "video link"
-msgstr "video link"
+#: include/event.php:409
+msgid "all-day"
+msgstr "All-day"
 
-#: include/conversation.php:1287 mod/editpost.php:110
-msgid "Insert audio link"
-msgstr "Insert audio link"
+#: include/event.php:411
+msgid "Sun"
+msgstr "Sun"
 
-#: include/conversation.php:1288 mod/editpost.php:111
-msgid "audio link"
-msgstr "audio link"
+#: include/event.php:412
+msgid "Mon"
+msgstr "Mon"
 
-#: include/conversation.php:1289 mod/editpost.php:112
-msgid "Set your location"
-msgstr "Set your location"
+#: include/event.php:413
+msgid "Tue"
+msgstr "Tue"
 
-#: include/conversation.php:1290 mod/editpost.php:113
-msgid "set location"
-msgstr "set location"
+#: include/event.php:414
+msgid "Wed"
+msgstr "Wed"
 
-#: include/conversation.php:1291 mod/editpost.php:114
-msgid "Clear browser location"
-msgstr "Clear browser location"
+#: include/event.php:415
+msgid "Thu"
+msgstr "Thu"
 
-#: include/conversation.php:1292 mod/editpost.php:115
-msgid "clear location"
-msgstr "clear location"
+#: include/event.php:416
+msgid "Fri"
+msgstr "Fri"
 
-#: include/conversation.php:1294 mod/editpost.php:129
-msgid "Set title"
-msgstr "Set title"
+#: include/event.php:417
+msgid "Sat"
+msgstr "Sat"
 
-#: include/conversation.php:1296 mod/editpost.php:131
-msgid "Categories (comma-separated list)"
-msgstr "Categories (comma-separated list)"
+#: include/event.php:419 include/text.php:1207 mod/settings.php:983
+msgid "Sunday"
+msgstr "Sunday"
 
-#: include/conversation.php:1298 mod/editpost.php:117
-msgid "Permission settings"
-msgstr "Permission settings"
+#: include/event.php:420 include/text.php:1207 mod/settings.php:983
+msgid "Monday"
+msgstr "Monday"
 
-#: include/conversation.php:1299 mod/editpost.php:146
-msgid "permissions"
-msgstr "permissions"
+#: include/event.php:421 include/text.php:1207
+msgid "Tuesday"
+msgstr "Tuesday"
 
-#: include/conversation.php:1307 mod/editpost.php:126
-msgid "Public post"
-msgstr "Public post"
+#: include/event.php:422 include/text.php:1207
+msgid "Wednesday"
+msgstr "Wednesday"
 
-#: include/conversation.php:1312 mod/content.php:738 mod/editpost.php:137
-#: mod/photos.php:1649 mod/photos.php:1691 mod/photos.php:1771
-#: mod/events.php:506 object/Item.php:714
-msgid "Preview"
-msgstr "Preview"
+#: include/event.php:423 include/text.php:1207
+msgid "Thursday"
+msgstr "Thursday"
 
-#: include/conversation.php:1316 include/items.php:2131 mod/editpost.php:140
-#: mod/fbrowser.php:102 mod/fbrowser.php:137 mod/message.php:211
-#: mod/photos.php:247 mod/photos.php:339 mod/suggest.php:34 mod/tagrm.php:13
-#: mod/tagrm.php:98 mod/videos.php:134 mod/dfrn_request.php:894
-#: mod/follow.php:126 mod/contacts.php:458 mod/settings.php:683
-#: mod/settings.php:709
-msgid "Cancel"
-msgstr "Cancel"
+#: include/event.php:424 include/text.php:1207
+msgid "Friday"
+msgstr "Friday"
 
-#: include/conversation.php:1322
-msgid "Post to Groups"
-msgstr "Post to groups"
+#: include/event.php:425 include/text.php:1207
+msgid "Saturday"
+msgstr "Saturday"
 
-#: include/conversation.php:1323
-msgid "Post to Contacts"
-msgstr "Post to contacts"
+#: include/event.php:427
+msgid "Jan"
+msgstr "Jan"
 
-#: include/conversation.php:1324
-msgid "Private post"
-msgstr "Private post"
+#: include/event.php:428
+msgid "Feb"
+msgstr "Feb"
 
-#: include/conversation.php:1329 include/identity.php:268 mod/editpost.php:144
-msgid "Message"
-msgstr "Message"
+#: include/event.php:429
+msgid "Mar"
+msgstr "Mar"
 
-#: include/conversation.php:1330 mod/editpost.php:145
-msgid "Browser"
-msgstr "Browser"
+#: include/event.php:430
+msgid "Apr"
+msgstr "Apr"
 
-#: include/conversation.php:1512
-msgid "View all"
-msgstr "View all"
+#: include/event.php:431 include/event.php:444 include/text.php:1211
+msgid "May"
+msgstr "May"
 
-#: include/conversation.php:1534
-msgid "Like"
-msgid_plural "Likes"
-msgstr[0] "Like"
-msgstr[1] "Likes"
+#: include/event.php:432
+msgid "Jun"
+msgstr "Jun"
 
-#: include/conversation.php:1537
-msgid "Dislike"
-msgid_plural "Dislikes"
-msgstr[0] "Dislike"
-msgstr[1] "Dislikes"
+#: include/event.php:433
+msgid "Jul"
+msgstr "Jul"
 
-#: include/conversation.php:1543
-msgid "Not Attending"
-msgid_plural "Not Attending"
-msgstr[0] "Not attending"
-msgstr[1] "Not attending"
+#: include/event.php:434
+msgid "Aug"
+msgstr "Aug"
 
-#: include/dbstructure.php:25
-msgid "There are no tables on MyISAM."
-msgstr "There are no tables on MyISAM."
+#: include/event.php:435
+msgid "Sept"
+msgstr "Sep"
 
-#: include/dbstructure.php:66
-#, php-format
-msgid ""
-"\n"
-"\t\t\tThe friendica developers released update %s recently,\n"
-"\t\t\tbut when I tried to install it, something went terribly wrong.\n"
-"\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n"
-"\t\t\tfriendica developer if you can not help me on your own. My database might be invalid."
-msgstr "\n\t\t\tThe Friendica developers released update %s recently,\n\t\t\tbut when I tried to install it, something went terribly wrong.\n\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n\t\t\tFriendica developer if you can not help me on your own. My database\n                        might be invalid."
+#: include/event.php:436
+msgid "Oct"
+msgstr "Oct"
 
-#: include/dbstructure.php:71
-#, php-format
-msgid ""
-"The error message is\n"
-"[pre]%s[/pre]"
-msgstr "The error message is\n[pre]%s[/pre]"
+#: include/event.php:437
+msgid "Nov"
+msgstr "Nov"
 
-#: include/dbstructure.php:196
-#, php-format
-msgid ""
-"\n"
-"Error %d occurred during database update:\n"
-"%s\n"
-msgstr "\nError %d occurred during database update:\n%s\n"
+#: include/event.php:438
+msgid "Dec"
+msgstr "Dec"
 
-#: include/dbstructure.php:199
-msgid "Errors encountered performing database changes: "
-msgstr "Errors encountered performing database changes: "
+#: include/event.php:440 include/text.php:1211
+msgid "January"
+msgstr "January"
 
-#: include/dbstructure.php:207
-msgid ": Database update"
-msgstr ": Database update"
+#: include/event.php:441 include/text.php:1211
+msgid "February"
+msgstr "February"
 
-#: include/dbstructure.php:439
-#, php-format
-msgid "%s: updating %s table."
-msgstr "%s: updating %s table."
+#: include/event.php:442 include/text.php:1211
+msgid "March"
+msgstr "March"
 
-#: include/diaspora.php:2212
-msgid "Sharing notification from Diaspora network"
-msgstr "Sharing notification from Diaspora network"
+#: include/event.php:443 include/text.php:1211
+msgid "April"
+msgstr "April"
 
-#: include/diaspora.php:3169
-msgid "Attachments:"
-msgstr "Attachments:"
+#: include/event.php:445 include/text.php:1211
+msgid "June"
+msgstr "June"
 
-#: include/enotify.php:27
-msgid "Friendica Notification"
-msgstr "Friendica notification"
+#: include/event.php:446 include/text.php:1211
+msgid "July"
+msgstr "July"
 
-#: include/enotify.php:30
-msgid "Thank You,"
-msgstr "Thank you"
+#: include/event.php:447 include/text.php:1211
+msgid "August"
+msgstr "August"
 
-#: include/enotify.php:33
-#, php-format
-msgid "%s Administrator"
-msgstr "%s Administrator"
+#: include/event.php:448 include/text.php:1211
+msgid "September"
+msgstr "September"
 
-#: include/enotify.php:35
-#, php-format
-msgid "%1$s, %2$s Administrator"
-msgstr "%1$s, %2$s Administrator"
+#: include/event.php:449 include/text.php:1211
+msgid "October"
+msgstr "October"
 
-#: include/enotify.php:78
-#, php-format
-msgid "%s <!item_type!>"
-msgstr "%s <!item_type!>"
+#: include/event.php:450 include/text.php:1211
+msgid "November"
+msgstr "November"
 
-#: include/enotify.php:91
-#, php-format
-msgid "[Friendica:Notify] New mail received at %s"
-msgstr "[Friendica:Notify] New mail received at %s"
+#: include/event.php:451 include/text.php:1211
+msgid "December"
+msgstr "December"
 
-#: include/enotify.php:93
-#, php-format
-msgid "%1$s sent you a new private message at %2$s."
-msgstr "%1$s sent you a new private message at %2$s."
+#: include/event.php:453 mod/cal.php:281 mod/events.php:387
+msgid "today"
+msgstr "today"
 
-#: include/enotify.php:94
-#, php-format
-msgid "%1$s sent you %2$s."
-msgstr "%1$s sent you %2$s."
+#: include/event.php:458
+msgid "No events to display"
+msgstr "No events to display"
 
-#: include/enotify.php:94
-msgid "a private message"
-msgstr "a private message"
+#: include/event.php:571
+msgid "l, F j"
+msgstr "l, F j"
 
-#: include/enotify.php:96
-#, php-format
-msgid "Please visit %s to view and/or reply to your private messages."
-msgstr "Please visit %s to view or reply to your private messages."
+#: include/event.php:593
+msgid "Edit event"
+msgstr "Edit event"
 
-#: include/enotify.php:142
-#, php-format
-msgid "%1$s commented on [url=%2$s]a %3$s[/url]"
-msgstr "%1$s commented on [url=%2$s]a %3$s[/url]"
+#: include/event.php:594
+msgid "Delete event"
+msgstr "Delete event"
 
-#: include/enotify.php:149
-#, php-format
-msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]"
-msgstr "%1$s commented on [url=%2$s]%3$s's %4$s[/url]"
+#: include/event.php:620 include/text.php:1609 include/text.php:1616
+msgid "link to source"
+msgstr "Link to source"
 
-#: include/enotify.php:157
-#, php-format
-msgid "%1$s commented on [url=%2$s]your %3$s[/url]"
-msgstr "%1$s commented on [url=%2$s]your %3$s[/url]"
+#: include/event.php:878
+msgid "Export"
+msgstr "Export"
 
-#: include/enotify.php:167
-#, php-format
-msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s"
-msgstr "[Friendica:Notify] Comment to conversation #%1$d by %2$s"
+#: include/event.php:879
+msgid "Export calendar as ical"
+msgstr "Export calendar as ical"
 
-#: include/enotify.php:169
-#, php-format
-msgid "%s commented on an item/conversation you have been following."
-msgstr "%s commented on an item/conversation you have been following."
+#: include/event.php:880
+msgid "Export calendar as csv"
+msgstr "Export calendar as csv"
 
-#: include/enotify.php:172 include/enotify.php:186 include/enotify.php:200
-#: include/enotify.php:214 include/enotify.php:232 include/enotify.php:246
-#, php-format
-msgid "Please visit %s to view and/or reply to the conversation."
-msgstr "Please visit %s to view or reply to the conversation."
+#: include/follow.php:85 mod/dfrn_request.php:515
+msgid "Disallowed profile URL."
+msgstr "Disallowed profile URL."
 
-#: include/enotify.php:179
-#, php-format
-msgid "[Friendica:Notify] %s posted to your profile wall"
-msgstr "[Friendica:Notify] %s posted to your profile wall"
+#: include/follow.php:90 mod/admin.php:289 mod/admin.php:307
+#: mod/dfrn_request.php:521 mod/friendica.php:116
+msgid "Blocked domain"
+msgstr "Blocked domain"
 
-#: include/enotify.php:181
-#, php-format
-msgid "%1$s posted to your profile wall at %2$s"
-msgstr "%1$s posted to your profile wall at %2$s"
+#: include/follow.php:95
+msgid "Connect URL missing."
+msgstr "Connect URL missing."
 
-#: include/enotify.php:182
-#, php-format
-msgid "%1$s posted to [url=%2$s]your wall[/url]"
-msgstr "%1$s posted to [url=%2$s]your wall[/url]"
+#: include/follow.php:123
+msgid ""
+"This site is not configured to allow communications with other networks."
+msgstr "This site is not configured to allow communications with other networks."
 
-#: include/enotify.php:193
-#, php-format
-msgid "[Friendica:Notify] %s tagged you"
-msgstr "[Friendica:Notify] %s tagged you"
+#: include/follow.php:124 include/follow.php:138
+msgid "No compatible communication protocols or feeds were discovered."
+msgstr "No compatible communication protocols or feeds were discovered."
 
-#: include/enotify.php:195
-#, php-format
-msgid "%1$s tagged you at %2$s"
-msgstr "%1$s tagged you at %2$s"
+#: include/follow.php:136
+msgid "The profile address specified does not provide adequate information."
+msgstr "The profile address specified does not provide adequate information."
 
-#: include/enotify.php:196
-#, php-format
-msgid "%1$s [url=%2$s]tagged you[/url]."
-msgstr "%1$s [url=%2$s]tagged you[/url]."
+#: include/follow.php:141
+msgid "An author or name was not found."
+msgstr "An author or name was not found."
 
-#: include/enotify.php:207
-#, php-format
-msgid "[Friendica:Notify] %s shared a new post"
-msgstr "[Friendica:Notify] %s shared a new post"
+#: include/follow.php:144
+msgid "No browser URL could be matched to this address."
+msgstr "No browser URL could be matched to this address."
 
-#: include/enotify.php:209
-#, php-format
-msgid "%1$s shared a new post at %2$s"
-msgstr "%1$s shared a new post at %2$s"
+#: include/follow.php:147
+msgid ""
+"Unable to match @-style Identity Address with a known protocol or email "
+"contact."
+msgstr "Unable to match @-style identity address with a known protocol or email contact."
 
-#: include/enotify.php:210
-#, php-format
-msgid "%1$s [url=%2$s]shared a post[/url]."
-msgstr "%1$s [url=%2$s]shared a post[/url]."
+#: include/follow.php:148
+msgid "Use mailto: in front of address to force email check."
+msgstr "Use mailto: in front of address to force email check."
 
-#: include/enotify.php:221
-#, php-format
-msgid "[Friendica:Notify] %1$s poked you"
-msgstr "[Friendica:Notify] %1$s poked you"
+#: include/follow.php:154
+msgid ""
+"The profile address specified belongs to a network which has been disabled "
+"on this site."
+msgstr "The profile address specified belongs to a network which has been disabled on this site."
 
-#: include/enotify.php:223
-#, php-format
-msgid "%1$s poked you at %2$s"
-msgstr "%1$s poked you at %2$s"
+#: include/follow.php:159
+msgid ""
+"Limited profile. This person will be unable to receive direct/personal "
+"notifications from you."
+msgstr "Limited profile: This person will be unable to receive direct/private messages from you."
 
-#: include/enotify.php:224
-#, php-format
-msgid "%1$s [url=%2$s]poked you[/url]."
-msgstr "%1$s [url=%2$s]poked you[/url]."
+#: include/follow.php:260
+msgid "Unable to retrieve contact information."
+msgstr "Unable to retrieve contact information."
 
-#: include/enotify.php:239
-#, php-format
-msgid "[Friendica:Notify] %s tagged your post"
-msgstr "[Friendica:Notify] %s tagged your post"
+#: include/identity.php:46
+msgid "Requested account is not available."
+msgstr "Requested account is unavailable."
 
-#: include/enotify.php:241
-#, php-format
-msgid "%1$s tagged your post at %2$s"
-msgstr "%1$s tagged your post at %2$s"
+#: include/identity.php:55 mod/profile.php:23
+msgid "Requested profile is not available."
+msgstr "Requested profile is unavailable."
 
-#: include/enotify.php:242
-#, php-format
-msgid "%1$s tagged [url=%2$s]your post[/url]"
-msgstr "%1$s tagged [url=%2$s]your post[/url]"
+#: include/identity.php:99 include/identity.php:322 include/identity.php:755
+msgid "Edit profile"
+msgstr "Edit profile"
 
-#: include/enotify.php:253
-msgid "[Friendica:Notify] Introduction received"
-msgstr "[Friendica:Notify] Introduction received"
+#: include/identity.php:262
+msgid "Atom feed"
+msgstr "Atom feed"
 
-#: include/enotify.php:255
-#, php-format
-msgid "You've received an introduction from '%1$s' at %2$s"
-msgstr "You've received an introduction from '%1$s' at %2$s"
+#: include/identity.php:293 include/nav.php:192
+msgid "Profiles"
+msgstr "Profiles"
 
-#: include/enotify.php:256
-#, php-format
-msgid "You've received [url=%1$s]an introduction[/url] from %2$s."
-msgstr "You've received [url=%1$s]an introduction[/url] from %2$s."
+#: include/identity.php:293
+msgid "Manage/edit profiles"
+msgstr "Manage/Edit profiles"
 
-#: include/enotify.php:260 include/enotify.php:303
-#, php-format
-msgid "You may visit their profile at %s"
-msgstr "You may visit their profile at %s"
+#: include/identity.php:298 include/identity.php:324 mod/profiles.php:791
+msgid "Change profile photo"
+msgstr "Change profile photo"
 
-#: include/enotify.php:262
-#, php-format
-msgid "Please visit %s to approve or reject the introduction."
-msgstr "Please visit %s to approve or reject the introduction."
+#: include/identity.php:299 mod/profiles.php:792
+msgid "Create New Profile"
+msgstr "Create new profile"
 
-#: include/enotify.php:270
-msgid "[Friendica:Notify] A new person is sharing with you"
-msgstr "[Friendica:Notify] A new person is sharing with you"
+#: include/identity.php:309 mod/profiles.php:781
+msgid "Profile Image"
+msgstr "Profile image"
 
-#: include/enotify.php:272 include/enotify.php:273
-#, php-format
-msgid "%1$s is sharing with you at %2$s"
-msgstr "%1$s is sharing with you at %2$s"
+#: include/identity.php:312 mod/profiles.php:783
+msgid "visible to everybody"
+msgstr "Visible to everybody"
 
-#: include/enotify.php:279
-msgid "[Friendica:Notify] You have a new follower"
-msgstr "[Friendica:Notify] You have a new follower"
+#: include/identity.php:313 mod/profiles.php:688 mod/profiles.php:784
+msgid "Edit visibility"
+msgstr "Edit visibility"
 
-#: include/enotify.php:281 include/enotify.php:282
-#, php-format
-msgid "You have a new follower at %2$s : %1$s"
-msgstr "You have a new follower at %2$s : %1$s"
+#: include/identity.php:341 include/identity.php:642 mod/directory.php:137
+#: mod/notifications.php:253
+msgid "Gender:"
+msgstr "Gender:"
 
-#: include/enotify.php:293
-msgid "[Friendica:Notify] Friend suggestion received"
-msgstr "[Friendica:Notify] Friend suggestion received"
+#: include/identity.php:344 include/identity.php:665 mod/directory.php:139
+msgid "Status:"
+msgstr "Status:"
 
-#: include/enotify.php:295
-#, php-format
-msgid "You've received a friend suggestion from '%1$s' at %2$s"
-msgstr "You've received a friend suggestion from '%1$s' at %2$s"
+#: include/identity.php:346 include/identity.php:682 mod/directory.php:141
+msgid "Homepage:"
+msgstr "Homepage:"
 
-#: include/enotify.php:296
-#, php-format
-msgid ""
-"You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s."
-msgstr "You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s."
+#: include/identity.php:348 include/identity.php:702 mod/contacts.php:652
+#: mod/directory.php:143 mod/notifications.php:249
+msgid "About:"
+msgstr "About:"
 
-#: include/enotify.php:301
-msgid "Name:"
-msgstr "Name:"
+#: include/identity.php:350 mod/contacts.php:650
+msgid "XMPP:"
+msgstr "XMPP:"
 
-#: include/enotify.php:302
-msgid "Photo:"
-msgstr "Photo:"
+#: include/identity.php:436 mod/contacts.php:59 mod/notifications.php:261
+msgid "Network:"
+msgstr "Network:"
 
-#: include/enotify.php:305
-#, php-format
-msgid "Please visit %s to approve or reject the suggestion."
-msgstr "Please visit %s to approve or reject the suggestion."
+#: include/identity.php:465 include/identity.php:556
+msgid "g A l F d"
+msgstr "g A l F d"
 
-#: include/enotify.php:313 include/enotify.php:327
-msgid "[Friendica:Notify] Connection accepted"
-msgstr "[Friendica:Notify] Connection accepted"
+#: include/identity.php:466 include/identity.php:557
+msgid "d"
+msgstr "d"
 
-#: include/enotify.php:315 include/enotify.php:329
-#, php-format
-msgid "'%1$s' has accepted your connection request at %2$s"
-msgstr "'%1$s' has accepted your connection request at %2$s"
+#: include/identity.php:518 include/identity.php:604
+msgid "[today]"
+msgstr "[today]"
 
-#: include/enotify.php:316 include/enotify.php:330
-#, php-format
-msgid "%2$s has accepted your [url=%1$s]connection request[/url]."
-msgstr "%2$s has accepted your [url=%1$s]connection request[/url]."
-
-#: include/enotify.php:320
-msgid ""
-"You are now mutual friends and may exchange status updates, photos, and "
-"email without restriction."
-msgstr "You are now mutual friends and may exchange status updates, photos, and email without restriction."
-
-#: include/enotify.php:322
-#, php-format
-msgid "Please visit %s if you wish to make any changes to this relationship."
-msgstr "Please visit %s if you wish to make any changes to this relationship."
-
-#: include/enotify.php:334
-#, php-format
-msgid ""
-"'%1$s' has chosen to accept you a \"fan\", which restricts some forms of "
-"communication - such as private messaging and some profile interactions. If "
-"this is a celebrity or community page, these settings were applied "
-"automatically."
-msgstr "'%1$s' has chosen to accept you as \"Follower\". This restricts some forms of communication, such as private messaging and some profile interactions. If this is a celebrity or community page, these settings were applied automatically."
-
-#: include/enotify.php:336
-#, php-format
-msgid ""
-"'%1$s' may choose to extend this into a two-way or more permissive "
-"relationship in the future."
-msgstr "'%1$s' may choose to extend this into a two-way or more permissive relationship in the future."
-
-#: include/enotify.php:338
-#, php-format
-msgid "Please visit %s  if you wish to make any changes to this relationship."
-msgstr "Please visit %s  if you wish to make any changes to this relationship."
-
-#: include/enotify.php:348
-msgid "[Friendica System:Notify] registration request"
-msgstr "[Friendica:Notify] registration request"
-
-#: include/enotify.php:350
-#, php-format
-msgid "You've received a registration request from '%1$s' at %2$s"
-msgstr "You've received a registration request from '%1$s' at %2$s."
-
-#: include/enotify.php:351
-#, php-format
-msgid "You've received a [url=%1$s]registration request[/url] from %2$s."
-msgstr "You've received a [url=%1$s]registration request[/url] from %2$s."
-
-#: include/enotify.php:355
-#, php-format
-msgid "Full Name:\t%1$s\\nSite Location:\t%2$s\\nLogin Name:\t%3$s (%4$s)"
-msgstr "Full Name:\t%1$s\\nSite Location:\t%2$s\\nLogin Name:\t%3$s (%4$s)"
-
-#: include/enotify.php:358
-#, php-format
-msgid "Please visit %s to approve or reject the request."
-msgstr "Please visit %s to approve or reject the request."
-
-#: include/group.php:25
-msgid ""
-"A deleted group with this name was revived. Existing item permissions "
-"<strong>may</strong> apply to this group and any future members. If this is "
-"not what you intended, please create another group with a different name."
-msgstr "A deleted group with this name has been revived. Existing item permissions <strong>may</strong> apply to this group and any future members. If this is not what you intended, please create another group with a different name."
-
-#: include/group.php:201
-msgid "Default privacy group for new contacts"
-msgstr "Default privacy group for new contacts"
-
-#: include/group.php:234
-msgid "Everybody"
-msgstr "Everybody"
-
-#: include/group.php:257
-msgid "edit"
-msgstr "edit"
-
-#: include/group.php:278 mod/newmember.php:39
-msgid "Groups"
-msgstr "Groups"
-
-#: include/group.php:280
-msgid "Edit groups"
-msgstr "Edit groups"
-
-#: include/group.php:282
-msgid "Edit group"
-msgstr "Edit group"
-
-#: include/group.php:283
-msgid "Create a new group"
-msgstr "Create new group"
-
-#: include/group.php:284 mod/group.php:100 mod/group.php:197
-msgid "Group Name: "
-msgstr "Group name: "
-
-#: include/group.php:286
-msgid "Contacts not in any group"
-msgstr "Contacts not in any group"
-
-#: include/group.php:288 mod/network.php:210
-msgid "add"
-msgstr "add"
-
-#: include/identity.php:45
-msgid "Requested account is not available."
-msgstr "Requested account is unavailable."
-
-#: include/identity.php:54 mod/profile.php:22
-msgid "Requested profile is not available."
-msgstr "Requested profile is unavailable."
-
-#: include/identity.php:98 include/identity.php:323 include/identity.php:755
-msgid "Edit profile"
-msgstr "Edit profile"
-
-#: include/identity.php:263
-msgid "Atom feed"
-msgstr "Atom feed"
-
-#: include/identity.php:294
-msgid "Manage/edit profiles"
-msgstr "Manage/Edit profiles"
-
-#: include/identity.php:299 include/identity.php:325 mod/profiles.php:790
-msgid "Change profile photo"
-msgstr "Change profile photo"
-
-#: include/identity.php:300 mod/profiles.php:791
-msgid "Create New Profile"
-msgstr "Create new profile"
-
-#: include/identity.php:310 mod/profiles.php:780
-msgid "Profile Image"
-msgstr "Profile image"
-
-#: include/identity.php:313 mod/profiles.php:782
-msgid "visible to everybody"
-msgstr "Visible to everybody"
-
-#: include/identity.php:314 mod/profiles.php:687 mod/profiles.php:783
-msgid "Edit visibility"
-msgstr "Edit visibility"
-
-#: include/identity.php:342 include/identity.php:642 mod/directory.php:137
-#: mod/notifications.php:252
-msgid "Gender:"
-msgstr "Gender:"
-
-#: include/identity.php:345 include/identity.php:665 mod/directory.php:139
-msgid "Status:"
-msgstr "Status:"
-
-#: include/identity.php:347 include/identity.php:682 mod/directory.php:141
-msgid "Homepage:"
-msgstr "Homepage:"
-
-#: include/identity.php:349 include/identity.php:702 mod/directory.php:143
-#: mod/notifications.php:248 mod/contacts.php:645
-msgid "About:"
-msgstr "About:"
-
-#: include/identity.php:351 mod/contacts.php:643
-msgid "XMPP:"
-msgstr "XMPP:"
-
-#: include/identity.php:437 mod/notifications.php:260 mod/contacts.php:58
-msgid "Network:"
-msgstr "Network:"
-
-#: include/identity.php:466 include/identity.php:556
-msgid "g A l F d"
-msgstr "g A l F d"
-
-#: include/identity.php:467 include/identity.php:557
-msgid "F d"
-msgstr "F d"
-
-#: include/identity.php:518 include/identity.php:607
-msgid "[today]"
-msgstr "[today]"
-
-#: include/identity.php:530
-msgid "Birthday Reminders"
-msgstr "Birthday reminders"
+#: include/identity.php:530
+msgid "Birthday Reminders"
+msgstr "Birthday reminders"
 
 #: include/identity.php:531
 msgid "Birthdays this week:"
 msgstr "Birthdays this week:"
 
-#: include/identity.php:593
+#: include/identity.php:591
 msgid "[No description]"
 msgstr "[No description]"
 
@@ -2681,7 +2204,13 @@ msgstr "Event reminders"
 msgid "Events this week:"
 msgstr "Events this week:"
 
-#: include/identity.php:639 mod/settings.php:1287
+#: include/identity.php:630 include/identity.php:759 include/identity.php:792
+#: include/nav.php:85 mod/newmember.php:20 mod/profperm.php:107
+#: mod/contacts.php:659 mod/contacts.php:861 view/theme/frio/theme.php:254
+msgid "Profile"
+msgstr "Profile"
+
+#: include/identity.php:639 mod/settings.php:1288
 msgid "Full Name:"
 msgstr "Full name:"
 
@@ -2702,20 +2231,20 @@ msgstr "Age:"
 msgid "for %1$d %2$s"
 msgstr "for %1$d %2$s"
 
-#: include/identity.php:678 mod/profiles.php:706
+#: include/identity.php:678 mod/profiles.php:707
 msgid "Sexual Preference:"
 msgstr "Sexual preference:"
 
-#: include/identity.php:686 mod/profiles.php:733
+#: include/identity.php:686 mod/profiles.php:734
 msgid "Hometown:"
 msgstr "Home town:"
 
-#: include/identity.php:690 mod/notifications.php:250 mod/follow.php:139
-#: mod/contacts.php:647
+#: include/identity.php:690 mod/contacts.php:654 mod/follow.php:174
+#: mod/notifications.php:251
 msgid "Tags:"
 msgstr "Tags:"
 
-#: include/identity.php:694 mod/profiles.php:734
+#: include/identity.php:694 mod/profiles.php:735
 msgid "Political Views:"
 msgstr "Political views:"
 
@@ -2727,11 +2256,11 @@ msgstr "Religion:"
 msgid "Hobbies/Interests:"
 msgstr "Hobbies/Interests:"
 
-#: include/identity.php:710 mod/profiles.php:738
+#: include/identity.php:710 mod/profiles.php:739
 msgid "Likes:"
 msgstr "Likes:"
 
-#: include/identity.php:714 mod/profiles.php:739
+#: include/identity.php:714 mod/profiles.php:740
 msgid "Dislikes:"
 msgstr "Dislikes:"
 
@@ -2771,27 +2300,54 @@ msgstr "School/Education:"
 msgid "Forums:"
 msgstr "Forums:"
 
-#: include/identity.php:760 mod/events.php:509
+#: include/identity.php:760 mod/events.php:510
 msgid "Basic"
 msgstr "Basic"
 
-#: include/identity.php:761 mod/events.php:510 mod/admin.php:1149
-#: mod/contacts.php:883
+#: include/identity.php:761 mod/admin.php:1151 mod/contacts.php:890
+#: mod/events.php:511
 msgid "Advanced"
 msgstr "Advanced"
 
-#: include/identity.php:787 mod/follow.php:147 mod/contacts.php:849
+#: include/identity.php:784 include/nav.php:84 mod/contacts.php:657
+#: mod/contacts.php:853 view/theme/frio/theme.php:253
+msgid "Status"
+msgstr "Status"
+
+#: include/identity.php:787 mod/contacts.php:856 mod/follow.php:182
+#: mod/unfollow.php:133
 msgid "Status Messages and Posts"
 msgstr "Status Messages and Posts"
 
-#: include/identity.php:795 mod/contacts.php:857
+#: include/identity.php:795 mod/contacts.php:864
 msgid "Profile Details"
 msgstr "Profile Details"
 
-#: include/identity.php:803 mod/photos.php:95
+#: include/identity.php:800 include/nav.php:86 mod/fbrowser.php:34
+#: view/theme/frio/theme.php:255
+msgid "Photos"
+msgstr "Photos"
+
+#: include/identity.php:803 mod/photos.php:96
 msgid "Photo Albums"
 msgstr "Photo Albums"
 
+#: include/identity.php:808 include/identity.php:811 include/nav.php:87
+#: view/theme/frio/theme.php:256
+msgid "Videos"
+msgstr "Videos"
+
+#: include/identity.php:820 include/identity.php:831 include/nav.php:88
+#: include/nav.php:152 mod/cal.php:273 mod/events.php:378
+#: view/theme/frio/theme.php:257 view/theme/frio/theme.php:261
+msgid "Events"
+msgstr "Events"
+
+#: include/identity.php:823 include/identity.php:834 include/nav.php:152
+#: view/theme/frio/theme.php:261
+msgid "Events and Calendar"
+msgstr "Events and calendar"
+
 #: include/identity.php:842 mod/notes.php:49
 msgid "Personal Notes"
 msgstr "Personal notes"
@@ -2800,316 +2356,758 @@ msgstr "Personal notes"
 msgid "Only You Can See This"
 msgstr "Only you can see this."
 
-#: include/items.php:1707 mod/dfrn_confirm.php:738 mod/dfrn_request.php:759
+#: include/identity.php:853 include/identity.php:856 include/nav.php:131
+#: include/nav.php:195 include/text.php:1101 mod/viewcontacts.php:124
+#: mod/contacts.php:812 mod/contacts.php:873 view/theme/frio/theme.php:264
+msgid "Contacts"
+msgstr "Contacts"
+
+#: include/items.php:1715 mod/dfrn_confirm.php:738 mod/dfrn_request.php:760
 msgid "[Name Withheld]"
 msgstr "[Name Withheld]"
 
-#: include/items.php:2083 mod/notice.php:17 mod/viewsrc.php:16
-#: mod/admin.php:256 mod/admin.php:1655 mod/admin.php:1906 mod/display.php:120
-#: mod/display.php:292 mod/display.php:505
+#: include/items.php:2091 mod/viewsrc.php:16 mod/admin.php:257
+#: mod/admin.php:1657 mod/admin.php:1908 mod/display.php:122
+#: mod/display.php:291 mod/display.php:496 mod/notice.php:18
 msgid "Item not found."
 msgstr "Item not found."
 
-#: include/items.php:2126
+#: include/items.php:2134
 msgid "Do you really want to delete this item?"
 msgstr "Do you really want to delete this item?"
 
-#: include/items.php:2128 mod/api.php:107 mod/message.php:208
-#: mod/suggest.php:31 mod/dfrn_request.php:880 mod/follow.php:115
-#: mod/profiles.php:643 mod/profiles.php:646 mod/profiles.php:673
-#: mod/register.php:248 mod/contacts.php:455 mod/settings.php:1172
-#: mod/settings.php:1178 mod/settings.php:1185 mod/settings.php:1189
-#: mod/settings.php:1194 mod/settings.php:1199 mod/settings.php:1204
-#: mod/settings.php:1209 mod/settings.php:1235 mod/settings.php:1236
-#: mod/settings.php:1237 mod/settings.php:1238 mod/settings.php:1239
+#: include/items.php:2136 mod/api.php:107 mod/contacts.php:456
+#: mod/dfrn_request.php:881 mod/follow.php:150 mod/message.php:207
+#: mod/profiles.php:644 mod/profiles.php:647 mod/profiles.php:674
+#: mod/register.php:249 mod/settings.php:1173 mod/settings.php:1179
+#: mod/settings.php:1186 mod/settings.php:1190 mod/settings.php:1195
+#: mod/settings.php:1200 mod/settings.php:1205 mod/settings.php:1210
+#: mod/settings.php:1236 mod/settings.php:1237 mod/settings.php:1238
+#: mod/settings.php:1239 mod/settings.php:1240 mod/suggest.php:32
 msgid "Yes"
 msgstr "Yes"
 
-#: include/items.php:2267 mod/allfriends.php:14 mod/api.php:28 mod/api.php:33
-#: mod/attach.php:35 mod/cal.php:301 mod/common.php:20 mod/crepair.php:105
-#: mod/delegate.php:14 mod/dfrn_confirm.php:63 mod/editpost.php:12
-#: mod/fsuggest.php:80 mod/group.php:20 mod/manage.php:103 mod/message.php:48
-#: mod/message.php:173 mod/mood.php:116 mod/nogroup.php:29 mod/notes.php:25
-#: mod/notifications.php:73 mod/ostatus_subscribe.php:11 mod/photos.php:168
-#: mod/photos.php:1111 mod/poke.php:155 mod/repair_ostatus.php:11
-#: mod/suggest.php:60 mod/viewcontacts.php:49 mod/wall_attach.php:69
-#: mod/wall_attach.php:72 mod/wall_upload.php:101 mod/wall_upload.php:104
-#: mod/wallmessage.php:11 mod/wallmessage.php:35 mod/wallmessage.php:75
-#: mod/wallmessage.php:99 mod/regmod.php:106 mod/uimport.php:26
-#: mod/dirfind.php:15 mod/events.php:188 mod/follow.php:13 mod/follow.php:76
-#: mod/follow.php:160 mod/item.php:197 mod/item.php:209
-#: mod/profile_photo.php:19 mod/profile_photo.php:179
-#: mod/profile_photo.php:190 mod/profile_photo.php:203 mod/profiles.php:172
-#: mod/profiles.php:610 mod/register.php:45 mod/contacts.php:363
-#: mod/display.php:502 mod/invite.php:17 mod/invite.php:105 mod/network.php:7
-#: mod/settings.php:24 mod/settings.php:132 mod/settings.php:669 index.php:410
+#: include/items.php:2275 mod/api.php:28 mod/api.php:33 mod/attach.php:35
+#: mod/common.php:20 mod/crepair.php:105 mod/fsuggest.php:80
+#: mod/nogroup.php:29 mod/notes.php:25 mod/viewcontacts.php:49
+#: mod/wall_attach.php:69 mod/wall_attach.php:72 mod/uimport.php:26
+#: mod/allfriends.php:15 mod/cal.php:302 mod/contacts.php:364
+#: mod/delegate.php:15 mod/dfrn_confirm.php:64 mod/dirfind.php:16
+#: mod/display.php:493 mod/editpost.php:13 mod/events.php:189
+#: mod/follow.php:14 mod/follow.php:55 mod/follow.php:118 mod/group.php:21
+#: mod/invite.php:18 mod/invite.php:106 mod/item.php:198 mod/item.php:210
+#: mod/manage.php:104 mod/message.php:49 mod/message.php:172 mod/mood.php:117
+#: mod/network.php:17 mod/notifications.php:74 mod/ostatus_subscribe.php:12
+#: mod/photos.php:169 mod/photos.php:1112 mod/poke.php:156
+#: mod/profile_photo.php:20 mod/profile_photo.php:180
+#: mod/profile_photo.php:191 mod/profile_photo.php:204 mod/profiles.php:173
+#: mod/profiles.php:611 mod/register.php:46 mod/regmod.php:107
+#: mod/repair_ostatus.php:12 mod/settings.php:25 mod/settings.php:133
+#: mod/settings.php:670 mod/suggest.php:61 mod/unfollow.php:14
+#: mod/unfollow.php:57 mod/unfollow.php:90 mod/wall_upload.php:102
+#: mod/wall_upload.php:105 mod/wallmessage.php:12 mod/wallmessage.php:36
+#: mod/wallmessage.php:76 mod/wallmessage.php:100 index.php:411
 msgid "Permission denied."
 msgstr "Permission denied."
 
-#: include/items.php:2384
+#: include/items.php:2392
 msgid "Archives"
 msgstr "Archives"
 
-#: include/oembed.php:253
-msgid "Embedded content"
-msgstr "Embedded content"
-
-#: include/oembed.php:261
-msgid "Embedding disabled"
-msgstr "Embedding disabled"
-
-#: include/ostatus.php:1964
+#: include/like.php:45
 #, php-format
-msgid "%s is now following %s."
-msgstr "%s is now following %s."
+msgid "%1$s is attending %2$s's %3$s"
+msgstr "%1$s is going to %2$s's %3$s"
 
-#: include/ostatus.php:1965
-msgid "following"
-msgstr "following"
+#: include/like.php:50
+#, php-format
+msgid "%1$s is not attending %2$s's %3$s"
+msgstr "%1$s is not going to %2$s's %3$s"
 
-#: include/ostatus.php:1968
+#: include/like.php:55
 #, php-format
-msgid "%s stopped following %s."
-msgstr "%s stopped following %s."
+msgid "%1$s may attend %2$s's %3$s"
+msgstr "%1$s may go to %2$s's %3$s"
 
-#: include/ostatus.php:1969
-msgid "stopped following"
-msgstr "stopped following"
+#: include/message.php:15 include/message.php:169
+msgid "[no subject]"
+msgstr "[no subject]"
 
-#: include/plugin.php:519 include/plugin.php:521
-msgid "Click here to upgrade."
-msgstr "Click here to upgrade."
+#: include/nav.php:38 mod/navigation.php:22
+msgid "Nothing new here"
+msgstr "Nothing new here"
 
-#: include/plugin.php:528
-msgid "This action exceeds the limits set by your subscription plan."
-msgstr "This action exceeds the limits set by your subscription plan."
+#: include/nav.php:42 mod/navigation.php:26
+msgid "Clear notifications"
+msgstr "Clear notifications"
 
-#: include/plugin.php:533
-msgid "This action is not available under your subscription plan."
-msgstr "This action is not available under your subscription plan."
+#: include/nav.php:43 include/text.php:1094
+msgid "@name, !forum, #tags, content"
+msgstr "@name, !forum, #tags, content"
 
-#: include/text.php:314
-msgid "newer"
-msgstr "Later posts"
+#: include/nav.php:81 view/theme/frio/theme.php:250 boot.php:860
+msgid "Logout"
+msgstr "Logout"
 
-#: include/text.php:315
-msgid "older"
-msgstr "Earlier posts"
+#: include/nav.php:81 view/theme/frio/theme.php:250
+msgid "End this session"
+msgstr "End this session"
 
-#: include/text.php:320
-msgid "first"
-msgstr "first"
+#: include/nav.php:84 include/nav.php:164 view/theme/frio/theme.php:253
+msgid "Your posts and conversations"
+msgstr "My posts and conversations"
 
-#: include/text.php:321
-msgid "prev"
-msgstr "prev"
+#: include/nav.php:85 view/theme/frio/theme.php:254
+msgid "Your profile page"
+msgstr "My profile page"
 
-#: include/text.php:355
-msgid "next"
-msgstr "next"
+#: include/nav.php:86 view/theme/frio/theme.php:255
+msgid "Your photos"
+msgstr "My photos"
 
-#: include/text.php:356
-msgid "last"
-msgstr "last"
+#: include/nav.php:87 view/theme/frio/theme.php:256
+msgid "Your videos"
+msgstr "My videos"
 
-#: include/text.php:410
-msgid "Loading more entries..."
-msgstr "Loading more entries..."
+#: include/nav.php:88 view/theme/frio/theme.php:257
+msgid "Your events"
+msgstr "My events"
 
-#: include/text.php:411
-msgid "The end"
-msgstr "The end"
+#: include/nav.php:89
+msgid "Personal notes"
+msgstr "Personal notes"
 
-#: include/text.php:970
-msgid "No contacts"
-msgstr "No contacts"
+#: include/nav.php:89
+msgid "Your personal notes"
+msgstr "My personal notes"
 
-#: include/text.php:994
+#: include/nav.php:98 mod/bookmarklet.php:15 boot.php:861
+msgid "Login"
+msgstr "Login"
+
+#: include/nav.php:98
+msgid "Sign in"
+msgstr "Sign in"
+
+#: include/nav.php:108
+msgid "Home Page"
+msgstr "Home page"
+
+#: include/nav.php:112 mod/register.php:293 boot.php:837
+msgid "Register"
+msgstr "Sign up now >>"
+
+#: include/nav.php:112
+msgid "Create an account"
+msgstr "Create account"
+
+#: include/nav.php:118 mod/help.php:51 view/theme/vier/theme.php:292
+msgid "Help"
+msgstr "Help"
+
+#: include/nav.php:118
+msgid "Help and documentation"
+msgstr "Help and documentation"
+
+#: include/nav.php:122
+msgid "Apps"
+msgstr "Apps"
+
+#: include/nav.php:122
+msgid "Addon applications, utilities, games"
+msgstr "Addon applications, utilities, games"
+
+#: include/nav.php:126 include/text.php:1091 mod/search.php:152
+msgid "Search"
+msgstr "Search"
+
+#: include/nav.php:126
+msgid "Search site content"
+msgstr "Search site content"
+
+#: include/nav.php:129 include/text.php:1099
+msgid "Full Text"
+msgstr "Full text"
+
+#: include/nav.php:130 include/text.php:1100
+msgid "Tags"
+msgstr "Tags"
+
+#: include/nav.php:146 include/nav.php:148 mod/community.php:31
+msgid "Community"
+msgstr "Community"
+
+#: include/nav.php:146
+msgid "Conversations on this site"
+msgstr "Public conversations on this site"
+
+#: include/nav.php:148
+msgid "Conversations on the network"
+msgstr "Conversations on the network"
+
+#: include/nav.php:155
+msgid "Directory"
+msgstr "Directory"
+
+#: include/nav.php:155
+msgid "People directory"
+msgstr "People directory"
+
+#: include/nav.php:157
+msgid "Information"
+msgstr "Information"
+
+#: include/nav.php:157
+msgid "Information about this friendica instance"
+msgstr "Information about this Friendica instance"
+
+#: include/nav.php:161 view/theme/frio/theme.php:260
+msgid "Conversations from your friends"
+msgstr "My friends' conversations"
+
+#: include/nav.php:162
+msgid "Network Reset"
+msgstr "Network reset"
+
+#: include/nav.php:162
+msgid "Load Network page with no filters"
+msgstr "Load network page without filters"
+
+#: include/nav.php:169
+msgid "Friend Requests"
+msgstr "Friend requests"
+
+#: include/nav.php:172 mod/notifications.php:99
+msgid "Notifications"
+msgstr "Notifications"
+
+#: include/nav.php:173
+msgid "See all notifications"
+msgstr "See all notifications"
+
+#: include/nav.php:174 mod/settings.php:908
+msgid "Mark as seen"
+msgstr "Mark as seen"
+
+#: include/nav.php:174
+msgid "Mark all system notifications seen"
+msgstr "Mark all system notifications seen"
+
+#: include/nav.php:178 mod/message.php:180 view/theme/frio/theme.php:262
+msgid "Messages"
+msgstr "Messages"
+
+#: include/nav.php:178 view/theme/frio/theme.php:262
+msgid "Private mail"
+msgstr "Private messages"
+
+#: include/nav.php:179
+msgid "Inbox"
+msgstr "Inbox"
+
+#: include/nav.php:180
+msgid "Outbox"
+msgstr "Outbox"
+
+#: include/nav.php:181 mod/message.php:19
+msgid "New Message"
+msgstr "New Message"
+
+#: include/nav.php:184
+msgid "Manage"
+msgstr "Manage"
+
+#: include/nav.php:184
+msgid "Manage other pages"
+msgstr "Manage other pages"
+
+#: include/nav.php:187 mod/settings.php:84
+msgid "Delegations"
+msgstr "Delegations"
+
+#: include/nav.php:187 mod/delegate.php:133
+msgid "Delegate Page Management"
+msgstr "Delegate Page Management"
+
+#: include/nav.php:189 mod/newmember.php:15 mod/admin.php:1710
+#: mod/admin.php:1986 mod/settings.php:114 view/theme/frio/theme.php:263
+msgid "Settings"
+msgstr "Settings"
+
+#: include/nav.php:189 view/theme/frio/theme.php:263
+msgid "Account settings"
+msgstr "Account settings"
+
+#: include/nav.php:192
+msgid "Manage/Edit Profiles"
+msgstr "Manage/Edit profiles"
+
+#: include/nav.php:195 view/theme/frio/theme.php:264
+msgid "Manage/edit friends and contacts"
+msgstr "Manage/Edit friends and contacts"
+
+#: include/nav.php:200 mod/admin.php:203
+msgid "Admin"
+msgstr "Admin"
+
+#: include/nav.php:200
+msgid "Site setup and configuration"
+msgstr "Site setup and configuration"
+
+#: include/nav.php:203
+msgid "Navigation"
+msgstr "Navigation"
+
+#: include/nav.php:203
+msgid "Site map"
+msgstr "Site map"
+
+#: include/network.php:701
+msgid "view full size"
+msgstr "view full size"
+
+#: include/oembed.php:254
+msgid "Embedded content"
+msgstr "Embedded content"
+
+#: include/oembed.php:262
+msgid "Embedding disabled"
+msgstr "Embedding disabled"
+
+#: include/ostatus.php:1643
+#, php-format
+msgid "%s is now following %s."
+msgstr "%s is now following %s."
+
+#: include/ostatus.php:1644
+msgid "following"
+msgstr "following"
+
+#: include/ostatus.php:1647
+#, php-format
+msgid "%s stopped following %s."
+msgstr "%s stopped following %s."
+
+#: include/ostatus.php:1648
+msgid "stopped following"
+msgstr "stopped following"
+
+#: include/plugin.php:519 include/plugin.php:521
+msgid "Click here to upgrade."
+msgstr "Click here to upgrade."
+
+#: include/plugin.php:528
+msgid "This action exceeds the limits set by your subscription plan."
+msgstr "This action exceeds the limits set by your subscription plan."
+
+#: include/plugin.php:533
+msgid "This action is not available under your subscription plan."
+msgstr "This action is not available under your subscription plan."
+
+#: include/security.php:64
+msgid "Welcome "
+msgstr "Welcome "
+
+#: include/security.php:65
+msgid "Please upload a profile photo."
+msgstr "Please upload a profile photo."
+
+#: include/security.php:67
+msgid "Welcome back "
+msgstr "Welcome back "
+
+#: include/security.php:424
+msgid ""
+"The form security token was not correct. This probably happened because the "
+"form has been opened for too long (>3 hours) before submitting it."
+msgstr "The form security token was incorrect. This probably happened because the form has not been submitted within 3 hours."
+
+#: include/text.php:315
+msgid "newer"
+msgstr "Later posts"
+
+#: include/text.php:316
+msgid "older"
+msgstr "Earlier posts"
+
+#: include/text.php:321
+msgid "first"
+msgstr "first"
+
+#: include/text.php:322
+msgid "prev"
+msgstr "prev"
+
+#: include/text.php:356
+msgid "next"
+msgstr "next"
+
+#: include/text.php:357
+msgid "last"
+msgstr "last"
+
+#: include/text.php:411
+msgid "Loading more entries..."
+msgstr "Loading more entries..."
+
+#: include/text.php:412
+msgid "The end"
+msgstr "The end"
+
+#: include/text.php:965
+msgid "No contacts"
+msgstr "No contacts"
+
+#: include/text.php:989
 #, php-format
 msgid "%d Contact"
 msgid_plural "%d Contacts"
 msgstr[0] "%d contact"
 msgstr[1] "%d contacts"
 
-#: include/text.php:1007
+#: include/text.php:1002
 msgid "View Contacts"
 msgstr "View contacts"
 
-#: include/text.php:1097 mod/editpost.php:101 mod/filer.php:32
-#: mod/notes.php:64
+#: include/text.php:1092 mod/filer.php:32 mod/notes.php:64
+#: mod/editpost.php:102
 msgid "Save"
 msgstr "Save"
 
-#: include/text.php:1158
+#: include/text.php:1153
 msgid "poke"
 msgstr "poke"
 
-#: include/text.php:1158
+#: include/text.php:1153
 msgid "poked"
 msgstr "poked"
 
-#: include/text.php:1159
+#: include/text.php:1154
 msgid "ping"
 msgstr "ping"
 
-#: include/text.php:1159
+#: include/text.php:1154
 msgid "pinged"
 msgstr "pinged"
 
-#: include/text.php:1160
+#: include/text.php:1155
 msgid "prod"
 msgstr "prod"
 
-#: include/text.php:1160
+#: include/text.php:1155
 msgid "prodded"
 msgstr "prodded"
 
-#: include/text.php:1161
+#: include/text.php:1156
 msgid "slap"
 msgstr "slap"
 
-#: include/text.php:1161
+#: include/text.php:1156
 msgid "slapped"
 msgstr "slapped"
 
-#: include/text.php:1162
+#: include/text.php:1157
 msgid "finger"
 msgstr "finger"
 
-#: include/text.php:1162
+#: include/text.php:1157
 msgid "fingered"
 msgstr "fingered"
 
-#: include/text.php:1163
+#: include/text.php:1158
 msgid "rebuff"
 msgstr "rebuff"
 
-#: include/text.php:1163
+#: include/text.php:1158
 msgid "rebuffed"
 msgstr "rebuffed"
 
-#: include/text.php:1177
+#: include/text.php:1172
 msgid "happy"
 msgstr "happy"
 
-#: include/text.php:1178
+#: include/text.php:1173
 msgid "sad"
 msgstr "sad"
 
-#: include/text.php:1179
+#: include/text.php:1174
 msgid "mellow"
 msgstr "mellow"
 
-#: include/text.php:1180
+#: include/text.php:1175
 msgid "tired"
 msgstr "tired"
 
-#: include/text.php:1181
+#: include/text.php:1176
 msgid "perky"
 msgstr "perky"
 
-#: include/text.php:1182
+#: include/text.php:1177
 msgid "angry"
 msgstr "angry"
 
-#: include/text.php:1183
+#: include/text.php:1178
 msgid "stupified"
 msgstr "stupified"
 
-#: include/text.php:1184
+#: include/text.php:1179
 msgid "puzzled"
 msgstr "puzzled"
 
-#: include/text.php:1185
+#: include/text.php:1180
 msgid "interested"
 msgstr "interested"
 
-#: include/text.php:1186
+#: include/text.php:1181
 msgid "bitter"
 msgstr "bitter"
 
-#: include/text.php:1187
+#: include/text.php:1182
 msgid "cheerful"
 msgstr "cheerful"
 
-#: include/text.php:1188
+#: include/text.php:1183
 msgid "alive"
 msgstr "alive"
 
-#: include/text.php:1189
+#: include/text.php:1184
 msgid "annoyed"
 msgstr "annoyed"
 
-#: include/text.php:1190
+#: include/text.php:1185
 msgid "anxious"
 msgstr "anxious"
 
-#: include/text.php:1191
+#: include/text.php:1186
 msgid "cranky"
 msgstr "cranky"
 
-#: include/text.php:1192
+#: include/text.php:1187
 msgid "disturbed"
 msgstr "disturbed"
 
-#: include/text.php:1193
+#: include/text.php:1188
 msgid "frustrated"
 msgstr "frustrated"
 
-#: include/text.php:1194
+#: include/text.php:1189
 msgid "motivated"
 msgstr "motivated"
 
-#: include/text.php:1195
+#: include/text.php:1190
 msgid "relaxed"
 msgstr "relaxed"
 
-#: include/text.php:1196
+#: include/text.php:1191
 msgid "surprised"
 msgstr "surprised"
 
-#: include/text.php:1406 mod/videos.php:388
+#: include/text.php:1408 mod/videos.php:389
 msgid "View Video"
 msgstr "View video"
 
-#: include/text.php:1423
+#: include/text.php:1425
 msgid "bytes"
 msgstr "bytes"
 
-#: include/text.php:1464 include/text.php:1475
+#: include/text.php:1460 include/text.php:1471
 msgid "Click to open/close"
 msgstr "Click to open/close"
 
-#: include/text.php:1607
+#: include/text.php:1603
 msgid "View on separate page"
 msgstr "View on separate page"
 
-#: include/text.php:1608
+#: include/text.php:1604
 msgid "view on separate page"
 msgstr "view on separate page"
 
-#: include/text.php:1893
+#: include/text.php:1889
 msgid "activity"
 msgstr "activity"
 
-#: include/text.php:1895 mod/content.php:624 object/Item.php:419
-#: object/Item.php:431
+#: include/text.php:1891 mod/content.php:625 object/Item.php:411
+#: object/Item.php:423
 msgid "comment"
 msgid_plural "comments"
 msgstr[0] "comment"
 msgstr[1] "comments"
 
-#: include/text.php:1898
+#: include/text.php:1894
 msgid "post"
 msgstr "post"
 
-#: include/text.php:2064
+#: include/text.php:2060
 msgid "Item filed"
 msgstr "Item filed"
 
-#: mod/allfriends.php:48
-msgid "No friends to display."
-msgstr "No friends to display."
+#: include/uimport.php:84
+msgid "Error decoding account file"
+msgstr "Error decoding account file"
+
+#: include/uimport.php:90
+msgid "Error! No version data in file! This is not a Friendica account file?"
+msgstr "Error! No version data in file! Is this a Friendica account file?"
+
+#: include/uimport.php:107 include/uimport.php:118
+msgid "Error! Cannot check nickname"
+msgstr "Error! Cannot check nickname."
+
+#: include/uimport.php:111 include/uimport.php:122
+#, php-format
+msgid "User '%s' already exists on this server!"
+msgstr "User '%s' already exists on this server!"
+
+#: include/uimport.php:144
+msgid "User creation error"
+msgstr "User creation error"
+
+#: include/uimport.php:165
+msgid "User profile creation error"
+msgstr "User profile creation error"
+
+#: include/uimport.php:214
+#, php-format
+msgid "%d contact not imported"
+msgid_plural "%d contacts not imported"
+msgstr[0] "%d contact not imported"
+msgstr[1] "%d contacts not imported"
+
+#: include/uimport.php:280
+msgid "Done. You can now login with your username and password"
+msgstr "Done. You can now login with your username and password"
+
+#: include/user.php:41 mod/settings.php:378
+msgid "Passwords do not match. Password unchanged."
+msgstr "Passwords do not match. Password unchanged."
+
+#: include/user.php:50
+msgid "An invitation is required."
+msgstr "An invitation is required."
+
+#: include/user.php:55
+msgid "Invitation could not be verified."
+msgstr "Invitation could not be verified."
+
+#: include/user.php:63
+msgid "Invalid OpenID url"
+msgstr "Invalid OpenID URL"
+
+#: include/user.php:84
+msgid "Please enter the required information."
+msgstr "Please enter the required information."
+
+#: include/user.php:98
+msgid "Please use a shorter name."
+msgstr "Please use a shorter name."
+
+#: include/user.php:100
+msgid "Name too short."
+msgstr "Name too short."
+
+#: include/user.php:108
+msgid "That doesn't appear to be your full (First Last) name."
+msgstr "That doesn't appear to be your full (i.e first and last) name."
+
+#: include/user.php:113
+msgid "Your email domain is not among those allowed on this site."
+msgstr "Your email domain is not allowed on this site."
+
+#: include/user.php:116
+msgid "Not a valid email address."
+msgstr "Not a valid email address."
+
+#: include/user.php:129
+msgid "Cannot use that email."
+msgstr "Cannot use that email."
+
+#: include/user.php:135
+msgid "Your \"nickname\" can only contain \"a-z\", \"0-9\" and \"_\"."
+msgstr "Your \"nickname\" can only contain \"a-z\", \"0-9\" and \"_\"."
+
+#: include/user.php:142 include/user.php:230
+msgid "Nickname is already registered. Please choose another."
+msgstr "Nickname is already registered. Please choose another."
+
+#: include/user.php:152
+msgid ""
+"Nickname was once registered here and may not be re-used. Please choose "
+"another."
+msgstr "Nickname was once registered here and may not be re-used. Please choose another."
+
+#: include/user.php:168
+msgid "SERIOUS ERROR: Generation of security keys failed."
+msgstr "SERIOUS ERROR: Generation of security keys failed."
+
+#: include/user.php:216
+msgid "An error occurred during registration. Please try again."
+msgstr "An error occurred during registration. Please try again."
+
+#: include/user.php:239 view/theme/duepuntozero/config.php:47
+msgid "default"
+msgstr "default"
+
+#: include/user.php:249
+msgid "An error occurred creating your default profile. Please try again."
+msgstr "An error occurred creating your default profile. Please try again."
+
+#: include/user.php:399
+#, php-format
+msgid ""
+"\n"
+"\t\tDear %1$s,\n"
+"\t\t\tThank you for registering at %2$s. Your account is pending for approval by the administrator.\n"
+"\t"
+msgstr "\n\t\tDear %1$s,\n\t\t\tThank you for signing up at %2$s. Your account is pending approval by the administrator.\n\t"
+
+#: include/user.php:409
+#, php-format
+msgid "Registration at %s"
+msgstr "Registration at %s"
+
+#: include/user.php:419
+#, php-format
+msgid ""
+"\n"
+"\t\tDear %1$s,\n"
+"\t\t\tThank you for registering at %2$s. Your account has been created.\n"
+"\t"
+msgstr "\n\t\tDear %1$s,\n\t\t\tThank you for signing up at %2$s. Your account has been created.\n\t"
+
+#: include/user.php:423
+#, php-format
+msgid ""
+"\n"
+"\t\tThe login details are as follows:\n"
+"\t\t\tSite Location:\t%3$s\n"
+"\t\t\tLogin Name:\t%1$s\n"
+"\t\t\tPassword:\t%5$s\n"
+"\n"
+"\t\tYou may change your password from your account \"Settings\" page after logging\n"
+"\t\tin.\n"
+"\n"
+"\t\tPlease take a few moments to review the other account settings on that page.\n"
+"\n"
+"\t\tYou may also wish to add some basic information to your default profile\n"
+"\t\t(on the \"Profiles\" page) so that other people can easily find you.\n"
+"\n"
+"\t\tWe recommend setting your full name, adding a profile photo,\n"
+"\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n"
+"\t\tperhaps what country you live in; if you do not wish to be more specific\n"
+"\t\tthan that.\n"
+"\n"
+"\t\tWe fully respect your right to privacy, and none of these items are necessary.\n"
+"\t\tIf you are new and do not know anybody here, they may help\n"
+"\t\tyou to make some new and interesting friends.\n"
+"\n"
+"\n"
+"\t\tThank you and welcome to %2$s."
+msgstr "\n\t\tThe login details are as follows:\n\t\t\tSite Location:\t%3$s\n\t\t\tLogin Name:\t%1$s\n\t\t\tPassword:\t%5$s\n\n\t\tYou may change your password for your account \"Settings\" after logging\n\t\tin.\n\n\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\tYou may wish to add some basic information to your default profile\n\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\tWe recommend setting your full name, adding a profile photo,\n\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\tperhaps what country you live in, if you do not wish to be more specific\n\t\tthan that.\n\n\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\tIf you are new and do not know anybody here, these settings may help to\n\t\tmake new and interesting friends.\n\n\n\t\tThank you and welcome to %2$s."
+
+#: include/user.php:455 mod/admin.php:1400
+#, php-format
+msgid "Registration details for %s"
+msgstr "Registration details for %s"
 
 #: mod/api.php:78 mod/api.php:104
 msgid "Authorize application connection"
@@ -3129,17 +3127,17 @@ msgid ""
 " and/or create new posts for you?"
 msgstr "Do you want to authorize this application to access your posts and contacts and create new posts for you?"
 
-#: mod/api.php:108 mod/dfrn_request.php:880 mod/follow.php:115
-#: mod/profiles.php:643 mod/profiles.php:647 mod/profiles.php:673
-#: mod/register.php:249 mod/settings.php:1172 mod/settings.php:1178
-#: mod/settings.php:1185 mod/settings.php:1189 mod/settings.php:1194
-#: mod/settings.php:1199 mod/settings.php:1204 mod/settings.php:1209
-#: mod/settings.php:1235 mod/settings.php:1236 mod/settings.php:1237
-#: mod/settings.php:1238 mod/settings.php:1239
+#: mod/api.php:108 mod/dfrn_request.php:881 mod/follow.php:150
+#: mod/profiles.php:644 mod/profiles.php:648 mod/profiles.php:674
+#: mod/register.php:250 mod/settings.php:1173 mod/settings.php:1179
+#: mod/settings.php:1186 mod/settings.php:1190 mod/settings.php:1195
+#: mod/settings.php:1200 mod/settings.php:1205 mod/settings.php:1210
+#: mod/settings.php:1236 mod/settings.php:1237 mod/settings.php:1238
+#: mod/settings.php:1239 mod/settings.php:1240
 msgid "No"
 msgstr "No"
 
-#: mod/apps.php:9 index.php:257
+#: mod/apps.php:9 index.php:258
 msgid "You must be logged in to use addons. "
 msgstr "You must be logged in to use addons. "
 
@@ -3207,293 +3205,89 @@ msgstr "Source input (Diaspora format): "
 msgid "diaspora2bb: "
 msgstr "diaspora2bb: "
 
-#: mod/bookmarklet.php:43
-msgid "The post was created"
-msgstr "The post was created"
-
-#: mod/cal.php:145 mod/profile.php:156 mod/display.php:351
-msgid "Access to this profile has been restricted."
-msgstr "Access to this profile has been restricted."
-
-#: mod/cal.php:273 mod/events.php:378
-msgid "View"
-msgstr "View"
-
-#: mod/cal.php:274 mod/events.php:380
-msgid "Previous"
-msgstr "Previous"
-
-#: mod/cal.php:275 mod/install.php:203 mod/events.php:381
-msgid "Next"
-msgstr "Next"
-
-#: mod/cal.php:284 mod/events.php:390
-msgid "list"
-msgstr "List"
-
-#: mod/cal.php:294
-msgid "User not found"
-msgstr "User not found"
-
-#: mod/cal.php:310
-msgid "This calendar format is not supported"
-msgstr "This calendar format is not supported"
-
-#: mod/cal.php:312
-msgid "No exportable data found"
-msgstr "No exportable data found"
-
-#: mod/cal.php:327
-msgid "calendar"
-msgstr "calendar"
-
 #: mod/common.php:93
 msgid "No contacts in common."
 msgstr "No contacts in common."
 
-#: mod/common.php:143 mod/contacts.php:876
+#: mod/common.php:143 mod/contacts.php:883
 msgid "Common Friends"
 msgstr "Common friends"
 
-#: mod/content.php:120 mod/network.php:490
-msgid "No such group"
-msgstr "No such group"
-
-#: mod/content.php:131 mod/group.php:214 mod/network.php:517
-msgid "Group is empty"
-msgstr "Group is empty"
-
-#: mod/content.php:136 mod/network.php:521
-#, php-format
-msgid "Group: %s"
-msgstr "Group: %s"
+#: mod/credits.php:19
+msgid "Credits"
+msgstr "Credits"
 
-#: mod/content.php:326 object/Item.php:96
-msgid "This entry was edited"
-msgstr "This entry was edited"
+#: mod/credits.php:20
+msgid ""
+"Friendica is a community project, that would not be possible without the "
+"help of many people. Here is a list of those who have contributed to the "
+"code or the translation of Friendica. Thank you all!"
+msgstr "Friendica is a community project that would not be possible without the help of many people. Here is a list of those who have contributed to the code or the translation of Friendica. Thank you all!"
 
-#: mod/content.php:622 object/Item.php:417
-#, php-format
-msgid "%d comment"
-msgid_plural "%d comments"
-msgstr[0] "%d comment"
-msgstr[1] "%d comments -"
+#: mod/crepair.php:92
+msgid "Contact settings applied."
+msgstr "Contact settings applied."
 
-#: mod/content.php:639 mod/photos.php:1431 object/Item.php:117
-msgid "Private Message"
-msgstr "Private message"
+#: mod/crepair.php:94
+msgid "Contact update failed."
+msgstr "Contact update failed."
 
-#: mod/content.php:703 mod/photos.php:1627 object/Item.php:271
-msgid "I like this (toggle)"
-msgstr "I like this (toggle)"
+#: mod/crepair.php:119 mod/fsuggest.php:22 mod/fsuggest.php:94
+#: mod/dfrn_confirm.php:129
+msgid "Contact not found."
+msgstr "Contact not found."
 
-#: mod/content.php:703 object/Item.php:271
-msgid "like"
-msgstr "Like"
+#: mod/crepair.php:125
+msgid ""
+"<strong>WARNING: This is highly advanced</strong> and if you enter incorrect"
+" information your communications with this contact may stop working."
+msgstr "<strong>Warning: These are highly advanced settings.</strong> If you enter incorrect information your communications with this contact may not working."
 
-#: mod/content.php:704 mod/photos.php:1628 object/Item.php:272
-msgid "I don't like this (toggle)"
-msgstr "I don't like this (toggle)"
+#: mod/crepair.php:126
+msgid ""
+"Please use your browser 'Back' button <strong>now</strong> if you are "
+"uncertain what to do on this page."
+msgstr "Please use your browser 'Back' button <strong>now</strong> if you are uncertain what to do on this page."
 
-#: mod/content.php:704 object/Item.php:272
-msgid "dislike"
-msgstr "Dislike"
+#: mod/crepair.php:139 mod/crepair.php:141
+msgid "No mirroring"
+msgstr "No mirroring"
 
-#: mod/content.php:706 object/Item.php:275
-msgid "Share this"
-msgstr "Share this"
+#: mod/crepair.php:139
+msgid "Mirror as forwarded posting"
+msgstr "Mirror as forwarded posting"
 
-#: mod/content.php:706 object/Item.php:275
-msgid "share"
-msgstr "Share"
+#: mod/crepair.php:139 mod/crepair.php:141
+msgid "Mirror as my own posting"
+msgstr "Mirror as my own posting"
 
-#: mod/content.php:726 mod/photos.php:1645 mod/photos.php:1687
-#: mod/photos.php:1767 object/Item.php:702
-msgid "This is you"
-msgstr "This is me"
+#: mod/crepair.php:155
+msgid "Return to contact editor"
+msgstr "Return to contact editor"
 
-#: mod/content.php:728 mod/content.php:951 mod/photos.php:1647
-#: mod/photos.php:1689 mod/photos.php:1769 object/Item.php:389
-#: object/Item.php:704
-msgid "Comment"
-msgstr "Comment"
+#: mod/crepair.php:157
+msgid "Refetch contact data"
+msgstr "Re-fetch contact data."
 
-#: mod/content.php:729 mod/crepair.php:159 mod/fsuggest.php:109
-#: mod/install.php:244 mod/install.php:284 mod/localtime.php:46
-#: mod/manage.php:156 mod/message.php:340 mod/message.php:523 mod/mood.php:139
-#: mod/photos.php:1143 mod/photos.php:1273 mod/photos.php:1599
-#: mod/photos.php:1648 mod/photos.php:1690 mod/photos.php:1770
-#: mod/poke.php:204 mod/events.php:508 mod/profiles.php:684
-#: mod/contacts.php:588 mod/invite.php:149 object/Item.php:705
-#: view/theme/duepuntozero/config.php:64 view/theme/frio/config.php:67
-#: view/theme/quattro/config.php:70 view/theme/vier/config.php:113
+#: mod/crepair.php:159 mod/fsuggest.php:109 mod/contacts.php:595
+#: mod/content.php:730 mod/events.php:509 mod/install.php:245
+#: mod/install.php:285 mod/invite.php:150 mod/localtime.php:47
+#: mod/manage.php:157 mod/message.php:338 mod/message.php:521 mod/mood.php:140
+#: mod/photos.php:1144 mod/photos.php:1274 mod/photos.php:1600
+#: mod/photos.php:1649 mod/photos.php:1691 mod/photos.php:1771
+#: mod/poke.php:205 mod/profiles.php:685 object/Item.php:697
+#: view/theme/duepuntozero/config.php:65 view/theme/frio/config.php:68
+#: view/theme/quattro/config.php:71 view/theme/vier/config.php:114
 msgid "Submit"
 msgstr "Submit"
 
-#: mod/content.php:730 object/Item.php:706
-msgid "Bold"
-msgstr "Bold"
-
-#: mod/content.php:731 object/Item.php:707
-msgid "Italic"
-msgstr "Italic"
+#: mod/crepair.php:161
+msgid "Remote Self"
+msgstr "Remote self"
 
-#: mod/content.php:732 object/Item.php:708
-msgid "Underline"
-msgstr "Underline"
-
-#: mod/content.php:733 object/Item.php:709
-msgid "Quote"
-msgstr "Quote"
-
-#: mod/content.php:734 object/Item.php:710
-msgid "Code"
-msgstr "Code"
-
-#: mod/content.php:735 object/Item.php:711
-msgid "Image"
-msgstr "Image"
-
-#: mod/content.php:736 object/Item.php:712
-msgid "Link"
-msgstr "Link"
-
-#: mod/content.php:737 object/Item.php:713
-msgid "Video"
-msgstr "Video"
-
-#: mod/content.php:747 mod/settings.php:744 object/Item.php:122
-#: object/Item.php:124
-msgid "Edit"
-msgstr "Edit"
-
-#: mod/content.php:773 object/Item.php:238
-msgid "add star"
-msgstr "Add star"
-
-#: mod/content.php:774 object/Item.php:239
-msgid "remove star"
-msgstr "Remove star"
-
-#: mod/content.php:775 object/Item.php:240
-msgid "toggle star status"
-msgstr "Toggle star status"
-
-#: mod/content.php:778 object/Item.php:243
-msgid "starred"
-msgstr "Starred"
-
-#: mod/content.php:779 mod/content.php:801 object/Item.php:260
-msgid "add tag"
-msgstr "Add tag"
-
-#: mod/content.php:790 object/Item.php:248
-msgid "ignore thread"
-msgstr "Ignore thread"
-
-#: mod/content.php:791 object/Item.php:249
-msgid "unignore thread"
-msgstr "Unignore thread"
-
-#: mod/content.php:792 object/Item.php:250
-msgid "toggle ignore status"
-msgstr "Toggle ignore status"
-
-#: mod/content.php:795 mod/ostatus_subscribe.php:75 object/Item.php:253
-msgid "ignored"
-msgstr "Ignored"
-
-#: mod/content.php:806 object/Item.php:141
-msgid "save to folder"
-msgstr "Save to folder"
-
-#: mod/content.php:854 object/Item.php:212
-msgid "I will attend"
-msgstr "I will attend"
-
-#: mod/content.php:854 object/Item.php:212
-msgid "I will not attend"
-msgstr "I will not attend"
-
-#: mod/content.php:854 object/Item.php:212
-msgid "I might attend"
-msgstr "I might attend"
-
-#: mod/content.php:918 object/Item.php:355
-msgid "to"
-msgstr "to"
-
-#: mod/content.php:919 object/Item.php:357
-msgid "Wall-to-Wall"
-msgstr "Wall-to-wall"
-
-#: mod/content.php:920 object/Item.php:358
-msgid "via Wall-To-Wall:"
-msgstr "via wall-to-wall:"
-
-#: mod/credits.php:19
-msgid "Credits"
-msgstr "Credits"
-
-#: mod/credits.php:20
-msgid ""
-"Friendica is a community project, that would not be possible without the "
-"help of many people. Here is a list of those who have contributed to the "
-"code or the translation of Friendica. Thank you all!"
-msgstr "Friendica is a community project that would not be possible without the help of many people. Here is a list of those who have contributed to the code or the translation of Friendica. Thank you all!"
-
-#: mod/crepair.php:92
-msgid "Contact settings applied."
-msgstr "Contact settings applied."
-
-#: mod/crepair.php:94
-msgid "Contact update failed."
-msgstr "Contact update failed."
-
-#: mod/crepair.php:119 mod/dfrn_confirm.php:128 mod/fsuggest.php:22
-#: mod/fsuggest.php:94
-msgid "Contact not found."
-msgstr "Contact not found."
-
-#: mod/crepair.php:125
-msgid ""
-"<strong>WARNING: This is highly advanced</strong> and if you enter incorrect"
-" information your communications with this contact may stop working."
-msgstr "<strong>Warning: These are highly advanced settings.</strong> If you enter incorrect information your communications with this contact may not working."
-
-#: mod/crepair.php:126
-msgid ""
-"Please use your browser 'Back' button <strong>now</strong> if you are "
-"uncertain what to do on this page."
-msgstr "Please use your browser 'Back' button <strong>now</strong> if you are uncertain what to do on this page."
-
-#: mod/crepair.php:139 mod/crepair.php:141
-msgid "No mirroring"
-msgstr "No mirroring"
-
-#: mod/crepair.php:139
-msgid "Mirror as forwarded posting"
-msgstr "Mirror as forwarded posting"
-
-#: mod/crepair.php:139 mod/crepair.php:141
-msgid "Mirror as my own posting"
-msgstr "Mirror as my own posting"
-
-#: mod/crepair.php:155
-msgid "Return to contact editor"
-msgstr "Return to contact editor"
-
-#: mod/crepair.php:157
-msgid "Refetch contact data"
-msgstr "Re-fetch contact data."
-
-#: mod/crepair.php:161
-msgid "Remote Self"
-msgstr "Remote self"
-
-#: mod/crepair.php:164
-msgid "Mirror postings from this contact"
-msgstr "Mirror postings from this contact:"
+#: mod/crepair.php:164
+msgid "Mirror postings from this contact"
+msgstr "Mirror postings from this contact:"
 
 #: mod/crepair.php:166
 msgid ""
@@ -3501,9 +3295,9 @@ msgid ""
 "entries from this contact."
 msgstr "This will cause Friendica to repost new entries from this contact."
 
-#: mod/crepair.php:170 mod/admin.php:1580 mod/admin.php:1593
-#: mod/admin.php:1606 mod/admin.php:1622 mod/settings.php:684
-#: mod/settings.php:710
+#: mod/crepair.php:170 mod/admin.php:1582 mod/admin.php:1595
+#: mod/admin.php:1608 mod/admin.php:1624 mod/settings.php:685
+#: mod/settings.php:711
 msgid "Name"
 msgstr "Name:"
 
@@ -3539,5279 +3333,5508 @@ msgstr "Poll/Feed URL:"
 msgid "New photo from this URL"
 msgstr "New photo from this URL:"
 
-#: mod/delegate.php:103
-msgid "No potential page delegates located."
-msgstr "No potential page delegates found."
+#: mod/filer.php:31
+msgid "- select -"
+msgstr "- select -"
 
-#: mod/delegate.php:134
-msgid ""
-"Delegates are able to manage all aspects of this account/page except for "
-"basic account settings. Please do not delegate your personal account to "
-"anybody that you do not trust completely."
-msgstr "Delegates are able to manage all aspects of this account except for key setting features. Please do not delegate your personal account to anybody that you do not trust completely."
+#: mod/fsuggest.php:65
+msgid "Friend suggestion sent."
+msgstr "Friend suggestion sent"
 
-#: mod/delegate.php:135
-msgid "Existing Page Managers"
-msgstr "Existing page managers"
+#: mod/fsuggest.php:99
+msgid "Suggest Friends"
+msgstr "Suggest friends"
 
-#: mod/delegate.php:137
-msgid "Existing Page Delegates"
-msgstr "Existing page delegates"
+#: mod/fsuggest.php:101
+#, php-format
+msgid "Suggest a friend for %s"
+msgstr "Suggest a friend for %s"
 
-#: mod/delegate.php:139
-msgid "Potential Delegates"
-msgstr "Potential delegates"
+#: mod/lockview.php:33 mod/lockview.php:41
+msgid "Remote privacy information not available."
+msgstr "Remote privacy information not available."
 
-#: mod/delegate.php:141 mod/tagrm.php:97
-msgid "Remove"
-msgstr "Remove"
+#: mod/lockview.php:50
+msgid "Visible to:"
+msgstr "Visible to:"
 
-#: mod/delegate.php:142
-msgid "Add"
-msgstr "Add"
+#: mod/maintenance.php:21
+msgid "System down for maintenance"
+msgstr "Sorry, the system is currently down for maintenance."
 
-#: mod/delegate.php:143
-msgid "No entries."
-msgstr "No entries."
+#: mod/newmember.php:7
+msgid "Welcome to Friendica"
+msgstr "Welcome to Friendica"
 
-#: mod/dfrn_confirm.php:72 mod/profiles.php:23 mod/profiles.php:139
-#: mod/profiles.php:186 mod/profiles.php:622
-msgid "Profile not found."
-msgstr "Profile not found."
+#: mod/newmember.php:8
+msgid "New Member Checklist"
+msgstr "New Member Checklist"
 
-#: mod/dfrn_confirm.php:129
+#: mod/newmember.php:10
 msgid ""
-"This may occasionally happen if contact was requested by both persons and it"
-" has already been approved."
-msgstr "This may occasionally happen if contact was requested by both persons and it has already been approved."
-
-#: mod/dfrn_confirm.php:246
-msgid "Response from remote site was not understood."
-msgstr "Response from remote site was not understood."
+"We would like to offer some tips and links to help make your experience "
+"enjoyable. Click any item to visit the relevant page. A link to this page "
+"will be visible from your home page for two weeks after your initial "
+"registration and then will quietly disappear."
+msgstr "We would like to offer some tips and links to help make your experience enjoyable. Click any item to visit the relevant page. A link to this page will be visible from your home page for two weeks after your initial registration and then will quietly disappear."
 
-#: mod/dfrn_confirm.php:255 mod/dfrn_confirm.php:260
-msgid "Unexpected response from remote site: "
-msgstr "Unexpected response from remote site: "
+#: mod/newmember.php:11
+msgid "Getting Started"
+msgstr "Getting started"
 
-#: mod/dfrn_confirm.php:269
-msgid "Confirmation completed successfully."
-msgstr "Confirmation completed successfully."
+#: mod/newmember.php:13
+msgid "Friendica Walk-Through"
+msgstr "Friendica walk-through"
 
-#: mod/dfrn_confirm.php:271 mod/dfrn_confirm.php:285 mod/dfrn_confirm.php:292
-msgid "Remote site reported: "
-msgstr "Remote site reported: "
+#: mod/newmember.php:13
+msgid ""
+"On your <em>Quick Start</em> page - find a brief introduction to your "
+"profile and network tabs, make some new connections, and find some groups to"
+" join."
+msgstr "On your <em>Quick Start</em> page - find a brief introduction to your profile and network tabs, make some new connections, and find some groups to join."
 
-#: mod/dfrn_confirm.php:283
-msgid "Temporary failure. Please wait and try again."
-msgstr "Temporary failure. Please wait and try again."
+#: mod/newmember.php:17
+msgid "Go to Your Settings"
+msgstr "Go to your settings"
 
-#: mod/dfrn_confirm.php:290
-msgid "Introduction failed or was revoked."
-msgstr "Introduction failed or was revoked."
+#: mod/newmember.php:17
+msgid ""
+"On your <em>Settings</em> page -  change your initial password. Also make a "
+"note of your Identity Address. This looks just like an email address - and "
+"will be useful in making friends on the free social web."
+msgstr "On your <em>Settings</em> page -  change your initial password. Also make a note of your Identity Address. This looks just like an email address - and will be useful in making friends on the free social web."
 
-#: mod/dfrn_confirm.php:420
-msgid "Unable to set contact photo."
-msgstr "Unable to set contact photo."
+#: mod/newmember.php:18
+msgid ""
+"Review the other settings, particularly the privacy settings. An unpublished"
+" directory listing is like having an unlisted phone number. In general, you "
+"should probably publish your listing - unless all of your friends and "
+"potential friends know exactly how to find you."
+msgstr "Review the other settings, particularly the privacy settings. An unpublished directory listing is like having an unlisted phone number. In general, you should probably publish your listing - unless all of your friends and potential friends know exactly how to find you."
 
-#: mod/dfrn_confirm.php:561
-#, php-format
-msgid "No user record found for '%s' "
-msgstr "No user record found for '%s' "
+#: mod/newmember.php:22 mod/profile_photo.php:256 mod/profiles.php:704
+msgid "Upload Profile Photo"
+msgstr "Upload profile photo"
 
-#: mod/dfrn_confirm.php:571
-msgid "Our site encryption key is apparently messed up."
-msgstr "Our site encryption key is apparently messed up."
+#: mod/newmember.php:22
+msgid ""
+"Upload a profile photo if you have not done so already. Studies have shown "
+"that people with real photos of themselves are ten times more likely to make"
+" friends than people who do not."
+msgstr "Upload a profile photo if you have not done so already. Studies have shown that people with real photos of themselves are ten times more likely to make friends than people who do not."
 
-#: mod/dfrn_confirm.php:582
-msgid "Empty site URL was provided or URL could not be decrypted by us."
-msgstr "An empty URL was provided or the URL could not be decrypted by us."
+#: mod/newmember.php:23
+msgid "Edit Your Profile"
+msgstr "Edit your profile"
 
-#: mod/dfrn_confirm.php:604
-msgid "Contact record was not found for you on our site."
-msgstr "Contact record was not found for you on our site."
-
-#: mod/dfrn_confirm.php:618
-#, php-format
-msgid "Site public key not available in contact record for URL %s."
-msgstr "Site public key not available in contact record for URL %s."
-
-#: mod/dfrn_confirm.php:638
+#: mod/newmember.php:23
 msgid ""
-"The ID provided by your system is a duplicate on our system. It should work "
-"if you try again."
-msgstr "The ID provided by your system is a duplicate on our system. It should work if you try again."
-
-#: mod/dfrn_confirm.php:649
-msgid "Unable to set your contact credentials on our system."
-msgstr "Unable to set your contact credentials on our system."
-
-#: mod/dfrn_confirm.php:711
-msgid "Unable to update your contact profile details on our system"
-msgstr "Unable to update your contact profile details on our system"
-
-#: mod/dfrn_confirm.php:783
-#, php-format
-msgid "%1$s has joined %2$s"
-msgstr "%1$s has joined %2$s"
-
-#: mod/dfrn_poll.php:104 mod/dfrn_poll.php:539
-#, php-format
-msgid "%1$s welcomes %2$s"
-msgstr "%1$s welcomes %2$s"
-
-#: mod/directory.php:33 mod/photos.php:981 mod/videos.php:200
-#: mod/viewcontacts.php:39 mod/webfinger.php:10 mod/dfrn_request.php:804
-#: mod/probe.php:9 mod/search.php:96 mod/search.php:102 mod/community.php:18
-#: mod/display.php:216
-msgid "Public access denied."
-msgstr "Public access denied."
-
-#: mod/directory.php:195 view/theme/vier/theme.php:193
-msgid "Global Directory"
-msgstr "Global Directory"
+"Edit your <strong>default</strong> profile to your liking. Review the "
+"settings for hiding your list of friends and hiding the profile from unknown"
+" visitors."
+msgstr "Edit your <strong>default</strong> profile to your liking. Review the settings for hiding your list of friends and hiding the profile from unknown visitors."
 
-#: mod/directory.php:197
-msgid "Find on this site"
-msgstr "Find on this site"
+#: mod/newmember.php:24
+msgid "Profile Keywords"
+msgstr "Profile keywords"
 
-#: mod/directory.php:199
-msgid "Results for:"
-msgstr "Results for:"
+#: mod/newmember.php:24
+msgid ""
+"Set some public keywords for your default profile which describe your "
+"interests. We may be able to find other people with similar interests and "
+"suggest friendships."
+msgstr "Set some public keywords for your default profile which describe your interests. We may be able to find other people with similar interests and suggest friendships."
 
-#: mod/directory.php:201
-msgid "Site Directory"
-msgstr "Site directory"
+#: mod/newmember.php:26
+msgid "Connecting"
+msgstr "Connecting"
 
-#: mod/directory.php:208
-msgid "No entries (some entries may be hidden)."
-msgstr "No entries (entries may be hidden)."
+#: mod/newmember.php:32
+msgid "Importing Emails"
+msgstr "Importing emails"
 
-#: mod/editpost.php:19 mod/editpost.php:29
-msgid "Item not found"
-msgstr "Item not found"
+#: mod/newmember.php:32
+msgid ""
+"Enter your email access information on your Connector Settings page if you "
+"wish to import and interact with friends or mailing lists from your email "
+"INBOX"
+msgstr "Enter your email access information on your Connector Settings if you wish to import and interact with friends or mailing lists from your email INBOX"
 
-#: mod/editpost.php:34
-msgid "Edit post"
-msgstr "Edit post"
+#: mod/newmember.php:35
+msgid "Go to Your Contacts Page"
+msgstr "Go to your contacts page"
 
-#: mod/fbrowser.php:134
-msgid "Files"
-msgstr "Files"
+#: mod/newmember.php:35
+msgid ""
+"Your Contacts page is your gateway to managing friendships and connecting "
+"with friends on other networks. Typically you enter their address or site "
+"URL in the <em>Add New Contact</em> dialog."
+msgstr "Your contacts page is your gateway to managing friendships and connecting with friends on other networks. Typically you enter their address or site URL in the <em>Add new contact</em> dialog."
 
-#: mod/filer.php:31
-msgid "- select -"
-msgstr "- select -"
+#: mod/newmember.php:36
+msgid "Go to Your Site's Directory"
+msgstr "Go to your site's directory"
 
-#: mod/friendica.php:69
-msgid "This is Friendica, version"
-msgstr "This is Friendica, version"
+#: mod/newmember.php:36
+msgid ""
+"The Directory page lets you find other people in this network or other "
+"federated sites. Look for a <em>Connect</em> or <em>Follow</em> link on "
+"their profile page. Provide your own Identity Address if requested."
+msgstr "The directory lets you find other people in this network or other federated sites. Look for a <em>Connect</em> or <em>Follow</em> link on their profile page. Provide your own identity address when requested."
 
-#: mod/friendica.php:70
-msgid "running at web location"
-msgstr "running at web location"
+#: mod/newmember.php:37
+msgid "Finding New People"
+msgstr "Finding new people"
 
-#: mod/friendica.php:74
+#: mod/newmember.php:37
 msgid ""
-"Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn "
-"more about the Friendica project."
-msgstr "Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn more about the Friendica project."
-
-#: mod/friendica.php:78
-msgid "Bug reports and issues: please visit"
-msgstr "Bug reports and issues: please visit"
+"On the side panel of the Contacts page are several tools to find new "
+"friends. We can match people by interest, look up people by name or "
+"interest, and provide suggestions based on network relationships. On a brand"
+" new site, friend suggestions will usually begin to be populated within 24 "
+"hours."
+msgstr "On the side panel of the Contacts page are several tools to find new friends. We can match people by interest, look up people by name or interest, and provide suggestions based on network relationships. On a brand new site, friend suggestions will usually begin to be populated within 24 hours."
 
-#: mod/friendica.php:78
-msgid "the bugtracker at github"
-msgstr "the bugtracker at github"
+#: mod/newmember.php:41
+msgid "Group Your Contacts"
+msgstr "Group your contacts"
 
-#: mod/friendica.php:81
+#: mod/newmember.php:41
 msgid ""
-"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - "
-"dot com"
-msgstr "Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"
-
-#: mod/friendica.php:95
-msgid "Installed plugins/addons/apps:"
-msgstr "Installed plugins/addons/apps:"
+"Once you have made some friends, organize them into private conversation "
+"groups from the sidebar of your Contacts page and then you can interact with"
+" each group privately on your Network page."
+msgstr "Once you have made some friends, organize them into private conversation groups from the sidebar of your contacts page and then you can interact with each group privately on your network page."
 
-#: mod/friendica.php:109
-msgid "No installed plugins/addons/apps"
-msgstr "No installed plugins/addons/apps"
+#: mod/newmember.php:44
+msgid "Why Aren't My Posts Public?"
+msgstr "Why aren't my posts public?"
 
-#: mod/friendica.php:114
-msgid "On this server the following remote servers are blocked."
-msgstr "On this server the following remote servers are blocked."
+#: mod/newmember.php:44
+msgid ""
+"Friendica respects your privacy. By default, your posts will only show up to"
+" people you've added as friends. For more information, see the help section "
+"from the link above."
+msgstr "Friendica respects your privacy. By default, your posts will only show up to people you've added as friends. For more information, see the help section from the link above."
 
-#: mod/friendica.php:115 mod/admin.php:289 mod/admin.php:307
-msgid "Reason for the block"
-msgstr "Reason for the block"
+#: mod/newmember.php:48
+msgid "Getting Help"
+msgstr "Getting help"
 
-#: mod/fsuggest.php:65
-msgid "Friend suggestion sent."
-msgstr "Friend suggestion sent"
+#: mod/newmember.php:50
+msgid "Go to the Help Section"
+msgstr "Go to the help section"
 
-#: mod/fsuggest.php:99
-msgid "Suggest Friends"
-msgstr "Suggest friends"
+#: mod/newmember.php:50
+msgid ""
+"Our <strong>help</strong> pages may be consulted for detail on other program"
+" features and resources."
+msgstr "Our <strong>help</strong> pages may be consulted for detail on other program features and resources."
 
-#: mod/fsuggest.php:101
+#: mod/nogroup.php:45 mod/viewcontacts.php:105 mod/contacts.php:606
+#: mod/contacts.php:950
 #, php-format
-msgid "Suggest a friend for %s"
-msgstr "Suggest a friend for %s"
-
-#: mod/group.php:30
-msgid "Group created."
-msgstr "Group created."
-
-#: mod/group.php:36
-msgid "Could not create group."
-msgstr "Could not create group."
+msgid "Visit %s's profile [%s]"
+msgstr "Visit %s's profile [%s]"
 
-#: mod/group.php:50 mod/group.php:155
-msgid "Group not found."
-msgstr "Group not found."
+#: mod/nogroup.php:46 mod/contacts.php:951
+msgid "Edit contact"
+msgstr "Edit contact"
 
-#: mod/group.php:64
-msgid "Group name changed."
-msgstr "Group name changed."
+#: mod/nogroup.php:67
+msgid "Contacts who are not members of a group"
+msgstr "Contacts who are not members of a group"
 
-#: mod/group.php:77 mod/profperm.php:22 index.php:409
+#: mod/profperm.php:22 mod/group.php:78 index.php:410
 msgid "Permission denied"
 msgstr "Permission denied"
 
-#: mod/group.php:94
-msgid "Save Group"
-msgstr "Save group"
-
-#: mod/group.php:99
-msgid "Create a group of contacts/friends."
-msgstr "Create a group of contacts/friends."
+#: mod/profperm.php:28 mod/profperm.php:59
+msgid "Invalid profile identifier."
+msgstr "Invalid profile identifier."
 
-#: mod/group.php:124
-msgid "Group removed."
-msgstr "Group removed."
+#: mod/profperm.php:105
+msgid "Profile Visibility Editor"
+msgstr "Profile Visibility Editor"
 
-#: mod/group.php:126
-msgid "Unable to remove group."
-msgstr "Unable to remove group."
+#: mod/profperm.php:109 mod/group.php:264
+msgid "Click on a contact to add or remove."
+msgstr "Click on a contact to add or remove."
 
-#: mod/group.php:190
-msgid "Delete Group"
-msgstr "Delete group"
+#: mod/profperm.php:118
+msgid "Visible To"
+msgstr "Visible to"
 
-#: mod/group.php:196
-msgid "Group Editor"
-msgstr "Group Editor"
+#: mod/profperm.php:134
+msgid "All Contacts (with secure profile access)"
+msgstr "All contacts with secure profile access"
 
-#: mod/group.php:201
-msgid "Edit Group Name"
-msgstr "Edit group name"
+#: mod/update_community.php:21 mod/update_display.php:25
+#: mod/update_notes.php:38 mod/update_profile.php:37 mod/update_network.php:29
+msgid "[Embedded content - reload page to view]"
+msgstr "[Embedded content - reload page to view]"
 
-#: mod/group.php:211
-msgid "Members"
-msgstr "Members"
+#: mod/viewcontacts.php:39 mod/webfinger.php:10 mod/probe.php:9
+#: mod/search.php:96 mod/search.php:102 mod/community.php:17
+#: mod/dfrn_request.php:805 mod/directory.php:33 mod/display.php:218
+#: mod/photos.php:982 mod/videos.php:201
+msgid "Public access denied."
+msgstr "Public access denied."
 
-#: mod/group.php:213 mod/contacts.php:705
-msgid "All Contacts"
-msgstr "All contacts"
+#: mod/viewcontacts.php:78
+msgid "No contacts."
+msgstr "No contacts."
 
-#: mod/group.php:227
-msgid "Remove Contact"
-msgstr "Remove contact"
+#: mod/viewsrc.php:8
+msgid "Access denied."
+msgstr "Access denied."
 
-#: mod/group.php:251
-msgid "Add Contact"
-msgstr "Add contact"
+#: mod/wall_attach.php:19 mod/wall_attach.php:27 mod/wall_attach.php:78
+#: mod/wall_upload.php:37 mod/wall_upload.php:53 mod/wall_upload.php:111
+#: mod/wall_upload.php:151 mod/wall_upload.php:154
+msgid "Invalid request."
+msgstr "Invalid request."
 
-#: mod/group.php:263 mod/profperm.php:109
-msgid "Click on a contact to add or remove."
-msgstr "Click on a contact to add or remove."
+#: mod/wall_attach.php:96
+msgid "Sorry, maybe your upload is bigger than the PHP configuration allows"
+msgstr "Sorry, maybe your upload is bigger than the PHP configuration allows"
 
-#: mod/hcard.php:13
-msgid "No profile"
-msgstr "No profile"
+#: mod/wall_attach.php:96
+msgid "Or - did you try to upload an empty file?"
+msgstr "Or did you try to upload an empty file?"
 
-#: mod/home.php:41
+#: mod/wall_attach.php:107
 #, php-format
-msgid "Welcome to %s"
-msgstr "Welcome to %s"
+msgid "File exceeds size limit of %s"
+msgstr "File exceeds size limit of %s"
 
-#: mod/install.php:108
-msgid "Friendica Communications Server - Setup"
-msgstr "Friendica Communications Server - Setup"
-
-#: mod/install.php:114
-msgid "Could not connect to database."
-msgstr "Could not connect to database."
-
-#: mod/install.php:118
-msgid "Could not create table."
-msgstr "Could not create table."
+#: mod/wall_attach.php:160 mod/wall_attach.php:176
+msgid "File upload failed."
+msgstr "File upload failed."
 
-#: mod/install.php:124
-msgid "Your Friendica site database has been installed."
-msgstr "Your Friendica site database has been installed."
+#: mod/webfinger.php:11 mod/probe.php:10
+msgid "Only logged in users are permitted to perform a probing."
+msgstr "Only logged in users are permitted to perform a probing."
 
-#: mod/install.php:129
+#: mod/uimport.php:53 mod/register.php:202
 msgid ""
-"You may need to import the file \"database.sql\" manually using phpmyadmin "
-"or mysql."
-msgstr "You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."
-
-#: mod/install.php:130 mod/install.php:202 mod/install.php:549
-msgid "Please see the file \"INSTALL.txt\"."
-msgstr "Please see the file \"INSTALL.txt\"."
-
-#: mod/install.php:142
-msgid "Database already in use."
-msgstr "Database already in use."
+"This site has exceeded the number of allowed daily account registrations. "
+"Please try again tomorrow."
+msgstr "This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."
 
-#: mod/install.php:199
-msgid "System check"
-msgstr "System check"
+#: mod/uimport.php:68 mod/register.php:299
+msgid "Import"
+msgstr "Import profile"
 
-#: mod/install.php:204
-msgid "Check again"
-msgstr "Check again"
+#: mod/uimport.php:70
+msgid "Move account"
+msgstr "Move Existing Friendica Account"
 
-#: mod/install.php:223
-msgid "Database connection"
-msgstr "Database connection"
+#: mod/uimport.php:71
+msgid "You can import an account from another Friendica server."
+msgstr "You can import an existing Friendica profile to this node."
 
-#: mod/install.php:224
+#: mod/uimport.php:72
 msgid ""
-"In order to install Friendica we need to know how to connect to your "
-"database."
-msgstr "In order to install Friendica we need to know how to connect to your database."
+"You need to export your account from the old server and upload it here. We "
+"will recreate your old account here with all your contacts. We will try also"
+" to inform your friends that you moved here."
+msgstr "You need to export your account from the old server and upload it here. We will recreate your old account here with all your contacts. We will try also to inform your friends that you moved here."
 
-#: mod/install.php:225
+#: mod/uimport.php:73
 msgid ""
-"Please contact your hosting provider or site administrator if you have "
-"questions about these settings."
-msgstr "Please contact your hosting provider or site administrator if you have questions about these settings."
+"This feature is experimental. We can't import contacts from the OStatus "
+"network (GNU Social/Statusnet) or from Diaspora"
+msgstr "This feature is experimental. We can't import contacts from the OStatus network (GNU Social/Statusnet) or from Diaspora."
 
-#: mod/install.php:226
-msgid ""
-"The database you specify below should already exist. If it does not, please "
-"create it before continuing."
-msgstr "The database you specify below should already exist. If it does not, please create it before continuing."
+#: mod/uimport.php:74
+msgid "Account file"
+msgstr "Account file:"
 
-#: mod/install.php:230
-msgid "Database Server Name"
-msgstr "Database server name"
+#: mod/uimport.php:74
+msgid ""
+"To export your account, go to \"Settings->Export your personal data\" and "
+"select \"Export account\""
+msgstr "To export your account, go to \"Settings->Export personal data\" and select \"Export account\""
 
-#: mod/install.php:231
-msgid "Database Login Name"
-msgstr "Database login name"
+#: mod/search.php:28 mod/network.php:187
+msgid "Remove term"
+msgstr "Remove term"
 
-#: mod/install.php:232
-msgid "Database Login Password"
-msgstr "Database login password"
+#: mod/search.php:103
+msgid "Only logged in users are permitted to perform a search."
+msgstr "Only logged in users are permitted to perform a search."
 
-#: mod/install.php:232
-msgid "For security reasons the password must not be empty"
-msgstr "For security reasons the password must not be empty"
+#: mod/search.php:127
+msgid "Too Many Requests"
+msgstr "Too many requests"
 
-#: mod/install.php:233
-msgid "Database Name"
-msgstr "Database name"
+#: mod/search.php:128
+msgid "Only one search per minute is permitted for not logged in users."
+msgstr "Only one search per minute is permitted for not logged in users."
 
-#: mod/install.php:234 mod/install.php:275
-msgid "Site administrator email address"
-msgstr "Site administrator email address"
+#: mod/search.php:222 mod/community.php:49
+msgid "No results."
+msgstr "No results."
 
-#: mod/install.php:234 mod/install.php:275
-msgid ""
-"Your account email address must match this in order to use the web admin "
-"panel."
-msgstr "Your account email address must match this in order to use the web admin panel."
+#: mod/search.php:228
+#, php-format
+msgid "Items tagged with: %s"
+msgstr "Items tagged with: %s"
 
-#: mod/install.php:238 mod/install.php:278
-msgid "Please select a default timezone for your website"
-msgstr "Please select a default time zone for your website"
+#: mod/search.php:230 mod/contacts.php:817
+#, php-format
+msgid "Results for: %s"
+msgstr "Results for: %s"
 
-#: mod/install.php:265
-msgid "Site settings"
-msgstr "Site settings"
+#: mod/community.php:22
+msgid "Not available."
+msgstr "Not available."
 
-#: mod/install.php:279
-msgid "System Language:"
-msgstr "System language:"
+#: mod/admin.php:99
+msgid "Theme settings updated."
+msgstr "Theme settings updated."
 
-#: mod/install.php:279
-msgid ""
-"Set the default language for your Friendica installation interface and to "
-"send emails."
-msgstr "Set the default language for your Friendica installation interface and email communication."
+#: mod/admin.php:171 mod/admin.php:1146
+msgid "Site"
+msgstr "Site"
 
-#: mod/install.php:319
-msgid "Could not find a command line version of PHP in the web server PATH."
-msgstr "Could not find a command line version of PHP in the web server PATH."
+#: mod/admin.php:172 mod/admin.php:1080 mod/admin.php:1590 mod/admin.php:1606
+msgid "Users"
+msgstr "Users"
 
-#: mod/install.php:320
-msgid ""
-"If you don't have a command line version of PHP installed on server, you "
-"will not be able to run the background processing. See <a "
-"href='https://github.com/friendica/friendica/blob/master/doc/Install.md#set-"
-"up-the-poller'>'Setup the poller'</a>"
-msgstr "If you don't have a command line version of PHP installed on your server, you will not be able to run the background processing. See <a href='https://github.com/friendica/friendica/blob/master/doc/Install.md#set-up-the-poller'>'Setup the poller'</a>"
+#: mod/admin.php:173 mod/admin.php:1708 mod/admin.php:1771 mod/settings.php:77
+msgid "Plugins"
+msgstr "Plugins"
 
-#: mod/install.php:324
-msgid "PHP executable path"
-msgstr "PHP executable path"
+#: mod/admin.php:174 mod/admin.php:1984 mod/admin.php:2034
+msgid "Themes"
+msgstr "Theme selection"
 
-#: mod/install.php:324
-msgid ""
-"Enter full path to php executable. You can leave this blank to continue the "
-"installation."
-msgstr "Enter full path to php executable. You can leave this blank to continue the installation."
+#: mod/admin.php:175 mod/settings.php:55
+msgid "Additional features"
+msgstr "Additional features"
 
-#: mod/install.php:329
-msgid "Command line PHP"
-msgstr "Command line PHP"
+#: mod/admin.php:176
+msgid "DB updates"
+msgstr "DB updates"
 
-#: mod/install.php:338
-msgid "PHP executable is not the php cli binary (could be cgi-fgci version)"
-msgstr "PHP executable is not a php cli binary; it could possibly be a cgi-fgci version."
+#: mod/admin.php:177 mod/admin.php:584
+msgid "Inspect Queue"
+msgstr "Inspect queue"
 
-#: mod/install.php:339
-msgid "Found PHP version: "
-msgstr "Found PHP version: "
+#: mod/admin.php:178 mod/admin.php:298
+msgid "Server Blocklist"
+msgstr "Server blocklist"
 
-#: mod/install.php:341
-msgid "PHP cli binary"
-msgstr "PHP cli binary"
+#: mod/admin.php:179 mod/admin.php:550
+msgid "Federation Statistics"
+msgstr "Federation statistics"
 
-#: mod/install.php:352
-msgid ""
-"The command line version of PHP on your system does not have "
-"\"register_argc_argv\" enabled."
-msgstr "The command line version of PHP on your system does not have \"register_argc_argv\" enabled."
+#: mod/admin.php:180 mod/admin.php:375
+msgid "Delete Item"
+msgstr "Delete item"
 
-#: mod/install.php:353
-msgid "This is required for message delivery to work."
-msgstr "This is required for message delivery to work."
+#: mod/admin.php:194 mod/admin.php:205 mod/admin.php:2108
+msgid "Logs"
+msgstr "Logs"
 
-#: mod/install.php:355
-msgid "PHP register_argc_argv"
-msgstr "PHP register_argc_argv"
+#: mod/admin.php:195 mod/admin.php:2176
+msgid "View Logs"
+msgstr "View logs"
 
-#: mod/install.php:378
-msgid ""
-"Error: the \"openssl_pkey_new\" function on this system is not able to "
-"generate encryption keys"
-msgstr "Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"
+#: mod/admin.php:196
+msgid "probe address"
+msgstr "Probe address"
 
-#: mod/install.php:379
-msgid ""
-"If running under Windows, please see "
-"\"http://www.php.net/manual/en/openssl.installation.php\"."
-msgstr "If running under Windows OS, please see \"http://www.php.net/manual/en/openssl.installation.php\"."
+#: mod/admin.php:197
+msgid "check webfinger"
+msgstr "Check webfinger"
 
-#: mod/install.php:381
-msgid "Generate encryption keys"
-msgstr "Generate encryption keys"
+#: mod/admin.php:204
+msgid "Plugin Features"
+msgstr "Plugin Features"
 
-#: mod/install.php:388
-msgid "libCurl PHP module"
-msgstr "libCurl PHP module"
+#: mod/admin.php:206
+msgid "diagnostics"
+msgstr "Diagnostics"
 
-#: mod/install.php:389
-msgid "GD graphics PHP module"
-msgstr "GD graphics PHP module"
+#: mod/admin.php:207
+msgid "User registrations waiting for confirmation"
+msgstr "User registrations awaiting confirmation"
 
-#: mod/install.php:390
-msgid "OpenSSL PHP module"
-msgstr "OpenSSL PHP module"
+#: mod/admin.php:289
+msgid "The blocked domain"
+msgstr "Blocked domain"
 
-#: mod/install.php:391
-msgid "PDO or MySQLi PHP module"
-msgstr "PDO or MySQLi PHP module"
+#: mod/admin.php:290 mod/admin.php:308 mod/friendica.php:116
+msgid "Reason for the block"
+msgstr "Reason for the block"
 
-#: mod/install.php:392
-msgid "mb_string PHP module"
-msgstr "mb_string PHP module"
+#: mod/admin.php:290 mod/admin.php:303
+msgid "The reason why you blocked this domain."
+msgstr "Reason why you blocked this domain."
 
-#: mod/install.php:393
-msgid "XML PHP module"
-msgstr "XML PHP module"
+#: mod/admin.php:291
+msgid "Delete domain"
+msgstr "Delete domain"
 
-#: mod/install.php:394
-msgid "iconv module"
-msgstr "iconv module"
+#: mod/admin.php:291
+msgid "Check to delete this entry from the blocklist"
+msgstr "Check to delete this entry from the blocklist"
 
-#: mod/install.php:398 mod/install.php:400
-msgid "Apache mod_rewrite module"
-msgstr "Apache mod_rewrite module"
+#: mod/admin.php:297 mod/admin.php:374 mod/admin.php:549 mod/admin.php:583
+#: mod/admin.php:663 mod/admin.php:1145 mod/admin.php:1589 mod/admin.php:1707
+#: mod/admin.php:1770 mod/admin.php:1983 mod/admin.php:2033 mod/admin.php:2107
+#: mod/admin.php:2175
+msgid "Administration"
+msgstr "Administration"
 
-#: mod/install.php:398
+#: mod/admin.php:299
 msgid ""
-"Error: Apache webserver mod-rewrite module is required but not installed."
-msgstr "Error: Apache web server mod-rewrite module is required but not installed."
-
-#: mod/install.php:406
-msgid "Error: libCURL PHP module required but not installed."
-msgstr "Error: libCURL PHP module required but not installed."
+"This page can be used to define a black list of servers from the federated "
+"network that are not allowed to interact with your node. For all entered "
+"domains you should also give a reason why you have blocked the remote "
+"server."
+msgstr "This page can be used to define a black list of servers from the federated network that are not allowed to interact with your node. For all entered domains you should also give a reason why you have blocked the remote server."
 
-#: mod/install.php:410
+#: mod/admin.php:300
 msgid ""
-"Error: GD graphics PHP module with JPEG support required but not installed."
-msgstr "Error: GD graphics PHP module with JPEG support required but not installed."
-
-#: mod/install.php:414
-msgid "Error: openssl PHP module required but not installed."
-msgstr "Error: openssl PHP module required but not installed."
-
-#: mod/install.php:418
-msgid "Error: PDO or MySQLi PHP module required but not installed."
-msgstr "Error: PDO or MySQLi PHP module required but not installed."
-
-#: mod/install.php:422
-msgid "Error: The MySQL driver for PDO is not installed."
-msgstr "Error: MySQL driver for PDO is not installed."
-
-#: mod/install.php:426
-msgid "Error: mb_string PHP module required but not installed."
-msgstr "Error: mb_string PHP module required but not installed."
+"The list of blocked servers will be made publically available on the "
+"/friendica page so that your users and people investigating communication "
+"problems can find the reason easily."
+msgstr "The list of blocked servers will publicly available on the Friendica page so that your users and people investigating communication problems can readily find the reason."
 
-#: mod/install.php:430
-msgid "Error: iconv PHP module required but not installed."
-msgstr "Error: iconv PHP module required but not installed."
+#: mod/admin.php:301
+msgid "Add new entry to block list"
+msgstr "Add new entry to block list"
 
-#: mod/install.php:440
-msgid "Error, XML PHP module required but not installed."
-msgstr "Error, XML PHP module required but not installed."
+#: mod/admin.php:302
+msgid "Server Domain"
+msgstr "Server domain"
 
-#: mod/install.php:452
+#: mod/admin.php:302
 msgid ""
-"The web installer needs to be able to create a file called \".htconfig.php\""
-" in the top folder of your web server and it is unable to do so."
-msgstr "The web installer needs to be able to create a file called \".htconfig.php\" in the top-level directory of your web server, but it is unable to do so."
+"The domain of the new server to add to the block list. Do not include the "
+"protocol."
+msgstr "The domain of the new server to add to the block list. Do not include the protocol."
 
-#: mod/install.php:453
-msgid ""
-"This is most often a permission setting, as the web server may not be able "
-"to write files in your folder - even if you can."
-msgstr "This is most often a permission setting issue, as the web server may not be able to write files in your directory - even if you can."
+#: mod/admin.php:303
+msgid "Block reason"
+msgstr "Block reason"
 
-#: mod/install.php:454
-msgid ""
-"At the end of this procedure, we will give you a text to save in a file "
-"named .htconfig.php in your Friendica top folder."
-msgstr "At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Friendica top-level directory."
+#: mod/admin.php:304
+msgid "Add Entry"
+msgstr "Add entry"
 
-#: mod/install.php:455
-msgid ""
-"You can alternatively skip this procedure and perform a manual installation."
-" Please see the file \"INSTALL.txt\" for instructions."
-msgstr "Alternatively, you may skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."
+#: mod/admin.php:305
+msgid "Save changes to the blocklist"
+msgstr "Save changes to the blocklist"
 
-#: mod/install.php:458
-msgid ".htconfig.php is writable"
-msgstr ".htconfig.php is writeable"
+#: mod/admin.php:306
+msgid "Current Entries in the Blocklist"
+msgstr "Current entries in the blocklist"
 
-#: mod/install.php:468
-msgid ""
-"Friendica uses the Smarty3 template engine to render its web views. Smarty3 "
-"compiles templates to PHP to speed up rendering."
-msgstr "Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."
+#: mod/admin.php:309
+msgid "Delete entry from blocklist"
+msgstr "Delete entry from blocklist"
 
-#: mod/install.php:469
-msgid ""
-"In order to store these compiled templates, the web server needs to have "
-"write access to the directory view/smarty3/ under the Friendica top level "
-"folder."
-msgstr "In order to store these compiled templates, the web server needs to have write access to the directory view/smarty3/ under the Friendica top-level directory."
+#: mod/admin.php:312
+msgid "Delete entry from blocklist?"
+msgstr "Delete entry from blocklist?"
 
-#: mod/install.php:470
-msgid ""
-"Please ensure that the user that your web server runs as (e.g. www-data) has"
-" write access to this folder."
-msgstr "Please ensure the user (e.g. www-data) that your web server runs as has write access to this directory."
+#: mod/admin.php:337
+msgid "Server added to blocklist."
+msgstr "Server added to blocklist."
 
-#: mod/install.php:471
-msgid ""
-"Note: as a security measure, you should give the web server write access to "
-"view/smarty3/ only--not the template files (.tpl) that it contains."
-msgstr "Note: as a security measure, you should give the web server write access to view/smarty3/ only--not the template files (.tpl) that it contains."
+#: mod/admin.php:353
+msgid "Site blocklist updated."
+msgstr "Site blocklist updated."
 
-#: mod/install.php:474
-msgid "view/smarty3 is writable"
-msgstr "view/smarty3 is writeable"
+#: mod/admin.php:376
+msgid "Delete this Item"
+msgstr "Delete"
 
-#: mod/install.php:490
+#: mod/admin.php:377
 msgid ""
-"Url rewrite in .htaccess is not working. Check your server configuration."
-msgstr "URL rewrite in .htaccess is not working. Check your server configuration."
-
-#: mod/install.php:492
-msgid "Url rewrite is working"
-msgstr "URL rewrite is working"
+"On this page you can delete an item from your node. If the item is a top "
+"level posting, the entire thread will be deleted."
+msgstr "Here you can delete an item from this node. If the item is a top-level posting, the entire thread will be deleted."
 
-#: mod/install.php:511
-msgid "ImageMagick PHP extension is not installed"
-msgstr "ImageMagick PHP extension is not installed"
+#: mod/admin.php:378
+msgid ""
+"You need to know the GUID of the item. You can find it e.g. by looking at "
+"the display URL. The last part of http://example.com/display/123456 is the "
+"GUID, here 123456."
+msgstr "You need to know the global unique identifier (GUID) of the item, which you can find by looking at the display URL. The last part of http://example.com/display/123456 is the GUID: i.e. 123456."
 
-#: mod/install.php:513
-msgid "ImageMagick PHP extension is installed"
-msgstr "ImageMagick PHP extension is installed"
+#: mod/admin.php:379
+msgid "GUID"
+msgstr "GUID"
 
-#: mod/install.php:515
-msgid "ImageMagick supports GIF"
-msgstr "ImageMagick supports GIF"
+#: mod/admin.php:379
+msgid "The GUID of the item you want to delete."
+msgstr "GUID of item to be deleted."
 
-#: mod/install.php:522
-msgid ""
-"The database configuration file \".htconfig.php\" could not be written. "
-"Please use the enclosed text to create a configuration file in your web "
-"server root."
-msgstr "The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."
+#: mod/admin.php:416
+msgid "Item marked for deletion."
+msgstr "Item marked for deletion."
 
-#: mod/install.php:547
-msgid "<h1>What next</h1>"
-msgstr "<h1>What next</h1>"
+#: mod/admin.php:480
+msgid "unknown"
+msgstr "unknown"
 
-#: mod/install.php:548
+#: mod/admin.php:543
 msgid ""
-"IMPORTANT: You will need to [manually] setup a scheduled task for the "
-"poller."
-msgstr "IMPORTANT: You will need to [manually] setup a scheduled task for the poller."
-
-#: mod/localtime.php:25
-msgid "Time Conversion"
-msgstr "Time conversion"
+"This page offers you some numbers to the known part of the federated social "
+"network your Friendica node is part of. These numbers are not complete but "
+"only reflect the part of the network your node is aware of."
+msgstr "This page offers you the amount of known part of the federated social network your Friendica node is part of. These numbers are not complete and only reflect the part of the network your node is aware of."
 
-#: mod/localtime.php:27
+#: mod/admin.php:544
 msgid ""
-"Friendica provides this service for sharing events with other networks and "
-"friends in unknown timezones."
-msgstr "Friendica provides this service for sharing events with other networks and friends in unknown time zones."
-
-#: mod/localtime.php:31
-#, php-format
-msgid "UTC time: %s"
-msgstr "UTC time: %s"
-
-#: mod/localtime.php:34
-#, php-format
-msgid "Current timezone: %s"
-msgstr "Current time zone: %s"
+"The <em>Auto Discovered Contact Directory</em> feature is not enabled, it "
+"will improve the data displayed here."
+msgstr "The <em>Auto Discovered Contact Directory</em> feature is not enabled; enabling it will improve the data displayed here."
 
-#: mod/localtime.php:37
+#: mod/admin.php:556
 #, php-format
-msgid "Converted localtime: %s"
-msgstr "Converted local time: %s"
+msgid "Currently this node is aware of %d nodes from the following platforms:"
+msgstr "Currently this node is aware of %d nodes from the following platforms:"
 
-#: mod/localtime.php:42
-msgid "Please select your timezone:"
-msgstr "Please select your time zone:"
+#: mod/admin.php:586
+msgid "ID"
+msgstr "ID"
 
-#: mod/lockview.php:33 mod/lockview.php:41
-msgid "Remote privacy information not available."
-msgstr "Remote privacy information not available."
+#: mod/admin.php:587
+msgid "Recipient Name"
+msgstr "Recipient name"
 
-#: mod/lockview.php:50
-msgid "Visible to:"
-msgstr "Visible to:"
+#: mod/admin.php:588
+msgid "Recipient Profile"
+msgstr "Recipient profile"
 
-#: mod/lostpass.php:21
-msgid "No valid account found."
-msgstr "No valid account found."
+#: mod/admin.php:590
+msgid "Created"
+msgstr "Created"
 
-#: mod/lostpass.php:37
-msgid "Password reset request issued. Check your email."
-msgstr "Password reset request issued. Please check your email."
+#: mod/admin.php:591
+msgid "Last Tried"
+msgstr "Last Tried"
 
-#: mod/lostpass.php:43
-#, php-format
+#: mod/admin.php:592
 msgid ""
-"\n"
-"\t\tDear %1$s,\n"
-"\t\t\tA request was recently received at \"%2$s\" to reset your account\n"
-"\t\tpassword. In order to confirm this request, please select the verification link\n"
-"\t\tbelow or paste it into your web browser address bar.\n"
-"\n"
-"\t\tIf you did NOT request this change, please DO NOT follow the link\n"
-"\t\tprovided and ignore and/or delete this email.\n"
-"\n"
-"\t\tYour password will not be changed unless we can verify that you\n"
-"\t\tissued this request."
-msgstr "\n\t\tDear %1$s,\n\t\t\tA request was issued at \"%2$s\" to reset your account\n\t\tpassword. In order to confirm this request, please select the verification link\n\t\tbelow or paste it into your web browser address bar.\n\n\t\tIf you did NOT request this change, please DO NOT follow the link\n\t\tprovided and ignore/delete this email.\n\n\t\tYour password will not be changed unless we can verify that you\n\t\tissued this request."
+"This page lists the content of the queue for outgoing postings. These are "
+"postings the initial delivery failed for. They will be resend later and "
+"eventually deleted if the delivery fails permanently."
+msgstr "This page lists the content of the queue for outgoing postings. These are postings the initial delivery failed for. They will be resend later and eventually deleted if the delivery fails permanently."
 
-#: mod/lostpass.php:54
+#: mod/admin.php:617
 #, php-format
 msgid ""
-"\n"
-"\t\tFollow this link to verify your identity:\n"
-"\n"
-"\t\t%1$s\n"
-"\n"
-"\t\tYou will then receive a follow-up message containing the new password.\n"
-"\t\tYou may change that password from your account settings page after logging in.\n"
-"\n"
-"\t\tThe login details are as follows:\n"
-"\n"
-"\t\tSite Location:\t%2$s\n"
-"\t\tLogin Name:\t%3$s"
-msgstr "\n\t\tFollow this link to verify your identity:\n\n\t\t%1$s\n\n\t\tYou will then receive a follow-up message containing the new password.\n\t\tYou may change that password from your account settings page after logging in.\n\n\t\tThe login details are as follows:\n\n\t\tSite Location:\t%2$s\n\t\tLogin Name:\t%3$s"
-
-#: mod/lostpass.php:73
-#, php-format
-msgid "Password reset requested at %s"
-msgstr "Password reset requested at %s"
+"Your DB still runs with MyISAM tables. You should change the engine type to "
+"InnoDB. As Friendica will use InnoDB only features in the future, you should"
+" change this! See <a href=\"%s\">here</a> for a guide that may be helpful "
+"converting the table engines. You may also use the command <tt>php "
+"include/dbstructure.php toinnodb</tt> of your Friendica installation for an "
+"automatic conversion.<br />"
+msgstr "Your DB still runs with MyISAM tables. You should change the engine type to InnoDB. As Friendica will use InnoDB only features in the future, you should change this! See <a href=\"%s\">here</a> for a guide that may be helpful converting the table engines. You may also use the command <tt>php include/dbstructure.php toinnodb</tt> of your Friendica installation for an automatic conversion.<br />"
 
-#: mod/lostpass.php:93
+#: mod/admin.php:626
 msgid ""
-"Request could not be verified. (You may have previously submitted it.) "
-"Password reset failed."
-msgstr "Request could not be verified. (You may have previously submitted it.) Password reset failed."
+"The database update failed. Please run \"php include/dbstructure.php "
+"update\" from the command line and have a look at the errors that might "
+"appear."
+msgstr "The database update failed. Please run 'php include/dbstructure.php update' from the command line and have a look at the errors that might appear."
 
-#: mod/lostpass.php:112 boot.php:886
-msgid "Password Reset"
-msgstr "Forgotten password?"
+#: mod/admin.php:631 mod/admin.php:1539
+msgid "Normal Account"
+msgstr "Standard account"
 
-#: mod/lostpass.php:113
-msgid "Your password has been reset as requested."
-msgstr "Your password has been reset as requested."
+#: mod/admin.php:632 mod/admin.php:1540
+msgid "Automatic Follower Account"
+msgstr "Automatic follower account"
 
-#: mod/lostpass.php:114
-msgid "Your new password is"
-msgstr "Your new password is"
+#: mod/admin.php:633 mod/admin.php:1541
+msgid "Public Forum Account"
+msgstr "Public forum account"
 
-#: mod/lostpass.php:115
-msgid "Save or copy your new password - and then"
-msgstr "Save or copy your new password - and then"
+#: mod/admin.php:634 mod/admin.php:1542
+msgid "Automatic Friend Account"
+msgstr "Automatic friend account"
 
-#: mod/lostpass.php:116
-msgid "click here to login"
-msgstr "click here to login"
+#: mod/admin.php:635
+msgid "Blog Account"
+msgstr "Blog account"
 
-#: mod/lostpass.php:117
-msgid ""
-"Your password may be changed from the <em>Settings</em> page after "
-"successful login."
-msgstr "Your password may be changed from the <em>Settings</em> page after successful login."
+#: mod/admin.php:636
+msgid "Private Forum Account"
+msgstr "Private forum account"
 
-#: mod/lostpass.php:127
-#, php-format
-msgid ""
-"\n"
-"\t\t\t\tDear %1$s,\n"
-"\t\t\t\t\tYour password has been changed as requested. Please retain this\n"
-"\t\t\t\tinformation for your records (or change your password immediately to\n"
-"\t\t\t\tsomething that you will remember).\n"
-"\t\t\t"
-msgstr "\n\t\t\t\tDear %1$s,\n\t\t\t\t\tYour password has been changed as requested. Please retain this\n\t\t\t\tinformation for your records or change your password immediately to\n\t\t\t\tsomething that you will remember.\n\t\t\t"
+#: mod/admin.php:658
+msgid "Message queues"
+msgstr "Message queues"
 
-#: mod/lostpass.php:133
-#, php-format
-msgid ""
-"\n"
-"\t\t\t\tYour login details are as follows:\n"
-"\n"
-"\t\t\t\tSite Location:\t%1$s\n"
-"\t\t\t\tLogin Name:\t%2$s\n"
-"\t\t\t\tPassword:\t%3$s\n"
-"\n"
-"\t\t\t\tYou may change that password from your account settings page after logging in.\n"
-"\t\t\t"
-msgstr "\n\t\t\t\tYour login details are as follows:\n\n\t\t\t\tSite Location:\t%1$s\n\t\t\t\tLogin Name:\t%2$s\n\t\t\t\tPassword:\t%3$s\n\n\t\t\t\tYou may change that password from your account settings page after logging in.\n\t\t\t"
+#: mod/admin.php:664
+msgid "Summary"
+msgstr "Summary"
 
-#: mod/lostpass.php:149
-#, php-format
-msgid "Your password has been changed at %s"
-msgstr "Your password has been changed at %s"
+#: mod/admin.php:666
+msgid "Registered users"
+msgstr "Registered users"
 
-#: mod/lostpass.php:161
-msgid "Forgot your Password?"
-msgstr "Reset My Password"
+#: mod/admin.php:668
+msgid "Pending registrations"
+msgstr "Pending registrations"
 
-#: mod/lostpass.php:162
-msgid ""
-"Enter your email address and submit to have your password reset. Then check "
-"your email for further instructions."
-msgstr "Enter email address or nickname to reset your password. You will receive further instruction via email."
+#: mod/admin.php:669
+msgid "Version"
+msgstr "Version"
 
-#: mod/lostpass.php:163 boot.php:874
-msgid "Nickname or Email: "
-msgstr "Nickname or email: "
+#: mod/admin.php:674
+msgid "Active plugins"
+msgstr "Active plugins"
 
-#: mod/lostpass.php:164
-msgid "Reset"
-msgstr "Reset"
+#: mod/admin.php:699
+msgid "Can not parse base url. Must have at least <scheme>://<domain>"
+msgstr "Can not parse base URL. Must have at least <scheme>://<domain>"
 
-#: mod/maintenance.php:21
-msgid "System down for maintenance"
-msgstr "Sorry, the system is currently down for maintenance."
+#: mod/admin.php:1006
+msgid "Site settings updated."
+msgstr "Site settings updated."
 
-#: mod/manage.php:152
-msgid "Manage Identities and/or Pages"
-msgstr "Manage Identities and Pages"
+#: mod/admin.php:1034 mod/settings.php:945
+msgid "No special theme for mobile devices"
+msgstr "No special theme for mobile devices"
 
-#: mod/manage.php:153
-msgid ""
-"Toggle between different identities or community/group pages which share "
-"your account details or which you have been granted \"manage\" permissions"
-msgstr "Accounts that I manage or own."
+#: mod/admin.php:1063
+msgid "No community page"
+msgstr "No community page"
 
-#: mod/manage.php:154
-msgid "Select an identity to manage: "
-msgstr "Select identity:"
+#: mod/admin.php:1064
+msgid "Public postings from users of this site"
+msgstr "Public postings from users of this site"
 
-#: mod/match.php:38
-msgid "No keywords to match. Please add keywords to your default profile."
-msgstr "No keywords to match. Please add keywords to your default profile."
+#: mod/admin.php:1065
+msgid "Global community page"
+msgstr "Global community page"
 
-#: mod/match.php:91
-msgid "is interested in:"
-msgstr "is interested in:"
+#: mod/admin.php:1070 mod/contacts.php:542
+msgid "Never"
+msgstr "Never"
 
-#: mod/match.php:105
-msgid "Profile Match"
-msgstr "Profile Match"
+#: mod/admin.php:1071
+msgid "At post arrival"
+msgstr "At post arrival"
 
-#: mod/match.php:112 mod/dirfind.php:247
-msgid "No matches"
-msgstr "No matches"
+#: mod/admin.php:1079 mod/contacts.php:569
+msgid "Disabled"
+msgstr "Disabled"
 
-#: mod/message.php:62 mod/wallmessage.php:52
-msgid "No recipient selected."
-msgstr "No recipient selected."
+#: mod/admin.php:1081
+msgid "Users, Global Contacts"
+msgstr "Users, Global Contacts"
 
-#: mod/message.php:66
-msgid "Unable to locate contact information."
-msgstr "Unable to locate contact information."
+#: mod/admin.php:1082
+msgid "Users, Global Contacts/fallback"
+msgstr "Users, Global Contacts/fallback"
 
-#: mod/message.php:69 mod/wallmessage.php:58
-msgid "Message could not be sent."
-msgstr "Message could not be sent."
+#: mod/admin.php:1086
+msgid "One month"
+msgstr "One month"
 
-#: mod/message.php:72 mod/wallmessage.php:61
-msgid "Message collection failure."
-msgstr "Message collection failure."
+#: mod/admin.php:1087
+msgid "Three months"
+msgstr "Three months"
 
-#: mod/message.php:75 mod/wallmessage.php:64
-msgid "Message sent."
-msgstr "Message sent."
+#: mod/admin.php:1088
+msgid "Half a year"
+msgstr "Half a year"
 
-#: mod/message.php:206
-msgid "Do you really want to delete this message?"
-msgstr "Do you really want to delete this message?"
+#: mod/admin.php:1089
+msgid "One year"
+msgstr "One a year"
 
-#: mod/message.php:226
-msgid "Message deleted."
-msgstr "Message deleted."
+#: mod/admin.php:1094
+msgid "Multi user instance"
+msgstr "Multi user instance"
 
-#: mod/message.php:257
-msgid "Conversation removed."
-msgstr "Conversation removed."
+#: mod/admin.php:1117
+msgid "Closed"
+msgstr "Closed"
 
-#: mod/message.php:324 mod/wallmessage.php:128
-msgid "Send Private Message"
-msgstr "Send private message"
+#: mod/admin.php:1118
+msgid "Requires approval"
+msgstr "Requires approval"
 
-#: mod/message.php:325 mod/message.php:512 mod/wallmessage.php:130
-msgid "To:"
-msgstr "To:"
+#: mod/admin.php:1119
+msgid "Open"
+msgstr "Open"
 
-#: mod/message.php:330 mod/message.php:514 mod/wallmessage.php:131
-msgid "Subject:"
-msgstr "Subject:"
+#: mod/admin.php:1123
+msgid "No SSL policy, links will track page SSL state"
+msgstr "No SSL policy, links will track page SSL state"
 
-#: mod/message.php:334 mod/message.php:517 mod/wallmessage.php:137
-#: mod/invite.php:143
-msgid "Your message:"
-msgstr "Your message:"
+#: mod/admin.php:1124
+msgid "Force all links to use SSL"
+msgstr "Force all links to use SSL"
 
-#: mod/message.php:366
-msgid "No messages."
-msgstr "No messages."
+#: mod/admin.php:1125
+msgid "Self-signed certificate, use SSL for local links only (discouraged)"
+msgstr "Self-signed certificate, use SSL for local links only (discouraged)"
 
-#: mod/message.php:405
-msgid "Message not available."
-msgstr "Message not available."
+#: mod/admin.php:1147 mod/admin.php:1772 mod/admin.php:2035 mod/admin.php:2109
+#: mod/admin.php:2262 mod/settings.php:683 mod/settings.php:794
+#: mod/settings.php:843 mod/settings.php:910 mod/settings.php:1007
+#: mod/settings.php:1273
+msgid "Save Settings"
+msgstr "Save settings"
 
-#: mod/message.php:479
-msgid "Delete message"
-msgstr "Delete message"
+#: mod/admin.php:1148 mod/register.php:276
+msgid "Registration"
+msgstr "Join this Friendica Node Today"
 
-#: mod/message.php:505 mod/message.php:593
-msgid "Delete conversation"
-msgstr "Delete conversation"
+#: mod/admin.php:1149
+msgid "File upload"
+msgstr "File upload"
 
-#: mod/message.php:507
-msgid ""
-"No secure communications available. You <strong>may</strong> be able to "
-"respond from the sender's profile page."
-msgstr "No secure communications available. You <strong>may</strong> be able to respond from the sender's profile page."
+#: mod/admin.php:1150
+msgid "Policies"
+msgstr "Policies"
 
-#: mod/message.php:511
-msgid "Send Reply"
-msgstr "Send reply"
+#: mod/admin.php:1152
+msgid "Auto Discovered Contact Directory"
+msgstr "Auto-discovered contact directory"
 
-#: mod/message.php:563
-#, php-format
-msgid "Unknown sender - %s"
-msgstr "Unknown sender - %s"
+#: mod/admin.php:1153
+msgid "Performance"
+msgstr "Performance"
 
-#: mod/message.php:565
-#, php-format
-msgid "You and %s"
-msgstr "Me and %s"
+#: mod/admin.php:1154
+msgid "Worker"
+msgstr "Worker"
 
-#: mod/message.php:567
-#, php-format
-msgid "%s and You"
-msgstr "%s and me"
+#: mod/admin.php:1155
+msgid ""
+"Relocate - WARNING: advanced function. Could make this server unreachable."
+msgstr "Relocate - Warning, advanced function: This could make this server unreachable."
 
-#: mod/message.php:596
-msgid "D, d M Y - g:i A"
-msgstr "D, d M Y - g:i A"
+#: mod/admin.php:1158
+msgid "Site name"
+msgstr "Site name"
 
-#: mod/message.php:599
-#, php-format
-msgid "%d message"
-msgid_plural "%d messages"
-msgstr[0] "%d message"
-msgstr[1] "%d messages"
+#: mod/admin.php:1159
+msgid "Host name"
+msgstr "Host name"
 
-#: mod/mood.php:135
-msgid "Mood"
-msgstr "Mood"
+#: mod/admin.php:1160
+msgid "Sender Email"
+msgstr "Sender email"
 
-#: mod/mood.php:136
-msgid "Set your current mood and tell your friends"
-msgstr "Set your current mood and tell your friends"
+#: mod/admin.php:1160
+msgid ""
+"The email address your server shall use to send notification emails from."
+msgstr "The email address your server shall use to send notification emails from."
 
-#: mod/newmember.php:7
-msgid "Welcome to Friendica"
-msgstr "Welcome to Friendica"
+#: mod/admin.php:1161
+msgid "Banner/Logo"
+msgstr "Banner/Logo"
 
-#: mod/newmember.php:8
-msgid "New Member Checklist"
-msgstr "New Member Checklist"
+#: mod/admin.php:1162
+msgid "Shortcut icon"
+msgstr "Shortcut icon"
 
-#: mod/newmember.php:10
-msgid ""
-"We would like to offer some tips and links to help make your experience "
-"enjoyable. Click any item to visit the relevant page. A link to this page "
-"will be visible from your home page for two weeks after your initial "
-"registration and then will quietly disappear."
-msgstr "We would like to offer some tips and links to help make your experience enjoyable. Click any item to visit the relevant page. A link to this page will be visible from your home page for two weeks after your initial registration and then will quietly disappear."
+#: mod/admin.php:1162
+msgid "Link to an icon that will be used for browsers."
+msgstr "Link to an icon that will be used for browsers."
 
-#: mod/newmember.php:11
-msgid "Getting Started"
-msgstr "Getting started"
+#: mod/admin.php:1163
+msgid "Touch icon"
+msgstr "Touch icon"
 
-#: mod/newmember.php:13
-msgid "Friendica Walk-Through"
-msgstr "Friendica walk-through"
+#: mod/admin.php:1163
+msgid "Link to an icon that will be used for tablets and mobiles."
+msgstr "Link to an icon that will be used for tablets and mobiles."
 
-#: mod/newmember.php:13
-msgid ""
-"On your <em>Quick Start</em> page - find a brief introduction to your "
-"profile and network tabs, make some new connections, and find some groups to"
-" join."
-msgstr "On your <em>Quick Start</em> page - find a brief introduction to your profile and network tabs, make some new connections, and find some groups to join."
-
-#: mod/newmember.php:17
-msgid "Go to Your Settings"
-msgstr "Go to your settings"
+#: mod/admin.php:1164
+msgid "Additional Info"
+msgstr "Additional Info"
 
-#: mod/newmember.php:17
+#: mod/admin.php:1164
+#, php-format
 msgid ""
-"On your <em>Settings</em> page -  change your initial password. Also make a "
-"note of your Identity Address. This looks just like an email address - and "
-"will be useful in making friends on the free social web."
-msgstr "On your <em>Settings</em> page -  change your initial password. Also make a note of your Identity Address. This looks just like an email address - and will be useful in making friends on the free social web."
+"For public servers: you can add additional information here that will be "
+"listed at %s/siteinfo."
+msgstr "For public servers: add additional information here that will be listed at %s/siteinfo."
 
-#: mod/newmember.php:18
-msgid ""
-"Review the other settings, particularly the privacy settings. An unpublished"
-" directory listing is like having an unlisted phone number. In general, you "
-"should probably publish your listing - unless all of your friends and "
-"potential friends know exactly how to find you."
-msgstr "Review the other settings, particularly the privacy settings. An unpublished directory listing is like having an unlisted phone number. In general, you should probably publish your listing - unless all of your friends and potential friends know exactly how to find you."
+#: mod/admin.php:1165
+msgid "System language"
+msgstr "System language"
 
-#: mod/newmember.php:22 mod/profile_photo.php:255 mod/profiles.php:703
-msgid "Upload Profile Photo"
-msgstr "Upload profile photo"
+#: mod/admin.php:1166
+msgid "System theme"
+msgstr "System theme"
 
-#: mod/newmember.php:22
+#: mod/admin.php:1166
 msgid ""
-"Upload a profile photo if you have not done so already. Studies have shown "
-"that people with real photos of themselves are ten times more likely to make"
-" friends than people who do not."
-msgstr "Upload a profile photo if you have not done so already. Studies have shown that people with real photos of themselves are ten times more likely to make friends than people who do not."
-
-#: mod/newmember.php:23
-msgid "Edit Your Profile"
-msgstr "Edit your profile"
+"Default system theme - may be over-ridden by user profiles - <a href='#' "
+"id='cnftheme'>change theme settings</a>"
+msgstr "Default system theme - may be overridden by user profiles - <a href='#' id='cnftheme'>change theme settings</a>"
 
-#: mod/newmember.php:23
-msgid ""
-"Edit your <strong>default</strong> profile to your liking. Review the "
-"settings for hiding your list of friends and hiding the profile from unknown"
-" visitors."
-msgstr "Edit your <strong>default</strong> profile to your liking. Review the settings for hiding your list of friends and hiding the profile from unknown visitors."
+#: mod/admin.php:1167
+msgid "Mobile system theme"
+msgstr "Mobile system theme"
 
-#: mod/newmember.php:24
-msgid "Profile Keywords"
-msgstr "Profile keywords"
+#: mod/admin.php:1167
+msgid "Theme for mobile devices"
+msgstr "Theme for mobile devices"
 
-#: mod/newmember.php:24
-msgid ""
-"Set some public keywords for your default profile which describe your "
-"interests. We may be able to find other people with similar interests and "
-"suggest friendships."
-msgstr "Set some public keywords for your default profile which describe your interests. We may be able to find other people with similar interests and suggest friendships."
+#: mod/admin.php:1168
+msgid "SSL link policy"
+msgstr "SSL link policy"
 
-#: mod/newmember.php:26
-msgid "Connecting"
-msgstr "Connecting"
+#: mod/admin.php:1168
+msgid "Determines whether generated links should be forced to use SSL"
+msgstr "Determines whether generated links should be forced to use SSL"
 
-#: mod/newmember.php:32
-msgid "Importing Emails"
-msgstr "Importing emails"
+#: mod/admin.php:1169
+msgid "Force SSL"
+msgstr "Force SSL"
 
-#: mod/newmember.php:32
+#: mod/admin.php:1169
 msgid ""
-"Enter your email access information on your Connector Settings page if you "
-"wish to import and interact with friends or mailing lists from your email "
-"INBOX"
-msgstr "Enter your email access information on your Connector Settings if you wish to import and interact with friends or mailing lists from your email INBOX"
+"Force all Non-SSL requests to SSL - Attention: on some systems it could lead"
+" to endless loops."
+msgstr "Force all Non-SSL requests to SSL - Attention: on some systems it could lead to endless loops."
 
-#: mod/newmember.php:35
-msgid "Go to Your Contacts Page"
-msgstr "Go to your contacts page"
+#: mod/admin.php:1170
+msgid "Hide help entry from navigation menu"
+msgstr "Hide help entry from navigation menu"
 
-#: mod/newmember.php:35
+#: mod/admin.php:1170
 msgid ""
-"Your Contacts page is your gateway to managing friendships and connecting "
-"with friends on other networks. Typically you enter their address or site "
-"URL in the <em>Add New Contact</em> dialog."
-msgstr "Your contacts page is your gateway to managing friendships and connecting with friends on other networks. Typically you enter their address or site URL in the <em>Add new contact</em> dialog."
+"Hides the menu entry for the Help pages from the navigation menu. You can "
+"still access it calling /help directly."
+msgstr "Hides the menu entry for the Help pages from the navigation menu. Help pages can still be accessed by calling ../help directly via its URL."
 
-#: mod/newmember.php:36
-msgid "Go to Your Site's Directory"
-msgstr "Go to your site's directory"
+#: mod/admin.php:1171
+msgid "Single user instance"
+msgstr "Single user instance"
 
-#: mod/newmember.php:36
-msgid ""
-"The Directory page lets you find other people in this network or other "
-"federated sites. Look for a <em>Connect</em> or <em>Follow</em> link on "
-"their profile page. Provide your own Identity Address if requested."
-msgstr "The directory lets you find other people in this network or other federated sites. Look for a <em>Connect</em> or <em>Follow</em> link on their profile page. Provide your own identity address when requested."
+#: mod/admin.php:1171
+msgid "Make this instance multi-user or single-user for the named user"
+msgstr "Make this instance multi-user or single-user for the named user"
 
-#: mod/newmember.php:37
-msgid "Finding New People"
-msgstr "Finding new people"
+#: mod/admin.php:1172
+msgid "Maximum image size"
+msgstr "Maximum image size"
 
-#: mod/newmember.php:37
+#: mod/admin.php:1172
 msgid ""
-"On the side panel of the Contacts page are several tools to find new "
-"friends. We can match people by interest, look up people by name or "
-"interest, and provide suggestions based on network relationships. On a brand"
-" new site, friend suggestions will usually begin to be populated within 24 "
-"hours."
-msgstr "On the side panel of the Contacts page are several tools to find new friends. We can match people by interest, look up people by name or interest, and provide suggestions based on network relationships. On a brand new site, friend suggestions will usually begin to be populated within 24 hours."
+"Maximum size in bytes of uploaded images. Default is 0, which means no "
+"limits."
+msgstr "Maximum size in bytes of uploaded images. Default is 0, which means no limits."
 
-#: mod/newmember.php:41
-msgid "Group Your Contacts"
-msgstr "Group your contacts"
+#: mod/admin.php:1173
+msgid "Maximum image length"
+msgstr "Maximum image length"
 
-#: mod/newmember.php:41
+#: mod/admin.php:1173
 msgid ""
-"Once you have made some friends, organize them into private conversation "
-"groups from the sidebar of your Contacts page and then you can interact with"
-" each group privately on your Network page."
-msgstr "Once you have made some friends, organize them into private conversation groups from the sidebar of your contacts page and then you can interact with each group privately on your network page."
+"Maximum length in pixels of the longest side of uploaded images. Default is "
+"-1, which means no limits."
+msgstr "Maximum length in pixels of the longest side of uploaded images. Default is -1, which means no limits."
 
-#: mod/newmember.php:44
-msgid "Why Aren't My Posts Public?"
-msgstr "Why aren't my posts public?"
+#: mod/admin.php:1174
+msgid "JPEG image quality"
+msgstr "JPEG image quality"
 
-#: mod/newmember.php:44
+#: mod/admin.php:1174
 msgid ""
-"Friendica respects your privacy. By default, your posts will only show up to"
-" people you've added as friends. For more information, see the help section "
-"from the link above."
-msgstr "Friendica respects your privacy. By default, your posts will only show up to people you've added as friends. For more information, see the help section from the link above."
+"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is "
+"100, which is full quality."
+msgstr "Uploaded JPEGS will be saved at this quality setting [0-100]. Default is 100, which is the original quality level."
 
-#: mod/newmember.php:48
-msgid "Getting Help"
-msgstr "Getting help"
+#: mod/admin.php:1176
+msgid "Register policy"
+msgstr "Registration policy"
 
-#: mod/newmember.php:50
-msgid "Go to the Help Section"
-msgstr "Go to the help section"
+#: mod/admin.php:1177
+msgid "Maximum Daily Registrations"
+msgstr "Maximum daily registrations"
 
-#: mod/newmember.php:50
+#: mod/admin.php:1177
 msgid ""
-"Our <strong>help</strong> pages may be consulted for detail on other program"
-" features and resources."
-msgstr "Our <strong>help</strong> pages may be consulted for detail on other program features and resources."
+"If registration is permitted above, this sets the maximum number of new user"
+" registrations to accept per day.  If register is set to closed, this "
+"setting has no effect."
+msgstr "If open registration is permitted, this sets the maximum number of new registrations per day.  This setting has no effect for registrations by approval."
 
-#: mod/nogroup.php:45 mod/viewcontacts.php:105 mod/contacts.php:599
-#: mod/contacts.php:943
-#, php-format
-msgid "Visit %s's profile [%s]"
-msgstr "Visit %s's profile [%s]"
+#: mod/admin.php:1178
+msgid "Register text"
+msgstr "Registration text"
 
-#: mod/nogroup.php:46 mod/contacts.php:944
-msgid "Edit contact"
-msgstr "Edit contact"
+#: mod/admin.php:1178
+msgid "Will be displayed prominently on the registration page."
+msgstr "Will be displayed prominently on the registration page."
 
-#: mod/nogroup.php:67
-msgid "Contacts who are not members of a group"
-msgstr "Contacts who are not members of a group"
+#: mod/admin.php:1179
+msgid "Accounts abandoned after x days"
+msgstr "Accounts abandoned after so many days"
 
-#: mod/notifications.php:37
-msgid "Invalid request identifier."
-msgstr "Invalid request identifier."
+#: mod/admin.php:1179
+msgid ""
+"Will not waste system resources polling external sites for abandonded "
+"accounts. Enter 0 for no time limit."
+msgstr "Will not waste system resources polling external sites for abandoned accounts. Enter 0 for no time limit."
 
-#: mod/notifications.php:46 mod/notifications.php:182
-#: mod/notifications.php:229
-msgid "Discard"
-msgstr "Discard"
+#: mod/admin.php:1180
+msgid "Allowed friend domains"
+msgstr "Allowed friend domains"
 
-#: mod/notifications.php:62 mod/notifications.php:181
-#: mod/notifications.php:265 mod/contacts.php:619 mod/contacts.php:819
-#: mod/contacts.php:1004
-msgid "Ignore"
-msgstr "Ignore"
+#: mod/admin.php:1180
+msgid ""
+"Comma separated list of domains which are allowed to establish friendships "
+"with this site. Wildcards are accepted. Empty to allow any domains"
+msgstr "Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Leave empty to allow any domains"
 
-#: mod/notifications.php:107
-msgid "Network Notifications"
-msgstr "Network notifications"
+#: mod/admin.php:1181
+msgid "Allowed email domains"
+msgstr "Allowed email domains"
 
-#: mod/notifications.php:113 mod/notify.php:72
-msgid "System Notifications"
-msgstr "System notifications"
+#: mod/admin.php:1181
+msgid ""
+"Comma separated list of domains which are allowed in email addresses for "
+"registrations to this site. Wildcards are accepted. Empty to allow any "
+"domains"
+msgstr "Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Leave empty to allow any domains"
 
-#: mod/notifications.php:119
-msgid "Personal Notifications"
-msgstr "Personal notifications"
+#: mod/admin.php:1182
+msgid "Block public"
+msgstr "Block public"
 
-#: mod/notifications.php:125
-msgid "Home Notifications"
-msgstr "Home notifications"
+#: mod/admin.php:1182
+msgid ""
+"Check to block public access to all otherwise public personal pages on this "
+"site unless you are currently logged in."
+msgstr "Block public access to all otherwise public personal pages on this site, except for local users when logged in."
 
-#: mod/notifications.php:154
-msgid "Show Ignored Requests"
-msgstr "Show ignored requests."
+#: mod/admin.php:1183
+msgid "Force publish"
+msgstr "Mandatory directory listing"
 
-#: mod/notifications.php:154
-msgid "Hide Ignored Requests"
-msgstr "Hide ignored requests"
-
-#: mod/notifications.php:166 mod/notifications.php:236
-msgid "Notification type: "
-msgstr "Notification type: "
+#: mod/admin.php:1183
+msgid ""
+"Check to force all profiles on this site to be listed in the site directory."
+msgstr "Force all profiles on this site to be listed in the site directory."
 
-#: mod/notifications.php:169
-#, php-format
-msgid "suggested by %s"
-msgstr "suggested by %s"
+#: mod/admin.php:1184
+msgid "Global directory URL"
+msgstr "Global directory URL"
 
-#: mod/notifications.php:174 mod/notifications.php:253 mod/contacts.php:626
-msgid "Hide this contact from others"
-msgstr "Hide this contact from others"
+#: mod/admin.php:1184
+msgid ""
+"URL to the global directory. If this is not set, the global directory is "
+"completely unavailable to the application."
+msgstr "URL to the global directory: If this is not set, the global directory is completely unavailable to the application."
 
-#: mod/notifications.php:175 mod/notifications.php:254
-msgid "Post a new friend activity"
-msgstr "Post a new friend activity"
+#: mod/admin.php:1185
+msgid "Allow threaded items"
+msgstr "Allow threaded items"
 
-#: mod/notifications.php:175 mod/notifications.php:254
-msgid "if applicable"
-msgstr "if applicable"
+#: mod/admin.php:1185
+msgid "Allow infinite level threading for items on this site."
+msgstr "Allow infinite levels of threading for items on this site."
 
-#: mod/notifications.php:178 mod/notifications.php:263 mod/admin.php:1596
-msgid "Approve"
-msgstr "Approve"
+#: mod/admin.php:1186
+msgid "Private posts by default for new users"
+msgstr "Private posts by default for new users"
 
-#: mod/notifications.php:197
-msgid "Claims to be known to you: "
-msgstr "Says they know me:"
+#: mod/admin.php:1186
+msgid ""
+"Set default post permissions for all new members to the default privacy "
+"group rather than public."
+msgstr "Set default post permissions for all new members to the default privacy group rather than public."
 
-#: mod/notifications.php:198
-msgid "yes"
-msgstr "yes"
+#: mod/admin.php:1187
+msgid "Don't include post content in email notifications"
+msgstr "Don't include post content in email notifications"
 
-#: mod/notifications.php:198
-msgid "no"
-msgstr "no"
+#: mod/admin.php:1187
+msgid ""
+"Don't include the content of a post/comment/private message/etc. in the "
+"email notifications that are sent out from this site, as a privacy measure."
+msgstr "Don't include the content of a post/comment/private message in the email notifications sent from this site, as a privacy measure."
 
-#: mod/notifications.php:199 mod/notifications.php:204
-msgid "Shall your connection be bidirectional or not?"
-msgstr "Shall your connection be in both directions or not?"
+#: mod/admin.php:1188
+msgid "Disallow public access to addons listed in the apps menu."
+msgstr "Disallow public access to addons listed in the apps menu."
 
-#: mod/notifications.php:200 mod/notifications.php:205
-#, php-format
+#: mod/admin.php:1188
 msgid ""
-"Accepting %s as a friend allows %s to subscribe to your posts, and you will "
-"also receive updates from them in your news feed."
-msgstr "Accepting %s as a friend allows %s to subscribe to your posts; you will also receive updates from them in your news feed."
+"Checking this box will restrict addons listed in the apps menu to members "
+"only."
+msgstr "Checking this box will restrict addons listed in the apps menu to members only."
 
-#: mod/notifications.php:201
-#, php-format
-msgid ""
-"Accepting %s as a subscriber allows them to subscribe to your posts, but you"
-" will not receive updates from them in your news feed."
-msgstr "Accepting %s as a subscriber allows them to subscribe to your posts, but you will not receive updates from them in your news feed."
+#: mod/admin.php:1189
+msgid "Don't embed private images in posts"
+msgstr "Don't embed private images in posts"
 
-#: mod/notifications.php:206
-#, php-format
+#: mod/admin.php:1189
 msgid ""
-"Accepting %s as a sharer allows them to subscribe to your posts, but you "
-"will not receive updates from them in your news feed."
-msgstr "Accepting %s as a sharer allows them to subscribe to your posts, but you will not receive updates from them in your news feed."
+"Don't replace locally-hosted private photos in posts with an embedded copy "
+"of the image. This means that contacts who receive posts containing private "
+"photos will have to authenticate and load each image, which may take a "
+"while."
+msgstr "Don't replace locally-hosted private photos in posts with an embedded copy of the image. This means that contacts who receive posts containing private photos will have to authenticate and load each image, which may take a while."
 
-#: mod/notifications.php:217
-msgid "Friend"
-msgstr "Friend"
+#: mod/admin.php:1190
+msgid "Allow Users to set remote_self"
+msgstr "Allow users to set \"Remote self\""
 
-#: mod/notifications.php:218
-msgid "Sharer"
-msgstr "Sharer"
+#: mod/admin.php:1190
+msgid ""
+"With checking this, every user is allowed to mark every contact as a "
+"remote_self in the repair contact dialog. Setting this flag on a contact "
+"causes mirroring every posting of that contact in the users stream."
+msgstr "This allows every user to mark contacts as a \"Remote self\" in the repair contact dialogue. Setting this flag on a contact will mirror every posting of that contact in the users stream."
 
-#: mod/notifications.php:218
-msgid "Subscriber"
-msgstr "Subscriber"
+#: mod/admin.php:1191
+msgid "Block multiple registrations"
+msgstr "Block multiple registrations"
 
-#: mod/notifications.php:257 mod/follow.php:131 mod/contacts.php:637
-msgid "Profile URL"
-msgstr "Profile URL:"
+#: mod/admin.php:1191
+msgid "Disallow users to register additional accounts for use as pages."
+msgstr "Disallow users to sign up for additional accounts."
 
-#: mod/notifications.php:274
-msgid "No introductions."
-msgstr "No introductions."
+#: mod/admin.php:1192
+msgid "OpenID support"
+msgstr "OpenID support"
 
-#: mod/notifications.php:315
-msgid "Show unread"
-msgstr "Show unread"
+#: mod/admin.php:1192
+msgid "OpenID support for registration and logins."
+msgstr "OpenID support for registration and logins."
 
-#: mod/notifications.php:315
-msgid "Show all"
-msgstr "Show all"
+#: mod/admin.php:1193
+msgid "Fullname check"
+msgstr "Full name check"
 
-#: mod/notifications.php:321
-#, php-format
-msgid "No more %s notifications."
-msgstr "No more %s notifications."
+#: mod/admin.php:1193
+msgid ""
+"Force users to register with a space between firstname and lastname in Full "
+"name, as an antispam measure"
+msgstr "Force users to sign up with a space between first name and last name in the full name field; it may reduce spam and abuse registrations."
 
-#: mod/notify.php:68
-msgid "No more system notifications."
-msgstr "No more system notifications."
+#: mod/admin.php:1194
+msgid "Community Page Style"
+msgstr "Community page style"
 
-#: mod/oexchange.php:24
-msgid "Post successful."
-msgstr "Post successful."
+#: mod/admin.php:1194
+msgid ""
+"Type of community page to show. 'Global community' shows every public "
+"posting from an open distributed network that arrived on this server."
+msgstr "Type of community page to show. 'Global community' shows every public posting from an open distributed network that arrived on this server."
 
-#: mod/openid.php:24
-msgid "OpenID protocol error. No ID returned."
-msgstr "OpenID protocol error. No ID returned."
+#: mod/admin.php:1195
+msgid "Posts per user on community page"
+msgstr "Posts per user on community page"
 
-#: mod/openid.php:60
+#: mod/admin.php:1195
 msgid ""
-"Account not found and OpenID registration is not permitted on this site."
-msgstr "Account not found and OpenID registration is not permitted on this site."
-
-#: mod/ostatus_subscribe.php:16
-msgid "Subscribing to OStatus contacts"
-msgstr "Subscribing to OStatus contacts"
+"The maximum number of posts per user on the community page. (Not valid for "
+"'Global Community')"
+msgstr "Maximum number of posts per user on the community page (not valid for 'Global Community')."
 
-#: mod/ostatus_subscribe.php:27
-msgid "No contact provided."
-msgstr "No contact provided."
+#: mod/admin.php:1196
+msgid "Enable OStatus support"
+msgstr "Enable OStatus support"
 
-#: mod/ostatus_subscribe.php:33
-msgid "Couldn't fetch information for contact."
-msgstr "Couldn't fetch information for contact."
+#: mod/admin.php:1196
+msgid ""
+"Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All "
+"communications in OStatus are public, so privacy warnings will be "
+"occasionally displayed."
+msgstr "Provide built-in OStatus (StatusNet, GNU Social, etc.) compatibility. All communications in OStatus are public, so privacy warnings will be occasionally displayed."
 
-#: mod/ostatus_subscribe.php:42
-msgid "Couldn't fetch friends for contact."
-msgstr "Couldn't fetch friends for contact."
+#: mod/admin.php:1197
+msgid "OStatus conversation completion interval"
+msgstr "OStatus conversation completion interval"
 
-#: mod/ostatus_subscribe.php:56 mod/repair_ostatus.php:46
-msgid "Done"
-msgstr "Done"
+#: mod/admin.php:1197
+msgid ""
+"How often shall the poller check for new entries in OStatus conversations? "
+"This can be a very ressource task."
+msgstr "How often shall the poller check for new entries in OStatus conversations? This can be rather resources consuming."
 
-#: mod/ostatus_subscribe.php:70
-msgid "success"
-msgstr "success"
+#: mod/admin.php:1198
+msgid "Only import OStatus threads from our contacts"
+msgstr "Only import OStatus threads from known contacts"
 
-#: mod/ostatus_subscribe.php:72
-msgid "failed"
-msgstr "failed"
+#: mod/admin.php:1198
+msgid ""
+"Normally we import every content from our OStatus contacts. With this option"
+" we only store threads that are started by a contact that is known on our "
+"system."
+msgstr "Normally we import every content from our OStatus contacts. With this option we only store threads that are started by a contact that is known on our system."
 
-#: mod/ostatus_subscribe.php:80 mod/repair_ostatus.php:52
-msgid "Keep this window open until done."
-msgstr "Keep this window open until done."
+#: mod/admin.php:1199
+msgid "OStatus support can only be enabled if threading is enabled."
+msgstr "OStatus support can only be enabled if threading is enabled."
 
-#: mod/p.php:12
-msgid "Not Extended"
-msgstr "Not extended"
+#: mod/admin.php:1201
+msgid ""
+"Diaspora support can't be enabled because Friendica was installed into a sub"
+" directory."
+msgstr "Diaspora support can't be enabled because Friendica was installed into a sub directory."
 
-#: mod/p.php:19 mod/p.php:46 mod/p.php:55 mod/fetch.php:15 mod/fetch.php:42
-#: mod/fetch.php:51 mod/help.php:56 index.php:301
-msgid "Not Found"
-msgstr "Not found"
+#: mod/admin.php:1202
+msgid "Enable Diaspora support"
+msgstr "Enable Diaspora support"
 
-#: mod/photos.php:96 mod/photos.php:1902
-msgid "Recent Photos"
-msgstr "Recent photos"
+#: mod/admin.php:1202
+msgid "Provide built-in Diaspora network compatibility."
+msgstr "Provide built-in Diaspora network compatibility."
 
-#: mod/photos.php:99 mod/photos.php:1330 mod/photos.php:1904
-msgid "Upload New Photos"
-msgstr "Upload new photos"
+#: mod/admin.php:1203
+msgid "Only allow Friendica contacts"
+msgstr "Only allow Friendica contacts"
 
-#: mod/photos.php:114 mod/settings.php:38
-msgid "everybody"
-msgstr "everybody"
+#: mod/admin.php:1203
+msgid ""
+"All contacts must use Friendica protocols. All other built-in communication "
+"protocols disabled."
+msgstr "All contacts must use Friendica protocols. All other built-in communication protocols will be disabled."
 
-#: mod/photos.php:178
-msgid "Contact information unavailable"
-msgstr "Contact information unavailable"
+#: mod/admin.php:1204
+msgid "Verify SSL"
+msgstr "Verify SSL"
 
-#: mod/photos.php:199
-msgid "Album not found."
-msgstr "Album not found."
+#: mod/admin.php:1204
+msgid ""
+"If you wish, you can turn on strict certificate checking. This will mean you"
+" cannot connect (at all) to self-signed SSL sites."
+msgstr "If you wish, you can turn on strict certificate checking. This will mean you cannot connect (at all) to self-signed SSL sites."
 
-#: mod/photos.php:232 mod/photos.php:244 mod/photos.php:1274
-msgid "Delete Album"
-msgstr "Delete album"
+#: mod/admin.php:1205
+msgid "Proxy user"
+msgstr "Proxy user"
 
-#: mod/photos.php:242
-msgid "Do you really want to delete this photo album and all its photos?"
-msgstr "Do you really want to delete this photo album and all its photos?"
+#: mod/admin.php:1206
+msgid "Proxy URL"
+msgstr "Proxy URL"
 
-#: mod/photos.php:325 mod/photos.php:336 mod/photos.php:1600
-msgid "Delete Photo"
-msgstr "Delete photo"
-
-#: mod/photos.php:334
-msgid "Do you really want to delete this photo?"
-msgstr "Do you really want to delete this photo?"
+#: mod/admin.php:1207
+msgid "Network timeout"
+msgstr "Network timeout"
 
-#: mod/photos.php:715
-#, php-format
-msgid "%1$s was tagged in %2$s by %3$s"
-msgstr "%1$s was tagged in %2$s by %3$s"
+#: mod/admin.php:1207
+msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
+msgstr "Value is in seconds. Set to 0 for unlimited (not recommended)."
 
-#: mod/photos.php:715
-msgid "a photo"
-msgstr "a photo"
+#: mod/admin.php:1208
+msgid "Maximum Load Average"
+msgstr "Maximum load average"
 
-#: mod/photos.php:815 mod/wall_upload.php:181 mod/profile_photo.php:155
-#, php-format
-msgid "Image exceeds size limit of %s"
-msgstr "Image exceeds size limit of %s"
+#: mod/admin.php:1208
+msgid ""
+"Maximum system load before delivery and poll processes are deferred - "
+"default 50."
+msgstr "Maximum system load before delivery and poll processes are deferred (default 50)."
 
-#: mod/photos.php:823
-msgid "Image file is empty."
-msgstr "Image file is empty."
+#: mod/admin.php:1209
+msgid "Maximum Load Average (Frontend)"
+msgstr "Maximum load average (frontend)"
 
-#: mod/photos.php:856 mod/wall_upload.php:218 mod/profile_photo.php:164
-msgid "Unable to process image."
-msgstr "Unable to process image."
+#: mod/admin.php:1209
+msgid "Maximum system load before the frontend quits service - default 50."
+msgstr "Maximum system load before the frontend quits service (default 50)."
 
-#: mod/photos.php:885 mod/wall_upload.php:257 mod/profile_photo.php:314
-msgid "Image upload failed."
-msgstr "Image upload failed."
+#: mod/admin.php:1210
+msgid "Minimal Memory"
+msgstr "Minimal memory"
 
-#: mod/photos.php:990
-msgid "No photos selected"
-msgstr "No photos selected"
+#: mod/admin.php:1210
+msgid ""
+"Minimal free memory in MB for the poller. Needs access to /proc/meminfo - "
+"default 0 (deactivated)."
+msgstr "Minimal free memory in MB for the poller. Needs access to /proc/meminfo (default 0 - deactivated)."
 
-#: mod/photos.php:1093 mod/videos.php:311
-msgid "Access to this item is restricted."
-msgstr "Access to this item is restricted."
+#: mod/admin.php:1211
+msgid "Maximum table size for optimization"
+msgstr "Maximum table size for optimization"
 
-#: mod/photos.php:1153
-#, php-format
-msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."
-msgstr "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."
+#: mod/admin.php:1211
+msgid ""
+"Maximum table size (in MB) for the automatic optimization - default 100 MB. "
+"Enter -1 to disable it."
+msgstr "Maximum table size (in MB) for the automatic optimization (default 100 MB; -1 to deactivate)."
 
-#: mod/photos.php:1190
-msgid "Upload Photos"
-msgstr "Upload photos"
+#: mod/admin.php:1212
+msgid "Minimum level of fragmentation"
+msgstr "Minimum level of fragmentation"
 
-#: mod/photos.php:1194 mod/photos.php:1269
-msgid "New album name: "
-msgstr "New album name: "
+#: mod/admin.php:1212
+msgid ""
+"Minimum fragmenation level to start the automatic optimization - default "
+"value is 30%."
+msgstr "Minimum fragmentation level to start the automatic optimization (default 30%)."
 
-#: mod/photos.php:1195
-msgid "or existing album name: "
-msgstr "or existing album name: "
+#: mod/admin.php:1214
+msgid "Periodical check of global contacts"
+msgstr "Periodical check of global contacts"
 
-#: mod/photos.php:1196
-msgid "Do not show a status post for this upload"
-msgstr "Do not show a status post for this upload"
+#: mod/admin.php:1214
+msgid ""
+"If enabled, the global contacts are checked periodically for missing or "
+"outdated data and the vitality of the contacts and servers."
+msgstr "This checks global contacts periodically for missing or outdated data and the vitality of the contacts and servers."
 
-#: mod/photos.php:1207 mod/photos.php:1604 mod/settings.php:1308
-msgid "Show to Groups"
-msgstr "Show to groups"
+#: mod/admin.php:1215
+msgid "Days between requery"
+msgstr "Days between enquiry"
 
-#: mod/photos.php:1208 mod/photos.php:1605 mod/settings.php:1309
-msgid "Show to Contacts"
-msgstr "Show to contacts"
+#: mod/admin.php:1215
+msgid "Number of days after which a server is requeried for his contacts."
+msgstr "Number of days after which a server is required check contacts."
 
-#: mod/photos.php:1209
-msgid "Private Photo"
-msgstr "Private photo"
+#: mod/admin.php:1216
+msgid "Discover contacts from other servers"
+msgstr "Discover contacts from other servers"
 
-#: mod/photos.php:1210
-msgid "Public Photo"
-msgstr "Public photo"
+#: mod/admin.php:1216
+msgid ""
+"Periodically query other servers for contacts. You can choose between "
+"'users': the users on the remote system, 'Global Contacts': active contacts "
+"that are known on the system. The fallback is meant for Redmatrix servers "
+"and older friendica servers, where global contacts weren't available. The "
+"fallback increases the server load, so the recommened setting is 'Users, "
+"Global Contacts'."
+msgstr "Periodically query other servers for contacts. You can choose between 'Users': the users on the remote system, 'Global Contacts': active contacts that are known on the system. The fallback is meant for Redmatrix servers and older Friendica servers, where global contacts weren't available. The fallback increases the server load, so the recommend setting is 'Users, Global Contacts'."
 
-#: mod/photos.php:1280
-msgid "Edit Album"
-msgstr "Edit album"
+#: mod/admin.php:1217
+msgid "Timeframe for fetching global contacts"
+msgstr "Time-frame for fetching global contacts"
 
-#: mod/photos.php:1285
-msgid "Show Newest First"
-msgstr "Show newest first"
+#: mod/admin.php:1217
+msgid ""
+"When the discovery is activated, this value defines the timeframe for the "
+"activity of the global contacts that are fetched from other servers."
+msgstr "If discovery is activated, this value defines the time-frame for the activity of the global contacts that are fetched from other servers."
 
-#: mod/photos.php:1287
-msgid "Show Oldest First"
-msgstr "Show oldest first"
+#: mod/admin.php:1218
+msgid "Search the local directory"
+msgstr "Search the local directory"
 
-#: mod/photos.php:1316 mod/photos.php:1887
-msgid "View Photo"
-msgstr "View photo"
+#: mod/admin.php:1218
+msgid ""
+"Search the local directory instead of the global directory. When searching "
+"locally, every search will be executed on the global directory in the "
+"background. This improves the search results when the search is repeated."
+msgstr "Search the local directory instead of the global directory. When searching locally, every search will be executed on the global directory in the background. This improves the search results when the search is repeated."
 
-#: mod/photos.php:1361
-msgid "Permission denied. Access to this item may be restricted."
-msgstr "Permission denied. Access to this item may be restricted."
+#: mod/admin.php:1220
+msgid "Publish server information"
+msgstr "Publish server information"
 
-#: mod/photos.php:1363
-msgid "Photo not available"
-msgstr "Photo not available"
+#: mod/admin.php:1220
+msgid ""
+"If enabled, general server and usage data will be published. The data "
+"contains the name and version of the server, number of users with public "
+"profiles, number of posts and the activated protocols and connectors. See <a"
+" href='http://the-federation.info/'>the-federation.info</a> for details."
+msgstr "This publishes generic data about the server and its usage. The data contains the name and version of the server, number of users with public profiles, number of posts and the activated protocols and connectors. See <a href='http://the-federation.info/'>the-federation.info</a> for details."
 
-#: mod/photos.php:1424
-msgid "View photo"
-msgstr "View photo"
+#: mod/admin.php:1222
+msgid "Suppress Tags"
+msgstr "Suppress tags"
 
-#: mod/photos.php:1424
-msgid "Edit photo"
-msgstr "Edit photo"
+#: mod/admin.php:1222
+msgid "Suppress showing a list of hashtags at the end of the posting."
+msgstr "Suppress listed hashtags at the end of posts."
 
-#: mod/photos.php:1425
-msgid "Use as profile photo"
-msgstr "Use as profile photo"
+#: mod/admin.php:1223
+msgid "Path to item cache"
+msgstr "Path to item cache"
 
-#: mod/photos.php:1450
-msgid "View Full Size"
-msgstr "View full size"
+#: mod/admin.php:1223
+msgid "The item caches buffers generated bbcode and external images."
+msgstr "The item caches buffers generated bbcode and external images."
 
-#: mod/photos.php:1540
-msgid "Tags: "
-msgstr "Tags: "
+#: mod/admin.php:1224
+msgid "Cache duration in seconds"
+msgstr "Cache duration in seconds"
 
-#: mod/photos.php:1543
-msgid "[Remove any tag]"
-msgstr "[Remove any tag]"
+#: mod/admin.php:1224
+msgid ""
+"How long should the cache files be hold? Default value is 86400 seconds (One"
+" day). To disable the item cache, set the value to -1."
+msgstr "How long should cache files be held? (Default 86400 seconds - one day;  -1 disables item cache)"
 
-#: mod/photos.php:1586
-msgid "New album name"
-msgstr "New album name"
+#: mod/admin.php:1225
+msgid "Maximum numbers of comments per post"
+msgstr "Maximum numbers of comments per post"
 
-#: mod/photos.php:1587
-msgid "Caption"
-msgstr "Caption"
+#: mod/admin.php:1225
+msgid "How much comments should be shown for each post? Default value is 100."
+msgstr "How many comments should be shown for each post? (Default 100)"
 
-#: mod/photos.php:1588
-msgid "Add a Tag"
-msgstr "Add Tag"
+#: mod/admin.php:1226
+msgid "Temp path"
+msgstr "Temp path"
 
-#: mod/photos.php:1588
+#: mod/admin.php:1226
 msgid ""
-"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
-msgstr "Example: @bob, @jojo@example.com, #California, #camping"
+"If you have a restricted system where the webserver can't access the system "
+"temp path, enter another path here."
+msgstr "Enter a different tmp path, if your system restricts the webserver's access to the system temp path."
 
-#: mod/photos.php:1589
-msgid "Do not rotate"
-msgstr "Do not rotate"
+#: mod/admin.php:1227
+msgid "Base path to installation"
+msgstr "Base path to installation"
 
-#: mod/photos.php:1590
-msgid "Rotate CW (right)"
-msgstr "Rotate right (CW)"
+#: mod/admin.php:1227
+msgid ""
+"If the system cannot detect the correct path to your installation, enter the"
+" correct path here. This setting should only be set if you are using a "
+"restricted system and symbolic links to your webroot."
+msgstr "If the system cannot detect the correct path to your installation, enter the correct path here. This setting should only be set if you are using a restricted system and symbolic links to your webroot."
 
-#: mod/photos.php:1591
-msgid "Rotate CCW (left)"
-msgstr "Rotate left (CCW)"
+#: mod/admin.php:1228
+msgid "Disable picture proxy"
+msgstr "Disable picture proxy"
 
-#: mod/photos.php:1606
-msgid "Private photo"
-msgstr "Private photo"
+#: mod/admin.php:1228
+msgid ""
+"The picture proxy increases performance and privacy. It shouldn't be used on"
+" systems with very low bandwith."
+msgstr "The picture proxy increases performance and privacy. It shouldn't be used on systems with very low bandwith."
 
-#: mod/photos.php:1607
-msgid "Public photo"
-msgstr "Public photo"
+#: mod/admin.php:1229
+msgid "Only search in tags"
+msgstr "Only search in tags"
 
-#: mod/photos.php:1816
-msgid "Map"
-msgstr "Map"
+#: mod/admin.php:1229
+msgid "On large systems the text search can slow down the system extremely."
+msgstr "On large systems the text search can slow down the system significantly."
 
-#: mod/photos.php:1893 mod/videos.php:395
-msgid "View Album"
-msgstr "View album"
+#: mod/admin.php:1231
+msgid "New base url"
+msgstr "New base URL"
 
-#: mod/poke.php:197
-msgid "Poke/Prod"
-msgstr "Poke/Prod"
+#: mod/admin.php:1231
+msgid ""
+"Change base url for this server. Sends relocate message to all DFRN contacts"
+" of all users."
+msgstr "Change base URL for this server. Sends relocate message to all DFRN contacts of all users."
 
-#: mod/poke.php:198
-msgid "poke, prod or do other things to somebody"
-msgstr "Poke, prod or do other things to somebody"
-
-#: mod/poke.php:199
-msgid "Recipient"
-msgstr "Recipient:"
+#: mod/admin.php:1233
+msgid "RINO Encryption"
+msgstr "RINO Encryption"
 
-#: mod/poke.php:200
-msgid "Choose what you wish to do to recipient"
-msgstr "Choose what you wish to do:"
+#: mod/admin.php:1233
+msgid "Encryption layer between nodes."
+msgstr "Encryption layer between nodes."
 
-#: mod/poke.php:203
-msgid "Make this post private"
-msgstr "Make this post private"
+#: mod/admin.php:1235
+msgid "Maximum number of parallel workers"
+msgstr "Maximum number of parallel workers"
 
-#: mod/profile.php:176
-msgid "Tips for New Members"
-msgstr "Tips for New Members"
+#: mod/admin.php:1235
+msgid ""
+"On shared hosters set this to 2. On larger systems, values of 10 are great. "
+"Default value is 4."
+msgstr "On shared hosts set this to 2. On larger systems, values of 10 are great. Default value is 4."
 
-#: mod/profperm.php:28 mod/profperm.php:59
-msgid "Invalid profile identifier."
-msgstr "Invalid profile identifier."
+#: mod/admin.php:1236
+msgid "Don't use 'proc_open' with the worker"
+msgstr "Don't use 'proc_open' with the worker"
 
-#: mod/profperm.php:105
-msgid "Profile Visibility Editor"
-msgstr "Profile Visibility Editor"
+#: mod/admin.php:1236
+msgid ""
+"Enable this if your system doesn't allow the use of 'proc_open'. This can "
+"happen on shared hosters. If this is enabled you should increase the "
+"frequency of poller calls in your crontab."
+msgstr "Enable this if your system doesn't allow the use of 'proc_open'. This can happen on shared hosts. If this is enabled you should increase the frequency of poller calls in your crontab."
 
-#: mod/profperm.php:118
-msgid "Visible To"
-msgstr "Visible to"
+#: mod/admin.php:1237
+msgid "Enable fastlane"
+msgstr "Enable fast-lane"
 
-#: mod/profperm.php:134
-msgid "All Contacts (with secure profile access)"
-msgstr "All contacts with secure profile access"
+#: mod/admin.php:1237
+msgid ""
+"When enabed, the fastlane mechanism starts an additional worker if processes"
+" with higher priority are blocked by processes of lower priority."
+msgstr "The fast-lane mechanism starts an additional worker if processes with higher priority are blocked by processes of lower priority."
 
-#: mod/removeme.php:54 mod/removeme.php:57
-msgid "Remove My Account"
-msgstr "Remove My Account"
+#: mod/admin.php:1238
+msgid "Enable frontend worker"
+msgstr "Enable frontend worker"
 
-#: mod/removeme.php:55
+#: mod/admin.php:1238
+#, php-format
 msgid ""
-"This will completely remove your account. Once this has been done it is not "
-"recoverable."
-msgstr "This will completely remove your account. Once this has been done it is not recoverable."
-
-#: mod/removeme.php:56
-msgid "Please enter your password for verification:"
-msgstr "Please enter your password for verification:"
+"When enabled the Worker process is triggered when backend access is "
+"performed (e.g. messages being delivered). On smaller sites you might want "
+"to call %s/worker on a regular basis via an external cron job. You should "
+"only enable this option if you cannot utilize cron/scheduled jobs on your "
+"server."
+msgstr "This triggers the worker process when the backend is accessed, such as messages being delivered. On smaller sites you might want to call %s/worker on a regular basis via an external cron job. You should only enable this option if you cannot utilize cron/scheduled jobs on your server."
 
-#: mod/repair_ostatus.php:16
-msgid "Resubscribing to OStatus contacts"
-msgstr "Resubscribing to OStatus contacts"
+#: mod/admin.php:1268
+msgid "Update has been marked successful"
+msgstr "Update has been marked successful"
 
-#: mod/repair_ostatus.php:32
-msgid "Error"
-msgstr "Error"
+#: mod/admin.php:1276
+#, php-format
+msgid "Database structure update %s was successfully applied."
+msgstr "Database structure update %s was successfully applied."
 
-#: mod/subthread.php:105
+#: mod/admin.php:1279
 #, php-format
-msgid "%1$s is following %2$s's %3$s"
-msgstr "%1$s is following %2$s's %3$s"
+msgid "Executing of database structure update %s failed with error: %s"
+msgstr "Executing of database structure update %s failed with error: %s"
 
-#: mod/suggest.php:29
-msgid "Do you really want to delete this suggestion?"
-msgstr "Do you really want to delete this suggestion?"
+#: mod/admin.php:1293
+#, php-format
+msgid "Executing %s failed with error: %s"
+msgstr "Executing %s failed with error: %s"
 
-#: mod/suggest.php:73
-msgid ""
-"No suggestions available. If this is a new site, please try again in 24 "
-"hours."
-msgstr "No suggestions available. If this is a new site, please try again in 24 hours."
+#: mod/admin.php:1296
+#, php-format
+msgid "Update %s was successfully applied."
+msgstr "Update %s was successfully applied."
 
-#: mod/suggest.php:86 mod/suggest.php:106
-msgid "Ignore/Hide"
-msgstr "Ignore/Hide"
+#: mod/admin.php:1299
+#, php-format
+msgid "Update %s did not return a status. Unknown if it succeeded."
+msgstr "Update %s did not return a status. Unknown if it succeeded."
 
-#: mod/tagrm.php:45
-msgid "Tag removed"
-msgstr "Tag removed"
+#: mod/admin.php:1302
+#, php-format
+msgid "There was no additional update function %s that needed to be called."
+msgstr "There was no additional update function %s that needed to be called."
 
-#: mod/tagrm.php:84
-msgid "Remove Item Tag"
-msgstr "Remove Item tag"
+#: mod/admin.php:1322
+msgid "No failed updates."
+msgstr "No failed updates."
 
-#: mod/tagrm.php:86
-msgid "Select a tag to remove: "
-msgstr "Select a tag to remove: "
+#: mod/admin.php:1323
+msgid "Check database structure"
+msgstr "Check database structure"
 
-#: mod/uexport.php:38
-msgid "Export account"
-msgstr "Export account"
+#: mod/admin.php:1328
+msgid "Failed Updates"
+msgstr "Failed updates"
 
-#: mod/uexport.php:38
+#: mod/admin.php:1329
 msgid ""
-"Export your account info and contacts. Use this to make a backup of your "
-"account and/or to move it to another server."
-msgstr "Export your account info and contacts. Use this to backup your account or to move it to another server."
+"This does not include updates prior to 1139, which did not return a status."
+msgstr "This does not include updates prior to 1139, which did not return a status."
 
-#: mod/uexport.php:39
-msgid "Export all"
-msgstr "Export all"
+#: mod/admin.php:1330
+msgid "Mark success (if update was manually applied)"
+msgstr "Mark success (if update was manually applied)"
 
-#: mod/uexport.php:39
+#: mod/admin.php:1331
+msgid "Attempt to execute this update step automatically"
+msgstr "Attempt to execute this update step automatically"
+
+#: mod/admin.php:1365
+#, php-format
 msgid ""
-"Export your accout info, contacts and all your items as json. Could be a "
-"very big file, and could take a lot of time. Use this to make a full backup "
-"of your account (photos are not exported)"
-msgstr "Export your account info, contacts and all your items as json. Could be a very big file, and could take a lot of time. Use this to make a full backup of your account (photos are not exported)"
+"\n"
+"\t\t\tDear %1$s,\n"
+"\t\t\t\tthe administrator of %2$s has set up an account for you."
+msgstr "\n\t\t\tDear %1$s,\n\t\t\t\tThe administrator of %2$s has set up an account for you."
 
-#: mod/uexport.php:46 mod/settings.php:97
-msgid "Export personal data"
-msgstr "Export personal data"
+#: mod/admin.php:1368
+#, php-format
+msgid ""
+"\n"
+"\t\t\tThe login details are as follows:\n"
+"\n"
+"\t\t\tSite Location:\t%1$s\n"
+"\t\t\tLogin Name:\t\t%2$s\n"
+"\t\t\tPassword:\t\t%3$s\n"
+"\n"
+"\t\t\tYou may change your password from your account \"Settings\" page after logging\n"
+"\t\t\tin.\n"
+"\n"
+"\t\t\tPlease take a few moments to review the other account settings on that page.\n"
+"\n"
+"\t\t\tYou may also wish to add some basic information to your default profile\n"
+"\t\t\t(on the \"Profiles\" page) so that other people can easily find you.\n"
+"\n"
+"\t\t\tWe recommend setting your full name, adding a profile photo,\n"
+"\t\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n"
+"\t\t\tperhaps what country you live in; if you do not wish to be more specific\n"
+"\t\t\tthan that.\n"
+"\n"
+"\t\t\tWe fully respect your right to privacy, and none of these items are necessary.\n"
+"\t\t\tIf you are new and do not know anybody here, they may help\n"
+"\t\t\tyou to make some new and interesting friends.\n"
+"\n"
+"\t\t\tThank you and welcome to %4$s."
+msgstr "\n\t\t\tThe login details are as follows:\n\n\t\t\tSite Location:\t%1$s\n\t\t\tLogin Name:\t\t%2$s\n\t\t\tPassword:\t\t%3$s\n\n\t\t\tYou may change your password from your account \"Settings\" page after logging\n\t\t\tin.\n\n\t\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\t\tYou may also wish to add some basic information to your default profile\n\t\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\t\tWe recommend setting your full name, adding a profile photo,\n\t\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\t\tperhaps what country you live in; if you do not wish to be more specific\n\t\t\tthan that.\n\n\t\t\tWe fully respect your right to privacy and none of these items are necessary.\n\t\t\tIf you are new and do not know anybody here, this may help\n\t\t\tyou to make some new and interesting friends.\n\n\t\t\tThank you and welcome to %4$s."
 
-#: mod/update_community.php:21 mod/update_display.php:25
-#: mod/update_notes.php:38 mod/update_profile.php:37 mod/update_network.php:29
-msgid "[Embedded content - reload page to view]"
-msgstr "[Embedded content - reload page to view]"
+#: mod/admin.php:1412
+#, php-format
+msgid "%s user blocked/unblocked"
+msgid_plural "%s users blocked/unblocked"
+msgstr[0] "%s user blocked/unblocked"
+msgstr[1] "%s users blocked/unblocked"
 
-#: mod/videos.php:126
-msgid "Do you really want to delete this video?"
-msgstr "Do you really want to delete this video?"
+#: mod/admin.php:1419
+#, php-format
+msgid "%s user deleted"
+msgid_plural "%s users deleted"
+msgstr[0] "%s user deleted"
+msgstr[1] "%s users deleted"
 
-#: mod/videos.php:131
-msgid "Delete Video"
-msgstr "Delete video"
+#: mod/admin.php:1466
+#, php-format
+msgid "User '%s' deleted"
+msgstr "User '%s' deleted"
 
-#: mod/videos.php:210
-msgid "No videos selected"
-msgstr "No videos selected"
+#: mod/admin.php:1474
+#, php-format
+msgid "User '%s' unblocked"
+msgstr "User '%s' unblocked"
 
-#: mod/videos.php:404
-msgid "Recent Videos"
-msgstr "Recent videos"
+#: mod/admin.php:1474
+#, php-format
+msgid "User '%s' blocked"
+msgstr "User '%s' blocked"
 
-#: mod/videos.php:406
-msgid "Upload New Videos"
-msgstr "Upload new videos"
+#: mod/admin.php:1582 mod/admin.php:1608
+msgid "Register date"
+msgstr "Registration date"
 
-#: mod/viewcontacts.php:78
-msgid "No contacts."
-msgstr "No contacts."
+#: mod/admin.php:1582 mod/admin.php:1608
+msgid "Last login"
+msgstr "Last login"
 
-#: mod/viewsrc.php:8
-msgid "Access denied."
-msgstr "Access denied."
+#: mod/admin.php:1582 mod/admin.php:1608
+msgid "Last item"
+msgstr "Last item"
 
-#: mod/wall_attach.php:19 mod/wall_attach.php:27 mod/wall_attach.php:78
-#: mod/wall_upload.php:36 mod/wall_upload.php:52 mod/wall_upload.php:110
-#: mod/wall_upload.php:150 mod/wall_upload.php:153
-msgid "Invalid request."
-msgstr "Invalid request."
+#: mod/admin.php:1582 mod/settings.php:46
+msgid "Account"
+msgstr "Account"
 
-#: mod/wall_attach.php:96
-msgid "Sorry, maybe your upload is bigger than the PHP configuration allows"
-msgstr "Sorry, maybe your upload is bigger than the PHP configuration allows"
+#: mod/admin.php:1591
+msgid "Add User"
+msgstr "Add user"
 
-#: mod/wall_attach.php:96
-msgid "Or - did you try to upload an empty file?"
-msgstr "Or did you try to upload an empty file?"
+#: mod/admin.php:1592
+msgid "select all"
+msgstr "select all"
 
-#: mod/wall_attach.php:107
-#, php-format
-msgid "File exceeds size limit of %s"
-msgstr "File exceeds size limit of %s"
+#: mod/admin.php:1593
+msgid "User registrations waiting for confirm"
+msgstr "User registrations awaiting confirmation"
 
-#: mod/wall_attach.php:160 mod/wall_attach.php:176
-msgid "File upload failed."
-msgstr "File upload failed."
+#: mod/admin.php:1594
+msgid "User waiting for permanent deletion"
+msgstr "User awaiting permanent deletion"
 
-#: mod/wallmessage.php:44 mod/wallmessage.php:108
-#, php-format
-msgid "Number of daily wall messages for %s exceeded. Message failed."
-msgstr "Number of daily wall messages for %s exceeded. Message failed."
+#: mod/admin.php:1595
+msgid "Request date"
+msgstr "Request date"
 
-#: mod/wallmessage.php:55
-msgid "Unable to check your home location."
-msgstr "Unable to check your home location."
+#: mod/admin.php:1596
+msgid "No registrations."
+msgstr "No registrations."
 
-#: mod/wallmessage.php:82 mod/wallmessage.php:91
-msgid "No recipient."
-msgstr "No recipient."
-
-#: mod/wallmessage.php:129
-#, php-format
-msgid ""
-"If you wish for %s to respond, please check that the privacy settings on "
-"your site allow private mail from unknown senders."
-msgstr "If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."
+#: mod/admin.php:1597
+msgid "Note from the user"
+msgstr "Note from the user"
 
-#: mod/webfinger.php:11 mod/probe.php:10
-msgid "Only logged in users are permitted to perform a probing."
-msgstr "Only logged in users are permitted to perform a probing."
+#: mod/admin.php:1598 mod/notifications.php:179 mod/notifications.php:264
+msgid "Approve"
+msgstr "Approve"
 
-#: mod/regmod.php:60
-msgid "Account approved."
-msgstr "Account approved."
+#: mod/admin.php:1599
+msgid "Deny"
+msgstr "Deny"
 
-#: mod/regmod.php:88
-#, php-format
-msgid "Registration revoked for %s"
-msgstr "Registration revoked for %s"
+#: mod/admin.php:1601 mod/contacts.php:625 mod/contacts.php:825
+#: mod/contacts.php:1003
+msgid "Block"
+msgstr "Block"
 
-#: mod/regmod.php:100
-msgid "Please login."
-msgstr "Please login."
+#: mod/admin.php:1602 mod/contacts.php:625 mod/contacts.php:825
+#: mod/contacts.php:1003
+msgid "Unblock"
+msgstr "Unblock"
 
-#: mod/uimport.php:53 mod/register.php:201
-msgid ""
-"This site has exceeded the number of allowed daily account registrations. "
-"Please try again tomorrow."
-msgstr "This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."
+#: mod/admin.php:1603
+msgid "Site admin"
+msgstr "Site admin"
 
-#: mod/uimport.php:68 mod/register.php:298
-msgid "Import"
-msgstr "Import profile"
+#: mod/admin.php:1604
+msgid "Account expired"
+msgstr "Account expired"
 
-#: mod/uimport.php:70
-msgid "Move account"
-msgstr "Move Existing Friendica Account"
+#: mod/admin.php:1607
+msgid "New User"
+msgstr "New user"
 
-#: mod/uimport.php:71
-msgid "You can import an account from another Friendica server."
-msgstr "You can import an existing Friendica profile to this node."
+#: mod/admin.php:1608
+msgid "Deleted since"
+msgstr "Deleted since"
 
-#: mod/uimport.php:72
+#: mod/admin.php:1613
 msgid ""
-"You need to export your account from the old server and upload it here. We "
-"will recreate your old account here with all your contacts. We will try also"
-" to inform your friends that you moved here."
-msgstr "You need to export your account from the old server and upload it here. We will recreate your old account here with all your contacts. We will try also to inform your friends that you moved here."
+"Selected users will be deleted!\\n\\nEverything these users had posted on "
+"this site will be permanently deleted!\\n\\nAre you sure?"
+msgstr "Selected users will be deleted!\\n\\nEverything these users has posted on this site will be permanently deleted!\\n\\nAre you sure?"
 
-#: mod/uimport.php:73
+#: mod/admin.php:1614
 msgid ""
-"This feature is experimental. We can't import contacts from the OStatus "
-"network (GNU Social/Statusnet) or from Diaspora"
-msgstr "This feature is experimental. We can't import contacts from the OStatus network (GNU Social/Statusnet) or from Diaspora."
-
-#: mod/uimport.php:74
-msgid "Account file"
-msgstr "Account file:"
+"The user {0} will be deleted!\\n\\nEverything this user has posted on this "
+"site will be permanently deleted!\\n\\nAre you sure?"
+msgstr "The user {0} will be deleted!\\n\\nEverything this user has posted on this site will be permanently deleted!\\n\\nAre you sure?"
 
-#: mod/uimport.php:74
-msgid ""
-"To export your account, go to \"Settings->Export your personal data\" and "
-"select \"Export account\""
-msgstr "To export your account, go to \"Settings->Export personal data\" and select \"Export account\""
+#: mod/admin.php:1624
+msgid "Name of the new user."
+msgstr "Name of the new user."
 
-#: mod/dfrn_request.php:103
-msgid "This introduction has already been accepted."
-msgstr "This introduction has already been accepted."
+#: mod/admin.php:1625
+msgid "Nickname"
+msgstr "Nickname"
 
-#: mod/dfrn_request.php:126 mod/dfrn_request.php:528
-msgid "Profile location is not valid or does not contain profile information."
-msgstr "Profile location is not valid or does not contain profile information."
+#: mod/admin.php:1625
+msgid "Nickname of the new user."
+msgstr "Nickname of the new user."
 
-#: mod/dfrn_request.php:131 mod/dfrn_request.php:533
-msgid "Warning: profile location has no identifiable owner name."
-msgstr "Warning: profile location has no identifiable owner name."
+#: mod/admin.php:1626
+msgid "Email address of the new user."
+msgstr "Email address of the new user."
 
-#: mod/dfrn_request.php:134 mod/dfrn_request.php:536
-msgid "Warning: profile location has no profile photo."
-msgstr "Warning: profile location has no profile photo."
+#: mod/admin.php:1669
+#, php-format
+msgid "Plugin %s disabled."
+msgstr "Plugin %s disabled."
 
-#: mod/dfrn_request.php:138 mod/dfrn_request.php:540
+#: mod/admin.php:1673
 #, php-format
-msgid "%d required parameter was not found at the given location"
-msgid_plural "%d required parameters were not found at the given location"
-msgstr[0] "%d required parameter was not found at the given location"
-msgstr[1] "%d required parameters were not found at the given location"
+msgid "Plugin %s enabled."
+msgstr "Plugin %s enabled."
 
-#: mod/dfrn_request.php:182
-msgid "Introduction complete."
-msgstr "Introduction complete."
+#: mod/admin.php:1684 mod/admin.php:1936
+msgid "Disable"
+msgstr "Disable"
 
-#: mod/dfrn_request.php:227
-msgid "Unrecoverable protocol error."
-msgstr "Unrecoverable protocol error."
+#: mod/admin.php:1686 mod/admin.php:1938
+msgid "Enable"
+msgstr "Enable"
 
-#: mod/dfrn_request.php:255
-msgid "Profile unavailable."
-msgstr "Profile unavailable."
+#: mod/admin.php:1709 mod/admin.php:1985
+msgid "Toggle"
+msgstr "Toggle"
 
-#: mod/dfrn_request.php:282
-#, php-format
-msgid "%s has received too many connection requests today."
-msgstr "%s has received too many connection requests today."
+#: mod/admin.php:1717 mod/admin.php:1994
+msgid "Author: "
+msgstr "Author: "
 
-#: mod/dfrn_request.php:283
-msgid "Spam protection measures have been invoked."
-msgstr "Spam protection measures have been invoked."
+#: mod/admin.php:1718 mod/admin.php:1995
+msgid "Maintainer: "
+msgstr "Maintainer: "
 
-#: mod/dfrn_request.php:284
-msgid "Friends are advised to please try again in 24 hours."
-msgstr "Friends are advised to please try again in 24 hours."
+#: mod/admin.php:1773
+msgid "Reload active plugins"
+msgstr "Reload active plugins"
 
-#: mod/dfrn_request.php:346
-msgid "Invalid locator"
-msgstr "Invalid locator"
+#: mod/admin.php:1778
+#, php-format
+msgid ""
+"There are currently no plugins available on your node. You can find the "
+"official plugin repository at %1$s and might find other interesting plugins "
+"in the open plugin registry at %2$s"
+msgstr "There are currently no plugins available on your node. You can find the official plugin repository at %1$s and might find other interesting plugins in the open plugin registry at %2$s"
 
-#: mod/dfrn_request.php:355
-msgid "Invalid email address."
-msgstr "Invalid email address."
+#: mod/admin.php:1897
+msgid "No themes found."
+msgstr "No themes found."
 
-#: mod/dfrn_request.php:380
-msgid "This account has not been configured for email. Request failed."
-msgstr "This account has not been configured for email. Request failed."
+#: mod/admin.php:1976
+msgid "Screenshot"
+msgstr "Screenshot"
 
-#: mod/dfrn_request.php:483
-msgid "You have already introduced yourself here."
-msgstr "You have already introduced yourself here."
+#: mod/admin.php:2036
+msgid "Reload active themes"
+msgstr "Reload active themes"
 
-#: mod/dfrn_request.php:487
+#: mod/admin.php:2041
 #, php-format
-msgid "Apparently you are already friends with %s."
-msgstr "Apparently you are already friends with %s."
-
-#: mod/dfrn_request.php:508
-msgid "Invalid profile URL."
-msgstr "Invalid profile URL."
-
-#: mod/dfrn_request.php:593 mod/contacts.php:221
-msgid "Failed to update contact record."
-msgstr "Failed to update contact record."
+msgid "No themes found on the system. They should be paced in %1$s"
+msgstr "No themes found on the system. They should be paced in %1$s"
 
-#: mod/dfrn_request.php:614
-msgid "Your introduction has been sent."
-msgstr "Your introduction has been sent."
+#: mod/admin.php:2042
+msgid "[Experimental]"
+msgstr "[Experimental]"
 
-#: mod/dfrn_request.php:656
-msgid ""
-"Remote subscription can't be done for your network. Please subscribe "
-"directly on your system."
-msgstr "Remote subscription can't be done for your network. Please subscribe directly on your system."
+#: mod/admin.php:2043
+msgid "[Unsupported]"
+msgstr "[Unsupported]"
 
-#: mod/dfrn_request.php:677
-msgid "Please login to confirm introduction."
-msgstr "Please login to confirm introduction."
+#: mod/admin.php:2067
+msgid "Log settings updated."
+msgstr "Log settings updated."
 
-#: mod/dfrn_request.php:687
-msgid ""
-"Incorrect identity currently logged in. Please login to "
-"<strong>this</strong> profile."
-msgstr "Incorrect identity currently logged in. Please login to <strong>this</strong> profile."
+#: mod/admin.php:2099
+msgid "PHP log currently enabled."
+msgstr "PHP log currently enabled."
 
-#: mod/dfrn_request.php:701 mod/dfrn_request.php:718
-msgid "Confirm"
-msgstr "Confirm"
+#: mod/admin.php:2101
+msgid "PHP log currently disabled."
+msgstr "PHP log currently disabled."
 
-#: mod/dfrn_request.php:713
-msgid "Hide this contact"
-msgstr "Hide this contact"
+#: mod/admin.php:2110
+msgid "Clear"
+msgstr "Clear"
 
-#: mod/dfrn_request.php:716
-#, php-format
-msgid "Welcome home %s."
-msgstr "Welcome home %s."
+#: mod/admin.php:2115
+msgid "Enable Debugging"
+msgstr "Enable debugging"
 
-#: mod/dfrn_request.php:717
-#, php-format
-msgid "Please confirm your introduction/connection request to %s."
-msgstr "Please confirm your introduction/connection request to %s."
+#: mod/admin.php:2116
+msgid "Log file"
+msgstr "Log file"
 
-#: mod/dfrn_request.php:848
+#: mod/admin.php:2116
 msgid ""
-"Please enter your 'Identity Address' from one of the following supported "
-"communications networks:"
-msgstr "Please enter your 'Identity address' from one of the following supported communications networks:"
+"Must be writable by web server. Relative to your Friendica top-level "
+"directory."
+msgstr "Must be writable by web server and relative to your Friendica top-level directory."
 
-#: mod/dfrn_request.php:872
-#, php-format
-msgid ""
-"If you are not yet a member of the free social web, <a "
-"href=\"%s/siteinfo\">follow this link to find a public Friendica site and "
-"join us today</a>."
-msgstr "If you are not yet a member of the free social web, <a href=\"%s/siteinfo\">follow this link to find a public Friendica site and join us today</a>."
+#: mod/admin.php:2117
+msgid "Log level"
+msgstr "Log level"
 
-#: mod/dfrn_request.php:877
-msgid "Friend/Connection Request"
-msgstr "Friend/Connection request"
+#: mod/admin.php:2120
+msgid "PHP logging"
+msgstr "PHP logging"
 
-#: mod/dfrn_request.php:878
+#: mod/admin.php:2121
 msgid ""
-"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, "
-"testuser@identi.ca"
-msgstr "Examples: jojo@friendica.example.com, http://friendica.example.com/profile/jojo, sam@identi.ca"
-
-#: mod/dfrn_request.php:879 mod/follow.php:114
-msgid "Please answer the following:"
-msgstr "Please answer the following:"
-
-#: mod/dfrn_request.php:880 mod/follow.php:115
-#, php-format
-msgid "Does %s know you?"
-msgstr "Does %s know you?"
+"To enable logging of PHP errors and warnings you can add the following to "
+"the .htconfig.php file of your installation. The filename set in the "
+"'error_log' line is relative to the friendica top-level directory and must "
+"be writeable by the web server. The option '1' for 'log_errors' and "
+"'display_errors' is to enable these options, set to '0' to disable them."
+msgstr "To enable logging of PHP errors and warnings you can add the following to the .htconfig.php file of your installation. The file name set in the 'error_log' line is relative to the Friendica top-level directory and must be writeable by the web server. The option '1' for 'log_errors' and 'display_errors' is to enable these options, set to '0' to disable them."
 
-#: mod/dfrn_request.php:884 mod/follow.php:116
-msgid "Add a personal note:"
-msgstr "Add a personal note:"
+#: mod/admin.php:2251 mod/admin.php:2252 mod/settings.php:784
+msgid "Off"
+msgstr "Off"
 
-#: mod/dfrn_request.php:887
-msgid "StatusNet/Federated Social Web"
-msgstr "StatusNet/Federated social web"
+#: mod/admin.php:2251 mod/admin.php:2252 mod/settings.php:784
+msgid "On"
+msgstr "On"
 
-#: mod/dfrn_request.php:889
+#: mod/admin.php:2252
 #, php-format
-msgid ""
-" - please do not use this form.  Instead, enter %s into your Diaspora search"
-" bar."
-msgstr " - please do not use this form.  Instead, enter %s into your Diaspora search bar."
+msgid "Lock feature %s"
+msgstr "Lock feature %s"
 
-#: mod/dfrn_request.php:890 mod/follow.php:122
-msgid "Your Identity Address:"
-msgstr "My identity address:"
+#: mod/admin.php:2260
+msgid "Manage Additional Features"
+msgstr "Manage additional features"
 
-#: mod/dfrn_request.php:893 mod/follow.php:21
-msgid "Submit Request"
-msgstr "Submit request"
+#: mod/allfriends.php:49
+msgid "No friends to display."
+msgstr "No friends to display."
 
-#: mod/dirfind.php:39
-#, php-format
-msgid "People Search - %s"
-msgstr "People search - %s"
-
-#: mod/dirfind.php:50
-#, php-format
-msgid "Forum Search - %s"
-msgstr "Forum search - %s"
+#: mod/bookmarklet.php:44
+msgid "The post was created"
+msgstr "The post was created"
 
-#: mod/events.php:96 mod/events.php:98
-msgid "Event can not end before it has started."
-msgstr "Event cannot end before it has started."
+#: mod/cal.php:146 mod/display.php:348 mod/profile.php:157
+msgid "Access to this profile has been restricted."
+msgstr "Access to this profile has been restricted."
 
-#: mod/events.php:105 mod/events.php:107
-msgid "Event title and start time are required."
-msgstr "Event title and starting time are required."
+#: mod/cal.php:274 mod/events.php:379
+msgid "View"
+msgstr "View"
 
-#: mod/events.php:379
-msgid "Create New Event"
-msgstr "Create new event"
+#: mod/cal.php:275 mod/events.php:381
+msgid "Previous"
+msgstr "Previous"
 
-#: mod/events.php:484
-msgid "Event details"
-msgstr "Event details"
+#: mod/cal.php:276 mod/events.php:382 mod/install.php:204
+msgid "Next"
+msgstr "Next"
 
-#: mod/events.php:485
-msgid "Starting date and Title are required."
-msgstr "Starting date and title are required."
+#: mod/cal.php:285 mod/events.php:391
+msgid "list"
+msgstr "List"
 
-#: mod/events.php:486 mod/events.php:487
-msgid "Event Starts:"
-msgstr "Event starts:"
+#: mod/cal.php:295
+msgid "User not found"
+msgstr "User not found"
 
-#: mod/events.php:486 mod/events.php:498 mod/profiles.php:712
-msgid "Required"
-msgstr "Required"
+#: mod/cal.php:311
+msgid "This calendar format is not supported"
+msgstr "This calendar format is not supported"
 
-#: mod/events.php:488 mod/events.php:504
-msgid "Finish date/time is not known or not relevant"
-msgstr "Finish date/time is not known or not relevant"
+#: mod/cal.php:313
+msgid "No exportable data found"
+msgstr "No exportable data found"
 
-#: mod/events.php:490 mod/events.php:491
-msgid "Event Finishes:"
-msgstr "Event finishes:"
+#: mod/cal.php:328
+msgid "calendar"
+msgstr "calendar"
 
-#: mod/events.php:492 mod/events.php:505
-msgid "Adjust for viewer timezone"
-msgstr "Adjust for viewer's time zone"
+#: mod/contacts.php:138
+#, php-format
+msgid "%d contact edited."
+msgid_plural "%d contacts edited."
+msgstr[0] "%d contact edited."
+msgstr[1] "%d contacts edited."
 
-#: mod/events.php:494
-msgid "Description:"
-msgstr "Description:"
+#: mod/contacts.php:173 mod/contacts.php:382
+msgid "Could not access contact record."
+msgstr "Could not access contact record."
 
-#: mod/events.php:498 mod/events.php:500
-msgid "Title:"
-msgstr "Title:"
+#: mod/contacts.php:187
+msgid "Could not locate selected profile."
+msgstr "Could not locate selected profile."
 
-#: mod/events.php:501 mod/events.php:502
-msgid "Share this event"
-msgstr "Share this event"
+#: mod/contacts.php:220
+msgid "Contact updated."
+msgstr "Contact updated."
 
-#: mod/events.php:531
-msgid "Failed to remove event"
-msgstr "Failed to remove event"
+#: mod/contacts.php:222 mod/dfrn_request.php:594
+msgid "Failed to update contact record."
+msgstr "Failed to update contact record."
 
-#: mod/events.php:533
-msgid "Event removed"
-msgstr "Event removed"
+#: mod/contacts.php:403
+msgid "Contact has been blocked"
+msgstr "Contact has been blocked"
 
-#: mod/follow.php:32
-msgid "You already added this contact."
-msgstr "You already added this contact."
+#: mod/contacts.php:403
+msgid "Contact has been unblocked"
+msgstr "Contact has been unblocked"
 
-#: mod/follow.php:41
-msgid "Diaspora support isn't enabled. Contact can't be added."
-msgstr "Diaspora support isn't enabled. Contact can't be added."
+#: mod/contacts.php:414
+msgid "Contact has been ignored"
+msgstr "Contact has been ignored"
 
-#: mod/follow.php:48
-msgid "OStatus support is disabled. Contact can't be added."
-msgstr "OStatus support is disabled. Contact can't be added."
+#: mod/contacts.php:414
+msgid "Contact has been unignored"
+msgstr "Contact has been unignored"
 
-#: mod/follow.php:55
-msgid "The network type couldn't be detected. Contact can't be added."
-msgstr "The network type couldn't be detected. Contact can't be added."
+#: mod/contacts.php:426
+msgid "Contact has been archived"
+msgstr "Contact has been archived"
 
-#: mod/follow.php:188
-msgid "Contact added"
-msgstr "Contact added"
+#: mod/contacts.php:426
+msgid "Contact has been unarchived"
+msgstr "Contact has been unarchived"
 
-#: mod/item.php:118
-msgid "Unable to locate original post."
-msgstr "Unable to locate original post."
+#: mod/contacts.php:451
+msgid "Drop contact"
+msgstr "Drop contact"
 
-#: mod/item.php:345
-msgid "Empty post discarded."
-msgstr "Empty post discarded."
+#: mod/contacts.php:454 mod/contacts.php:821
+msgid "Do you really want to delete this contact?"
+msgstr "Do you really want to delete this contact?"
 
-#: mod/item.php:904
-msgid "System error. Post not saved."
-msgstr "System error. Post not saved."
+#: mod/contacts.php:473
+msgid "Contact has been removed."
+msgstr "Contact has been removed."
 
-#: mod/item.php:995
+#: mod/contacts.php:510
 #, php-format
-msgid ""
-"This message was sent to you by %s, a member of the Friendica social "
-"network."
-msgstr "This message was sent to you by %s, a member of the Friendica social network."
+msgid "You are mutual friends with %s"
+msgstr "You are mutual friends with %s"
 
-#: mod/item.php:997
+#: mod/contacts.php:514
 #, php-format
-msgid "You may visit them online at %s"
-msgstr "You may visit them online at %s"
-
-#: mod/item.php:998
-msgid ""
-"Please contact the sender by replying to this post if you do not wish to "
-"receive these messages."
-msgstr "Please contact the sender by replying to this post if you do not wish to receive these messages."
+msgid "You are sharing with %s"
+msgstr "You are sharing with %s"
 
-#: mod/item.php:1002
+#: mod/contacts.php:519
 #, php-format
-msgid "%s posted an update."
-msgstr "%s posted an update."
+msgid "%s is sharing with you"
+msgstr "%s is sharing with you"
 
-#: mod/ping.php:274
-msgid "{0} wants to be your friend"
-msgstr "{0} wants to be your friend"
+#: mod/contacts.php:539
+msgid "Private communications are not available for this contact."
+msgstr "Private communications are not available for this contact."
 
-#: mod/ping.php:289
-msgid "{0} sent you a message"
-msgstr "{0} sent you a message"
+#: mod/contacts.php:546
+msgid "(Update was successful)"
+msgstr "(Update was successful)"
 
-#: mod/ping.php:304
-msgid "{0} requested registration"
-msgstr "{0} requested registration"
+#: mod/contacts.php:546
+msgid "(Update was not successful)"
+msgstr "(Update was not successful)"
 
-#: mod/profile_photo.php:44
-msgid "Image uploaded but image cropping failed."
-msgstr "Image uploaded but image cropping failed."
+#: mod/contacts.php:548 mod/contacts.php:984
+msgid "Suggest friends"
+msgstr "Suggest friends"
 
-#: mod/profile_photo.php:77 mod/profile_photo.php:85 mod/profile_photo.php:93
-#: mod/profile_photo.php:322
+#: mod/contacts.php:552
 #, php-format
-msgid "Image size reduction [%s] failed."
-msgstr "Image size reduction [%s] failed."
+msgid "Network type: %s"
+msgstr "Network type: %s"
 
-#: mod/profile_photo.php:127
-msgid ""
-"Shift-reload the page or clear browser cache if the new photo does not "
-"display immediately."
-msgstr "Shift-reload the page or clear browser cache if the new photo does not display immediately."
+#: mod/contacts.php:565
+msgid "Communications lost with this contact!"
+msgstr "Communications lost with this contact!"
 
-#: mod/profile_photo.php:136
-msgid "Unable to process image"
-msgstr "Unable to process image"
+#: mod/contacts.php:568
+msgid "Fetch further information for feeds"
+msgstr "Fetch further information for feeds"
 
-#: mod/profile_photo.php:253
-msgid "Upload File:"
-msgstr "Upload File:"
+#: mod/contacts.php:569
+msgid "Fetch information"
+msgstr "Fetch information"
 
-#: mod/profile_photo.php:254
-msgid "Select a profile:"
-msgstr "Select a profile:"
+#: mod/contacts.php:569
+msgid "Fetch information and keywords"
+msgstr "Fetch information and keywords"
 
-#: mod/profile_photo.php:256
-msgid "Upload"
-msgstr "Upload"
+#: mod/contacts.php:583 mod/unfollow.php:100
+msgid "Disconnect/Unfollow"
+msgstr "Disconnect/Unfollow"
 
-#: mod/profile_photo.php:259
-msgid "or"
-msgstr "or"
+#: mod/contacts.php:593
+msgid "Contact"
+msgstr "Contact"
 
-#: mod/profile_photo.php:259
-msgid "skip this step"
-msgstr "skip this step"
+#: mod/contacts.php:596
+msgid "Profile Visibility"
+msgstr "Profile visibility"
 
-#: mod/profile_photo.php:259
-msgid "select a photo from your photo albums"
-msgstr "select a photo from your photo albums"
+#: mod/contacts.php:597
+#, php-format
+msgid ""
+"Please choose the profile you would like to display to %s when viewing your "
+"profile securely."
+msgstr "Please choose the profile you would like to display to %s when viewing your profile securely."
 
-#: mod/profile_photo.php:273
-msgid "Crop Image"
-msgstr "Crop Image"
+#: mod/contacts.php:598
+msgid "Contact Information / Notes"
+msgstr "Personal note"
 
-#: mod/profile_photo.php:274
-msgid "Please adjust the image cropping for optimum viewing."
-msgstr "Please adjust the image cropping for optimum viewing."
+#: mod/contacts.php:599
+msgid "Their personal note"
+msgstr "Their personal note"
 
-#: mod/profile_photo.php:276
-msgid "Done Editing"
-msgstr "Done editing"
+#: mod/contacts.php:601
+msgid "Edit contact notes"
+msgstr "Edit contact notes"
 
-#: mod/profile_photo.php:312
-msgid "Image uploaded successfully."
-msgstr "Image uploaded successfully."
+#: mod/contacts.php:607
+msgid "Block/Unblock contact"
+msgstr "Block/Unblock contact"
 
-#: mod/profiles.php:42
-msgid "Profile deleted."
-msgstr "Profile deleted."
+#: mod/contacts.php:608
+msgid "Ignore contact"
+msgstr "Ignore contact"
 
-#: mod/profiles.php:58 mod/profiles.php:94
-msgid "Profile-"
-msgstr "Profile-"
+#: mod/contacts.php:609
+msgid "Repair URL settings"
+msgstr "Repair URL settings"
 
-#: mod/profiles.php:77 mod/profiles.php:122
-msgid "New profile created."
-msgstr "New profile created."
+#: mod/contacts.php:610
+msgid "View conversations"
+msgstr "View conversations"
 
-#: mod/profiles.php:100
-msgid "Profile unavailable to clone."
-msgstr "Profile unavailable to clone."
+#: mod/contacts.php:616
+msgid "Last update:"
+msgstr "Last update:"
 
-#: mod/profiles.php:196
-msgid "Profile Name is required."
-msgstr "Profile name is required."
+#: mod/contacts.php:618
+msgid "Update public posts"
+msgstr "Update public posts"
 
-#: mod/profiles.php:336
-msgid "Marital Status"
-msgstr "Marital status"
+#: mod/contacts.php:620 mod/contacts.php:994
+msgid "Update now"
+msgstr "Update now"
 
-#: mod/profiles.php:340
-msgid "Romantic Partner"
-msgstr "Romantic partner"
+#: mod/contacts.php:626 mod/contacts.php:826 mod/contacts.php:1011
+msgid "Unignore"
+msgstr "Unignore"
 
-#: mod/profiles.php:352
-msgid "Work/Employment"
-msgstr "Work/Employment:"
+#: mod/contacts.php:626 mod/contacts.php:826 mod/contacts.php:1011
+#: mod/notifications.php:63 mod/notifications.php:182
+#: mod/notifications.php:266
+msgid "Ignore"
+msgstr "Ignore"
 
-#: mod/profiles.php:355
-msgid "Religion"
-msgstr "Religion"
+#: mod/contacts.php:630
+msgid "Currently blocked"
+msgstr "Currently blocked"
 
-#: mod/profiles.php:359
-msgid "Political Views"
-msgstr "Political views"
+#: mod/contacts.php:631
+msgid "Currently ignored"
+msgstr "Currently ignored"
 
-#: mod/profiles.php:363
-msgid "Gender"
-msgstr "Gender"
+#: mod/contacts.php:632
+msgid "Currently archived"
+msgstr "Currently archived"
 
-#: mod/profiles.php:367
-msgid "Sexual Preference"
-msgstr "Sexual preference"
+#: mod/contacts.php:633 mod/notifications.php:175 mod/notifications.php:254
+msgid "Hide this contact from others"
+msgstr "Hide this contact from others"
 
-#: mod/profiles.php:371
-msgid "XMPP"
-msgstr "XMPP"
+#: mod/contacts.php:633
+msgid ""
+"Replies/likes to your public posts <strong>may</strong> still be visible"
+msgstr "Replies/Likes to your public posts <strong>may</strong> still be visible"
 
-#: mod/profiles.php:375
-msgid "Homepage"
-msgstr "Homepage"
+#: mod/contacts.php:634
+msgid "Notification for new posts"
+msgstr "Notification for new posts"
 
-#: mod/profiles.php:379 mod/profiles.php:698
-msgid "Interests"
-msgstr "Interests"
+#: mod/contacts.php:634
+msgid "Send a notification of every new post of this contact"
+msgstr "Send notification for every new post from this contact"
 
-#: mod/profiles.php:383
-msgid "Address"
-msgstr "Address"
+#: mod/contacts.php:637
+msgid "Blacklisted keywords"
+msgstr "Blacklisted keywords"
 
-#: mod/profiles.php:390 mod/profiles.php:694
-msgid "Location"
-msgstr "Location"
+#: mod/contacts.php:637
+msgid ""
+"Comma separated list of keywords that should not be converted to hashtags, "
+"when \"Fetch information and keywords\" is selected"
+msgstr "Comma separated list of keywords that should not be converted to hashtags, when \"Fetch information and keywords\" is selected"
 
-#: mod/profiles.php:475
-msgid "Profile updated."
-msgstr "Profile updated."
+#: mod/contacts.php:644 mod/follow.php:166 mod/notifications.php:258
+#: mod/unfollow.php:122
+msgid "Profile URL"
+msgstr "Profile URL:"
 
-#: mod/profiles.php:567
-msgid " and "
-msgstr " and "
+#: mod/contacts.php:655
+msgid "Actions"
+msgstr "Actions"
 
-#: mod/profiles.php:576
-msgid "public profile"
-msgstr "public profile"
+#: mod/contacts.php:658
+msgid "Contact Settings"
+msgstr "Notification and privacy "
 
-#: mod/profiles.php:579
-#, php-format
-msgid "%1$s changed %2$s to &ldquo;%3$s&rdquo;"
-msgstr "%1$s changed %2$s to &ldquo;%3$s&rdquo;"
+#: mod/contacts.php:704
+msgid "Suggestions"
+msgstr "Suggestions"
 
-#: mod/profiles.php:580
-#, php-format
-msgid " - Visit %1$s's %2$s"
-msgstr " - Visit %1$s's %2$s"
+#: mod/contacts.php:707
+msgid "Suggest potential friends"
+msgstr "Suggest potential friends"
 
-#: mod/profiles.php:582
-#, php-format
-msgid "%1$s has an updated %2$s, changing %3$s."
-msgstr "%1$s has an updated %2$s, changing %3$s."
+#: mod/contacts.php:712 mod/group.php:214
+msgid "All Contacts"
+msgstr "All contacts"
 
-#: mod/profiles.php:640
-msgid "Hide contacts and friends:"
-msgstr "Hide contacts and friends:"
+#: mod/contacts.php:715
+msgid "Show all contacts"
+msgstr "Show all contacts"
 
-#: mod/profiles.php:645
-msgid "Hide your contact/friend list from viewers of this profile?"
-msgstr "Hide your contact/friend list from viewers of this profile?"
+#: mod/contacts.php:720
+msgid "Unblocked"
+msgstr "Unblocked"
 
-#: mod/profiles.php:670
-msgid "Show more profile fields:"
-msgstr "Show more profile fields:"
+#: mod/contacts.php:723
+msgid "Only show unblocked contacts"
+msgstr "Only show unblocked contacts"
 
-#: mod/profiles.php:682
-msgid "Profile Actions"
-msgstr "Profile actions"
+#: mod/contacts.php:729
+msgid "Blocked"
+msgstr "Blocked"
 
-#: mod/profiles.php:683
-msgid "Edit Profile Details"
-msgstr "Edit Profile Details"
+#: mod/contacts.php:732
+msgid "Only show blocked contacts"
+msgstr "Only show blocked contacts"
 
-#: mod/profiles.php:685
-msgid "Change Profile Photo"
-msgstr "Change profile photo"
+#: mod/contacts.php:738
+msgid "Ignored"
+msgstr "Ignored"
 
-#: mod/profiles.php:686
-msgid "View this profile"
-msgstr "View this profile"
+#: mod/contacts.php:741
+msgid "Only show ignored contacts"
+msgstr "Only show ignored contacts"
 
-#: mod/profiles.php:688
-msgid "Create a new profile using these settings"
-msgstr "Create a new profile using these settings"
+#: mod/contacts.php:747
+msgid "Archived"
+msgstr "Archived"
 
-#: mod/profiles.php:689
-msgid "Clone this profile"
-msgstr "Clone this profile"
+#: mod/contacts.php:750
+msgid "Only show archived contacts"
+msgstr "Only show archived contacts"
 
-#: mod/profiles.php:690
-msgid "Delete this profile"
-msgstr "Delete this profile"
+#: mod/contacts.php:756
+msgid "Hidden"
+msgstr "Hidden"
 
-#: mod/profiles.php:692
-msgid "Basic information"
-msgstr "Basic information"
+#: mod/contacts.php:759
+msgid "Only show hidden contacts"
+msgstr "Only show hidden contacts"
 
-#: mod/profiles.php:693
-msgid "Profile picture"
-msgstr "Profile picture"
+#: mod/contacts.php:816
+msgid "Search your contacts"
+msgstr "Search your contacts"
 
-#: mod/profiles.php:695
-msgid "Preferences"
-msgstr "Preferences"
+#: mod/contacts.php:824 mod/settings.php:163 mod/settings.php:709
+msgid "Update"
+msgstr "Update"
 
-#: mod/profiles.php:696
-msgid "Status information"
-msgstr "Status information"
+#: mod/contacts.php:827 mod/contacts.php:1019
+msgid "Archive"
+msgstr "Archive"
 
-#: mod/profiles.php:697
-msgid "Additional information"
-msgstr "Additional information"
+#: mod/contacts.php:827 mod/contacts.php:1019
+msgid "Unarchive"
+msgstr "Unarchive"
 
-#: mod/profiles.php:700
-msgid "Relation"
-msgstr "Relation"
+#: mod/contacts.php:830
+msgid "Batch Actions"
+msgstr "Batch actions"
 
-#: mod/profiles.php:704
-msgid "Your Gender:"
-msgstr "Gender:"
+#: mod/contacts.php:876
+msgid "View all contacts"
+msgstr "View all contacts"
 
-#: mod/profiles.php:705
-msgid "<span class=\"heart\">&hearts;</span> Marital Status:"
-msgstr "<span class=\"heart\">&hearts;</span> Marital status:"
+#: mod/contacts.php:886
+msgid "View all common friends"
+msgstr "View all common friends"
 
-#: mod/profiles.php:707
-msgid "Example: fishing photography software"
-msgstr "Example: fishing photography software"
+#: mod/contacts.php:893
+msgid "Advanced Contact Settings"
+msgstr "Advanced contact settings"
 
-#: mod/profiles.php:712
-msgid "Profile Name:"
-msgstr "Profile name:"
+#: mod/contacts.php:927
+msgid "Mutual Friendship"
+msgstr "Mutual friendship"
 
-#: mod/profiles.php:714
-msgid ""
-"This is your <strong>public</strong> profile.<br />It <strong>may</strong> "
-"be visible to anybody using the internet."
-msgstr "This is your <strong>public</strong> profile.<br />It <strong>may</strong> be visible to anybody using the internet."
+#: mod/contacts.php:931
+msgid "is a fan of yours"
+msgstr "is a fan of yours"
 
-#: mod/profiles.php:715
-msgid "Your Full Name:"
-msgstr "My full name:"
+#: mod/contacts.php:935
+msgid "you are a fan of"
+msgstr "I follow them"
 
-#: mod/profiles.php:716
-msgid "Title/Description:"
-msgstr "Title/Description:"
+#: mod/contacts.php:1005
+msgid "Toggle Blocked status"
+msgstr "Toggle blocked status"
 
-#: mod/profiles.php:719
-msgid "Street Address:"
-msgstr "Street address:"
+#: mod/contacts.php:1013
+msgid "Toggle Ignored status"
+msgstr "Toggle ignored status"
 
-#: mod/profiles.php:720
-msgid "Locality/City:"
-msgstr "Locality/City:"
+#: mod/contacts.php:1021
+msgid "Toggle Archive status"
+msgstr "Toggle archive status"
 
-#: mod/profiles.php:721
-msgid "Region/State:"
-msgstr "Region/State:"
+#: mod/contacts.php:1029
+msgid "Delete contact"
+msgstr "Delete contact"
 
-#: mod/profiles.php:722
-msgid "Postal/Zip Code:"
-msgstr "Postcode:"
+#: mod/content.php:121 mod/network.php:632
+msgid "No such group"
+msgstr "No such group"
 
-#: mod/profiles.php:723
-msgid "Country:"
-msgstr "Country:"
+#: mod/content.php:132 mod/group.php:215 mod/network.php:653
+msgid "Group is empty"
+msgstr "Group is empty"
 
-#: mod/profiles.php:727
-msgid "Who: (if applicable)"
-msgstr "Who: (if applicable)"
+#: mod/content.php:137 mod/network.php:657
+#, php-format
+msgid "Group: %s"
+msgstr "Group: %s"
 
-#: mod/profiles.php:727
-msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
-msgstr "Examples: cathy123, Cathy Williams, cathy@example.com"
+#: mod/content.php:327 object/Item.php:101
+msgid "This entry was edited"
+msgstr "This entry was edited"
 
-#: mod/profiles.php:728
-msgid "Since [date]:"
-msgstr "Since when:"
+#: mod/content.php:623 object/Item.php:409
+#, php-format
+msgid "%d comment"
+msgid_plural "%d comments"
+msgstr[0] "%d comment"
+msgstr[1] "%d comments -"
 
-#: mod/profiles.php:730
-msgid "Tell us about yourself..."
-msgstr "About myself:"
+#: mod/content.php:640 mod/photos.php:1432 object/Item.php:122
+msgid "Private Message"
+msgstr "Private message"
 
-#: mod/profiles.php:731
-msgid "XMPP (Jabber) address:"
-msgstr "XMPP (Jabber) address:"
+#: mod/content.php:704 mod/photos.php:1628 object/Item.php:275
+msgid "I like this (toggle)"
+msgstr "I like this (toggle)"
 
-#: mod/profiles.php:731
-msgid ""
-"The XMPP address will be propagated to your contacts so that they can follow"
-" you."
-msgstr "The XMPP address will be propagated to your contacts so that they can follow you."
+#: mod/content.php:704 object/Item.php:275
+msgid "like"
+msgstr "Like"
 
-#: mod/profiles.php:732
-msgid "Homepage URL:"
-msgstr "Homepage URL:"
+#: mod/content.php:705 mod/photos.php:1629 object/Item.php:276
+msgid "I don't like this (toggle)"
+msgstr "I don't like this (toggle)"
 
-#: mod/profiles.php:735
-msgid "Religious Views:"
-msgstr "Religious views:"
+#: mod/content.php:705 object/Item.php:276
+msgid "dislike"
+msgstr "Dislike"
 
-#: mod/profiles.php:736
-msgid "Public Keywords:"
-msgstr "Public keywords:"
+#: mod/content.php:707 object/Item.php:279
+msgid "Share this"
+msgstr "Share this"
 
-#: mod/profiles.php:736
-msgid "(Used for suggesting potential friends, can be seen by others)"
-msgstr "Used for suggesting potential friends, can be seen by others."
+#: mod/content.php:707 object/Item.php:279
+msgid "share"
+msgstr "Share"
 
-#: mod/profiles.php:737
-msgid "Private Keywords:"
-msgstr "Private keywords:"
+#: mod/content.php:727 mod/photos.php:1646 mod/photos.php:1688
+#: mod/photos.php:1768 object/Item.php:694
+msgid "This is you"
+msgstr "This is me"
 
-#: mod/profiles.php:737
-msgid "(Used for searching profiles, never shown to others)"
-msgstr "Used for searching profiles, never shown to others."
+#: mod/content.php:729 mod/content.php:952 mod/photos.php:1648
+#: mod/photos.php:1690 mod/photos.php:1770 object/Item.php:381
+#: object/Item.php:696
+msgid "Comment"
+msgstr "Comment"
 
-#: mod/profiles.php:740
-msgid "Musical interests"
-msgstr "Music:"
+#: mod/content.php:731 object/Item.php:698
+msgid "Bold"
+msgstr "Bold"
 
-#: mod/profiles.php:741
-msgid "Books, literature"
-msgstr "Books, literature, poetry:"
+#: mod/content.php:732 object/Item.php:699
+msgid "Italic"
+msgstr "Italic"
 
-#: mod/profiles.php:742
-msgid "Television"
-msgstr "Television:"
+#: mod/content.php:733 object/Item.php:700
+msgid "Underline"
+msgstr "Underline"
 
-#: mod/profiles.php:743
-msgid "Film/dance/culture/entertainment"
-msgstr "Film, dance, culture, entertainment"
+#: mod/content.php:734 object/Item.php:701
+msgid "Quote"
+msgstr "Quote"
 
-#: mod/profiles.php:744
-msgid "Hobbies/Interests"
-msgstr "Hobbies/Interests:"
-
-#: mod/profiles.php:745
-msgid "Love/romance"
-msgstr "Love/Romance:"
-
-#: mod/profiles.php:746
-msgid "Work/employment"
-msgstr "Work/Employment:"
-
-#: mod/profiles.php:747
-msgid "School/education"
-msgstr "School/Education:"
+#: mod/content.php:735 object/Item.php:702
+msgid "Code"
+msgstr "Code"
 
-#: mod/profiles.php:748
-msgid "Contact information and Social Networks"
-msgstr "Contact information and other social networks:"
+#: mod/content.php:736 object/Item.php:703
+msgid "Image"
+msgstr "Image"
 
-#: mod/profiles.php:789
-msgid "Edit/Manage Profiles"
-msgstr "Edit/Manage Profiles"
+#: mod/content.php:737 object/Item.php:704
+msgid "Link"
+msgstr "Link"
 
-#: mod/register.php:96
-msgid ""
-"Registration successful. Please check your email for further instructions."
-msgstr "Registration successful. Please check your email for further instructions."
+#: mod/content.php:738 object/Item.php:705
+msgid "Video"
+msgstr "Video"
 
-#: mod/register.php:101
-#, php-format
-msgid ""
-"Failed to send email message. Here your accout details:<br> login: %s<br> "
-"password: %s<br><br>You can change your password after login."
-msgstr "Failed to send email message. Here your account details:<br> login: %s<br> password: %s<br><br>You can change your password after login."
+#: mod/content.php:748 mod/settings.php:745 object/Item.php:127
+#: object/Item.php:129
+msgid "Edit"
+msgstr "Edit"
 
-#: mod/register.php:108
-msgid "Registration successful."
-msgstr "Registration successful."
+#: mod/content.php:774 object/Item.php:242
+msgid "add star"
+msgstr "Add star"
 
-#: mod/register.php:114
-msgid "Your registration can not be processed."
-msgstr "Your registration cannot be processed."
+#: mod/content.php:775 object/Item.php:243
+msgid "remove star"
+msgstr "Remove star"
 
-#: mod/register.php:163
-msgid "Your registration is pending approval by the site owner."
-msgstr "Your registration is pending approval by the site administrator."
+#: mod/content.php:776 object/Item.php:244
+msgid "toggle star status"
+msgstr "Toggle star status"
 
-#: mod/register.php:229
-msgid ""
-"You may (optionally) fill in this form via OpenID by supplying your OpenID "
-"and clicking 'Register'."
-msgstr "You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Sign up now'."
+#: mod/content.php:779 object/Item.php:247
+msgid "starred"
+msgstr "Starred"
 
-#: mod/register.php:230
-msgid ""
-"If you are not familiar with OpenID, please leave that field blank and fill "
-"in the rest of the items."
-msgstr "If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."
+#: mod/content.php:780 mod/content.php:802 object/Item.php:264
+msgid "add tag"
+msgstr "Add tag"
 
-#: mod/register.php:231
-msgid "Your OpenID (optional): "
-msgstr "Your OpenID (optional): "
+#: mod/content.php:791 object/Item.php:252
+msgid "ignore thread"
+msgstr "Ignore thread"
 
-#: mod/register.php:245
-msgid "Include your profile in member directory?"
-msgstr "Include your profile in member directory?"
+#: mod/content.php:792 object/Item.php:253
+msgid "unignore thread"
+msgstr "Unignore thread"
 
-#: mod/register.php:270
-msgid "Note for the admin"
-msgstr "Note for the admin"
+#: mod/content.php:793 object/Item.php:254
+msgid "toggle ignore status"
+msgstr "Toggle ignore status"
 
-#: mod/register.php:270
-msgid "Leave a message for the admin, why you want to join this node"
-msgstr "Leave a message for the admin, why you want to join this node."
+#: mod/content.php:796 mod/ostatus_subscribe.php:76 object/Item.php:257
+msgid "ignored"
+msgstr "Ignored"
 
-#: mod/register.php:271
-msgid "Membership on this site is by invitation only."
-msgstr "Membership on this site is by invitation only."
+#: mod/content.php:807 object/Item.php:146
+msgid "save to folder"
+msgstr "Save to folder"
 
-#: mod/register.php:272
-msgid "Your invitation ID: "
-msgstr "Your invitation ID: "
+#: mod/content.php:855 object/Item.php:216
+msgid "I will attend"
+msgstr "I will attend"
 
-#: mod/register.php:275 mod/admin.php:1146
-msgid "Registration"
-msgstr "Join this Friendica Node Today"
+#: mod/content.php:855 object/Item.php:216
+msgid "I will not attend"
+msgstr "I will not attend"
 
-#: mod/register.php:283
-msgid "Your Full Name (e.g. Joe Smith, real or real-looking): "
-msgstr "Your full name: "
+#: mod/content.php:855 object/Item.php:216
+msgid "I might attend"
+msgstr "I might attend"
 
-#: mod/register.php:284
-msgid "Your Email Address: "
-msgstr "Your email address: "
+#: mod/content.php:919 object/Item.php:347
+msgid "to"
+msgstr "to"
 
-#: mod/register.php:286 mod/settings.php:1279
-msgid "New Password:"
-msgstr "New password:"
+#: mod/content.php:920 object/Item.php:349
+msgid "Wall-to-Wall"
+msgstr "Wall-to-wall"
 
-#: mod/register.php:286
-msgid "Leave empty for an auto generated password."
-msgstr "Leave empty for an auto generated password."
+#: mod/content.php:921 object/Item.php:350
+msgid "via Wall-To-Wall:"
+msgstr "via wall-to-wall:"
 
-#: mod/register.php:287 mod/settings.php:1280
-msgid "Confirm:"
-msgstr "Confirm new password:"
+#: mod/delegate.php:104
+msgid "No potential page delegates located."
+msgstr "No potential page delegates found."
 
-#: mod/register.php:288
+#: mod/delegate.php:135
 msgid ""
-"Choose a profile nickname. This must begin with a text character. Your "
-"profile address on this site will then be "
-"'<strong>nickname@$sitename</strong>'."
-msgstr "Choose a profile nickname. Your nickname will be part of your identity address; for example:  '<strong>nickname@$sitename</strong>'."
+"Delegates are able to manage all aspects of this account/page except for "
+"basic account settings. Please do not delegate your personal account to "
+"anybody that you do not trust completely."
+msgstr "Delegates are able to manage all aspects of this account except for key setting features. Please do not delegate your personal account to anybody that you do not trust completely."
 
-#: mod/register.php:289
-msgid "Choose a nickname: "
-msgstr "Choose a nickname: "
+#: mod/delegate.php:136
+msgid "Existing Page Managers"
+msgstr "Existing page managers"
 
-#: mod/register.php:299
-msgid "Import your profile to this friendica instance"
-msgstr "Import an existing Friendica profile to this node."
+#: mod/delegate.php:138
+msgid "Existing Page Delegates"
+msgstr "Existing page delegates"
 
-#: mod/search.php:28 mod/network.php:200
-msgid "Remove term"
-msgstr "Remove term"
+#: mod/delegate.php:140
+msgid "Potential Delegates"
+msgstr "Potential delegates"
 
-#: mod/search.php:103
-msgid "Only logged in users are permitted to perform a search."
-msgstr "Only logged in users are permitted to perform a search."
+#: mod/delegate.php:142 mod/tagrm.php:98
+msgid "Remove"
+msgstr "Remove"
 
-#: mod/search.php:127
-msgid "Too Many Requests"
-msgstr "Too many requests"
+#: mod/delegate.php:143
+msgid "Add"
+msgstr "Add"
 
-#: mod/search.php:128
-msgid "Only one search per minute is permitted for not logged in users."
-msgstr "Only one search per minute is permitted for not logged in users."
+#: mod/delegate.php:144
+msgid "No entries."
+msgstr "No entries."
 
-#: mod/search.php:222 mod/community.php:50
-msgid "No results."
-msgstr "No results."
+#: mod/dfrn_confirm.php:73 mod/profiles.php:24 mod/profiles.php:140
+#: mod/profiles.php:187 mod/profiles.php:623
+msgid "Profile not found."
+msgstr "Profile not found."
 
-#: mod/search.php:228
-#, php-format
-msgid "Items tagged with: %s"
-msgstr "Items tagged with: %s"
+#: mod/dfrn_confirm.php:130
+msgid ""
+"This may occasionally happen if contact was requested by both persons and it"
+" has already been approved."
+msgstr "This may occasionally happen if contact was requested by both persons and it has already been approved."
 
-#: mod/search.php:230 mod/contacts.php:810 mod/network.php:154
-#, php-format
-msgid "Results for: %s"
-msgstr "Results for: %s"
+#: mod/dfrn_confirm.php:247
+msgid "Response from remote site was not understood."
+msgstr "Response from remote site was not understood."
 
-#: mod/admin.php:98
-msgid "Theme settings updated."
-msgstr "Theme settings updated."
+#: mod/dfrn_confirm.php:256 mod/dfrn_confirm.php:261
+msgid "Unexpected response from remote site: "
+msgstr "Unexpected response from remote site: "
 
-#: mod/admin.php:170 mod/admin.php:1144
-msgid "Site"
-msgstr "Site"
+#: mod/dfrn_confirm.php:270
+msgid "Confirmation completed successfully."
+msgstr "Confirmation completed successfully."
 
-#: mod/admin.php:171 mod/admin.php:1078 mod/admin.php:1588 mod/admin.php:1604
-msgid "Users"
-msgstr "Users"
+#: mod/dfrn_confirm.php:272 mod/dfrn_confirm.php:286 mod/dfrn_confirm.php:293
+msgid "Remote site reported: "
+msgstr "Remote site reported: "
 
-#: mod/admin.php:172 mod/admin.php:1706 mod/admin.php:1769 mod/settings.php:76
-msgid "Plugins"
-msgstr "Plugins"
+#: mod/dfrn_confirm.php:284
+msgid "Temporary failure. Please wait and try again."
+msgstr "Temporary failure. Please wait and try again."
 
-#: mod/admin.php:173 mod/admin.php:1982 mod/admin.php:2032
-msgid "Themes"
-msgstr "Theme selection"
+#: mod/dfrn_confirm.php:291
+msgid "Introduction failed or was revoked."
+msgstr "Introduction failed or was revoked."
 
-#: mod/admin.php:174 mod/settings.php:54
-msgid "Additional features"
-msgstr "Additional features"
+#: mod/dfrn_confirm.php:420
+msgid "Unable to set contact photo."
+msgstr "Unable to set contact photo."
 
-#: mod/admin.php:175
-msgid "DB updates"
-msgstr "DB updates"
+#: mod/dfrn_confirm.php:561
+#, php-format
+msgid "No user record found for '%s' "
+msgstr "No user record found for '%s' "
 
-#: mod/admin.php:176 mod/admin.php:582
-msgid "Inspect Queue"
-msgstr "Inspect queue"
+#: mod/dfrn_confirm.php:571
+msgid "Our site encryption key is apparently messed up."
+msgstr "Our site encryption key is apparently messed up."
 
-#: mod/admin.php:177 mod/admin.php:297
-msgid "Server Blocklist"
-msgstr "Server blocklist"
+#: mod/dfrn_confirm.php:582
+msgid "Empty site URL was provided or URL could not be decrypted by us."
+msgstr "An empty URL was provided or the URL could not be decrypted by us."
 
-#: mod/admin.php:178 mod/admin.php:548
-msgid "Federation Statistics"
-msgstr "Federation statistics"
+#: mod/dfrn_confirm.php:604
+msgid "Contact record was not found for you on our site."
+msgstr "Contact record was not found for you on our site."
 
-#: mod/admin.php:179 mod/admin.php:374
-msgid "Delete Item"
-msgstr "Delete item"
+#: mod/dfrn_confirm.php:618
+#, php-format
+msgid "Site public key not available in contact record for URL %s."
+msgstr "Site public key not available in contact record for URL %s."
 
-#: mod/admin.php:193 mod/admin.php:204 mod/admin.php:2106
-msgid "Logs"
-msgstr "Logs"
+#: mod/dfrn_confirm.php:638
+msgid ""
+"The ID provided by your system is a duplicate on our system. It should work "
+"if you try again."
+msgstr "The ID provided by your system is a duplicate on our system. It should work if you try again."
 
-#: mod/admin.php:194 mod/admin.php:2174
-msgid "View Logs"
-msgstr "View logs"
+#: mod/dfrn_confirm.php:649
+msgid "Unable to set your contact credentials on our system."
+msgstr "Unable to set your contact credentials on our system."
 
-#: mod/admin.php:195
-msgid "probe address"
-msgstr "Probe address"
+#: mod/dfrn_confirm.php:711
+msgid "Unable to update your contact profile details on our system"
+msgstr "Unable to update your contact profile details on our system"
 
-#: mod/admin.php:196
-msgid "check webfinger"
-msgstr "Check webfinger"
+#: mod/dfrn_confirm.php:783
+#, php-format
+msgid "%1$s has joined %2$s"
+msgstr "%1$s has joined %2$s"
 
-#: mod/admin.php:203
-msgid "Plugin Features"
-msgstr "Plugin Features"
+#: mod/dfrn_poll.php:114 mod/dfrn_poll.php:550
+#, php-format
+msgid "%1$s welcomes %2$s"
+msgstr "%1$s welcomes %2$s"
 
-#: mod/admin.php:205
-msgid "diagnostics"
-msgstr "Diagnostics"
+#: mod/dfrn_request.php:104
+msgid "This introduction has already been accepted."
+msgstr "This introduction has already been accepted."
 
-#: mod/admin.php:206
-msgid "User registrations waiting for confirmation"
-msgstr "User registrations awaiting confirmation"
-
-#: mod/admin.php:288
-msgid "The blocked domain"
-msgstr "Blocked domain"
-
-#: mod/admin.php:289 mod/admin.php:302
-msgid "The reason why you blocked this domain."
-msgstr "Reason why you blocked this domain."
-
-#: mod/admin.php:290
-msgid "Delete domain"
-msgstr "Delete domain"
+#: mod/dfrn_request.php:127 mod/dfrn_request.php:529
+msgid "Profile location is not valid or does not contain profile information."
+msgstr "Profile location is not valid or does not contain profile information."
 
-#: mod/admin.php:290
-msgid "Check to delete this entry from the blocklist"
-msgstr "Check to delete this entry from the blocklist"
+#: mod/dfrn_request.php:132 mod/dfrn_request.php:534
+msgid "Warning: profile location has no identifiable owner name."
+msgstr "Warning: profile location has no identifiable owner name."
 
-#: mod/admin.php:296 mod/admin.php:373 mod/admin.php:547 mod/admin.php:581
-#: mod/admin.php:661 mod/admin.php:1143 mod/admin.php:1587 mod/admin.php:1705
-#: mod/admin.php:1768 mod/admin.php:1981 mod/admin.php:2031 mod/admin.php:2105
-#: mod/admin.php:2173
-msgid "Administration"
-msgstr "Administration"
+#: mod/dfrn_request.php:135 mod/dfrn_request.php:537
+msgid "Warning: profile location has no profile photo."
+msgstr "Warning: profile location has no profile photo."
 
-#: mod/admin.php:298
-msgid ""
-"This page can be used to define a black list of servers from the federated "
-"network that are not allowed to interact with your node. For all entered "
-"domains you should also give a reason why you have blocked the remote "
-"server."
-msgstr "This page can be used to define a black list of servers from the federated network that are not allowed to interact with your node. For all entered domains you should also give a reason why you have blocked the remote server."
+#: mod/dfrn_request.php:139 mod/dfrn_request.php:541
+#, php-format
+msgid "%d required parameter was not found at the given location"
+msgid_plural "%d required parameters were not found at the given location"
+msgstr[0] "%d required parameter was not found at the given location"
+msgstr[1] "%d required parameters were not found at the given location"
 
-#: mod/admin.php:299
-msgid ""
-"The list of blocked servers will be made publically available on the "
-"/friendica page so that your users and people investigating communication "
-"problems can find the reason easily."
-msgstr "The list of blocked servers will publicly available on the Friendica page so that your users and people investigating communication problems can readily find the reason."
+#: mod/dfrn_request.php:183
+msgid "Introduction complete."
+msgstr "Introduction complete."
 
-#: mod/admin.php:300
-msgid "Add new entry to block list"
-msgstr "Add new entry to block list"
+#: mod/dfrn_request.php:228
+msgid "Unrecoverable protocol error."
+msgstr "Unrecoverable protocol error."
 
-#: mod/admin.php:301
-msgid "Server Domain"
-msgstr "Server domain"
+#: mod/dfrn_request.php:256
+msgid "Profile unavailable."
+msgstr "Profile unavailable."
 
-#: mod/admin.php:301
-msgid ""
-"The domain of the new server to add to the block list. Do not include the "
-"protocol."
-msgstr "The domain of the new server to add to the block list. Do not include the protocol."
+#: mod/dfrn_request.php:283
+#, php-format
+msgid "%s has received too many connection requests today."
+msgstr "%s has received too many connection requests today."
 
-#: mod/admin.php:302
-msgid "Block reason"
-msgstr "Block reason"
+#: mod/dfrn_request.php:284
+msgid "Spam protection measures have been invoked."
+msgstr "Spam protection measures have been invoked."
 
-#: mod/admin.php:303
-msgid "Add Entry"
-msgstr "Add entry"
+#: mod/dfrn_request.php:285
+msgid "Friends are advised to please try again in 24 hours."
+msgstr "Friends are advised to please try again in 24 hours."
 
-#: mod/admin.php:304
-msgid "Save changes to the blocklist"
-msgstr "Save changes to the blocklist"
+#: mod/dfrn_request.php:347
+msgid "Invalid locator"
+msgstr "Invalid locator"
 
-#: mod/admin.php:305
-msgid "Current Entries in the Blocklist"
-msgstr "Current entries in the blocklist"
+#: mod/dfrn_request.php:356
+msgid "Invalid email address."
+msgstr "Invalid email address."
 
-#: mod/admin.php:308
-msgid "Delete entry from blocklist"
-msgstr "Delete entry from blocklist"
+#: mod/dfrn_request.php:381
+msgid "This account has not been configured for email. Request failed."
+msgstr "This account has not been configured for email. Request failed."
 
-#: mod/admin.php:311
-msgid "Delete entry from blocklist?"
-msgstr "Delete entry from blocklist?"
+#: mod/dfrn_request.php:484
+msgid "You have already introduced yourself here."
+msgstr "You have already introduced yourself here."
 
-#: mod/admin.php:336
-msgid "Server added to blocklist."
-msgstr "Server added to blocklist."
+#: mod/dfrn_request.php:488
+#, php-format
+msgid "Apparently you are already friends with %s."
+msgstr "Apparently you are already friends with %s."
 
-#: mod/admin.php:352
-msgid "Site blocklist updated."
-msgstr "Site blocklist updated."
+#: mod/dfrn_request.php:509
+msgid "Invalid profile URL."
+msgstr "Invalid profile URL."
 
-#: mod/admin.php:375
-msgid "Delete this Item"
-msgstr "Delete"
+#: mod/dfrn_request.php:615
+msgid "Your introduction has been sent."
+msgstr "Your introduction has been sent."
 
-#: mod/admin.php:376
+#: mod/dfrn_request.php:657
 msgid ""
-"On this page you can delete an item from your node. If the item is a top "
-"level posting, the entire thread will be deleted."
-msgstr "Here you can delete an item from this node. If the item is a top-level posting, the entire thread will be deleted."
+"Remote subscription can't be done for your network. Please subscribe "
+"directly on your system."
+msgstr "Remote subscription can't be done for your network. Please subscribe directly on your system."
 
-#: mod/admin.php:377
-msgid ""
-"You need to know the GUID of the item. You can find it e.g. by looking at "
-"the display URL. The last part of http://example.com/display/123456 is the "
-"GUID, here 123456."
-msgstr "You need to know the global unique identifier (GUID) of the item, which you can find by looking at the display URL. The last part of http://example.com/display/123456 is the GUID: i.e. 123456."
+#: mod/dfrn_request.php:678
+msgid "Please login to confirm introduction."
+msgstr "Please login to confirm introduction."
 
-#: mod/admin.php:378
-msgid "GUID"
-msgstr "GUID"
+#: mod/dfrn_request.php:688
+msgid ""
+"Incorrect identity currently logged in. Please login to "
+"<strong>this</strong> profile."
+msgstr "Incorrect identity currently logged in. Please login to <strong>this</strong> profile."
 
-#: mod/admin.php:378
-msgid "The GUID of the item you want to delete."
-msgstr "GUID of item to be deleted."
+#: mod/dfrn_request.php:702 mod/dfrn_request.php:719
+msgid "Confirm"
+msgstr "Confirm"
 
-#: mod/admin.php:415
-msgid "Item marked for deletion."
-msgstr "Item marked for deletion."
+#: mod/dfrn_request.php:714
+msgid "Hide this contact"
+msgstr "Hide this contact"
 
-#: mod/admin.php:478
-msgid "unknown"
-msgstr "unknown"
+#: mod/dfrn_request.php:717
+#, php-format
+msgid "Welcome home %s."
+msgstr "Welcome home %s."
 
-#: mod/admin.php:541
-msgid ""
-"This page offers you some numbers to the known part of the federated social "
-"network your Friendica node is part of. These numbers are not complete but "
-"only reflect the part of the network your node is aware of."
-msgstr "This page offers you the amount of known part of the federated social network your Friendica node is part of. These numbers are not complete and only reflect the part of the network your node is aware of."
+#: mod/dfrn_request.php:718
+#, php-format
+msgid "Please confirm your introduction/connection request to %s."
+msgstr "Please confirm your introduction/connection request to %s."
 
-#: mod/admin.php:542
+#: mod/dfrn_request.php:849
 msgid ""
-"The <em>Auto Discovered Contact Directory</em> feature is not enabled, it "
-"will improve the data displayed here."
-msgstr "The <em>Auto Discovered Contact Directory</em> feature is not enabled; enabling it will improve the data displayed here."
+"Please enter your 'Identity Address' from one of the following supported "
+"communications networks:"
+msgstr "Please enter your 'Identity address' from one of the following supported communications networks:"
 
-#: mod/admin.php:554
+#: mod/dfrn_request.php:873
 #, php-format
-msgid "Currently this node is aware of %d nodes from the following platforms:"
-msgstr "Currently this node is aware of %d nodes from the following platforms:"
+msgid ""
+"If you are not yet a member of the free social web, <a "
+"href=\"%s/siteinfo\">follow this link to find a public Friendica site and "
+"join us today</a>."
+msgstr "If you are not yet a member of the free social web, <a href=\"%s/siteinfo\">follow this link to find a public Friendica site and join us today</a>."
 
-#: mod/admin.php:584
-msgid "ID"
-msgstr "ID"
+#: mod/dfrn_request.php:878
+msgid "Friend/Connection Request"
+msgstr "Friend/Connection request"
 
-#: mod/admin.php:585
-msgid "Recipient Name"
-msgstr "Recipient name"
+#: mod/dfrn_request.php:879
+msgid ""
+"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, "
+"testuser@identi.ca"
+msgstr "Examples: jojo@friendica.example.com, http://friendica.example.com/profile/jojo, sam@identi.ca"
 
-#: mod/admin.php:586
-msgid "Recipient Profile"
-msgstr "Recipient profile"
+#: mod/dfrn_request.php:880 mod/follow.php:149
+msgid "Please answer the following:"
+msgstr "Please answer the following:"
 
-#: mod/admin.php:588
-msgid "Created"
-msgstr "Created"
+#: mod/dfrn_request.php:881 mod/follow.php:150
+#, php-format
+msgid "Does %s know you?"
+msgstr "Does %s know you?"
 
-#: mod/admin.php:589
-msgid "Last Tried"
-msgstr "Last Tried"
+#: mod/dfrn_request.php:885 mod/follow.php:151
+msgid "Add a personal note:"
+msgstr "Add a personal note:"
 
-#: mod/admin.php:590
-msgid ""
-"This page lists the content of the queue for outgoing postings. These are "
-"postings the initial delivery failed for. They will be resend later and "
-"eventually deleted if the delivery fails permanently."
-msgstr "This page lists the content of the queue for outgoing postings. These are postings the initial delivery failed for. They will be resend later and eventually deleted if the delivery fails permanently."
+#: mod/dfrn_request.php:888
+msgid "StatusNet/Federated Social Web"
+msgstr "StatusNet/Federated social web"
 
-#: mod/admin.php:615
+#: mod/dfrn_request.php:890
 #, php-format
 msgid ""
-"Your DB still runs with MyISAM tables. You should change the engine type to "
-"InnoDB. As Friendica will use InnoDB only features in the future, you should"
-" change this! See <a href=\"%s\">here</a> for a guide that may be helpful "
-"converting the table engines. You may also use the command <tt>php "
-"include/dbstructure.php toinnodb</tt> of your Friendica installation for an "
-"automatic conversion.<br />"
-msgstr "Your DB still runs with MyISAM tables. You should change the engine type to InnoDB. As Friendica will use InnoDB only features in the future, you should change this! See <a href=\"%s\">here</a> for a guide that may be helpful converting the table engines. You may also use the command <tt>php include/dbstructure.php toinnodb</tt> of your Friendica installation for an automatic conversion.<br />"
+" - please do not use this form.  Instead, enter %s into your Diaspora search"
+" bar."
+msgstr " - please do not use this form.  Instead, enter %s into your Diaspora search bar."
 
-#: mod/admin.php:624
-msgid ""
-"The database update failed. Please run \"php include/dbstructure.php "
-"update\" from the command line and have a look at the errors that might "
-"appear."
-msgstr "The database update failed. Please run 'php include/dbstructure.php update' from the command line and have a look at the errors that might appear."
+#: mod/dfrn_request.php:891 mod/follow.php:157 mod/unfollow.php:113
+msgid "Your Identity Address:"
+msgstr "My identity address:"
 
-#: mod/admin.php:629 mod/admin.php:1537
-msgid "Normal Account"
-msgstr "Standard account"
+#: mod/dfrn_request.php:894 mod/follow.php:63 mod/unfollow.php:65
+msgid "Submit Request"
+msgstr "Submit request"
 
-#: mod/admin.php:630 mod/admin.php:1538
-msgid "Automatic Follower Account"
-msgstr "Automatic follower account"
+#: mod/directory.php:195 view/theme/vier/theme.php:194
+msgid "Global Directory"
+msgstr "Global Directory"
 
-#: mod/admin.php:631 mod/admin.php:1539
-msgid "Public Forum Account"
-msgstr "Public forum account"
+#: mod/directory.php:197
+msgid "Find on this site"
+msgstr "Find on this site"
 
-#: mod/admin.php:632 mod/admin.php:1540
-msgid "Automatic Friend Account"
-msgstr "Automatic friend account"
+#: mod/directory.php:199
+msgid "Results for:"
+msgstr "Results for:"
 
-#: mod/admin.php:633
-msgid "Blog Account"
-msgstr "Blog account"
+#: mod/directory.php:201
+msgid "Site Directory"
+msgstr "Site directory"
 
-#: mod/admin.php:634
-msgid "Private Forum Account"
-msgstr "Private forum account"
+#: mod/directory.php:208
+msgid "No entries (some entries may be hidden)."
+msgstr "No entries (entries may be hidden)."
 
-#: mod/admin.php:656
-msgid "Message queues"
-msgstr "Message queues"
+#: mod/dirfind.php:40
+#, php-format
+msgid "People Search - %s"
+msgstr "People search - %s"
 
-#: mod/admin.php:662
-msgid "Summary"
-msgstr "Summary"
+#: mod/dirfind.php:51
+#, php-format
+msgid "Forum Search - %s"
+msgstr "Forum search - %s"
 
-#: mod/admin.php:664
-msgid "Registered users"
-msgstr "Registered users"
+#: mod/dirfind.php:248 mod/match.php:113
+msgid "No matches"
+msgstr "No matches"
 
-#: mod/admin.php:666
-msgid "Pending registrations"
-msgstr "Pending registrations"
-
-#: mod/admin.php:667
-msgid "Version"
-msgstr "Version"
+#: mod/display.php:491
+msgid "Item has been removed."
+msgstr "Item has been removed."
 
-#: mod/admin.php:672
-msgid "Active plugins"
-msgstr "Active plugins"
+#: mod/editpost.php:20 mod/editpost.php:30
+msgid "Item not found"
+msgstr "Item not found"
 
-#: mod/admin.php:697
-msgid "Can not parse base url. Must have at least <scheme>://<domain>"
-msgstr "Can not parse base URL. Must have at least <scheme>://<domain>"
+#: mod/editpost.php:35
+msgid "Edit post"
+msgstr "Edit post"
 
-#: mod/admin.php:1004
-msgid "Site settings updated."
-msgstr "Site settings updated."
+#: mod/events.php:97 mod/events.php:99
+msgid "Event can not end before it has started."
+msgstr "Event cannot end before it has started."
 
-#: mod/admin.php:1032 mod/settings.php:944
-msgid "No special theme for mobile devices"
-msgstr "No special theme for mobile devices"
+#: mod/events.php:106 mod/events.php:108
+msgid "Event title and start time are required."
+msgstr "Event title and starting time are required."
 
-#: mod/admin.php:1061
-msgid "No community page"
-msgstr "No community page"
+#: mod/events.php:380
+msgid "Create New Event"
+msgstr "Create new event"
 
-#: mod/admin.php:1062
-msgid "Public postings from users of this site"
-msgstr "Public postings from users of this site"
+#: mod/events.php:485
+msgid "Event details"
+msgstr "Event details"
 
-#: mod/admin.php:1063
-msgid "Global community page"
-msgstr "Global community page"
+#: mod/events.php:486
+msgid "Starting date and Title are required."
+msgstr "Starting date and title are required."
 
-#: mod/admin.php:1068 mod/contacts.php:541
-msgid "Never"
-msgstr "Never"
+#: mod/events.php:487 mod/events.php:488
+msgid "Event Starts:"
+msgstr "Event starts:"
 
-#: mod/admin.php:1069
-msgid "At post arrival"
-msgstr "At post arrival"
+#: mod/events.php:487 mod/events.php:499 mod/profiles.php:713
+msgid "Required"
+msgstr "Required"
 
-#: mod/admin.php:1077 mod/contacts.php:568
-msgid "Disabled"
-msgstr "Disabled"
+#: mod/events.php:489 mod/events.php:505
+msgid "Finish date/time is not known or not relevant"
+msgstr "Finish date/time is not known or not relevant"
 
-#: mod/admin.php:1079
-msgid "Users, Global Contacts"
-msgstr "Users, Global Contacts"
+#: mod/events.php:491 mod/events.php:492
+msgid "Event Finishes:"
+msgstr "Event finishes:"
 
-#: mod/admin.php:1080
-msgid "Users, Global Contacts/fallback"
-msgstr "Users, Global Contacts/fallback"
+#: mod/events.php:493 mod/events.php:506
+msgid "Adjust for viewer timezone"
+msgstr "Adjust for viewer's time zone"
 
-#: mod/admin.php:1084
-msgid "One month"
-msgstr "One month"
+#: mod/events.php:495
+msgid "Description:"
+msgstr "Description:"
 
-#: mod/admin.php:1085
-msgid "Three months"
-msgstr "Three months"
+#: mod/events.php:499 mod/events.php:501
+msgid "Title:"
+msgstr "Title:"
 
-#: mod/admin.php:1086
-msgid "Half a year"
-msgstr "Half a year"
+#: mod/events.php:502 mod/events.php:503
+msgid "Share this event"
+msgstr "Share this event"
 
-#: mod/admin.php:1087
-msgid "One year"
-msgstr "One a year"
+#: mod/events.php:532
+msgid "Failed to remove event"
+msgstr "Failed to remove event"
 
-#: mod/admin.php:1092
-msgid "Multi user instance"
-msgstr "Multi user instance"
+#: mod/events.php:534
+msgid "Event removed"
+msgstr "Event removed"
 
-#: mod/admin.php:1115
-msgid "Closed"
-msgstr "Closed"
+#: mod/fbrowser.php:135
+msgid "Files"
+msgstr "Files"
 
-#: mod/admin.php:1116
-msgid "Requires approval"
-msgstr "Requires approval"
+#: mod/fetch.php:16 mod/fetch.php:43 mod/fetch.php:52 mod/help.php:57
+#: mod/p.php:20 mod/p.php:47 mod/p.php:56 index.php:302
+msgid "Not Found"
+msgstr "Not found"
 
-#: mod/admin.php:1117
-msgid "Open"
-msgstr "Open"
+#: mod/follow.php:42
+msgid "Contact added"
+msgstr "Contact added"
 
-#: mod/admin.php:1121
-msgid "No SSL policy, links will track page SSL state"
-msgstr "No SSL policy, links will track page SSL state"
+#: mod/follow.php:74
+msgid "You already added this contact."
+msgstr "You already added this contact."
 
-#: mod/admin.php:1122
-msgid "Force all links to use SSL"
-msgstr "Force all links to use SSL"
+#: mod/follow.php:83
+msgid "Diaspora support isn't enabled. Contact can't be added."
+msgstr "Diaspora support isn't enabled. Contact can't be added."
 
-#: mod/admin.php:1123
-msgid "Self-signed certificate, use SSL for local links only (discouraged)"
-msgstr "Self-signed certificate, use SSL for local links only (discouraged)"
+#: mod/follow.php:90
+msgid "OStatus support is disabled. Contact can't be added."
+msgstr "OStatus support is disabled. Contact can't be added."
 
-#: mod/admin.php:1145 mod/admin.php:1770 mod/admin.php:2033 mod/admin.php:2107
-#: mod/admin.php:2260 mod/settings.php:682 mod/settings.php:793
-#: mod/settings.php:842 mod/settings.php:909 mod/settings.php:1006
-#: mod/settings.php:1272
-msgid "Save Settings"
-msgstr "Save settings"
+#: mod/follow.php:97
+msgid "The network type couldn't be detected. Contact can't be added."
+msgstr "The network type couldn't be detected. Contact can't be added."
 
-#: mod/admin.php:1147
-msgid "File upload"
-msgstr "File upload"
+#: mod/friendica.php:70
+msgid "This is Friendica, version"
+msgstr "This is Friendica, version"
 
-#: mod/admin.php:1148
-msgid "Policies"
-msgstr "Policies"
+#: mod/friendica.php:71
+msgid "running at web location"
+msgstr "running at web location"
 
-#: mod/admin.php:1150
-msgid "Auto Discovered Contact Directory"
-msgstr "Auto-discovered contact directory"
+#: mod/friendica.php:75
+msgid ""
+"Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn "
+"more about the Friendica project."
+msgstr "Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn more about the Friendica project."
 
-#: mod/admin.php:1151
-msgid "Performance"
-msgstr "Performance"
+#: mod/friendica.php:79
+msgid "Bug reports and issues: please visit"
+msgstr "Bug reports and issues: please visit"
 
-#: mod/admin.php:1152
-msgid "Worker"
-msgstr "Worker"
+#: mod/friendica.php:79
+msgid "the bugtracker at github"
+msgstr "the bugtracker at github"
 
-#: mod/admin.php:1153
+#: mod/friendica.php:82
 msgid ""
-"Relocate - WARNING: advanced function. Could make this server unreachable."
-msgstr "Relocate - Warning, advanced function: This could make this server unreachable."
+"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - "
+"dot com"
+msgstr "Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"
 
-#: mod/admin.php:1156
-msgid "Site name"
-msgstr "Site name"
+#: mod/friendica.php:96
+msgid "Installed plugins/addons/apps:"
+msgstr "Installed plugins/addons/apps:"
 
-#: mod/admin.php:1157
-msgid "Host name"
-msgstr "Host name"
+#: mod/friendica.php:110
+msgid "No installed plugins/addons/apps"
+msgstr "No installed plugins/addons/apps"
 
-#: mod/admin.php:1158
-msgid "Sender Email"
-msgstr "Sender email"
+#: mod/friendica.php:115
+msgid "On this server the following remote servers are blocked."
+msgstr "On this server the following remote servers are blocked."
 
-#: mod/admin.php:1158
-msgid ""
-"The email address your server shall use to send notification emails from."
-msgstr "The email address your server shall use to send notification emails from."
+#: mod/group.php:31
+msgid "Group created."
+msgstr "Group created."
 
-#: mod/admin.php:1159
-msgid "Banner/Logo"
-msgstr "Banner/Logo"
+#: mod/group.php:37
+msgid "Could not create group."
+msgstr "Could not create group."
 
-#: mod/admin.php:1160
-msgid "Shortcut icon"
-msgstr "Shortcut icon"
+#: mod/group.php:51 mod/group.php:156
+msgid "Group not found."
+msgstr "Group not found."
 
-#: mod/admin.php:1160
-msgid "Link to an icon that will be used for browsers."
-msgstr "Link to an icon that will be used for browsers."
+#: mod/group.php:65
+msgid "Group name changed."
+msgstr "Group name changed."
 
-#: mod/admin.php:1161
-msgid "Touch icon"
-msgstr "Touch icon"
+#: mod/group.php:95
+msgid "Save Group"
+msgstr "Save group"
 
-#: mod/admin.php:1161
-msgid "Link to an icon that will be used for tablets and mobiles."
-msgstr "Link to an icon that will be used for tablets and mobiles."
+#: mod/group.php:100
+msgid "Create a group of contacts/friends."
+msgstr "Create a group of contacts/friends."
 
-#: mod/admin.php:1162
-msgid "Additional Info"
-msgstr "Additional Info"
+#: mod/group.php:125
+msgid "Group removed."
+msgstr "Group removed."
 
-#: mod/admin.php:1162
-#, php-format
-msgid ""
-"For public servers: you can add additional information here that will be "
-"listed at %s/siteinfo."
-msgstr "For public servers: add additional information here that will be listed at %s/siteinfo."
+#: mod/group.php:127
+msgid "Unable to remove group."
+msgstr "Unable to remove group."
 
-#: mod/admin.php:1163
-msgid "System language"
-msgstr "System language"
+#: mod/group.php:191
+msgid "Delete Group"
+msgstr "Delete group"
 
-#: mod/admin.php:1164
-msgid "System theme"
-msgstr "System theme"
+#: mod/group.php:197
+msgid "Group Editor"
+msgstr "Group Editor"
 
-#: mod/admin.php:1164
-msgid ""
-"Default system theme - may be over-ridden by user profiles - <a href='#' "
-"id='cnftheme'>change theme settings</a>"
-msgstr "Default system theme - may be overridden by user profiles - <a href='#' id='cnftheme'>change theme settings</a>"
+#: mod/group.php:202
+msgid "Edit Group Name"
+msgstr "Edit group name"
 
-#: mod/admin.php:1165
-msgid "Mobile system theme"
-msgstr "Mobile system theme"
+#: mod/group.php:212
+msgid "Members"
+msgstr "Members"
 
-#: mod/admin.php:1165
-msgid "Theme for mobile devices"
-msgstr "Theme for mobile devices"
+#: mod/group.php:228
+msgid "Remove Contact"
+msgstr "Remove contact"
 
-#: mod/admin.php:1166
-msgid "SSL link policy"
-msgstr "SSL link policy"
+#: mod/group.php:252
+msgid "Add Contact"
+msgstr "Add contact"
 
-#: mod/admin.php:1166
-msgid "Determines whether generated links should be forced to use SSL"
-msgstr "Determines whether generated links should be forced to use SSL"
+#: mod/hcard.php:14
+msgid "No profile"
+msgstr "No profile"
 
-#: mod/admin.php:1167
-msgid "Force SSL"
-msgstr "Force SSL"
+#: mod/help.php:45
+msgid "Help:"
+msgstr "Help:"
 
-#: mod/admin.php:1167
-msgid ""
-"Force all Non-SSL requests to SSL - Attention: on some systems it could lead"
-" to endless loops."
-msgstr "Force all Non-SSL requests to SSL - Attention: on some systems it could lead to endless loops."
+#: mod/help.php:60 index.php:305
+msgid "Page not found."
+msgstr "Page not found"
 
-#: mod/admin.php:1168
-msgid "Hide help entry from navigation menu"
-msgstr "Hide help entry from navigation menu"
+#: mod/home.php:42
+#, php-format
+msgid "Welcome to %s"
+msgstr "Welcome to %s"
 
-#: mod/admin.php:1168
-msgid ""
-"Hides the menu entry for the Help pages from the navigation menu. You can "
-"still access it calling /help directly."
-msgstr "Hides the menu entry for the Help pages from the navigation menu. Help pages can still be accessed by calling ../help directly via its URL."
+#: mod/install.php:109
+msgid "Friendica Communications Server - Setup"
+msgstr "Friendica Communications Server - Setup"
 
-#: mod/admin.php:1169
-msgid "Single user instance"
-msgstr "Single user instance"
+#: mod/install.php:115
+msgid "Could not connect to database."
+msgstr "Could not connect to database."
 
-#: mod/admin.php:1169
-msgid "Make this instance multi-user or single-user for the named user"
-msgstr "Make this instance multi-user or single-user for the named user"
+#: mod/install.php:119
+msgid "Could not create table."
+msgstr "Could not create table."
 
-#: mod/admin.php:1170
-msgid "Maximum image size"
-msgstr "Maximum image size"
+#: mod/install.php:125
+msgid "Your Friendica site database has been installed."
+msgstr "Your Friendica site database has been installed."
 
-#: mod/admin.php:1170
+#: mod/install.php:130
 msgid ""
-"Maximum size in bytes of uploaded images. Default is 0, which means no "
-"limits."
-msgstr "Maximum size in bytes of uploaded images. Default is 0, which means no limits."
+"You may need to import the file \"database.sql\" manually using phpmyadmin "
+"or mysql."
+msgstr "You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."
 
-#: mod/admin.php:1171
-msgid "Maximum image length"
-msgstr "Maximum image length"
+#: mod/install.php:131 mod/install.php:203 mod/install.php:550
+msgid "Please see the file \"INSTALL.txt\"."
+msgstr "Please see the file \"INSTALL.txt\"."
 
-#: mod/admin.php:1171
-msgid ""
-"Maximum length in pixels of the longest side of uploaded images. Default is "
-"-1, which means no limits."
-msgstr "Maximum length in pixels of the longest side of uploaded images. Default is -1, which means no limits."
+#: mod/install.php:143
+msgid "Database already in use."
+msgstr "Database already in use."
 
-#: mod/admin.php:1172
-msgid "JPEG image quality"
-msgstr "JPEG image quality"
+#: mod/install.php:200
+msgid "System check"
+msgstr "System check"
 
-#: mod/admin.php:1172
-msgid ""
-"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is "
-"100, which is full quality."
-msgstr "Uploaded JPEGS will be saved at this quality setting [0-100]. Default is 100, which is the original quality level."
+#: mod/install.php:205
+msgid "Check again"
+msgstr "Check again"
 
-#: mod/admin.php:1174
-msgid "Register policy"
-msgstr "Registration policy"
+#: mod/install.php:224
+msgid "Database connection"
+msgstr "Database connection"
 
-#: mod/admin.php:1175
-msgid "Maximum Daily Registrations"
-msgstr "Maximum daily registrations"
+#: mod/install.php:225
+msgid ""
+"In order to install Friendica we need to know how to connect to your "
+"database."
+msgstr "In order to install Friendica we need to know how to connect to your database."
 
-#: mod/admin.php:1175
+#: mod/install.php:226
 msgid ""
-"If registration is permitted above, this sets the maximum number of new user"
-" registrations to accept per day.  If register is set to closed, this "
-"setting has no effect."
-msgstr "If open registration is permitted, this sets the maximum number of new registrations per day.  This setting has no effect for registrations by approval."
+"Please contact your hosting provider or site administrator if you have "
+"questions about these settings."
+msgstr "Please contact your hosting provider or site administrator if you have questions about these settings."
 
-#: mod/admin.php:1176
-msgid "Register text"
-msgstr "Registration text"
+#: mod/install.php:227
+msgid ""
+"The database you specify below should already exist. If it does not, please "
+"create it before continuing."
+msgstr "The database you specify below should already exist. If it does not, please create it before continuing."
 
-#: mod/admin.php:1176
-msgid "Will be displayed prominently on the registration page."
-msgstr "Will be displayed prominently on the registration page."
+#: mod/install.php:231
+msgid "Database Server Name"
+msgstr "Database server name"
 
-#: mod/admin.php:1177
-msgid "Accounts abandoned after x days"
-msgstr "Accounts abandoned after so many days"
+#: mod/install.php:232
+msgid "Database Login Name"
+msgstr "Database login name"
 
-#: mod/admin.php:1177
-msgid ""
-"Will not waste system resources polling external sites for abandonded "
-"accounts. Enter 0 for no time limit."
-msgstr "Will not waste system resources polling external sites for abandoned accounts. Enter 0 for no time limit."
+#: mod/install.php:233
+msgid "Database Login Password"
+msgstr "Database login password"
 
-#: mod/admin.php:1178
-msgid "Allowed friend domains"
-msgstr "Allowed friend domains"
+#: mod/install.php:233
+msgid "For security reasons the password must not be empty"
+msgstr "For security reasons the password must not be empty"
 
-#: mod/admin.php:1178
-msgid ""
-"Comma separated list of domains which are allowed to establish friendships "
-"with this site. Wildcards are accepted. Empty to allow any domains"
-msgstr "Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Leave empty to allow any domains"
+#: mod/install.php:234
+msgid "Database Name"
+msgstr "Database name"
 
-#: mod/admin.php:1179
-msgid "Allowed email domains"
-msgstr "Allowed email domains"
+#: mod/install.php:235 mod/install.php:276
+msgid "Site administrator email address"
+msgstr "Site administrator email address"
 
-#: mod/admin.php:1179
+#: mod/install.php:235 mod/install.php:276
 msgid ""
-"Comma separated list of domains which are allowed in email addresses for "
-"registrations to this site. Wildcards are accepted. Empty to allow any "
-"domains"
-msgstr "Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Leave empty to allow any domains"
+"Your account email address must match this in order to use the web admin "
+"panel."
+msgstr "Your account email address must match this in order to use the web admin panel."
 
-#: mod/admin.php:1180
-msgid "Block public"
-msgstr "Block public"
+#: mod/install.php:239 mod/install.php:279
+msgid "Please select a default timezone for your website"
+msgstr "Please select a default time zone for your website"
 
-#: mod/admin.php:1180
-msgid ""
-"Check to block public access to all otherwise public personal pages on this "
-"site unless you are currently logged in."
-msgstr "Block public access to all otherwise public personal pages on this site, except for local users when logged in."
+#: mod/install.php:266
+msgid "Site settings"
+msgstr "Site settings"
 
-#: mod/admin.php:1181
-msgid "Force publish"
-msgstr "Mandatory directory listing"
+#: mod/install.php:280
+msgid "System Language:"
+msgstr "System language:"
 
-#: mod/admin.php:1181
+#: mod/install.php:280
 msgid ""
-"Check to force all profiles on this site to be listed in the site directory."
-msgstr "Force all profiles on this site to be listed in the site directory."
+"Set the default language for your Friendica installation interface and to "
+"send emails."
+msgstr "Set the default language for your Friendica installation interface and email communication."
 
-#: mod/admin.php:1182
-msgid "Global directory URL"
-msgstr "Global directory URL"
+#: mod/install.php:320
+msgid "Could not find a command line version of PHP in the web server PATH."
+msgstr "Could not find a command line version of PHP in the web server PATH."
 
-#: mod/admin.php:1182
+#: mod/install.php:321
 msgid ""
-"URL to the global directory. If this is not set, the global directory is "
-"completely unavailable to the application."
-msgstr "URL to the global directory: If this is not set, the global directory is completely unavailable to the application."
-
-#: mod/admin.php:1183
-msgid "Allow threaded items"
-msgstr "Allow threaded items"
-
-#: mod/admin.php:1183
-msgid "Allow infinite level threading for items on this site."
-msgstr "Allow infinite levels of threading for items on this site."
+"If you don't have a command line version of PHP installed on server, you "
+"will not be able to run the background processing. See <a "
+"href='https://github.com/friendica/friendica/blob/master/doc/Install.md#set-"
+"up-the-poller'>'Setup the poller'</a>"
+msgstr "If you don't have a command line version of PHP installed on your server, you will not be able to run the background processing. See <a href='https://github.com/friendica/friendica/blob/master/doc/Install.md#set-up-the-poller'>'Setup the poller'</a>"
 
-#: mod/admin.php:1184
-msgid "Private posts by default for new users"
-msgstr "Private posts by default for new users"
+#: mod/install.php:325
+msgid "PHP executable path"
+msgstr "PHP executable path"
 
-#: mod/admin.php:1184
+#: mod/install.php:325
 msgid ""
-"Set default post permissions for all new members to the default privacy "
-"group rather than public."
-msgstr "Set default post permissions for all new members to the default privacy group rather than public."
-
-#: mod/admin.php:1185
-msgid "Don't include post content in email notifications"
-msgstr "Don't include post content in email notifications"
+"Enter full path to php executable. You can leave this blank to continue the "
+"installation."
+msgstr "Enter full path to php executable. You can leave this blank to continue the installation."
 
-#: mod/admin.php:1185
-msgid ""
-"Don't include the content of a post/comment/private message/etc. in the "
-"email notifications that are sent out from this site, as a privacy measure."
-msgstr "Don't include the content of a post/comment/private message in the email notifications sent from this site, as a privacy measure."
+#: mod/install.php:330
+msgid "Command line PHP"
+msgstr "Command line PHP"
 
-#: mod/admin.php:1186
-msgid "Disallow public access to addons listed in the apps menu."
-msgstr "Disallow public access to addons listed in the apps menu."
+#: mod/install.php:339
+msgid "PHP executable is not the php cli binary (could be cgi-fgci version)"
+msgstr "PHP executable is not a php cli binary; it could possibly be a cgi-fgci version."
 
-#: mod/admin.php:1186
-msgid ""
-"Checking this box will restrict addons listed in the apps menu to members "
-"only."
-msgstr "Checking this box will restrict addons listed in the apps menu to members only."
+#: mod/install.php:340
+msgid "Found PHP version: "
+msgstr "Found PHP version: "
 
-#: mod/admin.php:1187
-msgid "Don't embed private images in posts"
-msgstr "Don't embed private images in posts"
+#: mod/install.php:342
+msgid "PHP cli binary"
+msgstr "PHP cli binary"
 
-#: mod/admin.php:1187
+#: mod/install.php:353
 msgid ""
-"Don't replace locally-hosted private photos in posts with an embedded copy "
-"of the image. This means that contacts who receive posts containing private "
-"photos will have to authenticate and load each image, which may take a "
-"while."
-msgstr "Don't replace locally-hosted private photos in posts with an embedded copy of the image. This means that contacts who receive posts containing private photos will have to authenticate and load each image, which may take a while."
+"The command line version of PHP on your system does not have "
+"\"register_argc_argv\" enabled."
+msgstr "The command line version of PHP on your system does not have \"register_argc_argv\" enabled."
 
-#: mod/admin.php:1188
-msgid "Allow Users to set remote_self"
-msgstr "Allow users to set \"Remote self\""
+#: mod/install.php:354
+msgid "This is required for message delivery to work."
+msgstr "This is required for message delivery to work."
 
-#: mod/admin.php:1188
+#: mod/install.php:356
+msgid "PHP register_argc_argv"
+msgstr "PHP register_argc_argv"
+
+#: mod/install.php:379
 msgid ""
-"With checking this, every user is allowed to mark every contact as a "
-"remote_self in the repair contact dialog. Setting this flag on a contact "
-"causes mirroring every posting of that contact in the users stream."
-msgstr "This allows every user to mark contacts as a \"Remote self\" in the repair contact dialogue. Setting this flag on a contact will mirror every posting of that contact in the users stream."
+"Error: the \"openssl_pkey_new\" function on this system is not able to "
+"generate encryption keys"
+msgstr "Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"
 
-#: mod/admin.php:1189
-msgid "Block multiple registrations"
-msgstr "Block multiple registrations"
+#: mod/install.php:380
+msgid ""
+"If running under Windows, please see "
+"\"http://www.php.net/manual/en/openssl.installation.php\"."
+msgstr "If running under Windows OS, please see \"http://www.php.net/manual/en/openssl.installation.php\"."
 
-#: mod/admin.php:1189
-msgid "Disallow users to register additional accounts for use as pages."
-msgstr "Disallow users to sign up for additional accounts."
+#: mod/install.php:382
+msgid "Generate encryption keys"
+msgstr "Generate encryption keys"
 
-#: mod/admin.php:1190
-msgid "OpenID support"
-msgstr "OpenID support"
+#: mod/install.php:389
+msgid "libCurl PHP module"
+msgstr "libCurl PHP module"
 
-#: mod/admin.php:1190
-msgid "OpenID support for registration and logins."
-msgstr "OpenID support for registration and logins."
-
-#: mod/admin.php:1191
-msgid "Fullname check"
-msgstr "Full name check"
+#: mod/install.php:390
+msgid "GD graphics PHP module"
+msgstr "GD graphics PHP module"
 
-#: mod/admin.php:1191
-msgid ""
-"Force users to register with a space between firstname and lastname in Full "
-"name, as an antispam measure"
-msgstr "Force users to sign up with a space between first name and last name in the full name field; it may reduce spam and abuse registrations."
+#: mod/install.php:391
+msgid "OpenSSL PHP module"
+msgstr "OpenSSL PHP module"
 
-#: mod/admin.php:1192
-msgid "Community Page Style"
-msgstr "Community page style"
+#: mod/install.php:392
+msgid "PDO or MySQLi PHP module"
+msgstr "PDO or MySQLi PHP module"
 
-#: mod/admin.php:1192
-msgid ""
-"Type of community page to show. 'Global community' shows every public "
-"posting from an open distributed network that arrived on this server."
-msgstr "Type of community page to show. 'Global community' shows every public posting from an open distributed network that arrived on this server."
+#: mod/install.php:393
+msgid "mb_string PHP module"
+msgstr "mb_string PHP module"
 
-#: mod/admin.php:1193
-msgid "Posts per user on community page"
-msgstr "Posts per user on community page"
+#: mod/install.php:394
+msgid "XML PHP module"
+msgstr "XML PHP module"
 
-#: mod/admin.php:1193
-msgid ""
-"The maximum number of posts per user on the community page. (Not valid for "
-"'Global Community')"
-msgstr "Maximum number of posts per user on the community page (not valid for 'Global Community')."
+#: mod/install.php:395
+msgid "iconv module"
+msgstr "iconv module"
 
-#: mod/admin.php:1194
-msgid "Enable OStatus support"
-msgstr "Enable OStatus support"
+#: mod/install.php:399 mod/install.php:401
+msgid "Apache mod_rewrite module"
+msgstr "Apache mod_rewrite module"
 
-#: mod/admin.php:1194
+#: mod/install.php:399
 msgid ""
-"Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All "
-"communications in OStatus are public, so privacy warnings will be "
-"occasionally displayed."
-msgstr "Provide built-in OStatus (StatusNet, GNU Social, etc.) compatibility. All communications in OStatus are public, so privacy warnings will be occasionally displayed."
+"Error: Apache webserver mod-rewrite module is required but not installed."
+msgstr "Error: Apache web server mod-rewrite module is required but not installed."
 
-#: mod/admin.php:1195
-msgid "OStatus conversation completion interval"
-msgstr "OStatus conversation completion interval"
+#: mod/install.php:407
+msgid "Error: libCURL PHP module required but not installed."
+msgstr "Error: libCURL PHP module required but not installed."
 
-#: mod/admin.php:1195
+#: mod/install.php:411
 msgid ""
-"How often shall the poller check for new entries in OStatus conversations? "
-"This can be a very ressource task."
-msgstr "How often shall the poller check for new entries in OStatus conversations? This can be rather resources consuming."
-
-#: mod/admin.php:1196
-msgid "Only import OStatus threads from our contacts"
-msgstr "Only import OStatus threads from known contacts"
+"Error: GD graphics PHP module with JPEG support required but not installed."
+msgstr "Error: GD graphics PHP module with JPEG support required but not installed."
 
-#: mod/admin.php:1196
-msgid ""
-"Normally we import every content from our OStatus contacts. With this option"
-" we only store threads that are started by a contact that is known on our "
-"system."
-msgstr "Normally we import every content from our OStatus contacts. With this option we only store threads that are started by a contact that is known on our system."
+#: mod/install.php:415
+msgid "Error: openssl PHP module required but not installed."
+msgstr "Error: openssl PHP module required but not installed."
 
-#: mod/admin.php:1197
-msgid "OStatus support can only be enabled if threading is enabled."
-msgstr "OStatus support can only be enabled if threading is enabled."
+#: mod/install.php:419
+msgid "Error: PDO or MySQLi PHP module required but not installed."
+msgstr "Error: PDO or MySQLi PHP module required but not installed."
 
-#: mod/admin.php:1199
-msgid ""
-"Diaspora support can't be enabled because Friendica was installed into a sub"
-" directory."
-msgstr "Diaspora support can't be enabled because Friendica was installed into a sub directory."
+#: mod/install.php:423
+msgid "Error: The MySQL driver for PDO is not installed."
+msgstr "Error: MySQL driver for PDO is not installed."
 
-#: mod/admin.php:1200
-msgid "Enable Diaspora support"
-msgstr "Enable Diaspora support"
+#: mod/install.php:427
+msgid "Error: mb_string PHP module required but not installed."
+msgstr "Error: mb_string PHP module required but not installed."
 
-#: mod/admin.php:1200
-msgid "Provide built-in Diaspora network compatibility."
-msgstr "Provide built-in Diaspora network compatibility."
+#: mod/install.php:431
+msgid "Error: iconv PHP module required but not installed."
+msgstr "Error: iconv PHP module required but not installed."
 
-#: mod/admin.php:1201
-msgid "Only allow Friendica contacts"
-msgstr "Only allow Friendica contacts"
+#: mod/install.php:441
+msgid "Error, XML PHP module required but not installed."
+msgstr "Error, XML PHP module required but not installed."
 
-#: mod/admin.php:1201
+#: mod/install.php:453
 msgid ""
-"All contacts must use Friendica protocols. All other built-in communication "
-"protocols disabled."
-msgstr "All contacts must use Friendica protocols. All other built-in communication protocols will be disabled."
+"The web installer needs to be able to create a file called \".htconfig.php\""
+" in the top folder of your web server and it is unable to do so."
+msgstr "The web installer needs to be able to create a file called \".htconfig.php\" in the top-level directory of your web server, but it is unable to do so."
 
-#: mod/admin.php:1202
-msgid "Verify SSL"
-msgstr "Verify SSL"
+#: mod/install.php:454
+msgid ""
+"This is most often a permission setting, as the web server may not be able "
+"to write files in your folder - even if you can."
+msgstr "This is most often a permission setting issue, as the web server may not be able to write files in your directory - even if you can."
 
-#: mod/admin.php:1202
+#: mod/install.php:455
 msgid ""
-"If you wish, you can turn on strict certificate checking. This will mean you"
-" cannot connect (at all) to self-signed SSL sites."
-msgstr "If you wish, you can turn on strict certificate checking. This will mean you cannot connect (at all) to self-signed SSL sites."
+"At the end of this procedure, we will give you a text to save in a file "
+"named .htconfig.php in your Friendica top folder."
+msgstr "At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Friendica top-level directory."
 
-#: mod/admin.php:1203
-msgid "Proxy user"
-msgstr "Proxy user"
+#: mod/install.php:456
+msgid ""
+"You can alternatively skip this procedure and perform a manual installation."
+" Please see the file \"INSTALL.txt\" for instructions."
+msgstr "Alternatively, you may skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."
 
-#: mod/admin.php:1204
-msgid "Proxy URL"
-msgstr "Proxy URL"
+#: mod/install.php:459
+msgid ".htconfig.php is writable"
+msgstr ".htconfig.php is writeable"
 
-#: mod/admin.php:1205
-msgid "Network timeout"
-msgstr "Network timeout"
+#: mod/install.php:469
+msgid ""
+"Friendica uses the Smarty3 template engine to render its web views. Smarty3 "
+"compiles templates to PHP to speed up rendering."
+msgstr "Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."
 
-#: mod/admin.php:1205
-msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
-msgstr "Value is in seconds. Set to 0 for unlimited (not recommended)."
+#: mod/install.php:470
+msgid ""
+"In order to store these compiled templates, the web server needs to have "
+"write access to the directory view/smarty3/ under the Friendica top level "
+"folder."
+msgstr "In order to store these compiled templates, the web server needs to have write access to the directory view/smarty3/ under the Friendica top-level directory."
 
-#: mod/admin.php:1206
-msgid "Maximum Load Average"
-msgstr "Maximum load average"
+#: mod/install.php:471
+msgid ""
+"Please ensure that the user that your web server runs as (e.g. www-data) has"
+" write access to this folder."
+msgstr "Please ensure the user (e.g. www-data) that your web server runs as has write access to this directory."
 
-#: mod/admin.php:1206
+#: mod/install.php:472
 msgid ""
-"Maximum system load before delivery and poll processes are deferred - "
-"default 50."
-msgstr "Maximum system load before delivery and poll processes are deferred (default 50)."
+"Note: as a security measure, you should give the web server write access to "
+"view/smarty3/ only--not the template files (.tpl) that it contains."
+msgstr "Note: as a security measure, you should give the web server write access to view/smarty3/ only--not the template files (.tpl) that it contains."
 
-#: mod/admin.php:1207
-msgid "Maximum Load Average (Frontend)"
-msgstr "Maximum load average (frontend)"
+#: mod/install.php:475
+msgid "view/smarty3 is writable"
+msgstr "view/smarty3 is writeable"
 
-#: mod/admin.php:1207
-msgid "Maximum system load before the frontend quits service - default 50."
-msgstr "Maximum system load before the frontend quits service (default 50)."
+#: mod/install.php:491
+msgid ""
+"Url rewrite in .htaccess is not working. Check your server configuration."
+msgstr "URL rewrite in .htaccess is not working. Check your server configuration."
 
-#: mod/admin.php:1208
-msgid "Minimal Memory"
-msgstr "Minimal memory"
+#: mod/install.php:493
+msgid "Url rewrite is working"
+msgstr "URL rewrite is working"
 
-#: mod/admin.php:1208
-msgid ""
-"Minimal free memory in MB for the poller. Needs access to /proc/meminfo - "
-"default 0 (deactivated)."
-msgstr "Minimal free memory in MB for the poller. Needs access to /proc/meminfo (default 0 - deactivated)."
+#: mod/install.php:512
+msgid "ImageMagick PHP extension is not installed"
+msgstr "ImageMagick PHP extension is not installed"
 
-#: mod/admin.php:1209
-msgid "Maximum table size for optimization"
-msgstr "Maximum table size for optimization"
+#: mod/install.php:514
+msgid "ImageMagick PHP extension is installed"
+msgstr "ImageMagick PHP extension is installed"
 
-#: mod/admin.php:1209
+#: mod/install.php:516
+msgid "ImageMagick supports GIF"
+msgstr "ImageMagick supports GIF"
+
+#: mod/install.php:523
 msgid ""
-"Maximum table size (in MB) for the automatic optimization - default 100 MB. "
-"Enter -1 to disable it."
-msgstr "Maximum table size (in MB) for the automatic optimization (default 100 MB; -1 to deactivate)."
+"The database configuration file \".htconfig.php\" could not be written. "
+"Please use the enclosed text to create a configuration file in your web "
+"server root."
+msgstr "The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."
 
-#: mod/admin.php:1210
-msgid "Minimum level of fragmentation"
-msgstr "Minimum level of fragmentation"
+#: mod/install.php:548
+msgid "<h1>What next</h1>"
+msgstr "<h1>What next</h1>"
 
-#: mod/admin.php:1210
+#: mod/install.php:549
 msgid ""
-"Minimum fragmenation level to start the automatic optimization - default "
-"value is 30%."
-msgstr "Minimum fragmentation level to start the automatic optimization (default 30%)."
+"IMPORTANT: You will need to [manually] setup a scheduled task for the "
+"poller."
+msgstr "IMPORTANT: You will need to [manually] setup a scheduled task for the poller."
 
-#: mod/admin.php:1212
-msgid "Periodical check of global contacts"
-msgstr "Periodical check of global contacts"
+#: mod/invite.php:31
+msgid "Total invitation limit exceeded."
+msgstr "Total invitation limit exceeded"
 
-#: mod/admin.php:1212
-msgid ""
-"If enabled, the global contacts are checked periodically for missing or "
-"outdated data and the vitality of the contacts and servers."
-msgstr "This checks global contacts periodically for missing or outdated data and the vitality of the contacts and servers."
+#: mod/invite.php:54
+#, php-format
+msgid "%s : Not a valid email address."
+msgstr "%s : Not a valid email address"
 
-#: mod/admin.php:1213
-msgid "Days between requery"
-msgstr "Days between enquiry"
+#: mod/invite.php:79
+msgid "Please join us on Friendica"
+msgstr "Please join us on Friendica."
 
-#: mod/admin.php:1213
-msgid "Number of days after which a server is requeried for his contacts."
-msgstr "Number of days after which a server is required check contacts."
+#: mod/invite.php:90
+msgid "Invitation limit exceeded. Please contact your site administrator."
+msgstr "Invitation limit is exceeded. Please contact your site administrator."
 
-#: mod/admin.php:1214
-msgid "Discover contacts from other servers"
-msgstr "Discover contacts from other servers"
+#: mod/invite.php:94
+#, php-format
+msgid "%s : Message delivery failed."
+msgstr "%s : Message delivery failed"
 
-#: mod/admin.php:1214
-msgid ""
-"Periodically query other servers for contacts. You can choose between "
-"'users': the users on the remote system, 'Global Contacts': active contacts "
-"that are known on the system. The fallback is meant for Redmatrix servers "
-"and older friendica servers, where global contacts weren't available. The "
-"fallback increases the server load, so the recommened setting is 'Users, "
-"Global Contacts'."
-msgstr "Periodically query other servers for contacts. You can choose between 'Users': the users on the remote system, 'Global Contacts': active contacts that are known on the system. The fallback is meant for Redmatrix servers and older Friendica servers, where global contacts weren't available. The fallback increases the server load, so the recommend setting is 'Users, Global Contacts'."
+#: mod/invite.php:98
+#, php-format
+msgid "%d message sent."
+msgid_plural "%d messages sent."
+msgstr[0] "%d message sent."
+msgstr[1] "%d messages sent."
 
-#: mod/admin.php:1215
-msgid "Timeframe for fetching global contacts"
-msgstr "Time-frame for fetching global contacts"
+#: mod/invite.php:117
+msgid "You have no more invitations available"
+msgstr "You have no more invitations available."
 
-#: mod/admin.php:1215
+#: mod/invite.php:125
+#, php-format
 msgid ""
-"When the discovery is activated, this value defines the timeframe for the "
-"activity of the global contacts that are fetched from other servers."
-msgstr "If discovery is activated, this value defines the time-frame for the activity of the global contacts that are fetched from other servers."
+"Visit %s for a list of public sites that you can join. Friendica members on "
+"other sites can all connect with each other, as well as with members of many"
+" other social networks."
+msgstr "Visit %s for a list of public sites that you can join. Friendica members on other sites can all connect with each other, as well as with members of many other social networks."
 
-#: mod/admin.php:1216
-msgid "Search the local directory"
-msgstr "Search the local directory"
+#: mod/invite.php:127
+#, php-format
+msgid ""
+"To accept this invitation, please visit and register at %s or any other "
+"public Friendica website."
+msgstr "To accept this invitation, please sign up at %s or any other public Friendica website."
 
-#: mod/admin.php:1216
+#: mod/invite.php:128
+#, php-format
 msgid ""
-"Search the local directory instead of the global directory. When searching "
-"locally, every search will be executed on the global directory in the "
-"background. This improves the search results when the search is repeated."
-msgstr "Search the local directory instead of the global directory. When searching locally, every search will be executed on the global directory in the background. This improves the search results when the search is repeated."
+"Friendica sites all inter-connect to create a huge privacy-enhanced social "
+"web that is owned and controlled by its members. They can also connect with "
+"many traditional social networks. See %s for a list of alternate Friendica "
+"sites you can join."
+msgstr "Friendica sites are all inter-connect to create a large privacy-enhanced social web that is owned and controlled by its members. They can also connect with many traditional social networks. See %s for a list of alternate Friendica sites you can join."
 
-#: mod/admin.php:1218
-msgid "Publish server information"
-msgstr "Publish server information"
+#: mod/invite.php:132
+msgid ""
+"Our apologies. This system is not currently configured to connect with other"
+" public sites or invite members."
+msgstr "Our apologies. This system is not currently configured to connect with other public sites or invite members."
 
-#: mod/admin.php:1218
+#: mod/invite.php:135
+#, php-format
+msgid "To accept this invitation, please visit and register at %s."
+msgstr "To accept this invitation, please visit and register at %s."
+
+#: mod/invite.php:136
 msgid ""
-"If enabled, general server and usage data will be published. The data "
-"contains the name and version of the server, number of users with public "
-"profiles, number of posts and the activated protocols and connectors. See <a"
-" href='http://the-federation.info/'>the-federation.info</a> for details."
-msgstr "This publishes generic data about the server and its usage. The data contains the name and version of the server, number of users with public profiles, number of posts and the activated protocols and connectors. See <a href='http://the-federation.info/'>the-federation.info</a> for details."
+"Friendica sites all inter-connect to create a huge privacy-enhanced social "
+"web that is owned and controlled by its members. They can also connect with "
+"many traditional social networks."
+msgstr "Friendica sites are all inter-connect to create a huge privacy-enhanced social web that is owned and controlled by its members. Each site can also connect with many traditional social networks."
 
-#: mod/admin.php:1220
-msgid "Suppress Tags"
-msgstr "Suppress tags"
+#: mod/invite.php:142
+msgid "Send invitations"
+msgstr "Send invitations"
 
-#: mod/admin.php:1220
-msgid "Suppress showing a list of hashtags at the end of the posting."
-msgstr "Suppress listed hashtags at the end of posts."
+#: mod/invite.php:143
+msgid "Enter email addresses, one per line:"
+msgstr "Enter email addresses, one per line:"
 
-#: mod/admin.php:1221
-msgid "Path to item cache"
-msgstr "Path to item cache"
+#: mod/invite.php:144 mod/message.php:332 mod/message.php:515
+#: mod/wallmessage.php:138
+msgid "Your message:"
+msgstr "Your message:"
 
-#: mod/admin.php:1221
-msgid "The item caches buffers generated bbcode and external images."
-msgstr "The item caches buffers generated bbcode and external images."
+#: mod/invite.php:145
+msgid ""
+"You are cordially invited to join me and other close friends on Friendica - "
+"and help us to create a better social web."
+msgstr "You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."
 
-#: mod/admin.php:1222
-msgid "Cache duration in seconds"
-msgstr "Cache duration in seconds"
+#: mod/invite.php:147
+msgid "You will need to supply this invitation code: $invite_code"
+msgstr "You will need to supply this invitation code: $invite_code"
 
-#: mod/admin.php:1222
+#: mod/invite.php:147
 msgid ""
-"How long should the cache files be hold? Default value is 86400 seconds (One"
-" day). To disable the item cache, set the value to -1."
-msgstr "How long should cache files be held? (Default 86400 seconds - one day;  -1 disables item cache)"
+"Once you have registered, please connect with me via my profile page at:"
+msgstr "Once you have signed up, please connect with me via my profile page at:"
 
-#: mod/admin.php:1223
-msgid "Maximum numbers of comments per post"
-msgstr "Maximum numbers of comments per post"
+#: mod/invite.php:149
+msgid ""
+"For more information about the Friendica project and why we feel it is "
+"important, please visit http://friendi.ca"
+msgstr "For more information about the Friendica project and why we feel it is important, please visit http://friendi.ca"
 
-#: mod/admin.php:1223
-msgid "How much comments should be shown for each post? Default value is 100."
-msgstr "How many comments should be shown for each post? (Default 100)"
+#: mod/item.php:119
+msgid "Unable to locate original post."
+msgstr "Unable to locate original post."
 
-#: mod/admin.php:1224
-msgid "Temp path"
-msgstr "Temp path"
+#: mod/item.php:346
+msgid "Empty post discarded."
+msgstr "Empty post discarded."
 
-#: mod/admin.php:1224
+#: mod/item.php:903
+msgid "System error. Post not saved."
+msgstr "System error. Post not saved."
+
+#: mod/item.php:994
+#, php-format
 msgid ""
-"If you have a restricted system where the webserver can't access the system "
-"temp path, enter another path here."
-msgstr "Enter a different tmp path, if your system restricts the webserver's access to the system temp path."
+"This message was sent to you by %s, a member of the Friendica social "
+"network."
+msgstr "This message was sent to you by %s, a member of the Friendica social network."
 
-#: mod/admin.php:1225
-msgid "Base path to installation"
-msgstr "Base path to installation"
+#: mod/item.php:996
+#, php-format
+msgid "You may visit them online at %s"
+msgstr "You may visit them online at %s"
 
-#: mod/admin.php:1225
+#: mod/item.php:997
 msgid ""
-"If the system cannot detect the correct path to your installation, enter the"
-" correct path here. This setting should only be set if you are using a "
-"restricted system and symbolic links to your webroot."
-msgstr "If the system cannot detect the correct path to your installation, enter the correct path here. This setting should only be set if you are using a restricted system and symbolic links to your webroot."
+"Please contact the sender by replying to this post if you do not wish to "
+"receive these messages."
+msgstr "Please contact the sender by replying to this post if you do not wish to receive these messages."
 
-#: mod/admin.php:1226
-msgid "Disable picture proxy"
-msgstr "Disable picture proxy"
+#: mod/item.php:1001
+#, php-format
+msgid "%s posted an update."
+msgstr "%s posted an update."
 
-#: mod/admin.php:1226
+#: mod/localtime.php:26
+msgid "Time Conversion"
+msgstr "Time conversion"
+
+#: mod/localtime.php:28
 msgid ""
-"The picture proxy increases performance and privacy. It shouldn't be used on"
-" systems with very low bandwith."
-msgstr "The picture proxy increases performance and privacy. It shouldn't be used on systems with very low bandwith."
+"Friendica provides this service for sharing events with other networks and "
+"friends in unknown timezones."
+msgstr "Friendica provides this service for sharing events with other networks and friends in unknown time zones."
 
-#: mod/admin.php:1227
-msgid "Only search in tags"
-msgstr "Only search in tags"
+#: mod/localtime.php:32
+#, php-format
+msgid "UTC time: %s"
+msgstr "UTC time: %s"
 
-#: mod/admin.php:1227
-msgid "On large systems the text search can slow down the system extremely."
-msgstr "On large systems the text search can slow down the system significantly."
+#: mod/localtime.php:35
+#, php-format
+msgid "Current timezone: %s"
+msgstr "Current time zone: %s"
 
-#: mod/admin.php:1229
-msgid "New base url"
-msgstr "New base URL"
+#: mod/localtime.php:38
+#, php-format
+msgid "Converted localtime: %s"
+msgstr "Converted local time: %s"
 
-#: mod/admin.php:1229
-msgid ""
-"Change base url for this server. Sends relocate message to all DFRN contacts"
-" of all users."
-msgstr "Change base URL for this server. Sends relocate message to all DFRN contacts of all users."
+#: mod/localtime.php:43
+msgid "Please select your timezone:"
+msgstr "Please select your time zone:"
 
-#: mod/admin.php:1231
-msgid "RINO Encryption"
-msgstr "RINO Encryption"
+#: mod/lostpass.php:22
+msgid "No valid account found."
+msgstr "No valid account found."
 
-#: mod/admin.php:1231
-msgid "Encryption layer between nodes."
-msgstr "Encryption layer between nodes."
+#: mod/lostpass.php:38
+msgid "Password reset request issued. Check your email."
+msgstr "Password reset request issued. Please check your email."
 
-#: mod/admin.php:1233
-msgid "Maximum number of parallel workers"
-msgstr "Maximum number of parallel workers"
+#: mod/lostpass.php:44
+#, php-format
+msgid ""
+"\n"
+"\t\tDear %1$s,\n"
+"\t\t\tA request was recently received at \"%2$s\" to reset your account\n"
+"\t\tpassword. In order to confirm this request, please select the verification link\n"
+"\t\tbelow or paste it into your web browser address bar.\n"
+"\n"
+"\t\tIf you did NOT request this change, please DO NOT follow the link\n"
+"\t\tprovided and ignore and/or delete this email.\n"
+"\n"
+"\t\tYour password will not be changed unless we can verify that you\n"
+"\t\tissued this request."
+msgstr "\n\t\tDear %1$s,\n\t\t\tA request was issued at \"%2$s\" to reset your account\n\t\tpassword. In order to confirm this request, please select the verification link\n\t\tbelow or paste it into your web browser address bar.\n\n\t\tIf you did NOT request this change, please DO NOT follow the link\n\t\tprovided and ignore/delete this email.\n\n\t\tYour password will not be changed unless we can verify that you\n\t\tissued this request."
 
-#: mod/admin.php:1233
+#: mod/lostpass.php:55
+#, php-format
 msgid ""
-"On shared hosters set this to 2. On larger systems, values of 10 are great. "
-"Default value is 4."
-msgstr "On shared hosts set this to 2. On larger systems, values of 10 are great. Default value is 4."
+"\n"
+"\t\tFollow this link to verify your identity:\n"
+"\n"
+"\t\t%1$s\n"
+"\n"
+"\t\tYou will then receive a follow-up message containing the new password.\n"
+"\t\tYou may change that password from your account settings page after logging in.\n"
+"\n"
+"\t\tThe login details are as follows:\n"
+"\n"
+"\t\tSite Location:\t%2$s\n"
+"\t\tLogin Name:\t%3$s"
+msgstr "\n\t\tFollow this link to verify your identity:\n\n\t\t%1$s\n\n\t\tYou will then receive a follow-up message containing the new password.\n\t\tYou may change that password from your account settings page after logging in.\n\n\t\tThe login details are as follows:\n\n\t\tSite Location:\t%2$s\n\t\tLogin Name:\t%3$s"
 
-#: mod/admin.php:1234
-msgid "Don't use 'proc_open' with the worker"
-msgstr "Don't use 'proc_open' with the worker"
+#: mod/lostpass.php:74
+#, php-format
+msgid "Password reset requested at %s"
+msgstr "Password reset requested at %s"
+
+#: mod/lostpass.php:94
+msgid ""
+"Request could not be verified. (You may have previously submitted it.) "
+"Password reset failed."
+msgstr "Request could not be verified. (You may have previously submitted it.) Password reset failed."
+
+#: mod/lostpass.php:113 boot.php:875
+msgid "Password Reset"
+msgstr "Forgotten password?"
+
+#: mod/lostpass.php:114
+msgid "Your password has been reset as requested."
+msgstr "Your password has been reset as requested."
+
+#: mod/lostpass.php:115
+msgid "Your new password is"
+msgstr "Your new password is"
+
+#: mod/lostpass.php:116
+msgid "Save or copy your new password - and then"
+msgstr "Save or copy your new password - and then"
+
+#: mod/lostpass.php:117
+msgid "click here to login"
+msgstr "click here to login"
+
+#: mod/lostpass.php:118
+msgid ""
+"Your password may be changed from the <em>Settings</em> page after "
+"successful login."
+msgstr "Your password may be changed from the <em>Settings</em> page after successful login."
+
+#: mod/lostpass.php:128
+#, php-format
+msgid ""
+"\n"
+"\t\t\t\tDear %1$s,\n"
+"\t\t\t\t\tYour password has been changed as requested. Please retain this\n"
+"\t\t\t\tinformation for your records (or change your password immediately to\n"
+"\t\t\t\tsomething that you will remember).\n"
+"\t\t\t"
+msgstr "\n\t\t\t\tDear %1$s,\n\t\t\t\t\tYour password has been changed as requested. Please retain this\n\t\t\t\tinformation for your records or change your password immediately to\n\t\t\t\tsomething that you will remember.\n\t\t\t"
+
+#: mod/lostpass.php:134
+#, php-format
+msgid ""
+"\n"
+"\t\t\t\tYour login details are as follows:\n"
+"\n"
+"\t\t\t\tSite Location:\t%1$s\n"
+"\t\t\t\tLogin Name:\t%2$s\n"
+"\t\t\t\tPassword:\t%3$s\n"
+"\n"
+"\t\t\t\tYou may change that password from your account settings page after logging in.\n"
+"\t\t\t"
+msgstr "\n\t\t\t\tYour login details are as follows:\n\n\t\t\t\tSite Location:\t%1$s\n\t\t\t\tLogin Name:\t%2$s\n\t\t\t\tPassword:\t%3$s\n\n\t\t\t\tYou may change that password from your account settings page after logging in.\n\t\t\t"
+
+#: mod/lostpass.php:150
+#, php-format
+msgid "Your password has been changed at %s"
+msgstr "Your password has been changed at %s"
+
+#: mod/lostpass.php:162
+msgid "Forgot your Password?"
+msgstr "Reset My Password"
+
+#: mod/lostpass.php:163
+msgid ""
+"Enter your email address and submit to have your password reset. Then check "
+"your email for further instructions."
+msgstr "Enter email address or nickname to reset your password. You will receive further instruction via email."
+
+#: mod/lostpass.php:164 boot.php:863
+msgid "Nickname or Email: "
+msgstr "Nickname or email: "
+
+#: mod/lostpass.php:165
+msgid "Reset"
+msgstr "Reset"
+
+#: mod/manage.php:153
+msgid "Manage Identities and/or Pages"
+msgstr "Manage Identities and Pages"
+
+#: mod/manage.php:154
+msgid ""
+"Toggle between different identities or community/group pages which share "
+"your account details or which you have been granted \"manage\" permissions"
+msgstr "Accounts that I manage or own."
+
+#: mod/manage.php:155
+msgid "Select an identity to manage: "
+msgstr "Select identity:"
+
+#: mod/match.php:39
+msgid "No keywords to match. Please add keywords to your default profile."
+msgstr "No keywords to match. Please add keywords to your default profile."
+
+#: mod/match.php:92
+msgid "is interested in:"
+msgstr "is interested in:"
+
+#: mod/match.php:106
+msgid "Profile Match"
+msgstr "Profile Match"
+
+#: mod/message.php:63 mod/wallmessage.php:53
+msgid "No recipient selected."
+msgstr "No recipient selected."
+
+#: mod/message.php:67
+msgid "Unable to locate contact information."
+msgstr "Unable to locate contact information."
+
+#: mod/message.php:70 mod/wallmessage.php:59
+msgid "Message could not be sent."
+msgstr "Message could not be sent."
+
+#: mod/message.php:73 mod/wallmessage.php:62
+msgid "Message collection failure."
+msgstr "Message collection failure."
+
+#: mod/message.php:76 mod/wallmessage.php:65
+msgid "Message sent."
+msgstr "Message sent."
+
+#: mod/message.php:205
+msgid "Do you really want to delete this message?"
+msgstr "Do you really want to delete this message?"
+
+#: mod/message.php:225
+msgid "Message deleted."
+msgstr "Message deleted."
+
+#: mod/message.php:255
+msgid "Conversation removed."
+msgstr "Conversation removed."
+
+#: mod/message.php:322 mod/wallmessage.php:129
+msgid "Send Private Message"
+msgstr "Send private message"
+
+#: mod/message.php:323 mod/message.php:510 mod/wallmessage.php:131
+msgid "To:"
+msgstr "To:"
+
+#: mod/message.php:328 mod/message.php:512 mod/wallmessage.php:132
+msgid "Subject:"
+msgstr "Subject:"
+
+#: mod/message.php:364
+msgid "No messages."
+msgstr "No messages."
+
+#: mod/message.php:403
+msgid "Message not available."
+msgstr "Message not available."
+
+#: mod/message.php:478
+msgid "Delete message"
+msgstr "Delete message"
+
+#: mod/message.php:503 mod/message.php:591
+msgid "Delete conversation"
+msgstr "Delete conversation"
+
+#: mod/message.php:505
+msgid ""
+"No secure communications available. You <strong>may</strong> be able to "
+"respond from the sender's profile page."
+msgstr "No secure communications available. You <strong>may</strong> be able to respond from the sender's profile page."
+
+#: mod/message.php:509
+msgid "Send Reply"
+msgstr "Send reply"
+
+#: mod/message.php:561
+#, php-format
+msgid "Unknown sender - %s"
+msgstr "Unknown sender - %s"
+
+#: mod/message.php:563
+#, php-format
+msgid "You and %s"
+msgstr "Me and %s"
+
+#: mod/message.php:565
+#, php-format
+msgid "%s and You"
+msgstr "%s and me"
+
+#: mod/message.php:594
+msgid "D, d M Y - g:i A"
+msgstr "D, d M Y - g:i A"
+
+#: mod/message.php:597
+#, php-format
+msgid "%d message"
+msgid_plural "%d messages"
+msgstr[0] "%d message"
+msgstr[1] "%d messages"
+
+#: mod/mood.php:136
+msgid "Mood"
+msgstr "Mood"
+
+#: mod/mood.php:137
+msgid "Set your current mood and tell your friends"
+msgstr "Set your current mood and tell your friends"
+
+#: mod/network.php:561
+#, php-format
+msgid ""
+"Warning: This group contains %s member from a network that doesn't allow non"
+" public messages."
+msgid_plural ""
+"Warning: This group contains %s members from a network that doesn't allow "
+"non public messages."
+msgstr[0] "Warning: This group contains %s member from a network that doesn't allow non public messages."
+msgstr[1] "Warning: This group contains %s members from a network that doesn't allow non public messages."
+
+#: mod/network.php:564
+msgid "Messages in this group won't be send to these receivers."
+msgstr "Messages in this group won't be send to these receivers."
+
+#: mod/network.php:684
+msgid "Private messages to this person are at risk of public disclosure."
+msgstr "Private messages to this person are at risk of public disclosure."
+
+#: mod/network.php:688
+msgid "Invalid contact."
+msgstr "Invalid contact."
+
+#: mod/network.php:892
+msgid "Commented Order"
+msgstr "Commented last"
+
+#: mod/network.php:895
+msgid "Sort by Comment Date"
+msgstr "Sort by comment date"
+
+#: mod/network.php:900
+msgid "Posted Order"
+msgstr "Posted last"
+
+#: mod/network.php:903
+msgid "Sort by Post Date"
+msgstr "Sort by post date"
+
+#: mod/network.php:914
+msgid "Posts that mention or involve you"
+msgstr "Posts mentioning or involving me"
+
+#: mod/network.php:922
+msgid "New"
+msgstr "New"
+
+#: mod/network.php:925
+msgid "Activity Stream - by date"
+msgstr "Activity Stream - by date"
+
+#: mod/network.php:933
+msgid "Shared Links"
+msgstr "Shared links"
+
+#: mod/network.php:936
+msgid "Interesting Links"
+msgstr "Interesting links"
+
+#: mod/network.php:944
+msgid "Starred"
+msgstr "Starred"
+
+#: mod/network.php:947
+msgid "Favourite Posts"
+msgstr "My favourite posts"
+
+#: mod/notifications.php:38
+msgid "Invalid request identifier."
+msgstr "Invalid request identifier."
+
+#: mod/notifications.php:47 mod/notifications.php:183
+#: mod/notifications.php:230
+msgid "Discard"
+msgstr "Discard"
+
+#: mod/notifications.php:108
+msgid "Network Notifications"
+msgstr "Network notifications"
+
+#: mod/notifications.php:114 mod/notify.php:73
+msgid "System Notifications"
+msgstr "System notifications"
+
+#: mod/notifications.php:120
+msgid "Personal Notifications"
+msgstr "Personal notifications"
+
+#: mod/notifications.php:126
+msgid "Home Notifications"
+msgstr "Home notifications"
+
+#: mod/notifications.php:155
+msgid "Show Ignored Requests"
+msgstr "Show ignored requests."
+
+#: mod/notifications.php:155
+msgid "Hide Ignored Requests"
+msgstr "Hide ignored requests"
+
+#: mod/notifications.php:167 mod/notifications.php:237
+msgid "Notification type: "
+msgstr "Notification type: "
+
+#: mod/notifications.php:170
+#, php-format
+msgid "suggested by %s"
+msgstr "suggested by %s"
+
+#: mod/notifications.php:176 mod/notifications.php:255
+msgid "Post a new friend activity"
+msgstr "Post a new friend activity"
+
+#: mod/notifications.php:176 mod/notifications.php:255
+msgid "if applicable"
+msgstr "if applicable"
+
+#: mod/notifications.php:198
+msgid "Claims to be known to you: "
+msgstr "Says they know me:"
+
+#: mod/notifications.php:199
+msgid "yes"
+msgstr "yes"
+
+#: mod/notifications.php:199
+msgid "no"
+msgstr "no"
+
+#: mod/notifications.php:200 mod/notifications.php:205
+msgid "Shall your connection be bidirectional or not?"
+msgstr "Shall your connection be in both directions or not?"
+
+#: mod/notifications.php:201 mod/notifications.php:206
+#, php-format
+msgid ""
+"Accepting %s as a friend allows %s to subscribe to your posts, and you will "
+"also receive updates from them in your news feed."
+msgstr "Accepting %s as a friend allows %s to subscribe to your posts; you will also receive updates from them in your news feed."
+
+#: mod/notifications.php:202
+#, php-format
+msgid ""
+"Accepting %s as a subscriber allows them to subscribe to your posts, but you"
+" will not receive updates from them in your news feed."
+msgstr "Accepting %s as a subscriber allows them to subscribe to your posts, but you will not receive updates from them in your news feed."
 
-#: mod/admin.php:1234
+#: mod/notifications.php:207
+#, php-format
 msgid ""
-"Enable this if your system doesn't allow the use of 'proc_open'. This can "
-"happen on shared hosters. If this is enabled you should increase the "
-"frequency of poller calls in your crontab."
-msgstr "Enable this if your system doesn't allow the use of 'proc_open'. This can happen on shared hosts. If this is enabled you should increase the frequency of poller calls in your crontab."
+"Accepting %s as a sharer allows them to subscribe to your posts, but you "
+"will not receive updates from them in your news feed."
+msgstr "Accepting %s as a sharer allows them to subscribe to your posts, but you will not receive updates from them in your news feed."
 
-#: mod/admin.php:1235
-msgid "Enable fastlane"
-msgstr "Enable fast-lane"
+#: mod/notifications.php:218
+msgid "Friend"
+msgstr "Friend"
 
-#: mod/admin.php:1235
-msgid ""
-"When enabed, the fastlane mechanism starts an additional worker if processes"
-" with higher priority are blocked by processes of lower priority."
-msgstr "The fast-lane mechanism starts an additional worker if processes with higher priority are blocked by processes of lower priority."
+#: mod/notifications.php:219
+msgid "Sharer"
+msgstr "Sharer"
 
-#: mod/admin.php:1236
-msgid "Enable frontend worker"
-msgstr "Enable frontend worker"
+#: mod/notifications.php:219
+msgid "Subscriber"
+msgstr "Subscriber"
 
-#: mod/admin.php:1236
-msgid ""
-"When enabled the Worker process is triggered when backend access is "
-"performed (e.g. messages being delivered). On smaller sites you might want "
-"to call yourdomain.tld/worker on a regular basis via an external cron job. "
-"You should only enable this option if you cannot utilize cron/scheduled jobs"
-" on your server. The worker background process needs to be activated for "
-"this."
-msgstr "If enabled the Worker process is triggered when backend access is performed (e.g. messages being delivered). On smaller sites you might want to call yourdomain.tld/worker on a regular basis via an external cron job. You should only enable this option if you cannot utilize cron/scheduled jobs on your server. The worker background process needs to be activated for this."
+#: mod/notifications.php:275
+msgid "No introductions."
+msgstr "No introductions."
 
-#: mod/admin.php:1266
-msgid "Update has been marked successful"
-msgstr "Update has been marked successful"
+#: mod/notifications.php:316
+msgid "Show unread"
+msgstr "Show unread"
 
-#: mod/admin.php:1274
-#, php-format
-msgid "Database structure update %s was successfully applied."
-msgstr "Database structure update %s was successfully applied."
+#: mod/notifications.php:316
+msgid "Show all"
+msgstr "Show all"
 
-#: mod/admin.php:1277
+#: mod/notifications.php:322
 #, php-format
-msgid "Executing of database structure update %s failed with error: %s"
-msgstr "Executing of database structure update %s failed with error: %s"
+msgid "No more %s notifications."
+msgstr "No more %s notifications."
 
-#: mod/admin.php:1291
-#, php-format
-msgid "Executing %s failed with error: %s"
-msgstr "Executing %s failed with error: %s"
+#: mod/notify.php:69
+msgid "No more system notifications."
+msgstr "No more system notifications."
 
-#: mod/admin.php:1294
-#, php-format
-msgid "Update %s was successfully applied."
-msgstr "Update %s was successfully applied."
+#: mod/oexchange.php:25
+msgid "Post successful."
+msgstr "Post successful."
 
-#: mod/admin.php:1297
-#, php-format
-msgid "Update %s did not return a status. Unknown if it succeeded."
-msgstr "Update %s did not return a status. Unknown if it succeeded."
+#: mod/openid.php:25
+msgid "OpenID protocol error. No ID returned."
+msgstr "OpenID protocol error. No ID returned."
 
-#: mod/admin.php:1300
-#, php-format
-msgid "There was no additional update function %s that needed to be called."
-msgstr "There was no additional update function %s that needed to be called."
+#: mod/openid.php:61
+msgid ""
+"Account not found and OpenID registration is not permitted on this site."
+msgstr "Account not found and OpenID registration is not permitted on this site."
 
-#: mod/admin.php:1320
-msgid "No failed updates."
-msgstr "No failed updates."
+#: mod/ostatus_subscribe.php:17
+msgid "Subscribing to OStatus contacts"
+msgstr "Subscribing to OStatus contacts"
 
-#: mod/admin.php:1321
-msgid "Check database structure"
-msgstr "Check database structure"
+#: mod/ostatus_subscribe.php:28
+msgid "No contact provided."
+msgstr "No contact provided."
 
-#: mod/admin.php:1326
-msgid "Failed Updates"
-msgstr "Failed updates"
+#: mod/ostatus_subscribe.php:34
+msgid "Couldn't fetch information for contact."
+msgstr "Couldn't fetch information for contact."
 
-#: mod/admin.php:1327
-msgid ""
-"This does not include updates prior to 1139, which did not return a status."
-msgstr "This does not include updates prior to 1139, which did not return a status."
+#: mod/ostatus_subscribe.php:43
+msgid "Couldn't fetch friends for contact."
+msgstr "Couldn't fetch friends for contact."
 
-#: mod/admin.php:1328
-msgid "Mark success (if update was manually applied)"
-msgstr "Mark success (if update was manually applied)"
+#: mod/ostatus_subscribe.php:57 mod/repair_ostatus.php:47
+msgid "Done"
+msgstr "Done"
 
-#: mod/admin.php:1329
-msgid "Attempt to execute this update step automatically"
-msgstr "Attempt to execute this update step automatically"
+#: mod/ostatus_subscribe.php:71
+msgid "success"
+msgstr "success"
 
-#: mod/admin.php:1363
-#, php-format
-msgid ""
-"\n"
-"\t\t\tDear %1$s,\n"
-"\t\t\t\tthe administrator of %2$s has set up an account for you."
-msgstr "\n\t\t\tDear %1$s,\n\t\t\t\tThe administrator of %2$s has set up an account for you."
+#: mod/ostatus_subscribe.php:73
+msgid "failed"
+msgstr "failed"
 
-#: mod/admin.php:1366
-#, php-format
-msgid ""
-"\n"
-"\t\t\tThe login details are as follows:\n"
-"\n"
-"\t\t\tSite Location:\t%1$s\n"
-"\t\t\tLogin Name:\t\t%2$s\n"
-"\t\t\tPassword:\t\t%3$s\n"
-"\n"
-"\t\t\tYou may change your password from your account \"Settings\" page after logging\n"
-"\t\t\tin.\n"
-"\n"
-"\t\t\tPlease take a few moments to review the other account settings on that page.\n"
-"\n"
-"\t\t\tYou may also wish to add some basic information to your default profile\n"
-"\t\t\t(on the \"Profiles\" page) so that other people can easily find you.\n"
-"\n"
-"\t\t\tWe recommend setting your full name, adding a profile photo,\n"
-"\t\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n"
-"\t\t\tperhaps what country you live in; if you do not wish to be more specific\n"
-"\t\t\tthan that.\n"
-"\n"
-"\t\t\tWe fully respect your right to privacy, and none of these items are necessary.\n"
-"\t\t\tIf you are new and do not know anybody here, they may help\n"
-"\t\t\tyou to make some new and interesting friends.\n"
-"\n"
-"\t\t\tThank you and welcome to %4$s."
-msgstr "\n\t\t\tThe login details are as follows:\n\n\t\t\tSite Location:\t%1$s\n\t\t\tLogin Name:\t\t%2$s\n\t\t\tPassword:\t\t%3$s\n\n\t\t\tYou may change your password from your account \"Settings\" page after logging\n\t\t\tin.\n\n\t\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\t\tYou may also wish to add some basic information to your default profile\n\t\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\t\tWe recommend setting your full name, adding a profile photo,\n\t\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\t\tperhaps what country you live in; if you do not wish to be more specific\n\t\t\tthan that.\n\n\t\t\tWe fully respect your right to privacy and none of these items are necessary.\n\t\t\tIf you are new and do not know anybody here, this may help\n\t\t\tyou to make some new and interesting friends.\n\n\t\t\tThank you and welcome to %4$s."
+#: mod/ostatus_subscribe.php:81 mod/repair_ostatus.php:53
+msgid "Keep this window open until done."
+msgstr "Keep this window open until done."
 
-#: mod/admin.php:1410
-#, php-format
-msgid "%s user blocked/unblocked"
-msgid_plural "%s users blocked/unblocked"
-msgstr[0] "%s user blocked/unblocked"
-msgstr[1] "%s users blocked/unblocked"
+#: mod/p.php:13
+msgid "Not Extended"
+msgstr "Not extended"
 
-#: mod/admin.php:1417
-#, php-format
-msgid "%s user deleted"
-msgid_plural "%s users deleted"
-msgstr[0] "%s user deleted"
-msgstr[1] "%s users deleted"
+#: mod/photos.php:97 mod/photos.php:1903
+msgid "Recent Photos"
+msgstr "Recent photos"
 
-#: mod/admin.php:1464
-#, php-format
-msgid "User '%s' deleted"
-msgstr "User '%s' deleted"
+#: mod/photos.php:100 mod/photos.php:1331 mod/photos.php:1905
+msgid "Upload New Photos"
+msgstr "Upload new photos"
 
-#: mod/admin.php:1472
-#, php-format
-msgid "User '%s' unblocked"
-msgstr "User '%s' unblocked"
+#: mod/photos.php:115 mod/settings.php:39
+msgid "everybody"
+msgstr "everybody"
 
-#: mod/admin.php:1472
-#, php-format
-msgid "User '%s' blocked"
-msgstr "User '%s' blocked"
+#: mod/photos.php:179
+msgid "Contact information unavailable"
+msgstr "Contact information unavailable"
 
-#: mod/admin.php:1580 mod/admin.php:1606
-msgid "Register date"
-msgstr "Registration date"
+#: mod/photos.php:200
+msgid "Album not found."
+msgstr "Album not found."
 
-#: mod/admin.php:1580 mod/admin.php:1606
-msgid "Last login"
-msgstr "Last login"
+#: mod/photos.php:233 mod/photos.php:245 mod/photos.php:1275
+msgid "Delete Album"
+msgstr "Delete album"
 
-#: mod/admin.php:1580 mod/admin.php:1606
-msgid "Last item"
-msgstr "Last item"
+#: mod/photos.php:243
+msgid "Do you really want to delete this photo album and all its photos?"
+msgstr "Do you really want to delete this photo album and all its photos?"
 
-#: mod/admin.php:1580 mod/settings.php:45
-msgid "Account"
-msgstr "Account"
+#: mod/photos.php:326 mod/photos.php:337 mod/photos.php:1601
+msgid "Delete Photo"
+msgstr "Delete photo"
 
-#: mod/admin.php:1589
-msgid "Add User"
-msgstr "Add user"
+#: mod/photos.php:335
+msgid "Do you really want to delete this photo?"
+msgstr "Do you really want to delete this photo?"
 
-#: mod/admin.php:1590
-msgid "select all"
-msgstr "select all"
+#: mod/photos.php:716
+#, php-format
+msgid "%1$s was tagged in %2$s by %3$s"
+msgstr "%1$s was tagged in %2$s by %3$s"
 
-#: mod/admin.php:1591
-msgid "User registrations waiting for confirm"
-msgstr "User registrations awaiting confirmation"
+#: mod/photos.php:716
+msgid "a photo"
+msgstr "a photo"
 
-#: mod/admin.php:1592
-msgid "User waiting for permanent deletion"
-msgstr "User awaiting permanent deletion"
+#: mod/photos.php:816 mod/profile_photo.php:156 mod/wall_upload.php:182
+#, php-format
+msgid "Image exceeds size limit of %s"
+msgstr "Image exceeds size limit of %s"
 
-#: mod/admin.php:1593
-msgid "Request date"
-msgstr "Request date"
+#: mod/photos.php:824
+msgid "Image file is empty."
+msgstr "Image file is empty."
 
-#: mod/admin.php:1594
-msgid "No registrations."
-msgstr "No registrations."
+#: mod/photos.php:857 mod/profile_photo.php:165 mod/wall_upload.php:219
+msgid "Unable to process image."
+msgstr "Unable to process image."
 
-#: mod/admin.php:1595
-msgid "Note from the user"
-msgstr "Note from the user"
+#: mod/photos.php:886 mod/profile_photo.php:315 mod/wall_upload.php:258
+msgid "Image upload failed."
+msgstr "Image upload failed."
 
-#: mod/admin.php:1597
-msgid "Deny"
-msgstr "Deny"
+#: mod/photos.php:991
+msgid "No photos selected"
+msgstr "No photos selected"
 
-#: mod/admin.php:1599 mod/contacts.php:618 mod/contacts.php:818
-#: mod/contacts.php:996
-msgid "Block"
-msgstr "Block"
+#: mod/photos.php:1094 mod/videos.php:312
+msgid "Access to this item is restricted."
+msgstr "Access to this item is restricted."
 
-#: mod/admin.php:1600 mod/contacts.php:618 mod/contacts.php:818
-#: mod/contacts.php:996
-msgid "Unblock"
-msgstr "Unblock"
+#: mod/photos.php:1154
+#, php-format
+msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."
+msgstr "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."
 
-#: mod/admin.php:1601
-msgid "Site admin"
-msgstr "Site admin"
+#: mod/photos.php:1191
+msgid "Upload Photos"
+msgstr "Upload photos"
 
-#: mod/admin.php:1602
-msgid "Account expired"
-msgstr "Account expired"
+#: mod/photos.php:1195 mod/photos.php:1270
+msgid "New album name: "
+msgstr "New album name: "
 
-#: mod/admin.php:1605
-msgid "New User"
-msgstr "New user"
+#: mod/photos.php:1196
+msgid "or existing album name: "
+msgstr "or existing album name: "
 
-#: mod/admin.php:1606
-msgid "Deleted since"
-msgstr "Deleted since"
+#: mod/photos.php:1197
+msgid "Do not show a status post for this upload"
+msgstr "Do not show a status post for this upload"
 
-#: mod/admin.php:1611
-msgid ""
-"Selected users will be deleted!\\n\\nEverything these users had posted on "
-"this site will be permanently deleted!\\n\\nAre you sure?"
-msgstr "Selected users will be deleted!\\n\\nEverything these users has posted on this site will be permanently deleted!\\n\\nAre you sure?"
+#: mod/photos.php:1208 mod/photos.php:1605 mod/settings.php:1309
+msgid "Show to Groups"
+msgstr "Show to groups"
 
-#: mod/admin.php:1612
-msgid ""
-"The user {0} will be deleted!\\n\\nEverything this user has posted on this "
-"site will be permanently deleted!\\n\\nAre you sure?"
-msgstr "The user {0} will be deleted!\\n\\nEverything this user has posted on this site will be permanently deleted!\\n\\nAre you sure?"
+#: mod/photos.php:1209 mod/photos.php:1606 mod/settings.php:1310
+msgid "Show to Contacts"
+msgstr "Show to contacts"
 
-#: mod/admin.php:1622
-msgid "Name of the new user."
-msgstr "Name of the new user."
+#: mod/photos.php:1210
+msgid "Private Photo"
+msgstr "Private photo"
 
-#: mod/admin.php:1623
-msgid "Nickname"
-msgstr "Nickname"
+#: mod/photos.php:1211
+msgid "Public Photo"
+msgstr "Public photo"
 
-#: mod/admin.php:1623
-msgid "Nickname of the new user."
-msgstr "Nickname of the new user."
+#: mod/photos.php:1281
+msgid "Edit Album"
+msgstr "Edit album"
 
-#: mod/admin.php:1624
-msgid "Email address of the new user."
-msgstr "Email address of the new user."
+#: mod/photos.php:1286
+msgid "Show Newest First"
+msgstr "Show newest first"
 
-#: mod/admin.php:1667
-#, php-format
-msgid "Plugin %s disabled."
-msgstr "Plugin %s disabled."
+#: mod/photos.php:1288
+msgid "Show Oldest First"
+msgstr "Show oldest first"
 
-#: mod/admin.php:1671
-#, php-format
-msgid "Plugin %s enabled."
-msgstr "Plugin %s enabled."
+#: mod/photos.php:1317 mod/photos.php:1888
+msgid "View Photo"
+msgstr "View photo"
 
-#: mod/admin.php:1682 mod/admin.php:1934
-msgid "Disable"
-msgstr "Disable"
+#: mod/photos.php:1362
+msgid "Permission denied. Access to this item may be restricted."
+msgstr "Permission denied. Access to this item may be restricted."
 
-#: mod/admin.php:1684 mod/admin.php:1936
-msgid "Enable"
-msgstr "Enable"
+#: mod/photos.php:1364
+msgid "Photo not available"
+msgstr "Photo not available"
 
-#: mod/admin.php:1707 mod/admin.php:1983
-msgid "Toggle"
-msgstr "Toggle"
+#: mod/photos.php:1425
+msgid "View photo"
+msgstr "View photo"
 
-#: mod/admin.php:1715 mod/admin.php:1992
-msgid "Author: "
-msgstr "Author: "
+#: mod/photos.php:1425
+msgid "Edit photo"
+msgstr "Edit photo"
 
-#: mod/admin.php:1716 mod/admin.php:1993
-msgid "Maintainer: "
-msgstr "Maintainer: "
+#: mod/photos.php:1426
+msgid "Use as profile photo"
+msgstr "Use as profile photo"
 
-#: mod/admin.php:1771
-msgid "Reload active plugins"
-msgstr "Reload active plugins"
+#: mod/photos.php:1451
+msgid "View Full Size"
+msgstr "View full size"
 
-#: mod/admin.php:1776
-#, php-format
-msgid ""
-"There are currently no plugins available on your node. You can find the "
-"official plugin repository at %1$s and might find other interesting plugins "
-"in the open plugin registry at %2$s"
-msgstr "There are currently no plugins available on your node. You can find the official plugin repository at %1$s and might find other interesting plugins in the open plugin registry at %2$s"
+#: mod/photos.php:1541
+msgid "Tags: "
+msgstr "Tags: "
 
-#: mod/admin.php:1895
-msgid "No themes found."
-msgstr "No themes found."
+#: mod/photos.php:1544
+msgid "[Remove any tag]"
+msgstr "[Remove any tag]"
 
-#: mod/admin.php:1974
-msgid "Screenshot"
-msgstr "Screenshot"
+#: mod/photos.php:1587
+msgid "New album name"
+msgstr "New album name"
 
-#: mod/admin.php:2034
-msgid "Reload active themes"
-msgstr "Reload active themes"
+#: mod/photos.php:1588
+msgid "Caption"
+msgstr "Caption"
 
-#: mod/admin.php:2039
-#, php-format
-msgid "No themes found on the system. They should be paced in %1$s"
-msgstr "No themes found on the system. They should be paced in %1$s"
+#: mod/photos.php:1589
+msgid "Add a Tag"
+msgstr "Add Tag"
 
-#: mod/admin.php:2040
-msgid "[Experimental]"
-msgstr "[Experimental]"
+#: mod/photos.php:1589
+msgid ""
+"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
+msgstr "Example: @bob, @jojo@example.com, #California, #camping"
 
-#: mod/admin.php:2041
-msgid "[Unsupported]"
-msgstr "[Unsupported]"
+#: mod/photos.php:1590
+msgid "Do not rotate"
+msgstr "Do not rotate"
 
-#: mod/admin.php:2065
-msgid "Log settings updated."
-msgstr "Log settings updated."
+#: mod/photos.php:1591
+msgid "Rotate CW (right)"
+msgstr "Rotate right (CW)"
 
-#: mod/admin.php:2097
-msgid "PHP log currently enabled."
-msgstr "PHP log currently enabled."
+#: mod/photos.php:1592
+msgid "Rotate CCW (left)"
+msgstr "Rotate left (CCW)"
 
-#: mod/admin.php:2099
-msgid "PHP log currently disabled."
-msgstr "PHP log currently disabled."
+#: mod/photos.php:1607
+msgid "Private photo"
+msgstr "Private photo"
 
-#: mod/admin.php:2108
-msgid "Clear"
-msgstr "Clear"
+#: mod/photos.php:1608
+msgid "Public photo"
+msgstr "Public photo"
 
-#: mod/admin.php:2113
-msgid "Enable Debugging"
-msgstr "Enable debugging"
+#: mod/photos.php:1817
+msgid "Map"
+msgstr "Map"
 
-#: mod/admin.php:2114
-msgid "Log file"
-msgstr "Log file"
+#: mod/photos.php:1894 mod/videos.php:396
+msgid "View Album"
+msgstr "View album"
 
-#: mod/admin.php:2114
-msgid ""
-"Must be writable by web server. Relative to your Friendica top-level "
-"directory."
-msgstr "Must be writable by web server and relative to your Friendica top-level directory."
+#: mod/ping.php:275
+msgid "{0} wants to be your friend"
+msgstr "{0} wants to be your friend"
 
-#: mod/admin.php:2115
-msgid "Log level"
-msgstr "Log level"
+#: mod/ping.php:290
+msgid "{0} sent you a message"
+msgstr "{0} sent you a message"
 
-#: mod/admin.php:2118
-msgid "PHP logging"
-msgstr "PHP logging"
+#: mod/ping.php:305
+msgid "{0} requested registration"
+msgstr "{0} requested registration"
 
-#: mod/admin.php:2119
-msgid ""
-"To enable logging of PHP errors and warnings you can add the following to "
-"the .htconfig.php file of your installation. The filename set in the "
-"'error_log' line is relative to the friendica top-level directory and must "
-"be writeable by the web server. The option '1' for 'log_errors' and "
-"'display_errors' is to enable these options, set to '0' to disable them."
-msgstr "To enable logging of PHP errors and warnings you can add the following to the .htconfig.php file of your installation. The file name set in the 'error_log' line is relative to the Friendica top-level directory and must be writeable by the web server. The option '1' for 'log_errors' and 'display_errors' is to enable these options, set to '0' to disable them."
+#: mod/poke.php:198
+msgid "Poke/Prod"
+msgstr "Poke/Prod"
 
-#: mod/admin.php:2249 mod/admin.php:2250 mod/settings.php:783
-msgid "Off"
-msgstr "Off"
+#: mod/poke.php:199
+msgid "poke, prod or do other things to somebody"
+msgstr "Poke, prod or do other things to somebody"
 
-#: mod/admin.php:2249 mod/admin.php:2250 mod/settings.php:783
-msgid "On"
-msgstr "On"
+#: mod/poke.php:200
+msgid "Recipient"
+msgstr "Recipient:"
 
-#: mod/admin.php:2250
-#, php-format
-msgid "Lock feature %s"
-msgstr "Lock feature %s"
+#: mod/poke.php:201
+msgid "Choose what you wish to do to recipient"
+msgstr "Choose what you wish to do:"
 
-#: mod/admin.php:2258
-msgid "Manage Additional Features"
-msgstr "Manage additional features"
+#: mod/poke.php:204
+msgid "Make this post private"
+msgstr "Make this post private"
 
-#: mod/community.php:23
-msgid "Not available."
-msgstr "Not available."
+#: mod/profile.php:177
+msgid "Tips for New Members"
+msgstr "Tips for New Members"
 
-#: mod/contacts.php:137
-#, php-format
-msgid "%d contact edited."
-msgid_plural "%d contacts edited."
-msgstr[0] "%d contact edited."
-msgstr[1] "%d contacts edited."
+#: mod/profile_photo.php:45
+msgid "Image uploaded but image cropping failed."
+msgstr "Image uploaded but image cropping failed."
 
-#: mod/contacts.php:172 mod/contacts.php:381
-msgid "Could not access contact record."
-msgstr "Could not access contact record."
+#: mod/profile_photo.php:78 mod/profile_photo.php:86 mod/profile_photo.php:94
+#: mod/profile_photo.php:323
+#, php-format
+msgid "Image size reduction [%s] failed."
+msgstr "Image size reduction [%s] failed."
 
-#: mod/contacts.php:186
-msgid "Could not locate selected profile."
-msgstr "Could not locate selected profile."
+#: mod/profile_photo.php:128
+msgid ""
+"Shift-reload the page or clear browser cache if the new photo does not "
+"display immediately."
+msgstr "Shift-reload the page or clear browser cache if the new photo does not display immediately."
 
-#: mod/contacts.php:219
-msgid "Contact updated."
-msgstr "Contact updated."
+#: mod/profile_photo.php:137
+msgid "Unable to process image"
+msgstr "Unable to process image"
 
-#: mod/contacts.php:402
-msgid "Contact has been blocked"
-msgstr "Contact has been blocked"
+#: mod/profile_photo.php:254
+msgid "Upload File:"
+msgstr "Upload File:"
 
-#: mod/contacts.php:402
-msgid "Contact has been unblocked"
-msgstr "Contact has been unblocked"
+#: mod/profile_photo.php:255
+msgid "Select a profile:"
+msgstr "Select a profile:"
 
-#: mod/contacts.php:413
-msgid "Contact has been ignored"
-msgstr "Contact has been ignored"
+#: mod/profile_photo.php:257
+msgid "Upload"
+msgstr "Upload"
 
-#: mod/contacts.php:413
-msgid "Contact has been unignored"
-msgstr "Contact has been unignored"
+#: mod/profile_photo.php:260
+msgid "or"
+msgstr "or"
 
-#: mod/contacts.php:425
-msgid "Contact has been archived"
-msgstr "Contact has been archived"
+#: mod/profile_photo.php:260
+msgid "skip this step"
+msgstr "skip this step"
 
-#: mod/contacts.php:425
-msgid "Contact has been unarchived"
-msgstr "Contact has been unarchived"
+#: mod/profile_photo.php:260
+msgid "select a photo from your photo albums"
+msgstr "select a photo from your photo albums"
 
-#: mod/contacts.php:450
-msgid "Drop contact"
-msgstr "Drop contact"
+#: mod/profile_photo.php:274
+msgid "Crop Image"
+msgstr "Crop Image"
 
-#: mod/contacts.php:453 mod/contacts.php:814
-msgid "Do you really want to delete this contact?"
-msgstr "Do you really want to delete this contact?"
+#: mod/profile_photo.php:275
+msgid "Please adjust the image cropping for optimum viewing."
+msgstr "Please adjust the image cropping for optimum viewing."
 
-#: mod/contacts.php:472
-msgid "Contact has been removed."
-msgstr "Contact has been removed."
+#: mod/profile_photo.php:277
+msgid "Done Editing"
+msgstr "Done editing"
 
-#: mod/contacts.php:509
-#, php-format
-msgid "You are mutual friends with %s"
-msgstr "You are mutual friends with %s"
+#: mod/profile_photo.php:313
+msgid "Image uploaded successfully."
+msgstr "Image uploaded successfully."
 
-#: mod/contacts.php:513
-#, php-format
-msgid "You are sharing with %s"
-msgstr "You are sharing with %s"
+#: mod/profiles.php:43
+msgid "Profile deleted."
+msgstr "Profile deleted."
 
-#: mod/contacts.php:518
-#, php-format
-msgid "%s is sharing with you"
-msgstr "%s is sharing with you"
+#: mod/profiles.php:59 mod/profiles.php:95
+msgid "Profile-"
+msgstr "Profile-"
 
-#: mod/contacts.php:538
-msgid "Private communications are not available for this contact."
-msgstr "Private communications are not available for this contact."
+#: mod/profiles.php:78 mod/profiles.php:123
+msgid "New profile created."
+msgstr "New profile created."
 
-#: mod/contacts.php:545
-msgid "(Update was successful)"
-msgstr "(Update was successful)"
+#: mod/profiles.php:101
+msgid "Profile unavailable to clone."
+msgstr "Profile unavailable to clone."
 
-#: mod/contacts.php:545
-msgid "(Update was not successful)"
-msgstr "(Update was not successful)"
+#: mod/profiles.php:197
+msgid "Profile Name is required."
+msgstr "Profile name is required."
 
-#: mod/contacts.php:547 mod/contacts.php:977
-msgid "Suggest friends"
-msgstr "Suggest friends"
+#: mod/profiles.php:337
+msgid "Marital Status"
+msgstr "Marital status"
 
-#: mod/contacts.php:551
-#, php-format
-msgid "Network type: %s"
-msgstr "Network type: %s"
+#: mod/profiles.php:341
+msgid "Romantic Partner"
+msgstr "Romantic partner"
 
-#: mod/contacts.php:564
-msgid "Communications lost with this contact!"
-msgstr "Communications lost with this contact!"
+#: mod/profiles.php:353
+msgid "Work/Employment"
+msgstr "Work/Employment:"
 
-#: mod/contacts.php:567
-msgid "Fetch further information for feeds"
-msgstr "Fetch further information for feeds"
+#: mod/profiles.php:356
+msgid "Religion"
+msgstr "Religion"
 
-#: mod/contacts.php:568
-msgid "Fetch information"
-msgstr "Fetch information"
+#: mod/profiles.php:360
+msgid "Political Views"
+msgstr "Political views"
 
-#: mod/contacts.php:568
-msgid "Fetch information and keywords"
-msgstr "Fetch information and keywords"
+#: mod/profiles.php:364
+msgid "Gender"
+msgstr "Gender"
 
-#: mod/contacts.php:586
-msgid "Contact"
-msgstr "Contact"
+#: mod/profiles.php:368
+msgid "Sexual Preference"
+msgstr "Sexual preference"
 
-#: mod/contacts.php:589
-msgid "Profile Visibility"
-msgstr "Profile visibility"
+#: mod/profiles.php:372
+msgid "XMPP"
+msgstr "XMPP"
 
-#: mod/contacts.php:590
-#, php-format
-msgid ""
-"Please choose the profile you would like to display to %s when viewing your "
-"profile securely."
-msgstr "Please choose the profile you would like to display to %s when viewing your profile securely."
+#: mod/profiles.php:376
+msgid "Homepage"
+msgstr "Homepage"
 
-#: mod/contacts.php:591
-msgid "Contact Information / Notes"
-msgstr "Personal note"
+#: mod/profiles.php:380 mod/profiles.php:699
+msgid "Interests"
+msgstr "Interests"
 
-#: mod/contacts.php:592
-msgid "Their personal note"
-msgstr "Their personal note"
+#: mod/profiles.php:384
+msgid "Address"
+msgstr "Address"
 
-#: mod/contacts.php:594
-msgid "Edit contact notes"
-msgstr "Edit contact notes"
+#: mod/profiles.php:391 mod/profiles.php:695
+msgid "Location"
+msgstr "Location"
 
-#: mod/contacts.php:600
-msgid "Block/Unblock contact"
-msgstr "Block/Unblock contact"
+#: mod/profiles.php:476
+msgid "Profile updated."
+msgstr "Profile updated."
 
-#: mod/contacts.php:601
-msgid "Ignore contact"
-msgstr "Ignore contact"
+#: mod/profiles.php:568
+msgid " and "
+msgstr " and "
 
-#: mod/contacts.php:602
-msgid "Repair URL settings"
-msgstr "Repair URL settings"
+#: mod/profiles.php:577
+msgid "public profile"
+msgstr "public profile"
 
-#: mod/contacts.php:603
-msgid "View conversations"
-msgstr "View conversations"
+#: mod/profiles.php:580
+#, php-format
+msgid "%1$s changed %2$s to &ldquo;%3$s&rdquo;"
+msgstr "%1$s changed %2$s to &ldquo;%3$s&rdquo;"
 
-#: mod/contacts.php:609
-msgid "Last update:"
-msgstr "Last update:"
+#: mod/profiles.php:581
+#, php-format
+msgid " - Visit %1$s's %2$s"
+msgstr " - Visit %1$s's %2$s"
 
-#: mod/contacts.php:611
-msgid "Update public posts"
-msgstr "Update public posts"
+#: mod/profiles.php:583
+#, php-format
+msgid "%1$s has an updated %2$s, changing %3$s."
+msgstr "%1$s has an updated %2$s, changing %3$s."
 
-#: mod/contacts.php:613 mod/contacts.php:987
-msgid "Update now"
-msgstr "Update now"
+#: mod/profiles.php:641
+msgid "Hide contacts and friends:"
+msgstr "Hide contacts and friends:"
 
-#: mod/contacts.php:619 mod/contacts.php:819 mod/contacts.php:1004
-msgid "Unignore"
-msgstr "Unignore"
+#: mod/profiles.php:646
+msgid "Hide your contact/friend list from viewers of this profile?"
+msgstr "Hide your contact/friend list from viewers of this profile?"
 
-#: mod/contacts.php:623
-msgid "Currently blocked"
-msgstr "Currently blocked"
+#: mod/profiles.php:671
+msgid "Show more profile fields:"
+msgstr "Show more profile fields:"
 
-#: mod/contacts.php:624
-msgid "Currently ignored"
-msgstr "Currently ignored"
+#: mod/profiles.php:683
+msgid "Profile Actions"
+msgstr "Profile actions"
 
-#: mod/contacts.php:625
-msgid "Currently archived"
-msgstr "Currently archived"
+#: mod/profiles.php:684
+msgid "Edit Profile Details"
+msgstr "Edit Profile Details"
 
-#: mod/contacts.php:626
-msgid ""
-"Replies/likes to your public posts <strong>may</strong> still be visible"
-msgstr "Replies/Likes to your public posts <strong>may</strong> still be visible"
+#: mod/profiles.php:686
+msgid "Change Profile Photo"
+msgstr "Change profile photo"
 
-#: mod/contacts.php:627
-msgid "Notification for new posts"
-msgstr "Notification for new posts"
+#: mod/profiles.php:687
+msgid "View this profile"
+msgstr "View this profile"
 
-#: mod/contacts.php:627
-msgid "Send a notification of every new post of this contact"
-msgstr "Send notification for every new post from this contact"
+#: mod/profiles.php:689
+msgid "Create a new profile using these settings"
+msgstr "Create a new profile using these settings"
 
-#: mod/contacts.php:630
-msgid "Blacklisted keywords"
-msgstr "Blacklisted keywords"
+#: mod/profiles.php:690
+msgid "Clone this profile"
+msgstr "Clone this profile"
 
-#: mod/contacts.php:630
-msgid ""
-"Comma separated list of keywords that should not be converted to hashtags, "
-"when \"Fetch information and keywords\" is selected"
-msgstr "Comma separated list of keywords that should not be converted to hashtags, when \"Fetch information and keywords\" is selected"
+#: mod/profiles.php:691
+msgid "Delete this profile"
+msgstr "Delete this profile"
 
-#: mod/contacts.php:648
-msgid "Actions"
-msgstr "Actions"
+#: mod/profiles.php:693
+msgid "Basic information"
+msgstr "Basic information"
 
-#: mod/contacts.php:651
-msgid "Contact Settings"
-msgstr "Notification and privacy "
+#: mod/profiles.php:694
+msgid "Profile picture"
+msgstr "Profile picture"
 
-#: mod/contacts.php:697
-msgid "Suggestions"
-msgstr "Suggestions"
+#: mod/profiles.php:696
+msgid "Preferences"
+msgstr "Preferences"
 
-#: mod/contacts.php:700
-msgid "Suggest potential friends"
-msgstr "Suggest potential friends"
+#: mod/profiles.php:697
+msgid "Status information"
+msgstr "Status information"
 
-#: mod/contacts.php:708
-msgid "Show all contacts"
-msgstr "Show all contacts"
+#: mod/profiles.php:698
+msgid "Additional information"
+msgstr "Additional information"
 
-#: mod/contacts.php:713
-msgid "Unblocked"
-msgstr "Unblocked"
+#: mod/profiles.php:701
+msgid "Relation"
+msgstr "Relation"
 
-#: mod/contacts.php:716
-msgid "Only show unblocked contacts"
-msgstr "Only show unblocked contacts"
+#: mod/profiles.php:705
+msgid "Your Gender:"
+msgstr "Gender:"
 
-#: mod/contacts.php:722
-msgid "Blocked"
-msgstr "Blocked"
+#: mod/profiles.php:706
+msgid "<span class=\"heart\">&hearts;</span> Marital Status:"
+msgstr "<span class=\"heart\">&hearts;</span> Marital status:"
 
-#: mod/contacts.php:725
-msgid "Only show blocked contacts"
-msgstr "Only show blocked contacts"
+#: mod/profiles.php:708
+msgid "Example: fishing photography software"
+msgstr "Example: fishing photography software"
 
-#: mod/contacts.php:731
-msgid "Ignored"
-msgstr "Ignored"
+#: mod/profiles.php:713
+msgid "Profile Name:"
+msgstr "Profile name:"
 
-#: mod/contacts.php:734
-msgid "Only show ignored contacts"
-msgstr "Only show ignored contacts"
+#: mod/profiles.php:715
+msgid ""
+"This is your <strong>public</strong> profile.<br />It <strong>may</strong> "
+"be visible to anybody using the internet."
+msgstr "This is your <strong>public</strong> profile.<br />It <strong>may</strong> be visible to anybody using the internet."
 
-#: mod/contacts.php:740
-msgid "Archived"
-msgstr "Archived"
+#: mod/profiles.php:716
+msgid "Your Full Name:"
+msgstr "My full name:"
 
-#: mod/contacts.php:743
-msgid "Only show archived contacts"
-msgstr "Only show archived contacts"
+#: mod/profiles.php:717
+msgid "Title/Description:"
+msgstr "Title/Description:"
 
-#: mod/contacts.php:749
-msgid "Hidden"
-msgstr "Hidden"
+#: mod/profiles.php:720
+msgid "Street Address:"
+msgstr "Street address:"
 
-#: mod/contacts.php:752
-msgid "Only show hidden contacts"
-msgstr "Only show hidden contacts"
+#: mod/profiles.php:721
+msgid "Locality/City:"
+msgstr "Locality/City:"
 
-#: mod/contacts.php:809
-msgid "Search your contacts"
-msgstr "Search your contacts"
+#: mod/profiles.php:722
+msgid "Region/State:"
+msgstr "Region/State:"
 
-#: mod/contacts.php:817 mod/settings.php:162 mod/settings.php:708
-msgid "Update"
-msgstr "Update"
+#: mod/profiles.php:723
+msgid "Postal/Zip Code:"
+msgstr "Postcode:"
 
-#: mod/contacts.php:820 mod/contacts.php:1012
-msgid "Archive"
-msgstr "Archive"
+#: mod/profiles.php:724
+msgid "Country:"
+msgstr "Country:"
 
-#: mod/contacts.php:820 mod/contacts.php:1012
-msgid "Unarchive"
-msgstr "Unarchive"
+#: mod/profiles.php:728
+msgid "Who: (if applicable)"
+msgstr "Who: (if applicable)"
 
-#: mod/contacts.php:823
-msgid "Batch Actions"
-msgstr "Batch actions"
+#: mod/profiles.php:728
+msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
+msgstr "Examples: cathy123, Cathy Williams, cathy@example.com"
 
-#: mod/contacts.php:869
-msgid "View all contacts"
-msgstr "View all contacts"
+#: mod/profiles.php:729
+msgid "Since [date]:"
+msgstr "Since when:"
 
-#: mod/contacts.php:879
-msgid "View all common friends"
-msgstr "View all common friends"
+#: mod/profiles.php:731
+msgid "Tell us about yourself..."
+msgstr "About myself:"
 
-#: mod/contacts.php:886
-msgid "Advanced Contact Settings"
-msgstr "Advanced contact settings"
+#: mod/profiles.php:732
+msgid "XMPP (Jabber) address:"
+msgstr "XMPP (Jabber) address:"
 
-#: mod/contacts.php:920
-msgid "Mutual Friendship"
-msgstr "Mutual friendship"
+#: mod/profiles.php:732
+msgid ""
+"The XMPP address will be propagated to your contacts so that they can follow"
+" you."
+msgstr "The XMPP address will be propagated to your contacts so that they can follow you."
 
-#: mod/contacts.php:924
-msgid "is a fan of yours"
-msgstr "is a fan of yours"
+#: mod/profiles.php:733
+msgid "Homepage URL:"
+msgstr "Homepage URL:"
 
-#: mod/contacts.php:928
-msgid "you are a fan of"
-msgstr "I follow them"
+#: mod/profiles.php:736
+msgid "Religious Views:"
+msgstr "Religious views:"
 
-#: mod/contacts.php:998
-msgid "Toggle Blocked status"
-msgstr "Toggle blocked status"
+#: mod/profiles.php:737
+msgid "Public Keywords:"
+msgstr "Public keywords:"
 
-#: mod/contacts.php:1006
-msgid "Toggle Ignored status"
-msgstr "Toggle ignored status"
+#: mod/profiles.php:737
+msgid "(Used for suggesting potential friends, can be seen by others)"
+msgstr "Used for suggesting potential friends, can be seen by others."
 
-#: mod/contacts.php:1014
-msgid "Toggle Archive status"
-msgstr "Toggle archive status"
+#: mod/profiles.php:738
+msgid "Private Keywords:"
+msgstr "Private keywords:"
 
-#: mod/contacts.php:1022
-msgid "Delete contact"
-msgstr "Delete contact"
+#: mod/profiles.php:738
+msgid "(Used for searching profiles, never shown to others)"
+msgstr "Used for searching profiles, never shown to others."
 
-#: mod/display.php:500
-msgid "Item has been removed."
-msgstr "Item has been removed."
+#: mod/profiles.php:741
+msgid "Musical interests"
+msgstr "Music:"
 
-#: mod/help.php:44
-msgid "Help:"
-msgstr "Help:"
+#: mod/profiles.php:742
+msgid "Books, literature"
+msgstr "Books, literature, poetry:"
 
-#: mod/help.php:59 index.php:304
-msgid "Page not found."
-msgstr "Page not found"
+#: mod/profiles.php:743
+msgid "Television"
+msgstr "Television:"
 
-#: mod/invite.php:30
-msgid "Total invitation limit exceeded."
-msgstr "Total invitation limit exceeded"
+#: mod/profiles.php:744
+msgid "Film/dance/culture/entertainment"
+msgstr "Film, dance, culture, entertainment"
 
-#: mod/invite.php:53
-#, php-format
-msgid "%s : Not a valid email address."
-msgstr "%s : Not a valid email address"
+#: mod/profiles.php:745
+msgid "Hobbies/Interests"
+msgstr "Hobbies/Interests:"
 
-#: mod/invite.php:78
-msgid "Please join us on Friendica"
-msgstr "Please join us on Friendica."
+#: mod/profiles.php:746
+msgid "Love/romance"
+msgstr "Love/Romance:"
 
-#: mod/invite.php:89
-msgid "Invitation limit exceeded. Please contact your site administrator."
-msgstr "Invitation limit is exceeded. Please contact your site administrator."
+#: mod/profiles.php:747
+msgid "Work/employment"
+msgstr "Work/Employment:"
 
-#: mod/invite.php:93
-#, php-format
-msgid "%s : Message delivery failed."
-msgstr "%s : Message delivery failed"
+#: mod/profiles.php:748
+msgid "School/education"
+msgstr "School/Education:"
 
-#: mod/invite.php:97
-#, php-format
-msgid "%d message sent."
-msgid_plural "%d messages sent."
-msgstr[0] "%d message sent."
-msgstr[1] "%d messages sent."
+#: mod/profiles.php:749
+msgid "Contact information and Social Networks"
+msgstr "Contact information and other social networks:"
 
-#: mod/invite.php:116
-msgid "You have no more invitations available"
-msgstr "You have no more invitations available."
+#: mod/profiles.php:790
+msgid "Edit/Manage Profiles"
+msgstr "Edit/Manage Profiles"
 
-#: mod/invite.php:124
-#, php-format
+#: mod/register.php:97
 msgid ""
-"Visit %s for a list of public sites that you can join. Friendica members on "
-"other sites can all connect with each other, as well as with members of many"
-" other social networks."
-msgstr "Visit %s for a list of public sites that you can join. Friendica members on other sites can all connect with each other, as well as with members of many other social networks."
+"Registration successful. Please check your email for further instructions."
+msgstr "Registration successful. Please check your email for further instructions."
 
-#: mod/invite.php:126
+#: mod/register.php:102
 #, php-format
 msgid ""
-"To accept this invitation, please visit and register at %s or any other "
-"public Friendica website."
-msgstr "To accept this invitation, please sign up at %s or any other public Friendica website."
+"Failed to send email message. Here your accout details:<br> login: %s<br> "
+"password: %s<br><br>You can change your password after login."
+msgstr "Failed to send email message. Here your account details:<br> login: %s<br> password: %s<br><br>You can change your password after login."
 
-#: mod/invite.php:127
-#, php-format
-msgid ""
-"Friendica sites all inter-connect to create a huge privacy-enhanced social "
-"web that is owned and controlled by its members. They can also connect with "
-"many traditional social networks. See %s for a list of alternate Friendica "
-"sites you can join."
-msgstr "Friendica sites are all inter-connect to create a large privacy-enhanced social web that is owned and controlled by its members. They can also connect with many traditional social networks. See %s for a list of alternate Friendica sites you can join."
+#: mod/register.php:109
+msgid "Registration successful."
+msgstr "Registration successful."
 
-#: mod/invite.php:131
-msgid ""
-"Our apologies. This system is not currently configured to connect with other"
-" public sites or invite members."
-msgstr "Our apologies. This system is not currently configured to connect with other public sites or invite members."
+#: mod/register.php:115
+msgid "Your registration can not be processed."
+msgstr "Your registration cannot be processed."
 
-#: mod/invite.php:134
-#, php-format
-msgid "To accept this invitation, please visit and register at %s."
-msgstr "To accept this invitation, please visit and register at %s."
+#: mod/register.php:164
+msgid "Your registration is pending approval by the site owner."
+msgstr "Your registration is pending approval by the site administrator."
 
-#: mod/invite.php:135
+#: mod/register.php:230
 msgid ""
-"Friendica sites all inter-connect to create a huge privacy-enhanced social "
-"web that is owned and controlled by its members. They can also connect with "
-"many traditional social networks."
-msgstr "Friendica sites are all inter-connect to create a huge privacy-enhanced social web that is owned and controlled by its members. Each site can also connect with many traditional social networks."
+"You may (optionally) fill in this form via OpenID by supplying your OpenID "
+"and clicking 'Register'."
+msgstr "You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Sign up now'."
 
-#: mod/invite.php:141
-msgid "Send invitations"
-msgstr "Send invitations"
+#: mod/register.php:231
+msgid ""
+"If you are not familiar with OpenID, please leave that field blank and fill "
+"in the rest of the items."
+msgstr "If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."
 
-#: mod/invite.php:142
-msgid "Enter email addresses, one per line:"
-msgstr "Enter email addresses, one per line:"
+#: mod/register.php:232
+msgid "Your OpenID (optional): "
+msgstr "Your OpenID (optional): "
 
-#: mod/invite.php:144
-msgid ""
-"You are cordially invited to join me and other close friends on Friendica - "
-"and help us to create a better social web."
-msgstr "You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."
+#: mod/register.php:246
+msgid "Include your profile in member directory?"
+msgstr "Include your profile in member directory?"
 
-#: mod/invite.php:146
-msgid "You will need to supply this invitation code: $invite_code"
-msgstr "You will need to supply this invitation code: $invite_code"
+#: mod/register.php:271
+msgid "Note for the admin"
+msgstr "Note for the admin"
 
-#: mod/invite.php:146
-msgid ""
-"Once you have registered, please connect with me via my profile page at:"
-msgstr "Once you have signed up, please connect with me via my profile page at:"
+#: mod/register.php:271
+msgid "Leave a message for the admin, why you want to join this node"
+msgstr "Leave a message for the admin, why you want to join this node."
 
-#: mod/invite.php:148
-msgid ""
-"For more information about the Friendica project and why we feel it is "
-"important, please visit http://friendi.ca"
-msgstr "For more information about the Friendica project and why we feel it is important, please visit http://friendi.ca"
+#: mod/register.php:272
+msgid "Membership on this site is by invitation only."
+msgstr "Membership on this site is by invitation only."
 
-#: mod/network.php:419
-#, php-format
-msgid ""
-"Warning: This group contains %s member from a network that doesn't allow non"
-" public messages."
-msgid_plural ""
-"Warning: This group contains %s members from a network that doesn't allow "
-"non public messages."
-msgstr[0] "Warning: This group contains %s member from a network that doesn't allow non public messages."
-msgstr[1] "Warning: This group contains %s members from a network that doesn't allow non public messages."
+#: mod/register.php:273
+msgid "Your invitation ID: "
+msgstr "Your invitation ID: "
 
-#: mod/network.php:422
-msgid "Messages in this group won't be send to these receivers."
-msgstr "Messages in this group won't be send to these receivers."
+#: mod/register.php:284
+msgid "Your Full Name (e.g. Joe Smith, real or real-looking): "
+msgstr "Your full name: "
 
-#: mod/network.php:550
-msgid "Private messages to this person are at risk of public disclosure."
-msgstr "Private messages to this person are at risk of public disclosure."
+#: mod/register.php:285
+msgid "Your Email Address: "
+msgstr "Your email address: "
 
-#: mod/network.php:555
-msgid "Invalid contact."
-msgstr "Invalid contact."
+#: mod/register.php:287 mod/settings.php:1280
+msgid "New Password:"
+msgstr "New password:"
 
-#: mod/network.php:849
-msgid "Commented Order"
-msgstr "Commented last"
+#: mod/register.php:287
+msgid "Leave empty for an auto generated password."
+msgstr "Leave empty for an auto generated password."
 
-#: mod/network.php:852
-msgid "Sort by Comment Date"
-msgstr "Sort by comment date"
+#: mod/register.php:288 mod/settings.php:1281
+msgid "Confirm:"
+msgstr "Confirm new password:"
 
-#: mod/network.php:857
-msgid "Posted Order"
-msgstr "Posted last"
+#: mod/register.php:289
+msgid ""
+"Choose a profile nickname. This must begin with a text character. Your "
+"profile address on this site will then be "
+"'<strong>nickname@$sitename</strong>'."
+msgstr "Choose a profile nickname. Your nickname will be part of your identity address; for example:  '<strong>nickname@$sitename</strong>'."
 
-#: mod/network.php:860
-msgid "Sort by Post Date"
-msgstr "Sort by post date"
+#: mod/register.php:290
+msgid "Choose a nickname: "
+msgstr "Choose a nickname: "
 
-#: mod/network.php:871
-msgid "Posts that mention or involve you"
-msgstr "Posts mentioning or involving me"
+#: mod/register.php:300
+msgid "Import your profile to this friendica instance"
+msgstr "Import an existing Friendica profile to this node."
 
-#: mod/network.php:879
-msgid "New"
-msgstr "New"
+#: mod/regmod.php:61
+msgid "Account approved."
+msgstr "Account approved."
 
-#: mod/network.php:882
-msgid "Activity Stream - by date"
-msgstr "Activity Stream - by date"
+#: mod/regmod.php:89
+#, php-format
+msgid "Registration revoked for %s"
+msgstr "Registration revoked for %s"
 
-#: mod/network.php:890
-msgid "Shared Links"
-msgstr "Shared links"
+#: mod/regmod.php:101
+msgid "Please login."
+msgstr "Please login."
 
-#: mod/network.php:893
-msgid "Interesting Links"
-msgstr "Interesting links"
+#: mod/removeme.php:55 mod/removeme.php:58
+msgid "Remove My Account"
+msgstr "Remove My Account"
 
-#: mod/network.php:901
-msgid "Starred"
-msgstr "Starred"
+#: mod/removeme.php:56
+msgid ""
+"This will completely remove your account. Once this has been done it is not "
+"recoverable."
+msgstr "This will completely remove your account. Once this has been done it is not recoverable."
 
-#: mod/network.php:904
-msgid "Favourite Posts"
-msgstr "My favourite posts"
+#: mod/removeme.php:57
+msgid "Please enter your password for verification:"
+msgstr "Please enter your password for verification:"
+
+#: mod/repair_ostatus.php:17
+msgid "Resubscribing to OStatus contacts"
+msgstr "Resubscribing to OStatus contacts"
+
+#: mod/repair_ostatus.php:33
+msgid "Error"
+msgstr "Error"
 
-#: mod/settings.php:62
+#: mod/settings.php:63
 msgid "Display"
 msgstr "Display"
 
-#: mod/settings.php:69 mod/settings.php:891
+#: mod/settings.php:70 mod/settings.php:892
 msgid "Social Networks"
 msgstr "Social networks"
 
-#: mod/settings.php:90
+#: mod/settings.php:91
 msgid "Connected apps"
 msgstr "Connected apps"
 
-#: mod/settings.php:104
+#: mod/settings.php:98 mod/uexport.php:47
+msgid "Export personal data"
+msgstr "Export personal data"
+
+#: mod/settings.php:105
 msgid "Remove account"
 msgstr "Remove account"
 
-#: mod/settings.php:159
+#: mod/settings.php:160
 msgid "Missing some important data!"
 msgstr "Missing some important data!"
 
-#: mod/settings.php:273
+#: mod/settings.php:274
 msgid "Failed to connect with email account using the settings provided."
 msgstr "Failed to connect with email account using the settings provided."
 
-#: mod/settings.php:278
+#: mod/settings.php:279
 msgid "Email settings updated."
 msgstr "Email settings updated."
 
-#: mod/settings.php:293
+#: mod/settings.php:294
 msgid "Features updated"
 msgstr "Features updated"
 
-#: mod/settings.php:363
+#: mod/settings.php:364
 msgid "Relocate message has been send to your contacts"
 msgstr "Relocate message has been send to your contacts"
 
-#: mod/settings.php:382
+#: mod/settings.php:383
 msgid "Empty passwords are not allowed. Password unchanged."
 msgstr "Empty passwords are not allowed. Password unchanged."
 
-#: mod/settings.php:390
+#: mod/settings.php:391
 msgid "Wrong password."
 msgstr "Wrong password."
 
-#: mod/settings.php:401
+#: mod/settings.php:402
 msgid "Password changed."
 msgstr "Password changed."
 
-#: mod/settings.php:403
+#: mod/settings.php:404
 msgid "Password update failed. Please try again."
 msgstr "Password update failed. Please try again."
 
-#: mod/settings.php:483
+#: mod/settings.php:484
 msgid " Please use a shorter name."
 msgstr " Please use a shorter name."
 
-#: mod/settings.php:485
+#: mod/settings.php:486
 msgid " Name too short."
 msgstr " Name too short."
 
-#: mod/settings.php:494
+#: mod/settings.php:495
 msgid "Wrong Password"
 msgstr "Wrong password"
 
-#: mod/settings.php:499
+#: mod/settings.php:500
 msgid " Not valid email."
 msgstr "Invalid email."
 
-#: mod/settings.php:505
+#: mod/settings.php:506
 msgid " Cannot change to that email."
 msgstr " Cannot change to that email."
 
-#: mod/settings.php:561
+#: mod/settings.php:562
 msgid "Private forum has no privacy permissions. Using default privacy group."
 msgstr "Private forum has no privacy permissions. Using default privacy group."
 
-#: mod/settings.php:565
+#: mod/settings.php:566
 msgid "Private forum has no privacy permissions and no default privacy group."
 msgstr "Private forum has no privacy permissions and no default privacy group."
 
-#: mod/settings.php:605
+#: mod/settings.php:606
 msgid "Settings updated."
 msgstr "Settings updated."
 
-#: mod/settings.php:681 mod/settings.php:707 mod/settings.php:743
+#: mod/settings.php:682 mod/settings.php:708 mod/settings.php:744
 msgid "Add application"
 msgstr "Add application"
 
-#: mod/settings.php:685 mod/settings.php:711
+#: mod/settings.php:686 mod/settings.php:712
 msgid "Consumer Key"
 msgstr "Consumer key"
 
-#: mod/settings.php:686 mod/settings.php:712
+#: mod/settings.php:687 mod/settings.php:713
 msgid "Consumer Secret"
 msgstr "Consumer secret"
 
-#: mod/settings.php:687 mod/settings.php:713
+#: mod/settings.php:688 mod/settings.php:714
 msgid "Redirect"
 msgstr "Redirect"
 
-#: mod/settings.php:688 mod/settings.php:714
+#: mod/settings.php:689 mod/settings.php:715
 msgid "Icon url"
 msgstr "Icon URL"
 
-#: mod/settings.php:699
+#: mod/settings.php:700
 msgid "You can't edit this application."
 msgstr "You cannot edit this application."
 
-#: mod/settings.php:742
+#: mod/settings.php:743
 msgid "Connected Apps"
 msgstr "Connected Apps"
 
-#: mod/settings.php:746
+#: mod/settings.php:747
 msgid "Client key starts with"
 msgstr "Client key starts with"
 
-#: mod/settings.php:747
+#: mod/settings.php:748
 msgid "No name"
 msgstr "No name"
 
-#: mod/settings.php:748
+#: mod/settings.php:749
 msgid "Remove authorization"
 msgstr "Remove authorization"
 
-#: mod/settings.php:760
+#: mod/settings.php:761
 msgid "No Plugin settings configured"
 msgstr "No plugin settings configured"
 
-#: mod/settings.php:769
+#: mod/settings.php:770
 msgid "Plugin Settings"
 msgstr "Plugin Settings"
 
-#: mod/settings.php:791
+#: mod/settings.php:792
 msgid "Additional Features"
 msgstr "Additional Features"
 
-#: mod/settings.php:801 mod/settings.php:805
+#: mod/settings.php:802 mod/settings.php:806
 msgid "General Social Media Settings"
 msgstr "General Social Media Settings"
 
-#: mod/settings.php:811
+#: mod/settings.php:812
 msgid "Disable intelligent shortening"
 msgstr "Disable intelligent shortening"
 
-#: mod/settings.php:813
+#: mod/settings.php:814
 msgid ""
 "Normally the system tries to find the best link to add to shortened posts. "
 "If this option is enabled then every shortened post will always point to the"
 " original friendica post."
 msgstr "Normally the system tries to find the best link to add to shortened posts. If this option is enabled then every shortened post will always point to the original Friendica post."
 
-#: mod/settings.php:819
+#: mod/settings.php:820
 msgid "Automatically follow any GNU Social (OStatus) followers/mentioners"
 msgstr "Automatically follow any GNU Social (OStatus) followers/mentioners"
 
-#: mod/settings.php:821
+#: mod/settings.php:822
 msgid ""
 "If you receive a message from an unknown OStatus user, this option decides "
 "what to do. If it is checked, a new contact will be created for every "
 "unknown user."
 msgstr "Create a new contact for every unknown OStatus user from whom you receive a message."
 
-#: mod/settings.php:827
+#: mod/settings.php:828
 msgid "Default group for OStatus contacts"
 msgstr "Default group for OStatus contacts"
 
-#: mod/settings.php:835
+#: mod/settings.php:836
 msgid "Your legacy GNU Social account"
 msgstr "Your legacy GNU Social account"
 
-#: mod/settings.php:837
+#: mod/settings.php:838
 msgid ""
 "If you enter your old GNU Social/Statusnet account name here (in the format "
 "user@domain.tld), your contacts will be added automatically. The field will "
 "be emptied when done."
 msgstr "Entering your old GNU Social/Statusnet account name here (format: user@domain.tld), will automatically added your contacts. The field will be emptied when done."
 
-#: mod/settings.php:840
+#: mod/settings.php:841
 msgid "Repair OStatus subscriptions"
 msgstr "Repair OStatus subscriptions"
 
-#: mod/settings.php:849 mod/settings.php:850
+#: mod/settings.php:850 mod/settings.php:851
 #, php-format
 msgid "Built-in support for %s connectivity is %s"
 msgstr "Built-in support for %s connectivity is %s"
 
-#: mod/settings.php:849 mod/settings.php:850
+#: mod/settings.php:850 mod/settings.php:851
 msgid "enabled"
 msgstr "enabled"
 
-#: mod/settings.php:849 mod/settings.php:850
+#: mod/settings.php:850 mod/settings.php:851
 msgid "disabled"
 msgstr "disabled"
 
-#: mod/settings.php:850
+#: mod/settings.php:851
 msgid "GNU Social (OStatus)"
 msgstr "GNU Social (OStatus)"
 
-#: mod/settings.php:884
+#: mod/settings.php:885
 msgid "Email access is disabled on this site."
 msgstr "Email access is disabled on this site."
 
-#: mod/settings.php:896
+#: mod/settings.php:897
 msgid "Email/Mailbox Setup"
 msgstr "Email/Mailbox setup"
 
-#: mod/settings.php:897
+#: mod/settings.php:898
 msgid ""
 "If you wish to communicate with email contacts using this service "
 "(optional), please specify how to connect to your mailbox."
 msgstr "Specify how to connect to your mailbox, if you wish to communicate with existing email contacts."
 
-#: mod/settings.php:898
+#: mod/settings.php:899
 msgid "Last successful email check:"
 msgstr "Last successful email check:"
 
-#: mod/settings.php:900
+#: mod/settings.php:901
 msgid "IMAP server name:"
 msgstr "IMAP server name:"
 
-#: mod/settings.php:901
+#: mod/settings.php:902
 msgid "IMAP port:"
 msgstr "IMAP port:"
 
-#: mod/settings.php:902
+#: mod/settings.php:903
 msgid "Security:"
 msgstr "Security:"
 
-#: mod/settings.php:902 mod/settings.php:907
+#: mod/settings.php:903 mod/settings.php:908
 msgid "None"
 msgstr "None"
 
-#: mod/settings.php:903
+#: mod/settings.php:904
 msgid "Email login name:"
 msgstr "Email login name:"
 
-#: mod/settings.php:904
+#: mod/settings.php:905
 msgid "Email password:"
 msgstr "Email password:"
 
-#: mod/settings.php:905
+#: mod/settings.php:906
 msgid "Reply-to address:"
 msgstr "Reply-to address:"
 
-#: mod/settings.php:906
+#: mod/settings.php:907
 msgid "Send public posts to all email contacts:"
 msgstr "Send public posts to all email contacts:"
 
-#: mod/settings.php:907
+#: mod/settings.php:908
 msgid "Action after import:"
 msgstr "Action after import:"
 
-#: mod/settings.php:907
+#: mod/settings.php:908
 msgid "Move to folder"
 msgstr "Move to folder"
 
-#: mod/settings.php:908
+#: mod/settings.php:909
 msgid "Move to folder:"
 msgstr "Move to folder:"
 
-#: mod/settings.php:1004
+#: mod/settings.php:1005
 msgid "Display Settings"
 msgstr "Display Settings"
 
-#: mod/settings.php:1010 mod/settings.php:1033
+#: mod/settings.php:1011 mod/settings.php:1034
 msgid "Display Theme:"
 msgstr "Display theme:"
 
-#: mod/settings.php:1011
+#: mod/settings.php:1012
 msgid "Mobile Theme:"
 msgstr "Mobile theme:"
 
-#: mod/settings.php:1012
+#: mod/settings.php:1013
 msgid "Suppress warning of insecure networks"
 msgstr "Suppress warning of insecure networks"
 
-#: mod/settings.php:1012
+#: mod/settings.php:1013
 msgid ""
 "Should the system suppress the warning that the current group contains "
 "members of networks that can't receive non public postings."
 msgstr "Suppresses warnings if groups contains members whose networks that cannot receive non-public postings."
 
-#: mod/settings.php:1013
+#: mod/settings.php:1014
 msgid "Update browser every xx seconds"
 msgstr "Update browser every so many seconds:"
 
-#: mod/settings.php:1013
+#: mod/settings.php:1014
 msgid "Minimum of 10 seconds. Enter -1 to disable it."
 msgstr "Minimum 10 seconds; to disable -1."
 
-#: mod/settings.php:1014
+#: mod/settings.php:1015
 msgid "Number of items to display per page:"
 msgstr "Number of items displayed per page:"
 
-#: mod/settings.php:1014 mod/settings.php:1015
+#: mod/settings.php:1015 mod/settings.php:1016
 msgid "Maximum of 100 items"
 msgstr "Maximum of 100 items"
 
-#: mod/settings.php:1015
+#: mod/settings.php:1016
 msgid "Number of items to display per page when viewed from mobile device:"
 msgstr "Number of items displayed per page on mobile devices:"
 
-#: mod/settings.php:1016
+#: mod/settings.php:1017
 msgid "Don't show emoticons"
 msgstr "Don't show emoticons"
 
-#: mod/settings.php:1017
+#: mod/settings.php:1018
 msgid "Calendar"
 msgstr "Calendar"
 
-#: mod/settings.php:1018
+#: mod/settings.php:1019
 msgid "Beginning of week:"
 msgstr "Week begins: "
 
-#: mod/settings.php:1019
+#: mod/settings.php:1020
 msgid "Don't show notices"
 msgstr "Don't show notices"
 
-#: mod/settings.php:1020
+#: mod/settings.php:1021
 msgid "Infinite scroll"
 msgstr "Infinite scroll"
 
-#: mod/settings.php:1021
+#: mod/settings.php:1022
 msgid "Automatic updates only at the top of the network page"
 msgstr "Automatically updates only top of the network page"
 
-#: mod/settings.php:1021
+#: mod/settings.php:1022
 msgid ""
 "When disabled, the network page is updated all the time, which could be "
 "confusing while reading."
 msgstr "When disabled, the network page is updated all the time, which could be confusing while reading."
 
-#: mod/settings.php:1022
+#: mod/settings.php:1023
 msgid "Bandwith Saver Mode"
 msgstr "Bandwith saving mode"
 
-#: mod/settings.php:1022
+#: mod/settings.php:1023
 msgid ""
 "When enabled, embedded content is not displayed on automatic updates, they "
 "only show on page reload."
 msgstr "If enabled, embedded content is not displayed on automatic updates; it is only shown on page reload."
 
-#: mod/settings.php:1024
+#: mod/settings.php:1025
 msgid "General Theme Settings"
 msgstr "Themes"
 
-#: mod/settings.php:1025
+#: mod/settings.php:1026
 msgid "Custom Theme Settings"
 msgstr "Theme customisation"
 
-#: mod/settings.php:1026
+#: mod/settings.php:1027
 msgid "Content Settings"
 msgstr "Content/Layout"
 
-#: mod/settings.php:1027 view/theme/duepuntozero/config.php:66
-#: view/theme/frio/config.php:69 view/theme/quattro/config.php:72
-#: view/theme/vier/config.php:115
+#: mod/settings.php:1028 view/theme/duepuntozero/config.php:67
+#: view/theme/frio/config.php:70 view/theme/quattro/config.php:73
+#: view/theme/vier/config.php:116
 msgid "Theme settings"
 msgstr "Theme settings"
 
-#: mod/settings.php:1111
+#: mod/settings.php:1112
 msgid "Account Types"
 msgstr "Account types:"
 
-#: mod/settings.php:1112
+#: mod/settings.php:1113
 msgid "Personal Page Subtypes"
 msgstr "Personal Page subtypes"
 
-#: mod/settings.php:1113
+#: mod/settings.php:1114
 msgid "Community Forum Subtypes"
 msgstr "Community forum subtypes"
 
-#: mod/settings.php:1120
+#: mod/settings.php:1121
 msgid "Personal Page"
 msgstr "Personal Page"
 
-#: mod/settings.php:1121
+#: mod/settings.php:1122
 msgid "Account for a personal profile."
 msgstr "Account for a personal profile."
 
-#: mod/settings.php:1124
+#: mod/settings.php:1125
 msgid "Organisation Page"
 msgstr "Organisation Page"
 
-#: mod/settings.php:1125
+#: mod/settings.php:1126
 msgid ""
 "Account for an organisation that automatically approves contact requests as "
 "\"Followers\"."
 msgstr "Account for an organisation that automatically approves contact requests as \"Followers\"."
 
-#: mod/settings.php:1128
+#: mod/settings.php:1129
 msgid "News Page"
 msgstr "News Page"
 
-#: mod/settings.php:1129
+#: mod/settings.php:1130
 msgid ""
 "Account for a news reflector that automatically approves contact requests as"
 " \"Followers\"."
 msgstr "Account for a news reflector that automatically approves contact requests as \"Followers\"."
 
-#: mod/settings.php:1132
+#: mod/settings.php:1133
 msgid "Community Forum"
 msgstr "Community Forum"
 
-#: mod/settings.php:1133
+#: mod/settings.php:1134
 msgid "Account for community discussions."
 msgstr "Account for community discussions."
 
-#: mod/settings.php:1136
+#: mod/settings.php:1137
 msgid "Normal Account Page"
 msgstr "Standard"
 
-#: mod/settings.php:1137
+#: mod/settings.php:1138
 msgid ""
 "Account for a regular personal profile that requires manual approval of "
 "\"Friends\" and \"Followers\"."
 msgstr "Account for a regular personal profile that requires manual approval of \"Friends\" and \"Followers\"."
 
-#: mod/settings.php:1140
+#: mod/settings.php:1141
 msgid "Soapbox Page"
 msgstr "Soapbox"
 
-#: mod/settings.php:1141
+#: mod/settings.php:1142
 msgid ""
 "Account for a public profile that automatically approves contact requests as"
 " \"Followers\"."
 msgstr "Account for a public profile that automatically approves contact requests as \"Followers\"."
 
-#: mod/settings.php:1144
+#: mod/settings.php:1145
 msgid "Public Forum"
 msgstr "Public forum"
 
-#: mod/settings.php:1145
+#: mod/settings.php:1146
 msgid "Automatically approves all contact requests."
 msgstr "Automatically approves all contact requests."
 
-#: mod/settings.php:1148
+#: mod/settings.php:1149
 msgid "Automatic Friend Page"
 msgstr "Love-all"
 
-#: mod/settings.php:1149
+#: mod/settings.php:1150
 msgid ""
 "Account for a popular profile that automatically approves contact requests "
 "as \"Friends\"."
 msgstr "Account for a popular profile that automatically approves contact requests as \"Friends\"."
 
-#: mod/settings.php:1152
+#: mod/settings.php:1153
 msgid "Private Forum [Experimental]"
 msgstr "Private forum [Experimental]"
 
-#: mod/settings.php:1153
+#: mod/settings.php:1154
 msgid "Requires manual approval of contact requests."
 msgstr "Requires manual approval of contact requests."
 
-#: mod/settings.php:1164
+#: mod/settings.php:1165
 msgid "OpenID:"
 msgstr "OpenID:"
 
-#: mod/settings.php:1164
+#: mod/settings.php:1165
 msgid "(Optional) Allow this OpenID to login to this account."
 msgstr "(Optional) Allow this OpenID to login to this account."
 
-#: mod/settings.php:1172
+#: mod/settings.php:1173
 msgid "Publish your default profile in your local site directory?"
 msgstr "Publish default profile in local site directory?"
 
-#: mod/settings.php:1172
+#: mod/settings.php:1173
 msgid "Your profile may be visible in public."
 msgstr "Your local directory may be publicly visible"
 
-#: mod/settings.php:1178
+#: mod/settings.php:1179
 msgid "Publish your default profile in the global social directory?"
 msgstr "Publish default profile in global directory?"
 
-#: mod/settings.php:1185
+#: mod/settings.php:1186
 msgid "Hide your contact/friend list from viewers of your default profile?"
 msgstr "Hide my contact list from others?"
 
-#: mod/settings.php:1189
+#: mod/settings.php:1190
 msgid ""
 "If enabled, posting public messages to Diaspora and other networks isn't "
 "possible."
 msgstr "Posting public messages to Diaspora and other networks will not be possible if enabled"
 
-#: mod/settings.php:1194
+#: mod/settings.php:1195
 msgid "Allow friends to post to your profile page?"
 msgstr "Allow friends to post to my wall?"
 
-#: mod/settings.php:1199
+#: mod/settings.php:1200
 msgid "Allow friends to tag your posts?"
 msgstr "Allow friends to tag my post?"
 
-#: mod/settings.php:1204
+#: mod/settings.php:1205
 msgid "Allow us to suggest you as a potential friend to new members?"
 msgstr "Allow us to suggest you as a potential friend to new members?"
 
-#: mod/settings.php:1209
+#: mod/settings.php:1210
 msgid "Permit unknown people to send you private mail?"
 msgstr "Allow unknown people to send me private messages?"
 
-#: mod/settings.php:1217
+#: mod/settings.php:1218
 msgid "Profile is <strong>not published</strong>."
 msgstr "Profile is <strong>not published</strong>."
 
-#: mod/settings.php:1225
+#: mod/settings.php:1226
 #, php-format
 msgid "Your Identity Address is <strong>'%s'</strong> or '%s'."
 msgstr "My identity address: <strong>'%s'</strong> or '%s'"
 
-#: mod/settings.php:1232
+#: mod/settings.php:1233
 msgid "Automatically expire posts after this many days:"
 msgstr "Automatically expire posts after this many days:"
 
-#: mod/settings.php:1232
+#: mod/settings.php:1233
 msgid "If empty, posts will not expire. Expired posts will be deleted"
 msgstr "Posts will not expire if empty;  expired posts will be deleted"
 
-#: mod/settings.php:1233
+#: mod/settings.php:1234
 msgid "Advanced expiration settings"
 msgstr "Advanced expiration settings"
 
-#: mod/settings.php:1234
+#: mod/settings.php:1235
 msgid "Advanced Expiration"
 msgstr "Advanced expiration"
 
-#: mod/settings.php:1235
+#: mod/settings.php:1236
 msgid "Expire posts:"
 msgstr "Expire posts:"
 
-#: mod/settings.php:1236
+#: mod/settings.php:1237
 msgid "Expire personal notes:"
 msgstr "Expire personal notes:"
 
-#: mod/settings.php:1237
+#: mod/settings.php:1238
 msgid "Expire starred posts:"
 msgstr "Expire starred posts:"
 
-#: mod/settings.php:1238
+#: mod/settings.php:1239
 msgid "Expire photos:"
 msgstr "Expire photos:"
 
-#: mod/settings.php:1239
+#: mod/settings.php:1240
 msgid "Only expire posts by others:"
 msgstr "Only expire posts by others:"
 
-#: mod/settings.php:1270
+#: mod/settings.php:1271
 msgid "Account Settings"
 msgstr "Account Settings"
 
-#: mod/settings.php:1278
+#: mod/settings.php:1279
 msgid "Password Settings"
 msgstr "Password change"
 
-#: mod/settings.php:1280
+#: mod/settings.php:1281
 msgid "Leave password fields blank unless changing"
 msgstr "Leave password fields blank unless changing"
 
-#: mod/settings.php:1281
+#: mod/settings.php:1282
 msgid "Current Password:"
 msgstr "Current password:"
 
-#: mod/settings.php:1281 mod/settings.php:1282
+#: mod/settings.php:1282 mod/settings.php:1283
 msgid "Your current password to confirm the changes"
 msgstr "Current password to confirm change"
 
-#: mod/settings.php:1282
+#: mod/settings.php:1283
 msgid "Password:"
 msgstr "Password:"
 
-#: mod/settings.php:1286
+#: mod/settings.php:1287
 msgid "Basic Settings"
 msgstr "Basic information"
 
-#: mod/settings.php:1288
+#: mod/settings.php:1289
 msgid "Email Address:"
 msgstr "Email address:"
 
-#: mod/settings.php:1289
+#: mod/settings.php:1290
 msgid "Your Timezone:"
 msgstr "Time zone:"
 
-#: mod/settings.php:1290
+#: mod/settings.php:1291
 msgid "Your Language:"
 msgstr "Language:"
 
-#: mod/settings.php:1290
+#: mod/settings.php:1291
 msgid ""
 "Set the language we use to show you friendica interface and to send you "
 "emails"
 msgstr "Set the language of your Friendica interface and emails receiving"
 
-#: mod/settings.php:1291
+#: mod/settings.php:1292
 msgid "Default Post Location:"
 msgstr "Posting location:"
 
-#: mod/settings.php:1292
+#: mod/settings.php:1293
 msgid "Use Browser Location:"
 msgstr "Use browser location:"
 
-#: mod/settings.php:1295
+#: mod/settings.php:1296
 msgid "Security and Privacy Settings"
 msgstr "Security and privacy"
 
-#: mod/settings.php:1297
+#: mod/settings.php:1298
 msgid "Maximum Friend Requests/Day:"
 msgstr "Maximum friend requests per day:"
 
-#: mod/settings.php:1297 mod/settings.php:1327
+#: mod/settings.php:1298 mod/settings.php:1328
 msgid "(to prevent spam abuse)"
 msgstr "May prevent spam or abuse registrations"
 
-#: mod/settings.php:1298
+#: mod/settings.php:1299
 msgid "Default Post Permissions"
 msgstr "Default post permissions"
 
-#: mod/settings.php:1299
+#: mod/settings.php:1300
 msgid "(click to open/close)"
 msgstr "(click to open/close)"
 
-#: mod/settings.php:1310
+#: mod/settings.php:1311
 msgid "Default Private Post"
 msgstr "Default private post"
 
-#: mod/settings.php:1311
+#: mod/settings.php:1312
 msgid "Default Public Post"
 msgstr "Default public post"
 
-#: mod/settings.php:1315
+#: mod/settings.php:1316
 msgid "Default Permissions for New Posts"
 msgstr "Default permissions for new posts"
 
-#: mod/settings.php:1327
+#: mod/settings.php:1328
 msgid "Maximum private messages per day from unknown people:"
 msgstr "Maximum private messages per day from unknown people:"
 
-#: mod/settings.php:1330
+#: mod/settings.php:1331
 msgid "Notification Settings"
 msgstr "Notification"
 
-#: mod/settings.php:1331
+#: mod/settings.php:1332
 msgid "By default post a status message when:"
 msgstr "By default post a status message when:"
 
-#: mod/settings.php:1332
+#: mod/settings.php:1333
 msgid "accepting a friend request"
 msgstr "accepting friend requests"
 
-#: mod/settings.php:1333
+#: mod/settings.php:1334
 msgid "joining a forum/community"
 msgstr "joining forums or communities"
 
-#: mod/settings.php:1334
+#: mod/settings.php:1335
 msgid "making an <em>interesting</em> profile change"
 msgstr "making an <em>interesting</em> profile change"
 
-#: mod/settings.php:1335
+#: mod/settings.php:1336
 msgid "Send a notification email when:"
 msgstr "Send notification email when:"
 
-#: mod/settings.php:1336
+#: mod/settings.php:1337
 msgid "You receive an introduction"
 msgstr "Receiving an introduction"
 
-#: mod/settings.php:1337
+#: mod/settings.php:1338
 msgid "Your introductions are confirmed"
 msgstr "My introductions are confirmed"
 
-#: mod/settings.php:1338
+#: mod/settings.php:1339
 msgid "Someone writes on your profile wall"
 msgstr "Someone writes on my wall"
 
-#: mod/settings.php:1339
+#: mod/settings.php:1340
 msgid "Someone writes a followup comment"
 msgstr "A follow up comment is posted"
 
-#: mod/settings.php:1340
+#: mod/settings.php:1341
 msgid "You receive a private message"
 msgstr "receiving a private message"
 
-#: mod/settings.php:1341
+#: mod/settings.php:1342
 msgid "You receive a friend suggestion"
 msgstr "Receiving a friend suggestion"
 
-#: mod/settings.php:1342
+#: mod/settings.php:1343
 msgid "You are tagged in a post"
 msgstr "Tagged in a post"
 
-#: mod/settings.php:1343
+#: mod/settings.php:1344
 msgid "You are poked/prodded/etc. in a post"
 msgstr "Poked in a post"
 
-#: mod/settings.php:1345
+#: mod/settings.php:1346
 msgid "Activate desktop notifications"
 msgstr "Activate desktop notifications"
 
-#: mod/settings.php:1345
+#: mod/settings.php:1346
 msgid "Show desktop popup on new notifications"
 msgstr "Show desktop pop-up on new notifications"
 
-#: mod/settings.php:1347
+#: mod/settings.php:1348
 msgid "Text-only notification emails"
 msgstr "Text-only notification emails"
 
-#: mod/settings.php:1349
+#: mod/settings.php:1350
 msgid "Send text only notification emails, without the html part"
 msgstr "Receive text only emails without HTML "
 
-#: mod/settings.php:1351
+#: mod/settings.php:1352
 msgid "Advanced Account/Page Type Settings"
 msgstr "Advanced account types"
 
-#: mod/settings.php:1352
+#: mod/settings.php:1353
 msgid "Change the behaviour of this account for special situations"
 msgstr "Change behaviour of this account for special situations"
 
-#: mod/settings.php:1355
+#: mod/settings.php:1356
 msgid "Relocate"
 msgstr "Recent relocation"
 
-#: mod/settings.php:1356
+#: mod/settings.php:1357
 msgid ""
 "If you have moved this profile from another server, and some of your "
 "contacts don't receive your updates, try pushing this button."
 msgstr "If you have moved this profile from another server and some of your contacts don't receive your updates:"
 
-#: mod/settings.php:1357
+#: mod/settings.php:1358
 msgid "Resend relocate message to contacts"
 msgstr "Resend relocation message to contacts"
 
-#: object/Item.php:356
+#: mod/subthread.php:106
+#, php-format
+msgid "%1$s is following %2$s's %3$s"
+msgstr "%1$s is following %2$s's %3$s"
+
+#: mod/suggest.php:30
+msgid "Do you really want to delete this suggestion?"
+msgstr "Do you really want to delete this suggestion?"
+
+#: mod/suggest.php:74
+msgid ""
+"No suggestions available. If this is a new site, please try again in 24 "
+"hours."
+msgstr "No suggestions available. If this is a new site, please try again in 24 hours."
+
+#: mod/suggest.php:87 mod/suggest.php:107
+msgid "Ignore/Hide"
+msgstr "Ignore/Hide"
+
+#: mod/tagrm.php:46
+msgid "Tag removed"
+msgstr "Tag removed"
+
+#: mod/tagrm.php:85
+msgid "Remove Item Tag"
+msgstr "Remove Item tag"
+
+#: mod/tagrm.php:87
+msgid "Select a tag to remove: "
+msgstr "Select a tag to remove: "
+
+#: mod/uexport.php:39
+msgid "Export account"
+msgstr "Export account"
+
+#: mod/uexport.php:39
+msgid ""
+"Export your account info and contacts. Use this to make a backup of your "
+"account and/or to move it to another server."
+msgstr "Export your account info and contacts. Use this to backup your account or to move it to another server."
+
+#: mod/uexport.php:40
+msgid "Export all"
+msgstr "Export all"
+
+#: mod/uexport.php:40
+msgid ""
+"Export your accout info, contacts and all your items as json. Could be a "
+"very big file, and could take a lot of time. Use this to make a full backup "
+"of your account (photos are not exported)"
+msgstr "Export your account info, contacts and all your items as json. Could be a very big file, and could take a lot of time. Use this to make a full backup of your account (photos are not exported)"
+
+#: mod/unfollow.php:33
+msgid "Contact wasn't found or can't be unfollowed."
+msgstr "Contact wasn't found or can't be unfollowed."
+
+#: mod/unfollow.php:47
+msgid "Contact unfollowed"
+msgstr "Contact unfollowed"
+
+#: mod/unfollow.php:73
+msgid "You aren't a friend of this contact."
+msgstr "You aren't a friend of this contact."
+
+#: mod/unfollow.php:79
+msgid "Unfollowing is currently not supported by your network."
+msgstr "Unfollowing is currently not supported by your network."
+
+#: mod/videos.php:127
+msgid "Do you really want to delete this video?"
+msgstr "Do you really want to delete this video?"
+
+#: mod/videos.php:132
+msgid "Delete Video"
+msgstr "Delete video"
+
+#: mod/videos.php:211
+msgid "No videos selected"
+msgstr "No videos selected"
+
+#: mod/videos.php:405
+msgid "Recent Videos"
+msgstr "Recent videos"
+
+#: mod/videos.php:407
+msgid "Upload New Videos"
+msgstr "Upload new videos"
+
+#: mod/wallmessage.php:45 mod/wallmessage.php:109
+#, php-format
+msgid "Number of daily wall messages for %s exceeded. Message failed."
+msgstr "Number of daily wall messages for %s exceeded. Message failed."
+
+#: mod/wallmessage.php:56
+msgid "Unable to check your home location."
+msgstr "Unable to check your home location."
+
+#: mod/wallmessage.php:83 mod/wallmessage.php:92
+msgid "No recipient."
+msgstr "No recipient."
+
+#: mod/wallmessage.php:130
+#, php-format
+msgid ""
+"If you wish for %s to respond, please check that the privacy settings on "
+"your site allow private mail from unknown senders."
+msgstr "If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."
+
+#: object/Item.php:348
 msgid "via"
 msgstr "via"
 
-#: view/theme/duepuntozero/config.php:47
+#: view/theme/duepuntozero/config.php:48
 msgid "greenzero"
 msgstr "greenzero"
 
-#: view/theme/duepuntozero/config.php:48
+#: view/theme/duepuntozero/config.php:49
 msgid "purplezero"
 msgstr "purplezero"
 
-#: view/theme/duepuntozero/config.php:49
+#: view/theme/duepuntozero/config.php:50
 msgid "easterbunny"
 msgstr "easterbunny"
 
-#: view/theme/duepuntozero/config.php:50
+#: view/theme/duepuntozero/config.php:51
 msgid "darkzero"
 msgstr "darkzero"
 
-#: view/theme/duepuntozero/config.php:51
+#: view/theme/duepuntozero/config.php:52
 msgid "comix"
 msgstr "comix"
 
-#: view/theme/duepuntozero/config.php:52
+#: view/theme/duepuntozero/config.php:53
 msgid "slackr"
 msgstr "slackr"
 
-#: view/theme/duepuntozero/config.php:67
+#: view/theme/duepuntozero/config.php:68
 msgid "Variations"
 msgstr "Variations"
 
@@ -8847,167 +8870,167 @@ msgstr "Resize to best fit"
 msgid "Resize to best fit and retain aspect ratio."
 msgstr "Resize to best fit and retain aspect ratio."
 
-#: view/theme/frio/config.php:50
+#: view/theme/frio/config.php:51
 msgid "Default"
 msgstr "Default"
 
-#: view/theme/frio/config.php:62
+#: view/theme/frio/config.php:63
 msgid "Note: "
 msgstr "Note - "
 
-#: view/theme/frio/config.php:62
+#: view/theme/frio/config.php:63
 msgid "Check image permissions if all users are allowed to visit the image"
 msgstr "Check image permissions if all users are allowed to visit the image"
 
-#: view/theme/frio/config.php:70
+#: view/theme/frio/config.php:71
 msgid "Select scheme"
 msgstr "Select scheme:"
 
-#: view/theme/frio/config.php:71
+#: view/theme/frio/config.php:72
 msgid "Navigation bar background color"
 msgstr "Navigation bar background colour:"
 
-#: view/theme/frio/config.php:72
+#: view/theme/frio/config.php:73
 msgid "Navigation bar icon color "
 msgstr "Navigation bar icon colour:"
 
-#: view/theme/frio/config.php:73
+#: view/theme/frio/config.php:74
 msgid "Link color"
 msgstr "Link colour:"
 
-#: view/theme/frio/config.php:74
+#: view/theme/frio/config.php:75
 msgid "Set the background color"
 msgstr "Background colour:"
 
-#: view/theme/frio/config.php:75
+#: view/theme/frio/config.php:76
 msgid "Content background transparency"
 msgstr "Content background transparency:"
 
-#: view/theme/frio/config.php:76
+#: view/theme/frio/config.php:77
 msgid "Set the background image"
 msgstr "Background image:"
 
-#: view/theme/frio/theme.php:230
+#: view/theme/frio/theme.php:231
 msgid "Guest"
 msgstr "Guest"
 
-#: view/theme/frio/theme.php:236
+#: view/theme/frio/theme.php:237
 msgid "Visitor"
 msgstr "Visitor"
 
-#: view/theme/quattro/config.php:73
+#: view/theme/quattro/config.php:74
 msgid "Alignment"
 msgstr "Alignment"
 
-#: view/theme/quattro/config.php:73
+#: view/theme/quattro/config.php:74
 msgid "Left"
 msgstr "Left"
 
-#: view/theme/quattro/config.php:73
+#: view/theme/quattro/config.php:74
 msgid "Center"
 msgstr "Centre"
 
-#: view/theme/quattro/config.php:74
+#: view/theme/quattro/config.php:75
 msgid "Color scheme"
 msgstr "Colour scheme"
 
-#: view/theme/quattro/config.php:75
+#: view/theme/quattro/config.php:76
 msgid "Posts font size"
 msgstr "Posts font size"
 
-#: view/theme/quattro/config.php:76
+#: view/theme/quattro/config.php:77
 msgid "Textareas font size"
 msgstr "Text areas font size"
 
-#: view/theme/vier/config.php:70
+#: view/theme/vier/config.php:71
 msgid "Comma separated list of helper forums"
 msgstr "Comma separated list of helper forums"
 
-#: view/theme/vier/config.php:116
+#: view/theme/vier/config.php:117
 msgid "Set style"
 msgstr "Set style"
 
-#: view/theme/vier/config.php:117
+#: view/theme/vier/config.php:118
 msgid "Community Pages"
 msgstr "Community pages"
 
-#: view/theme/vier/config.php:118 view/theme/vier/theme.php:143
+#: view/theme/vier/config.php:119 view/theme/vier/theme.php:144
 msgid "Community Profiles"
 msgstr "Community profiles"
 
-#: view/theme/vier/config.php:119
+#: view/theme/vier/config.php:120
 msgid "Help or @NewHere ?"
 msgstr "Help or @NewHere ?"
 
-#: view/theme/vier/config.php:120 view/theme/vier/theme.php:384
+#: view/theme/vier/config.php:121 view/theme/vier/theme.php:385
 msgid "Connect Services"
 msgstr "Connect services"
 
-#: view/theme/vier/config.php:121 view/theme/vier/theme.php:191
+#: view/theme/vier/config.php:122 view/theme/vier/theme.php:192
 msgid "Find Friends"
 msgstr "Find friends"
 
-#: view/theme/vier/config.php:122 view/theme/vier/theme.php:173
+#: view/theme/vier/config.php:123 view/theme/vier/theme.php:174
 msgid "Last users"
 msgstr "Last users"
 
-#: view/theme/vier/theme.php:192
+#: view/theme/vier/theme.php:193
 msgid "Local Directory"
 msgstr "Local directory"
 
-#: view/theme/vier/theme.php:284
+#: view/theme/vier/theme.php:285
 msgid "Quick Start"
 msgstr "Quick start"
 
-#: src/App.php:527
+#: src/App.php:523
 msgid "Delete this item?"
 msgstr "Delete this item?"
 
-#: src/App.php:529
+#: src/App.php:525
 msgid "show fewer"
 msgstr "Show fewer."
 
-#: index.php:436
-msgid "toggle mobile"
-msgstr "Toggle mobile"
-
-#: boot.php:735
+#: boot.php:724
 #, php-format
 msgid "Update %s failed. See error logs."
 msgstr "Update %s failed. See error logs."
 
-#: boot.php:847
+#: boot.php:836
 msgid "Create a New Account"
 msgstr "Create a new account"
 
-#: boot.php:875
+#: boot.php:864
 msgid "Password: "
 msgstr "Password: "
 
-#: boot.php:876
+#: boot.php:865
 msgid "Remember me"
 msgstr "Remember me"
 
-#: boot.php:879
+#: boot.php:868
 msgid "Or login using OpenID: "
 msgstr "Or login with OpenID: "
 
-#: boot.php:885
+#: boot.php:874
 msgid "Forgot your password?"
 msgstr "Forgot your password?"
 
-#: boot.php:888
+#: boot.php:877
 msgid "Website Terms of Service"
 msgstr "Website Terms of Service"
 
-#: boot.php:889
+#: boot.php:878
 msgid "terms of service"
 msgstr "Terms of service"
 
-#: boot.php:891
+#: boot.php:880
 msgid "Website Privacy Policy"
 msgstr "Website Privacy Policy"
 
-#: boot.php:892
+#: boot.php:881
 msgid "privacy policy"
 msgstr "Privacy policy"
+
+#: index.php:437
+msgid "toggle mobile"
+msgstr "Toggle mobile"
index e7bc51fb89ec7dd33111ee5a4f0b71457141a686..6ee4b52942ca4be9153bca6b20c17186394a3077 100644 (file)
@@ -54,9 +54,6 @@ $a->strings["Mute Post Notifications"] = "Mute post notifications";
 $a->strings["Ability to mute notifications for a thread"] = "Ability to mute notifications for a thread";
 $a->strings["Advanced Profile Settings"] = "Advanced profiles";
 $a->strings["Show visitors public community forums at the Advanced Profile Page"] = "Show visitors of public community forums at the advanced profile page";
-$a->strings["Forums"] = "Forums";
-$a->strings["External link to forum"] = "External link to forum";
-$a->strings["show more"] = "Show more...";
 $a->strings["Miscellaneous"] = "Miscellaneous";
 $a->strings["Birthday:"] = "Birthday:";
 $a->strings["Age: "] = "Age: ";
@@ -80,52 +77,6 @@ $a->strings["seconds"] = "seconds";
 $a->strings["%1\$d %2\$s ago"] = "%1\$d %2\$s ago";
 $a->strings["%s's birthday"] = "%s's birthday";
 $a->strings["Happy Birthday %s"] = "Happy Birthday, %s!";
-$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s likes %2\$s's %3\$s";
-$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s doesn't like %2\$s's %3\$s";
-$a->strings["%1\$s is attending %2\$s's %3\$s"] = "%1\$s is going to %2\$s's %3\$s";
-$a->strings["%1\$s is not attending %2\$s's %3\$s"] = "%1\$s is not going to %2\$s's %3\$s";
-$a->strings["%1\$s may attend %2\$s's %3\$s"] = "%1\$s may go to %2\$s's %3\$s";
-$a->strings["photo"] = "photo";
-$a->strings["status"] = "status";
-$a->strings["event"] = "event";
-$a->strings["Error decoding account file"] = "Error decoding account file";
-$a->strings["Error! No version data in file! This is not a Friendica account file?"] = "Error! No version data in file! Is this a Friendica account file?";
-$a->strings["Error! Cannot check nickname"] = "Error! Cannot check nickname.";
-$a->strings["User '%s' already exists on this server!"] = "User '%s' already exists on this server!";
-$a->strings["User creation error"] = "User creation error";
-$a->strings["User profile creation error"] = "User profile creation error";
-$a->strings["%d contact not imported"] = array(
-       0 => "%d contact not imported",
-       1 => "%d contacts not imported",
-);
-$a->strings["Done. You can now login with your username and password"] = "Done. You can now login with your username and password";
-$a->strings["Passwords do not match. Password unchanged."] = "Passwords do not match. Password unchanged.";
-$a->strings["An invitation is required."] = "An invitation is required.";
-$a->strings["Invitation could not be verified."] = "Invitation could not be verified.";
-$a->strings["Invalid OpenID url"] = "Invalid OpenID URL";
-$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID.";
-$a->strings["The error message was:"] = "The error message was:";
-$a->strings["Please enter the required information."] = "Please enter the required information.";
-$a->strings["Please use a shorter name."] = "Please use a shorter name.";
-$a->strings["Name too short."] = "Name too short.";
-$a->strings["That doesn't appear to be your full (First Last) name."] = "That doesn't appear to be your full (i.e first and last) name.";
-$a->strings["Your email domain is not among those allowed on this site."] = "Your email domain is not allowed on this site.";
-$a->strings["Not a valid email address."] = "Not a valid email address.";
-$a->strings["Cannot use that email."] = "Cannot use that email.";
-$a->strings["Your \"nickname\" can only contain \"a-z\", \"0-9\" and \"_\"."] = "Your \"nickname\" can only contain \"a-z\", \"0-9\" and \"_\".";
-$a->strings["Nickname is already registered. Please choose another."] = "Nickname is already registered. Please choose another.";
-$a->strings["Nickname was once registered here and may not be re-used. Please choose another."] = "Nickname was once registered here and may not be re-used. Please choose another.";
-$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "SERIOUS ERROR: Generation of security keys failed.";
-$a->strings["An error occurred during registration. Please try again."] = "An error occurred during registration. Please try again.";
-$a->strings["default"] = "default";
-$a->strings["An error occurred creating your default profile. Please try again."] = "An error occurred creating your default profile. Please try again.";
-$a->strings["Friends"] = "Friends";
-$a->strings["Profile Photos"] = "Profile photos";
-$a->strings["\n\t\tDear %1\$s,\n\t\t\tThank you for registering at %2\$s. Your account is pending for approval by the administrator.\n\t"] = "\n\t\tDear %1\$s,\n\t\t\tThank you for signing up at %2\$s. Your account is pending approval by the administrator.\n\t";
-$a->strings["Registration at %s"] = "Registration at %s";
-$a->strings["\n\t\tDear %1\$s,\n\t\t\tThank you for registering at %2\$s. Your account has been created.\n\t"] = "\n\t\tDear %1\$s,\n\t\t\tThank you for signing up at %2\$s. Your account has been created.\n\t";
-$a->strings["\n\t\tThe login details are as follows:\n\t\t\tSite Location:\t%3\$s\n\t\t\tLogin Name:\t%1\$s\n\t\t\tPassword:\t%5\$s\n\n\t\tYou may change your password from your account \"Settings\" page after logging\n\t\tin.\n\n\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\tYou may also wish to add some basic information to your default profile\n\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\tWe recommend setting your full name, adding a profile photo,\n\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\tperhaps what country you live in; if you do not wish to be more specific\n\t\tthan that.\n\n\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\tIf you are new and do not know anybody here, they may help\n\t\tyou to make some new and interesting friends.\n\n\n\t\tThank you and welcome to %2\$s."] = "\n\t\tThe login details are as follows:\n\t\t\tSite Location:\t%3\$s\n\t\t\tLogin Name:\t%1\$s\n\t\t\tPassword:\t%5\$s\n\n\t\tYou may change your password for your account \"Settings\" after logging\n\t\tin.\n\n\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\tYou may wish to add some basic information to your default profile\n\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\tWe recommend setting your full name, adding a profile photo,\n\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\tperhaps what country you live in, if you do not wish to be more specific\n\t\tthan that.\n\n\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\tIf you are new and do not know anybody here, these settings may help to\n\t\tmake new and interesting friends.\n\n\n\t\tThank you and welcome to %2\$s.";
-$a->strings["Registration details for %s"] = "Registration details for %s";
 $a->strings["Male"] = "Male";
 $a->strings["Female"] = "Female";
 $a->strings["Currently Male"] = "Currently Male";
@@ -165,6 +116,7 @@ $a->strings["Infatuated"] = "Infatuated";
 $a->strings["Dating"] = "Dating";
 $a->strings["Unfaithful"] = "Unfaithful";
 $a->strings["Sex Addict"] = "Sex addict";
+$a->strings["Friends"] = "Friends";
 $a->strings["Friends/Benefits"] = "Friends with benefits";
 $a->strings["Casual"] = "Casual";
 $a->strings["Engaged"] = "Engaged";
@@ -186,211 +138,8 @@ $a->strings["Uncertain"] = "Uncertain";
 $a->strings["It's complicated"] = "It's complicated";
 $a->strings["Don't care"] = "Don't care";
 $a->strings["Ask me"] = "Ask me";
-$a->strings["System"] = "System";
-$a->strings["Network"] = "Network";
-$a->strings["Personal"] = "Personal";
-$a->strings["Home"] = "Home";
-$a->strings["Introductions"] = "Introductions";
-$a->strings["%s commented on %s's post"] = "%s commented on %s's post";
-$a->strings["%s created a new post"] = "%s posted something new";
-$a->strings["%s liked %s's post"] = "%s liked %s's post";
-$a->strings["%s disliked %s's post"] = "%s disliked %s's post";
-$a->strings["%s is attending %s's event"] = "%s is going to %s's event";
-$a->strings["%s is not attending %s's event"] = "%s is not going to %s's event";
-$a->strings["%s may attend %s's event"] = "%s may go to %s's event";
-$a->strings["%s is now friends with %s"] = "%s is now friends with %s";
-$a->strings["Friend Suggestion"] = "Friend suggestion";
-$a->strings["Friend/Connect Request"] = "Friend/Contact request";
-$a->strings["New Follower"] = "New follower";
-$a->strings["Wall Photos"] = "Wall photos";
-$a->strings["Daily posting limit of %d posts reached. The post was rejected."] = "Daily posting limit of %d posts reached. This post was rejected.";
-$a->strings["Weekly posting limit of %d posts reached. The post was rejected."] = "Weekly posting limit of %d posts reached. This post was rejected.";
-$a->strings["Monthly posting limit of %d posts reached. The post was rejected."] = "Monthly posting limit of %d posts reached. This post was rejected.";
-$a->strings["Logged out."] = "Logged out.";
-$a->strings["Login failed."] = "Login failed.";
-$a->strings["Image/photo"] = "Image/Photo";
-$a->strings["<a href=\"%1\$s\" target=\"_blank\">%2\$s</a> %3\$s"] = "<a href=\"%1\$s\" target=\"_blank\">%2\$s</a> %3\$s";
-$a->strings["$1 wrote:"] = "$1 wrote:";
-$a->strings["Encrypted content"] = "Encrypted content";
-$a->strings["Invalid source protocol"] = "Invalid source protocol";
-$a->strings["Invalid link protocol"] = "Invalid link protocol";
 $a->strings["Cannot locate DNS info for database server '%s'"] = "Cannot locate DNS info for database server '%s'";
-$a->strings["(no subject)"] = "(no subject)";
-$a->strings["noreply"] = "noreply";
-$a->strings["l F d, Y \\@ g:i A"] = "l F d, Y \\@ g:i A";
-$a->strings["Starts:"] = "Starts:";
-$a->strings["Finishes:"] = "Finishes:";
-$a->strings["Location:"] = "Location:";
-$a->strings["all-day"] = "All-day";
-$a->strings["Sun"] = "Sun";
-$a->strings["Mon"] = "Mon";
-$a->strings["Tue"] = "Tue";
-$a->strings["Wed"] = "Wed";
-$a->strings["Thu"] = "Thu";
-$a->strings["Fri"] = "Fri";
-$a->strings["Sat"] = "Sat";
-$a->strings["Sunday"] = "Sunday";
-$a->strings["Monday"] = "Monday";
-$a->strings["Tuesday"] = "Tuesday";
-$a->strings["Wednesday"] = "Wednesday";
-$a->strings["Thursday"] = "Thursday";
-$a->strings["Friday"] = "Friday";
-$a->strings["Saturday"] = "Saturday";
-$a->strings["Jan"] = "Jan";
-$a->strings["Feb"] = "Feb";
-$a->strings["Mar"] = "Mar";
-$a->strings["Apr"] = "Apr";
-$a->strings["May"] = "May";
-$a->strings["Jun"] = "Jun";
-$a->strings["Jul"] = "Jul";
-$a->strings["Aug"] = "Aug";
-$a->strings["Sept"] = "Sep";
-$a->strings["Oct"] = "Oct";
-$a->strings["Nov"] = "Nov";
-$a->strings["Dec"] = "Dec";
-$a->strings["January"] = "January";
-$a->strings["February"] = "February";
-$a->strings["March"] = "March";
-$a->strings["April"] = "April";
-$a->strings["June"] = "June";
-$a->strings["July"] = "July";
-$a->strings["August"] = "August";
-$a->strings["September"] = "September";
-$a->strings["October"] = "October";
-$a->strings["November"] = "November";
-$a->strings["December"] = "December";
-$a->strings["today"] = "today";
-$a->strings["No events to display"] = "No events to display";
-$a->strings["l, F j"] = "l, F j";
-$a->strings["Edit event"] = "Edit event";
-$a->strings["Delete event"] = "Delete event";
-$a->strings["link to source"] = "Link to source";
-$a->strings["Export"] = "Export";
-$a->strings["Export calendar as ical"] = "Export calendar as ical";
-$a->strings["Export calendar as csv"] = "Export calendar as csv";
-$a->strings["Disallowed profile URL."] = "Disallowed profile URL.";
-$a->strings["Blocked domain"] = "Blocked domain";
-$a->strings["Connect URL missing."] = "Connect URL missing.";
-$a->strings["This site is not configured to allow communications with other networks."] = "This site is not configured to allow communications with other networks.";
-$a->strings["No compatible communication protocols or feeds were discovered."] = "No compatible communication protocols or feeds were discovered.";
-$a->strings["The profile address specified does not provide adequate information."] = "The profile address specified does not provide adequate information.";
-$a->strings["An author or name was not found."] = "An author or name was not found.";
-$a->strings["No browser URL could be matched to this address."] = "No browser URL could be matched to this address.";
-$a->strings["Unable to match @-style Identity Address with a known protocol or email contact."] = "Unable to match @-style identity address with a known protocol or email contact.";
-$a->strings["Use mailto: in front of address to force email check."] = "Use mailto: in front of address to force email check.";
-$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "The profile address specified belongs to a network which has been disabled on this site.";
-$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "Limited profile: This person will be unable to receive direct/private messages from you.";
-$a->strings["Unable to retrieve contact information."] = "Unable to retrieve contact information.";
-$a->strings["[no subject]"] = "[no subject]";
-$a->strings["Nothing new here"] = "Nothing new here";
-$a->strings["Clear notifications"] = "Clear notifications";
-$a->strings["@name, !forum, #tags, content"] = "@name, !forum, #tags, content";
-$a->strings["Logout"] = "Logout";
-$a->strings["End this session"] = "End this session";
-$a->strings["Status"] = "Status";
-$a->strings["Your posts and conversations"] = "My posts and conversations";
-$a->strings["Profile"] = "Profile";
-$a->strings["Your profile page"] = "My profile page";
-$a->strings["Photos"] = "Photos";
-$a->strings["Your photos"] = "My photos";
-$a->strings["Videos"] = "Videos";
-$a->strings["Your videos"] = "My videos";
-$a->strings["Events"] = "Events";
-$a->strings["Your events"] = "My events";
-$a->strings["Personal notes"] = "Personal notes";
-$a->strings["Your personal notes"] = "My personal notes";
-$a->strings["Login"] = "Login";
-$a->strings["Sign in"] = "Sign in";
-$a->strings["Home Page"] = "Home page";
-$a->strings["Register"] = "Sign up now >>";
-$a->strings["Create an account"] = "Create account";
-$a->strings["Help"] = "Help";
-$a->strings["Help and documentation"] = "Help and documentation";
-$a->strings["Apps"] = "Apps";
-$a->strings["Addon applications, utilities, games"] = "Addon applications, utilities, games";
-$a->strings["Search"] = "Search";
-$a->strings["Search site content"] = "Search site content";
-$a->strings["Full Text"] = "Full text";
-$a->strings["Tags"] = "Tags";
-$a->strings["Contacts"] = "Contacts";
-$a->strings["Community"] = "Community";
-$a->strings["Conversations on this site"] = "Public conversations on this site";
-$a->strings["Conversations on the network"] = "Conversations on the network";
-$a->strings["Events and Calendar"] = "Events and calendar";
-$a->strings["Directory"] = "Directory";
-$a->strings["People directory"] = "People directory";
-$a->strings["Information"] = "Information";
-$a->strings["Information about this friendica instance"] = "Information about this Friendica instance";
-$a->strings["Conversations from your friends"] = "My friends' conversations";
-$a->strings["Network Reset"] = "Network reset";
-$a->strings["Load Network page with no filters"] = "Load network page without filters";
-$a->strings["Friend Requests"] = "Friend requests";
-$a->strings["Notifications"] = "Notifications";
-$a->strings["See all notifications"] = "See all notifications";
-$a->strings["Mark as seen"] = "Mark as seen";
-$a->strings["Mark all system notifications seen"] = "Mark all system notifications seen";
-$a->strings["Messages"] = "Messages";
-$a->strings["Private mail"] = "Private messages";
-$a->strings["Inbox"] = "Inbox";
-$a->strings["Outbox"] = "Outbox";
-$a->strings["New Message"] = "New Message";
-$a->strings["Manage"] = "Manage";
-$a->strings["Manage other pages"] = "Manage other pages";
-$a->strings["Delegations"] = "Delegations";
-$a->strings["Delegate Page Management"] = "Delegate Page Management";
-$a->strings["Settings"] = "Settings";
-$a->strings["Account settings"] = "Account settings";
-$a->strings["Profiles"] = "Profiles";
-$a->strings["Manage/Edit Profiles"] = "Manage/Edit profiles";
-$a->strings["Manage/edit friends and contacts"] = "Manage/Edit friends and contacts";
-$a->strings["Admin"] = "Admin";
-$a->strings["Site setup and configuration"] = "Site setup and configuration";
-$a->strings["Navigation"] = "Navigation";
-$a->strings["Site map"] = "Site map";
-$a->strings["view full size"] = "view full size";
 $a->strings["Contact Photos"] = "Contact photos";
-$a->strings["Welcome "] = "Welcome ";
-$a->strings["Please upload a profile photo."] = "Please upload a profile photo.";
-$a->strings["Welcome back "] = "Welcome back ";
-$a->strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "The form security token was incorrect. This probably happened because the form has not been submitted within 3 hours.";
-$a->strings["Add New Contact"] = "Add new contact";
-$a->strings["Enter address or web location"] = "Enter address or web location";
-$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Example: jo@example.com, http://example.com/jo";
-$a->strings["Connect"] = "Connect";
-$a->strings["%d invitation available"] = array(
-       0 => "%d invitation available",
-       1 => "%d invitations available",
-);
-$a->strings["Find People"] = "Find people";
-$a->strings["Enter name or interest"] = "Enter name or interest";
-$a->strings["Connect/Follow"] = "Connect/Follow";
-$a->strings["Examples: Robert Morgenstein, Fishing"] = "Examples: Robert Morgenstein, fishing";
-$a->strings["Find"] = "Find";
-$a->strings["Friend Suggestions"] = "Friend suggestions";
-$a->strings["Similar Interests"] = "Similar interests";
-$a->strings["Random Profile"] = "Random profile";
-$a->strings["Invite Friends"] = "Invite friends";
-$a->strings["View Global Directory"] = "View global directory";
-$a->strings["Networks"] = "Networks";
-$a->strings["All Networks"] = "All networks";
-$a->strings["Everything"] = "Everything";
-$a->strings["Categories"] = "Categories";
-$a->strings["%d contact in common"] = array(
-       0 => "%d contact in common",
-       1 => "%d contacts in common",
-);
-$a->strings["%s\\'s birthday"] = "%s\\'s birthday";
-$a->strings["View Profile"] = "View profile";
-$a->strings["View Status"] = "View status";
-$a->strings["View Photos"] = "View photos";
-$a->strings["Network Posts"] = "Network posts";
-$a->strings["View Contact"] = "View contact";
-$a->strings["Drop Contact"] = "Drop contact";
-$a->strings["Send PM"] = "Send PM";
-$a->strings["Poke"] = "Poke";
-$a->strings["Organisation"] = "Organisation";
-$a->strings["News"] = "News";
-$a->strings["Forum"] = "Forum";
 $a->strings["Post to Email"] = "Post to email";
 $a->strings["Connectors disabled, since \"%s\" is enabled."] = "Connectors are disabled since \"%s\" is enabled.";
 $a->strings["Hide your profile details from unknown viewers?"] = "Hide profile details from unknown viewers?";
@@ -430,9 +179,100 @@ $a->strings["Diaspora Connector"] = "Diaspora connector";
 $a->strings["GNU Social Connector"] = "GNU Social connector";
 $a->strings["pnut"] = "Pnut";
 $a->strings["App.net"] = "App.net";
-$a->strings["%1\$s attends %2\$s's %3\$s"] = "%1\$s goes to %2\$s's %3\$s";
-$a->strings["%1\$s doesn't attend %2\$s's %3\$s"] = "%1\$s doesn't go %2\$s's %3\$s";
-$a->strings["%1\$s attends maybe %2\$s's %3\$s"] = "%1\$s might go to %2\$s's %3\$s";
+$a->strings["A deleted group with this name was revived. Existing item permissions <strong>may</strong> apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "A deleted group with this name has been revived. Existing item permissions <strong>may</strong> apply to this group and any future members. If this is not what you intended, please create another group with a different name.";
+$a->strings["Default privacy group for new contacts"] = "Default privacy group for new contacts";
+$a->strings["Everybody"] = "Everybody";
+$a->strings["edit"] = "edit";
+$a->strings["Groups"] = "Groups";
+$a->strings["Edit groups"] = "Edit groups";
+$a->strings["Edit group"] = "Edit group";
+$a->strings["Create a new group"] = "Create new group";
+$a->strings["Group Name: "] = "Group name: ";
+$a->strings["Contacts not in any group"] = "Contacts not in any group";
+$a->strings["add"] = "add";
+$a->strings["View Profile"] = "View profile";
+$a->strings["Connect/Follow"] = "Connect/Follow";
+$a->strings["View Status"] = "View status";
+$a->strings["View Photos"] = "View photos";
+$a->strings["Network Posts"] = "Network posts";
+$a->strings["View Contact"] = "View contact";
+$a->strings["Drop Contact"] = "Drop contact";
+$a->strings["Send PM"] = "Send PM";
+$a->strings["Poke"] = "Poke";
+$a->strings["Organisation"] = "Organisation";
+$a->strings["News"] = "News";
+$a->strings["Forum"] = "Forum";
+$a->strings["Forums"] = "Forums";
+$a->strings["External link to forum"] = "External link to forum";
+$a->strings["show more"] = "Show more...";
+$a->strings["System"] = "System";
+$a->strings["Network"] = "Network";
+$a->strings["Personal"] = "Personal";
+$a->strings["Home"] = "Home";
+$a->strings["Introductions"] = "Introductions";
+$a->strings["%s commented on %s's post"] = "%s commented on %s's post";
+$a->strings["%s created a new post"] = "%s posted something new";
+$a->strings["%s liked %s's post"] = "%s liked %s's post";
+$a->strings["%s disliked %s's post"] = "%s disliked %s's post";
+$a->strings["%s is attending %s's event"] = "%s is going to %s's event";
+$a->strings["%s is not attending %s's event"] = "%s is not going to %s's event";
+$a->strings["%s may attend %s's event"] = "%s may go to %s's event";
+$a->strings["%s is now friends with %s"] = "%s is now friends with %s";
+$a->strings["Friend Suggestion"] = "Friend suggestion";
+$a->strings["Friend/Connect Request"] = "Friend/Contact request";
+$a->strings["New Follower"] = "New follower";
+$a->strings["Wall Photos"] = "Wall photos";
+$a->strings["Daily posting limit of %d posts reached. The post was rejected."] = "Daily posting limit of %d posts reached. This post was rejected.";
+$a->strings["Weekly posting limit of %d posts reached. The post was rejected."] = "Weekly posting limit of %d posts reached. This post was rejected.";
+$a->strings["Monthly posting limit of %d posts reached. The post was rejected."] = "Monthly posting limit of %d posts reached. This post was rejected.";
+$a->strings["Profile Photos"] = "Profile photos";
+$a->strings["Logged out."] = "Logged out.";
+$a->strings["Login failed."] = "Login failed.";
+$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID.";
+$a->strings["The error message was:"] = "The error message was:";
+$a->strings["l F d, Y \\@ g:i A"] = "l F d, Y \\@ g:i A";
+$a->strings["Starts:"] = "Starts:";
+$a->strings["Finishes:"] = "Finishes:";
+$a->strings["Location:"] = "Location:";
+$a->strings["Image/photo"] = "Image/Photo";
+$a->strings["<a href=\"%1\$s\" target=\"_blank\">%2\$s</a> %3\$s"] = "<a href=\"%1\$s\" target=\"_blank\">%2\$s</a> %3\$s";
+$a->strings["$1 wrote:"] = "$1 wrote:";
+$a->strings["Encrypted content"] = "Encrypted content";
+$a->strings["Invalid source protocol"] = "Invalid source protocol";
+$a->strings["Invalid link protocol"] = "Invalid link protocol";
+$a->strings["Add New Contact"] = "Add new contact";
+$a->strings["Enter address or web location"] = "Enter address or web location";
+$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Example: jo@example.com, http://example.com/jo";
+$a->strings["Connect"] = "Connect";
+$a->strings["%d invitation available"] = array(
+       0 => "%d invitation available",
+       1 => "%d invitations available",
+);
+$a->strings["Find People"] = "Find people";
+$a->strings["Enter name or interest"] = "Enter name or interest";
+$a->strings["Examples: Robert Morgenstein, Fishing"] = "Examples: Robert Morgenstein, fishing";
+$a->strings["Find"] = "Find";
+$a->strings["Friend Suggestions"] = "Friend suggestions";
+$a->strings["Similar Interests"] = "Similar interests";
+$a->strings["Random Profile"] = "Random profile";
+$a->strings["Invite Friends"] = "Invite friends";
+$a->strings["View Global Directory"] = "View global directory";
+$a->strings["Networks"] = "Networks";
+$a->strings["All Networks"] = "All networks";
+$a->strings["Everything"] = "Everything";
+$a->strings["Categories"] = "Categories";
+$a->strings["%d contact in common"] = array(
+       0 => "%d contact in common",
+       1 => "%d contacts in common",
+);
+$a->strings["event"] = "event";
+$a->strings["status"] = "status";
+$a->strings["photo"] = "photo";
+$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s likes %2\$s's %3\$s";
+$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s doesn't like %2\$s's %3\$s";
+$a->strings["%1\$s attends %2\$s's %3\$s"] = "%1\$s goes to %2\$s's %3\$s";
+$a->strings["%1\$s doesn't attend %2\$s's %3\$s"] = "%1\$s doesn't go %2\$s's %3\$s";
+$a->strings["%1\$s attends maybe %2\$s's %3\$s"] = "%1\$s might go to %2\$s's %3\$s";
 $a->strings["%1\$s is now friends with %2\$s"] = "%1\$s is now friends with %2\$s";
 $a->strings["%1\$s poked %2\$s"] = "%1\$s poked %2\$s";
 $a->strings["%1\$s is currently %2\$s"] = "%1\$s is currently %2\$s";
@@ -530,6 +370,9 @@ $a->strings["\nError %d occurred during database update:\n%s\n"] = "\nError %d o
 $a->strings["Errors encountered performing database changes: "] = "Errors encountered performing database changes: ";
 $a->strings[": Database update"] = ": Database update";
 $a->strings["%s: updating %s table."] = "%s: updating %s table.";
+$a->strings["(no subject)"] = "(no subject)";
+$a->strings["noreply"] = "noreply";
+$a->strings["%s\\'s birthday"] = "%s\\'s birthday";
 $a->strings["Sharing notification from Diaspora network"] = "Sharing notification from Diaspora network";
 $a->strings["Attachments:"] = "Attachments:";
 $a->strings["Friendica Notification"] = "Friendica notification";
@@ -591,21 +434,71 @@ $a->strings["You've received a registration request from '%1\$s' at %2\$s"] = "Y
 $a->strings["You've received a [url=%1\$s]registration request[/url] from %2\$s."] = "You've received a [url=%1\$s]registration request[/url] from %2\$s.";
 $a->strings["Full Name:\t%1\$s\\nSite Location:\t%2\$s\\nLogin Name:\t%3\$s (%4\$s)"] = "Full Name:\t%1\$s\\nSite Location:\t%2\$s\\nLogin Name:\t%3\$s (%4\$s)";
 $a->strings["Please visit %s to approve or reject the request."] = "Please visit %s to approve or reject the request.";
-$a->strings["A deleted group with this name was revived. Existing item permissions <strong>may</strong> apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "A deleted group with this name has been revived. Existing item permissions <strong>may</strong> apply to this group and any future members. If this is not what you intended, please create another group with a different name.";
-$a->strings["Default privacy group for new contacts"] = "Default privacy group for new contacts";
-$a->strings["Everybody"] = "Everybody";
-$a->strings["edit"] = "edit";
-$a->strings["Groups"] = "Groups";
-$a->strings["Edit groups"] = "Edit groups";
-$a->strings["Edit group"] = "Edit group";
-$a->strings["Create a new group"] = "Create new group";
-$a->strings["Group Name: "] = "Group name: ";
-$a->strings["Contacts not in any group"] = "Contacts not in any group";
-$a->strings["add"] = "add";
+$a->strings["all-day"] = "All-day";
+$a->strings["Sun"] = "Sun";
+$a->strings["Mon"] = "Mon";
+$a->strings["Tue"] = "Tue";
+$a->strings["Wed"] = "Wed";
+$a->strings["Thu"] = "Thu";
+$a->strings["Fri"] = "Fri";
+$a->strings["Sat"] = "Sat";
+$a->strings["Sunday"] = "Sunday";
+$a->strings["Monday"] = "Monday";
+$a->strings["Tuesday"] = "Tuesday";
+$a->strings["Wednesday"] = "Wednesday";
+$a->strings["Thursday"] = "Thursday";
+$a->strings["Friday"] = "Friday";
+$a->strings["Saturday"] = "Saturday";
+$a->strings["Jan"] = "Jan";
+$a->strings["Feb"] = "Feb";
+$a->strings["Mar"] = "Mar";
+$a->strings["Apr"] = "Apr";
+$a->strings["May"] = "May";
+$a->strings["Jun"] = "Jun";
+$a->strings["Jul"] = "Jul";
+$a->strings["Aug"] = "Aug";
+$a->strings["Sept"] = "Sep";
+$a->strings["Oct"] = "Oct";
+$a->strings["Nov"] = "Nov";
+$a->strings["Dec"] = "Dec";
+$a->strings["January"] = "January";
+$a->strings["February"] = "February";
+$a->strings["March"] = "March";
+$a->strings["April"] = "April";
+$a->strings["June"] = "June";
+$a->strings["July"] = "July";
+$a->strings["August"] = "August";
+$a->strings["September"] = "September";
+$a->strings["October"] = "October";
+$a->strings["November"] = "November";
+$a->strings["December"] = "December";
+$a->strings["today"] = "today";
+$a->strings["No events to display"] = "No events to display";
+$a->strings["l, F j"] = "l, F j";
+$a->strings["Edit event"] = "Edit event";
+$a->strings["Delete event"] = "Delete event";
+$a->strings["link to source"] = "Link to source";
+$a->strings["Export"] = "Export";
+$a->strings["Export calendar as ical"] = "Export calendar as ical";
+$a->strings["Export calendar as csv"] = "Export calendar as csv";
+$a->strings["Disallowed profile URL."] = "Disallowed profile URL.";
+$a->strings["Blocked domain"] = "Blocked domain";
+$a->strings["Connect URL missing."] = "Connect URL missing.";
+$a->strings["This site is not configured to allow communications with other networks."] = "This site is not configured to allow communications with other networks.";
+$a->strings["No compatible communication protocols or feeds were discovered."] = "No compatible communication protocols or feeds were discovered.";
+$a->strings["The profile address specified does not provide adequate information."] = "The profile address specified does not provide adequate information.";
+$a->strings["An author or name was not found."] = "An author or name was not found.";
+$a->strings["No browser URL could be matched to this address."] = "No browser URL could be matched to this address.";
+$a->strings["Unable to match @-style Identity Address with a known protocol or email contact."] = "Unable to match @-style identity address with a known protocol or email contact.";
+$a->strings["Use mailto: in front of address to force email check."] = "Use mailto: in front of address to force email check.";
+$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "The profile address specified belongs to a network which has been disabled on this site.";
+$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "Limited profile: This person will be unable to receive direct/private messages from you.";
+$a->strings["Unable to retrieve contact information."] = "Unable to retrieve contact information.";
 $a->strings["Requested account is not available."] = "Requested account is unavailable.";
 $a->strings["Requested profile is not available."] = "Requested profile is unavailable.";
 $a->strings["Edit profile"] = "Edit profile";
 $a->strings["Atom feed"] = "Atom feed";
+$a->strings["Profiles"] = "Profiles";
 $a->strings["Manage/edit profiles"] = "Manage/Edit profiles";
 $a->strings["Change profile photo"] = "Change profile photo";
 $a->strings["Create New Profile"] = "Create new profile";
@@ -626,6 +519,7 @@ $a->strings["Birthdays this week:"] = "Birthdays this week:";
 $a->strings["[No description]"] = "[No description]";
 $a->strings["Event Reminders"] = "Event reminders";
 $a->strings["Events this week:"] = "Events this week:";
+$a->strings["Profile"] = "Profile";
 $a->strings["Full Name:"] = "Full name:";
 $a->strings["j F, Y"] = "j F, Y";
 $a->strings["j F"] = "j F";
@@ -650,17 +544,85 @@ $a->strings["School/education:"] = "School/Education:";
 $a->strings["Forums:"] = "Forums:";
 $a->strings["Basic"] = "Basic";
 $a->strings["Advanced"] = "Advanced";
+$a->strings["Status"] = "Status";
 $a->strings["Status Messages and Posts"] = "Status Messages and Posts";
 $a->strings["Profile Details"] = "Profile Details";
+$a->strings["Photos"] = "Photos";
 $a->strings["Photo Albums"] = "Photo Albums";
+$a->strings["Videos"] = "Videos";
+$a->strings["Events"] = "Events";
+$a->strings["Events and Calendar"] = "Events and calendar";
 $a->strings["Personal Notes"] = "Personal notes";
 $a->strings["Only You Can See This"] = "Only you can see this.";
+$a->strings["Contacts"] = "Contacts";
 $a->strings["[Name Withheld]"] = "[Name Withheld]";
 $a->strings["Item not found."] = "Item not found.";
 $a->strings["Do you really want to delete this item?"] = "Do you really want to delete this item?";
 $a->strings["Yes"] = "Yes";
 $a->strings["Permission denied."] = "Permission denied.";
 $a->strings["Archives"] = "Archives";
+$a->strings["%1\$s is attending %2\$s's %3\$s"] = "%1\$s is going to %2\$s's %3\$s";
+$a->strings["%1\$s is not attending %2\$s's %3\$s"] = "%1\$s is not going to %2\$s's %3\$s";
+$a->strings["%1\$s may attend %2\$s's %3\$s"] = "%1\$s may go to %2\$s's %3\$s";
+$a->strings["[no subject]"] = "[no subject]";
+$a->strings["Nothing new here"] = "Nothing new here";
+$a->strings["Clear notifications"] = "Clear notifications";
+$a->strings["@name, !forum, #tags, content"] = "@name, !forum, #tags, content";
+$a->strings["Logout"] = "Logout";
+$a->strings["End this session"] = "End this session";
+$a->strings["Your posts and conversations"] = "My posts and conversations";
+$a->strings["Your profile page"] = "My profile page";
+$a->strings["Your photos"] = "My photos";
+$a->strings["Your videos"] = "My videos";
+$a->strings["Your events"] = "My events";
+$a->strings["Personal notes"] = "Personal notes";
+$a->strings["Your personal notes"] = "My personal notes";
+$a->strings["Login"] = "Login";
+$a->strings["Sign in"] = "Sign in";
+$a->strings["Home Page"] = "Home page";
+$a->strings["Register"] = "Sign up now >>";
+$a->strings["Create an account"] = "Create account";
+$a->strings["Help"] = "Help";
+$a->strings["Help and documentation"] = "Help and documentation";
+$a->strings["Apps"] = "Apps";
+$a->strings["Addon applications, utilities, games"] = "Addon applications, utilities, games";
+$a->strings["Search"] = "Search";
+$a->strings["Search site content"] = "Search site content";
+$a->strings["Full Text"] = "Full text";
+$a->strings["Tags"] = "Tags";
+$a->strings["Community"] = "Community";
+$a->strings["Conversations on this site"] = "Public conversations on this site";
+$a->strings["Conversations on the network"] = "Conversations on the network";
+$a->strings["Directory"] = "Directory";
+$a->strings["People directory"] = "People directory";
+$a->strings["Information"] = "Information";
+$a->strings["Information about this friendica instance"] = "Information about this Friendica instance";
+$a->strings["Conversations from your friends"] = "My friends' conversations";
+$a->strings["Network Reset"] = "Network reset";
+$a->strings["Load Network page with no filters"] = "Load network page without filters";
+$a->strings["Friend Requests"] = "Friend requests";
+$a->strings["Notifications"] = "Notifications";
+$a->strings["See all notifications"] = "See all notifications";
+$a->strings["Mark as seen"] = "Mark as seen";
+$a->strings["Mark all system notifications seen"] = "Mark all system notifications seen";
+$a->strings["Messages"] = "Messages";
+$a->strings["Private mail"] = "Private messages";
+$a->strings["Inbox"] = "Inbox";
+$a->strings["Outbox"] = "Outbox";
+$a->strings["New Message"] = "New Message";
+$a->strings["Manage"] = "Manage";
+$a->strings["Manage other pages"] = "Manage other pages";
+$a->strings["Delegations"] = "Delegations";
+$a->strings["Delegate Page Management"] = "Delegate Page Management";
+$a->strings["Settings"] = "Settings";
+$a->strings["Account settings"] = "Account settings";
+$a->strings["Manage/Edit Profiles"] = "Manage/Edit profiles";
+$a->strings["Manage/edit friends and contacts"] = "Manage/Edit friends and contacts";
+$a->strings["Admin"] = "Admin";
+$a->strings["Site setup and configuration"] = "Site setup and configuration";
+$a->strings["Navigation"] = "Navigation";
+$a->strings["Site map"] = "Site map";
+$a->strings["view full size"] = "view full size";
 $a->strings["Embedded content"] = "Embedded content";
 $a->strings["Embedding disabled"] = "Embedding disabled";
 $a->strings["%s is now following %s."] = "%s is now following %s.";
@@ -670,6 +632,10 @@ $a->strings["stopped following"] = "stopped following";
 $a->strings["Click here to upgrade."] = "Click here to upgrade.";
 $a->strings["This action exceeds the limits set by your subscription plan."] = "This action exceeds the limits set by your subscription plan.";
 $a->strings["This action is not available under your subscription plan."] = "This action is not available under your subscription plan.";
+$a->strings["Welcome "] = "Welcome ";
+$a->strings["Please upload a profile photo."] = "Please upload a profile photo.";
+$a->strings["Welcome back "] = "Welcome back ";
+$a->strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "The form security token was incorrect. This probably happened because the form has not been submitted within 3 hours.";
 $a->strings["newer"] = "Later posts";
 $a->strings["older"] = "Earlier posts";
 $a->strings["first"] = "first";
@@ -729,20 +695,53 @@ $a->strings["comment"] = array(
 );
 $a->strings["post"] = "post";
 $a->strings["Item filed"] = "Item filed";
-$a->strings["No friends to display."] = "No friends to display.";
-$a->strings["Authorize application connection"] = "Authorize application connection";
-$a->strings["Return to your app and insert this Securty Code:"] = "Return to your app and insert this security code:";
-$a->strings["Please login to continue."] = "Please login to continue.";
-$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Do you want to authorize this application to access your posts and contacts and create new posts for you?";
-$a->strings["No"] = "No";
-$a->strings["You must be logged in to use addons. "] = "You must be logged in to use addons. ";
-$a->strings["Applications"] = "Applications";
-$a->strings["No installed applications."] = "No installed applications.";
-$a->strings["Item not available."] = "Item not available.";
-$a->strings["Item was not found."] = "Item was not found.";
-$a->strings["Source (bbcode) text:"] = "Source (bbcode) text:";
-$a->strings["Source (Diaspora) text to convert to BBcode:"] = "Source (Diaspora) text to convert to BBcode:";
-$a->strings["Source input: "] = "Source input: ";
+$a->strings["Error decoding account file"] = "Error decoding account file";
+$a->strings["Error! No version data in file! This is not a Friendica account file?"] = "Error! No version data in file! Is this a Friendica account file?";
+$a->strings["Error! Cannot check nickname"] = "Error! Cannot check nickname.";
+$a->strings["User '%s' already exists on this server!"] = "User '%s' already exists on this server!";
+$a->strings["User creation error"] = "User creation error";
+$a->strings["User profile creation error"] = "User profile creation error";
+$a->strings["%d contact not imported"] = array(
+       0 => "%d contact not imported",
+       1 => "%d contacts not imported",
+);
+$a->strings["Done. You can now login with your username and password"] = "Done. You can now login with your username and password";
+$a->strings["Passwords do not match. Password unchanged."] = "Passwords do not match. Password unchanged.";
+$a->strings["An invitation is required."] = "An invitation is required.";
+$a->strings["Invitation could not be verified."] = "Invitation could not be verified.";
+$a->strings["Invalid OpenID url"] = "Invalid OpenID URL";
+$a->strings["Please enter the required information."] = "Please enter the required information.";
+$a->strings["Please use a shorter name."] = "Please use a shorter name.";
+$a->strings["Name too short."] = "Name too short.";
+$a->strings["That doesn't appear to be your full (First Last) name."] = "That doesn't appear to be your full (i.e first and last) name.";
+$a->strings["Your email domain is not among those allowed on this site."] = "Your email domain is not allowed on this site.";
+$a->strings["Not a valid email address."] = "Not a valid email address.";
+$a->strings["Cannot use that email."] = "Cannot use that email.";
+$a->strings["Your \"nickname\" can only contain \"a-z\", \"0-9\" and \"_\"."] = "Your \"nickname\" can only contain \"a-z\", \"0-9\" and \"_\".";
+$a->strings["Nickname is already registered. Please choose another."] = "Nickname is already registered. Please choose another.";
+$a->strings["Nickname was once registered here and may not be re-used. Please choose another."] = "Nickname was once registered here and may not be re-used. Please choose another.";
+$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "SERIOUS ERROR: Generation of security keys failed.";
+$a->strings["An error occurred during registration. Please try again."] = "An error occurred during registration. Please try again.";
+$a->strings["default"] = "default";
+$a->strings["An error occurred creating your default profile. Please try again."] = "An error occurred creating your default profile. Please try again.";
+$a->strings["\n\t\tDear %1\$s,\n\t\t\tThank you for registering at %2\$s. Your account is pending for approval by the administrator.\n\t"] = "\n\t\tDear %1\$s,\n\t\t\tThank you for signing up at %2\$s. Your account is pending approval by the administrator.\n\t";
+$a->strings["Registration at %s"] = "Registration at %s";
+$a->strings["\n\t\tDear %1\$s,\n\t\t\tThank you for registering at %2\$s. Your account has been created.\n\t"] = "\n\t\tDear %1\$s,\n\t\t\tThank you for signing up at %2\$s. Your account has been created.\n\t";
+$a->strings["\n\t\tThe login details are as follows:\n\t\t\tSite Location:\t%3\$s\n\t\t\tLogin Name:\t%1\$s\n\t\t\tPassword:\t%5\$s\n\n\t\tYou may change your password from your account \"Settings\" page after logging\n\t\tin.\n\n\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\tYou may also wish to add some basic information to your default profile\n\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\tWe recommend setting your full name, adding a profile photo,\n\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\tperhaps what country you live in; if you do not wish to be more specific\n\t\tthan that.\n\n\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\tIf you are new and do not know anybody here, they may help\n\t\tyou to make some new and interesting friends.\n\n\n\t\tThank you and welcome to %2\$s."] = "\n\t\tThe login details are as follows:\n\t\t\tSite Location:\t%3\$s\n\t\t\tLogin Name:\t%1\$s\n\t\t\tPassword:\t%5\$s\n\n\t\tYou may change your password for your account \"Settings\" after logging\n\t\tin.\n\n\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\tYou may wish to add some basic information to your default profile\n\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\tWe recommend setting your full name, adding a profile photo,\n\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\tperhaps what country you live in, if you do not wish to be more specific\n\t\tthan that.\n\n\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\tIf you are new and do not know anybody here, these settings may help to\n\t\tmake new and interesting friends.\n\n\n\t\tThank you and welcome to %2\$s.";
+$a->strings["Registration details for %s"] = "Registration details for %s";
+$a->strings["Authorize application connection"] = "Authorize application connection";
+$a->strings["Return to your app and insert this Securty Code:"] = "Return to your app and insert this security code:";
+$a->strings["Please login to continue."] = "Please login to continue.";
+$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Do you want to authorize this application to access your posts and contacts and create new posts for you?";
+$a->strings["No"] = "No";
+$a->strings["You must be logged in to use addons. "] = "You must be logged in to use addons. ";
+$a->strings["Applications"] = "Applications";
+$a->strings["No installed applications."] = "No installed applications.";
+$a->strings["Item not available."] = "Item not available.";
+$a->strings["Item was not found."] = "Item was not found.";
+$a->strings["Source (bbcode) text:"] = "Source (bbcode) text:";
+$a->strings["Source (Diaspora) text to convert to BBcode:"] = "Source (Diaspora) text to convert to BBcode:";
+$a->strings["Source input: "] = "Source input: ";
 $a->strings["bb2html (raw HTML): "] = "bb2html (raw HTML): ";
 $a->strings["bb2html: "] = "bb2html: ";
 $a->strings["bb2html2bb: "] = "bb2html2bb: ";
@@ -752,61 +751,8 @@ $a->strings["bb2dia2bb: "] = "bb2dia2bb: ";
 $a->strings["bb2md2html2bb: "] = "bb2md2html2bb: ";
 $a->strings["Source input (Diaspora format): "] = "Source input (Diaspora format): ";
 $a->strings["diaspora2bb: "] = "diaspora2bb: ";
-$a->strings["The post was created"] = "The post was created";
-$a->strings["Access to this profile has been restricted."] = "Access to this profile has been restricted.";
-$a->strings["View"] = "View";
-$a->strings["Previous"] = "Previous";
-$a->strings["Next"] = "Next";
-$a->strings["list"] = "List";
-$a->strings["User not found"] = "User not found";
-$a->strings["This calendar format is not supported"] = "This calendar format is not supported";
-$a->strings["No exportable data found"] = "No exportable data found";
-$a->strings["calendar"] = "calendar";
 $a->strings["No contacts in common."] = "No contacts in common.";
 $a->strings["Common Friends"] = "Common friends";
-$a->strings["No such group"] = "No such group";
-$a->strings["Group is empty"] = "Group is empty";
-$a->strings["Group: %s"] = "Group: %s";
-$a->strings["This entry was edited"] = "This entry was edited";
-$a->strings["%d comment"] = array(
-       0 => "%d comment",
-       1 => "%d comments -",
-);
-$a->strings["Private Message"] = "Private message";
-$a->strings["I like this (toggle)"] = "I like this (toggle)";
-$a->strings["like"] = "Like";
-$a->strings["I don't like this (toggle)"] = "I don't like this (toggle)";
-$a->strings["dislike"] = "Dislike";
-$a->strings["Share this"] = "Share this";
-$a->strings["share"] = "Share";
-$a->strings["This is you"] = "This is me";
-$a->strings["Comment"] = "Comment";
-$a->strings["Submit"] = "Submit";
-$a->strings["Bold"] = "Bold";
-$a->strings["Italic"] = "Italic";
-$a->strings["Underline"] = "Underline";
-$a->strings["Quote"] = "Quote";
-$a->strings["Code"] = "Code";
-$a->strings["Image"] = "Image";
-$a->strings["Link"] = "Link";
-$a->strings["Video"] = "Video";
-$a->strings["Edit"] = "Edit";
-$a->strings["add star"] = "Add star";
-$a->strings["remove star"] = "Remove star";
-$a->strings["toggle star status"] = "Toggle star status";
-$a->strings["starred"] = "Starred";
-$a->strings["add tag"] = "Add tag";
-$a->strings["ignore thread"] = "Ignore thread";
-$a->strings["unignore thread"] = "Unignore thread";
-$a->strings["toggle ignore status"] = "Toggle ignore status";
-$a->strings["ignored"] = "Ignored";
-$a->strings["save to folder"] = "Save to folder";
-$a->strings["I will attend"] = "I will attend";
-$a->strings["I will not attend"] = "I will not attend";
-$a->strings["I might attend"] = "I might attend";
-$a->strings["to"] = "to";
-$a->strings["Wall-to-Wall"] = "Wall-to-wall";
-$a->strings["via Wall-To-Wall:"] = "via wall-to-wall:";
 $a->strings["Credits"] = "Credits";
 $a->strings["Friendica is a community project, that would not be possible without the help of many people. Here is a list of those who have contributed to the code or the translation of Friendica. Thank you all!"] = "Friendica is a community project that would not be possible without the help of many people. Here is a list of those who have contributed to the code or the translation of Friendica. Thank you all!";
 $a->strings["Contact settings applied."] = "Contact settings applied.";
@@ -819,6 +765,7 @@ $a->strings["Mirror as forwarded posting"] = "Mirror as forwarded posting";
 $a->strings["Mirror as my own posting"] = "Mirror as my own posting";
 $a->strings["Return to contact editor"] = "Return to contact editor";
 $a->strings["Refetch contact data"] = "Re-fetch contact data.";
+$a->strings["Submit"] = "Submit";
 $a->strings["Remote Self"] = "Remote self";
 $a->strings["Mirror postings from this contact"] = "Mirror postings from this contact:";
 $a->strings["Mark this contact as remote_self, this will cause friendica to repost new entries from this contact."] = "This will cause Friendica to repost new entries from this contact.";
@@ -831,211 +778,13 @@ $a->strings["Friend Confirm URL"] = "Friend confirm URL:";
 $a->strings["Notification Endpoint URL"] = "Notification endpoint URL";
 $a->strings["Poll/Feed URL"] = "Poll/Feed URL:";
 $a->strings["New photo from this URL"] = "New photo from this URL:";
-$a->strings["No potential page delegates located."] = "No potential page delegates found.";
-$a->strings["Delegates are able to manage all aspects of this account/page except for basic account settings. Please do not delegate your personal account to anybody that you do not trust completely."] = "Delegates are able to manage all aspects of this account except for key setting features. Please do not delegate your personal account to anybody that you do not trust completely.";
-$a->strings["Existing Page Managers"] = "Existing page managers";
-$a->strings["Existing Page Delegates"] = "Existing page delegates";
-$a->strings["Potential Delegates"] = "Potential delegates";
-$a->strings["Remove"] = "Remove";
-$a->strings["Add"] = "Add";
-$a->strings["No entries."] = "No entries.";
-$a->strings["Profile not found."] = "Profile not found.";
-$a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = "This may occasionally happen if contact was requested by both persons and it has already been approved.";
-$a->strings["Response from remote site was not understood."] = "Response from remote site was not understood.";
-$a->strings["Unexpected response from remote site: "] = "Unexpected response from remote site: ";
-$a->strings["Confirmation completed successfully."] = "Confirmation completed successfully.";
-$a->strings["Remote site reported: "] = "Remote site reported: ";
-$a->strings["Temporary failure. Please wait and try again."] = "Temporary failure. Please wait and try again.";
-$a->strings["Introduction failed or was revoked."] = "Introduction failed or was revoked.";
-$a->strings["Unable to set contact photo."] = "Unable to set contact photo.";
-$a->strings["No user record found for '%s' "] = "No user record found for '%s' ";
-$a->strings["Our site encryption key is apparently messed up."] = "Our site encryption key is apparently messed up.";
-$a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "An empty URL was provided or the URL could not be decrypted by us.";
-$a->strings["Contact record was not found for you on our site."] = "Contact record was not found for you on our site.";
-$a->strings["Site public key not available in contact record for URL %s."] = "Site public key not available in contact record for URL %s.";
-$a->strings["The ID provided by your system is a duplicate on our system. It should work if you try again."] = "The ID provided by your system is a duplicate on our system. It should work if you try again.";
-$a->strings["Unable to set your contact credentials on our system."] = "Unable to set your contact credentials on our system.";
-$a->strings["Unable to update your contact profile details on our system"] = "Unable to update your contact profile details on our system";
-$a->strings["%1\$s has joined %2\$s"] = "%1\$s has joined %2\$s";
-$a->strings["%1\$s welcomes %2\$s"] = "%1\$s welcomes %2\$s";
-$a->strings["Public access denied."] = "Public access denied.";
-$a->strings["Global Directory"] = "Global Directory";
-$a->strings["Find on this site"] = "Find on this site";
-$a->strings["Results for:"] = "Results for:";
-$a->strings["Site Directory"] = "Site directory";
-$a->strings["No entries (some entries may be hidden)."] = "No entries (entries may be hidden).";
-$a->strings["Item not found"] = "Item not found";
-$a->strings["Edit post"] = "Edit post";
-$a->strings["Files"] = "Files";
 $a->strings["- select -"] = "- select -";
-$a->strings["This is Friendica, version"] = "This is Friendica, version";
-$a->strings["running at web location"] = "running at web location";
-$a->strings["Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn more about the Friendica project."] = "Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn more about the Friendica project.";
-$a->strings["Bug reports and issues: please visit"] = "Bug reports and issues: please visit";
-$a->strings["the bugtracker at github"] = "the bugtracker at github";
-$a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"] = "Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com";
-$a->strings["Installed plugins/addons/apps:"] = "Installed plugins/addons/apps:";
-$a->strings["No installed plugins/addons/apps"] = "No installed plugins/addons/apps";
-$a->strings["On this server the following remote servers are blocked."] = "On this server the following remote servers are blocked.";
-$a->strings["Reason for the block"] = "Reason for the block";
 $a->strings["Friend suggestion sent."] = "Friend suggestion sent";
 $a->strings["Suggest Friends"] = "Suggest friends";
 $a->strings["Suggest a friend for %s"] = "Suggest a friend for %s";
-$a->strings["Group created."] = "Group created.";
-$a->strings["Could not create group."] = "Could not create group.";
-$a->strings["Group not found."] = "Group not found.";
-$a->strings["Group name changed."] = "Group name changed.";
-$a->strings["Permission denied"] = "Permission denied";
-$a->strings["Save Group"] = "Save group";
-$a->strings["Create a group of contacts/friends."] = "Create a group of contacts/friends.";
-$a->strings["Group removed."] = "Group removed.";
-$a->strings["Unable to remove group."] = "Unable to remove group.";
-$a->strings["Delete Group"] = "Delete group";
-$a->strings["Group Editor"] = "Group Editor";
-$a->strings["Edit Group Name"] = "Edit group name";
-$a->strings["Members"] = "Members";
-$a->strings["All Contacts"] = "All contacts";
-$a->strings["Remove Contact"] = "Remove contact";
-$a->strings["Add Contact"] = "Add contact";
-$a->strings["Click on a contact to add or remove."] = "Click on a contact to add or remove.";
-$a->strings["No profile"] = "No profile";
-$a->strings["Welcome to %s"] = "Welcome to %s";
-$a->strings["Friendica Communications Server - Setup"] = "Friendica Communications Server - Setup";
-$a->strings["Could not connect to database."] = "Could not connect to database.";
-$a->strings["Could not create table."] = "Could not create table.";
-$a->strings["Your Friendica site database has been installed."] = "Your Friendica site database has been installed.";
-$a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = "You may need to import the file \"database.sql\" manually using phpmyadmin or mysql.";
-$a->strings["Please see the file \"INSTALL.txt\"."] = "Please see the file \"INSTALL.txt\".";
-$a->strings["Database already in use."] = "Database already in use.";
-$a->strings["System check"] = "System check";
-$a->strings["Check again"] = "Check again";
-$a->strings["Database connection"] = "Database connection";
-$a->strings["In order to install Friendica we need to know how to connect to your database."] = "In order to install Friendica we need to know how to connect to your database.";
-$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Please contact your hosting provider or site administrator if you have questions about these settings.";
-$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "The database you specify below should already exist. If it does not, please create it before continuing.";
-$a->strings["Database Server Name"] = "Database server name";
-$a->strings["Database Login Name"] = "Database login name";
-$a->strings["Database Login Password"] = "Database login password";
-$a->strings["For security reasons the password must not be empty"] = "For security reasons the password must not be empty";
-$a->strings["Database Name"] = "Database name";
-$a->strings["Site administrator email address"] = "Site administrator email address";
-$a->strings["Your account email address must match this in order to use the web admin panel."] = "Your account email address must match this in order to use the web admin panel.";
-$a->strings["Please select a default timezone for your website"] = "Please select a default time zone for your website";
-$a->strings["Site settings"] = "Site settings";
-$a->strings["System Language:"] = "System language:";
-$a->strings["Set the default language for your Friendica installation interface and to send emails."] = "Set the default language for your Friendica installation interface and email communication.";
-$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Could not find a command line version of PHP in the web server PATH.";
-$a->strings["If you don't have a command line version of PHP installed on server, you will not be able to run the background processing. See <a href='https://github.com/friendica/friendica/blob/master/doc/Install.md#set-up-the-poller'>'Setup the poller'</a>"] = "If you don't have a command line version of PHP installed on your server, you will not be able to run the background processing. See <a href='https://github.com/friendica/friendica/blob/master/doc/Install.md#set-up-the-poller'>'Setup the poller'</a>";
-$a->strings["PHP executable path"] = "PHP executable path";
-$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Enter full path to php executable. You can leave this blank to continue the installation.";
-$a->strings["Command line PHP"] = "Command line PHP";
-$a->strings["PHP executable is not the php cli binary (could be cgi-fgci version)"] = "PHP executable is not a php cli binary; it could possibly be a cgi-fgci version.";
-$a->strings["Found PHP version: "] = "Found PHP version: ";
-$a->strings["PHP cli binary"] = "PHP cli binary";
-$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "The command line version of PHP on your system does not have \"register_argc_argv\" enabled.";
-$a->strings["This is required for message delivery to work."] = "This is required for message delivery to work.";
-$a->strings["PHP register_argc_argv"] = "PHP register_argc_argv";
-$a->strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys";
-$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "If running under Windows OS, please see \"http://www.php.net/manual/en/openssl.installation.php\".";
-$a->strings["Generate encryption keys"] = "Generate encryption keys";
-$a->strings["libCurl PHP module"] = "libCurl PHP module";
-$a->strings["GD graphics PHP module"] = "GD graphics PHP module";
-$a->strings["OpenSSL PHP module"] = "OpenSSL PHP module";
-$a->strings["PDO or MySQLi PHP module"] = "PDO or MySQLi PHP module";
-$a->strings["mb_string PHP module"] = "mb_string PHP module";
-$a->strings["XML PHP module"] = "XML PHP module";
-$a->strings["iconv module"] = "iconv module";
-$a->strings["Apache mod_rewrite module"] = "Apache mod_rewrite module";
-$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Error: Apache web server mod-rewrite module is required but not installed.";
-$a->strings["Error: libCURL PHP module required but not installed."] = "Error: libCURL PHP module required but not installed.";
-$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Error: GD graphics PHP module with JPEG support required but not installed.";
-$a->strings["Error: openssl PHP module required but not installed."] = "Error: openssl PHP module required but not installed.";
-$a->strings["Error: PDO or MySQLi PHP module required but not installed."] = "Error: PDO or MySQLi PHP module required but not installed.";
-$a->strings["Error: The MySQL driver for PDO is not installed."] = "Error: MySQL driver for PDO is not installed.";
-$a->strings["Error: mb_string PHP module required but not installed."] = "Error: mb_string PHP module required but not installed.";
-$a->strings["Error: iconv PHP module required but not installed."] = "Error: iconv PHP module required but not installed.";
-$a->strings["Error, XML PHP module required but not installed."] = "Error, XML PHP module required but not installed.";
-$a->strings["The web installer needs to be able to create a file called \".htconfig.php\" in the top folder of your web server and it is unable to do so."] = "The web installer needs to be able to create a file called \".htconfig.php\" in the top-level directory of your web server, but it is unable to do so.";
-$a->strings["This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can."] = "This is most often a permission setting issue, as the web server may not be able to write files in your directory - even if you can.";
-$a->strings["At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Friendica top folder."] = "At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Friendica top-level directory.";
-$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = "Alternatively, you may skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions.";
-$a->strings[".htconfig.php is writable"] = ".htconfig.php is writeable";
-$a->strings["Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering.";
-$a->strings["In order to store these compiled templates, the web server needs to have write access to the directory view/smarty3/ under the Friendica top level folder."] = "In order to store these compiled templates, the web server needs to have write access to the directory view/smarty3/ under the Friendica top-level directory.";
-$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Please ensure the user (e.g. www-data) that your web server runs as has write access to this directory.";
-$a->strings["Note: as a security measure, you should give the web server write access to view/smarty3/ only--not the template files (.tpl) that it contains."] = "Note: as a security measure, you should give the web server write access to view/smarty3/ only--not the template files (.tpl) that it contains.";
-$a->strings["view/smarty3 is writable"] = "view/smarty3 is writeable";
-$a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = "URL rewrite in .htaccess is not working. Check your server configuration.";
-$a->strings["Url rewrite is working"] = "URL rewrite is working";
-$a->strings["ImageMagick PHP extension is not installed"] = "ImageMagick PHP extension is not installed";
-$a->strings["ImageMagick PHP extension is installed"] = "ImageMagick PHP extension is installed";
-$a->strings["ImageMagick supports GIF"] = "ImageMagick supports GIF";
-$a->strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = "The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root.";
-$a->strings["<h1>What next</h1>"] = "<h1>What next</h1>";
-$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "IMPORTANT: You will need to [manually] setup a scheduled task for the poller.";
-$a->strings["Time Conversion"] = "Time conversion";
-$a->strings["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = "Friendica provides this service for sharing events with other networks and friends in unknown time zones.";
-$a->strings["UTC time: %s"] = "UTC time: %s";
-$a->strings["Current timezone: %s"] = "Current time zone: %s";
-$a->strings["Converted localtime: %s"] = "Converted local time: %s";
-$a->strings["Please select your timezone:"] = "Please select your time zone:";
 $a->strings["Remote privacy information not available."] = "Remote privacy information not available.";
 $a->strings["Visible to:"] = "Visible to:";
-$a->strings["No valid account found."] = "No valid account found.";
-$a->strings["Password reset request issued. Check your email."] = "Password reset request issued. Please check your email.";
-$a->strings["\n\t\tDear %1\$s,\n\t\t\tA request was recently received at \"%2\$s\" to reset your account\n\t\tpassword. In order to confirm this request, please select the verification link\n\t\tbelow or paste it into your web browser address bar.\n\n\t\tIf you did NOT request this change, please DO NOT follow the link\n\t\tprovided and ignore and/or delete this email.\n\n\t\tYour password will not be changed unless we can verify that you\n\t\tissued this request."] = "\n\t\tDear %1\$s,\n\t\t\tA request was issued at \"%2\$s\" to reset your account\n\t\tpassword. In order to confirm this request, please select the verification link\n\t\tbelow or paste it into your web browser address bar.\n\n\t\tIf you did NOT request this change, please DO NOT follow the link\n\t\tprovided and ignore/delete this email.\n\n\t\tYour password will not be changed unless we can verify that you\n\t\tissued this request.";
-$a->strings["\n\t\tFollow this link to verify your identity:\n\n\t\t%1\$s\n\n\t\tYou will then receive a follow-up message containing the new password.\n\t\tYou may change that password from your account settings page after logging in.\n\n\t\tThe login details are as follows:\n\n\t\tSite Location:\t%2\$s\n\t\tLogin Name:\t%3\$s"] = "\n\t\tFollow this link to verify your identity:\n\n\t\t%1\$s\n\n\t\tYou will then receive a follow-up message containing the new password.\n\t\tYou may change that password from your account settings page after logging in.\n\n\t\tThe login details are as follows:\n\n\t\tSite Location:\t%2\$s\n\t\tLogin Name:\t%3\$s";
-$a->strings["Password reset requested at %s"] = "Password reset requested at %s";
-$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Request could not be verified. (You may have previously submitted it.) Password reset failed.";
-$a->strings["Password Reset"] = "Forgotten password?";
-$a->strings["Your password has been reset as requested."] = "Your password has been reset as requested.";
-$a->strings["Your new password is"] = "Your new password is";
-$a->strings["Save or copy your new password - and then"] = "Save or copy your new password - and then";
-$a->strings["click here to login"] = "click here to login";
-$a->strings["Your password may be changed from the <em>Settings</em> page after successful login."] = "Your password may be changed from the <em>Settings</em> page after successful login.";
-$a->strings["\n\t\t\t\tDear %1\$s,\n\t\t\t\t\tYour password has been changed as requested. Please retain this\n\t\t\t\tinformation for your records (or change your password immediately to\n\t\t\t\tsomething that you will remember).\n\t\t\t"] = "\n\t\t\t\tDear %1\$s,\n\t\t\t\t\tYour password has been changed as requested. Please retain this\n\t\t\t\tinformation for your records or change your password immediately to\n\t\t\t\tsomething that you will remember.\n\t\t\t";
-$a->strings["\n\t\t\t\tYour login details are as follows:\n\n\t\t\t\tSite Location:\t%1\$s\n\t\t\t\tLogin Name:\t%2\$s\n\t\t\t\tPassword:\t%3\$s\n\n\t\t\t\tYou may change that password from your account settings page after logging in.\n\t\t\t"] = "\n\t\t\t\tYour login details are as follows:\n\n\t\t\t\tSite Location:\t%1\$s\n\t\t\t\tLogin Name:\t%2\$s\n\t\t\t\tPassword:\t%3\$s\n\n\t\t\t\tYou may change that password from your account settings page after logging in.\n\t\t\t";
-$a->strings["Your password has been changed at %s"] = "Your password has been changed at %s";
-$a->strings["Forgot your Password?"] = "Reset My Password";
-$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Enter email address or nickname to reset your password. You will receive further instruction via email.";
-$a->strings["Nickname or Email: "] = "Nickname or email: ";
-$a->strings["Reset"] = "Reset";
 $a->strings["System down for maintenance"] = "Sorry, the system is currently down for maintenance.";
-$a->strings["Manage Identities and/or Pages"] = "Manage Identities and Pages";
-$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "Accounts that I manage or own.";
-$a->strings["Select an identity to manage: "] = "Select identity:";
-$a->strings["No keywords to match. Please add keywords to your default profile."] = "No keywords to match. Please add keywords to your default profile.";
-$a->strings["is interested in:"] = "is interested in:";
-$a->strings["Profile Match"] = "Profile Match";
-$a->strings["No matches"] = "No matches";
-$a->strings["No recipient selected."] = "No recipient selected.";
-$a->strings["Unable to locate contact information."] = "Unable to locate contact information.";
-$a->strings["Message could not be sent."] = "Message could not be sent.";
-$a->strings["Message collection failure."] = "Message collection failure.";
-$a->strings["Message sent."] = "Message sent.";
-$a->strings["Do you really want to delete this message?"] = "Do you really want to delete this message?";
-$a->strings["Message deleted."] = "Message deleted.";
-$a->strings["Conversation removed."] = "Conversation removed.";
-$a->strings["Send Private Message"] = "Send private message";
-$a->strings["To:"] = "To:";
-$a->strings["Subject:"] = "Subject:";
-$a->strings["Your message:"] = "Your message:";
-$a->strings["No messages."] = "No messages.";
-$a->strings["Message not available."] = "Message not available.";
-$a->strings["Delete message"] = "Delete message";
-$a->strings["Delete conversation"] = "Delete conversation";
-$a->strings["No secure communications available. You <strong>may</strong> be able to respond from the sender's profile page."] = "No secure communications available. You <strong>may</strong> be able to respond from the sender's profile page.";
-$a->strings["Send Reply"] = "Send reply";
-$a->strings["Unknown sender - %s"] = "Unknown sender - %s";
-$a->strings["You and %s"] = "Me and %s";
-$a->strings["%s and You"] = "%s and me";
-$a->strings["D, d M Y - g:i A"] = "D, d M Y - g:i A";
-$a->strings["%d message"] = array(
-       0 => "%d message",
-       1 => "%d messages",
-);
-$a->strings["Mood"] = "Mood";
-$a->strings["Set your current mood and tell your friends"] = "Set your current mood and tell your friends";
 $a->strings["Welcome to Friendica"] = "Welcome to Friendica";
 $a->strings["New Member Checklist"] = "New Member Checklist";
 $a->strings["We would like to offer some tips and links to help make your experience enjoyable. Click any item to visit the relevant page. A link to this page will be visible from your home page for two weeks after your initial registration and then will quietly disappear."] = "We would like to offer some tips and links to help make your experience enjoyable. Click any item to visit the relevant page. A link to this page will be visible from your home page for two weeks after your initial registration and then will quietly disappear.";
@@ -1070,132 +819,14 @@ $a->strings["Our <strong>help</strong> pages may be consulted for detail on othe
 $a->strings["Visit %s's profile [%s]"] = "Visit %s's profile [%s]";
 $a->strings["Edit contact"] = "Edit contact";
 $a->strings["Contacts who are not members of a group"] = "Contacts who are not members of a group";
-$a->strings["Invalid request identifier."] = "Invalid request identifier.";
-$a->strings["Discard"] = "Discard";
-$a->strings["Ignore"] = "Ignore";
-$a->strings["Network Notifications"] = "Network notifications";
-$a->strings["System Notifications"] = "System notifications";
-$a->strings["Personal Notifications"] = "Personal notifications";
-$a->strings["Home Notifications"] = "Home notifications";
-$a->strings["Show Ignored Requests"] = "Show ignored requests.";
-$a->strings["Hide Ignored Requests"] = "Hide ignored requests";
-$a->strings["Notification type: "] = "Notification type: ";
-$a->strings["suggested by %s"] = "suggested by %s";
-$a->strings["Hide this contact from others"] = "Hide this contact from others";
-$a->strings["Post a new friend activity"] = "Post a new friend activity";
-$a->strings["if applicable"] = "if applicable";
-$a->strings["Approve"] = "Approve";
-$a->strings["Claims to be known to you: "] = "Says they know me:";
-$a->strings["yes"] = "yes";
-$a->strings["no"] = "no";
-$a->strings["Shall your connection be bidirectional or not?"] = "Shall your connection be in both directions or not?";
-$a->strings["Accepting %s as a friend allows %s to subscribe to your posts, and you will also receive updates from them in your news feed."] = "Accepting %s as a friend allows %s to subscribe to your posts; you will also receive updates from them in your news feed.";
-$a->strings["Accepting %s as a subscriber allows them to subscribe to your posts, but you will not receive updates from them in your news feed."] = "Accepting %s as a subscriber allows them to subscribe to your posts, but you will not receive updates from them in your news feed.";
-$a->strings["Accepting %s as a sharer allows them to subscribe to your posts, but you will not receive updates from them in your news feed."] = "Accepting %s as a sharer allows them to subscribe to your posts, but you will not receive updates from them in your news feed.";
-$a->strings["Friend"] = "Friend";
-$a->strings["Sharer"] = "Sharer";
-$a->strings["Subscriber"] = "Subscriber";
-$a->strings["Profile URL"] = "Profile URL:";
-$a->strings["No introductions."] = "No introductions.";
-$a->strings["Show unread"] = "Show unread";
-$a->strings["Show all"] = "Show all";
-$a->strings["No more %s notifications."] = "No more %s notifications.";
-$a->strings["No more system notifications."] = "No more system notifications.";
-$a->strings["Post successful."] = "Post successful.";
-$a->strings["OpenID protocol error. No ID returned."] = "OpenID protocol error. No ID returned.";
-$a->strings["Account not found and OpenID registration is not permitted on this site."] = "Account not found and OpenID registration is not permitted on this site.";
-$a->strings["Subscribing to OStatus contacts"] = "Subscribing to OStatus contacts";
-$a->strings["No contact provided."] = "No contact provided.";
-$a->strings["Couldn't fetch information for contact."] = "Couldn't fetch information for contact.";
-$a->strings["Couldn't fetch friends for contact."] = "Couldn't fetch friends for contact.";
-$a->strings["Done"] = "Done";
-$a->strings["success"] = "success";
-$a->strings["failed"] = "failed";
-$a->strings["Keep this window open until done."] = "Keep this window open until done.";
-$a->strings["Not Extended"] = "Not extended";
-$a->strings["Not Found"] = "Not found";
-$a->strings["Recent Photos"] = "Recent photos";
-$a->strings["Upload New Photos"] = "Upload new photos";
-$a->strings["everybody"] = "everybody";
-$a->strings["Contact information unavailable"] = "Contact information unavailable";
-$a->strings["Album not found."] = "Album not found.";
-$a->strings["Delete Album"] = "Delete album";
-$a->strings["Do you really want to delete this photo album and all its photos?"] = "Do you really want to delete this photo album and all its photos?";
-$a->strings["Delete Photo"] = "Delete photo";
-$a->strings["Do you really want to delete this photo?"] = "Do you really want to delete this photo?";
-$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "%1\$s was tagged in %2\$s by %3\$s";
-$a->strings["a photo"] = "a photo";
-$a->strings["Image exceeds size limit of %s"] = "Image exceeds size limit of %s";
-$a->strings["Image file is empty."] = "Image file is empty.";
-$a->strings["Unable to process image."] = "Unable to process image.";
-$a->strings["Image upload failed."] = "Image upload failed.";
-$a->strings["No photos selected"] = "No photos selected";
-$a->strings["Access to this item is restricted."] = "Access to this item is restricted.";
-$a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage.";
-$a->strings["Upload Photos"] = "Upload photos";
-$a->strings["New album name: "] = "New album name: ";
-$a->strings["or existing album name: "] = "or existing album name: ";
-$a->strings["Do not show a status post for this upload"] = "Do not show a status post for this upload";
-$a->strings["Show to Groups"] = "Show to groups";
-$a->strings["Show to Contacts"] = "Show to contacts";
-$a->strings["Private Photo"] = "Private photo";
-$a->strings["Public Photo"] = "Public photo";
-$a->strings["Edit Album"] = "Edit album";
-$a->strings["Show Newest First"] = "Show newest first";
-$a->strings["Show Oldest First"] = "Show oldest first";
-$a->strings["View Photo"] = "View photo";
-$a->strings["Permission denied. Access to this item may be restricted."] = "Permission denied. Access to this item may be restricted.";
-$a->strings["Photo not available"] = "Photo not available";
-$a->strings["View photo"] = "View photo";
-$a->strings["Edit photo"] = "Edit photo";
-$a->strings["Use as profile photo"] = "Use as profile photo";
-$a->strings["View Full Size"] = "View full size";
-$a->strings["Tags: "] = "Tags: ";
-$a->strings["[Remove any tag]"] = "[Remove any tag]";
-$a->strings["New album name"] = "New album name";
-$a->strings["Caption"] = "Caption";
-$a->strings["Add a Tag"] = "Add Tag";
-$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Example: @bob, @jojo@example.com, #California, #camping";
-$a->strings["Do not rotate"] = "Do not rotate";
-$a->strings["Rotate CW (right)"] = "Rotate right (CW)";
-$a->strings["Rotate CCW (left)"] = "Rotate left (CCW)";
-$a->strings["Private photo"] = "Private photo";
-$a->strings["Public photo"] = "Public photo";
-$a->strings["Map"] = "Map";
-$a->strings["View Album"] = "View album";
-$a->strings["Poke/Prod"] = "Poke/Prod";
-$a->strings["poke, prod or do other things to somebody"] = "Poke, prod or do other things to somebody";
-$a->strings["Recipient"] = "Recipient:";
-$a->strings["Choose what you wish to do to recipient"] = "Choose what you wish to do:";
-$a->strings["Make this post private"] = "Make this post private";
-$a->strings["Tips for New Members"] = "Tips for New Members";
+$a->strings["Permission denied"] = "Permission denied";
 $a->strings["Invalid profile identifier."] = "Invalid profile identifier.";
 $a->strings["Profile Visibility Editor"] = "Profile Visibility Editor";
+$a->strings["Click on a contact to add or remove."] = "Click on a contact to add or remove.";
 $a->strings["Visible To"] = "Visible to";
 $a->strings["All Contacts (with secure profile access)"] = "All contacts with secure profile access";
-$a->strings["Remove My Account"] = "Remove My Account";
-$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "This will completely remove your account. Once this has been done it is not recoverable.";
-$a->strings["Please enter your password for verification:"] = "Please enter your password for verification:";
-$a->strings["Resubscribing to OStatus contacts"] = "Resubscribing to OStatus contacts";
-$a->strings["Error"] = "Error";
-$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s is following %2\$s's %3\$s";
-$a->strings["Do you really want to delete this suggestion?"] = "Do you really want to delete this suggestion?";
-$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "No suggestions available. If this is a new site, please try again in 24 hours.";
-$a->strings["Ignore/Hide"] = "Ignore/Hide";
-$a->strings["Tag removed"] = "Tag removed";
-$a->strings["Remove Item Tag"] = "Remove Item tag";
-$a->strings["Select a tag to remove: "] = "Select a tag to remove: ";
-$a->strings["Export account"] = "Export account";
-$a->strings["Export your account info and contacts. Use this to make a backup of your account and/or to move it to another server."] = "Export your account info and contacts. Use this to backup your account or to move it to another server.";
-$a->strings["Export all"] = "Export all";
-$a->strings["Export your accout info, contacts and all your items as json. Could be a very big file, and could take a lot of time. Use this to make a full backup of your account (photos are not exported)"] = "Export your account info, contacts and all your items as json. Could be a very big file, and could take a lot of time. Use this to make a full backup of your account (photos are not exported)";
-$a->strings["Export personal data"] = "Export personal data";
 $a->strings["[Embedded content - reload page to view]"] = "[Embedded content - reload page to view]";
-$a->strings["Do you really want to delete this video?"] = "Do you really want to delete this video?";
-$a->strings["Delete Video"] = "Delete video";
-$a->strings["No videos selected"] = "No videos selected";
-$a->strings["Recent Videos"] = "Recent videos";
-$a->strings["Upload New Videos"] = "Upload new videos";
+$a->strings["Public access denied."] = "Public access denied.";
 $a->strings["No contacts."] = "No contacts.";
 $a->strings["Access denied."] = "Access denied.";
 $a->strings["Invalid request."] = "Invalid request.";
@@ -1203,14 +834,7 @@ $a->strings["Sorry, maybe your upload is bigger than the PHP configuration allow
 $a->strings["Or - did you try to upload an empty file?"] = "Or did you try to upload an empty file?";
 $a->strings["File exceeds size limit of %s"] = "File exceeds size limit of %s";
 $a->strings["File upload failed."] = "File upload failed.";
-$a->strings["Number of daily wall messages for %s exceeded. Message failed."] = "Number of daily wall messages for %s exceeded. Message failed.";
-$a->strings["Unable to check your home location."] = "Unable to check your home location.";
-$a->strings["No recipient."] = "No recipient.";
-$a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = "If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders.";
 $a->strings["Only logged in users are permitted to perform a probing."] = "Only logged in users are permitted to perform a probing.";
-$a->strings["Account approved."] = "Account approved.";
-$a->strings["Registration revoked for %s"] = "Registration revoked for %s";
-$a->strings["Please login."] = "Please login.";
 $a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "This site has exceeded the number of allowed daily account registrations. Please try again tomorrow.";
 $a->strings["Import"] = "Import profile";
 $a->strings["Move account"] = "Move Existing Friendica Account";
@@ -1219,187 +843,6 @@ $a->strings["You need to export your account from the old server and upload it h
 $a->strings["This feature is experimental. We can't import contacts from the OStatus network (GNU Social/Statusnet) or from Diaspora"] = "This feature is experimental. We can't import contacts from the OStatus network (GNU Social/Statusnet) or from Diaspora.";
 $a->strings["Account file"] = "Account file:";
 $a->strings["To export your account, go to \"Settings->Export your personal data\" and select \"Export account\""] = "To export your account, go to \"Settings->Export personal data\" and select \"Export account\"";
-$a->strings["This introduction has already been accepted."] = "This introduction has already been accepted.";
-$a->strings["Profile location is not valid or does not contain profile information."] = "Profile location is not valid or does not contain profile information.";
-$a->strings["Warning: profile location has no identifiable owner name."] = "Warning: profile location has no identifiable owner name.";
-$a->strings["Warning: profile location has no profile photo."] = "Warning: profile location has no profile photo.";
-$a->strings["%d required parameter was not found at the given location"] = array(
-       0 => "%d required parameter was not found at the given location",
-       1 => "%d required parameters were not found at the given location",
-);
-$a->strings["Introduction complete."] = "Introduction complete.";
-$a->strings["Unrecoverable protocol error."] = "Unrecoverable protocol error.";
-$a->strings["Profile unavailable."] = "Profile unavailable.";
-$a->strings["%s has received too many connection requests today."] = "%s has received too many connection requests today.";
-$a->strings["Spam protection measures have been invoked."] = "Spam protection measures have been invoked.";
-$a->strings["Friends are advised to please try again in 24 hours."] = "Friends are advised to please try again in 24 hours.";
-$a->strings["Invalid locator"] = "Invalid locator";
-$a->strings["Invalid email address."] = "Invalid email address.";
-$a->strings["This account has not been configured for email. Request failed."] = "This account has not been configured for email. Request failed.";
-$a->strings["You have already introduced yourself here."] = "You have already introduced yourself here.";
-$a->strings["Apparently you are already friends with %s."] = "Apparently you are already friends with %s.";
-$a->strings["Invalid profile URL."] = "Invalid profile URL.";
-$a->strings["Failed to update contact record."] = "Failed to update contact record.";
-$a->strings["Your introduction has been sent."] = "Your introduction has been sent.";
-$a->strings["Remote subscription can't be done for your network. Please subscribe directly on your system."] = "Remote subscription can't be done for your network. Please subscribe directly on your system.";
-$a->strings["Please login to confirm introduction."] = "Please login to confirm introduction.";
-$a->strings["Incorrect identity currently logged in. Please login to <strong>this</strong> profile."] = "Incorrect identity currently logged in. Please login to <strong>this</strong> profile.";
-$a->strings["Confirm"] = "Confirm";
-$a->strings["Hide this contact"] = "Hide this contact";
-$a->strings["Welcome home %s."] = "Welcome home %s.";
-$a->strings["Please confirm your introduction/connection request to %s."] = "Please confirm your introduction/connection request to %s.";
-$a->strings["Please enter your 'Identity Address' from one of the following supported communications networks:"] = "Please enter your 'Identity address' from one of the following supported communications networks:";
-$a->strings["If you are not yet a member of the free social web, <a href=\"%s/siteinfo\">follow this link to find a public Friendica site and join us today</a>."] = "If you are not yet a member of the free social web, <a href=\"%s/siteinfo\">follow this link to find a public Friendica site and join us today</a>.";
-$a->strings["Friend/Connection Request"] = "Friend/Connection request";
-$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"] = "Examples: jojo@friendica.example.com, http://friendica.example.com/profile/jojo, sam@identi.ca";
-$a->strings["Please answer the following:"] = "Please answer the following:";
-$a->strings["Does %s know you?"] = "Does %s know you?";
-$a->strings["Add a personal note:"] = "Add a personal note:";
-$a->strings["StatusNet/Federated Social Web"] = "StatusNet/Federated social web";
-$a->strings[" - please do not use this form.  Instead, enter %s into your Diaspora search bar."] = " - please do not use this form.  Instead, enter %s into your Diaspora search bar.";
-$a->strings["Your Identity Address:"] = "My identity address:";
-$a->strings["Submit Request"] = "Submit request";
-$a->strings["People Search - %s"] = "People search - %s";
-$a->strings["Forum Search - %s"] = "Forum search - %s";
-$a->strings["Event can not end before it has started."] = "Event cannot end before it has started.";
-$a->strings["Event title and start time are required."] = "Event title and starting time are required.";
-$a->strings["Create New Event"] = "Create new event";
-$a->strings["Event details"] = "Event details";
-$a->strings["Starting date and Title are required."] = "Starting date and title are required.";
-$a->strings["Event Starts:"] = "Event starts:";
-$a->strings["Required"] = "Required";
-$a->strings["Finish date/time is not known or not relevant"] = "Finish date/time is not known or not relevant";
-$a->strings["Event Finishes:"] = "Event finishes:";
-$a->strings["Adjust for viewer timezone"] = "Adjust for viewer's time zone";
-$a->strings["Description:"] = "Description:";
-$a->strings["Title:"] = "Title:";
-$a->strings["Share this event"] = "Share this event";
-$a->strings["Failed to remove event"] = "Failed to remove event";
-$a->strings["Event removed"] = "Event removed";
-$a->strings["You already added this contact."] = "You already added this contact.";
-$a->strings["Diaspora support isn't enabled. Contact can't be added."] = "Diaspora support isn't enabled. Contact can't be added.";
-$a->strings["OStatus support is disabled. Contact can't be added."] = "OStatus support is disabled. Contact can't be added.";
-$a->strings["The network type couldn't be detected. Contact can't be added."] = "The network type couldn't be detected. Contact can't be added.";
-$a->strings["Contact added"] = "Contact added";
-$a->strings["Unable to locate original post."] = "Unable to locate original post.";
-$a->strings["Empty post discarded."] = "Empty post discarded.";
-$a->strings["System error. Post not saved."] = "System error. Post not saved.";
-$a->strings["This message was sent to you by %s, a member of the Friendica social network."] = "This message was sent to you by %s, a member of the Friendica social network.";
-$a->strings["You may visit them online at %s"] = "You may visit them online at %s";
-$a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "Please contact the sender by replying to this post if you do not wish to receive these messages.";
-$a->strings["%s posted an update."] = "%s posted an update.";
-$a->strings["{0} wants to be your friend"] = "{0} wants to be your friend";
-$a->strings["{0} sent you a message"] = "{0} sent you a message";
-$a->strings["{0} requested registration"] = "{0} requested registration";
-$a->strings["Image uploaded but image cropping failed."] = "Image uploaded but image cropping failed.";
-$a->strings["Image size reduction [%s] failed."] = "Image size reduction [%s] failed.";
-$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Shift-reload the page or clear browser cache if the new photo does not display immediately.";
-$a->strings["Unable to process image"] = "Unable to process image";
-$a->strings["Upload File:"] = "Upload File:";
-$a->strings["Select a profile:"] = "Select a profile:";
-$a->strings["Upload"] = "Upload";
-$a->strings["or"] = "or";
-$a->strings["skip this step"] = "skip this step";
-$a->strings["select a photo from your photo albums"] = "select a photo from your photo albums";
-$a->strings["Crop Image"] = "Crop Image";
-$a->strings["Please adjust the image cropping for optimum viewing."] = "Please adjust the image cropping for optimum viewing.";
-$a->strings["Done Editing"] = "Done editing";
-$a->strings["Image uploaded successfully."] = "Image uploaded successfully.";
-$a->strings["Profile deleted."] = "Profile deleted.";
-$a->strings["Profile-"] = "Profile-";
-$a->strings["New profile created."] = "New profile created.";
-$a->strings["Profile unavailable to clone."] = "Profile unavailable to clone.";
-$a->strings["Profile Name is required."] = "Profile name is required.";
-$a->strings["Marital Status"] = "Marital status";
-$a->strings["Romantic Partner"] = "Romantic partner";
-$a->strings["Work/Employment"] = "Work/Employment:";
-$a->strings["Religion"] = "Religion";
-$a->strings["Political Views"] = "Political views";
-$a->strings["Gender"] = "Gender";
-$a->strings["Sexual Preference"] = "Sexual preference";
-$a->strings["XMPP"] = "XMPP";
-$a->strings["Homepage"] = "Homepage";
-$a->strings["Interests"] = "Interests";
-$a->strings["Address"] = "Address";
-$a->strings["Location"] = "Location";
-$a->strings["Profile updated."] = "Profile updated.";
-$a->strings[" and "] = " and ";
-$a->strings["public profile"] = "public profile";
-$a->strings["%1\$s changed %2\$s to &ldquo;%3\$s&rdquo;"] = "%1\$s changed %2\$s to &ldquo;%3\$s&rdquo;";
-$a->strings[" - Visit %1\$s's %2\$s"] = " - Visit %1\$s's %2\$s";
-$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s has an updated %2\$s, changing %3\$s.";
-$a->strings["Hide contacts and friends:"] = "Hide contacts and friends:";
-$a->strings["Hide your contact/friend list from viewers of this profile?"] = "Hide your contact/friend list from viewers of this profile?";
-$a->strings["Show more profile fields:"] = "Show more profile fields:";
-$a->strings["Profile Actions"] = "Profile actions";
-$a->strings["Edit Profile Details"] = "Edit Profile Details";
-$a->strings["Change Profile Photo"] = "Change profile photo";
-$a->strings["View this profile"] = "View this profile";
-$a->strings["Create a new profile using these settings"] = "Create a new profile using these settings";
-$a->strings["Clone this profile"] = "Clone this profile";
-$a->strings["Delete this profile"] = "Delete this profile";
-$a->strings["Basic information"] = "Basic information";
-$a->strings["Profile picture"] = "Profile picture";
-$a->strings["Preferences"] = "Preferences";
-$a->strings["Status information"] = "Status information";
-$a->strings["Additional information"] = "Additional information";
-$a->strings["Relation"] = "Relation";
-$a->strings["Your Gender:"] = "Gender:";
-$a->strings["<span class=\"heart\">&hearts;</span> Marital Status:"] = "<span class=\"heart\">&hearts;</span> Marital status:";
-$a->strings["Example: fishing photography software"] = "Example: fishing photography software";
-$a->strings["Profile Name:"] = "Profile name:";
-$a->strings["This is your <strong>public</strong> profile.<br />It <strong>may</strong> be visible to anybody using the internet."] = "This is your <strong>public</strong> profile.<br />It <strong>may</strong> be visible to anybody using the internet.";
-$a->strings["Your Full Name:"] = "My full name:";
-$a->strings["Title/Description:"] = "Title/Description:";
-$a->strings["Street Address:"] = "Street address:";
-$a->strings["Locality/City:"] = "Locality/City:";
-$a->strings["Region/State:"] = "Region/State:";
-$a->strings["Postal/Zip Code:"] = "Postcode:";
-$a->strings["Country:"] = "Country:";
-$a->strings["Who: (if applicable)"] = "Who: (if applicable)";
-$a->strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Examples: cathy123, Cathy Williams, cathy@example.com";
-$a->strings["Since [date]:"] = "Since when:";
-$a->strings["Tell us about yourself..."] = "About myself:";
-$a->strings["XMPP (Jabber) address:"] = "XMPP (Jabber) address:";
-$a->strings["The XMPP address will be propagated to your contacts so that they can follow you."] = "The XMPP address will be propagated to your contacts so that they can follow you.";
-$a->strings["Homepage URL:"] = "Homepage URL:";
-$a->strings["Religious Views:"] = "Religious views:";
-$a->strings["Public Keywords:"] = "Public keywords:";
-$a->strings["(Used for suggesting potential friends, can be seen by others)"] = "Used for suggesting potential friends, can be seen by others.";
-$a->strings["Private Keywords:"] = "Private keywords:";
-$a->strings["(Used for searching profiles, never shown to others)"] = "Used for searching profiles, never shown to others.";
-$a->strings["Musical interests"] = "Music:";
-$a->strings["Books, literature"] = "Books, literature, poetry:";
-$a->strings["Television"] = "Television:";
-$a->strings["Film/dance/culture/entertainment"] = "Film, dance, culture, entertainment";
-$a->strings["Hobbies/Interests"] = "Hobbies/Interests:";
-$a->strings["Love/romance"] = "Love/Romance:";
-$a->strings["Work/employment"] = "Work/Employment:";
-$a->strings["School/education"] = "School/Education:";
-$a->strings["Contact information and Social Networks"] = "Contact information and other social networks:";
-$a->strings["Edit/Manage Profiles"] = "Edit/Manage Profiles";
-$a->strings["Registration successful. Please check your email for further instructions."] = "Registration successful. Please check your email for further instructions.";
-$a->strings["Failed to send email message. Here your accout details:<br> login: %s<br> password: %s<br><br>You can change your password after login."] = "Failed to send email message. Here your account details:<br> login: %s<br> password: %s<br><br>You can change your password after login.";
-$a->strings["Registration successful."] = "Registration successful.";
-$a->strings["Your registration can not be processed."] = "Your registration cannot be processed.";
-$a->strings["Your registration is pending approval by the site owner."] = "Your registration is pending approval by the site administrator.";
-$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Sign up now'.";
-$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items.";
-$a->strings["Your OpenID (optional): "] = "Your OpenID (optional): ";
-$a->strings["Include your profile in member directory?"] = "Include your profile in member directory?";
-$a->strings["Note for the admin"] = "Note for the admin";
-$a->strings["Leave a message for the admin, why you want to join this node"] = "Leave a message for the admin, why you want to join this node.";
-$a->strings["Membership on this site is by invitation only."] = "Membership on this site is by invitation only.";
-$a->strings["Your invitation ID: "] = "Your invitation ID: ";
-$a->strings["Registration"] = "Join this Friendica Node Today";
-$a->strings["Your Full Name (e.g. Joe Smith, real or real-looking): "] = "Your full name: ";
-$a->strings["Your Email Address: "] = "Your email address: ";
-$a->strings["New Password:"] = "New password:";
-$a->strings["Leave empty for an auto generated password."] = "Leave empty for an auto generated password.";
-$a->strings["Confirm:"] = "Confirm new password:";
-$a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be '<strong>nickname@\$sitename</strong>'."] = "Choose a profile nickname. Your nickname will be part of your identity address; for example:  '<strong>nickname@\$sitename</strong>'.";
-$a->strings["Choose a nickname: "] = "Choose a nickname: ";
-$a->strings["Import your profile to this friendica instance"] = "Import an existing Friendica profile to this node.";
 $a->strings["Remove term"] = "Remove term";
 $a->strings["Only logged in users are permitted to perform a search."] = "Only logged in users are permitted to perform a search.";
 $a->strings["Too Many Requests"] = "Too many requests";
@@ -1407,6 +850,7 @@ $a->strings["Only one search per minute is permitted for not logged in users."]
 $a->strings["No results."] = "No results.";
 $a->strings["Items tagged with: %s"] = "Items tagged with: %s";
 $a->strings["Results for: %s"] = "Results for: %s";
+$a->strings["Not available."] = "Not available.";
 $a->strings["Theme settings updated."] = "Theme settings updated.";
 $a->strings["Site"] = "Site";
 $a->strings["Users"] = "Users";
@@ -1426,6 +870,7 @@ $a->strings["Plugin Features"] = "Plugin Features";
 $a->strings["diagnostics"] = "Diagnostics";
 $a->strings["User registrations waiting for confirmation"] = "User registrations awaiting confirmation";
 $a->strings["The blocked domain"] = "Blocked domain";
+$a->strings["Reason for the block"] = "Reason for the block";
 $a->strings["The reason why you blocked this domain."] = "Reason why you blocked this domain.";
 $a->strings["Delete domain"] = "Delete domain";
 $a->strings["Check to delete this entry from the blocklist"] = "Check to delete this entry from the blocklist";
@@ -1496,6 +941,7 @@ $a->strings["No SSL policy, links will track page SSL state"] = "No SSL policy,
 $a->strings["Force all links to use SSL"] = "Force all links to use SSL";
 $a->strings["Self-signed certificate, use SSL for local links only (discouraged)"] = "Self-signed certificate, use SSL for local links only (discouraged)";
 $a->strings["Save Settings"] = "Save settings";
+$a->strings["Registration"] = "Join this Friendica Node Today";
 $a->strings["File upload"] = "File upload";
 $a->strings["Policies"] = "Policies";
 $a->strings["Auto Discovered Contact Directory"] = "Auto-discovered contact directory";
@@ -1638,7 +1084,7 @@ $a->strings["Enable this if your system doesn't allow the use of 'proc_open'. Th
 $a->strings["Enable fastlane"] = "Enable fast-lane";
 $a->strings["When enabed, the fastlane mechanism starts an additional worker if processes with higher priority are blocked by processes of lower priority."] = "The fast-lane mechanism starts an additional worker if processes with higher priority are blocked by processes of lower priority.";
 $a->strings["Enable frontend worker"] = "Enable frontend worker";
-$a->strings["When enabled the Worker process is triggered when backend access is performed (e.g. messages being delivered). On smaller sites you might want to call yourdomain.tld/worker on a regular basis via an external cron job. You should only enable this option if you cannot utilize cron/scheduled jobs on your server. The worker background process needs to be activated for this."] = "If enabled the Worker process is triggered when backend access is performed (e.g. messages being delivered). On smaller sites you might want to call yourdomain.tld/worker on a regular basis via an external cron job. You should only enable this option if you cannot utilize cron/scheduled jobs on your server. The worker background process needs to be activated for this.";
+$a->strings["When enabled the Worker process is triggered when backend access is performed (e.g. messages being delivered). On smaller sites you might want to call %s/worker on a regular basis via an external cron job. You should only enable this option if you cannot utilize cron/scheduled jobs on your server."] = "This triggers the worker process when the backend is accessed, such as messages being delivered. On smaller sites you might want to call %s/worker on a regular basis via an external cron job. You should only enable this option if you cannot utilize cron/scheduled jobs on your server.";
 $a->strings["Update has been marked successful"] = "Update has been marked successful";
 $a->strings["Database structure update %s was successfully applied."] = "Database structure update %s was successfully applied.";
 $a->strings["Executing of database structure update %s failed with error: %s"] = "Executing of database structure update %s failed with error: %s";
@@ -1676,6 +1122,7 @@ $a->strings["User waiting for permanent deletion"] = "User awaiting permanent de
 $a->strings["Request date"] = "Request date";
 $a->strings["No registrations."] = "No registrations.";
 $a->strings["Note from the user"] = "Note from the user";
+$a->strings["Approve"] = "Approve";
 $a->strings["Deny"] = "Deny";
 $a->strings["Block"] = "Block";
 $a->strings["Unblock"] = "Unblock";
@@ -1718,7 +1165,17 @@ $a->strings["Off"] = "Off";
 $a->strings["On"] = "On";
 $a->strings["Lock feature %s"] = "Lock feature %s";
 $a->strings["Manage Additional Features"] = "Manage additional features";
-$a->strings["Not available."] = "Not available.";
+$a->strings["No friends to display."] = "No friends to display.";
+$a->strings["The post was created"] = "The post was created";
+$a->strings["Access to this profile has been restricted."] = "Access to this profile has been restricted.";
+$a->strings["View"] = "View";
+$a->strings["Previous"] = "Previous";
+$a->strings["Next"] = "Next";
+$a->strings["list"] = "List";
+$a->strings["User not found"] = "User not found";
+$a->strings["This calendar format is not supported"] = "This calendar format is not supported";
+$a->strings["No exportable data found"] = "No exportable data found";
+$a->strings["calendar"] = "calendar";
 $a->strings["%d contact edited."] = array(
        0 => "%d contact edited.",
        1 => "%d contacts edited.",
@@ -1726,6 +1183,7 @@ $a->strings["%d contact edited."] = array(
 $a->strings["Could not access contact record."] = "Could not access contact record.";
 $a->strings["Could not locate selected profile."] = "Could not locate selected profile.";
 $a->strings["Contact updated."] = "Contact updated.";
+$a->strings["Failed to update contact record."] = "Failed to update contact record.";
 $a->strings["Contact has been blocked"] = "Contact has been blocked";
 $a->strings["Contact has been unblocked"] = "Contact has been unblocked";
 $a->strings["Contact has been ignored"] = "Contact has been ignored";
@@ -1747,6 +1205,7 @@ $a->strings["Communications lost with this contact!"] = "Communications lost wit
 $a->strings["Fetch further information for feeds"] = "Fetch further information for feeds";
 $a->strings["Fetch information"] = "Fetch information";
 $a->strings["Fetch information and keywords"] = "Fetch information and keywords";
+$a->strings["Disconnect/Unfollow"] = "Disconnect/Unfollow";
 $a->strings["Contact"] = "Contact";
 $a->strings["Profile Visibility"] = "Profile visibility";
 $a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Please choose the profile you would like to display to %s when viewing your profile securely.";
@@ -1761,18 +1220,22 @@ $a->strings["Last update:"] = "Last update:";
 $a->strings["Update public posts"] = "Update public posts";
 $a->strings["Update now"] = "Update now";
 $a->strings["Unignore"] = "Unignore";
+$a->strings["Ignore"] = "Ignore";
 $a->strings["Currently blocked"] = "Currently blocked";
 $a->strings["Currently ignored"] = "Currently ignored";
 $a->strings["Currently archived"] = "Currently archived";
+$a->strings["Hide this contact from others"] = "Hide this contact from others";
 $a->strings["Replies/likes to your public posts <strong>may</strong> still be visible"] = "Replies/Likes to your public posts <strong>may</strong> still be visible";
 $a->strings["Notification for new posts"] = "Notification for new posts";
 $a->strings["Send a notification of every new post of this contact"] = "Send notification for every new post from this contact";
 $a->strings["Blacklisted keywords"] = "Blacklisted keywords";
 $a->strings["Comma separated list of keywords that should not be converted to hashtags, when \"Fetch information and keywords\" is selected"] = "Comma separated list of keywords that should not be converted to hashtags, when \"Fetch information and keywords\" is selected";
+$a->strings["Profile URL"] = "Profile URL:";
 $a->strings["Actions"] = "Actions";
 $a->strings["Contact Settings"] = "Notification and privacy ";
 $a->strings["Suggestions"] = "Suggestions";
 $a->strings["Suggest potential friends"] = "Suggest potential friends";
+$a->strings["All Contacts"] = "All contacts";
 $a->strings["Show all contacts"] = "Show all contacts";
 $a->strings["Unblocked"] = "Unblocked";
 $a->strings["Only show unblocked contacts"] = "Only show unblocked contacts";
@@ -1799,9 +1262,247 @@ $a->strings["Toggle Blocked status"] = "Toggle blocked status";
 $a->strings["Toggle Ignored status"] = "Toggle ignored status";
 $a->strings["Toggle Archive status"] = "Toggle archive status";
 $a->strings["Delete contact"] = "Delete contact";
+$a->strings["No such group"] = "No such group";
+$a->strings["Group is empty"] = "Group is empty";
+$a->strings["Group: %s"] = "Group: %s";
+$a->strings["This entry was edited"] = "This entry was edited";
+$a->strings["%d comment"] = array(
+       0 => "%d comment",
+       1 => "%d comments -",
+);
+$a->strings["Private Message"] = "Private message";
+$a->strings["I like this (toggle)"] = "I like this (toggle)";
+$a->strings["like"] = "Like";
+$a->strings["I don't like this (toggle)"] = "I don't like this (toggle)";
+$a->strings["dislike"] = "Dislike";
+$a->strings["Share this"] = "Share this";
+$a->strings["share"] = "Share";
+$a->strings["This is you"] = "This is me";
+$a->strings["Comment"] = "Comment";
+$a->strings["Bold"] = "Bold";
+$a->strings["Italic"] = "Italic";
+$a->strings["Underline"] = "Underline";
+$a->strings["Quote"] = "Quote";
+$a->strings["Code"] = "Code";
+$a->strings["Image"] = "Image";
+$a->strings["Link"] = "Link";
+$a->strings["Video"] = "Video";
+$a->strings["Edit"] = "Edit";
+$a->strings["add star"] = "Add star";
+$a->strings["remove star"] = "Remove star";
+$a->strings["toggle star status"] = "Toggle star status";
+$a->strings["starred"] = "Starred";
+$a->strings["add tag"] = "Add tag";
+$a->strings["ignore thread"] = "Ignore thread";
+$a->strings["unignore thread"] = "Unignore thread";
+$a->strings["toggle ignore status"] = "Toggle ignore status";
+$a->strings["ignored"] = "Ignored";
+$a->strings["save to folder"] = "Save to folder";
+$a->strings["I will attend"] = "I will attend";
+$a->strings["I will not attend"] = "I will not attend";
+$a->strings["I might attend"] = "I might attend";
+$a->strings["to"] = "to";
+$a->strings["Wall-to-Wall"] = "Wall-to-wall";
+$a->strings["via Wall-To-Wall:"] = "via wall-to-wall:";
+$a->strings["No potential page delegates located."] = "No potential page delegates found.";
+$a->strings["Delegates are able to manage all aspects of this account/page except for basic account settings. Please do not delegate your personal account to anybody that you do not trust completely."] = "Delegates are able to manage all aspects of this account except for key setting features. Please do not delegate your personal account to anybody that you do not trust completely.";
+$a->strings["Existing Page Managers"] = "Existing page managers";
+$a->strings["Existing Page Delegates"] = "Existing page delegates";
+$a->strings["Potential Delegates"] = "Potential delegates";
+$a->strings["Remove"] = "Remove";
+$a->strings["Add"] = "Add";
+$a->strings["No entries."] = "No entries.";
+$a->strings["Profile not found."] = "Profile not found.";
+$a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = "This may occasionally happen if contact was requested by both persons and it has already been approved.";
+$a->strings["Response from remote site was not understood."] = "Response from remote site was not understood.";
+$a->strings["Unexpected response from remote site: "] = "Unexpected response from remote site: ";
+$a->strings["Confirmation completed successfully."] = "Confirmation completed successfully.";
+$a->strings["Remote site reported: "] = "Remote site reported: ";
+$a->strings["Temporary failure. Please wait and try again."] = "Temporary failure. Please wait and try again.";
+$a->strings["Introduction failed or was revoked."] = "Introduction failed or was revoked.";
+$a->strings["Unable to set contact photo."] = "Unable to set contact photo.";
+$a->strings["No user record found for '%s' "] = "No user record found for '%s' ";
+$a->strings["Our site encryption key is apparently messed up."] = "Our site encryption key is apparently messed up.";
+$a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "An empty URL was provided or the URL could not be decrypted by us.";
+$a->strings["Contact record was not found for you on our site."] = "Contact record was not found for you on our site.";
+$a->strings["Site public key not available in contact record for URL %s."] = "Site public key not available in contact record for URL %s.";
+$a->strings["The ID provided by your system is a duplicate on our system. It should work if you try again."] = "The ID provided by your system is a duplicate on our system. It should work if you try again.";
+$a->strings["Unable to set your contact credentials on our system."] = "Unable to set your contact credentials on our system.";
+$a->strings["Unable to update your contact profile details on our system"] = "Unable to update your contact profile details on our system";
+$a->strings["%1\$s has joined %2\$s"] = "%1\$s has joined %2\$s";
+$a->strings["%1\$s welcomes %2\$s"] = "%1\$s welcomes %2\$s";
+$a->strings["This introduction has already been accepted."] = "This introduction has already been accepted.";
+$a->strings["Profile location is not valid or does not contain profile information."] = "Profile location is not valid or does not contain profile information.";
+$a->strings["Warning: profile location has no identifiable owner name."] = "Warning: profile location has no identifiable owner name.";
+$a->strings["Warning: profile location has no profile photo."] = "Warning: profile location has no profile photo.";
+$a->strings["%d required parameter was not found at the given location"] = array(
+       0 => "%d required parameter was not found at the given location",
+       1 => "%d required parameters were not found at the given location",
+);
+$a->strings["Introduction complete."] = "Introduction complete.";
+$a->strings["Unrecoverable protocol error."] = "Unrecoverable protocol error.";
+$a->strings["Profile unavailable."] = "Profile unavailable.";
+$a->strings["%s has received too many connection requests today."] = "%s has received too many connection requests today.";
+$a->strings["Spam protection measures have been invoked."] = "Spam protection measures have been invoked.";
+$a->strings["Friends are advised to please try again in 24 hours."] = "Friends are advised to please try again in 24 hours.";
+$a->strings["Invalid locator"] = "Invalid locator";
+$a->strings["Invalid email address."] = "Invalid email address.";
+$a->strings["This account has not been configured for email. Request failed."] = "This account has not been configured for email. Request failed.";
+$a->strings["You have already introduced yourself here."] = "You have already introduced yourself here.";
+$a->strings["Apparently you are already friends with %s."] = "Apparently you are already friends with %s.";
+$a->strings["Invalid profile URL."] = "Invalid profile URL.";
+$a->strings["Your introduction has been sent."] = "Your introduction has been sent.";
+$a->strings["Remote subscription can't be done for your network. Please subscribe directly on your system."] = "Remote subscription can't be done for your network. Please subscribe directly on your system.";
+$a->strings["Please login to confirm introduction."] = "Please login to confirm introduction.";
+$a->strings["Incorrect identity currently logged in. Please login to <strong>this</strong> profile."] = "Incorrect identity currently logged in. Please login to <strong>this</strong> profile.";
+$a->strings["Confirm"] = "Confirm";
+$a->strings["Hide this contact"] = "Hide this contact";
+$a->strings["Welcome home %s."] = "Welcome home %s.";
+$a->strings["Please confirm your introduction/connection request to %s."] = "Please confirm your introduction/connection request to %s.";
+$a->strings["Please enter your 'Identity Address' from one of the following supported communications networks:"] = "Please enter your 'Identity address' from one of the following supported communications networks:";
+$a->strings["If you are not yet a member of the free social web, <a href=\"%s/siteinfo\">follow this link to find a public Friendica site and join us today</a>."] = "If you are not yet a member of the free social web, <a href=\"%s/siteinfo\">follow this link to find a public Friendica site and join us today</a>.";
+$a->strings["Friend/Connection Request"] = "Friend/Connection request";
+$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"] = "Examples: jojo@friendica.example.com, http://friendica.example.com/profile/jojo, sam@identi.ca";
+$a->strings["Please answer the following:"] = "Please answer the following:";
+$a->strings["Does %s know you?"] = "Does %s know you?";
+$a->strings["Add a personal note:"] = "Add a personal note:";
+$a->strings["StatusNet/Federated Social Web"] = "StatusNet/Federated social web";
+$a->strings[" - please do not use this form.  Instead, enter %s into your Diaspora search bar."] = " - please do not use this form.  Instead, enter %s into your Diaspora search bar.";
+$a->strings["Your Identity Address:"] = "My identity address:";
+$a->strings["Submit Request"] = "Submit request";
+$a->strings["Global Directory"] = "Global Directory";
+$a->strings["Find on this site"] = "Find on this site";
+$a->strings["Results for:"] = "Results for:";
+$a->strings["Site Directory"] = "Site directory";
+$a->strings["No entries (some entries may be hidden)."] = "No entries (entries may be hidden).";
+$a->strings["People Search - %s"] = "People search - %s";
+$a->strings["Forum Search - %s"] = "Forum search - %s";
+$a->strings["No matches"] = "No matches";
 $a->strings["Item has been removed."] = "Item has been removed.";
+$a->strings["Item not found"] = "Item not found";
+$a->strings["Edit post"] = "Edit post";
+$a->strings["Event can not end before it has started."] = "Event cannot end before it has started.";
+$a->strings["Event title and start time are required."] = "Event title and starting time are required.";
+$a->strings["Create New Event"] = "Create new event";
+$a->strings["Event details"] = "Event details";
+$a->strings["Starting date and Title are required."] = "Starting date and title are required.";
+$a->strings["Event Starts:"] = "Event starts:";
+$a->strings["Required"] = "Required";
+$a->strings["Finish date/time is not known or not relevant"] = "Finish date/time is not known or not relevant";
+$a->strings["Event Finishes:"] = "Event finishes:";
+$a->strings["Adjust for viewer timezone"] = "Adjust for viewer's time zone";
+$a->strings["Description:"] = "Description:";
+$a->strings["Title:"] = "Title:";
+$a->strings["Share this event"] = "Share this event";
+$a->strings["Failed to remove event"] = "Failed to remove event";
+$a->strings["Event removed"] = "Event removed";
+$a->strings["Files"] = "Files";
+$a->strings["Not Found"] = "Not found";
+$a->strings["Contact added"] = "Contact added";
+$a->strings["You already added this contact."] = "You already added this contact.";
+$a->strings["Diaspora support isn't enabled. Contact can't be added."] = "Diaspora support isn't enabled. Contact can't be added.";
+$a->strings["OStatus support is disabled. Contact can't be added."] = "OStatus support is disabled. Contact can't be added.";
+$a->strings["The network type couldn't be detected. Contact can't be added."] = "The network type couldn't be detected. Contact can't be added.";
+$a->strings["This is Friendica, version"] = "This is Friendica, version";
+$a->strings["running at web location"] = "running at web location";
+$a->strings["Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn more about the Friendica project."] = "Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn more about the Friendica project.";
+$a->strings["Bug reports and issues: please visit"] = "Bug reports and issues: please visit";
+$a->strings["the bugtracker at github"] = "the bugtracker at github";
+$a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"] = "Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com";
+$a->strings["Installed plugins/addons/apps:"] = "Installed plugins/addons/apps:";
+$a->strings["No installed plugins/addons/apps"] = "No installed plugins/addons/apps";
+$a->strings["On this server the following remote servers are blocked."] = "On this server the following remote servers are blocked.";
+$a->strings["Group created."] = "Group created.";
+$a->strings["Could not create group."] = "Could not create group.";
+$a->strings["Group not found."] = "Group not found.";
+$a->strings["Group name changed."] = "Group name changed.";
+$a->strings["Save Group"] = "Save group";
+$a->strings["Create a group of contacts/friends."] = "Create a group of contacts/friends.";
+$a->strings["Group removed."] = "Group removed.";
+$a->strings["Unable to remove group."] = "Unable to remove group.";
+$a->strings["Delete Group"] = "Delete group";
+$a->strings["Group Editor"] = "Group Editor";
+$a->strings["Edit Group Name"] = "Edit group name";
+$a->strings["Members"] = "Members";
+$a->strings["Remove Contact"] = "Remove contact";
+$a->strings["Add Contact"] = "Add contact";
+$a->strings["No profile"] = "No profile";
 $a->strings["Help:"] = "Help:";
 $a->strings["Page not found."] = "Page not found";
+$a->strings["Welcome to %s"] = "Welcome to %s";
+$a->strings["Friendica Communications Server - Setup"] = "Friendica Communications Server - Setup";
+$a->strings["Could not connect to database."] = "Could not connect to database.";
+$a->strings["Could not create table."] = "Could not create table.";
+$a->strings["Your Friendica site database has been installed."] = "Your Friendica site database has been installed.";
+$a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = "You may need to import the file \"database.sql\" manually using phpmyadmin or mysql.";
+$a->strings["Please see the file \"INSTALL.txt\"."] = "Please see the file \"INSTALL.txt\".";
+$a->strings["Database already in use."] = "Database already in use.";
+$a->strings["System check"] = "System check";
+$a->strings["Check again"] = "Check again";
+$a->strings["Database connection"] = "Database connection";
+$a->strings["In order to install Friendica we need to know how to connect to your database."] = "In order to install Friendica we need to know how to connect to your database.";
+$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Please contact your hosting provider or site administrator if you have questions about these settings.";
+$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "The database you specify below should already exist. If it does not, please create it before continuing.";
+$a->strings["Database Server Name"] = "Database server name";
+$a->strings["Database Login Name"] = "Database login name";
+$a->strings["Database Login Password"] = "Database login password";
+$a->strings["For security reasons the password must not be empty"] = "For security reasons the password must not be empty";
+$a->strings["Database Name"] = "Database name";
+$a->strings["Site administrator email address"] = "Site administrator email address";
+$a->strings["Your account email address must match this in order to use the web admin panel."] = "Your account email address must match this in order to use the web admin panel.";
+$a->strings["Please select a default timezone for your website"] = "Please select a default time zone for your website";
+$a->strings["Site settings"] = "Site settings";
+$a->strings["System Language:"] = "System language:";
+$a->strings["Set the default language for your Friendica installation interface and to send emails."] = "Set the default language for your Friendica installation interface and email communication.";
+$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Could not find a command line version of PHP in the web server PATH.";
+$a->strings["If you don't have a command line version of PHP installed on server, you will not be able to run the background processing. See <a href='https://github.com/friendica/friendica/blob/master/doc/Install.md#set-up-the-poller'>'Setup the poller'</a>"] = "If you don't have a command line version of PHP installed on your server, you will not be able to run the background processing. See <a href='https://github.com/friendica/friendica/blob/master/doc/Install.md#set-up-the-poller'>'Setup the poller'</a>";
+$a->strings["PHP executable path"] = "PHP executable path";
+$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Enter full path to php executable. You can leave this blank to continue the installation.";
+$a->strings["Command line PHP"] = "Command line PHP";
+$a->strings["PHP executable is not the php cli binary (could be cgi-fgci version)"] = "PHP executable is not a php cli binary; it could possibly be a cgi-fgci version.";
+$a->strings["Found PHP version: "] = "Found PHP version: ";
+$a->strings["PHP cli binary"] = "PHP cli binary";
+$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "The command line version of PHP on your system does not have \"register_argc_argv\" enabled.";
+$a->strings["This is required for message delivery to work."] = "This is required for message delivery to work.";
+$a->strings["PHP register_argc_argv"] = "PHP register_argc_argv";
+$a->strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys";
+$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "If running under Windows OS, please see \"http://www.php.net/manual/en/openssl.installation.php\".";
+$a->strings["Generate encryption keys"] = "Generate encryption keys";
+$a->strings["libCurl PHP module"] = "libCurl PHP module";
+$a->strings["GD graphics PHP module"] = "GD graphics PHP module";
+$a->strings["OpenSSL PHP module"] = "OpenSSL PHP module";
+$a->strings["PDO or MySQLi PHP module"] = "PDO or MySQLi PHP module";
+$a->strings["mb_string PHP module"] = "mb_string PHP module";
+$a->strings["XML PHP module"] = "XML PHP module";
+$a->strings["iconv module"] = "iconv module";
+$a->strings["Apache mod_rewrite module"] = "Apache mod_rewrite module";
+$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Error: Apache web server mod-rewrite module is required but not installed.";
+$a->strings["Error: libCURL PHP module required but not installed."] = "Error: libCURL PHP module required but not installed.";
+$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Error: GD graphics PHP module with JPEG support required but not installed.";
+$a->strings["Error: openssl PHP module required but not installed."] = "Error: openssl PHP module required but not installed.";
+$a->strings["Error: PDO or MySQLi PHP module required but not installed."] = "Error: PDO or MySQLi PHP module required but not installed.";
+$a->strings["Error: The MySQL driver for PDO is not installed."] = "Error: MySQL driver for PDO is not installed.";
+$a->strings["Error: mb_string PHP module required but not installed."] = "Error: mb_string PHP module required but not installed.";
+$a->strings["Error: iconv PHP module required but not installed."] = "Error: iconv PHP module required but not installed.";
+$a->strings["Error, XML PHP module required but not installed."] = "Error, XML PHP module required but not installed.";
+$a->strings["The web installer needs to be able to create a file called \".htconfig.php\" in the top folder of your web server and it is unable to do so."] = "The web installer needs to be able to create a file called \".htconfig.php\" in the top-level directory of your web server, but it is unable to do so.";
+$a->strings["This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can."] = "This is most often a permission setting issue, as the web server may not be able to write files in your directory - even if you can.";
+$a->strings["At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Friendica top folder."] = "At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Friendica top-level directory.";
+$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = "Alternatively, you may skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions.";
+$a->strings[".htconfig.php is writable"] = ".htconfig.php is writeable";
+$a->strings["Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering.";
+$a->strings["In order to store these compiled templates, the web server needs to have write access to the directory view/smarty3/ under the Friendica top level folder."] = "In order to store these compiled templates, the web server needs to have write access to the directory view/smarty3/ under the Friendica top-level directory.";
+$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Please ensure the user (e.g. www-data) that your web server runs as has write access to this directory.";
+$a->strings["Note: as a security measure, you should give the web server write access to view/smarty3/ only--not the template files (.tpl) that it contains."] = "Note: as a security measure, you should give the web server write access to view/smarty3/ only--not the template files (.tpl) that it contains.";
+$a->strings["view/smarty3 is writable"] = "view/smarty3 is writeable";
+$a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = "URL rewrite in .htaccess is not working. Check your server configuration.";
+$a->strings["Url rewrite is working"] = "URL rewrite is working";
+$a->strings["ImageMagick PHP extension is not installed"] = "ImageMagick PHP extension is not installed";
+$a->strings["ImageMagick PHP extension is installed"] = "ImageMagick PHP extension is installed";
+$a->strings["ImageMagick supports GIF"] = "ImageMagick supports GIF";
+$a->strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = "The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root.";
+$a->strings["<h1>What next</h1>"] = "<h1>What next</h1>";
+$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "IMPORTANT: You will need to [manually] setup a scheduled task for the poller.";
 $a->strings["Total invitation limit exceeded."] = "Total invitation limit exceeded";
 $a->strings["%s : Not a valid email address."] = "%s : Not a valid email address";
 $a->strings["Please join us on Friendica"] = "Please join us on Friendica.";
@@ -1811,19 +1512,85 @@ $a->strings["%d message sent."] = array(
        0 => "%d message sent.",
        1 => "%d messages sent.",
 );
-$a->strings["You have no more invitations available"] = "You have no more invitations available.";
-$a->strings["Visit %s for a list of public sites that you can join. Friendica members on other sites can all connect with each other, as well as with members of many other social networks."] = "Visit %s for a list of public sites that you can join. Friendica members on other sites can all connect with each other, as well as with members of many other social networks.";
-$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = "To accept this invitation, please sign up at %s or any other public Friendica website.";
-$a->strings["Friendica sites all inter-connect to create a huge privacy-enhanced social web that is owned and controlled by its members. They can also connect with many traditional social networks. See %s for a list of alternate Friendica sites you can join."] = "Friendica sites are all inter-connect to create a large privacy-enhanced social web that is owned and controlled by its members. They can also connect with many traditional social networks. See %s for a list of alternate Friendica sites you can join.";
-$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = "Our apologies. This system is not currently configured to connect with other public sites or invite members.";
-$a->strings["To accept this invitation, please visit and register at %s."] = "To accept this invitation, please visit and register at %s.";
-$a->strings["Friendica sites all inter-connect to create a huge privacy-enhanced social web that is owned and controlled by its members. They can also connect with many traditional social networks."] = "Friendica sites are all inter-connect to create a huge privacy-enhanced social web that is owned and controlled by its members. Each site can also connect with many traditional social networks.";
-$a->strings["Send invitations"] = "Send invitations";
-$a->strings["Enter email addresses, one per line:"] = "Enter email addresses, one per line:";
-$a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = "You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web.";
-$a->strings["You will need to supply this invitation code: \$invite_code"] = "You will need to supply this invitation code: \$invite_code";
-$a->strings["Once you have registered, please connect with me via my profile page at:"] = "Once you have signed up, please connect with me via my profile page at:";
-$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendi.ca"] = "For more information about the Friendica project and why we feel it is important, please visit http://friendi.ca";
+$a->strings["You have no more invitations available"] = "You have no more invitations available.";
+$a->strings["Visit %s for a list of public sites that you can join. Friendica members on other sites can all connect with each other, as well as with members of many other social networks."] = "Visit %s for a list of public sites that you can join. Friendica members on other sites can all connect with each other, as well as with members of many other social networks.";
+$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = "To accept this invitation, please sign up at %s or any other public Friendica website.";
+$a->strings["Friendica sites all inter-connect to create a huge privacy-enhanced social web that is owned and controlled by its members. They can also connect with many traditional social networks. See %s for a list of alternate Friendica sites you can join."] = "Friendica sites are all inter-connect to create a large privacy-enhanced social web that is owned and controlled by its members. They can also connect with many traditional social networks. See %s for a list of alternate Friendica sites you can join.";
+$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = "Our apologies. This system is not currently configured to connect with other public sites or invite members.";
+$a->strings["To accept this invitation, please visit and register at %s."] = "To accept this invitation, please visit and register at %s.";
+$a->strings["Friendica sites all inter-connect to create a huge privacy-enhanced social web that is owned and controlled by its members. They can also connect with many traditional social networks."] = "Friendica sites are all inter-connect to create a huge privacy-enhanced social web that is owned and controlled by its members. Each site can also connect with many traditional social networks.";
+$a->strings["Send invitations"] = "Send invitations";
+$a->strings["Enter email addresses, one per line:"] = "Enter email addresses, one per line:";
+$a->strings["Your message:"] = "Your message:";
+$a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = "You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web.";
+$a->strings["You will need to supply this invitation code: \$invite_code"] = "You will need to supply this invitation code: \$invite_code";
+$a->strings["Once you have registered, please connect with me via my profile page at:"] = "Once you have signed up, please connect with me via my profile page at:";
+$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendi.ca"] = "For more information about the Friendica project and why we feel it is important, please visit http://friendi.ca";
+$a->strings["Unable to locate original post."] = "Unable to locate original post.";
+$a->strings["Empty post discarded."] = "Empty post discarded.";
+$a->strings["System error. Post not saved."] = "System error. Post not saved.";
+$a->strings["This message was sent to you by %s, a member of the Friendica social network."] = "This message was sent to you by %s, a member of the Friendica social network.";
+$a->strings["You may visit them online at %s"] = "You may visit them online at %s";
+$a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "Please contact the sender by replying to this post if you do not wish to receive these messages.";
+$a->strings["%s posted an update."] = "%s posted an update.";
+$a->strings["Time Conversion"] = "Time conversion";
+$a->strings["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = "Friendica provides this service for sharing events with other networks and friends in unknown time zones.";
+$a->strings["UTC time: %s"] = "UTC time: %s";
+$a->strings["Current timezone: %s"] = "Current time zone: %s";
+$a->strings["Converted localtime: %s"] = "Converted local time: %s";
+$a->strings["Please select your timezone:"] = "Please select your time zone:";
+$a->strings["No valid account found."] = "No valid account found.";
+$a->strings["Password reset request issued. Check your email."] = "Password reset request issued. Please check your email.";
+$a->strings["\n\t\tDear %1\$s,\n\t\t\tA request was recently received at \"%2\$s\" to reset your account\n\t\tpassword. In order to confirm this request, please select the verification link\n\t\tbelow or paste it into your web browser address bar.\n\n\t\tIf you did NOT request this change, please DO NOT follow the link\n\t\tprovided and ignore and/or delete this email.\n\n\t\tYour password will not be changed unless we can verify that you\n\t\tissued this request."] = "\n\t\tDear %1\$s,\n\t\t\tA request was issued at \"%2\$s\" to reset your account\n\t\tpassword. In order to confirm this request, please select the verification link\n\t\tbelow or paste it into your web browser address bar.\n\n\t\tIf you did NOT request this change, please DO NOT follow the link\n\t\tprovided and ignore/delete this email.\n\n\t\tYour password will not be changed unless we can verify that you\n\t\tissued this request.";
+$a->strings["\n\t\tFollow this link to verify your identity:\n\n\t\t%1\$s\n\n\t\tYou will then receive a follow-up message containing the new password.\n\t\tYou may change that password from your account settings page after logging in.\n\n\t\tThe login details are as follows:\n\n\t\tSite Location:\t%2\$s\n\t\tLogin Name:\t%3\$s"] = "\n\t\tFollow this link to verify your identity:\n\n\t\t%1\$s\n\n\t\tYou will then receive a follow-up message containing the new password.\n\t\tYou may change that password from your account settings page after logging in.\n\n\t\tThe login details are as follows:\n\n\t\tSite Location:\t%2\$s\n\t\tLogin Name:\t%3\$s";
+$a->strings["Password reset requested at %s"] = "Password reset requested at %s";
+$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Request could not be verified. (You may have previously submitted it.) Password reset failed.";
+$a->strings["Password Reset"] = "Forgotten password?";
+$a->strings["Your password has been reset as requested."] = "Your password has been reset as requested.";
+$a->strings["Your new password is"] = "Your new password is";
+$a->strings["Save or copy your new password - and then"] = "Save or copy your new password - and then";
+$a->strings["click here to login"] = "click here to login";
+$a->strings["Your password may be changed from the <em>Settings</em> page after successful login."] = "Your password may be changed from the <em>Settings</em> page after successful login.";
+$a->strings["\n\t\t\t\tDear %1\$s,\n\t\t\t\t\tYour password has been changed as requested. Please retain this\n\t\t\t\tinformation for your records (or change your password immediately to\n\t\t\t\tsomething that you will remember).\n\t\t\t"] = "\n\t\t\t\tDear %1\$s,\n\t\t\t\t\tYour password has been changed as requested. Please retain this\n\t\t\t\tinformation for your records or change your password immediately to\n\t\t\t\tsomething that you will remember.\n\t\t\t";
+$a->strings["\n\t\t\t\tYour login details are as follows:\n\n\t\t\t\tSite Location:\t%1\$s\n\t\t\t\tLogin Name:\t%2\$s\n\t\t\t\tPassword:\t%3\$s\n\n\t\t\t\tYou may change that password from your account settings page after logging in.\n\t\t\t"] = "\n\t\t\t\tYour login details are as follows:\n\n\t\t\t\tSite Location:\t%1\$s\n\t\t\t\tLogin Name:\t%2\$s\n\t\t\t\tPassword:\t%3\$s\n\n\t\t\t\tYou may change that password from your account settings page after logging in.\n\t\t\t";
+$a->strings["Your password has been changed at %s"] = "Your password has been changed at %s";
+$a->strings["Forgot your Password?"] = "Reset My Password";
+$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Enter email address or nickname to reset your password. You will receive further instruction via email.";
+$a->strings["Nickname or Email: "] = "Nickname or email: ";
+$a->strings["Reset"] = "Reset";
+$a->strings["Manage Identities and/or Pages"] = "Manage Identities and Pages";
+$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "Accounts that I manage or own.";
+$a->strings["Select an identity to manage: "] = "Select identity:";
+$a->strings["No keywords to match. Please add keywords to your default profile."] = "No keywords to match. Please add keywords to your default profile.";
+$a->strings["is interested in:"] = "is interested in:";
+$a->strings["Profile Match"] = "Profile Match";
+$a->strings["No recipient selected."] = "No recipient selected.";
+$a->strings["Unable to locate contact information."] = "Unable to locate contact information.";
+$a->strings["Message could not be sent."] = "Message could not be sent.";
+$a->strings["Message collection failure."] = "Message collection failure.";
+$a->strings["Message sent."] = "Message sent.";
+$a->strings["Do you really want to delete this message?"] = "Do you really want to delete this message?";
+$a->strings["Message deleted."] = "Message deleted.";
+$a->strings["Conversation removed."] = "Conversation removed.";
+$a->strings["Send Private Message"] = "Send private message";
+$a->strings["To:"] = "To:";
+$a->strings["Subject:"] = "Subject:";
+$a->strings["No messages."] = "No messages.";
+$a->strings["Message not available."] = "Message not available.";
+$a->strings["Delete message"] = "Delete message";
+$a->strings["Delete conversation"] = "Delete conversation";
+$a->strings["No secure communications available. You <strong>may</strong> be able to respond from the sender's profile page."] = "No secure communications available. You <strong>may</strong> be able to respond from the sender's profile page.";
+$a->strings["Send Reply"] = "Send reply";
+$a->strings["Unknown sender - %s"] = "Unknown sender - %s";
+$a->strings["You and %s"] = "Me and %s";
+$a->strings["%s and You"] = "%s and me";
+$a->strings["D, d M Y - g:i A"] = "D, d M Y - g:i A";
+$a->strings["%d message"] = array(
+       0 => "%d message",
+       1 => "%d messages",
+);
+$a->strings["Mood"] = "Mood";
+$a->strings["Set your current mood and tell your friends"] = "Set your current mood and tell your friends";
 $a->strings["Warning: This group contains %s member from a network that doesn't allow non public messages."] = array(
        0 => "Warning: This group contains %s member from a network that doesn't allow non public messages.",
        1 => "Warning: This group contains %s members from a network that doesn't allow non public messages.",
@@ -1842,9 +1609,223 @@ $a->strings["Shared Links"] = "Shared links";
 $a->strings["Interesting Links"] = "Interesting links";
 $a->strings["Starred"] = "Starred";
 $a->strings["Favourite Posts"] = "My favourite posts";
+$a->strings["Invalid request identifier."] = "Invalid request identifier.";
+$a->strings["Discard"] = "Discard";
+$a->strings["Network Notifications"] = "Network notifications";
+$a->strings["System Notifications"] = "System notifications";
+$a->strings["Personal Notifications"] = "Personal notifications";
+$a->strings["Home Notifications"] = "Home notifications";
+$a->strings["Show Ignored Requests"] = "Show ignored requests.";
+$a->strings["Hide Ignored Requests"] = "Hide ignored requests";
+$a->strings["Notification type: "] = "Notification type: ";
+$a->strings["suggested by %s"] = "suggested by %s";
+$a->strings["Post a new friend activity"] = "Post a new friend activity";
+$a->strings["if applicable"] = "if applicable";
+$a->strings["Claims to be known to you: "] = "Says they know me:";
+$a->strings["yes"] = "yes";
+$a->strings["no"] = "no";
+$a->strings["Shall your connection be bidirectional or not?"] = "Shall your connection be in both directions or not?";
+$a->strings["Accepting %s as a friend allows %s to subscribe to your posts, and you will also receive updates from them in your news feed."] = "Accepting %s as a friend allows %s to subscribe to your posts; you will also receive updates from them in your news feed.";
+$a->strings["Accepting %s as a subscriber allows them to subscribe to your posts, but you will not receive updates from them in your news feed."] = "Accepting %s as a subscriber allows them to subscribe to your posts, but you will not receive updates from them in your news feed.";
+$a->strings["Accepting %s as a sharer allows them to subscribe to your posts, but you will not receive updates from them in your news feed."] = "Accepting %s as a sharer allows them to subscribe to your posts, but you will not receive updates from them in your news feed.";
+$a->strings["Friend"] = "Friend";
+$a->strings["Sharer"] = "Sharer";
+$a->strings["Subscriber"] = "Subscriber";
+$a->strings["No introductions."] = "No introductions.";
+$a->strings["Show unread"] = "Show unread";
+$a->strings["Show all"] = "Show all";
+$a->strings["No more %s notifications."] = "No more %s notifications.";
+$a->strings["No more system notifications."] = "No more system notifications.";
+$a->strings["Post successful."] = "Post successful.";
+$a->strings["OpenID protocol error. No ID returned."] = "OpenID protocol error. No ID returned.";
+$a->strings["Account not found and OpenID registration is not permitted on this site."] = "Account not found and OpenID registration is not permitted on this site.";
+$a->strings["Subscribing to OStatus contacts"] = "Subscribing to OStatus contacts";
+$a->strings["No contact provided."] = "No contact provided.";
+$a->strings["Couldn't fetch information for contact."] = "Couldn't fetch information for contact.";
+$a->strings["Couldn't fetch friends for contact."] = "Couldn't fetch friends for contact.";
+$a->strings["Done"] = "Done";
+$a->strings["success"] = "success";
+$a->strings["failed"] = "failed";
+$a->strings["Keep this window open until done."] = "Keep this window open until done.";
+$a->strings["Not Extended"] = "Not extended";
+$a->strings["Recent Photos"] = "Recent photos";
+$a->strings["Upload New Photos"] = "Upload new photos";
+$a->strings["everybody"] = "everybody";
+$a->strings["Contact information unavailable"] = "Contact information unavailable";
+$a->strings["Album not found."] = "Album not found.";
+$a->strings["Delete Album"] = "Delete album";
+$a->strings["Do you really want to delete this photo album and all its photos?"] = "Do you really want to delete this photo album and all its photos?";
+$a->strings["Delete Photo"] = "Delete photo";
+$a->strings["Do you really want to delete this photo?"] = "Do you really want to delete this photo?";
+$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "%1\$s was tagged in %2\$s by %3\$s";
+$a->strings["a photo"] = "a photo";
+$a->strings["Image exceeds size limit of %s"] = "Image exceeds size limit of %s";
+$a->strings["Image file is empty."] = "Image file is empty.";
+$a->strings["Unable to process image."] = "Unable to process image.";
+$a->strings["Image upload failed."] = "Image upload failed.";
+$a->strings["No photos selected"] = "No photos selected";
+$a->strings["Access to this item is restricted."] = "Access to this item is restricted.";
+$a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage.";
+$a->strings["Upload Photos"] = "Upload photos";
+$a->strings["New album name: "] = "New album name: ";
+$a->strings["or existing album name: "] = "or existing album name: ";
+$a->strings["Do not show a status post for this upload"] = "Do not show a status post for this upload";
+$a->strings["Show to Groups"] = "Show to groups";
+$a->strings["Show to Contacts"] = "Show to contacts";
+$a->strings["Private Photo"] = "Private photo";
+$a->strings["Public Photo"] = "Public photo";
+$a->strings["Edit Album"] = "Edit album";
+$a->strings["Show Newest First"] = "Show newest first";
+$a->strings["Show Oldest First"] = "Show oldest first";
+$a->strings["View Photo"] = "View photo";
+$a->strings["Permission denied. Access to this item may be restricted."] = "Permission denied. Access to this item may be restricted.";
+$a->strings["Photo not available"] = "Photo not available";
+$a->strings["View photo"] = "View photo";
+$a->strings["Edit photo"] = "Edit photo";
+$a->strings["Use as profile photo"] = "Use as profile photo";
+$a->strings["View Full Size"] = "View full size";
+$a->strings["Tags: "] = "Tags: ";
+$a->strings["[Remove any tag]"] = "[Remove any tag]";
+$a->strings["New album name"] = "New album name";
+$a->strings["Caption"] = "Caption";
+$a->strings["Add a Tag"] = "Add Tag";
+$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Example: @bob, @jojo@example.com, #California, #camping";
+$a->strings["Do not rotate"] = "Do not rotate";
+$a->strings["Rotate CW (right)"] = "Rotate right (CW)";
+$a->strings["Rotate CCW (left)"] = "Rotate left (CCW)";
+$a->strings["Private photo"] = "Private photo";
+$a->strings["Public photo"] = "Public photo";
+$a->strings["Map"] = "Map";
+$a->strings["View Album"] = "View album";
+$a->strings["{0} wants to be your friend"] = "{0} wants to be your friend";
+$a->strings["{0} sent you a message"] = "{0} sent you a message";
+$a->strings["{0} requested registration"] = "{0} requested registration";
+$a->strings["Poke/Prod"] = "Poke/Prod";
+$a->strings["poke, prod or do other things to somebody"] = "Poke, prod or do other things to somebody";
+$a->strings["Recipient"] = "Recipient:";
+$a->strings["Choose what you wish to do to recipient"] = "Choose what you wish to do:";
+$a->strings["Make this post private"] = "Make this post private";
+$a->strings["Tips for New Members"] = "Tips for New Members";
+$a->strings["Image uploaded but image cropping failed."] = "Image uploaded but image cropping failed.";
+$a->strings["Image size reduction [%s] failed."] = "Image size reduction [%s] failed.";
+$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Shift-reload the page or clear browser cache if the new photo does not display immediately.";
+$a->strings["Unable to process image"] = "Unable to process image";
+$a->strings["Upload File:"] = "Upload File:";
+$a->strings["Select a profile:"] = "Select a profile:";
+$a->strings["Upload"] = "Upload";
+$a->strings["or"] = "or";
+$a->strings["skip this step"] = "skip this step";
+$a->strings["select a photo from your photo albums"] = "select a photo from your photo albums";
+$a->strings["Crop Image"] = "Crop Image";
+$a->strings["Please adjust the image cropping for optimum viewing."] = "Please adjust the image cropping for optimum viewing.";
+$a->strings["Done Editing"] = "Done editing";
+$a->strings["Image uploaded successfully."] = "Image uploaded successfully.";
+$a->strings["Profile deleted."] = "Profile deleted.";
+$a->strings["Profile-"] = "Profile-";
+$a->strings["New profile created."] = "New profile created.";
+$a->strings["Profile unavailable to clone."] = "Profile unavailable to clone.";
+$a->strings["Profile Name is required."] = "Profile name is required.";
+$a->strings["Marital Status"] = "Marital status";
+$a->strings["Romantic Partner"] = "Romantic partner";
+$a->strings["Work/Employment"] = "Work/Employment:";
+$a->strings["Religion"] = "Religion";
+$a->strings["Political Views"] = "Political views";
+$a->strings["Gender"] = "Gender";
+$a->strings["Sexual Preference"] = "Sexual preference";
+$a->strings["XMPP"] = "XMPP";
+$a->strings["Homepage"] = "Homepage";
+$a->strings["Interests"] = "Interests";
+$a->strings["Address"] = "Address";
+$a->strings["Location"] = "Location";
+$a->strings["Profile updated."] = "Profile updated.";
+$a->strings[" and "] = " and ";
+$a->strings["public profile"] = "public profile";
+$a->strings["%1\$s changed %2\$s to &ldquo;%3\$s&rdquo;"] = "%1\$s changed %2\$s to &ldquo;%3\$s&rdquo;";
+$a->strings[" - Visit %1\$s's %2\$s"] = " - Visit %1\$s's %2\$s";
+$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s has an updated %2\$s, changing %3\$s.";
+$a->strings["Hide contacts and friends:"] = "Hide contacts and friends:";
+$a->strings["Hide your contact/friend list from viewers of this profile?"] = "Hide your contact/friend list from viewers of this profile?";
+$a->strings["Show more profile fields:"] = "Show more profile fields:";
+$a->strings["Profile Actions"] = "Profile actions";
+$a->strings["Edit Profile Details"] = "Edit Profile Details";
+$a->strings["Change Profile Photo"] = "Change profile photo";
+$a->strings["View this profile"] = "View this profile";
+$a->strings["Create a new profile using these settings"] = "Create a new profile using these settings";
+$a->strings["Clone this profile"] = "Clone this profile";
+$a->strings["Delete this profile"] = "Delete this profile";
+$a->strings["Basic information"] = "Basic information";
+$a->strings["Profile picture"] = "Profile picture";
+$a->strings["Preferences"] = "Preferences";
+$a->strings["Status information"] = "Status information";
+$a->strings["Additional information"] = "Additional information";
+$a->strings["Relation"] = "Relation";
+$a->strings["Your Gender:"] = "Gender:";
+$a->strings["<span class=\"heart\">&hearts;</span> Marital Status:"] = "<span class=\"heart\">&hearts;</span> Marital status:";
+$a->strings["Example: fishing photography software"] = "Example: fishing photography software";
+$a->strings["Profile Name:"] = "Profile name:";
+$a->strings["This is your <strong>public</strong> profile.<br />It <strong>may</strong> be visible to anybody using the internet."] = "This is your <strong>public</strong> profile.<br />It <strong>may</strong> be visible to anybody using the internet.";
+$a->strings["Your Full Name:"] = "My full name:";
+$a->strings["Title/Description:"] = "Title/Description:";
+$a->strings["Street Address:"] = "Street address:";
+$a->strings["Locality/City:"] = "Locality/City:";
+$a->strings["Region/State:"] = "Region/State:";
+$a->strings["Postal/Zip Code:"] = "Postcode:";
+$a->strings["Country:"] = "Country:";
+$a->strings["Who: (if applicable)"] = "Who: (if applicable)";
+$a->strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Examples: cathy123, Cathy Williams, cathy@example.com";
+$a->strings["Since [date]:"] = "Since when:";
+$a->strings["Tell us about yourself..."] = "About myself:";
+$a->strings["XMPP (Jabber) address:"] = "XMPP (Jabber) address:";
+$a->strings["The XMPP address will be propagated to your contacts so that they can follow you."] = "The XMPP address will be propagated to your contacts so that they can follow you.";
+$a->strings["Homepage URL:"] = "Homepage URL:";
+$a->strings["Religious Views:"] = "Religious views:";
+$a->strings["Public Keywords:"] = "Public keywords:";
+$a->strings["(Used for suggesting potential friends, can be seen by others)"] = "Used for suggesting potential friends, can be seen by others.";
+$a->strings["Private Keywords:"] = "Private keywords:";
+$a->strings["(Used for searching profiles, never shown to others)"] = "Used for searching profiles, never shown to others.";
+$a->strings["Musical interests"] = "Music:";
+$a->strings["Books, literature"] = "Books, literature, poetry:";
+$a->strings["Television"] = "Television:";
+$a->strings["Film/dance/culture/entertainment"] = "Film, dance, culture, entertainment";
+$a->strings["Hobbies/Interests"] = "Hobbies/Interests:";
+$a->strings["Love/romance"] = "Love/Romance:";
+$a->strings["Work/employment"] = "Work/Employment:";
+$a->strings["School/education"] = "School/Education:";
+$a->strings["Contact information and Social Networks"] = "Contact information and other social networks:";
+$a->strings["Edit/Manage Profiles"] = "Edit/Manage Profiles";
+$a->strings["Registration successful. Please check your email for further instructions."] = "Registration successful. Please check your email for further instructions.";
+$a->strings["Failed to send email message. Here your accout details:<br> login: %s<br> password: %s<br><br>You can change your password after login."] = "Failed to send email message. Here your account details:<br> login: %s<br> password: %s<br><br>You can change your password after login.";
+$a->strings["Registration successful."] = "Registration successful.";
+$a->strings["Your registration can not be processed."] = "Your registration cannot be processed.";
+$a->strings["Your registration is pending approval by the site owner."] = "Your registration is pending approval by the site administrator.";
+$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Sign up now'.";
+$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items.";
+$a->strings["Your OpenID (optional): "] = "Your OpenID (optional): ";
+$a->strings["Include your profile in member directory?"] = "Include your profile in member directory?";
+$a->strings["Note for the admin"] = "Note for the admin";
+$a->strings["Leave a message for the admin, why you want to join this node"] = "Leave a message for the admin, why you want to join this node.";
+$a->strings["Membership on this site is by invitation only."] = "Membership on this site is by invitation only.";
+$a->strings["Your invitation ID: "] = "Your invitation ID: ";
+$a->strings["Your Full Name (e.g. Joe Smith, real or real-looking): "] = "Your full name: ";
+$a->strings["Your Email Address: "] = "Your email address: ";
+$a->strings["New Password:"] = "New password:";
+$a->strings["Leave empty for an auto generated password."] = "Leave empty for an auto generated password.";
+$a->strings["Confirm:"] = "Confirm new password:";
+$a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be '<strong>nickname@\$sitename</strong>'."] = "Choose a profile nickname. Your nickname will be part of your identity address; for example:  '<strong>nickname@\$sitename</strong>'.";
+$a->strings["Choose a nickname: "] = "Choose a nickname: ";
+$a->strings["Import your profile to this friendica instance"] = "Import an existing Friendica profile to this node.";
+$a->strings["Account approved."] = "Account approved.";
+$a->strings["Registration revoked for %s"] = "Registration revoked for %s";
+$a->strings["Please login."] = "Please login.";
+$a->strings["Remove My Account"] = "Remove My Account";
+$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "This will completely remove your account. Once this has been done it is not recoverable.";
+$a->strings["Please enter your password for verification:"] = "Please enter your password for verification:";
+$a->strings["Resubscribing to OStatus contacts"] = "Resubscribing to OStatus contacts";
+$a->strings["Error"] = "Error";
 $a->strings["Display"] = "Display";
 $a->strings["Social Networks"] = "Social networks";
 $a->strings["Connected apps"] = "Connected apps";
+$a->strings["Export personal data"] = "Export personal data";
 $a->strings["Remove account"] = "Remove account";
 $a->strings["Missing some important data!"] = "Missing some important data!";
 $a->strings["Failed to connect with email account using the settings provided."] = "Failed to connect with email account using the settings provided.";
@@ -2015,6 +1996,30 @@ $a->strings["Change the behaviour of this account for special situations"] = "Ch
 $a->strings["Relocate"] = "Recent relocation";
 $a->strings["If you have moved this profile from another server, and some of your contacts don't receive your updates, try pushing this button."] = "If you have moved this profile from another server and some of your contacts don't receive your updates:";
 $a->strings["Resend relocate message to contacts"] = "Resend relocation message to contacts";
+$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s is following %2\$s's %3\$s";
+$a->strings["Do you really want to delete this suggestion?"] = "Do you really want to delete this suggestion?";
+$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "No suggestions available. If this is a new site, please try again in 24 hours.";
+$a->strings["Ignore/Hide"] = "Ignore/Hide";
+$a->strings["Tag removed"] = "Tag removed";
+$a->strings["Remove Item Tag"] = "Remove Item tag";
+$a->strings["Select a tag to remove: "] = "Select a tag to remove: ";
+$a->strings["Export account"] = "Export account";
+$a->strings["Export your account info and contacts. Use this to make a backup of your account and/or to move it to another server."] = "Export your account info and contacts. Use this to backup your account or to move it to another server.";
+$a->strings["Export all"] = "Export all";
+$a->strings["Export your accout info, contacts and all your items as json. Could be a very big file, and could take a lot of time. Use this to make a full backup of your account (photos are not exported)"] = "Export your account info, contacts and all your items as json. Could be a very big file, and could take a lot of time. Use this to make a full backup of your account (photos are not exported)";
+$a->strings["Contact wasn't found or can't be unfollowed."] = "Contact wasn't found or can't be unfollowed.";
+$a->strings["Contact unfollowed"] = "Contact unfollowed";
+$a->strings["You aren't a friend of this contact."] = "You aren't a friend of this contact.";
+$a->strings["Unfollowing is currently not supported by your network."] = "Unfollowing is currently not supported by your network.";
+$a->strings["Do you really want to delete this video?"] = "Do you really want to delete this video?";
+$a->strings["Delete Video"] = "Delete video";
+$a->strings["No videos selected"] = "No videos selected";
+$a->strings["Recent Videos"] = "Recent videos";
+$a->strings["Upload New Videos"] = "Upload new videos";
+$a->strings["Number of daily wall messages for %s exceeded. Message failed."] = "Number of daily wall messages for %s exceeded. Message failed.";
+$a->strings["Unable to check your home location."] = "Unable to check your home location.";
+$a->strings["No recipient."] = "No recipient.";
+$a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = "If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders.";
 $a->strings["via"] = "via";
 $a->strings["greenzero"] = "greenzero";
 $a->strings["purplezero"] = "purplezero";
@@ -2061,7 +2066,6 @@ $a->strings["Local Directory"] = "Local directory";
 $a->strings["Quick Start"] = "Quick start";
 $a->strings["Delete this item?"] = "Delete this item?";
 $a->strings["show fewer"] = "Show fewer.";
-$a->strings["toggle mobile"] = "Toggle mobile";
 $a->strings["Update %s failed. See error logs."] = "Update %s failed. See error logs.";
 $a->strings["Create a New Account"] = "Create a new account";
 $a->strings["Password: "] = "Password: ";
@@ -2072,3 +2076,4 @@ $a->strings["Website Terms of Service"] = "Website Terms of Service";
 $a->strings["terms of service"] = "Terms of service";
 $a->strings["Website Privacy Policy"] = "Website Privacy Policy";
 $a->strings["privacy policy"] = "Privacy policy";
+$a->strings["toggle mobile"] = "Toggle mobile";
index 214b47410a8412916bd36fccc9e02d55f1d01a1f..6509a445df117ca2dd9db91fda410d6ccab0e76f 100644 (file)
@@ -8,8 +8,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: friendica\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2017-08-12 09:42+0200\n"
-"PO-Revision-Date: 2017-08-23 08:35+0000\n"
+"POT-Creation-Date: 2017-09-15 10:07+0200\n"
+"PO-Revision-Date: 2017-09-26 08:27+0000\n"
 "Last-Translator: Andy H3 <andy@hubup.pro>\n"
 "Language-Team: English (United States) (http://www.transifex.com/Friendica/friendica/language/en_US/)\n"
 "MIME-Version: 1.0\n"
@@ -105,7 +105,7 @@ msgstr "Network filter"
 msgid "Enable widget to display Network posts only from selected network"
 msgstr "Enable widget to display network posts only from selected network"
 
-#: include/features.php:86 mod/search.php:37 mod/network.php:209
+#: include/features.php:86 mod/search.php:37 mod/network.php:194
 msgid "Saved Searches"
 msgstr "Saved searches"
 
@@ -177,7 +177,7 @@ msgstr "Post categories"
 msgid "Add categories to your posts"
 msgstr "Add categories to your posts"
 
-#: include/features.php:104 include/contact_widgets.php:166
+#: include/features.php:104 include/contact_widgets.php:167
 msgid "Saved Folders"
 msgstr "Saved Folders"
 
@@ -217,22 +217,7 @@ msgstr "Advanced profiles"
 msgid "Show visitors public community forums at the Advanced Profile Page"
 msgstr "Show visitors of public community forums at the advanced profile page"
 
-#: include/ForumManager.php:116 include/nav.php:133 include/text.php:1109
-#: view/theme/vier/theme.php:248
-msgid "Forums"
-msgstr "Forums"
-
-#: include/ForumManager.php:118 view/theme/vier/theme.php:250
-msgid "External link to forum"
-msgstr "External link to forum"
-
-#: include/ForumManager.php:121 include/contact_widgets.php:275
-#: include/items.php:2390 mod/content.php:625 object/Item.php:420
-#: view/theme/vier/theme.php:253 src/App.php:528
-msgid "show more"
-msgstr "Show more..."
-
-#: include/datetime.php:66 include/datetime.php:68 mod/profiles.php:701
+#: include/datetime.php:66 include/datetime.php:68 mod/profiles.php:702
 msgid "Miscellaneous"
 msgstr "Miscellaneous"
 
@@ -240,7 +225,7 @@ msgstr "Miscellaneous"
 msgid "Birthday:"
 msgstr "Birthday:"
 
-#: include/datetime.php:198 mod/profiles.php:724
+#: include/datetime.php:198 mod/profiles.php:725
 msgid "Age: "
 msgstr "Age: "
 
@@ -264,8 +249,8 @@ msgstr "year"
 msgid "years"
 msgstr "years"
 
-#: include/datetime.php:380 include/event.php:453 mod/cal.php:281
-#: mod/events.php:387
+#: include/datetime.php:380 include/event.php:454 mod/cal.php:282
+#: mod/events.php:388
 msgid "month"
 msgstr "month"
 
@@ -273,8 +258,8 @@ msgstr "month"
 msgid "months"
 msgstr "months"
 
-#: include/datetime.php:381 include/event.php:454 mod/cal.php:282
-#: mod/events.php:388
+#: include/datetime.php:381 include/event.php:455 mod/cal.php:283
+#: mod/events.php:389
 msgid "week"
 msgstr "week"
 
@@ -282,8 +267,8 @@ msgstr "week"
 msgid "weeks"
 msgstr "weeks"
 
-#: include/datetime.php:382 include/event.php:455 mod/cal.php:283
-#: mod/events.php:389
+#: include/datetime.php:382 include/event.php:456 mod/cal.php:284
+#: mod/events.php:390
 msgid "day"
 msgstr "day"
 
@@ -325,245 +310,11 @@ msgstr "%1$d %2$s ago"
 msgid "%s's birthday"
 msgstr "%s's birthday"
 
-#: include/datetime.php:621 include/dfrn.php:1310
+#: include/datetime.php:621 include/dfrn.php:1332
 #, php-format
 msgid "Happy Birthday %s"
 msgstr "Happy Birthday, %s!"
 
-#: include/like.php:30 include/conversation.php:154 include/diaspora.php:1653
-#, php-format
-msgid "%1$s likes %2$s's %3$s"
-msgstr "%1$s likes %2$s's %3$s"
-
-#: include/like.php:34 include/like.php:39 include/conversation.php:157
-#, php-format
-msgid "%1$s doesn't like %2$s's %3$s"
-msgstr "%1$s doesn't like %2$s's %3$s"
-
-#: include/like.php:44
-#, php-format
-msgid "%1$s is attending %2$s's %3$s"
-msgstr "%1$s is going to %2$s's %3$s"
-
-#: include/like.php:49
-#, php-format
-msgid "%1$s is not attending %2$s's %3$s"
-msgstr "%1$s is not going to %2$s's %3$s"
-
-#: include/like.php:54
-#, php-format
-msgid "%1$s may attend %2$s's %3$s"
-msgstr "%1$s may go to %2$s's %3$s"
-
-#: include/like.php:181 include/conversation.php:142
-#: include/conversation.php:294 include/text.php:1891 mod/subthread.php:89
-#: mod/tagger.php:63
-msgid "photo"
-msgstr "photo"
-
-#: include/like.php:181 include/conversation.php:137
-#: include/conversation.php:147 include/conversation.php:289
-#: include/conversation.php:298 include/diaspora.php:1657 mod/subthread.php:89
-#: mod/tagger.php:63
-msgid "status"
-msgstr "status"
-
-#: include/like.php:183 include/conversation.php:134
-#: include/conversation.php:286 include/text.php:1889
-msgid "event"
-msgstr "event"
-
-#: include/uimport.php:85
-msgid "Error decoding account file"
-msgstr "Error decoding account file"
-
-#: include/uimport.php:91
-msgid "Error! No version data in file! This is not a Friendica account file?"
-msgstr "Error! No version data in file! Is this a Friendica account file?"
-
-#: include/uimport.php:108 include/uimport.php:119
-msgid "Error! Cannot check nickname"
-msgstr "Error! Cannot check nickname."
-
-#: include/uimport.php:112 include/uimport.php:123
-#, php-format
-msgid "User '%s' already exists on this server!"
-msgstr "User '%s' already exists on this server!"
-
-#: include/uimport.php:145
-msgid "User creation error"
-msgstr "User creation error"
-
-#: include/uimport.php:166
-msgid "User profile creation error"
-msgstr "User profile creation error"
-
-#: include/uimport.php:215
-#, php-format
-msgid "%d contact not imported"
-msgid_plural "%d contacts not imported"
-msgstr[0] "%d contact not imported"
-msgstr[1] "%d contacts not imported"
-
-#: include/uimport.php:281
-msgid "Done. You can now login with your username and password"
-msgstr "Done. You can now login with your username and password"
-
-#: include/user.php:39 mod/settings.php:377
-msgid "Passwords do not match. Password unchanged."
-msgstr "Passwords do not match. Password unchanged."
-
-#: include/user.php:48
-msgid "An invitation is required."
-msgstr "An invitation is required."
-
-#: include/user.php:53
-msgid "Invitation could not be verified."
-msgstr "Invitation could not be verified."
-
-#: include/user.php:61
-msgid "Invalid OpenID url"
-msgstr "Invalid OpenID URL"
-
-#: include/user.php:75 include/auth.php:139
-msgid ""
-"We encountered a problem while logging in with the OpenID you provided. "
-"Please check the correct spelling of the ID."
-msgstr "We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."
-
-#: include/user.php:75 include/auth.php:139
-msgid "The error message was:"
-msgstr "The error message was:"
-
-#: include/user.php:82
-msgid "Please enter the required information."
-msgstr "Please enter the required information."
-
-#: include/user.php:96
-msgid "Please use a shorter name."
-msgstr "Please use a shorter name."
-
-#: include/user.php:98
-msgid "Name too short."
-msgstr "Name too short."
-
-#: include/user.php:106
-msgid "That doesn't appear to be your full (First Last) name."
-msgstr "That doesn't appear to be your full (i.e first and last) name."
-
-#: include/user.php:111
-msgid "Your email domain is not among those allowed on this site."
-msgstr "Your email domain is not allowed on this site."
-
-#: include/user.php:114
-msgid "Not a valid email address."
-msgstr "Not a valid email address."
-
-#: include/user.php:127
-msgid "Cannot use that email."
-msgstr "Cannot use that email."
-
-#: include/user.php:133
-msgid "Your \"nickname\" can only contain \"a-z\", \"0-9\" and \"_\"."
-msgstr "Your \"nickname\" can only contain \"a-z\", \"0-9\" and \"_\"."
-
-#: include/user.php:140 include/user.php:228
-msgid "Nickname is already registered. Please choose another."
-msgstr "Nickname is already registered. Please choose another."
-
-#: include/user.php:150
-msgid ""
-"Nickname was once registered here and may not be re-used. Please choose "
-"another."
-msgstr "Nickname was once registered here and may not be re-used. Please choose another."
-
-#: include/user.php:166
-msgid "SERIOUS ERROR: Generation of security keys failed."
-msgstr "SERIOUS ERROR: Generation of security keys failed."
-
-#: include/user.php:214
-msgid "An error occurred during registration. Please try again."
-msgstr "An error occurred during registration. Please try again."
-
-#: include/user.php:237 view/theme/duepuntozero/config.php:46
-msgid "default"
-msgstr "default"
-
-#: include/user.php:247
-msgid "An error occurred creating your default profile. Please try again."
-msgstr "An error occurred creating your default profile. Please try again."
-
-#: include/user.php:260 include/user.php:264 include/profile_selectors.php:42
-msgid "Friends"
-msgstr "Friends"
-
-#: include/user.php:306 include/user.php:314 include/user.php:322
-#: include/api.php:3702 mod/photos.php:73 mod/photos.php:189
-#: mod/photos.php:776 mod/photos.php:1258 mod/photos.php:1279
-#: mod/photos.php:1865 mod/profile_photo.php:74 mod/profile_photo.php:82
-#: mod/profile_photo.php:90 mod/profile_photo.php:214
-#: mod/profile_photo.php:309 mod/profile_photo.php:319
-msgid "Profile Photos"
-msgstr "Profile photos"
-
-#: include/user.php:397
-#, php-format
-msgid ""
-"\n"
-"\t\tDear %1$s,\n"
-"\t\t\tThank you for registering at %2$s. Your account is pending for approval by the administrator.\n"
-"\t"
-msgstr "\n\t\tDear %1$s,\n\t\t\tThank you for signing up at %2$s. Your account is pending approval by the administrator.\n\t"
-
-#: include/user.php:407
-#, php-format
-msgid "Registration at %s"
-msgstr "Registration at %s"
-
-#: include/user.php:417
-#, php-format
-msgid ""
-"\n"
-"\t\tDear %1$s,\n"
-"\t\t\tThank you for registering at %2$s. Your account has been created.\n"
-"\t"
-msgstr "\n\t\tDear %1$s,\n\t\t\tThank you for signing up at %2$s. Your account has been created.\n\t"
-
-#: include/user.php:421
-#, php-format
-msgid ""
-"\n"
-"\t\tThe login details are as follows:\n"
-"\t\t\tSite Location:\t%3$s\n"
-"\t\t\tLogin Name:\t%1$s\n"
-"\t\t\tPassword:\t%5$s\n"
-"\n"
-"\t\tYou may change your password from your account \"Settings\" page after logging\n"
-"\t\tin.\n"
-"\n"
-"\t\tPlease take a few moments to review the other account settings on that page.\n"
-"\n"
-"\t\tYou may also wish to add some basic information to your default profile\n"
-"\t\t(on the \"Profiles\" page) so that other people can easily find you.\n"
-"\n"
-"\t\tWe recommend setting your full name, adding a profile photo,\n"
-"\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n"
-"\t\tperhaps what country you live in; if you do not wish to be more specific\n"
-"\t\tthan that.\n"
-"\n"
-"\t\tWe fully respect your right to privacy, and none of these items are necessary.\n"
-"\t\tIf you are new and do not know anybody here, they may help\n"
-"\t\tyou to make some new and interesting friends.\n"
-"\n"
-"\n"
-"\t\tThank you and welcome to %2$s."
-msgstr "\n\t\tThe login details are as follows:\n\t\t\tSite Location:\t%3$s\n\t\t\tLogin Name:\t%1$s\n\t\t\tPassword:\t%5$s\n\n\t\tYou may change your password for your account \"Settings\" after logging\n\t\tin.\n\n\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\tYou may wish to add some basic information to your default profile\n\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\tWe recommend setting your full name, adding a profile photo,\n\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\tperhaps what country you live in, if you do not wish to be more specific\n\t\tthan that.\n\n\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\tIf you are new and do not know anybody here, these settings may help to\n\t\tmake new and interesting friends.\n\n\n\t\tThank you and welcome to %2$s."
-
-#: include/user.php:453 mod/admin.php:1398
-#, php-format
-msgid "Registration details for %s"
-msgstr "Registration details for %s"
-
 #: include/profile_selectors.php:6
 msgid "Male"
 msgstr "Male"
@@ -616,7 +367,7 @@ msgstr "Non-specific"
 msgid "Other"
 msgstr "Other"
 
-#: include/profile_selectors.php:6 include/conversation.php:1546
+#: include/profile_selectors.php:6 include/conversation.php:1556
 msgid "Undecided"
 msgid_plural "Undecided"
 msgstr[0] "Undecided"
@@ -710,6 +461,10 @@ msgstr "Unfaithful"
 msgid "Sex Addict"
 msgstr "Sex addict"
 
+#: include/profile_selectors.php:42 include/user.php:262 include/user.php:266
+msgid "Friends"
+msgstr "Friends"
+
 #: include/profile_selectors.php:42
 msgid "Friends/Benefits"
 msgstr "Friends with benefits"
@@ -794,1882 +549,1650 @@ msgstr "Don't care"
 msgid "Ask me"
 msgstr "Ask me"
 
-#: include/NotificationsManager.php:155
-msgid "System"
-msgstr "System"
-
-#: include/NotificationsManager.php:162 include/nav.php:160 mod/admin.php:587
-#: view/theme/frio/theme.php:259
-msgid "Network"
-msgstr "Network"
-
-#: include/NotificationsManager.php:169 mod/profiles.php:699
-#: mod/network.php:868
-msgid "Personal"
-msgstr "Personal"
+#: include/dba_pdo.php:75 include/dba.php:61
+#, php-format
+msgid "Cannot locate DNS info for database server '%s'"
+msgstr "Cannot locate DNS info for database server '%s'"
 
-#: include/NotificationsManager.php:176 include/nav.php:107
-#: include/nav.php:163
-msgid "Home"
-msgstr "Home"
+#: include/photos.php:57 include/photos.php:66 mod/fbrowser.php:43
+#: mod/fbrowser.php:64 mod/photos.php:190 mod/photos.php:1126
+#: mod/photos.php:1259 mod/photos.php:1280 mod/photos.php:1842
+#: mod/photos.php:1856
+msgid "Contact Photos"
+msgstr "Contact photos"
 
-#: include/NotificationsManager.php:183 include/nav.php:168
-msgid "Introductions"
-msgstr "Introductions"
+#: include/acl_selectors.php:355
+msgid "Post to Email"
+msgstr "Post to email"
 
-#: include/NotificationsManager.php:241 include/NotificationsManager.php:253
+#: include/acl_selectors.php:360
 #, php-format
-msgid "%s commented on %s's post"
-msgstr "%s commented on %s's post"
+msgid "Connectors disabled, since \"%s\" is enabled."
+msgstr "Connectors are disabled since \"%s\" is enabled."
 
-#: include/NotificationsManager.php:252
-#, php-format
-msgid "%s created a new post"
-msgstr "%s posted something new"
+#: include/acl_selectors.php:361 mod/settings.php:1190
+msgid "Hide your profile details from unknown viewers?"
+msgstr "Hide profile details from unknown viewers?"
 
-#: include/NotificationsManager.php:267
-#, php-format
-msgid "%s liked %s's post"
-msgstr "%s liked %s's post"
+#: include/acl_selectors.php:367
+msgid "Visible to everybody"
+msgstr "Visible to everybody"
 
-#: include/NotificationsManager.php:280
-#, php-format
-msgid "%s disliked %s's post"
-msgstr "%s disliked %s's post"
+#: include/acl_selectors.php:368 view/theme/vier/config.php:110
+msgid "show"
+msgstr "show"
 
-#: include/NotificationsManager.php:293
-#, php-format
-msgid "%s is attending %s's event"
-msgstr "%s is going to %s's event"
+#: include/acl_selectors.php:369 view/theme/vier/config.php:110
+msgid "don't show"
+msgstr "don't show"
 
-#: include/NotificationsManager.php:306
-#, php-format
-msgid "%s is not attending %s's event"
-msgstr "%s is not going to %s's event"
+#: include/acl_selectors.php:375 mod/editpost.php:126
+msgid "CC: email addresses"
+msgstr "CC: email addresses"
 
-#: include/NotificationsManager.php:319
-#, php-format
-msgid "%s may attend %s's event"
-msgstr "%s may go to %s's event"
+#: include/acl_selectors.php:376 mod/editpost.php:133
+msgid "Example: bob@example.com, mary@example.com"
+msgstr "Example: bob@example.com, mary@example.com"
 
-#: include/NotificationsManager.php:336
-#, php-format
-msgid "%s is now friends with %s"
-msgstr "%s is now friends with %s"
+#: include/acl_selectors.php:378 mod/events.php:512 mod/photos.php:1199
+#: mod/photos.php:1596
+msgid "Permissions"
+msgstr "Permissions"
 
-#: include/NotificationsManager.php:774
-msgid "Friend Suggestion"
-msgstr "Friend suggestion"
+#: include/acl_selectors.php:379
+msgid "Close"
+msgstr "Close"
 
-#: include/NotificationsManager.php:803
-msgid "Friend/Connect Request"
-msgstr "Friend/Contact request"
+#: include/contact_selectors.php:32
+msgid "Unknown | Not categorised"
+msgstr "Unknown | Not categorized"
 
-#: include/NotificationsManager.php:803
-msgid "New Follower"
-msgstr "New follower"
+#: include/contact_selectors.php:33
+msgid "Block immediately"
+msgstr "Block immediately"
 
-#: include/Photo.php:1075 include/Photo.php:1091 include/Photo.php:1099
-#: include/Photo.php:1124 include/message.php:145 mod/wall_upload.php:249
-#: mod/item.php:468
-msgid "Wall Photos"
-msgstr "Wall photos"
+#: include/contact_selectors.php:34
+msgid "Shady, spammer, self-marketer"
+msgstr "Shady, spammer, self-marketer"
 
-#: include/api.php:1102
-#, php-format
-msgid "Daily posting limit of %d posts reached. The post was rejected."
-msgstr "Daily posting limit of %d posts reached. This post was rejected."
+#: include/contact_selectors.php:35
+msgid "Known to me, but no opinion"
+msgstr "Known to me, but no opinion"
 
-#: include/api.php:1123
-#, php-format
-msgid "Weekly posting limit of %d posts reached. The post was rejected."
-msgstr "Weekly posting limit of %d posts reached. This post was rejected."
+#: include/contact_selectors.php:36
+msgid "OK, probably harmless"
+msgstr "OK, probably harmless"
 
-#: include/api.php:1144
-#, php-format
-msgid "Monthly posting limit of %d posts reached. The post was rejected."
-msgstr "Monthly posting limit of %d posts reached. This post was rejected."
+#: include/contact_selectors.php:37
+msgid "Reputable, has my trust"
+msgstr "Reputable, has my trust"
 
-#: include/auth.php:52
-msgid "Logged out."
-msgstr "Logged out."
+#: include/contact_selectors.php:56 mod/admin.php:1072
+msgid "Frequently"
+msgstr "Frequently"
 
-#: include/auth.php:123 include/auth.php:185 mod/openid.php:110
-msgid "Login failed."
-msgstr "Login failed."
+#: include/contact_selectors.php:57 mod/admin.php:1073
+msgid "Hourly"
+msgstr "Hourly"
 
-#: include/bbcode.php:419 include/bbcode.php:1178 include/bbcode.php:1179
-msgid "Image/photo"
-msgstr "Image/Photo"
+#: include/contact_selectors.php:58 mod/admin.php:1074
+msgid "Twice daily"
+msgstr "Twice daily"
 
-#: include/bbcode.php:536
-#, php-format
-msgid "<a href=\"%1$s\" target=\"_blank\">%2$s</a> %3$s"
-msgstr "<a href=\"%1$s\" target=\"_blank\">%2$s</a> %3$s"
+#: include/contact_selectors.php:59 mod/admin.php:1075
+msgid "Daily"
+msgstr "Daily"
 
-#: include/bbcode.php:1135 include/bbcode.php:1157
-msgid "$1 wrote:"
-msgstr "$1 wrote:"
+#: include/contact_selectors.php:60
+msgid "Weekly"
+msgstr "Weekly"
 
-#: include/bbcode.php:1187 include/bbcode.php:1188
-msgid "Encrypted content"
-msgstr "Encrypted content"
+#: include/contact_selectors.php:61
+msgid "Monthly"
+msgstr "Monthly"
 
-#: include/bbcode.php:1303
-msgid "Invalid source protocol"
-msgstr "Invalid source protocol"
+#: include/contact_selectors.php:76 mod/dfrn_request.php:887
+msgid "Friendica"
+msgstr "Friendica"
 
-#: include/bbcode.php:1313
-msgid "Invalid link protocol"
-msgstr "Invalid link protocol"
+#: include/contact_selectors.php:77
+msgid "OStatus"
+msgstr "OStatus"
 
-#: include/dba_pdo.php:75 include/dba.php:59
-#, php-format
-msgid "Cannot locate DNS info for database server '%s'"
-msgstr "Cannot locate DNS info for database server '%s'"
+#: include/contact_selectors.php:78
+msgid "RSS/Atom"
+msgstr "RSS/Atom"
 
-#: include/delivery.php:428
-msgid "(no subject)"
-msgstr "(no subject)"
+#: include/contact_selectors.php:79 include/contact_selectors.php:86
+#: mod/admin.php:1582 mod/admin.php:1595 mod/admin.php:1608 mod/admin.php:1626
+msgid "Email"
+msgstr "Email"
 
-#: include/delivery.php:440 include/enotify.php:46
-msgid "noreply"
-msgstr "noreply"
+#: include/contact_selectors.php:80 mod/dfrn_request.php:889
+#: mod/settings.php:850
+msgid "Diaspora"
+msgstr "Diaspora"
 
-#: include/event.php:19 include/bb2diaspora.php:233 mod/localtime.php:13
-msgid "l F d, Y \\@ g:i A"
-msgstr "l F d, Y \\@ g:i A"
+#: include/contact_selectors.php:81
+msgid "Facebook"
+msgstr "Facebook"
 
-#: include/event.php:36 include/event.php:56 include/event.php:459
-#: include/bb2diaspora.php:239
-msgid "Starts:"
-msgstr "Starts:"
+#: include/contact_selectors.php:82
+msgid "Zot!"
+msgstr "Zot!"
 
-#: include/event.php:39 include/event.php:62 include/event.php:460
-#: include/bb2diaspora.php:247
-msgid "Finishes:"
-msgstr "Finishes:"
+#: include/contact_selectors.php:83
+msgid "LinkedIn"
+msgstr "LinkedIn"
 
-#: include/event.php:43 include/event.php:69 include/event.php:461
-#: include/bb2diaspora.php:256 include/identity.php:340 mod/directory.php:135
-#: mod/notifications.php:246 mod/events.php:496 mod/contacts.php:641
-msgid "Location:"
-msgstr "Location:"
+#: include/contact_selectors.php:84
+msgid "XMPP/IM"
+msgstr "XMPP/IM"
 
-#: include/event.php:408
-msgid "all-day"
-msgstr "All-day"
+#: include/contact_selectors.php:85
+msgid "MySpace"
+msgstr "MySpace"
 
-#: include/event.php:410
-msgid "Sun"
-msgstr "Sun"
+#: include/contact_selectors.php:87
+msgid "Google+"
+msgstr "Google+"
 
-#: include/event.php:411
-msgid "Mon"
-msgstr "Mon"
+#: include/contact_selectors.php:88
+msgid "pump.io"
+msgstr "Pump.io"
 
-#: include/event.php:412
-msgid "Tue"
-msgstr "Tue"
+#: include/contact_selectors.php:89
+msgid "Twitter"
+msgstr "Twitter"
 
-#: include/event.php:413
-msgid "Wed"
-msgstr "Wed"
+#: include/contact_selectors.php:90
+msgid "Diaspora Connector"
+msgstr "Diaspora connector"
 
-#: include/event.php:414
-msgid "Thu"
-msgstr "Thu"
+#: include/contact_selectors.php:91
+msgid "GNU Social Connector"
+msgstr "GNU Social connector"
 
-#: include/event.php:415
-msgid "Fri"
-msgstr "Fri"
+#: include/contact_selectors.php:92
+msgid "pnut"
+msgstr "Pnut"
 
-#: include/event.php:416
-msgid "Sat"
-msgstr "Sat"
+#: include/contact_selectors.php:93
+msgid "App.net"
+msgstr "App.net"
 
-#: include/event.php:418 include/text.php:1212 mod/settings.php:982
-msgid "Sunday"
-msgstr "Sunday"
+#: include/group.php:25
+msgid ""
+"A deleted group with this name was revived. Existing item permissions "
+"<strong>may</strong> apply to this group and any future members. If this is "
+"not what you intended, please create another group with a different name."
+msgstr "A deleted group with this name has been revived. Existing item permissions <strong>may</strong> apply to this group and any future members. If this is not what you intended, please create another group with a different name."
 
-#: include/event.php:419 include/text.php:1212 mod/settings.php:982
-msgid "Monday"
-msgstr "Monday"
+#: include/group.php:201
+msgid "Default privacy group for new contacts"
+msgstr "Default privacy group for new contacts"
 
-#: include/event.php:420 include/text.php:1212
-msgid "Tuesday"
-msgstr "Tuesday"
+#: include/group.php:234
+msgid "Everybody"
+msgstr "Everybody"
 
-#: include/event.php:421 include/text.php:1212
-msgid "Wednesday"
-msgstr "Wednesday"
+#: include/group.php:257
+msgid "edit"
+msgstr "edit"
 
-#: include/event.php:422 include/text.php:1212
-msgid "Thursday"
-msgstr "Thursday"
+#: include/group.php:278 mod/newmember.php:39
+msgid "Groups"
+msgstr "Groups"
 
-#: include/event.php:423 include/text.php:1212
-msgid "Friday"
-msgstr "Friday"
+#: include/group.php:280
+msgid "Edit groups"
+msgstr "Edit groups"
 
-#: include/event.php:424 include/text.php:1212
-msgid "Saturday"
-msgstr "Saturday"
+#: include/group.php:282
+msgid "Edit group"
+msgstr "Edit group"
 
-#: include/event.php:426
-msgid "Jan"
-msgstr "Jan"
+#: include/group.php:283
+msgid "Create a new group"
+msgstr "Create new group"
 
-#: include/event.php:427
-msgid "Feb"
-msgstr "Feb"
+#: include/group.php:284 mod/group.php:101 mod/group.php:198
+msgid "Group Name: "
+msgstr "Group name: "
 
-#: include/event.php:428
-msgid "Mar"
-msgstr "Mar"
+#: include/group.php:286
+msgid "Contacts not in any group"
+msgstr "Contacts not in any group"
 
-#: include/event.php:429
-msgid "Apr"
-msgstr "Apr"
+#: include/group.php:288 mod/network.php:195
+msgid "add"
+msgstr "add"
 
-#: include/event.php:430 include/event.php:443 include/text.php:1216
-msgid "May"
-msgstr "May"
+#: include/Contact.php:381 include/Contact.php:394 include/Contact.php:439
+#: include/conversation.php:1013 include/conversation.php:1029
+#: mod/allfriends.php:71 mod/directory.php:153 mod/dirfind.php:212
+#: mod/match.php:77 mod/suggest.php:85
+msgid "View Profile"
+msgstr "View profile"
 
-#: include/event.php:431
-msgid "Jun"
-msgstr "Jun"
+#: include/Contact.php:395 include/contact_widgets.php:39
+#: include/conversation.php:1026 mod/allfriends.php:72 mod/contacts.php:580
+#: mod/dirfind.php:213 mod/follow.php:143 mod/match.php:78 mod/suggest.php:86
+msgid "Connect/Follow"
+msgstr "Connect/Follow"
 
-#: include/event.php:432
-msgid "Jul"
-msgstr "Jul"
+#: include/Contact.php:438 include/conversation.php:1012
+msgid "View Status"
+msgstr "View status"
 
-#: include/event.php:433
-msgid "Aug"
-msgstr "Aug"
+#: include/Contact.php:440 include/conversation.php:1014
+msgid "View Photos"
+msgstr "View photos"
 
-#: include/event.php:434
-msgid "Sept"
-msgstr "Sep"
+#: include/Contact.php:441 include/conversation.php:1015
+msgid "Network Posts"
+msgstr "Network posts"
 
-#: include/event.php:435
-msgid "Oct"
-msgstr "Oct"
+#: include/Contact.php:442 include/conversation.php:1016
+msgid "View Contact"
+msgstr "View contact"
 
-#: include/event.php:436
-msgid "Nov"
-msgstr "Nov"
+#: include/Contact.php:443
+msgid "Drop Contact"
+msgstr "Drop contact"
 
-#: include/event.php:437
-msgid "Dec"
-msgstr "Dec"
+#: include/Contact.php:444 include/conversation.php:1017
+msgid "Send PM"
+msgstr "Send PM"
 
-#: include/event.php:439 include/text.php:1216
-msgid "January"
-msgstr "January"
-
-#: include/event.php:440 include/text.php:1216
-msgid "February"
-msgstr "February"
+#: include/Contact.php:445 include/conversation.php:1021
+msgid "Poke"
+msgstr "Poke"
 
-#: include/event.php:441 include/text.php:1216
-msgid "March"
-msgstr "March"
+#: include/Contact.php:814
+msgid "Organisation"
+msgstr "Organization"
 
-#: include/event.php:442 include/text.php:1216
-msgid "April"
-msgstr "April"
+#: include/Contact.php:817
+msgid "News"
+msgstr "News"
 
-#: include/event.php:444 include/text.php:1216
-msgid "June"
-msgstr "June"
+#: include/Contact.php:820
+msgid "Forum"
+msgstr "Forum"
 
-#: include/event.php:445 include/text.php:1216
-msgid "July"
-msgstr "July"
+#: include/ForumManager.php:119 include/nav.php:134 include/text.php:1104
+#: view/theme/vier/theme.php:249
+msgid "Forums"
+msgstr "Forums"
 
-#: include/event.php:446 include/text.php:1216
-msgid "August"
-msgstr "August"
+#: include/ForumManager.php:121 view/theme/vier/theme.php:251
+msgid "External link to forum"
+msgstr "External link to forum"
 
-#: include/event.php:447 include/text.php:1216
-msgid "September"
-msgstr "September"
+#: include/ForumManager.php:124 include/contact_widgets.php:272
+#: include/items.php:2398 mod/content.php:626 object/Item.php:412
+#: view/theme/vier/theme.php:254 src/App.php:524
+msgid "show more"
+msgstr "Show more..."
 
-#: include/event.php:448 include/text.php:1216
-msgid "October"
-msgstr "October"
+#: include/NotificationsManager.php:157
+msgid "System"
+msgstr "System"
 
-#: include/event.php:449 include/text.php:1216
-msgid "November"
-msgstr "November"
+#: include/NotificationsManager.php:164 include/nav.php:161 mod/admin.php:589
+#: view/theme/frio/theme.php:260
+msgid "Network"
+msgstr "Network"
 
-#: include/event.php:450 include/text.php:1216
-msgid "December"
-msgstr "December"
+#: include/NotificationsManager.php:171 mod/network.php:911
+#: mod/profiles.php:700
+msgid "Personal"
+msgstr "Personal"
 
-#: include/event.php:452 mod/cal.php:280 mod/events.php:386
-msgid "today"
-msgstr "today"
+#: include/NotificationsManager.php:178 include/nav.php:108
+#: include/nav.php:164
+msgid "Home"
+msgstr "Home"
 
-#: include/event.php:457
-msgid "No events to display"
-msgstr "No events to display"
+#: include/NotificationsManager.php:185 include/nav.php:169
+msgid "Introductions"
+msgstr "Introductions"
 
-#: include/event.php:570
-msgid "l, F j"
-msgstr "l, F j"
+#: include/NotificationsManager.php:243 include/NotificationsManager.php:255
+#, php-format
+msgid "%s commented on %s's post"
+msgstr "%s commented on %s's post"
 
-#: include/event.php:592
-msgid "Edit event"
-msgstr "Edit event"
+#: include/NotificationsManager.php:254
+#, php-format
+msgid "%s created a new post"
+msgstr "%s posted something new"
 
-#: include/event.php:593
-msgid "Delete event"
-msgstr "Delete event"
+#: include/NotificationsManager.php:269
+#, php-format
+msgid "%s liked %s's post"
+msgstr "%s liked %s's post"
 
-#: include/event.php:619 include/text.php:1613 include/text.php:1620
-msgid "link to source"
-msgstr "Link to source"
+#: include/NotificationsManager.php:282
+#, php-format
+msgid "%s disliked %s's post"
+msgstr "%s disliked %s's post"
 
-#: include/event.php:877
-msgid "Export"
-msgstr "Export"
+#: include/NotificationsManager.php:295
+#, php-format
+msgid "%s is attending %s's event"
+msgstr "%s is going to %s's event"
 
-#: include/event.php:878
-msgid "Export calendar as ical"
-msgstr "Export calendar as ical"
+#: include/NotificationsManager.php:308
+#, php-format
+msgid "%s is not attending %s's event"
+msgstr "%s is not going to %s's event"
 
-#: include/event.php:879
-msgid "Export calendar as csv"
-msgstr "Export calendar as csv"
+#: include/NotificationsManager.php:321
+#, php-format
+msgid "%s may attend %s's event"
+msgstr "%s may go to %s's event"
 
-#: include/follow.php:84 mod/dfrn_request.php:514
-msgid "Disallowed profile URL."
-msgstr "Disallowed profile URL."
+#: include/NotificationsManager.php:338
+#, php-format
+msgid "%s is now friends with %s"
+msgstr "%s is now friends with %s"
 
-#: include/follow.php:89 mod/friendica.php:115 mod/dfrn_request.php:520
-#: mod/admin.php:288 mod/admin.php:306
-msgid "Blocked domain"
-msgstr "Blocked domain"
+#: include/NotificationsManager.php:776
+msgid "Friend Suggestion"
+msgstr "Friend suggestion"
 
-#: include/follow.php:94
-msgid "Connect URL missing."
-msgstr "Connect URL missing."
+#: include/NotificationsManager.php:805
+msgid "Friend/Connect Request"
+msgstr "Friend/Contact request"
 
-#: include/follow.php:122
-msgid ""
-"This site is not configured to allow communications with other networks."
-msgstr "This site is not configured to allow communications with other networks."
+#: include/NotificationsManager.php:805
+msgid "New Follower"
+msgstr "New follower"
 
-#: include/follow.php:123 include/follow.php:137
-msgid "No compatible communication protocols or feeds were discovered."
-msgstr "No compatible communication protocols or feeds were discovered."
+#: include/Photo.php:1076 include/Photo.php:1092 include/Photo.php:1100
+#: include/Photo.php:1125 include/message.php:146 mod/item.php:469
+#: mod/wall_upload.php:250
+msgid "Wall Photos"
+msgstr "Wall photos"
 
-#: include/follow.php:135
-msgid "The profile address specified does not provide adequate information."
-msgstr "The profile address specified does not provide adequate information."
+#: include/api.php:1103
+#, php-format
+msgid "Daily posting limit of %d posts reached. The post was rejected."
+msgstr "Daily posting limit of %d posts reached. This post was rejected."
 
-#: include/follow.php:140
-msgid "An author or name was not found."
-msgstr "An author or name was not found."
+#: include/api.php:1124
+#, php-format
+msgid "Weekly posting limit of %d posts reached. The post was rejected."
+msgstr "Weekly posting limit of %d posts reached. This post was rejected."
 
-#: include/follow.php:143
-msgid "No browser URL could be matched to this address."
-msgstr "No browser URL could be matched to this address."
+#: include/api.php:1145
+#, php-format
+msgid "Monthly posting limit of %d posts reached. The post was rejected."
+msgstr "Monthly posting limit of %d posts reached. This post was rejected."
 
-#: include/follow.php:146
-msgid ""
-"Unable to match @-style Identity Address with a known protocol or email "
-"contact."
-msgstr "Unable to match @-style identity address with a known protocol or email contact."
+#: include/api.php:3717 include/user.php:308 include/user.php:316
+#: include/user.php:324 mod/photos.php:74 mod/photos.php:190
+#: mod/photos.php:777 mod/photos.php:1259 mod/photos.php:1280
+#: mod/photos.php:1866 mod/profile_photo.php:75 mod/profile_photo.php:83
+#: mod/profile_photo.php:91 mod/profile_photo.php:215
+#: mod/profile_photo.php:310 mod/profile_photo.php:320
+msgid "Profile Photos"
+msgstr "Profile photos"
 
-#: include/follow.php:147
-msgid "Use mailto: in front of address to force email check."
-msgstr "Use mailto: in front of address to force email check."
+#: include/auth.php:53
+msgid "Logged out."
+msgstr "Logged out."
 
-#: include/follow.php:153
-msgid ""
-"The profile address specified belongs to a network which has been disabled "
-"on this site."
-msgstr "The profile address specified belongs to a network which has been disabled on this site."
+#: include/auth.php:124 include/auth.php:186 mod/openid.php:111
+msgid "Login failed."
+msgstr "Login failed."
 
-#: include/follow.php:158
+#: include/auth.php:140 include/user.php:77
 msgid ""
-"Limited profile. This person will be unable to receive direct/personal "
-"notifications from you."
-msgstr "Limited profile: This person will be unable to receive direct/private messages from you."
+"We encountered a problem while logging in with the OpenID you provided. "
+"Please check the correct spelling of the ID."
+msgstr "We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."
 
-#: include/follow.php:259
-msgid "Unable to retrieve contact information."
-msgstr "Unable to retrieve contact information."
+#: include/auth.php:140 include/user.php:77
+msgid "The error message was:"
+msgstr "The error message was:"
 
-#: include/message.php:14 include/message.php:168
-msgid "[no subject]"
-msgstr "[no subject]"
+#: include/bb2diaspora.php:234 include/event.php:20 mod/localtime.php:14
+msgid "l F d, Y \\@ g:i A"
+msgstr "l F d, Y \\@ g:i A"
 
-#: include/nav.php:37 mod/navigation.php:21
-msgid "Nothing new here"
-msgstr "Nothing new here"
+#: include/bb2diaspora.php:240 include/event.php:37 include/event.php:57
+#: include/event.php:460
+msgid "Starts:"
+msgstr "Starts:"
 
-#: include/nav.php:41 mod/navigation.php:25
-msgid "Clear notifications"
-msgstr "Clear notifications"
+#: include/bb2diaspora.php:248 include/event.php:40 include/event.php:63
+#: include/event.php:461
+msgid "Finishes:"
+msgstr "Finishes:"
 
-#: include/nav.php:42 include/text.php:1099
-msgid "@name, !forum, #tags, content"
-msgstr "@name, !forum, #tags, content"
+#: include/bb2diaspora.php:257 include/event.php:44 include/event.php:70
+#: include/event.php:462 include/identity.php:339 mod/contacts.php:648
+#: mod/directory.php:135 mod/events.php:497 mod/notifications.php:247
+msgid "Location:"
+msgstr "Location:"
 
-#: include/nav.php:80 view/theme/frio/theme.php:249 boot.php:871
-msgid "Logout"
-msgstr "Logout"
+#: include/bbcode.php:429 include/bbcode.php:1192 include/bbcode.php:1193
+msgid "Image/photo"
+msgstr "Image/Photo"
 
-#: include/nav.php:80 view/theme/frio/theme.php:249
-msgid "End this session"
-msgstr "End this session"
+#: include/bbcode.php:545
+#, php-format
+msgid "<a href=\"%1$s\" target=\"_blank\">%2$s</a> %3$s"
+msgstr "<a href=\"%1$s\" target=\"_blank\">%2$s</a> %3$s"
 
-#: include/nav.php:83 include/identity.php:784 mod/contacts.php:650
-#: mod/contacts.php:846 view/theme/frio/theme.php:252
-msgid "Status"
-msgstr "Status"
+#: include/bbcode.php:1149 include/bbcode.php:1171
+msgid "$1 wrote:"
+msgstr "$1 wrote:"
 
-#: include/nav.php:83 include/nav.php:163 view/theme/frio/theme.php:252
-msgid "Your posts and conversations"
-msgstr "My posts and conversations"
+#: include/bbcode.php:1201 include/bbcode.php:1202
+msgid "Encrypted content"
+msgstr "Encrypted content"
 
-#: include/nav.php:84 include/identity.php:630 include/identity.php:759
-#: include/identity.php:792 mod/newmember.php:20 mod/profperm.php:107
-#: mod/contacts.php:652 mod/contacts.php:854 view/theme/frio/theme.php:253
-msgid "Profile"
-msgstr "Profile"
+#: include/bbcode.php:1321
+msgid "Invalid source protocol"
+msgstr "Invalid source protocol"
 
-#: include/nav.php:84 view/theme/frio/theme.php:253
-msgid "Your profile page"
-msgstr "My profile page"
+#: include/bbcode.php:1332
+msgid "Invalid link protocol"
+msgstr "Invalid link protocol"
 
-#: include/nav.php:85 include/identity.php:800 mod/fbrowser.php:33
-#: view/theme/frio/theme.php:254
-msgid "Photos"
-msgstr "Photos"
+#: include/contact_widgets.php:12
+msgid "Add New Contact"
+msgstr "Add new contact"
 
-#: include/nav.php:85 view/theme/frio/theme.php:254
-msgid "Your photos"
-msgstr "My photos"
+#: include/contact_widgets.php:13
+msgid "Enter address or web location"
+msgstr "Enter address or web location"
 
-#: include/nav.php:86 include/identity.php:808 include/identity.php:811
-#: view/theme/frio/theme.php:255
-msgid "Videos"
-msgstr "Videos"
+#: include/contact_widgets.php:14
+msgid "Example: bob@example.com, http://example.com/barbara"
+msgstr "Example: jo@example.com, http://example.com/jo"
 
-#: include/nav.php:86 view/theme/frio/theme.php:255
-msgid "Your videos"
-msgstr "My videos"
+#: include/contact_widgets.php:16 include/identity.php:229
+#: mod/allfriends.php:88 mod/dirfind.php:210 mod/match.php:93
+#: mod/suggest.php:104
+msgid "Connect"
+msgstr "Connect"
 
-#: include/nav.php:87 include/nav.php:151 include/identity.php:820
-#: include/identity.php:831 mod/cal.php:272 mod/events.php:377
-#: view/theme/frio/theme.php:256 view/theme/frio/theme.php:260
-msgid "Events"
-msgstr "Events"
+#: include/contact_widgets.php:31
+#, php-format
+msgid "%d invitation available"
+msgid_plural "%d invitations available"
+msgstr[0] "%d invitation available"
+msgstr[1] "%d invitations available"
 
-#: include/nav.php:87 view/theme/frio/theme.php:256
-msgid "Your events"
-msgstr "My events"
+#: include/contact_widgets.php:37
+msgid "Find People"
+msgstr "Find people"
 
-#: include/nav.php:88
-msgid "Personal notes"
-msgstr "Personal notes"
+#: include/contact_widgets.php:38
+msgid "Enter name or interest"
+msgstr "Enter name or interest"
 
-#: include/nav.php:88
-msgid "Your personal notes"
-msgstr "My personal notes"
+#: include/contact_widgets.php:40
+msgid "Examples: Robert Morgenstein, Fishing"
+msgstr "Examples: Robert Morgenstein, fishing"
 
-#: include/nav.php:97 mod/bookmarklet.php:14 boot.php:872
-msgid "Login"
-msgstr "Login"
+#: include/contact_widgets.php:41 mod/contacts.php:818 mod/directory.php:202
+msgid "Find"
+msgstr "Find"
 
-#: include/nav.php:97
-msgid "Sign in"
-msgstr "Sign in"
+#: include/contact_widgets.php:42 mod/suggest.php:117
+#: view/theme/vier/theme.php:196
+msgid "Friend Suggestions"
+msgstr "Friend suggestions"
 
-#: include/nav.php:107
-msgid "Home Page"
-msgstr "Home page"
+#: include/contact_widgets.php:43 view/theme/vier/theme.php:195
+msgid "Similar Interests"
+msgstr "Similar interests"
 
-#: include/nav.php:111 mod/register.php:292 boot.php:848
-msgid "Register"
-msgstr "Sign up now >>"
+#: include/contact_widgets.php:44
+msgid "Random Profile"
+msgstr "Random profile"
 
-#: include/nav.php:111
-msgid "Create an account"
-msgstr "Create account"
+#: include/contact_widgets.php:45 view/theme/vier/theme.php:197
+msgid "Invite Friends"
+msgstr "Invite friends"
 
-#: include/nav.php:117 mod/help.php:50 view/theme/vier/theme.php:291
-msgid "Help"
-msgstr "Help"
-
-#: include/nav.php:117
-msgid "Help and documentation"
-msgstr "Help and documentation"
+#: include/contact_widgets.php:46
+msgid "View Global Directory"
+msgstr "View global directory"
 
-#: include/nav.php:121
-msgid "Apps"
-msgstr "Apps"
+#: include/contact_widgets.php:132
+msgid "Networks"
+msgstr "Networks"
 
-#: include/nav.php:121
-msgid "Addon applications, utilities, games"
-msgstr "Addon applications, utilities, games"
+#: include/contact_widgets.php:135
+msgid "All Networks"
+msgstr "All networks"
 
-#: include/nav.php:125 include/text.php:1096 mod/search.php:152
-msgid "Search"
-msgstr "Search"
+#: include/contact_widgets.php:170 include/contact_widgets.php:205
+msgid "Everything"
+msgstr "Everything"
 
-#: include/nav.php:125
-msgid "Search site content"
-msgstr "Search site content"
+#: include/contact_widgets.php:202
+msgid "Categories"
+msgstr "Categories"
 
-#: include/nav.php:128 include/text.php:1104
-msgid "Full Text"
-msgstr "Full text"
+#: include/contact_widgets.php:267
+#, php-format
+msgid "%d contact in common"
+msgid_plural "%d contacts in common"
+msgstr[0] "%d contact in common"
+msgstr[1] "%d contacts in common"
 
-#: include/nav.php:129 include/text.php:1105
-msgid "Tags"
-msgstr "Tags"
+#: include/conversation.php:135 include/conversation.php:287
+#: include/like.php:184 include/text.php:1885
+msgid "event"
+msgstr "event"
 
-#: include/nav.php:130 include/nav.php:194 include/identity.php:853
-#: include/identity.php:856 include/text.php:1106 mod/viewcontacts.php:124
-#: mod/contacts.php:805 mod/contacts.php:866 view/theme/frio/theme.php:263
-msgid "Contacts"
-msgstr "Contacts"
+#: include/conversation.php:138 include/conversation.php:148
+#: include/conversation.php:290 include/conversation.php:299
+#: include/diaspora.php:1663 include/like.php:182 mod/subthread.php:90
+#: mod/tagger.php:64
+msgid "status"
+msgstr "status"
 
-#: include/nav.php:145 include/nav.php:147 mod/community.php:32
-msgid "Community"
-msgstr "Community"
+#: include/conversation.php:143 include/conversation.php:295
+#: include/like.php:182 include/text.php:1887 mod/subthread.php:90
+#: mod/tagger.php:64
+msgid "photo"
+msgstr "photo"
 
-#: include/nav.php:145
-msgid "Conversations on this site"
-msgstr "Public conversations on this site"
+#: include/conversation.php:155 include/diaspora.php:1659 include/like.php:31
+#, php-format
+msgid "%1$s likes %2$s's %3$s"
+msgstr "%1$s likes %2$s's %3$s"
 
-#: include/nav.php:147
-msgid "Conversations on the network"
-msgstr "Conversations on the network"
+#: include/conversation.php:158 include/like.php:35 include/like.php:40
+#, php-format
+msgid "%1$s doesn't like %2$s's %3$s"
+msgstr "%1$s doesn't like %2$s's %3$s"
 
-#: include/nav.php:151 include/identity.php:823 include/identity.php:834
-#: view/theme/frio/theme.php:260
-msgid "Events and Calendar"
-msgstr "Events and calendar"
+#: include/conversation.php:161
+#, php-format
+msgid "%1$s attends %2$s's %3$s"
+msgstr "%1$s goes to %2$s's %3$s"
 
-#: include/nav.php:154
-msgid "Directory"
-msgstr "Directory"
+#: include/conversation.php:164
+#, php-format
+msgid "%1$s doesn't attend %2$s's %3$s"
+msgstr "%1$s doesn't go %2$s's %3$s"
 
-#: include/nav.php:154
-msgid "People directory"
-msgstr "People directory"
+#: include/conversation.php:167
+#, php-format
+msgid "%1$s attends maybe %2$s's %3$s"
+msgstr "%1$s might go to %2$s's %3$s"
 
-#: include/nav.php:156
-msgid "Information"
-msgstr "Information"
+#: include/conversation.php:200 mod/dfrn_confirm.php:480
+#, php-format
+msgid "%1$s is now friends with %2$s"
+msgstr "%1$s is now friends with %2$s"
 
-#: include/nav.php:156
-msgid "Information about this friendica instance"
-msgstr "Information about this Friendica instance"
+#: include/conversation.php:241
+#, php-format
+msgid "%1$s poked %2$s"
+msgstr "%1$s poked %2$s"
 
-#: include/nav.php:160 view/theme/frio/theme.php:259
-msgid "Conversations from your friends"
-msgstr "My friends' conversations"
+#: include/conversation.php:262 mod/mood.php:65
+#, php-format
+msgid "%1$s is currently %2$s"
+msgstr "%1$s is currently %2$s"
 
-#: include/nav.php:161
-msgid "Network Reset"
-msgstr "Network reset"
+#: include/conversation.php:309 mod/tagger.php:97
+#, php-format
+msgid "%1$s tagged %2$s's %3$s with %4$s"
+msgstr "%1$s tagged %2$s's %3$s with %4$s"
 
-#: include/nav.php:161
-msgid "Load Network page with no filters"
-msgstr "Load network page without filters"
+#: include/conversation.php:336
+msgid "post/item"
+msgstr "Post/Item"
 
-#: include/nav.php:168
-msgid "Friend Requests"
-msgstr "Friend requests"
+#: include/conversation.php:337
+#, php-format
+msgid "%1$s marked %2$s's %3$s as favorite"
+msgstr "%1$s marked %2$s's %3$s as favorite"
 
-#: include/nav.php:171 mod/notifications.php:98
-msgid "Notifications"
-msgstr "Notifications"
+#: include/conversation.php:615 mod/content.php:374 mod/photos.php:1665
+#: mod/profiles.php:345
+msgid "Likes"
+msgstr "Likes"
 
-#: include/nav.php:172
-msgid "See all notifications"
-msgstr "See all notifications"
+#: include/conversation.php:615 mod/content.php:374 mod/photos.php:1665
+#: mod/profiles.php:349
+msgid "Dislikes"
+msgstr "Dislikes"
 
-#: include/nav.php:173 mod/settings.php:907
-msgid "Mark as seen"
-msgstr "Mark as seen"
+#: include/conversation.php:616 include/conversation.php:1550
+#: mod/content.php:375 mod/photos.php:1666
+msgid "Attending"
+msgid_plural "Attending"
+msgstr[0] "Attending"
+msgstr[1] "Attending"
 
-#: include/nav.php:173
-msgid "Mark all system notifications seen"
-msgstr "Mark all system notifications seen"
+#: include/conversation.php:616 mod/content.php:375 mod/photos.php:1666
+msgid "Not attending"
+msgstr "Not attending"
 
-#: include/nav.php:177 mod/message.php:181 view/theme/frio/theme.php:261
-msgid "Messages"
-msgstr "Messages"
+#: include/conversation.php:616 mod/content.php:375 mod/photos.php:1666
+msgid "Might attend"
+msgstr "Might attend"
 
-#: include/nav.php:177 view/theme/frio/theme.php:261
-msgid "Private mail"
-msgstr "Private messages"
+#: include/conversation.php:753 mod/content.php:455 mod/content.php:761
+#: mod/photos.php:1731 object/Item.php:142
+msgid "Select"
+msgstr "Select"
 
-#: include/nav.php:178
-msgid "Inbox"
-msgstr "Inbox"
+#: include/conversation.php:754 mod/admin.php:1600 mod/contacts.php:828
+#: mod/contacts.php:1027 mod/content.php:456 mod/content.php:762
+#: mod/photos.php:1732 mod/settings.php:746 object/Item.php:143
+msgid "Delete"
+msgstr "Delete"
 
-#: include/nav.php:179
-msgid "Outbox"
-msgstr "Outbox"
+#: include/conversation.php:797 mod/content.php:489 mod/content.php:917
+#: mod/content.php:918 object/Item.php:345 object/Item.php:346
+#, php-format
+msgid "View %s's profile @ %s"
+msgstr "View %s's profile @ %s"
 
-#: include/nav.php:180 mod/message.php:18
-msgid "New Message"
-msgstr "New Message"
+#: include/conversation.php:809 object/Item.php:333
+msgid "Categories:"
+msgstr "Categories:"
 
-#: include/nav.php:183
-msgid "Manage"
-msgstr "Manage"
+#: include/conversation.php:810 object/Item.php:334
+msgid "Filed under:"
+msgstr "Filed under:"
 
-#: include/nav.php:183
-msgid "Manage other pages"
-msgstr "Manage other pages"
+#: include/conversation.php:817 mod/content.php:499 mod/content.php:930
+#: object/Item.php:359
+#, php-format
+msgid "%s from %s"
+msgstr "%s from %s"
 
-#: include/nav.php:186 mod/settings.php:83
-msgid "Delegations"
-msgstr "Delegations"
+#: include/conversation.php:833 mod/content.php:515
+msgid "View in context"
+msgstr "View in context"
 
-#: include/nav.php:186 mod/delegate.php:132
-msgid "Delegate Page Management"
-msgstr "Delegate Page Management"
+#: include/conversation.php:835 include/conversation.php:1307
+#: mod/content.php:517 mod/content.php:955 mod/editpost.php:117
+#: mod/message.php:337 mod/message.php:522 mod/photos.php:1630
+#: mod/wallmessage.php:143 object/Item.php:384
+msgid "Please wait"
+msgstr "Please wait"
 
-#: include/nav.php:188 mod/newmember.php:15 mod/admin.php:1708
-#: mod/admin.php:1984 mod/settings.php:113 view/theme/frio/theme.php:262
-msgid "Settings"
-msgstr "Settings"
+#: include/conversation.php:912
+msgid "remove"
+msgstr "Remove"
 
-#: include/nav.php:188 view/theme/frio/theme.php:262
-msgid "Account settings"
-msgstr "Account settings"
+#: include/conversation.php:916
+msgid "Delete Selected Items"
+msgstr "Delete selected items"
 
-#: include/nav.php:191 include/identity.php:294
-msgid "Profiles"
-msgstr "Profiles"
+#: include/conversation.php:1011 view/theme/frio/theme.php:347
+msgid "Follow Thread"
+msgstr "Follow thread"
 
-#: include/nav.php:191
-msgid "Manage/Edit Profiles"
-msgstr "Manage/Edit profiles"
+#: include/conversation.php:1148
+#, php-format
+msgid "%s likes this."
+msgstr "%s likes this."
 
-#: include/nav.php:194 view/theme/frio/theme.php:263
-msgid "Manage/edit friends and contacts"
-msgstr "Manage/Edit friends and contacts"
+#: include/conversation.php:1151
+#, php-format
+msgid "%s doesn't like this."
+msgstr "%s doesn't like this."
 
-#: include/nav.php:199 mod/admin.php:202
-msgid "Admin"
-msgstr "Admin"
+#: include/conversation.php:1154
+#, php-format
+msgid "%s attends."
+msgstr "%s attends."
 
-#: include/nav.php:199
-msgid "Site setup and configuration"
-msgstr "Site setup and configuration"
+#: include/conversation.php:1157
+#, php-format
+msgid "%s doesn't attend."
+msgstr "%s doesn't attend."
 
-#: include/nav.php:202
-msgid "Navigation"
-msgstr "Navigation"
+#: include/conversation.php:1160
+#, php-format
+msgid "%s attends maybe."
+msgstr "%s may attend."
 
-#: include/nav.php:202
-msgid "Site map"
-msgstr "Site map"
+#: include/conversation.php:1171
+msgid "and"
+msgstr "and"
 
-#: include/network.php:687
-msgid "view full size"
-msgstr "view full size"
+#: include/conversation.php:1177
+#, php-format
+msgid ", and %d other people"
+msgstr ", and %d other people"
 
-#: include/photos.php:57 include/photos.php:66 mod/fbrowser.php:42
-#: mod/fbrowser.php:63 mod/photos.php:189 mod/photos.php:1125
-#: mod/photos.php:1258 mod/photos.php:1279 mod/photos.php:1841
-#: mod/photos.php:1855
-msgid "Contact Photos"
-msgstr "Contact photos"
+#: include/conversation.php:1186
+#, php-format
+msgid "<span  %1$s>%2$d people</span> like this"
+msgstr "<span  %1$s>%2$d people</span> like this"
 
-#: include/security.php:63
-msgid "Welcome "
-msgstr "Welcome "
+#: include/conversation.php:1187
+#, php-format
+msgid "%s like this."
+msgstr "%s like this."
 
-#: include/security.php:64
-msgid "Please upload a profile photo."
-msgstr "Please upload a profile photo."
+#: include/conversation.php:1190
+#, php-format
+msgid "<span  %1$s>%2$d people</span> don't like this"
+msgstr "<span  %1$s>%2$d people</span> don't like this"
 
-#: include/security.php:66
-msgid "Welcome back "
-msgstr "Welcome back "
+#: include/conversation.php:1191
+#, php-format
+msgid "%s don't like this."
+msgstr "%s don't like this."
 
-#: include/security.php:438
-msgid ""
-"The form security token was not correct. This probably happened because the "
-"form has been opened for too long (>3 hours) before submitting it."
-msgstr "The form security token was incorrect. This probably happened because the form has not been submitted within 3 hours."
+#: include/conversation.php:1194
+#, php-format
+msgid "<span  %1$s>%2$d people</span> attend"
+msgstr "<span  %1$s>%2$d people</span> attend"
 
-#: include/contact_widgets.php:9
-msgid "Add New Contact"
-msgstr "Add new contact"
+#: include/conversation.php:1195
+#, php-format
+msgid "%s attend."
+msgstr "%s attend."
 
-#: include/contact_widgets.php:10
-msgid "Enter address or web location"
-msgstr "Enter address or web location"
+#: include/conversation.php:1198
+#, php-format
+msgid "<span  %1$s>%2$d people</span> don't attend"
+msgstr "<span  %1$s>%2$d people</span> don't attend"
 
-#: include/contact_widgets.php:11
-msgid "Example: bob@example.com, http://example.com/barbara"
-msgstr "Example: jo@example.com, http://example.com/jo"
+#: include/conversation.php:1199
+#, php-format
+msgid "%s don't attend."
+msgstr "%s don't attend."
 
-#: include/contact_widgets.php:13 include/identity.php:228
-#: mod/allfriends.php:87 mod/match.php:92 mod/suggest.php:103
-#: mod/dirfind.php:209
-msgid "Connect"
-msgstr "Connect"
+#: include/conversation.php:1202
+#, php-format
+msgid "<span  %1$s>%2$d people</span> attend maybe"
+msgstr "<span  %1$s>%2$d people</span> attend maybe"
 
-#: include/contact_widgets.php:28
+#: include/conversation.php:1203
 #, php-format
-msgid "%d invitation available"
-msgid_plural "%d invitations available"
-msgstr[0] "%d invitation available"
-msgstr[1] "%d invitations available"
+msgid "%s anttend maybe."
+msgstr "%s attend maybe."
 
-#: include/contact_widgets.php:34
-msgid "Find People"
-msgstr "Find people"
+#: include/conversation.php:1232 include/conversation.php:1248
+msgid "Visible to <strong>everybody</strong>"
+msgstr "Visible to <strong>everybody</strong>"
 
-#: include/contact_widgets.php:35
-msgid "Enter name or interest"
-msgstr "Enter name or interest"
+#: include/conversation.php:1233 include/conversation.php:1249
+#: mod/message.php:271 mod/message.php:278 mod/message.php:418
+#: mod/message.php:425 mod/wallmessage.php:117 mod/wallmessage.php:124
+msgid "Please enter a link URL:"
+msgstr "Please enter a link URL:"
 
-#: include/contact_widgets.php:36 include/Contact.php:389
-#: include/conversation.php:1016 mod/allfriends.php:71 mod/match.php:77
-#: mod/suggest.php:85 mod/dirfind.php:212 mod/follow.php:108
-#: mod/contacts.php:615
-msgid "Connect/Follow"
-msgstr "Connect/Follow"
+#: include/conversation.php:1234 include/conversation.php:1250
+msgid "Please enter a video link/URL:"
+msgstr "Please enter a video link/URL:"
 
-#: include/contact_widgets.php:37
-msgid "Examples: Robert Morgenstein, Fishing"
-msgstr "Examples: Robert Morgenstein, fishing"
+#: include/conversation.php:1235 include/conversation.php:1251
+msgid "Please enter an audio link/URL:"
+msgstr "Please enter an audio link/URL:"
 
-#: include/contact_widgets.php:38 mod/directory.php:202 mod/contacts.php:811
-msgid "Find"
-msgstr "Find"
+#: include/conversation.php:1236 include/conversation.php:1252
+msgid "Tag term:"
+msgstr "Tag term:"
 
-#: include/contact_widgets.php:39 mod/suggest.php:116
-#: view/theme/vier/theme.php:195
-msgid "Friend Suggestions"
-msgstr "Friend suggestions"
+#: include/conversation.php:1237 include/conversation.php:1253
+#: mod/filer.php:31
+msgid "Save to Folder:"
+msgstr "Save to folder:"
 
-#: include/contact_widgets.php:40 view/theme/vier/theme.php:194
-msgid "Similar Interests"
-msgstr "Similar interests"
+#: include/conversation.php:1238 include/conversation.php:1254
+msgid "Where are you right now?"
+msgstr "Where are you right now?"
 
-#: include/contact_widgets.php:41
-msgid "Random Profile"
-msgstr "Random profile"
+#: include/conversation.php:1239
+msgid "Delete item(s)?"
+msgstr "Delete item(s)?"
 
-#: include/contact_widgets.php:42 view/theme/vier/theme.php:196
-msgid "Invite Friends"
-msgstr "Invite friends"
+#: include/conversation.php:1288
+msgid "Share"
+msgstr "Share"
 
-#: include/contact_widgets.php:43
-msgid "View Global Directory"
-msgstr "View global directory"
+#: include/conversation.php:1289 mod/editpost.php:103 mod/message.php:335
+#: mod/message.php:519 mod/wallmessage.php:141
+msgid "Upload photo"
+msgstr "Upload photo"
 
-#: include/contact_widgets.php:131
-msgid "Networks"
-msgstr "Networks"
+#: include/conversation.php:1290 mod/editpost.php:104
+msgid "upload photo"
+msgstr "upload photo"
 
-#: include/contact_widgets.php:134
-msgid "All Networks"
-msgstr "All networks"
+#: include/conversation.php:1291 mod/editpost.php:105
+msgid "Attach file"
+msgstr "Attach file"
 
-#: include/contact_widgets.php:169 include/contact_widgets.php:204
-msgid "Everything"
-msgstr "Everything"
+#: include/conversation.php:1292 mod/editpost.php:106
+msgid "attach file"
+msgstr "attach file"
 
-#: include/contact_widgets.php:201
-msgid "Categories"
-msgstr "Categories"
+#: include/conversation.php:1293 mod/editpost.php:107 mod/message.php:336
+#: mod/message.php:520 mod/wallmessage.php:142
+msgid "Insert web link"
+msgstr "Insert web link"
 
-#: include/contact_widgets.php:270
-#, php-format
-msgid "%d contact in common"
-msgid_plural "%d contacts in common"
-msgstr[0] "%d contact in common"
-msgstr[1] "%d contacts in common"
+#: include/conversation.php:1294 mod/editpost.php:108
+msgid "web link"
+msgstr "web link"
 
-#: include/dfrn.php:1309
-#, php-format
-msgid "%s\\'s birthday"
-msgstr "%s\\'s birthday"
+#: include/conversation.php:1295 mod/editpost.php:109
+msgid "Insert video link"
+msgstr "Insert video link"
 
-#: include/Contact.php:375 include/Contact.php:388 include/Contact.php:433
-#: include/conversation.php:1003 include/conversation.php:1019
-#: mod/allfriends.php:70 mod/directory.php:153 mod/match.php:76
-#: mod/suggest.php:84 mod/dirfind.php:211
-msgid "View Profile"
-msgstr "View profile"
+#: include/conversation.php:1296 mod/editpost.php:110
+msgid "video link"
+msgstr "video link"
 
-#: include/Contact.php:432 include/conversation.php:1002
-msgid "View Status"
-msgstr "View status"
+#: include/conversation.php:1297 mod/editpost.php:111
+msgid "Insert audio link"
+msgstr "Insert audio link"
 
-#: include/Contact.php:434 include/conversation.php:1004
-msgid "View Photos"
-msgstr "View photos"
+#: include/conversation.php:1298 mod/editpost.php:112
+msgid "audio link"
+msgstr "audio link"
 
-#: include/Contact.php:435 include/conversation.php:1005
-msgid "Network Posts"
-msgstr "Network posts"
+#: include/conversation.php:1299 mod/editpost.php:113
+msgid "Set your location"
+msgstr "Set your location"
 
-#: include/Contact.php:436 include/conversation.php:1006
-msgid "View Contact"
-msgstr "View contact"
+#: include/conversation.php:1300 mod/editpost.php:114
+msgid "set location"
+msgstr "set location"
 
-#: include/Contact.php:437
-msgid "Drop Contact"
-msgstr "Drop contact"
+#: include/conversation.php:1301 mod/editpost.php:115
+msgid "Clear browser location"
+msgstr "Clear browser location"
 
-#: include/Contact.php:438 include/conversation.php:1007
-msgid "Send PM"
-msgstr "Send PM"
+#: include/conversation.php:1302 mod/editpost.php:116
+msgid "clear location"
+msgstr "clear location"
 
-#: include/Contact.php:439 include/conversation.php:1011
-msgid "Poke"
-msgstr "Poke"
+#: include/conversation.php:1304 mod/editpost.php:130
+msgid "Set title"
+msgstr "Set title"
 
-#: include/Contact.php:808
-msgid "Organisation"
-msgstr "Organization"
+#: include/conversation.php:1306 mod/editpost.php:132
+msgid "Categories (comma-separated list)"
+msgstr "Categories (comma-separated list)"
 
-#: include/Contact.php:811
-msgid "News"
-msgstr "News"
+#: include/conversation.php:1308 mod/editpost.php:118
+msgid "Permission settings"
+msgstr "Permission settings"
 
-#: include/Contact.php:814
-msgid "Forum"
-msgstr "Forum"
+#: include/conversation.php:1309 mod/editpost.php:147
+msgid "permissions"
+msgstr "permissions"
 
-#: include/acl_selectors.php:355
-msgid "Post to Email"
-msgstr "Post to email"
+#: include/conversation.php:1317 mod/editpost.php:127
+msgid "Public post"
+msgstr "Public post"
 
-#: include/acl_selectors.php:360
-#, php-format
-msgid "Connectors disabled, since \"%s\" is enabled."
-msgstr "Connectors are disabled since \"%s\" is enabled."
+#: include/conversation.php:1322 mod/content.php:739 mod/editpost.php:138
+#: mod/events.php:507 mod/photos.php:1650 mod/photos.php:1692
+#: mod/photos.php:1772 object/Item.php:706
+msgid "Preview"
+msgstr "Preview"
 
-#: include/acl_selectors.php:361 mod/settings.php:1189
-msgid "Hide your profile details from unknown viewers?"
-msgstr "Hide profile details from unknown viewers?"
+#: include/conversation.php:1326 include/items.php:2139 mod/contacts.php:459
+#: mod/dfrn_request.php:895 mod/editpost.php:141 mod/fbrowser.php:103
+#: mod/fbrowser.php:138 mod/follow.php:161 mod/message.php:210
+#: mod/photos.php:248 mod/photos.php:340 mod/settings.php:684
+#: mod/settings.php:710 mod/suggest.php:35 mod/tagrm.php:14 mod/tagrm.php:99
+#: mod/unfollow.php:117 mod/videos.php:135
+msgid "Cancel"
+msgstr "Cancel"
 
-#: include/acl_selectors.php:367
-msgid "Visible to everybody"
-msgstr "Visible to everybody"
+#: include/conversation.php:1332
+msgid "Post to Groups"
+msgstr "Post to groups"
 
-#: include/acl_selectors.php:368 view/theme/vier/config.php:109
-msgid "show"
-msgstr "show"
+#: include/conversation.php:1333
+msgid "Post to Contacts"
+msgstr "Post to contacts"
 
-#: include/acl_selectors.php:369 view/theme/vier/config.php:109
-msgid "don't show"
-msgstr "don't show"
+#: include/conversation.php:1334
+msgid "Private post"
+msgstr "Private post"
 
-#: include/acl_selectors.php:375 mod/editpost.php:125
-msgid "CC: email addresses"
-msgstr "CC: email addresses"
+#: include/conversation.php:1339 include/identity.php:267 mod/editpost.php:145
+msgid "Message"
+msgstr "Message"
 
-#: include/acl_selectors.php:376 mod/editpost.php:132
-msgid "Example: bob@example.com, mary@example.com"
-msgstr "Example: bob@example.com, mary@example.com"
+#: include/conversation.php:1340 mod/editpost.php:146
+msgid "Browser"
+msgstr "Browser"
 
-#: include/acl_selectors.php:378 mod/photos.php:1198 mod/photos.php:1595
-#: mod/events.php:511
-msgid "Permissions"
-msgstr "Permissions"
+#: include/conversation.php:1522
+msgid "View all"
+msgstr "View all"
 
-#: include/acl_selectors.php:379
-msgid "Close"
-msgstr "Close"
+#: include/conversation.php:1544
+msgid "Like"
+msgid_plural "Likes"
+msgstr[0] "Like"
+msgstr[1] "Likes"
 
-#: include/contact_selectors.php:32
-msgid "Unknown | Not categorised"
-msgstr "Unknown | Not categorized"
+#: include/conversation.php:1547
+msgid "Dislike"
+msgid_plural "Dislikes"
+msgstr[0] "Dislike"
+msgstr[1] "Dislikes"
 
-#: include/contact_selectors.php:33
-msgid "Block immediately"
-msgstr "Block immediately"
+#: include/conversation.php:1553
+msgid "Not Attending"
+msgid_plural "Not Attending"
+msgstr[0] "Not attending"
+msgstr[1] "Not attending"
 
-#: include/contact_selectors.php:34
-msgid "Shady, spammer, self-marketer"
-msgstr "Shady, spammer, self-marketer"
+#: include/dbstructure.php:26
+msgid "There are no tables on MyISAM."
+msgstr "There are no tables on MyISAM."
 
-#: include/contact_selectors.php:35
-msgid "Known to me, but no opinion"
-msgstr "Known to me, but no opinion"
+#: include/dbstructure.php:67
+#, php-format
+msgid ""
+"\n"
+"\t\t\tThe friendica developers released update %s recently,\n"
+"\t\t\tbut when I tried to install it, something went terribly wrong.\n"
+"\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n"
+"\t\t\tfriendica developer if you can not help me on your own. My database might be invalid."
+msgstr "\n\t\t\tThe Friendica developers released update %s recently,\n\t\t\tbut when I tried to install it, something went terribly wrong.\n\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n\t\t\tFriendica developer if you can not help me on your own. My database\n                        might be invalid."
 
-#: include/contact_selectors.php:36
-msgid "OK, probably harmless"
-msgstr "OK, probably harmless"
+#: include/dbstructure.php:72
+#, php-format
+msgid ""
+"The error message is\n"
+"[pre]%s[/pre]"
+msgstr "The error message is\n[pre]%s[/pre]"
 
-#: include/contact_selectors.php:37
-msgid "Reputable, has my trust"
-msgstr "Reputable, has my trust"
+#: include/dbstructure.php:197
+#, php-format
+msgid ""
+"\n"
+"Error %d occurred during database update:\n"
+"%s\n"
+msgstr "\nError %d occurred during database update:\n%s\n"
 
-#: include/contact_selectors.php:56 mod/admin.php:1070
-msgid "Frequently"
-msgstr "Frequently"
+#: include/dbstructure.php:200
+msgid "Errors encountered performing database changes: "
+msgstr "Errors encountered performing database changes: "
 
-#: include/contact_selectors.php:57 mod/admin.php:1071
-msgid "Hourly"
-msgstr "Hourly"
+#: include/dbstructure.php:208
+msgid ": Database update"
+msgstr ": Database update"
 
-#: include/contact_selectors.php:58 mod/admin.php:1072
-msgid "Twice daily"
-msgstr "Twice daily"
+#: include/dbstructure.php:440
+#, php-format
+msgid "%s: updating %s table."
+msgstr "%s: updating %s table."
 
-#: include/contact_selectors.php:59 mod/admin.php:1073
-msgid "Daily"
-msgstr "Daily"
+#: include/delivery.php:429
+msgid "(no subject)"
+msgstr "(no subject)"
 
-#: include/contact_selectors.php:60
-msgid "Weekly"
-msgstr "Weekly"
+#: include/delivery.php:441 include/enotify.php:47
+msgid "noreply"
+msgstr "noreply"
 
-#: include/contact_selectors.php:61
-msgid "Monthly"
-msgstr "Monthly"
+#: include/dfrn.php:1331
+#, php-format
+msgid "%s\\'s birthday"
+msgstr "%s\\'s birthday"
 
-#: include/contact_selectors.php:76 mod/dfrn_request.php:886
-msgid "Friendica"
-msgstr "Friendica"
+#: include/diaspora.php:2226
+msgid "Sharing notification from Diaspora network"
+msgstr "Sharing notification from Diaspora network"
 
-#: include/contact_selectors.php:77
-msgid "OStatus"
-msgstr "OStatus"
+#: include/diaspora.php:3183
+msgid "Attachments:"
+msgstr "Attachments:"
 
-#: include/contact_selectors.php:78
-msgid "RSS/Atom"
-msgstr "RSS/Atom"
+#: include/enotify.php:28
+msgid "Friendica Notification"
+msgstr "Friendica notification"
 
-#: include/contact_selectors.php:79 include/contact_selectors.php:86
-#: mod/admin.php:1580 mod/admin.php:1593 mod/admin.php:1606 mod/admin.php:1624
-msgid "Email"
-msgstr "Email"
-
-#: include/contact_selectors.php:80 mod/dfrn_request.php:888
-#: mod/settings.php:849
-msgid "Diaspora"
-msgstr "Diaspora"
-
-#: include/contact_selectors.php:81
-msgid "Facebook"
-msgstr "Facebook"
-
-#: include/contact_selectors.php:82
-msgid "Zot!"
-msgstr "Zot!"
-
-#: include/contact_selectors.php:83
-msgid "LinkedIn"
-msgstr "LinkedIn"
-
-#: include/contact_selectors.php:84
-msgid "XMPP/IM"
-msgstr "XMPP/IM"
-
-#: include/contact_selectors.php:85
-msgid "MySpace"
-msgstr "MySpace"
+#: include/enotify.php:31
+msgid "Thank You,"
+msgstr "Thank you"
 
-#: include/contact_selectors.php:87
-msgid "Google+"
-msgstr "Google+"
+#: include/enotify.php:34
+#, php-format
+msgid "%s Administrator"
+msgstr "%s Administrator"
 
-#: include/contact_selectors.php:88
-msgid "pump.io"
-msgstr "Pump.io"
+#: include/enotify.php:36
+#, php-format
+msgid "%1$s, %2$s Administrator"
+msgstr "%1$s, %2$s Administrator"
 
-#: include/contact_selectors.php:89
-msgid "Twitter"
-msgstr "Twitter"
+#: include/enotify.php:81
+#, php-format
+msgid "%s <!item_type!>"
+msgstr "%s <!item_type!>"
 
-#: include/contact_selectors.php:90
-msgid "Diaspora Connector"
-msgstr "Diaspora connector"
+#: include/enotify.php:94
+#, php-format
+msgid "[Friendica:Notify] New mail received at %s"
+msgstr "[Friendica:Notify] New mail received at %s"
 
-#: include/contact_selectors.php:91
-msgid "GNU Social Connector"
-msgstr "GNU Social connector"
+#: include/enotify.php:96
+#, php-format
+msgid "%1$s sent you a new private message at %2$s."
+msgstr "%1$s sent you a new private message at %2$s."
 
-#: include/contact_selectors.php:92
-msgid "pnut"
-msgstr "Pnut"
+#: include/enotify.php:97
+#, php-format
+msgid "%1$s sent you %2$s."
+msgstr "%1$s sent you %2$s."
 
-#: include/contact_selectors.php:93
-msgid "App.net"
-msgstr "App.net"
+#: include/enotify.php:97
+msgid "a private message"
+msgstr "a private message"
 
-#: include/conversation.php:160
+#: include/enotify.php:99
 #, php-format
-msgid "%1$s attends %2$s's %3$s"
-msgstr "%1$s goes to %2$s's %3$s"
+msgid "Please visit %s to view and/or reply to your private messages."
+msgstr "Please visit %s to view or reply to your private messages."
 
-#: include/conversation.php:163
+#: include/enotify.php:145
 #, php-format
-msgid "%1$s doesn't attend %2$s's %3$s"
-msgstr "%1$s doesn't go %2$s's %3$s"
+msgid "%1$s commented on [url=%2$s]a %3$s[/url]"
+msgstr "%1$s commented on [url=%2$s]a %3$s[/url]"
 
-#: include/conversation.php:166
+#: include/enotify.php:152
 #, php-format
-msgid "%1$s attends maybe %2$s's %3$s"
-msgstr "%1$s might go to %2$s's %3$s"
+msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]"
+msgstr "%1$s commented on [url=%2$s]%3$s's %4$s[/url]"
 
-#: include/conversation.php:199 mod/dfrn_confirm.php:480
+#: include/enotify.php:160
 #, php-format
-msgid "%1$s is now friends with %2$s"
-msgstr "%1$s is now friends with %2$s"
+msgid "%1$s commented on [url=%2$s]your %3$s[/url]"
+msgstr "%1$s commented on [url=%2$s]your %3$s[/url]"
 
-#: include/conversation.php:240
+#: include/enotify.php:170
 #, php-format
-msgid "%1$s poked %2$s"
-msgstr "%1$s poked %2$s"
+msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s"
+msgstr "[Friendica:Notify] Comment to conversation #%1$d by %2$s"
 
-#: include/conversation.php:261 mod/mood.php:64
+#: include/enotify.php:172
 #, php-format
-msgid "%1$s is currently %2$s"
-msgstr "%1$s is currently %2$s"
+msgid "%s commented on an item/conversation you have been following."
+msgstr "%s commented on an item/conversation you have been following."
 
-#: include/conversation.php:308 mod/tagger.php:96
+#: include/enotify.php:175 include/enotify.php:189 include/enotify.php:203
+#: include/enotify.php:217 include/enotify.php:235 include/enotify.php:249
 #, php-format
-msgid "%1$s tagged %2$s's %3$s with %4$s"
-msgstr "%1$s tagged %2$s's %3$s with %4$s"
-
-#: include/conversation.php:335
-msgid "post/item"
-msgstr "Post/Item"
+msgid "Please visit %s to view and/or reply to the conversation."
+msgstr "Please visit %s to view or reply to the conversation."
 
-#: include/conversation.php:336
+#: include/enotify.php:182
 #, php-format
-msgid "%1$s marked %2$s's %3$s as favorite"
-msgstr "%1$s marked %2$s's %3$s as favorite"
-
-#: include/conversation.php:614 mod/content.php:373 mod/photos.php:1664
-#: mod/profiles.php:344
-msgid "Likes"
-msgstr "Likes"
-
-#: include/conversation.php:614 mod/content.php:373 mod/photos.php:1664
-#: mod/profiles.php:348
-msgid "Dislikes"
-msgstr "Dislikes"
-
-#: include/conversation.php:615 include/conversation.php:1540
-#: mod/content.php:374 mod/photos.php:1665
-msgid "Attending"
-msgid_plural "Attending"
-msgstr[0] "Attending"
-msgstr[1] "Attending"
-
-#: include/conversation.php:615 mod/content.php:374 mod/photos.php:1665
-msgid "Not attending"
-msgstr "Not attending"
-
-#: include/conversation.php:615 mod/content.php:374 mod/photos.php:1665
-msgid "Might attend"
-msgstr "Might attend"
-
-#: include/conversation.php:747 mod/content.php:454 mod/content.php:760
-#: mod/photos.php:1730 object/Item.php:137
-msgid "Select"
-msgstr "Select"
-
-#: include/conversation.php:748 mod/content.php:455 mod/content.php:761
-#: mod/photos.php:1731 mod/admin.php:1598 mod/contacts.php:821
-#: mod/contacts.php:1020 mod/settings.php:745 object/Item.php:138
-msgid "Delete"
-msgstr "Delete"
+msgid "[Friendica:Notify] %s posted to your profile wall"
+msgstr "[Friendica:Notify] %s posted to your profile wall"
 
-#: include/conversation.php:791 mod/content.php:488 mod/content.php:916
-#: mod/content.php:917 object/Item.php:353 object/Item.php:354
+#: include/enotify.php:184
 #, php-format
-msgid "View %s's profile @ %s"
-msgstr "View %s's profile @ %s"
+msgid "%1$s posted to your profile wall at %2$s"
+msgstr "%1$s posted to your profile wall at %2$s"
 
-#: include/conversation.php:803 object/Item.php:341
-msgid "Categories:"
-msgstr "Categories:"
+#: include/enotify.php:185
+#, php-format
+msgid "%1$s posted to [url=%2$s]your wall[/url]"
+msgstr "%1$s posted to [url=%2$s]your wall[/url]"
 
-#: include/conversation.php:804 object/Item.php:342
-msgid "Filed under:"
-msgstr "Filed under:"
+#: include/enotify.php:196
+#, php-format
+msgid "[Friendica:Notify] %s tagged you"
+msgstr "[Friendica:Notify] %s tagged you"
 
-#: include/conversation.php:811 mod/content.php:498 mod/content.php:929
-#: object/Item.php:367
+#: include/enotify.php:198
 #, php-format
-msgid "%s from %s"
-msgstr "%s from %s"
+msgid "%1$s tagged you at %2$s"
+msgstr "%1$s tagged you at %2$s"
 
-#: include/conversation.php:827 mod/content.php:514
-msgid "View in context"
-msgstr "View in context"
+#: include/enotify.php:199
+#, php-format
+msgid "%1$s [url=%2$s]tagged you[/url]."
+msgstr "%1$s [url=%2$s]tagged you[/url]."
 
-#: include/conversation.php:829 include/conversation.php:1297
-#: mod/content.php:516 mod/content.php:954 mod/editpost.php:116
-#: mod/message.php:339 mod/message.php:524 mod/photos.php:1629
-#: mod/wallmessage.php:142 object/Item.php:392
-msgid "Please wait"
-msgstr "Please wait"
+#: include/enotify.php:210
+#, php-format
+msgid "[Friendica:Notify] %s shared a new post"
+msgstr "[Friendica:Notify] %s shared a new post"
 
-#: include/conversation.php:906
-msgid "remove"
-msgstr "Remove"
+#: include/enotify.php:212
+#, php-format
+msgid "%1$s shared a new post at %2$s"
+msgstr "%1$s shared a new post at %2$s"
 
-#: include/conversation.php:910
-msgid "Delete Selected Items"
-msgstr "Delete selected items"
+#: include/enotify.php:213
+#, php-format
+msgid "%1$s [url=%2$s]shared a post[/url]."
+msgstr "%1$s [url=%2$s]shared a post[/url]."
 
-#: include/conversation.php:1001 view/theme/frio/theme.php:346
-msgid "Follow Thread"
-msgstr "Follow thread"
+#: include/enotify.php:224
+#, php-format
+msgid "[Friendica:Notify] %1$s poked you"
+msgstr "[Friendica:Notify] %1$s poked you"
 
-#: include/conversation.php:1138
+#: include/enotify.php:226
 #, php-format
-msgid "%s likes this."
-msgstr "%s likes this."
+msgid "%1$s poked you at %2$s"
+msgstr "%1$s poked you at %2$s"
 
-#: include/conversation.php:1141
+#: include/enotify.php:227
 #, php-format
-msgid "%s doesn't like this."
-msgstr "%s doesn't like this."
+msgid "%1$s [url=%2$s]poked you[/url]."
+msgstr "%1$s [url=%2$s]poked you[/url]."
 
-#: include/conversation.php:1144
+#: include/enotify.php:242
 #, php-format
-msgid "%s attends."
-msgstr "%s attends."
+msgid "[Friendica:Notify] %s tagged your post"
+msgstr "[Friendica:Notify] %s tagged your post"
 
-#: include/conversation.php:1147
+#: include/enotify.php:244
 #, php-format
-msgid "%s doesn't attend."
-msgstr "%s doesn't attend."
+msgid "%1$s tagged your post at %2$s"
+msgstr "%1$s tagged your post at %2$s"
 
-#: include/conversation.php:1150
+#: include/enotify.php:245
 #, php-format
-msgid "%s attends maybe."
-msgstr "%s may attend."
+msgid "%1$s tagged [url=%2$s]your post[/url]"
+msgstr "%1$s tagged [url=%2$s]your post[/url]"
 
-#: include/conversation.php:1161
-msgid "and"
-msgstr "and"
+#: include/enotify.php:256
+msgid "[Friendica:Notify] Introduction received"
+msgstr "[Friendica:Notify] Introduction received"
 
-#: include/conversation.php:1167
+#: include/enotify.php:258
 #, php-format
-msgid ", and %d other people"
-msgstr ", and %d other people"
+msgid "You've received an introduction from '%1$s' at %2$s"
+msgstr "You've received an introduction from '%1$s' at %2$s"
 
-#: include/conversation.php:1176
+#: include/enotify.php:259
 #, php-format
-msgid "<span  %1$s>%2$d people</span> like this"
-msgstr "<span  %1$s>%2$d people</span> like this"
+msgid "You've received [url=%1$s]an introduction[/url] from %2$s."
+msgstr "You've received [url=%1$s]an introduction[/url] from %2$s."
 
-#: include/conversation.php:1177
+#: include/enotify.php:263 include/enotify.php:306
 #, php-format
-msgid "%s like this."
-msgstr "%s like this."
+msgid "You may visit their profile at %s"
+msgstr "You may visit their profile at %s"
 
-#: include/conversation.php:1180
+#: include/enotify.php:265
 #, php-format
-msgid "<span  %1$s>%2$d people</span> don't like this"
-msgstr "<span  %1$s>%2$d people</span> don't like this"
+msgid "Please visit %s to approve or reject the introduction."
+msgstr "Please visit %s to approve or reject the introduction."
 
-#: include/conversation.php:1181
-#, php-format
-msgid "%s don't like this."
-msgstr "%s don't like this."
+#: include/enotify.php:273
+msgid "[Friendica:Notify] A new person is sharing with you"
+msgstr "[Friendica:Notify] A new person is sharing with you"
 
-#: include/conversation.php:1184
+#: include/enotify.php:275 include/enotify.php:276
 #, php-format
-msgid "<span  %1$s>%2$d people</span> attend"
-msgstr "<span  %1$s>%2$d people</span> attend"
+msgid "%1$s is sharing with you at %2$s"
+msgstr "%1$s is sharing with you at %2$s"
 
-#: include/conversation.php:1185
-#, php-format
-msgid "%s attend."
-msgstr "%s attend."
+#: include/enotify.php:282
+msgid "[Friendica:Notify] You have a new follower"
+msgstr "[Friendica:Notify] You have a new follower"
 
-#: include/conversation.php:1188
+#: include/enotify.php:284 include/enotify.php:285
 #, php-format
-msgid "<span  %1$s>%2$d people</span> don't attend"
-msgstr "<span  %1$s>%2$d people</span> don't attend"
+msgid "You have a new follower at %2$s : %1$s"
+msgstr "You have a new follower at %2$s : %1$s"
 
-#: include/conversation.php:1189
-#, php-format
-msgid "%s don't attend."
-msgstr "%s don't attend."
+#: include/enotify.php:296
+msgid "[Friendica:Notify] Friend suggestion received"
+msgstr "[Friendica:Notify] Friend suggestion received"
 
-#: include/conversation.php:1192
+#: include/enotify.php:298
 #, php-format
-msgid "<span  %1$s>%2$d people</span> attend maybe"
-msgstr "<span  %1$s>%2$d people</span> attend maybe"
+msgid "You've received a friend suggestion from '%1$s' at %2$s"
+msgstr "You've received a friend suggestion from '%1$s' at %2$s"
 
-#: include/conversation.php:1193
+#: include/enotify.php:299
 #, php-format
-msgid "%s anttend maybe."
-msgstr "%s attend maybe."
+msgid ""
+"You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s."
+msgstr "You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s."
 
-#: include/conversation.php:1222 include/conversation.php:1238
-msgid "Visible to <strong>everybody</strong>"
-msgstr "Visible to <strong>everybody</strong>"
+#: include/enotify.php:304
+msgid "Name:"
+msgstr "Name:"
 
-#: include/conversation.php:1223 include/conversation.php:1239
-#: mod/message.php:273 mod/message.php:280 mod/message.php:420
-#: mod/message.php:427 mod/wallmessage.php:116 mod/wallmessage.php:123
-msgid "Please enter a link URL:"
-msgstr "Please enter a link URL:"
+#: include/enotify.php:305
+msgid "Photo:"
+msgstr "Photo:"
 
-#: include/conversation.php:1224 include/conversation.php:1240
-msgid "Please enter a video link/URL:"
-msgstr "Please enter a video link/URL:"
+#: include/enotify.php:308
+#, php-format
+msgid "Please visit %s to approve or reject the suggestion."
+msgstr "Please visit %s to approve or reject the suggestion."
 
-#: include/conversation.php:1225 include/conversation.php:1241
-msgid "Please enter an audio link/URL:"
-msgstr "Please enter an audio link/URL:"
+#: include/enotify.php:316 include/enotify.php:330
+msgid "[Friendica:Notify] Connection accepted"
+msgstr "[Friendica:Notify] Connection accepted"
 
-#: include/conversation.php:1226 include/conversation.php:1242
-msgid "Tag term:"
-msgstr "Tag term:"
+#: include/enotify.php:318 include/enotify.php:332
+#, php-format
+msgid "'%1$s' has accepted your connection request at %2$s"
+msgstr "'%1$s' has accepted your connection request at %2$s"
 
-#: include/conversation.php:1227 include/conversation.php:1243
-#: mod/filer.php:31
-msgid "Save to Folder:"
-msgstr "Save to folder:"
+#: include/enotify.php:319 include/enotify.php:333
+#, php-format
+msgid "%2$s has accepted your [url=%1$s]connection request[/url]."
+msgstr "%2$s has accepted your [url=%1$s]connection request[/url]."
 
-#: include/conversation.php:1228 include/conversation.php:1244
-msgid "Where are you right now?"
-msgstr "Where are you right now?"
+#: include/enotify.php:323
+msgid ""
+"You are now mutual friends and may exchange status updates, photos, and "
+"email without restriction."
+msgstr "You are now mutual friends and may exchange status updates, photos, and email without restriction."
 
-#: include/conversation.php:1229
-msgid "Delete item(s)?"
-msgstr "Delete item(s)?"
+#: include/enotify.php:325
+#, php-format
+msgid "Please visit %s if you wish to make any changes to this relationship."
+msgstr "Please visit %s if you wish to make any changes to this relationship."
 
-#: include/conversation.php:1278
-msgid "Share"
-msgstr "Share"
+#: include/enotify.php:337
+#, php-format
+msgid ""
+"'%1$s' has chosen to accept you a \"fan\", which restricts some forms of "
+"communication - such as private messaging and some profile interactions. If "
+"this is a celebrity or community page, these settings were applied "
+"automatically."
+msgstr "'%1$s' has chosen to accept you as \"Follower\". This restricts some forms of communication, such as private messaging and some profile interactions. If this is a celebrity or community page, these settings were applied automatically."
 
-#: include/conversation.php:1279 mod/editpost.php:102 mod/message.php:337
-#: mod/message.php:521 mod/wallmessage.php:140
-msgid "Upload photo"
-msgstr "Upload photo"
+#: include/enotify.php:339
+#, php-format
+msgid ""
+"'%1$s' may choose to extend this into a two-way or more permissive "
+"relationship in the future."
+msgstr "'%1$s' may choose to extend this into a two-way or more permissive relationship in the future."
 
-#: include/conversation.php:1280 mod/editpost.php:103
-msgid "upload photo"
-msgstr "upload photo"
+#: include/enotify.php:341
+#, php-format
+msgid "Please visit %s  if you wish to make any changes to this relationship."
+msgstr "Please visit %s  if you wish to make any changes to this relationship."
 
-#: include/conversation.php:1281 mod/editpost.php:104
-msgid "Attach file"
-msgstr "Attach file"
+#: include/enotify.php:351
+msgid "[Friendica System:Notify] registration request"
+msgstr "[Friendica:Notify] registration request"
 
-#: include/conversation.php:1282 mod/editpost.php:105
-msgid "attach file"
-msgstr "attach file"
+#: include/enotify.php:353
+#, php-format
+msgid "You've received a registration request from '%1$s' at %2$s"
+msgstr "You've received a registration request from '%1$s' at %2$s."
 
-#: include/conversation.php:1283 mod/editpost.php:106 mod/message.php:338
-#: mod/message.php:522 mod/wallmessage.php:141
-msgid "Insert web link"
-msgstr "Insert web link"
+#: include/enotify.php:354
+#, php-format
+msgid "You've received a [url=%1$s]registration request[/url] from %2$s."
+msgstr "You've received a [url=%1$s]registration request[/url] from %2$s."
 
-#: include/conversation.php:1284 mod/editpost.php:107
-msgid "web link"
-msgstr "web link"
+#: include/enotify.php:358
+#, php-format
+msgid "Full Name:\t%1$s\\nSite Location:\t%2$s\\nLogin Name:\t%3$s (%4$s)"
+msgstr "Full Name:\t%1$s\\nSite Location:\t%2$s\\nLogin Name:\t%3$s (%4$s)"
 
-#: include/conversation.php:1285 mod/editpost.php:108
-msgid "Insert video link"
-msgstr "Insert video link"
+#: include/enotify.php:361
+#, php-format
+msgid "Please visit %s to approve or reject the request."
+msgstr "Please visit %s to approve or reject the request."
 
-#: include/conversation.php:1286 mod/editpost.php:109
-msgid "video link"
-msgstr "video link"
+#: include/event.php:409
+msgid "all-day"
+msgstr "All-day"
 
-#: include/conversation.php:1287 mod/editpost.php:110
-msgid "Insert audio link"
-msgstr "Insert audio link"
+#: include/event.php:411
+msgid "Sun"
+msgstr "Sun"
 
-#: include/conversation.php:1288 mod/editpost.php:111
-msgid "audio link"
-msgstr "audio link"
+#: include/event.php:412
+msgid "Mon"
+msgstr "Mon"
 
-#: include/conversation.php:1289 mod/editpost.php:112
-msgid "Set your location"
-msgstr "Set your location"
+#: include/event.php:413
+msgid "Tue"
+msgstr "Tue"
 
-#: include/conversation.php:1290 mod/editpost.php:113
-msgid "set location"
-msgstr "set location"
+#: include/event.php:414
+msgid "Wed"
+msgstr "Wed"
 
-#: include/conversation.php:1291 mod/editpost.php:114
-msgid "Clear browser location"
-msgstr "Clear browser location"
+#: include/event.php:415
+msgid "Thu"
+msgstr "Thu"
 
-#: include/conversation.php:1292 mod/editpost.php:115
-msgid "clear location"
-msgstr "clear location"
+#: include/event.php:416
+msgid "Fri"
+msgstr "Fri"
 
-#: include/conversation.php:1294 mod/editpost.php:129
-msgid "Set title"
-msgstr "Set title"
+#: include/event.php:417
+msgid "Sat"
+msgstr "Sat"
 
-#: include/conversation.php:1296 mod/editpost.php:131
-msgid "Categories (comma-separated list)"
-msgstr "Categories (comma-separated list)"
+#: include/event.php:419 include/text.php:1207 mod/settings.php:983
+msgid "Sunday"
+msgstr "Sunday"
 
-#: include/conversation.php:1298 mod/editpost.php:117
-msgid "Permission settings"
-msgstr "Permission settings"
+#: include/event.php:420 include/text.php:1207 mod/settings.php:983
+msgid "Monday"
+msgstr "Monday"
 
-#: include/conversation.php:1299 mod/editpost.php:146
-msgid "permissions"
-msgstr "permissions"
+#: include/event.php:421 include/text.php:1207
+msgid "Tuesday"
+msgstr "Tuesday"
 
-#: include/conversation.php:1307 mod/editpost.php:126
-msgid "Public post"
-msgstr "Public post"
+#: include/event.php:422 include/text.php:1207
+msgid "Wednesday"
+msgstr "Wednesday"
 
-#: include/conversation.php:1312 mod/content.php:738 mod/editpost.php:137
-#: mod/photos.php:1649 mod/photos.php:1691 mod/photos.php:1771
-#: mod/events.php:506 object/Item.php:714
-msgid "Preview"
-msgstr "Preview"
+#: include/event.php:423 include/text.php:1207
+msgid "Thursday"
+msgstr "Thursday"
 
-#: include/conversation.php:1316 include/items.php:2131 mod/editpost.php:140
-#: mod/fbrowser.php:102 mod/fbrowser.php:137 mod/message.php:211
-#: mod/photos.php:247 mod/photos.php:339 mod/suggest.php:34 mod/tagrm.php:13
-#: mod/tagrm.php:98 mod/videos.php:134 mod/dfrn_request.php:894
-#: mod/follow.php:126 mod/contacts.php:458 mod/settings.php:683
-#: mod/settings.php:709
-msgid "Cancel"
-msgstr "Cancel"
+#: include/event.php:424 include/text.php:1207
+msgid "Friday"
+msgstr "Friday"
 
-#: include/conversation.php:1322
-msgid "Post to Groups"
-msgstr "Post to groups"
+#: include/event.php:425 include/text.php:1207
+msgid "Saturday"
+msgstr "Saturday"
 
-#: include/conversation.php:1323
-msgid "Post to Contacts"
-msgstr "Post to contacts"
+#: include/event.php:427
+msgid "Jan"
+msgstr "Jan"
 
-#: include/conversation.php:1324
-msgid "Private post"
-msgstr "Private post"
+#: include/event.php:428
+msgid "Feb"
+msgstr "Feb"
 
-#: include/conversation.php:1329 include/identity.php:268 mod/editpost.php:144
-msgid "Message"
-msgstr "Message"
+#: include/event.php:429
+msgid "Mar"
+msgstr "Mar"
 
-#: include/conversation.php:1330 mod/editpost.php:145
-msgid "Browser"
-msgstr "Browser"
+#: include/event.php:430
+msgid "Apr"
+msgstr "Apr"
 
-#: include/conversation.php:1512
-msgid "View all"
-msgstr "View all"
+#: include/event.php:431 include/event.php:444 include/text.php:1211
+msgid "May"
+msgstr "May"
 
-#: include/conversation.php:1534
-msgid "Like"
-msgid_plural "Likes"
-msgstr[0] "Like"
-msgstr[1] "Likes"
+#: include/event.php:432
+msgid "Jun"
+msgstr "Jun"
 
-#: include/conversation.php:1537
-msgid "Dislike"
-msgid_plural "Dislikes"
-msgstr[0] "Dislike"
-msgstr[1] "Dislikes"
+#: include/event.php:433
+msgid "Jul"
+msgstr "Jul"
 
-#: include/conversation.php:1543
-msgid "Not Attending"
-msgid_plural "Not Attending"
-msgstr[0] "Not attending"
-msgstr[1] "Not attending"
+#: include/event.php:434
+msgid "Aug"
+msgstr "Aug"
 
-#: include/dbstructure.php:25
-msgid "There are no tables on MyISAM."
-msgstr "There are no tables on MyISAM."
+#: include/event.php:435
+msgid "Sept"
+msgstr "Sep"
 
-#: include/dbstructure.php:66
-#, php-format
-msgid ""
-"\n"
-"\t\t\tThe friendica developers released update %s recently,\n"
-"\t\t\tbut when I tried to install it, something went terribly wrong.\n"
-"\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n"
-"\t\t\tfriendica developer if you can not help me on your own. My database might be invalid."
-msgstr "\n\t\t\tThe Friendica developers released update %s recently,\n\t\t\tbut when I tried to install it, something went terribly wrong.\n\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n\t\t\tFriendica developer if you can not help me on your own. My database\n                        might be invalid."
+#: include/event.php:436
+msgid "Oct"
+msgstr "Oct"
 
-#: include/dbstructure.php:71
-#, php-format
-msgid ""
-"The error message is\n"
-"[pre]%s[/pre]"
-msgstr "The error message is\n[pre]%s[/pre]"
+#: include/event.php:437
+msgid "Nov"
+msgstr "Nov"
 
-#: include/dbstructure.php:196
-#, php-format
-msgid ""
-"\n"
-"Error %d occurred during database update:\n"
-"%s\n"
-msgstr "\nError %d occurred during database update:\n%s\n"
+#: include/event.php:438
+msgid "Dec"
+msgstr "Dec"
 
-#: include/dbstructure.php:199
-msgid "Errors encountered performing database changes: "
-msgstr "Errors encountered performing database changes: "
+#: include/event.php:440 include/text.php:1211
+msgid "January"
+msgstr "January"
 
-#: include/dbstructure.php:207
-msgid ": Database update"
-msgstr ": Database update"
+#: include/event.php:441 include/text.php:1211
+msgid "February"
+msgstr "February"
 
-#: include/dbstructure.php:439
-#, php-format
-msgid "%s: updating %s table."
-msgstr "%s: updating %s table."
+#: include/event.php:442 include/text.php:1211
+msgid "March"
+msgstr "March"
 
-#: include/diaspora.php:2212
-msgid "Sharing notification from Diaspora network"
-msgstr "Sharing notification from Diaspora network"
+#: include/event.php:443 include/text.php:1211
+msgid "April"
+msgstr "April"
 
-#: include/diaspora.php:3169
-msgid "Attachments:"
-msgstr "Attachments:"
+#: include/event.php:445 include/text.php:1211
+msgid "June"
+msgstr "June"
 
-#: include/enotify.php:27
-msgid "Friendica Notification"
-msgstr "Friendica notification"
+#: include/event.php:446 include/text.php:1211
+msgid "July"
+msgstr "July"
 
-#: include/enotify.php:30
-msgid "Thank You,"
-msgstr "Thank you"
+#: include/event.php:447 include/text.php:1211
+msgid "August"
+msgstr "August"
 
-#: include/enotify.php:33
-#, php-format
-msgid "%s Administrator"
-msgstr "%s Administrator"
+#: include/event.php:448 include/text.php:1211
+msgid "September"
+msgstr "September"
 
-#: include/enotify.php:35
-#, php-format
-msgid "%1$s, %2$s Administrator"
-msgstr "%1$s, %2$s Administrator"
+#: include/event.php:449 include/text.php:1211
+msgid "October"
+msgstr "October"
 
-#: include/enotify.php:78
-#, php-format
-msgid "%s <!item_type!>"
-msgstr "%s <!item_type!>"
+#: include/event.php:450 include/text.php:1211
+msgid "November"
+msgstr "November"
 
-#: include/enotify.php:91
-#, php-format
-msgid "[Friendica:Notify] New mail received at %s"
-msgstr "[Friendica:Notify] New mail received at %s"
+#: include/event.php:451 include/text.php:1211
+msgid "December"
+msgstr "December"
 
-#: include/enotify.php:93
-#, php-format
-msgid "%1$s sent you a new private message at %2$s."
-msgstr "%1$s sent you a new private message at %2$s."
+#: include/event.php:453 mod/cal.php:281 mod/events.php:387
+msgid "today"
+msgstr "today"
 
-#: include/enotify.php:94
-#, php-format
-msgid "%1$s sent you %2$s."
-msgstr "%1$s sent you %2$s."
+#: include/event.php:458
+msgid "No events to display"
+msgstr "No events to display"
 
-#: include/enotify.php:94
-msgid "a private message"
-msgstr "a private message"
+#: include/event.php:571
+msgid "l, F j"
+msgstr "l, F j"
 
-#: include/enotify.php:96
-#, php-format
-msgid "Please visit %s to view and/or reply to your private messages."
-msgstr "Please visit %s to view or reply to your private messages."
+#: include/event.php:593
+msgid "Edit event"
+msgstr "Edit event"
 
-#: include/enotify.php:142
-#, php-format
-msgid "%1$s commented on [url=%2$s]a %3$s[/url]"
-msgstr "%1$s commented on [url=%2$s]a %3$s[/url]"
+#: include/event.php:594
+msgid "Delete event"
+msgstr "Delete event"
 
-#: include/enotify.php:149
-#, php-format
-msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]"
-msgstr "%1$s commented on [url=%2$s]%3$s's %4$s[/url]"
+#: include/event.php:620 include/text.php:1609 include/text.php:1616
+msgid "link to source"
+msgstr "Link to source"
 
-#: include/enotify.php:157
-#, php-format
-msgid "%1$s commented on [url=%2$s]your %3$s[/url]"
-msgstr "%1$s commented on [url=%2$s]your %3$s[/url]"
+#: include/event.php:878
+msgid "Export"
+msgstr "Export"
 
-#: include/enotify.php:167
-#, php-format
-msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s"
-msgstr "[Friendica:Notify] Comment to conversation #%1$d by %2$s"
+#: include/event.php:879
+msgid "Export calendar as ical"
+msgstr "Export calendar as ical"
 
-#: include/enotify.php:169
-#, php-format
-msgid "%s commented on an item/conversation you have been following."
-msgstr "%s commented on an item/conversation you have been following."
+#: include/event.php:880
+msgid "Export calendar as csv"
+msgstr "Export calendar as csv"
 
-#: include/enotify.php:172 include/enotify.php:186 include/enotify.php:200
-#: include/enotify.php:214 include/enotify.php:232 include/enotify.php:246
-#, php-format
-msgid "Please visit %s to view and/or reply to the conversation."
-msgstr "Please visit %s to view or reply to the conversation."
+#: include/follow.php:85 mod/dfrn_request.php:515
+msgid "Disallowed profile URL."
+msgstr "Disallowed profile URL."
 
-#: include/enotify.php:179
-#, php-format
-msgid "[Friendica:Notify] %s posted to your profile wall"
-msgstr "[Friendica:Notify] %s posted to your profile wall"
+#: include/follow.php:90 mod/admin.php:289 mod/admin.php:307
+#: mod/dfrn_request.php:521 mod/friendica.php:116
+msgid "Blocked domain"
+msgstr "Blocked domain"
 
-#: include/enotify.php:181
-#, php-format
-msgid "%1$s posted to your profile wall at %2$s"
-msgstr "%1$s posted to your profile wall at %2$s"
+#: include/follow.php:95
+msgid "Connect URL missing."
+msgstr "Connect URL missing."
 
-#: include/enotify.php:182
-#, php-format
-msgid "%1$s posted to [url=%2$s]your wall[/url]"
-msgstr "%1$s posted to [url=%2$s]your wall[/url]"
+#: include/follow.php:123
+msgid ""
+"This site is not configured to allow communications with other networks."
+msgstr "This site is not configured to allow communications with other networks."
 
-#: include/enotify.php:193
-#, php-format
-msgid "[Friendica:Notify] %s tagged you"
-msgstr "[Friendica:Notify] %s tagged you"
+#: include/follow.php:124 include/follow.php:138
+msgid "No compatible communication protocols or feeds were discovered."
+msgstr "No compatible communication protocols or feeds were discovered."
 
-#: include/enotify.php:195
-#, php-format
-msgid "%1$s tagged you at %2$s"
-msgstr "%1$s tagged you at %2$s"
+#: include/follow.php:136
+msgid "The profile address specified does not provide adequate information."
+msgstr "The profile address specified does not provide adequate information."
 
-#: include/enotify.php:196
-#, php-format
-msgid "%1$s [url=%2$s]tagged you[/url]."
-msgstr "%1$s [url=%2$s]tagged you[/url]."
+#: include/follow.php:141
+msgid "An author or name was not found."
+msgstr "An author or name was not found."
 
-#: include/enotify.php:207
-#, php-format
-msgid "[Friendica:Notify] %s shared a new post"
-msgstr "[Friendica:Notify] %s shared a new post"
+#: include/follow.php:144
+msgid "No browser URL could be matched to this address."
+msgstr "No browser URL could be matched to this address."
 
-#: include/enotify.php:209
-#, php-format
-msgid "%1$s shared a new post at %2$s"
-msgstr "%1$s shared a new post at %2$s"
+#: include/follow.php:147
+msgid ""
+"Unable to match @-style Identity Address with a known protocol or email "
+"contact."
+msgstr "Unable to match @-style identity address with a known protocol or email contact."
 
-#: include/enotify.php:210
-#, php-format
-msgid "%1$s [url=%2$s]shared a post[/url]."
-msgstr "%1$s [url=%2$s]shared a post[/url]."
+#: include/follow.php:148
+msgid "Use mailto: in front of address to force email check."
+msgstr "Use mailto: in front of address to force email check."
 
-#: include/enotify.php:221
-#, php-format
-msgid "[Friendica:Notify] %1$s poked you"
-msgstr "[Friendica:Notify] %1$s poked you"
+#: include/follow.php:154
+msgid ""
+"The profile address specified belongs to a network which has been disabled "
+"on this site."
+msgstr "The profile address specified belongs to a network which has been disabled on this site."
 
-#: include/enotify.php:223
-#, php-format
-msgid "%1$s poked you at %2$s"
-msgstr "%1$s poked you at %2$s"
+#: include/follow.php:159
+msgid ""
+"Limited profile. This person will be unable to receive direct/personal "
+"notifications from you."
+msgstr "Limited profile: This person will be unable to receive direct/private messages from you."
 
-#: include/enotify.php:224
-#, php-format
-msgid "%1$s [url=%2$s]poked you[/url]."
-msgstr "%1$s [url=%2$s]poked you[/url]."
+#: include/follow.php:260
+msgid "Unable to retrieve contact information."
+msgstr "Unable to retrieve contact information."
 
-#: include/enotify.php:239
-#, php-format
-msgid "[Friendica:Notify] %s tagged your post"
-msgstr "[Friendica:Notify] %s tagged your post"
+#: include/identity.php:46
+msgid "Requested account is not available."
+msgstr "Requested account is unavailable."
 
-#: include/enotify.php:241
-#, php-format
-msgid "%1$s tagged your post at %2$s"
-msgstr "%1$s tagged your post at %2$s"
+#: include/identity.php:55 mod/profile.php:23
+msgid "Requested profile is not available."
+msgstr "Requested profile is unavailable."
 
-#: include/enotify.php:242
-#, php-format
-msgid "%1$s tagged [url=%2$s]your post[/url]"
-msgstr "%1$s tagged [url=%2$s]your post[/url]"
+#: include/identity.php:99 include/identity.php:322 include/identity.php:755
+msgid "Edit profile"
+msgstr "Edit profile"
 
-#: include/enotify.php:253
-msgid "[Friendica:Notify] Introduction received"
-msgstr "[Friendica:Notify] Introduction received"
+#: include/identity.php:262
+msgid "Atom feed"
+msgstr "Atom feed"
 
-#: include/enotify.php:255
-#, php-format
-msgid "You've received an introduction from '%1$s' at %2$s"
-msgstr "You've received an introduction from '%1$s' at %2$s"
+#: include/identity.php:293 include/nav.php:192
+msgid "Profiles"
+msgstr "Profiles"
 
-#: include/enotify.php:256
-#, php-format
-msgid "You've received [url=%1$s]an introduction[/url] from %2$s."
-msgstr "You've received [url=%1$s]an introduction[/url] from %2$s."
+#: include/identity.php:293
+msgid "Manage/edit profiles"
+msgstr "Manage/Edit profiles"
 
-#: include/enotify.php:260 include/enotify.php:303
-#, php-format
-msgid "You may visit their profile at %s"
-msgstr "You may visit their profile at %s"
+#: include/identity.php:298 include/identity.php:324 mod/profiles.php:791
+msgid "Change profile photo"
+msgstr "Change profile photo"
 
-#: include/enotify.php:262
-#, php-format
-msgid "Please visit %s to approve or reject the introduction."
-msgstr "Please visit %s to approve or reject the introduction."
+#: include/identity.php:299 mod/profiles.php:792
+msgid "Create New Profile"
+msgstr "Create new profile"
 
-#: include/enotify.php:270
-msgid "[Friendica:Notify] A new person is sharing with you"
-msgstr "[Friendica:Notify] A new person is sharing with you"
+#: include/identity.php:309 mod/profiles.php:781
+msgid "Profile Image"
+msgstr "Profile image"
 
-#: include/enotify.php:272 include/enotify.php:273
-#, php-format
-msgid "%1$s is sharing with you at %2$s"
-msgstr "%1$s is sharing with you at %2$s"
+#: include/identity.php:312 mod/profiles.php:783
+msgid "visible to everybody"
+msgstr "Visible to everybody"
 
-#: include/enotify.php:279
-msgid "[Friendica:Notify] You have a new follower"
-msgstr "[Friendica:Notify] You have a new follower"
+#: include/identity.php:313 mod/profiles.php:688 mod/profiles.php:784
+msgid "Edit visibility"
+msgstr "Edit visibility"
 
-#: include/enotify.php:281 include/enotify.php:282
-#, php-format
-msgid "You have a new follower at %2$s : %1$s"
-msgstr "You have a new follower at %2$s : %1$s"
+#: include/identity.php:341 include/identity.php:642 mod/directory.php:137
+#: mod/notifications.php:253
+msgid "Gender:"
+msgstr "Gender:"
 
-#: include/enotify.php:293
-msgid "[Friendica:Notify] Friend suggestion received"
-msgstr "[Friendica:Notify] Friend suggestion received"
+#: include/identity.php:344 include/identity.php:665 mod/directory.php:139
+msgid "Status:"
+msgstr "Status:"
 
-#: include/enotify.php:295
-#, php-format
-msgid "You've received a friend suggestion from '%1$s' at %2$s"
-msgstr "You've received a friend suggestion from '%1$s' at %2$s"
+#: include/identity.php:346 include/identity.php:682 mod/directory.php:141
+msgid "Homepage:"
+msgstr "Homepage:"
 
-#: include/enotify.php:296
-#, php-format
-msgid ""
-"You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s."
-msgstr "You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s."
+#: include/identity.php:348 include/identity.php:702 mod/contacts.php:652
+#: mod/directory.php:143 mod/notifications.php:249
+msgid "About:"
+msgstr "About:"
 
-#: include/enotify.php:301
-msgid "Name:"
-msgstr "Name:"
+#: include/identity.php:350 mod/contacts.php:650
+msgid "XMPP:"
+msgstr "XMPP:"
 
-#: include/enotify.php:302
-msgid "Photo:"
-msgstr "Photo:"
+#: include/identity.php:436 mod/contacts.php:59 mod/notifications.php:261
+msgid "Network:"
+msgstr "Network:"
 
-#: include/enotify.php:305
-#, php-format
-msgid "Please visit %s to approve or reject the suggestion."
-msgstr "Please visit %s to approve or reject the suggestion."
+#: include/identity.php:465 include/identity.php:556
+msgid "g A l F d"
+msgstr "g A l F d"
 
-#: include/enotify.php:313 include/enotify.php:327
-msgid "[Friendica:Notify] Connection accepted"
-msgstr "[Friendica:Notify] Connection accepted"
+#: include/identity.php:466 include/identity.php:557
+msgid "d"
+msgstr "d"
 
-#: include/enotify.php:315 include/enotify.php:329
-#, php-format
-msgid "'%1$s' has accepted your connection request at %2$s"
-msgstr "'%1$s' has accepted your connection request at %2$s"
+#: include/identity.php:518 include/identity.php:604
+msgid "[today]"
+msgstr "[today]"
 
-#: include/enotify.php:316 include/enotify.php:330
-#, php-format
-msgid "%2$s has accepted your [url=%1$s]connection request[/url]."
-msgstr "%2$s has accepted your [url=%1$s]connection request[/url]."
-
-#: include/enotify.php:320
-msgid ""
-"You are now mutual friends and may exchange status updates, photos, and "
-"email without restriction."
-msgstr "You are now mutual friends and may exchange status updates, photos, and email without restriction."
-
-#: include/enotify.php:322
-#, php-format
-msgid "Please visit %s if you wish to make any changes to this relationship."
-msgstr "Please visit %s if you wish to make any changes to this relationship."
-
-#: include/enotify.php:334
-#, php-format
-msgid ""
-"'%1$s' has chosen to accept you a \"fan\", which restricts some forms of "
-"communication - such as private messaging and some profile interactions. If "
-"this is a celebrity or community page, these settings were applied "
-"automatically."
-msgstr "'%1$s' has chosen to accept you as \"Follower\". This restricts some forms of communication, such as private messaging and some profile interactions. If this is a celebrity or community page, these settings were applied automatically."
-
-#: include/enotify.php:336
-#, php-format
-msgid ""
-"'%1$s' may choose to extend this into a two-way or more permissive "
-"relationship in the future."
-msgstr "'%1$s' may choose to extend this into a two-way or more permissive relationship in the future."
-
-#: include/enotify.php:338
-#, php-format
-msgid "Please visit %s  if you wish to make any changes to this relationship."
-msgstr "Please visit %s  if you wish to make any changes to this relationship."
-
-#: include/enotify.php:348
-msgid "[Friendica System:Notify] registration request"
-msgstr "[Friendica:Notify] registration request"
-
-#: include/enotify.php:350
-#, php-format
-msgid "You've received a registration request from '%1$s' at %2$s"
-msgstr "You've received a registration request from '%1$s' at %2$s."
-
-#: include/enotify.php:351
-#, php-format
-msgid "You've received a [url=%1$s]registration request[/url] from %2$s."
-msgstr "You've received a [url=%1$s]registration request[/url] from %2$s."
-
-#: include/enotify.php:355
-#, php-format
-msgid "Full Name:\t%1$s\\nSite Location:\t%2$s\\nLogin Name:\t%3$s (%4$s)"
-msgstr "Full Name:\t%1$s\\nSite Location:\t%2$s\\nLogin Name:\t%3$s (%4$s)"
-
-#: include/enotify.php:358
-#, php-format
-msgid "Please visit %s to approve or reject the request."
-msgstr "Please visit %s to approve or reject the request."
-
-#: include/group.php:25
-msgid ""
-"A deleted group with this name was revived. Existing item permissions "
-"<strong>may</strong> apply to this group and any future members. If this is "
-"not what you intended, please create another group with a different name."
-msgstr "A deleted group with this name has been revived. Existing item permissions <strong>may</strong> apply to this group and any future members. If this is not what you intended, please create another group with a different name."
-
-#: include/group.php:201
-msgid "Default privacy group for new contacts"
-msgstr "Default privacy group for new contacts"
-
-#: include/group.php:234
-msgid "Everybody"
-msgstr "Everybody"
-
-#: include/group.php:257
-msgid "edit"
-msgstr "edit"
-
-#: include/group.php:278 mod/newmember.php:39
-msgid "Groups"
-msgstr "Groups"
-
-#: include/group.php:280
-msgid "Edit groups"
-msgstr "Edit groups"
-
-#: include/group.php:282
-msgid "Edit group"
-msgstr "Edit group"
-
-#: include/group.php:283
-msgid "Create a new group"
-msgstr "Create new group"
-
-#: include/group.php:284 mod/group.php:100 mod/group.php:197
-msgid "Group Name: "
-msgstr "Group name: "
-
-#: include/group.php:286
-msgid "Contacts not in any group"
-msgstr "Contacts not in any group"
-
-#: include/group.php:288 mod/network.php:210
-msgid "add"
-msgstr "add"
-
-#: include/identity.php:45
-msgid "Requested account is not available."
-msgstr "Requested account is unavailable."
-
-#: include/identity.php:54 mod/profile.php:22
-msgid "Requested profile is not available."
-msgstr "Requested profile is unavailable."
-
-#: include/identity.php:98 include/identity.php:323 include/identity.php:755
-msgid "Edit profile"
-msgstr "Edit profile"
-
-#: include/identity.php:263
-msgid "Atom feed"
-msgstr "Atom feed"
-
-#: include/identity.php:294
-msgid "Manage/edit profiles"
-msgstr "Manage/Edit profiles"
-
-#: include/identity.php:299 include/identity.php:325 mod/profiles.php:790
-msgid "Change profile photo"
-msgstr "Change profile photo"
-
-#: include/identity.php:300 mod/profiles.php:791
-msgid "Create New Profile"
-msgstr "Create new profile"
-
-#: include/identity.php:310 mod/profiles.php:780
-msgid "Profile Image"
-msgstr "Profile image"
-
-#: include/identity.php:313 mod/profiles.php:782
-msgid "visible to everybody"
-msgstr "Visible to everybody"
-
-#: include/identity.php:314 mod/profiles.php:687 mod/profiles.php:783
-msgid "Edit visibility"
-msgstr "Edit visibility"
-
-#: include/identity.php:342 include/identity.php:642 mod/directory.php:137
-#: mod/notifications.php:252
-msgid "Gender:"
-msgstr "Gender:"
-
-#: include/identity.php:345 include/identity.php:665 mod/directory.php:139
-msgid "Status:"
-msgstr "Status:"
-
-#: include/identity.php:347 include/identity.php:682 mod/directory.php:141
-msgid "Homepage:"
-msgstr "Homepage:"
-
-#: include/identity.php:349 include/identity.php:702 mod/directory.php:143
-#: mod/notifications.php:248 mod/contacts.php:645
-msgid "About:"
-msgstr "About:"
-
-#: include/identity.php:351 mod/contacts.php:643
-msgid "XMPP:"
-msgstr "XMPP:"
-
-#: include/identity.php:437 mod/notifications.php:260 mod/contacts.php:58
-msgid "Network:"
-msgstr "Network:"
-
-#: include/identity.php:466 include/identity.php:556
-msgid "g A l F d"
-msgstr "g A l F d"
-
-#: include/identity.php:467 include/identity.php:557
-msgid "F d"
-msgstr "F d"
-
-#: include/identity.php:518 include/identity.php:607
-msgid "[today]"
-msgstr "[today]"
-
-#: include/identity.php:530
-msgid "Birthday Reminders"
-msgstr "Birthday reminders"
+#: include/identity.php:530
+msgid "Birthday Reminders"
+msgstr "Birthday reminders"
 
 #: include/identity.php:531
 msgid "Birthdays this week:"
 msgstr "Birthdays this week:"
 
-#: include/identity.php:593
+#: include/identity.php:591
 msgid "[No description]"
 msgstr "[No description]"
 
@@ -2681,7 +2204,13 @@ msgstr "Event reminders"
 msgid "Events this week:"
 msgstr "Events this week:"
 
-#: include/identity.php:639 mod/settings.php:1287
+#: include/identity.php:630 include/identity.php:759 include/identity.php:792
+#: include/nav.php:85 mod/newmember.php:20 mod/profperm.php:107
+#: mod/contacts.php:659 mod/contacts.php:861 view/theme/frio/theme.php:254
+msgid "Profile"
+msgstr "Profile"
+
+#: include/identity.php:639 mod/settings.php:1288
 msgid "Full Name:"
 msgstr "Full name:"
 
@@ -2702,20 +2231,20 @@ msgstr "Age:"
 msgid "for %1$d %2$s"
 msgstr "for %1$d %2$s"
 
-#: include/identity.php:678 mod/profiles.php:706
+#: include/identity.php:678 mod/profiles.php:707
 msgid "Sexual Preference:"
 msgstr "Sexual preference:"
 
-#: include/identity.php:686 mod/profiles.php:733
+#: include/identity.php:686 mod/profiles.php:734
 msgid "Hometown:"
 msgstr "Home town:"
 
-#: include/identity.php:690 mod/notifications.php:250 mod/follow.php:139
-#: mod/contacts.php:647
+#: include/identity.php:690 mod/contacts.php:654 mod/follow.php:174
+#: mod/notifications.php:251
 msgid "Tags:"
 msgstr "Tags:"
 
-#: include/identity.php:694 mod/profiles.php:734
+#: include/identity.php:694 mod/profiles.php:735
 msgid "Political Views:"
 msgstr "Political views:"
 
@@ -2727,11 +2256,11 @@ msgstr "Religion:"
 msgid "Hobbies/Interests:"
 msgstr "Hobbies/Interests:"
 
-#: include/identity.php:710 mod/profiles.php:738
+#: include/identity.php:710 mod/profiles.php:739
 msgid "Likes:"
 msgstr "Likes:"
 
-#: include/identity.php:714 mod/profiles.php:739
+#: include/identity.php:714 mod/profiles.php:740
 msgid "Dislikes:"
 msgstr "Dislikes:"
 
@@ -2771,27 +2300,54 @@ msgstr "School/Education:"
 msgid "Forums:"
 msgstr "Forums:"
 
-#: include/identity.php:760 mod/events.php:509
+#: include/identity.php:760 mod/events.php:510
 msgid "Basic"
 msgstr "Basic"
 
-#: include/identity.php:761 mod/events.php:510 mod/admin.php:1149
-#: mod/contacts.php:883
+#: include/identity.php:761 mod/admin.php:1151 mod/contacts.php:890
+#: mod/events.php:511
 msgid "Advanced"
 msgstr "Advanced"
 
-#: include/identity.php:787 mod/follow.php:147 mod/contacts.php:849
+#: include/identity.php:784 include/nav.php:84 mod/contacts.php:657
+#: mod/contacts.php:853 view/theme/frio/theme.php:253
+msgid "Status"
+msgstr "Status"
+
+#: include/identity.php:787 mod/contacts.php:856 mod/follow.php:182
+#: mod/unfollow.php:133
 msgid "Status Messages and Posts"
 msgstr "Status Messages and Posts"
 
-#: include/identity.php:795 mod/contacts.php:857
+#: include/identity.php:795 mod/contacts.php:864
 msgid "Profile Details"
 msgstr "Profile Details"
 
-#: include/identity.php:803 mod/photos.php:95
+#: include/identity.php:800 include/nav.php:86 mod/fbrowser.php:34
+#: view/theme/frio/theme.php:255
+msgid "Photos"
+msgstr "Photos"
+
+#: include/identity.php:803 mod/photos.php:96
 msgid "Photo Albums"
 msgstr "Photo Albums"
 
+#: include/identity.php:808 include/identity.php:811 include/nav.php:87
+#: view/theme/frio/theme.php:256
+msgid "Videos"
+msgstr "Videos"
+
+#: include/identity.php:820 include/identity.php:831 include/nav.php:88
+#: include/nav.php:152 mod/cal.php:273 mod/events.php:378
+#: view/theme/frio/theme.php:257 view/theme/frio/theme.php:261
+msgid "Events"
+msgstr "Events"
+
+#: include/identity.php:823 include/identity.php:834 include/nav.php:152
+#: view/theme/frio/theme.php:261
+msgid "Events and Calendar"
+msgstr "Events and calendar"
+
 #: include/identity.php:842 mod/notes.php:49
 msgid "Personal Notes"
 msgstr "Personal notes"
@@ -2800,316 +2356,758 @@ msgstr "Personal notes"
 msgid "Only You Can See This"
 msgstr "Only you can see this."
 
-#: include/items.php:1707 mod/dfrn_confirm.php:738 mod/dfrn_request.php:759
+#: include/identity.php:853 include/identity.php:856 include/nav.php:131
+#: include/nav.php:195 include/text.php:1101 mod/viewcontacts.php:124
+#: mod/contacts.php:812 mod/contacts.php:873 view/theme/frio/theme.php:264
+msgid "Contacts"
+msgstr "Contacts"
+
+#: include/items.php:1715 mod/dfrn_confirm.php:738 mod/dfrn_request.php:760
 msgid "[Name Withheld]"
 msgstr "[Name Withheld]"
 
-#: include/items.php:2083 mod/notice.php:17 mod/viewsrc.php:16
-#: mod/admin.php:256 mod/admin.php:1655 mod/admin.php:1906 mod/display.php:120
-#: mod/display.php:292 mod/display.php:505
+#: include/items.php:2091 mod/viewsrc.php:16 mod/admin.php:257
+#: mod/admin.php:1657 mod/admin.php:1908 mod/display.php:122
+#: mod/display.php:291 mod/display.php:496 mod/notice.php:18
 msgid "Item not found."
 msgstr "Item not found."
 
-#: include/items.php:2126
+#: include/items.php:2134
 msgid "Do you really want to delete this item?"
 msgstr "Do you really want to delete this item?"
 
-#: include/items.php:2128 mod/api.php:107 mod/message.php:208
-#: mod/suggest.php:31 mod/dfrn_request.php:880 mod/follow.php:115
-#: mod/profiles.php:643 mod/profiles.php:646 mod/profiles.php:673
-#: mod/register.php:248 mod/contacts.php:455 mod/settings.php:1172
-#: mod/settings.php:1178 mod/settings.php:1185 mod/settings.php:1189
-#: mod/settings.php:1194 mod/settings.php:1199 mod/settings.php:1204
-#: mod/settings.php:1209 mod/settings.php:1235 mod/settings.php:1236
-#: mod/settings.php:1237 mod/settings.php:1238 mod/settings.php:1239
+#: include/items.php:2136 mod/api.php:107 mod/contacts.php:456
+#: mod/dfrn_request.php:881 mod/follow.php:150 mod/message.php:207
+#: mod/profiles.php:644 mod/profiles.php:647 mod/profiles.php:674
+#: mod/register.php:249 mod/settings.php:1173 mod/settings.php:1179
+#: mod/settings.php:1186 mod/settings.php:1190 mod/settings.php:1195
+#: mod/settings.php:1200 mod/settings.php:1205 mod/settings.php:1210
+#: mod/settings.php:1236 mod/settings.php:1237 mod/settings.php:1238
+#: mod/settings.php:1239 mod/settings.php:1240 mod/suggest.php:32
 msgid "Yes"
 msgstr "Yes"
 
-#: include/items.php:2267 mod/allfriends.php:14 mod/api.php:28 mod/api.php:33
-#: mod/attach.php:35 mod/cal.php:301 mod/common.php:20 mod/crepair.php:105
-#: mod/delegate.php:14 mod/dfrn_confirm.php:63 mod/editpost.php:12
-#: mod/fsuggest.php:80 mod/group.php:20 mod/manage.php:103 mod/message.php:48
-#: mod/message.php:173 mod/mood.php:116 mod/nogroup.php:29 mod/notes.php:25
-#: mod/notifications.php:73 mod/ostatus_subscribe.php:11 mod/photos.php:168
-#: mod/photos.php:1111 mod/poke.php:155 mod/repair_ostatus.php:11
-#: mod/suggest.php:60 mod/viewcontacts.php:49 mod/wall_attach.php:69
-#: mod/wall_attach.php:72 mod/wall_upload.php:101 mod/wall_upload.php:104
-#: mod/wallmessage.php:11 mod/wallmessage.php:35 mod/wallmessage.php:75
-#: mod/wallmessage.php:99 mod/regmod.php:106 mod/uimport.php:26
-#: mod/dirfind.php:15 mod/events.php:188 mod/follow.php:13 mod/follow.php:76
-#: mod/follow.php:160 mod/item.php:197 mod/item.php:209
-#: mod/profile_photo.php:19 mod/profile_photo.php:179
-#: mod/profile_photo.php:190 mod/profile_photo.php:203 mod/profiles.php:172
-#: mod/profiles.php:610 mod/register.php:45 mod/contacts.php:363
-#: mod/display.php:502 mod/invite.php:17 mod/invite.php:105 mod/network.php:7
-#: mod/settings.php:24 mod/settings.php:132 mod/settings.php:669 index.php:410
+#: include/items.php:2275 mod/api.php:28 mod/api.php:33 mod/attach.php:35
+#: mod/common.php:20 mod/crepair.php:105 mod/fsuggest.php:80
+#: mod/nogroup.php:29 mod/notes.php:25 mod/viewcontacts.php:49
+#: mod/wall_attach.php:69 mod/wall_attach.php:72 mod/uimport.php:26
+#: mod/allfriends.php:15 mod/cal.php:302 mod/contacts.php:364
+#: mod/delegate.php:15 mod/dfrn_confirm.php:64 mod/dirfind.php:16
+#: mod/display.php:493 mod/editpost.php:13 mod/events.php:189
+#: mod/follow.php:14 mod/follow.php:55 mod/follow.php:118 mod/group.php:21
+#: mod/invite.php:18 mod/invite.php:106 mod/item.php:198 mod/item.php:210
+#: mod/manage.php:104 mod/message.php:49 mod/message.php:172 mod/mood.php:117
+#: mod/network.php:17 mod/notifications.php:74 mod/ostatus_subscribe.php:12
+#: mod/photos.php:169 mod/photos.php:1112 mod/poke.php:156
+#: mod/profile_photo.php:20 mod/profile_photo.php:180
+#: mod/profile_photo.php:191 mod/profile_photo.php:204 mod/profiles.php:173
+#: mod/profiles.php:611 mod/register.php:46 mod/regmod.php:107
+#: mod/repair_ostatus.php:12 mod/settings.php:25 mod/settings.php:133
+#: mod/settings.php:670 mod/suggest.php:61 mod/unfollow.php:14
+#: mod/unfollow.php:57 mod/unfollow.php:90 mod/wall_upload.php:102
+#: mod/wall_upload.php:105 mod/wallmessage.php:12 mod/wallmessage.php:36
+#: mod/wallmessage.php:76 mod/wallmessage.php:100 index.php:411
 msgid "Permission denied."
 msgstr "Permission denied."
 
-#: include/items.php:2384
+#: include/items.php:2392
 msgid "Archives"
 msgstr "Archives"
 
-#: include/oembed.php:253
-msgid "Embedded content"
-msgstr "Embedded content"
-
-#: include/oembed.php:261
-msgid "Embedding disabled"
-msgstr "Embedding disabled"
-
-#: include/ostatus.php:1964
+#: include/like.php:45
 #, php-format
-msgid "%s is now following %s."
-msgstr "%s is now following %s."
+msgid "%1$s is attending %2$s's %3$s"
+msgstr "%1$s is going to %2$s's %3$s"
 
-#: include/ostatus.php:1965
-msgid "following"
-msgstr "following"
+#: include/like.php:50
+#, php-format
+msgid "%1$s is not attending %2$s's %3$s"
+msgstr "%1$s is not going to %2$s's %3$s"
 
-#: include/ostatus.php:1968
+#: include/like.php:55
 #, php-format
-msgid "%s stopped following %s."
-msgstr "%s stopped following %s."
+msgid "%1$s may attend %2$s's %3$s"
+msgstr "%1$s may go to %2$s's %3$s"
 
-#: include/ostatus.php:1969
-msgid "stopped following"
-msgstr "stopped following"
+#: include/message.php:15 include/message.php:169
+msgid "[no subject]"
+msgstr "[no subject]"
 
-#: include/plugin.php:519 include/plugin.php:521
-msgid "Click here to upgrade."
-msgstr "Click here to upgrade."
+#: include/nav.php:38 mod/navigation.php:22
+msgid "Nothing new here"
+msgstr "Nothing new here"
 
-#: include/plugin.php:528
-msgid "This action exceeds the limits set by your subscription plan."
-msgstr "This action exceeds the limits set by your subscription plan."
+#: include/nav.php:42 mod/navigation.php:26
+msgid "Clear notifications"
+msgstr "Clear notifications"
 
-#: include/plugin.php:533
-msgid "This action is not available under your subscription plan."
-msgstr "This action is not available under your subscription plan."
+#: include/nav.php:43 include/text.php:1094
+msgid "@name, !forum, #tags, content"
+msgstr "@name, !forum, #tags, content"
 
-#: include/text.php:314
-msgid "newer"
-msgstr "Later posts"
+#: include/nav.php:81 view/theme/frio/theme.php:250 boot.php:860
+msgid "Logout"
+msgstr "Logout"
 
-#: include/text.php:315
-msgid "older"
-msgstr "Earlier posts"
+#: include/nav.php:81 view/theme/frio/theme.php:250
+msgid "End this session"
+msgstr "End this session"
 
-#: include/text.php:320
-msgid "first"
-msgstr "first"
+#: include/nav.php:84 include/nav.php:164 view/theme/frio/theme.php:253
+msgid "Your posts and conversations"
+msgstr "My posts and conversations"
 
-#: include/text.php:321
-msgid "prev"
-msgstr "prev"
+#: include/nav.php:85 view/theme/frio/theme.php:254
+msgid "Your profile page"
+msgstr "My profile page"
 
-#: include/text.php:355
-msgid "next"
-msgstr "next"
+#: include/nav.php:86 view/theme/frio/theme.php:255
+msgid "Your photos"
+msgstr "My photos"
 
-#: include/text.php:356
-msgid "last"
-msgstr "last"
+#: include/nav.php:87 view/theme/frio/theme.php:256
+msgid "Your videos"
+msgstr "My videos"
 
-#: include/text.php:410
-msgid "Loading more entries..."
-msgstr "Loading more entries..."
+#: include/nav.php:88 view/theme/frio/theme.php:257
+msgid "Your events"
+msgstr "My events"
 
-#: include/text.php:411
-msgid "The end"
-msgstr "The end"
+#: include/nav.php:89
+msgid "Personal notes"
+msgstr "Personal notes"
 
-#: include/text.php:970
-msgid "No contacts"
-msgstr "No contacts"
+#: include/nav.php:89
+msgid "Your personal notes"
+msgstr "My personal notes"
 
-#: include/text.php:994
+#: include/nav.php:98 mod/bookmarklet.php:15 boot.php:861
+msgid "Login"
+msgstr "Login"
+
+#: include/nav.php:98
+msgid "Sign in"
+msgstr "Sign in"
+
+#: include/nav.php:108
+msgid "Home Page"
+msgstr "Home page"
+
+#: include/nav.php:112 mod/register.php:293 boot.php:837
+msgid "Register"
+msgstr "Sign up now >>"
+
+#: include/nav.php:112
+msgid "Create an account"
+msgstr "Create account"
+
+#: include/nav.php:118 mod/help.php:51 view/theme/vier/theme.php:292
+msgid "Help"
+msgstr "Help"
+
+#: include/nav.php:118
+msgid "Help and documentation"
+msgstr "Help and documentation"
+
+#: include/nav.php:122
+msgid "Apps"
+msgstr "Apps"
+
+#: include/nav.php:122
+msgid "Addon applications, utilities, games"
+msgstr "Addon applications, utilities, games"
+
+#: include/nav.php:126 include/text.php:1091 mod/search.php:152
+msgid "Search"
+msgstr "Search"
+
+#: include/nav.php:126
+msgid "Search site content"
+msgstr "Search site content"
+
+#: include/nav.php:129 include/text.php:1099
+msgid "Full Text"
+msgstr "Full text"
+
+#: include/nav.php:130 include/text.php:1100
+msgid "Tags"
+msgstr "Tags"
+
+#: include/nav.php:146 include/nav.php:148 mod/community.php:31
+msgid "Community"
+msgstr "Community"
+
+#: include/nav.php:146
+msgid "Conversations on this site"
+msgstr "Public conversations on this site"
+
+#: include/nav.php:148
+msgid "Conversations on the network"
+msgstr "Conversations on the network"
+
+#: include/nav.php:155
+msgid "Directory"
+msgstr "Directory"
+
+#: include/nav.php:155
+msgid "People directory"
+msgstr "People directory"
+
+#: include/nav.php:157
+msgid "Information"
+msgstr "Information"
+
+#: include/nav.php:157
+msgid "Information about this friendica instance"
+msgstr "Information about this Friendica instance"
+
+#: include/nav.php:161 view/theme/frio/theme.php:260
+msgid "Conversations from your friends"
+msgstr "My friends' conversations"
+
+#: include/nav.php:162
+msgid "Network Reset"
+msgstr "Network reset"
+
+#: include/nav.php:162
+msgid "Load Network page with no filters"
+msgstr "Load network page without filters"
+
+#: include/nav.php:169
+msgid "Friend Requests"
+msgstr "Friend requests"
+
+#: include/nav.php:172 mod/notifications.php:99
+msgid "Notifications"
+msgstr "Notifications"
+
+#: include/nav.php:173
+msgid "See all notifications"
+msgstr "See all notifications"
+
+#: include/nav.php:174 mod/settings.php:908
+msgid "Mark as seen"
+msgstr "Mark as seen"
+
+#: include/nav.php:174
+msgid "Mark all system notifications seen"
+msgstr "Mark all system notifications seen"
+
+#: include/nav.php:178 mod/message.php:180 view/theme/frio/theme.php:262
+msgid "Messages"
+msgstr "Messages"
+
+#: include/nav.php:178 view/theme/frio/theme.php:262
+msgid "Private mail"
+msgstr "Private messages"
+
+#: include/nav.php:179
+msgid "Inbox"
+msgstr "Inbox"
+
+#: include/nav.php:180
+msgid "Outbox"
+msgstr "Outbox"
+
+#: include/nav.php:181 mod/message.php:19
+msgid "New Message"
+msgstr "New Message"
+
+#: include/nav.php:184
+msgid "Manage"
+msgstr "Manage"
+
+#: include/nav.php:184
+msgid "Manage other pages"
+msgstr "Manage other pages"
+
+#: include/nav.php:187 mod/settings.php:84
+msgid "Delegations"
+msgstr "Delegations"
+
+#: include/nav.php:187 mod/delegate.php:133
+msgid "Delegate Page Management"
+msgstr "Delegate Page Management"
+
+#: include/nav.php:189 mod/newmember.php:15 mod/admin.php:1710
+#: mod/admin.php:1986 mod/settings.php:114 view/theme/frio/theme.php:263
+msgid "Settings"
+msgstr "Settings"
+
+#: include/nav.php:189 view/theme/frio/theme.php:263
+msgid "Account settings"
+msgstr "Account settings"
+
+#: include/nav.php:192
+msgid "Manage/Edit Profiles"
+msgstr "Manage/Edit profiles"
+
+#: include/nav.php:195 view/theme/frio/theme.php:264
+msgid "Manage/edit friends and contacts"
+msgstr "Manage/Edit friends and contacts"
+
+#: include/nav.php:200 mod/admin.php:203
+msgid "Admin"
+msgstr "Admin"
+
+#: include/nav.php:200
+msgid "Site setup and configuration"
+msgstr "Site setup and configuration"
+
+#: include/nav.php:203
+msgid "Navigation"
+msgstr "Navigation"
+
+#: include/nav.php:203
+msgid "Site map"
+msgstr "Site map"
+
+#: include/network.php:701
+msgid "view full size"
+msgstr "view full size"
+
+#: include/oembed.php:254
+msgid "Embedded content"
+msgstr "Embedded content"
+
+#: include/oembed.php:262
+msgid "Embedding disabled"
+msgstr "Embedding disabled"
+
+#: include/ostatus.php:1643
+#, php-format
+msgid "%s is now following %s."
+msgstr "%s is now following %s."
+
+#: include/ostatus.php:1644
+msgid "following"
+msgstr "following"
+
+#: include/ostatus.php:1647
+#, php-format
+msgid "%s stopped following %s."
+msgstr "%s stopped following %s."
+
+#: include/ostatus.php:1648
+msgid "stopped following"
+msgstr "stopped following"
+
+#: include/plugin.php:519 include/plugin.php:521
+msgid "Click here to upgrade."
+msgstr "Click here to upgrade."
+
+#: include/plugin.php:528
+msgid "This action exceeds the limits set by your subscription plan."
+msgstr "This action exceeds the limits set by your subscription plan."
+
+#: include/plugin.php:533
+msgid "This action is not available under your subscription plan."
+msgstr "This action is not available under your subscription plan."
+
+#: include/security.php:64
+msgid "Welcome "
+msgstr "Welcome "
+
+#: include/security.php:65
+msgid "Please upload a profile photo."
+msgstr "Please upload a profile photo."
+
+#: include/security.php:67
+msgid "Welcome back "
+msgstr "Welcome back "
+
+#: include/security.php:424
+msgid ""
+"The form security token was not correct. This probably happened because the "
+"form has been opened for too long (>3 hours) before submitting it."
+msgstr "The form security token was incorrect. This probably happened because the form has not been submitted within 3 hours."
+
+#: include/text.php:315
+msgid "newer"
+msgstr "Later posts"
+
+#: include/text.php:316
+msgid "older"
+msgstr "Earlier posts"
+
+#: include/text.php:321
+msgid "first"
+msgstr "first"
+
+#: include/text.php:322
+msgid "prev"
+msgstr "prev"
+
+#: include/text.php:356
+msgid "next"
+msgstr "next"
+
+#: include/text.php:357
+msgid "last"
+msgstr "last"
+
+#: include/text.php:411
+msgid "Loading more entries..."
+msgstr "Loading more entries..."
+
+#: include/text.php:412
+msgid "The end"
+msgstr "The end"
+
+#: include/text.php:965
+msgid "No contacts"
+msgstr "No contacts"
+
+#: include/text.php:989
 #, php-format
 msgid "%d Contact"
 msgid_plural "%d Contacts"
 msgstr[0] "%d contact"
 msgstr[1] "%d contacts"
 
-#: include/text.php:1007
+#: include/text.php:1002
 msgid "View Contacts"
 msgstr "View contacts"
 
-#: include/text.php:1097 mod/editpost.php:101 mod/filer.php:32
-#: mod/notes.php:64
+#: include/text.php:1092 mod/filer.php:32 mod/notes.php:64
+#: mod/editpost.php:102
 msgid "Save"
 msgstr "Save"
 
-#: include/text.php:1158
+#: include/text.php:1153
 msgid "poke"
 msgstr "poke"
 
-#: include/text.php:1158
+#: include/text.php:1153
 msgid "poked"
 msgstr "poked"
 
-#: include/text.php:1159
+#: include/text.php:1154
 msgid "ping"
 msgstr "ping"
 
-#: include/text.php:1159
+#: include/text.php:1154
 msgid "pinged"
 msgstr "pinged"
 
-#: include/text.php:1160
+#: include/text.php:1155
 msgid "prod"
 msgstr "prod"
 
-#: include/text.php:1160
+#: include/text.php:1155
 msgid "prodded"
 msgstr "prodded"
 
-#: include/text.php:1161
+#: include/text.php:1156
 msgid "slap"
 msgstr "slap"
 
-#: include/text.php:1161
+#: include/text.php:1156
 msgid "slapped"
 msgstr "slapped"
 
-#: include/text.php:1162
+#: include/text.php:1157
 msgid "finger"
 msgstr "finger"
 
-#: include/text.php:1162
+#: include/text.php:1157
 msgid "fingered"
 msgstr "fingered"
 
-#: include/text.php:1163
+#: include/text.php:1158
 msgid "rebuff"
 msgstr "rebuff"
 
-#: include/text.php:1163
+#: include/text.php:1158
 msgid "rebuffed"
 msgstr "rebuffed"
 
-#: include/text.php:1177
+#: include/text.php:1172
 msgid "happy"
 msgstr "happy"
 
-#: include/text.php:1178
+#: include/text.php:1173
 msgid "sad"
 msgstr "sad"
 
-#: include/text.php:1179
+#: include/text.php:1174
 msgid "mellow"
 msgstr "mellow"
 
-#: include/text.php:1180
+#: include/text.php:1175
 msgid "tired"
 msgstr "tired"
 
-#: include/text.php:1181
+#: include/text.php:1176
 msgid "perky"
 msgstr "perky"
 
-#: include/text.php:1182
+#: include/text.php:1177
 msgid "angry"
 msgstr "angry"
 
-#: include/text.php:1183
+#: include/text.php:1178
 msgid "stupified"
 msgstr "stupefied"
 
-#: include/text.php:1184
+#: include/text.php:1179
 msgid "puzzled"
 msgstr "puzzled"
 
-#: include/text.php:1185
+#: include/text.php:1180
 msgid "interested"
 msgstr "interested"
 
-#: include/text.php:1186
+#: include/text.php:1181
 msgid "bitter"
 msgstr "bitter"
 
-#: include/text.php:1187
+#: include/text.php:1182
 msgid "cheerful"
 msgstr "cheerful"
 
-#: include/text.php:1188
+#: include/text.php:1183
 msgid "alive"
 msgstr "alive"
 
-#: include/text.php:1189
+#: include/text.php:1184
 msgid "annoyed"
 msgstr "annoyed"
 
-#: include/text.php:1190
+#: include/text.php:1185
 msgid "anxious"
 msgstr "anxious"
 
-#: include/text.php:1191
+#: include/text.php:1186
 msgid "cranky"
 msgstr "cranky"
 
-#: include/text.php:1192
+#: include/text.php:1187
 msgid "disturbed"
 msgstr "disturbed"
 
-#: include/text.php:1193
+#: include/text.php:1188
 msgid "frustrated"
 msgstr "frustrated"
 
-#: include/text.php:1194
+#: include/text.php:1189
 msgid "motivated"
 msgstr "motivated"
 
-#: include/text.php:1195
+#: include/text.php:1190
 msgid "relaxed"
 msgstr "relaxed"
 
-#: include/text.php:1196
+#: include/text.php:1191
 msgid "surprised"
 msgstr "surprised"
 
-#: include/text.php:1406 mod/videos.php:388
+#: include/text.php:1408 mod/videos.php:389
 msgid "View Video"
 msgstr "View video"
 
-#: include/text.php:1423
+#: include/text.php:1425
 msgid "bytes"
 msgstr "bytes"
 
-#: include/text.php:1464 include/text.php:1475
+#: include/text.php:1460 include/text.php:1471
 msgid "Click to open/close"
 msgstr "Click to open/close"
 
-#: include/text.php:1607
+#: include/text.php:1603
 msgid "View on separate page"
 msgstr "View on separate page"
 
-#: include/text.php:1608
+#: include/text.php:1604
 msgid "view on separate page"
 msgstr "view on separate page"
 
-#: include/text.php:1893
+#: include/text.php:1889
 msgid "activity"
 msgstr "activity"
 
-#: include/text.php:1895 mod/content.php:624 object/Item.php:419
-#: object/Item.php:431
+#: include/text.php:1891 mod/content.php:625 object/Item.php:411
+#: object/Item.php:423
 msgid "comment"
 msgid_plural "comments"
 msgstr[0] "comment"
 msgstr[1] "comments"
 
-#: include/text.php:1898
+#: include/text.php:1894
 msgid "post"
 msgstr "post"
 
-#: include/text.php:2064
+#: include/text.php:2060
 msgid "Item filed"
 msgstr "Item filed"
 
-#: mod/allfriends.php:48
-msgid "No friends to display."
-msgstr "No friends to display."
+#: include/uimport.php:84
+msgid "Error decoding account file"
+msgstr "Error decoding account file"
+
+#: include/uimport.php:90
+msgid "Error! No version data in file! This is not a Friendica account file?"
+msgstr "Error! No version data in file! Is this a Friendica account file?"
+
+#: include/uimport.php:107 include/uimport.php:118
+msgid "Error! Cannot check nickname"
+msgstr "Error! Cannot check nickname."
+
+#: include/uimport.php:111 include/uimport.php:122
+#, php-format
+msgid "User '%s' already exists on this server!"
+msgstr "User '%s' already exists on this server!"
+
+#: include/uimport.php:144
+msgid "User creation error"
+msgstr "User creation error"
+
+#: include/uimport.php:165
+msgid "User profile creation error"
+msgstr "User profile creation error"
+
+#: include/uimport.php:214
+#, php-format
+msgid "%d contact not imported"
+msgid_plural "%d contacts not imported"
+msgstr[0] "%d contact not imported"
+msgstr[1] "%d contacts not imported"
+
+#: include/uimport.php:280
+msgid "Done. You can now login with your username and password"
+msgstr "Done. You can now login with your username and password"
+
+#: include/user.php:41 mod/settings.php:378
+msgid "Passwords do not match. Password unchanged."
+msgstr "Passwords do not match. Password unchanged."
+
+#: include/user.php:50
+msgid "An invitation is required."
+msgstr "An invitation is required."
+
+#: include/user.php:55
+msgid "Invitation could not be verified."
+msgstr "Invitation could not be verified."
+
+#: include/user.php:63
+msgid "Invalid OpenID url"
+msgstr "Invalid OpenID URL"
+
+#: include/user.php:84
+msgid "Please enter the required information."
+msgstr "Please enter the required information."
+
+#: include/user.php:98
+msgid "Please use a shorter name."
+msgstr "Please use a shorter name."
+
+#: include/user.php:100
+msgid "Name too short."
+msgstr "Name too short."
+
+#: include/user.php:108
+msgid "That doesn't appear to be your full (First Last) name."
+msgstr "That doesn't appear to be your full (i.e first and last) name."
+
+#: include/user.php:113
+msgid "Your email domain is not among those allowed on this site."
+msgstr "Your email domain is not allowed on this site."
+
+#: include/user.php:116
+msgid "Not a valid email address."
+msgstr "Not a valid email address."
+
+#: include/user.php:129
+msgid "Cannot use that email."
+msgstr "Cannot use that email."
+
+#: include/user.php:135
+msgid "Your \"nickname\" can only contain \"a-z\", \"0-9\" and \"_\"."
+msgstr "Your \"nickname\" can only contain \"a-z\", \"0-9\" and \"_\"."
+
+#: include/user.php:142 include/user.php:230
+msgid "Nickname is already registered. Please choose another."
+msgstr "Nickname is already registered. Please choose another."
+
+#: include/user.php:152
+msgid ""
+"Nickname was once registered here and may not be re-used. Please choose "
+"another."
+msgstr "Nickname was once registered here and may not be re-used. Please choose another."
+
+#: include/user.php:168
+msgid "SERIOUS ERROR: Generation of security keys failed."
+msgstr "SERIOUS ERROR: Generation of security keys failed."
+
+#: include/user.php:216
+msgid "An error occurred during registration. Please try again."
+msgstr "An error occurred during registration. Please try again."
+
+#: include/user.php:239 view/theme/duepuntozero/config.php:47
+msgid "default"
+msgstr "default"
+
+#: include/user.php:249
+msgid "An error occurred creating your default profile. Please try again."
+msgstr "An error occurred creating your default profile. Please try again."
+
+#: include/user.php:399
+#, php-format
+msgid ""
+"\n"
+"\t\tDear %1$s,\n"
+"\t\t\tThank you for registering at %2$s. Your account is pending for approval by the administrator.\n"
+"\t"
+msgstr "\n\t\tDear %1$s,\n\t\t\tThank you for signing up at %2$s. Your account is pending approval by the administrator.\n\t"
+
+#: include/user.php:409
+#, php-format
+msgid "Registration at %s"
+msgstr "Registration at %s"
+
+#: include/user.php:419
+#, php-format
+msgid ""
+"\n"
+"\t\tDear %1$s,\n"
+"\t\t\tThank you for registering at %2$s. Your account has been created.\n"
+"\t"
+msgstr "\n\t\tDear %1$s,\n\t\t\tThank you for signing up at %2$s. Your account has been created.\n\t"
+
+#: include/user.php:423
+#, php-format
+msgid ""
+"\n"
+"\t\tThe login details are as follows:\n"
+"\t\t\tSite Location:\t%3$s\n"
+"\t\t\tLogin Name:\t%1$s\n"
+"\t\t\tPassword:\t%5$s\n"
+"\n"
+"\t\tYou may change your password from your account \"Settings\" page after logging\n"
+"\t\tin.\n"
+"\n"
+"\t\tPlease take a few moments to review the other account settings on that page.\n"
+"\n"
+"\t\tYou may also wish to add some basic information to your default profile\n"
+"\t\t(on the \"Profiles\" page) so that other people can easily find you.\n"
+"\n"
+"\t\tWe recommend setting your full name, adding a profile photo,\n"
+"\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n"
+"\t\tperhaps what country you live in; if you do not wish to be more specific\n"
+"\t\tthan that.\n"
+"\n"
+"\t\tWe fully respect your right to privacy, and none of these items are necessary.\n"
+"\t\tIf you are new and do not know anybody here, they may help\n"
+"\t\tyou to make some new and interesting friends.\n"
+"\n"
+"\n"
+"\t\tThank you and welcome to %2$s."
+msgstr "\n\t\tThe login details are as follows:\n\t\t\tSite Location:\t%3$s\n\t\t\tLogin Name:\t%1$s\n\t\t\tPassword:\t%5$s\n\n\t\tYou may change your password for your account \"Settings\" after logging\n\t\tin.\n\n\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\tYou may wish to add some basic information to your default profile\n\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\tWe recommend setting your full name, adding a profile photo,\n\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\tperhaps what country you live in, if you do not wish to be more specific\n\t\tthan that.\n\n\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\tIf you are new and do not know anybody here, these settings may help to\n\t\tmake new and interesting friends.\n\n\n\t\tThank you and welcome to %2$s."
+
+#: include/user.php:455 mod/admin.php:1400
+#, php-format
+msgid "Registration details for %s"
+msgstr "Registration details for %s"
 
 #: mod/api.php:78 mod/api.php:104
 msgid "Authorize application connection"
@@ -3129,17 +3127,17 @@ msgid ""
 " and/or create new posts for you?"
 msgstr "Do you want to authorize this application to access your posts and contacts and create new posts for you?"
 
-#: mod/api.php:108 mod/dfrn_request.php:880 mod/follow.php:115
-#: mod/profiles.php:643 mod/profiles.php:647 mod/profiles.php:673
-#: mod/register.php:249 mod/settings.php:1172 mod/settings.php:1178
-#: mod/settings.php:1185 mod/settings.php:1189 mod/settings.php:1194
-#: mod/settings.php:1199 mod/settings.php:1204 mod/settings.php:1209
-#: mod/settings.php:1235 mod/settings.php:1236 mod/settings.php:1237
-#: mod/settings.php:1238 mod/settings.php:1239
+#: mod/api.php:108 mod/dfrn_request.php:881 mod/follow.php:150
+#: mod/profiles.php:644 mod/profiles.php:648 mod/profiles.php:674
+#: mod/register.php:250 mod/settings.php:1173 mod/settings.php:1179
+#: mod/settings.php:1186 mod/settings.php:1190 mod/settings.php:1195
+#: mod/settings.php:1200 mod/settings.php:1205 mod/settings.php:1210
+#: mod/settings.php:1236 mod/settings.php:1237 mod/settings.php:1238
+#: mod/settings.php:1239 mod/settings.php:1240
 msgid "No"
 msgstr "No"
 
-#: mod/apps.php:9 index.php:257
+#: mod/apps.php:9 index.php:258
 msgid "You must be logged in to use addons. "
 msgstr "You must be logged in to use addons. "
 
@@ -3207,293 +3205,89 @@ msgstr "Source input (Diaspora format): "
 msgid "diaspora2bb: "
 msgstr "diaspora2bb: "
 
-#: mod/bookmarklet.php:43
-msgid "The post was created"
-msgstr "The post was created"
-
-#: mod/cal.php:145 mod/profile.php:156 mod/display.php:351
-msgid "Access to this profile has been restricted."
-msgstr "Access to this profile has been restricted."
-
-#: mod/cal.php:273 mod/events.php:378
-msgid "View"
-msgstr "View"
-
-#: mod/cal.php:274 mod/events.php:380
-msgid "Previous"
-msgstr "Previous"
-
-#: mod/cal.php:275 mod/install.php:203 mod/events.php:381
-msgid "Next"
-msgstr "Next"
-
-#: mod/cal.php:284 mod/events.php:390
-msgid "list"
-msgstr "List"
-
-#: mod/cal.php:294
-msgid "User not found"
-msgstr "User not found"
-
-#: mod/cal.php:310
-msgid "This calendar format is not supported"
-msgstr "This calendar format is not supported"
-
-#: mod/cal.php:312
-msgid "No exportable data found"
-msgstr "No exportable data found"
-
-#: mod/cal.php:327
-msgid "calendar"
-msgstr "calendar"
-
 #: mod/common.php:93
 msgid "No contacts in common."
 msgstr "No contacts in common."
 
-#: mod/common.php:143 mod/contacts.php:876
+#: mod/common.php:143 mod/contacts.php:883
 msgid "Common Friends"
 msgstr "Common friends"
 
-#: mod/content.php:120 mod/network.php:490
-msgid "No such group"
-msgstr "No such group"
-
-#: mod/content.php:131 mod/group.php:214 mod/network.php:517
-msgid "Group is empty"
-msgstr "Group is empty"
-
-#: mod/content.php:136 mod/network.php:521
-#, php-format
-msgid "Group: %s"
-msgstr "Group: %s"
+#: mod/credits.php:19
+msgid "Credits"
+msgstr "Credits"
 
-#: mod/content.php:326 object/Item.php:96
-msgid "This entry was edited"
-msgstr "This entry was edited"
+#: mod/credits.php:20
+msgid ""
+"Friendica is a community project, that would not be possible without the "
+"help of many people. Here is a list of those who have contributed to the "
+"code or the translation of Friendica. Thank you all!"
+msgstr "Friendica is a community project that would not be possible without the help of many people. Here is a list of those who have contributed to the code or the translation of Friendica. Thank you all!"
 
-#: mod/content.php:622 object/Item.php:417
-#, php-format
-msgid "%d comment"
-msgid_plural "%d comments"
-msgstr[0] "%d comment"
-msgstr[1] "%d comments -"
+#: mod/crepair.php:92
+msgid "Contact settings applied."
+msgstr "Contact settings applied."
 
-#: mod/content.php:639 mod/photos.php:1431 object/Item.php:117
-msgid "Private Message"
-msgstr "Private message"
+#: mod/crepair.php:94
+msgid "Contact update failed."
+msgstr "Contact update failed."
 
-#: mod/content.php:703 mod/photos.php:1627 object/Item.php:271
-msgid "I like this (toggle)"
-msgstr "I like this (toggle)"
+#: mod/crepair.php:119 mod/fsuggest.php:22 mod/fsuggest.php:94
+#: mod/dfrn_confirm.php:129
+msgid "Contact not found."
+msgstr "Contact not found."
 
-#: mod/content.php:703 object/Item.php:271
-msgid "like"
-msgstr "Like"
+#: mod/crepair.php:125
+msgid ""
+"<strong>WARNING: This is highly advanced</strong> and if you enter incorrect"
+" information your communications with this contact may stop working."
+msgstr "<strong>Warning: These are highly advanced settings.</strong> If you enter incorrect information your communications with this contact may not working."
 
-#: mod/content.php:704 mod/photos.php:1628 object/Item.php:272
-msgid "I don't like this (toggle)"
-msgstr "I don't like this (toggle)"
+#: mod/crepair.php:126
+msgid ""
+"Please use your browser 'Back' button <strong>now</strong> if you are "
+"uncertain what to do on this page."
+msgstr "Please use your browser 'Back' button <strong>now</strong> if you are uncertain what to do on this page."
 
-#: mod/content.php:704 object/Item.php:272
-msgid "dislike"
-msgstr "Dislike"
+#: mod/crepair.php:139 mod/crepair.php:141
+msgid "No mirroring"
+msgstr "No mirroring"
 
-#: mod/content.php:706 object/Item.php:275
-msgid "Share this"
-msgstr "Share this"
+#: mod/crepair.php:139
+msgid "Mirror as forwarded posting"
+msgstr "Mirror as forwarded posting"
 
-#: mod/content.php:706 object/Item.php:275
-msgid "share"
-msgstr "Share"
+#: mod/crepair.php:139 mod/crepair.php:141
+msgid "Mirror as my own posting"
+msgstr "Mirror as my own posting"
 
-#: mod/content.php:726 mod/photos.php:1645 mod/photos.php:1687
-#: mod/photos.php:1767 object/Item.php:702
-msgid "This is you"
-msgstr "This is me"
+#: mod/crepair.php:155
+msgid "Return to contact editor"
+msgstr "Return to contact editor"
 
-#: mod/content.php:728 mod/content.php:951 mod/photos.php:1647
-#: mod/photos.php:1689 mod/photos.php:1769 object/Item.php:389
-#: object/Item.php:704
-msgid "Comment"
-msgstr "Comment"
+#: mod/crepair.php:157
+msgid "Refetch contact data"
+msgstr "Re-fetch contact data."
 
-#: mod/content.php:729 mod/crepair.php:159 mod/fsuggest.php:109
-#: mod/install.php:244 mod/install.php:284 mod/localtime.php:46
-#: mod/manage.php:156 mod/message.php:340 mod/message.php:523 mod/mood.php:139
-#: mod/photos.php:1143 mod/photos.php:1273 mod/photos.php:1599
-#: mod/photos.php:1648 mod/photos.php:1690 mod/photos.php:1770
-#: mod/poke.php:204 mod/events.php:508 mod/profiles.php:684
-#: mod/contacts.php:588 mod/invite.php:149 object/Item.php:705
-#: view/theme/duepuntozero/config.php:64 view/theme/frio/config.php:67
-#: view/theme/quattro/config.php:70 view/theme/vier/config.php:113
+#: mod/crepair.php:159 mod/fsuggest.php:109 mod/contacts.php:595
+#: mod/content.php:730 mod/events.php:509 mod/install.php:245
+#: mod/install.php:285 mod/invite.php:150 mod/localtime.php:47
+#: mod/manage.php:157 mod/message.php:338 mod/message.php:521 mod/mood.php:140
+#: mod/photos.php:1144 mod/photos.php:1274 mod/photos.php:1600
+#: mod/photos.php:1649 mod/photos.php:1691 mod/photos.php:1771
+#: mod/poke.php:205 mod/profiles.php:685 object/Item.php:697
+#: view/theme/duepuntozero/config.php:65 view/theme/frio/config.php:68
+#: view/theme/quattro/config.php:71 view/theme/vier/config.php:114
 msgid "Submit"
 msgstr "Submit"
 
-#: mod/content.php:730 object/Item.php:706
-msgid "Bold"
-msgstr "Bold"
-
-#: mod/content.php:731 object/Item.php:707
-msgid "Italic"
-msgstr "Italic"
+#: mod/crepair.php:161
+msgid "Remote Self"
+msgstr "Remote self"
 
-#: mod/content.php:732 object/Item.php:708
-msgid "Underline"
-msgstr "Underline"
-
-#: mod/content.php:733 object/Item.php:709
-msgid "Quote"
-msgstr "Quote"
-
-#: mod/content.php:734 object/Item.php:710
-msgid "Code"
-msgstr "Code"
-
-#: mod/content.php:735 object/Item.php:711
-msgid "Image"
-msgstr "Image"
-
-#: mod/content.php:736 object/Item.php:712
-msgid "Link"
-msgstr "Link"
-
-#: mod/content.php:737 object/Item.php:713
-msgid "Video"
-msgstr "Video"
-
-#: mod/content.php:747 mod/settings.php:744 object/Item.php:122
-#: object/Item.php:124
-msgid "Edit"
-msgstr "Edit"
-
-#: mod/content.php:773 object/Item.php:238
-msgid "add star"
-msgstr "Add star"
-
-#: mod/content.php:774 object/Item.php:239
-msgid "remove star"
-msgstr "Remove star"
-
-#: mod/content.php:775 object/Item.php:240
-msgid "toggle star status"
-msgstr "Toggle star status"
-
-#: mod/content.php:778 object/Item.php:243
-msgid "starred"
-msgstr "Starred"
-
-#: mod/content.php:779 mod/content.php:801 object/Item.php:260
-msgid "add tag"
-msgstr "Add tag"
-
-#: mod/content.php:790 object/Item.php:248
-msgid "ignore thread"
-msgstr "Ignore thread"
-
-#: mod/content.php:791 object/Item.php:249
-msgid "unignore thread"
-msgstr "Unignore thread"
-
-#: mod/content.php:792 object/Item.php:250
-msgid "toggle ignore status"
-msgstr "Toggle ignore status"
-
-#: mod/content.php:795 mod/ostatus_subscribe.php:75 object/Item.php:253
-msgid "ignored"
-msgstr "Ignored"
-
-#: mod/content.php:806 object/Item.php:141
-msgid "save to folder"
-msgstr "Save to folder"
-
-#: mod/content.php:854 object/Item.php:212
-msgid "I will attend"
-msgstr "I will attend"
-
-#: mod/content.php:854 object/Item.php:212
-msgid "I will not attend"
-msgstr "I will not attend"
-
-#: mod/content.php:854 object/Item.php:212
-msgid "I might attend"
-msgstr "I might attend"
-
-#: mod/content.php:918 object/Item.php:355
-msgid "to"
-msgstr "to"
-
-#: mod/content.php:919 object/Item.php:357
-msgid "Wall-to-Wall"
-msgstr "Wall-to-wall"
-
-#: mod/content.php:920 object/Item.php:358
-msgid "via Wall-To-Wall:"
-msgstr "via wall-to-wall:"
-
-#: mod/credits.php:19
-msgid "Credits"
-msgstr "Credits"
-
-#: mod/credits.php:20
-msgid ""
-"Friendica is a community project, that would not be possible without the "
-"help of many people. Here is a list of those who have contributed to the "
-"code or the translation of Friendica. Thank you all!"
-msgstr "Friendica is a community project that would not be possible without the help of many people. Here is a list of those who have contributed to the code or the translation of Friendica. Thank you all!"
-
-#: mod/crepair.php:92
-msgid "Contact settings applied."
-msgstr "Contact settings applied."
-
-#: mod/crepair.php:94
-msgid "Contact update failed."
-msgstr "Contact update failed."
-
-#: mod/crepair.php:119 mod/dfrn_confirm.php:128 mod/fsuggest.php:22
-#: mod/fsuggest.php:94
-msgid "Contact not found."
-msgstr "Contact not found."
-
-#: mod/crepair.php:125
-msgid ""
-"<strong>WARNING: This is highly advanced</strong> and if you enter incorrect"
-" information your communications with this contact may stop working."
-msgstr "<strong>Warning: These are highly advanced settings.</strong> If you enter incorrect information your communications with this contact may not working."
-
-#: mod/crepair.php:126
-msgid ""
-"Please use your browser 'Back' button <strong>now</strong> if you are "
-"uncertain what to do on this page."
-msgstr "Please use your browser 'Back' button <strong>now</strong> if you are uncertain what to do on this page."
-
-#: mod/crepair.php:139 mod/crepair.php:141
-msgid "No mirroring"
-msgstr "No mirroring"
-
-#: mod/crepair.php:139
-msgid "Mirror as forwarded posting"
-msgstr "Mirror as forwarded posting"
-
-#: mod/crepair.php:139 mod/crepair.php:141
-msgid "Mirror as my own posting"
-msgstr "Mirror as my own posting"
-
-#: mod/crepair.php:155
-msgid "Return to contact editor"
-msgstr "Return to contact editor"
-
-#: mod/crepair.php:157
-msgid "Refetch contact data"
-msgstr "Re-fetch contact data."
-
-#: mod/crepair.php:161
-msgid "Remote Self"
-msgstr "Remote self"
-
-#: mod/crepair.php:164
-msgid "Mirror postings from this contact"
-msgstr "Mirror postings from this contact:"
+#: mod/crepair.php:164
+msgid "Mirror postings from this contact"
+msgstr "Mirror postings from this contact:"
 
 #: mod/crepair.php:166
 msgid ""
@@ -3501,9 +3295,9 @@ msgid ""
 "entries from this contact."
 msgstr "This will cause Friendica to repost new entries from this contact."
 
-#: mod/crepair.php:170 mod/admin.php:1580 mod/admin.php:1593
-#: mod/admin.php:1606 mod/admin.php:1622 mod/settings.php:684
-#: mod/settings.php:710
+#: mod/crepair.php:170 mod/admin.php:1582 mod/admin.php:1595
+#: mod/admin.php:1608 mod/admin.php:1624 mod/settings.php:685
+#: mod/settings.php:711
 msgid "Name"
 msgstr "Name:"
 
@@ -3539,5279 +3333,5508 @@ msgstr "Poll/Feed URL:"
 msgid "New photo from this URL"
 msgstr "New photo from this URL:"
 
-#: mod/delegate.php:103
-msgid "No potential page delegates located."
-msgstr "No potential page delegates found."
+#: mod/filer.php:31
+msgid "- select -"
+msgstr "- select -"
 
-#: mod/delegate.php:134
-msgid ""
-"Delegates are able to manage all aspects of this account/page except for "
-"basic account settings. Please do not delegate your personal account to "
-"anybody that you do not trust completely."
-msgstr "Delegates are able to manage all aspects of this account except for key setting features. Please do not delegate your personal account to anybody that you do not trust completely."
+#: mod/fsuggest.php:65
+msgid "Friend suggestion sent."
+msgstr "Friend suggestion sent"
 
-#: mod/delegate.php:135
-msgid "Existing Page Managers"
-msgstr "Existing page managers"
+#: mod/fsuggest.php:99
+msgid "Suggest Friends"
+msgstr "Suggest friends"
 
-#: mod/delegate.php:137
-msgid "Existing Page Delegates"
-msgstr "Existing page delegates"
+#: mod/fsuggest.php:101
+#, php-format
+msgid "Suggest a friend for %s"
+msgstr "Suggest a friend for %s"
 
-#: mod/delegate.php:139
-msgid "Potential Delegates"
-msgstr "Potential delegates"
+#: mod/lockview.php:33 mod/lockview.php:41
+msgid "Remote privacy information not available."
+msgstr "Remote privacy information not available."
 
-#: mod/delegate.php:141 mod/tagrm.php:97
-msgid "Remove"
-msgstr "Remove"
+#: mod/lockview.php:50
+msgid "Visible to:"
+msgstr "Visible to:"
 
-#: mod/delegate.php:142
-msgid "Add"
-msgstr "Add"
+#: mod/maintenance.php:21
+msgid "System down for maintenance"
+msgstr "Sorry, the system is currently down for maintenance."
 
-#: mod/delegate.php:143
-msgid "No entries."
-msgstr "No entries."
+#: mod/newmember.php:7
+msgid "Welcome to Friendica"
+msgstr "Welcome to Friendica"
 
-#: mod/dfrn_confirm.php:72 mod/profiles.php:23 mod/profiles.php:139
-#: mod/profiles.php:186 mod/profiles.php:622
-msgid "Profile not found."
-msgstr "Profile not found."
+#: mod/newmember.php:8
+msgid "New Member Checklist"
+msgstr "New Member Checklist"
 
-#: mod/dfrn_confirm.php:129
+#: mod/newmember.php:10
 msgid ""
-"This may occasionally happen if contact was requested by both persons and it"
-" has already been approved."
-msgstr "This may occasionally happen if contact was requested by both persons and it has already been approved."
-
-#: mod/dfrn_confirm.php:246
-msgid "Response from remote site was not understood."
-msgstr "Response from remote site was not understood."
+"We would like to offer some tips and links to help make your experience "
+"enjoyable. Click any item to visit the relevant page. A link to this page "
+"will be visible from your home page for two weeks after your initial "
+"registration and then will quietly disappear."
+msgstr "We would like to offer some tips and links to help make your experience enjoyable. Click any item to visit the relevant page. A link to this page will be visible from your home page for two weeks after your initial registration and then will quietly disappear."
 
-#: mod/dfrn_confirm.php:255 mod/dfrn_confirm.php:260
-msgid "Unexpected response from remote site: "
-msgstr "Unexpected response from remote site: "
+#: mod/newmember.php:11
+msgid "Getting Started"
+msgstr "Getting started"
 
-#: mod/dfrn_confirm.php:269
-msgid "Confirmation completed successfully."
-msgstr "Confirmation completed successfully."
+#: mod/newmember.php:13
+msgid "Friendica Walk-Through"
+msgstr "Friendica walk-through"
 
-#: mod/dfrn_confirm.php:271 mod/dfrn_confirm.php:285 mod/dfrn_confirm.php:292
-msgid "Remote site reported: "
-msgstr "Remote site reported: "
+#: mod/newmember.php:13
+msgid ""
+"On your <em>Quick Start</em> page - find a brief introduction to your "
+"profile and network tabs, make some new connections, and find some groups to"
+" join."
+msgstr "On your <em>Quick Start</em> page - find a brief introduction to your profile and network tabs, make some new connections, and find some groups to join."
 
-#: mod/dfrn_confirm.php:283
-msgid "Temporary failure. Please wait and try again."
-msgstr "Temporary failure. Please wait and try again."
+#: mod/newmember.php:17
+msgid "Go to Your Settings"
+msgstr "Go to your settings"
 
-#: mod/dfrn_confirm.php:290
-msgid "Introduction failed or was revoked."
-msgstr "Introduction failed or was revoked."
+#: mod/newmember.php:17
+msgid ""
+"On your <em>Settings</em> page -  change your initial password. Also make a "
+"note of your Identity Address. This looks just like an email address - and "
+"will be useful in making friends on the free social web."
+msgstr "On your <em>Settings</em> page -  change your initial password. Also make a note of your Identity Address. This looks just like an email address - and will be useful in making friends on the free social web."
 
-#: mod/dfrn_confirm.php:420
-msgid "Unable to set contact photo."
-msgstr "Unable to set contact photo."
+#: mod/newmember.php:18
+msgid ""
+"Review the other settings, particularly the privacy settings. An unpublished"
+" directory listing is like having an unlisted phone number. In general, you "
+"should probably publish your listing - unless all of your friends and "
+"potential friends know exactly how to find you."
+msgstr "Review the other settings, particularly the privacy settings. An unpublished directory listing is like having an unlisted phone number. In general, you should probably publish your listing - unless all of your friends and potential friends know exactly how to find you."
 
-#: mod/dfrn_confirm.php:561
-#, php-format
-msgid "No user record found for '%s' "
-msgstr "No user record found for '%s' "
+#: mod/newmember.php:22 mod/profile_photo.php:256 mod/profiles.php:704
+msgid "Upload Profile Photo"
+msgstr "Upload profile photo"
 
-#: mod/dfrn_confirm.php:571
-msgid "Our site encryption key is apparently messed up."
-msgstr "Our site encryption key is apparently messed up."
+#: mod/newmember.php:22
+msgid ""
+"Upload a profile photo if you have not done so already. Studies have shown "
+"that people with real photos of themselves are ten times more likely to make"
+" friends than people who do not."
+msgstr "Upload a profile photo if you have not done so already. Studies have shown that people with real photos of themselves are ten times more likely to make friends than people who do not."
 
-#: mod/dfrn_confirm.php:582
-msgid "Empty site URL was provided or URL could not be decrypted by us."
-msgstr "An empty URL was provided or the URL could not be decrypted by us."
+#: mod/newmember.php:23
+msgid "Edit Your Profile"
+msgstr "Edit your profile"
 
-#: mod/dfrn_confirm.php:604
-msgid "Contact record was not found for you on our site."
-msgstr "Contact record was not found for you on our site."
-
-#: mod/dfrn_confirm.php:618
-#, php-format
-msgid "Site public key not available in contact record for URL %s."
-msgstr "Site public key not available in contact record for URL %s."
-
-#: mod/dfrn_confirm.php:638
+#: mod/newmember.php:23
 msgid ""
-"The ID provided by your system is a duplicate on our system. It should work "
-"if you try again."
-msgstr "The ID provided by your system is a duplicate on our system. It should work if you try again."
-
-#: mod/dfrn_confirm.php:649
-msgid "Unable to set your contact credentials on our system."
-msgstr "Unable to set your contact credentials on our system."
-
-#: mod/dfrn_confirm.php:711
-msgid "Unable to update your contact profile details on our system"
-msgstr "Unable to update your contact profile details on our system"
-
-#: mod/dfrn_confirm.php:783
-#, php-format
-msgid "%1$s has joined %2$s"
-msgstr "%1$s has joined %2$s"
-
-#: mod/dfrn_poll.php:104 mod/dfrn_poll.php:539
-#, php-format
-msgid "%1$s welcomes %2$s"
-msgstr "%1$s welcomes %2$s"
-
-#: mod/directory.php:33 mod/photos.php:981 mod/videos.php:200
-#: mod/viewcontacts.php:39 mod/webfinger.php:10 mod/dfrn_request.php:804
-#: mod/probe.php:9 mod/search.php:96 mod/search.php:102 mod/community.php:18
-#: mod/display.php:216
-msgid "Public access denied."
-msgstr "Public access denied."
-
-#: mod/directory.php:195 view/theme/vier/theme.php:193
-msgid "Global Directory"
-msgstr "Global Directory"
+"Edit your <strong>default</strong> profile to your liking. Review the "
+"settings for hiding your list of friends and hiding the profile from unknown"
+" visitors."
+msgstr "Edit your <strong>default</strong> profile to your liking. Review the settings for hiding your list of friends and hiding the profile from unknown visitors."
 
-#: mod/directory.php:197
-msgid "Find on this site"
-msgstr "Find on this site"
+#: mod/newmember.php:24
+msgid "Profile Keywords"
+msgstr "Profile keywords"
 
-#: mod/directory.php:199
-msgid "Results for:"
-msgstr "Results for:"
+#: mod/newmember.php:24
+msgid ""
+"Set some public keywords for your default profile which describe your "
+"interests. We may be able to find other people with similar interests and "
+"suggest friendships."
+msgstr "Set some public keywords for your default profile which describe your interests. We may be able to find other people with similar interests and suggest friendships."
 
-#: mod/directory.php:201
-msgid "Site Directory"
-msgstr "Site directory"
+#: mod/newmember.php:26
+msgid "Connecting"
+msgstr "Connecting"
 
-#: mod/directory.php:208
-msgid "No entries (some entries may be hidden)."
-msgstr "No entries (entries may be hidden)."
+#: mod/newmember.php:32
+msgid "Importing Emails"
+msgstr "Importing emails"
 
-#: mod/editpost.php:19 mod/editpost.php:29
-msgid "Item not found"
-msgstr "Item not found"
+#: mod/newmember.php:32
+msgid ""
+"Enter your email access information on your Connector Settings page if you "
+"wish to import and interact with friends or mailing lists from your email "
+"INBOX"
+msgstr "Enter your email access information on your Connector Settings if you wish to import and interact with friends or mailing lists from your email INBOX"
 
-#: mod/editpost.php:34
-msgid "Edit post"
-msgstr "Edit post"
+#: mod/newmember.php:35
+msgid "Go to Your Contacts Page"
+msgstr "Go to your contacts page"
 
-#: mod/fbrowser.php:134
-msgid "Files"
-msgstr "Files"
+#: mod/newmember.php:35
+msgid ""
+"Your Contacts page is your gateway to managing friendships and connecting "
+"with friends on other networks. Typically you enter their address or site "
+"URL in the <em>Add New Contact</em> dialog."
+msgstr "Your contacts page is your gateway to managing friendships and connecting with friends on other networks. Typically you enter their address or site URL in the <em>Add new contact</em> dialog."
 
-#: mod/filer.php:31
-msgid "- select -"
-msgstr "- select -"
+#: mod/newmember.php:36
+msgid "Go to Your Site's Directory"
+msgstr "Go to your site's directory"
 
-#: mod/friendica.php:69
-msgid "This is Friendica, version"
-msgstr "This is Friendica, version"
+#: mod/newmember.php:36
+msgid ""
+"The Directory page lets you find other people in this network or other "
+"federated sites. Look for a <em>Connect</em> or <em>Follow</em> link on "
+"their profile page. Provide your own Identity Address if requested."
+msgstr "The directory lets you find other people in this network or other federated sites. Look for a <em>Connect</em> or <em>Follow</em> link on their profile page. Provide your own identity address when requested."
 
-#: mod/friendica.php:70
-msgid "running at web location"
-msgstr "running at web location"
+#: mod/newmember.php:37
+msgid "Finding New People"
+msgstr "Finding new people"
 
-#: mod/friendica.php:74
+#: mod/newmember.php:37
 msgid ""
-"Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn "
-"more about the Friendica project."
-msgstr "Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn more about the Friendica project."
-
-#: mod/friendica.php:78
-msgid "Bug reports and issues: please visit"
-msgstr "Bug reports and issues: please visit"
+"On the side panel of the Contacts page are several tools to find new "
+"friends. We can match people by interest, look up people by name or "
+"interest, and provide suggestions based on network relationships. On a brand"
+" new site, friend suggestions will usually begin to be populated within 24 "
+"hours."
+msgstr "On the side panel of the Contacts page are several tools to find new friends. We can match people by interest, look up people by name or interest, and provide suggestions based on network relationships. On a brand new site, friend suggestions will usually begin to be populated within 24 hours."
 
-#: mod/friendica.php:78
-msgid "the bugtracker at github"
-msgstr "the bugtracker at github"
+#: mod/newmember.php:41
+msgid "Group Your Contacts"
+msgstr "Group your contacts"
 
-#: mod/friendica.php:81
+#: mod/newmember.php:41
 msgid ""
-"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - "
-"dot com"
-msgstr "Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"
-
-#: mod/friendica.php:95
-msgid "Installed plugins/addons/apps:"
-msgstr "Installed plugins/addons/apps:"
+"Once you have made some friends, organize them into private conversation "
+"groups from the sidebar of your Contacts page and then you can interact with"
+" each group privately on your Network page."
+msgstr "Once you have made some friends, organize them into private conversation groups from the sidebar of your contacts page and then you can interact with each group privately on your network page."
 
-#: mod/friendica.php:109
-msgid "No installed plugins/addons/apps"
-msgstr "No installed plugins/addons/apps"
+#: mod/newmember.php:44
+msgid "Why Aren't My Posts Public?"
+msgstr "Why aren't my posts public?"
 
-#: mod/friendica.php:114
-msgid "On this server the following remote servers are blocked."
-msgstr "On this server the following remote servers are blocked."
+#: mod/newmember.php:44
+msgid ""
+"Friendica respects your privacy. By default, your posts will only show up to"
+" people you've added as friends. For more information, see the help section "
+"from the link above."
+msgstr "Friendica respects your privacy. By default, your posts will only show up to people you've added as friends. For more information, see the help section from the link above."
 
-#: mod/friendica.php:115 mod/admin.php:289 mod/admin.php:307
-msgid "Reason for the block"
-msgstr "Reason for the block"
+#: mod/newmember.php:48
+msgid "Getting Help"
+msgstr "Getting help"
 
-#: mod/fsuggest.php:65
-msgid "Friend suggestion sent."
-msgstr "Friend suggestion sent"
+#: mod/newmember.php:50
+msgid "Go to the Help Section"
+msgstr "Go to the help section"
 
-#: mod/fsuggest.php:99
-msgid "Suggest Friends"
-msgstr "Suggest friends"
+#: mod/newmember.php:50
+msgid ""
+"Our <strong>help</strong> pages may be consulted for detail on other program"
+" features and resources."
+msgstr "Our <strong>help</strong> pages may be consulted for detail on other program features and resources."
 
-#: mod/fsuggest.php:101
+#: mod/nogroup.php:45 mod/viewcontacts.php:105 mod/contacts.php:606
+#: mod/contacts.php:950
 #, php-format
-msgid "Suggest a friend for %s"
-msgstr "Suggest a friend for %s"
-
-#: mod/group.php:30
-msgid "Group created."
-msgstr "Group created."
-
-#: mod/group.php:36
-msgid "Could not create group."
-msgstr "Could not create group."
+msgid "Visit %s's profile [%s]"
+msgstr "Visit %s's profile [%s]"
 
-#: mod/group.php:50 mod/group.php:155
-msgid "Group not found."
-msgstr "Group not found."
+#: mod/nogroup.php:46 mod/contacts.php:951
+msgid "Edit contact"
+msgstr "Edit contact"
 
-#: mod/group.php:64
-msgid "Group name changed."
-msgstr "Group name changed."
+#: mod/nogroup.php:67
+msgid "Contacts who are not members of a group"
+msgstr "Contacts who are not members of a group"
 
-#: mod/group.php:77 mod/profperm.php:22 index.php:409
+#: mod/profperm.php:22 mod/group.php:78 index.php:410
 msgid "Permission denied"
 msgstr "Permission denied"
 
-#: mod/group.php:94
-msgid "Save Group"
-msgstr "Save group"
-
-#: mod/group.php:99
-msgid "Create a group of contacts/friends."
-msgstr "Create a group of contacts/friends."
+#: mod/profperm.php:28 mod/profperm.php:59
+msgid "Invalid profile identifier."
+msgstr "Invalid profile identifier."
 
-#: mod/group.php:124
-msgid "Group removed."
-msgstr "Group removed."
+#: mod/profperm.php:105
+msgid "Profile Visibility Editor"
+msgstr "Profile Visibility Editor"
 
-#: mod/group.php:126
-msgid "Unable to remove group."
-msgstr "Unable to remove group."
+#: mod/profperm.php:109 mod/group.php:264
+msgid "Click on a contact to add or remove."
+msgstr "Click on a contact to add or remove."
 
-#: mod/group.php:190
-msgid "Delete Group"
-msgstr "Delete group"
+#: mod/profperm.php:118
+msgid "Visible To"
+msgstr "Visible to"
 
-#: mod/group.php:196
-msgid "Group Editor"
-msgstr "Group Editor"
+#: mod/profperm.php:134
+msgid "All Contacts (with secure profile access)"
+msgstr "All contacts with secure profile access"
 
-#: mod/group.php:201
-msgid "Edit Group Name"
-msgstr "Edit group name"
+#: mod/update_community.php:21 mod/update_display.php:25
+#: mod/update_notes.php:38 mod/update_profile.php:37 mod/update_network.php:29
+msgid "[Embedded content - reload page to view]"
+msgstr "[Embedded content - reload page to view]"
 
-#: mod/group.php:211
-msgid "Members"
-msgstr "Members"
+#: mod/viewcontacts.php:39 mod/webfinger.php:10 mod/probe.php:9
+#: mod/search.php:96 mod/search.php:102 mod/community.php:17
+#: mod/dfrn_request.php:805 mod/directory.php:33 mod/display.php:218
+#: mod/photos.php:982 mod/videos.php:201
+msgid "Public access denied."
+msgstr "Public access denied."
 
-#: mod/group.php:213 mod/contacts.php:705
-msgid "All Contacts"
-msgstr "All contacts"
+#: mod/viewcontacts.php:78
+msgid "No contacts."
+msgstr "No contacts."
 
-#: mod/group.php:227
-msgid "Remove Contact"
-msgstr "Remove contact"
+#: mod/viewsrc.php:8
+msgid "Access denied."
+msgstr "Access denied."
 
-#: mod/group.php:251
-msgid "Add Contact"
-msgstr "Add contact"
+#: mod/wall_attach.php:19 mod/wall_attach.php:27 mod/wall_attach.php:78
+#: mod/wall_upload.php:37 mod/wall_upload.php:53 mod/wall_upload.php:111
+#: mod/wall_upload.php:151 mod/wall_upload.php:154
+msgid "Invalid request."
+msgstr "Invalid request."
 
-#: mod/group.php:263 mod/profperm.php:109
-msgid "Click on a contact to add or remove."
-msgstr "Click on a contact to add or remove."
+#: mod/wall_attach.php:96
+msgid "Sorry, maybe your upload is bigger than the PHP configuration allows"
+msgstr "Sorry, maybe your upload is bigger than the PHP configuration allows"
 
-#: mod/hcard.php:13
-msgid "No profile"
-msgstr "No profile"
+#: mod/wall_attach.php:96
+msgid "Or - did you try to upload an empty file?"
+msgstr "Or did you try to upload an empty file?"
 
-#: mod/home.php:41
+#: mod/wall_attach.php:107
 #, php-format
-msgid "Welcome to %s"
-msgstr "Welcome to %s"
+msgid "File exceeds size limit of %s"
+msgstr "File exceeds size limit of %s"
 
-#: mod/install.php:108
-msgid "Friendica Communications Server - Setup"
-msgstr "Friendica Communications Server - Setup"
-
-#: mod/install.php:114
-msgid "Could not connect to database."
-msgstr "Could not connect to database."
-
-#: mod/install.php:118
-msgid "Could not create table."
-msgstr "Could not create table."
+#: mod/wall_attach.php:160 mod/wall_attach.php:176
+msgid "File upload failed."
+msgstr "File upload failed."
 
-#: mod/install.php:124
-msgid "Your Friendica site database has been installed."
-msgstr "Your Friendica site database has been installed."
+#: mod/webfinger.php:11 mod/probe.php:10
+msgid "Only logged in users are permitted to perform a probing."
+msgstr "Only logged in users are permitted to perform a probing."
 
-#: mod/install.php:129
+#: mod/uimport.php:53 mod/register.php:202
 msgid ""
-"You may need to import the file \"database.sql\" manually using phpmyadmin "
-"or mysql."
-msgstr "You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."
-
-#: mod/install.php:130 mod/install.php:202 mod/install.php:549
-msgid "Please see the file \"INSTALL.txt\"."
-msgstr "Please see the file \"INSTALL.txt\"."
-
-#: mod/install.php:142
-msgid "Database already in use."
-msgstr "Database already in use."
+"This site has exceeded the number of allowed daily account registrations. "
+"Please try again tomorrow."
+msgstr "This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."
 
-#: mod/install.php:199
-msgid "System check"
-msgstr "System check"
+#: mod/uimport.php:68 mod/register.php:299
+msgid "Import"
+msgstr "Import profile"
 
-#: mod/install.php:204
-msgid "Check again"
-msgstr "Check again"
+#: mod/uimport.php:70
+msgid "Move account"
+msgstr "Move Existing Friendica Account"
 
-#: mod/install.php:223
-msgid "Database connection"
-msgstr "Database connection"
+#: mod/uimport.php:71
+msgid "You can import an account from another Friendica server."
+msgstr "You can import an existing Friendica profile to this node."
 
-#: mod/install.php:224
+#: mod/uimport.php:72
 msgid ""
-"In order to install Friendica we need to know how to connect to your "
-"database."
-msgstr "In order to install Friendica we need to know how to connect to your database."
+"You need to export your account from the old server and upload it here. We "
+"will recreate your old account here with all your contacts. We will try also"
+" to inform your friends that you moved here."
+msgstr "You need to export your account from the old server and upload it here. We will recreate your old account here with all your contacts. We will try also to inform your friends that you moved here."
 
-#: mod/install.php:225
+#: mod/uimport.php:73
 msgid ""
-"Please contact your hosting provider or site administrator if you have "
-"questions about these settings."
-msgstr "Please contact your hosting provider or site administrator if you have questions about these settings."
+"This feature is experimental. We can't import contacts from the OStatus "
+"network (GNU Social/Statusnet) or from Diaspora"
+msgstr "This feature is experimental. We can't import contacts from the OStatus network (GNU Social/Statusnet) or from Diaspora."
 
-#: mod/install.php:226
-msgid ""
-"The database you specify below should already exist. If it does not, please "
-"create it before continuing."
-msgstr "The database you specify below should already exist. If it does not, please create it before continuing."
+#: mod/uimport.php:74
+msgid "Account file"
+msgstr "Account file:"
 
-#: mod/install.php:230
-msgid "Database Server Name"
-msgstr "Database server name"
+#: mod/uimport.php:74
+msgid ""
+"To export your account, go to \"Settings->Export your personal data\" and "
+"select \"Export account\""
+msgstr "To export your account, go to \"Settings->Export personal data\" and select \"Export account\""
 
-#: mod/install.php:231
-msgid "Database Login Name"
-msgstr "Database login name"
+#: mod/search.php:28 mod/network.php:187
+msgid "Remove term"
+msgstr "Remove term"
 
-#: mod/install.php:232
-msgid "Database Login Password"
-msgstr "Database login password"
+#: mod/search.php:103
+msgid "Only logged in users are permitted to perform a search."
+msgstr "Only logged in users are permitted to perform a search."
 
-#: mod/install.php:232
-msgid "For security reasons the password must not be empty"
-msgstr "For security reasons the password must not be empty"
+#: mod/search.php:127
+msgid "Too Many Requests"
+msgstr "Too many requests"
 
-#: mod/install.php:233
-msgid "Database Name"
-msgstr "Database name"
+#: mod/search.php:128
+msgid "Only one search per minute is permitted for not logged in users."
+msgstr "Only one search per minute is permitted for not logged in users."
 
-#: mod/install.php:234 mod/install.php:275
-msgid "Site administrator email address"
-msgstr "Site administrator email address"
+#: mod/search.php:222 mod/community.php:49
+msgid "No results."
+msgstr "No results."
 
-#: mod/install.php:234 mod/install.php:275
-msgid ""
-"Your account email address must match this in order to use the web admin "
-"panel."
-msgstr "Your account email address must match this in order to use the web admin panel."
+#: mod/search.php:228
+#, php-format
+msgid "Items tagged with: %s"
+msgstr "Items tagged with: %s"
 
-#: mod/install.php:238 mod/install.php:278
-msgid "Please select a default timezone for your website"
-msgstr "Please select a default time zone for your website"
+#: mod/search.php:230 mod/contacts.php:817
+#, php-format
+msgid "Results for: %s"
+msgstr "Results for: %s"
 
-#: mod/install.php:265
-msgid "Site settings"
-msgstr "Site settings"
+#: mod/community.php:22
+msgid "Not available."
+msgstr "Not available."
 
-#: mod/install.php:279
-msgid "System Language:"
-msgstr "System language:"
+#: mod/admin.php:99
+msgid "Theme settings updated."
+msgstr "Theme settings updated."
 
-#: mod/install.php:279
-msgid ""
-"Set the default language for your Friendica installation interface and to "
-"send emails."
-msgstr "Set the default language for your Friendica installation interface and email communication."
+#: mod/admin.php:171 mod/admin.php:1146
+msgid "Site"
+msgstr "Site"
 
-#: mod/install.php:319
-msgid "Could not find a command line version of PHP in the web server PATH."
-msgstr "Could not find a command line version of PHP in the web server PATH."
+#: mod/admin.php:172 mod/admin.php:1080 mod/admin.php:1590 mod/admin.php:1606
+msgid "Users"
+msgstr "Users"
 
-#: mod/install.php:320
-msgid ""
-"If you don't have a command line version of PHP installed on server, you "
-"will not be able to run the background processing. See <a "
-"href='https://github.com/friendica/friendica/blob/master/doc/Install.md#set-"
-"up-the-poller'>'Setup the poller'</a>"
-msgstr "If you don't have a command line version of PHP installed on your server, you will not be able to run the background processing. See <a href='https://github.com/friendica/friendica/blob/master/doc/Install.md#set-up-the-poller'>'Setup the poller'</a>"
+#: mod/admin.php:173 mod/admin.php:1708 mod/admin.php:1771 mod/settings.php:77
+msgid "Plugins"
+msgstr "Plugins"
 
-#: mod/install.php:324
-msgid "PHP executable path"
-msgstr "PHP executable path"
+#: mod/admin.php:174 mod/admin.php:1984 mod/admin.php:2034
+msgid "Themes"
+msgstr "Theme selection"
 
-#: mod/install.php:324
-msgid ""
-"Enter full path to php executable. You can leave this blank to continue the "
-"installation."
-msgstr "Enter full path to php executable. You can leave this blank to continue the installation."
+#: mod/admin.php:175 mod/settings.php:55
+msgid "Additional features"
+msgstr "Additional features"
 
-#: mod/install.php:329
-msgid "Command line PHP"
-msgstr "Command line PHP"
+#: mod/admin.php:176
+msgid "DB updates"
+msgstr "DB updates"
 
-#: mod/install.php:338
-msgid "PHP executable is not the php cli binary (could be cgi-fgci version)"
-msgstr "PHP executable is not a php cli binary; it could possibly be a cgi-fgci version."
+#: mod/admin.php:177 mod/admin.php:584
+msgid "Inspect Queue"
+msgstr "Inspect queue"
 
-#: mod/install.php:339
-msgid "Found PHP version: "
-msgstr "Found PHP version: "
+#: mod/admin.php:178 mod/admin.php:298
+msgid "Server Blocklist"
+msgstr "Server blocklist"
 
-#: mod/install.php:341
-msgid "PHP cli binary"
-msgstr "PHP cli binary"
+#: mod/admin.php:179 mod/admin.php:550
+msgid "Federation Statistics"
+msgstr "Federation statistics"
 
-#: mod/install.php:352
-msgid ""
-"The command line version of PHP on your system does not have "
-"\"register_argc_argv\" enabled."
-msgstr "The command line version of PHP on your system does not have \"register_argc_argv\" enabled."
+#: mod/admin.php:180 mod/admin.php:375
+msgid "Delete Item"
+msgstr "Delete item"
 
-#: mod/install.php:353
-msgid "This is required for message delivery to work."
-msgstr "This is required for message delivery to work."
+#: mod/admin.php:194 mod/admin.php:205 mod/admin.php:2108
+msgid "Logs"
+msgstr "Logs"
 
-#: mod/install.php:355
-msgid "PHP register_argc_argv"
-msgstr "PHP register_argc_argv"
+#: mod/admin.php:195 mod/admin.php:2176
+msgid "View Logs"
+msgstr "View logs"
 
-#: mod/install.php:378
-msgid ""
-"Error: the \"openssl_pkey_new\" function on this system is not able to "
-"generate encryption keys"
-msgstr "Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"
+#: mod/admin.php:196
+msgid "probe address"
+msgstr "Probe address"
 
-#: mod/install.php:379
-msgid ""
-"If running under Windows, please see "
-"\"http://www.php.net/manual/en/openssl.installation.php\"."
-msgstr "If running under Windows OS, please see \"http://www.php.net/manual/en/openssl.installation.php\"."
+#: mod/admin.php:197
+msgid "check webfinger"
+msgstr "Check webfinger"
 
-#: mod/install.php:381
-msgid "Generate encryption keys"
-msgstr "Generate encryption keys"
+#: mod/admin.php:204
+msgid "Plugin Features"
+msgstr "Plugin Features"
 
-#: mod/install.php:388
-msgid "libCurl PHP module"
-msgstr "libCurl PHP module"
+#: mod/admin.php:206
+msgid "diagnostics"
+msgstr "Diagnostics"
 
-#: mod/install.php:389
-msgid "GD graphics PHP module"
-msgstr "GD graphics PHP module"
+#: mod/admin.php:207
+msgid "User registrations waiting for confirmation"
+msgstr "User registrations awaiting confirmation"
 
-#: mod/install.php:390
-msgid "OpenSSL PHP module"
-msgstr "OpenSSL PHP module"
+#: mod/admin.php:289
+msgid "The blocked domain"
+msgstr "Blocked domain"
 
-#: mod/install.php:391
-msgid "PDO or MySQLi PHP module"
-msgstr "PDO or MySQLi PHP module"
+#: mod/admin.php:290 mod/admin.php:308 mod/friendica.php:116
+msgid "Reason for the block"
+msgstr "Reason for the block"
 
-#: mod/install.php:392
-msgid "mb_string PHP module"
-msgstr "mb_string PHP module"
+#: mod/admin.php:290 mod/admin.php:303
+msgid "The reason why you blocked this domain."
+msgstr "Reason why you blocked this domain."
 
-#: mod/install.php:393
-msgid "XML PHP module"
-msgstr "XML PHP module"
+#: mod/admin.php:291
+msgid "Delete domain"
+msgstr "Delete domain"
 
-#: mod/install.php:394
-msgid "iconv module"
-msgstr "iconv module"
+#: mod/admin.php:291
+msgid "Check to delete this entry from the blocklist"
+msgstr "Check to delete this entry from the blocklist"
 
-#: mod/install.php:398 mod/install.php:400
-msgid "Apache mod_rewrite module"
-msgstr "Apache mod_rewrite module"
+#: mod/admin.php:297 mod/admin.php:374 mod/admin.php:549 mod/admin.php:583
+#: mod/admin.php:663 mod/admin.php:1145 mod/admin.php:1589 mod/admin.php:1707
+#: mod/admin.php:1770 mod/admin.php:1983 mod/admin.php:2033 mod/admin.php:2107
+#: mod/admin.php:2175
+msgid "Administration"
+msgstr "Administration"
 
-#: mod/install.php:398
+#: mod/admin.php:299
 msgid ""
-"Error: Apache webserver mod-rewrite module is required but not installed."
-msgstr "Error: Apache web server mod-rewrite module is required but not installed."
-
-#: mod/install.php:406
-msgid "Error: libCURL PHP module required but not installed."
-msgstr "Error: libCURL PHP module required but not installed."
+"This page can be used to define a black list of servers from the federated "
+"network that are not allowed to interact with your node. For all entered "
+"domains you should also give a reason why you have blocked the remote "
+"server."
+msgstr "This page can be used to define a black list of servers from the federated network that are not allowed to interact with your node. For all entered domains you should also give a reason why you have blocked the remote server."
 
-#: mod/install.php:410
+#: mod/admin.php:300
 msgid ""
-"Error: GD graphics PHP module with JPEG support required but not installed."
-msgstr "Error: GD graphics PHP module with JPEG support required but not installed."
-
-#: mod/install.php:414
-msgid "Error: openssl PHP module required but not installed."
-msgstr "Error: openssl PHP module required but not installed."
-
-#: mod/install.php:418
-msgid "Error: PDO or MySQLi PHP module required but not installed."
-msgstr "Error: PDO or MySQLi PHP module required but not installed."
-
-#: mod/install.php:422
-msgid "Error: The MySQL driver for PDO is not installed."
-msgstr "Error: MySQL driver for PDO is not installed."
-
-#: mod/install.php:426
-msgid "Error: mb_string PHP module required but not installed."
-msgstr "Error: mb_string PHP module required but not installed."
+"The list of blocked servers will be made publically available on the "
+"/friendica page so that your users and people investigating communication "
+"problems can find the reason easily."
+msgstr "The list of blocked servers will publicly available on the Friendica page so that your users and people investigating communication problems can readily find the reason."
 
-#: mod/install.php:430
-msgid "Error: iconv PHP module required but not installed."
-msgstr "Error: iconv PHP module required but not installed."
+#: mod/admin.php:301
+msgid "Add new entry to block list"
+msgstr "Add new entry to block list"
 
-#: mod/install.php:440
-msgid "Error, XML PHP module required but not installed."
-msgstr "Error, XML PHP module required but not installed."
+#: mod/admin.php:302
+msgid "Server Domain"
+msgstr "Server domain"
 
-#: mod/install.php:452
+#: mod/admin.php:302
 msgid ""
-"The web installer needs to be able to create a file called \".htconfig.php\""
-" in the top folder of your web server and it is unable to do so."
-msgstr "The web installer needs to be able to create a file called \".htconfig.php\" in the top-level directory of your web server, but it is unable to do so."
+"The domain of the new server to add to the block list. Do not include the "
+"protocol."
+msgstr "The domain of the new server to add to the block list. Do not include the protocol."
 
-#: mod/install.php:453
-msgid ""
-"This is most often a permission setting, as the web server may not be able "
-"to write files in your folder - even if you can."
-msgstr "This is most often a permission setting issue, as the web server may not be able to write files in your directory - even if you can."
+#: mod/admin.php:303
+msgid "Block reason"
+msgstr "Block reason"
 
-#: mod/install.php:454
-msgid ""
-"At the end of this procedure, we will give you a text to save in a file "
-"named .htconfig.php in your Friendica top folder."
-msgstr "At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Friendica top-level directory."
+#: mod/admin.php:304
+msgid "Add Entry"
+msgstr "Add entry"
 
-#: mod/install.php:455
-msgid ""
-"You can alternatively skip this procedure and perform a manual installation."
-" Please see the file \"INSTALL.txt\" for instructions."
-msgstr "Alternatively, you may skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."
+#: mod/admin.php:305
+msgid "Save changes to the blocklist"
+msgstr "Save changes to the blocklist"
 
-#: mod/install.php:458
-msgid ".htconfig.php is writable"
-msgstr ".htconfig.php is writable"
+#: mod/admin.php:306
+msgid "Current Entries in the Blocklist"
+msgstr "Current entries in the blocklist"
 
-#: mod/install.php:468
-msgid ""
-"Friendica uses the Smarty3 template engine to render its web views. Smarty3 "
-"compiles templates to PHP to speed up rendering."
-msgstr "Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."
+#: mod/admin.php:309
+msgid "Delete entry from blocklist"
+msgstr "Delete entry from blocklist"
 
-#: mod/install.php:469
-msgid ""
-"In order to store these compiled templates, the web server needs to have "
-"write access to the directory view/smarty3/ under the Friendica top level "
-"folder."
-msgstr "In order to store these compiled templates, the web server needs to have write access to the directory view/smarty3/ under the Friendica top-level directory."
+#: mod/admin.php:312
+msgid "Delete entry from blocklist?"
+msgstr "Delete entry from blocklist?"
 
-#: mod/install.php:470
-msgid ""
-"Please ensure that the user that your web server runs as (e.g. www-data) has"
-" write access to this folder."
-msgstr "Please ensure the user (e.g. www-data) that your web server runs as has write access to this directory."
+#: mod/admin.php:337
+msgid "Server added to blocklist."
+msgstr "Server added to blocklist."
 
-#: mod/install.php:471
-msgid ""
-"Note: as a security measure, you should give the web server write access to "
-"view/smarty3/ only--not the template files (.tpl) that it contains."
-msgstr "Note: as a security measure, you should give the web server write access to view/smarty3/ only--not the template files (.tpl) that it contains."
+#: mod/admin.php:353
+msgid "Site blocklist updated."
+msgstr "Site blocklist updated."
 
-#: mod/install.php:474
-msgid "view/smarty3 is writable"
-msgstr "view/smarty3 is writable"
+#: mod/admin.php:376
+msgid "Delete this Item"
+msgstr "Delete"
 
-#: mod/install.php:490
+#: mod/admin.php:377
 msgid ""
-"Url rewrite in .htaccess is not working. Check your server configuration."
-msgstr "URL rewrite in .htaccess is not working. Check your server configuration."
-
-#: mod/install.php:492
-msgid "Url rewrite is working"
-msgstr "URL rewrite is working"
+"On this page you can delete an item from your node. If the item is a top "
+"level posting, the entire thread will be deleted."
+msgstr "Here you can delete an item from this node. If the item is a top-level posting, the entire thread will be deleted."
 
-#: mod/install.php:511
-msgid "ImageMagick PHP extension is not installed"
-msgstr "ImageMagick PHP extension is not installed"
+#: mod/admin.php:378
+msgid ""
+"You need to know the GUID of the item. You can find it e.g. by looking at "
+"the display URL. The last part of http://example.com/display/123456 is the "
+"GUID, here 123456."
+msgstr "You need to know the global unique identifier (GUID) of the item, which you can find by looking at the display URL. The last part of http://example.com/display/123456 is the GUID: i.e. 123456."
 
-#: mod/install.php:513
-msgid "ImageMagick PHP extension is installed"
-msgstr "ImageMagick PHP extension is installed"
+#: mod/admin.php:379
+msgid "GUID"
+msgstr "GUID"
 
-#: mod/install.php:515
-msgid "ImageMagick supports GIF"
-msgstr "ImageMagick supports GIF"
+#: mod/admin.php:379
+msgid "The GUID of the item you want to delete."
+msgstr "GUID of item to be deleted."
 
-#: mod/install.php:522
-msgid ""
-"The database configuration file \".htconfig.php\" could not be written. "
-"Please use the enclosed text to create a configuration file in your web "
-"server root."
-msgstr "The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."
+#: mod/admin.php:416
+msgid "Item marked for deletion."
+msgstr "Item marked for deletion."
 
-#: mod/install.php:547
-msgid "<h1>What next</h1>"
-msgstr "<h1>What next</h1>"
+#: mod/admin.php:480
+msgid "unknown"
+msgstr "unknown"
 
-#: mod/install.php:548
+#: mod/admin.php:543
 msgid ""
-"IMPORTANT: You will need to [manually] setup a scheduled task for the "
-"poller."
-msgstr "IMPORTANT: You will need to [manually] setup a scheduled task for the poller."
-
-#: mod/localtime.php:25
-msgid "Time Conversion"
-msgstr "Time conversion"
+"This page offers you some numbers to the known part of the federated social "
+"network your Friendica node is part of. These numbers are not complete but "
+"only reflect the part of the network your node is aware of."
+msgstr "This page offers you the amount of known part of the federated social network your Friendica node is part of. These numbers are not complete and only reflect the part of the network your node is aware of."
 
-#: mod/localtime.php:27
+#: mod/admin.php:544
 msgid ""
-"Friendica provides this service for sharing events with other networks and "
-"friends in unknown timezones."
-msgstr "Friendica provides this service for sharing events with other networks and friends in unknown time zones."
-
-#: mod/localtime.php:31
-#, php-format
-msgid "UTC time: %s"
-msgstr "UTC time: %s"
-
-#: mod/localtime.php:34
-#, php-format
-msgid "Current timezone: %s"
-msgstr "Current time zone: %s"
+"The <em>Auto Discovered Contact Directory</em> feature is not enabled, it "
+"will improve the data displayed here."
+msgstr "The <em>Auto Discovered Contact Directory</em> feature is not enabled; enabling it will improve the data displayed here."
 
-#: mod/localtime.php:37
+#: mod/admin.php:556
 #, php-format
-msgid "Converted localtime: %s"
-msgstr "Converted local time: %s"
+msgid "Currently this node is aware of %d nodes from the following platforms:"
+msgstr "Currently this node is aware of %d nodes from the following platforms:"
 
-#: mod/localtime.php:42
-msgid "Please select your timezone:"
-msgstr "Please select your time zone:"
+#: mod/admin.php:586
+msgid "ID"
+msgstr "ID"
 
-#: mod/lockview.php:33 mod/lockview.php:41
-msgid "Remote privacy information not available."
-msgstr "Remote privacy information not available."
+#: mod/admin.php:587
+msgid "Recipient Name"
+msgstr "Recipient name"
 
-#: mod/lockview.php:50
-msgid "Visible to:"
-msgstr "Visible to:"
+#: mod/admin.php:588
+msgid "Recipient Profile"
+msgstr "Recipient profile"
 
-#: mod/lostpass.php:21
-msgid "No valid account found."
-msgstr "No valid account found."
+#: mod/admin.php:590
+msgid "Created"
+msgstr "Created"
 
-#: mod/lostpass.php:37
-msgid "Password reset request issued. Check your email."
-msgstr "Password reset request issued. Please check your email."
+#: mod/admin.php:591
+msgid "Last Tried"
+msgstr "Last Tried"
 
-#: mod/lostpass.php:43
-#, php-format
+#: mod/admin.php:592
 msgid ""
-"\n"
-"\t\tDear %1$s,\n"
-"\t\t\tA request was recently received at \"%2$s\" to reset your account\n"
-"\t\tpassword. In order to confirm this request, please select the verification link\n"
-"\t\tbelow or paste it into your web browser address bar.\n"
-"\n"
-"\t\tIf you did NOT request this change, please DO NOT follow the link\n"
-"\t\tprovided and ignore and/or delete this email.\n"
-"\n"
-"\t\tYour password will not be changed unless we can verify that you\n"
-"\t\tissued this request."
-msgstr "\n\t\tDear %1$s,\n\t\t\tA request was issued at \"%2$s\" to reset your account\n\t\tpassword. In order to confirm this request, please select the verification link\n\t\tbelow or paste it into your web browser address bar.\n\n\t\tIf you did NOT request this change, please DO NOT follow the link\n\t\tprovided and ignore/delete this email.\n\n\t\tYour password will not be changed unless we can verify that you\n\t\tissued this request."
+"This page lists the content of the queue for outgoing postings. These are "
+"postings the initial delivery failed for. They will be resend later and "
+"eventually deleted if the delivery fails permanently."
+msgstr "This page lists the content of the queue for outgoing postings. These are postings the initial delivery failed for. They will be resend later and eventually deleted if the delivery fails permanently."
 
-#: mod/lostpass.php:54
+#: mod/admin.php:617
 #, php-format
 msgid ""
-"\n"
-"\t\tFollow this link to verify your identity:\n"
-"\n"
-"\t\t%1$s\n"
-"\n"
-"\t\tYou will then receive a follow-up message containing the new password.\n"
-"\t\tYou may change that password from your account settings page after logging in.\n"
-"\n"
-"\t\tThe login details are as follows:\n"
-"\n"
-"\t\tSite Location:\t%2$s\n"
-"\t\tLogin Name:\t%3$s"
-msgstr "\n\t\tFollow this link to verify your identity:\n\n\t\t%1$s\n\n\t\tYou will then receive a follow-up message containing the new password.\n\t\tYou may change that password from your account settings page after logging in.\n\n\t\tThe login details are as follows:\n\n\t\tSite Location:\t%2$s\n\t\tLogin Name:\t%3$s"
-
-#: mod/lostpass.php:73
-#, php-format
-msgid "Password reset requested at %s"
-msgstr "Password reset requested at %s"
+"Your DB still runs with MyISAM tables. You should change the engine type to "
+"InnoDB. As Friendica will use InnoDB only features in the future, you should"
+" change this! See <a href=\"%s\">here</a> for a guide that may be helpful "
+"converting the table engines. You may also use the command <tt>php "
+"include/dbstructure.php toinnodb</tt> of your Friendica installation for an "
+"automatic conversion.<br />"
+msgstr "Your DB still runs with MyISAM tables. You should change the engine type to InnoDB. As Friendica will use InnoDB only features in the future, you should change this! See <a href=\"%s\">here</a> for a guide that may be helpful converting the table engines. You may also use the command <tt>php include/dbstructure.php toinnodb</tt> of your Friendica installation for an automatic conversion.<br />"
 
-#: mod/lostpass.php:93
+#: mod/admin.php:626
 msgid ""
-"Request could not be verified. (You may have previously submitted it.) "
-"Password reset failed."
-msgstr "Request could not be verified. (You may have previously submitted it.) Password reset failed."
+"The database update failed. Please run \"php include/dbstructure.php "
+"update\" from the command line and have a look at the errors that might "
+"appear."
+msgstr "The database update failed. Please run 'php include/dbstructure.php update' from the command line and have a look at the errors that might appear."
 
-#: mod/lostpass.php:112 boot.php:886
-msgid "Password Reset"
-msgstr "Forgotten password?"
+#: mod/admin.php:631 mod/admin.php:1539
+msgid "Normal Account"
+msgstr "Standard account"
 
-#: mod/lostpass.php:113
-msgid "Your password has been reset as requested."
-msgstr "Your password has been reset as requested."
+#: mod/admin.php:632 mod/admin.php:1540
+msgid "Automatic Follower Account"
+msgstr "Automatic follower account"
 
-#: mod/lostpass.php:114
-msgid "Your new password is"
-msgstr "Your new password is"
+#: mod/admin.php:633 mod/admin.php:1541
+msgid "Public Forum Account"
+msgstr "Public forum account"
 
-#: mod/lostpass.php:115
-msgid "Save or copy your new password - and then"
-msgstr "Save or copy your new password - and then"
+#: mod/admin.php:634 mod/admin.php:1542
+msgid "Automatic Friend Account"
+msgstr "Automatic friend account"
 
-#: mod/lostpass.php:116
-msgid "click here to login"
-msgstr "click here to login"
+#: mod/admin.php:635
+msgid "Blog Account"
+msgstr "Blog account"
 
-#: mod/lostpass.php:117
-msgid ""
-"Your password may be changed from the <em>Settings</em> page after "
-"successful login."
-msgstr "Your password may be changed from the <em>Settings</em> page after successful login."
+#: mod/admin.php:636
+msgid "Private Forum Account"
+msgstr "Private forum account"
 
-#: mod/lostpass.php:127
-#, php-format
-msgid ""
-"\n"
-"\t\t\t\tDear %1$s,\n"
-"\t\t\t\t\tYour password has been changed as requested. Please retain this\n"
-"\t\t\t\tinformation for your records (or change your password immediately to\n"
-"\t\t\t\tsomething that you will remember).\n"
-"\t\t\t"
-msgstr "\n\t\t\t\tDear %1$s,\n\t\t\t\t\tYour password has been changed as requested. Please retain this\n\t\t\t\tinformation for your records or change your password immediately to\n\t\t\t\tsomething that you will remember.\n\t\t\t"
+#: mod/admin.php:658
+msgid "Message queues"
+msgstr "Message queues"
 
-#: mod/lostpass.php:133
-#, php-format
-msgid ""
-"\n"
-"\t\t\t\tYour login details are as follows:\n"
-"\n"
-"\t\t\t\tSite Location:\t%1$s\n"
-"\t\t\t\tLogin Name:\t%2$s\n"
-"\t\t\t\tPassword:\t%3$s\n"
-"\n"
-"\t\t\t\tYou may change that password from your account settings page after logging in.\n"
-"\t\t\t"
-msgstr "\n\t\t\t\tYour login details are as follows:\n\n\t\t\t\tSite Location:\t%1$s\n\t\t\t\tLogin Name:\t%2$s\n\t\t\t\tPassword:\t%3$s\n\n\t\t\t\tYou may change that password from your account settings page after logging in.\n\t\t\t"
+#: mod/admin.php:664
+msgid "Summary"
+msgstr "Summary"
 
-#: mod/lostpass.php:149
-#, php-format
-msgid "Your password has been changed at %s"
-msgstr "Your password has been changed at %s"
+#: mod/admin.php:666
+msgid "Registered users"
+msgstr "Signed up users"
 
-#: mod/lostpass.php:161
-msgid "Forgot your Password?"
-msgstr "Reset My Password"
+#: mod/admin.php:668
+msgid "Pending registrations"
+msgstr "Pending registrations"
 
-#: mod/lostpass.php:162
-msgid ""
-"Enter your email address and submit to have your password reset. Then check "
-"your email for further instructions."
-msgstr "Enter email address or nickname to reset your password. You will receive further instruction via email."
+#: mod/admin.php:669
+msgid "Version"
+msgstr "Version"
 
-#: mod/lostpass.php:163 boot.php:874
-msgid "Nickname or Email: "
-msgstr "Nickname or email: "
+#: mod/admin.php:674
+msgid "Active plugins"
+msgstr "Active plugins"
 
-#: mod/lostpass.php:164
-msgid "Reset"
-msgstr "Reset"
+#: mod/admin.php:699
+msgid "Can not parse base url. Must have at least <scheme>://<domain>"
+msgstr "Can not parse base URL. Must have at least <scheme>://<domain>"
 
-#: mod/maintenance.php:21
-msgid "System down for maintenance"
-msgstr "Sorry, the system is currently down for maintenance."
+#: mod/admin.php:1006
+msgid "Site settings updated."
+msgstr "Site settings updated."
 
-#: mod/manage.php:152
-msgid "Manage Identities and/or Pages"
-msgstr "Manage Identities and Pages"
+#: mod/admin.php:1034 mod/settings.php:945
+msgid "No special theme for mobile devices"
+msgstr "No special theme for mobile devices"
 
-#: mod/manage.php:153
-msgid ""
-"Toggle between different identities or community/group pages which share "
-"your account details or which you have been granted \"manage\" permissions"
-msgstr "Accounts that I manage or own."
+#: mod/admin.php:1063
+msgid "No community page"
+msgstr "No community page"
 
-#: mod/manage.php:154
-msgid "Select an identity to manage: "
-msgstr "Select identity:"
+#: mod/admin.php:1064
+msgid "Public postings from users of this site"
+msgstr "Public postings from users of this site"
 
-#: mod/match.php:38
-msgid "No keywords to match. Please add keywords to your default profile."
-msgstr "No keywords to match. Please add keywords to your default profile."
+#: mod/admin.php:1065
+msgid "Global community page"
+msgstr "Global community page"
 
-#: mod/match.php:91
-msgid "is interested in:"
-msgstr "is interested in:"
+#: mod/admin.php:1070 mod/contacts.php:542
+msgid "Never"
+msgstr "Never"
 
-#: mod/match.php:105
-msgid "Profile Match"
-msgstr "Profile Match"
+#: mod/admin.php:1071
+msgid "At post arrival"
+msgstr "At post arrival"
 
-#: mod/match.php:112 mod/dirfind.php:247
-msgid "No matches"
-msgstr "No matches"
+#: mod/admin.php:1079 mod/contacts.php:569
+msgid "Disabled"
+msgstr "Disabled"
 
-#: mod/message.php:62 mod/wallmessage.php:52
-msgid "No recipient selected."
-msgstr "No recipient selected."
+#: mod/admin.php:1081
+msgid "Users, Global Contacts"
+msgstr "Users, Global Contacts"
 
-#: mod/message.php:66
-msgid "Unable to locate contact information."
-msgstr "Unable to locate contact information."
+#: mod/admin.php:1082
+msgid "Users, Global Contacts/fallback"
+msgstr "Users, Global Contacts/fallback"
 
-#: mod/message.php:69 mod/wallmessage.php:58
-msgid "Message could not be sent."
-msgstr "Message could not be sent."
+#: mod/admin.php:1086
+msgid "One month"
+msgstr "One month"
 
-#: mod/message.php:72 mod/wallmessage.php:61
-msgid "Message collection failure."
-msgstr "Message collection failure."
+#: mod/admin.php:1087
+msgid "Three months"
+msgstr "Three months"
 
-#: mod/message.php:75 mod/wallmessage.php:64
-msgid "Message sent."
-msgstr "Message sent."
+#: mod/admin.php:1088
+msgid "Half a year"
+msgstr "Half a year"
 
-#: mod/message.php:206
-msgid "Do you really want to delete this message?"
-msgstr "Do you really want to delete this message?"
+#: mod/admin.php:1089
+msgid "One year"
+msgstr "One a year"
 
-#: mod/message.php:226
-msgid "Message deleted."
-msgstr "Message deleted."
+#: mod/admin.php:1094
+msgid "Multi user instance"
+msgstr "Multi user instance"
 
-#: mod/message.php:257
-msgid "Conversation removed."
-msgstr "Conversation removed."
+#: mod/admin.php:1117
+msgid "Closed"
+msgstr "Closed"
 
-#: mod/message.php:324 mod/wallmessage.php:128
-msgid "Send Private Message"
-msgstr "Send private message"
+#: mod/admin.php:1118
+msgid "Requires approval"
+msgstr "Requires approval"
 
-#: mod/message.php:325 mod/message.php:512 mod/wallmessage.php:130
-msgid "To:"
-msgstr "To:"
+#: mod/admin.php:1119
+msgid "Open"
+msgstr "Open"
 
-#: mod/message.php:330 mod/message.php:514 mod/wallmessage.php:131
-msgid "Subject:"
-msgstr "Subject:"
+#: mod/admin.php:1123
+msgid "No SSL policy, links will track page SSL state"
+msgstr "No SSL policy, links will track page SSL state"
 
-#: mod/message.php:334 mod/message.php:517 mod/wallmessage.php:137
-#: mod/invite.php:143
-msgid "Your message:"
-msgstr "Your message:"
+#: mod/admin.php:1124
+msgid "Force all links to use SSL"
+msgstr "Force all links to use SSL"
 
-#: mod/message.php:366
-msgid "No messages."
-msgstr "No messages."
+#: mod/admin.php:1125
+msgid "Self-signed certificate, use SSL for local links only (discouraged)"
+msgstr "Self-signed certificate, use SSL for local links only (discouraged)"
 
-#: mod/message.php:405
-msgid "Message not available."
-msgstr "Message not available."
+#: mod/admin.php:1147 mod/admin.php:1772 mod/admin.php:2035 mod/admin.php:2109
+#: mod/admin.php:2262 mod/settings.php:683 mod/settings.php:794
+#: mod/settings.php:843 mod/settings.php:910 mod/settings.php:1007
+#: mod/settings.php:1273
+msgid "Save Settings"
+msgstr "Save settings"
 
-#: mod/message.php:479
-msgid "Delete message"
-msgstr "Delete message"
+#: mod/admin.php:1148 mod/register.php:276
+msgid "Registration"
+msgstr "Join this Friendica Node Today"
 
-#: mod/message.php:505 mod/message.php:593
-msgid "Delete conversation"
-msgstr "Delete conversation"
+#: mod/admin.php:1149
+msgid "File upload"
+msgstr "File upload"
 
-#: mod/message.php:507
-msgid ""
-"No secure communications available. You <strong>may</strong> be able to "
-"respond from the sender's profile page."
-msgstr "No secure communications available. You <strong>may</strong> be able to respond from the sender's profile page."
+#: mod/admin.php:1150
+msgid "Policies"
+msgstr "Policies"
 
-#: mod/message.php:511
-msgid "Send Reply"
-msgstr "Send reply"
+#: mod/admin.php:1152
+msgid "Auto Discovered Contact Directory"
+msgstr "Auto-discovered contact directory"
 
-#: mod/message.php:563
-#, php-format
-msgid "Unknown sender - %s"
-msgstr "Unknown sender - %s"
+#: mod/admin.php:1153
+msgid "Performance"
+msgstr "Performance"
 
-#: mod/message.php:565
-#, php-format
-msgid "You and %s"
-msgstr "Me and %s"
+#: mod/admin.php:1154
+msgid "Worker"
+msgstr "Worker"
 
-#: mod/message.php:567
-#, php-format
-msgid "%s and You"
-msgstr "%s and me"
+#: mod/admin.php:1155
+msgid ""
+"Relocate - WARNING: advanced function. Could make this server unreachable."
+msgstr "Relocate - Warning, advanced function: This could make this server unreachable."
 
-#: mod/message.php:596
-msgid "D, d M Y - g:i A"
-msgstr "D, d M Y - g:i A"
+#: mod/admin.php:1158
+msgid "Site name"
+msgstr "Site name"
 
-#: mod/message.php:599
-#, php-format
-msgid "%d message"
-msgid_plural "%d messages"
-msgstr[0] "%d message"
-msgstr[1] "%d messages"
+#: mod/admin.php:1159
+msgid "Host name"
+msgstr "Host name"
 
-#: mod/mood.php:135
-msgid "Mood"
-msgstr "Mood"
+#: mod/admin.php:1160
+msgid "Sender Email"
+msgstr "Sender email"
 
-#: mod/mood.php:136
-msgid "Set your current mood and tell your friends"
-msgstr "Set your current mood and tell your friends"
+#: mod/admin.php:1160
+msgid ""
+"The email address your server shall use to send notification emails from."
+msgstr "The email address your server shall use to send notification emails from."
 
-#: mod/newmember.php:7
-msgid "Welcome to Friendica"
-msgstr "Welcome to Friendica"
+#: mod/admin.php:1161
+msgid "Banner/Logo"
+msgstr "Banner/Logo"
 
-#: mod/newmember.php:8
-msgid "New Member Checklist"
-msgstr "New Member Checklist"
+#: mod/admin.php:1162
+msgid "Shortcut icon"
+msgstr "Shortcut icon"
 
-#: mod/newmember.php:10
-msgid ""
-"We would like to offer some tips and links to help make your experience "
-"enjoyable. Click any item to visit the relevant page. A link to this page "
-"will be visible from your home page for two weeks after your initial "
-"registration and then will quietly disappear."
-msgstr "We would like to offer some tips and links to help make your experience enjoyable. Click any item to visit the relevant page. A link to this page will be visible from your home page for two weeks after your initial registration and then will quietly disappear."
+#: mod/admin.php:1162
+msgid "Link to an icon that will be used for browsers."
+msgstr "Link to an icon that will be used for browsers."
 
-#: mod/newmember.php:11
-msgid "Getting Started"
-msgstr "Getting started"
+#: mod/admin.php:1163
+msgid "Touch icon"
+msgstr "Touch icon"
 
-#: mod/newmember.php:13
-msgid "Friendica Walk-Through"
-msgstr "Friendica walk-through"
+#: mod/admin.php:1163
+msgid "Link to an icon that will be used for tablets and mobiles."
+msgstr "Link to an icon that will be used for tablets and mobiles."
 
-#: mod/newmember.php:13
-msgid ""
-"On your <em>Quick Start</em> page - find a brief introduction to your "
-"profile and network tabs, make some new connections, and find some groups to"
-" join."
-msgstr "On your <em>Quick Start</em> page - find a brief introduction to your profile and network tabs, make some new connections, and find some groups to join."
-
-#: mod/newmember.php:17
-msgid "Go to Your Settings"
-msgstr "Go to your settings"
+#: mod/admin.php:1164
+msgid "Additional Info"
+msgstr "Additional Info"
 
-#: mod/newmember.php:17
+#: mod/admin.php:1164
+#, php-format
 msgid ""
-"On your <em>Settings</em> page -  change your initial password. Also make a "
-"note of your Identity Address. This looks just like an email address - and "
-"will be useful in making friends on the free social web."
-msgstr "On your <em>Settings</em> page -  change your initial password. Also make a note of your Identity Address. This looks just like an email address - and will be useful in making friends on the free social web."
+"For public servers: you can add additional information here that will be "
+"listed at %s/siteinfo."
+msgstr "For public servers: add additional information here that will be listed at %s/siteinfo."
 
-#: mod/newmember.php:18
-msgid ""
-"Review the other settings, particularly the privacy settings. An unpublished"
-" directory listing is like having an unlisted phone number. In general, you "
-"should probably publish your listing - unless all of your friends and "
-"potential friends know exactly how to find you."
-msgstr "Review the other settings, particularly the privacy settings. An unpublished directory listing is like having an unlisted phone number. In general, you should probably publish your listing - unless all of your friends and potential friends know exactly how to find you."
+#: mod/admin.php:1165
+msgid "System language"
+msgstr "System language"
 
-#: mod/newmember.php:22 mod/profile_photo.php:255 mod/profiles.php:703
-msgid "Upload Profile Photo"
-msgstr "Upload profile photo"
+#: mod/admin.php:1166
+msgid "System theme"
+msgstr "System theme"
 
-#: mod/newmember.php:22
+#: mod/admin.php:1166
 msgid ""
-"Upload a profile photo if you have not done so already. Studies have shown "
-"that people with real photos of themselves are ten times more likely to make"
-" friends than people who do not."
-msgstr "Upload a profile photo if you have not done so already. Studies have shown that people with real photos of themselves are ten times more likely to make friends than people who do not."
-
-#: mod/newmember.php:23
-msgid "Edit Your Profile"
-msgstr "Edit your profile"
+"Default system theme - may be over-ridden by user profiles - <a href='#' "
+"id='cnftheme'>change theme settings</a>"
+msgstr "Default system theme - may be overridden by user profiles - <a href='#' id='cnftheme'>change theme settings</a>"
 
-#: mod/newmember.php:23
-msgid ""
-"Edit your <strong>default</strong> profile to your liking. Review the "
-"settings for hiding your list of friends and hiding the profile from unknown"
-" visitors."
-msgstr "Edit your <strong>default</strong> profile to your liking. Review the settings for hiding your list of friends and hiding the profile from unknown visitors."
+#: mod/admin.php:1167
+msgid "Mobile system theme"
+msgstr "Mobile system theme"
 
-#: mod/newmember.php:24
-msgid "Profile Keywords"
-msgstr "Profile keywords"
+#: mod/admin.php:1167
+msgid "Theme for mobile devices"
+msgstr "Theme for mobile devices"
 
-#: mod/newmember.php:24
-msgid ""
-"Set some public keywords for your default profile which describe your "
-"interests. We may be able to find other people with similar interests and "
-"suggest friendships."
-msgstr "Set some public keywords for your default profile which describe your interests. We may be able to find other people with similar interests and suggest friendships."
+#: mod/admin.php:1168
+msgid "SSL link policy"
+msgstr "SSL link policy"
 
-#: mod/newmember.php:26
-msgid "Connecting"
-msgstr "Connecting"
+#: mod/admin.php:1168
+msgid "Determines whether generated links should be forced to use SSL"
+msgstr "Determines whether generated links should be forced to use SSL"
 
-#: mod/newmember.php:32
-msgid "Importing Emails"
-msgstr "Importing emails"
+#: mod/admin.php:1169
+msgid "Force SSL"
+msgstr "Force SSL"
 
-#: mod/newmember.php:32
+#: mod/admin.php:1169
 msgid ""
-"Enter your email access information on your Connector Settings page if you "
-"wish to import and interact with friends or mailing lists from your email "
-"INBOX"
-msgstr "Enter your email access information on your Connector Settings if you wish to import and interact with friends or mailing lists from your email INBOX"
+"Force all Non-SSL requests to SSL - Attention: on some systems it could lead"
+" to endless loops."
+msgstr "Force all Non-SSL requests to SSL - Attention: on some systems it could lead to endless loops."
 
-#: mod/newmember.php:35
-msgid "Go to Your Contacts Page"
-msgstr "Go to your contacts page"
+#: mod/admin.php:1170
+msgid "Hide help entry from navigation menu"
+msgstr "Hide help entry from navigation menu"
 
-#: mod/newmember.php:35
+#: mod/admin.php:1170
 msgid ""
-"Your Contacts page is your gateway to managing friendships and connecting "
-"with friends on other networks. Typically you enter their address or site "
-"URL in the <em>Add New Contact</em> dialog."
-msgstr "Your contacts page is your gateway to managing friendships and connecting with friends on other networks. Typically you enter their address or site URL in the <em>Add new contact</em> dialog."
+"Hides the menu entry for the Help pages from the navigation menu. You can "
+"still access it calling /help directly."
+msgstr "Hides the menu entry for the Help pages from the navigation menu. Help pages can still be accessed by calling ../help directly via its URL."
 
-#: mod/newmember.php:36
-msgid "Go to Your Site's Directory"
-msgstr "Go to your site's directory"
+#: mod/admin.php:1171
+msgid "Single user instance"
+msgstr "Single user instance"
 
-#: mod/newmember.php:36
-msgid ""
-"The Directory page lets you find other people in this network or other "
-"federated sites. Look for a <em>Connect</em> or <em>Follow</em> link on "
-"their profile page. Provide your own Identity Address if requested."
-msgstr "The directory lets you find other people in this network or other federated sites. Look for a <em>Connect</em> or <em>Follow</em> link on their profile page. Provide your own identity address when requested."
+#: mod/admin.php:1171
+msgid "Make this instance multi-user or single-user for the named user"
+msgstr "Make this instance multi-user or single-user for the named user"
 
-#: mod/newmember.php:37
-msgid "Finding New People"
-msgstr "Finding new people"
+#: mod/admin.php:1172
+msgid "Maximum image size"
+msgstr "Maximum image size"
 
-#: mod/newmember.php:37
+#: mod/admin.php:1172
 msgid ""
-"On the side panel of the Contacts page are several tools to find new "
-"friends. We can match people by interest, look up people by name or "
-"interest, and provide suggestions based on network relationships. On a brand"
-" new site, friend suggestions will usually begin to be populated within 24 "
-"hours."
-msgstr "On the side panel of the Contacts page are several tools to find new friends. We can match people by interest, look up people by name or interest, and provide suggestions based on network relationships. On a brand new site, friend suggestions will usually begin to be populated within 24 hours."
+"Maximum size in bytes of uploaded images. Default is 0, which means no "
+"limits."
+msgstr "Maximum size in bytes of uploaded images. Default is 0, which means no limits."
 
-#: mod/newmember.php:41
-msgid "Group Your Contacts"
-msgstr "Group your contacts"
+#: mod/admin.php:1173
+msgid "Maximum image length"
+msgstr "Maximum image length"
 
-#: mod/newmember.php:41
+#: mod/admin.php:1173
 msgid ""
-"Once you have made some friends, organize them into private conversation "
-"groups from the sidebar of your Contacts page and then you can interact with"
-" each group privately on your Network page."
-msgstr "Once you have made some friends, organize them into private conversation groups from the sidebar of your contacts page and then you can interact with each group privately on your network page."
+"Maximum length in pixels of the longest side of uploaded images. Default is "
+"-1, which means no limits."
+msgstr "Maximum length in pixels of the longest side of uploaded images. Default is -1, which means no limits."
 
-#: mod/newmember.php:44
-msgid "Why Aren't My Posts Public?"
-msgstr "Why aren't my posts public?"
+#: mod/admin.php:1174
+msgid "JPEG image quality"
+msgstr "JPEG image quality"
 
-#: mod/newmember.php:44
+#: mod/admin.php:1174
 msgid ""
-"Friendica respects your privacy. By default, your posts will only show up to"
-" people you've added as friends. For more information, see the help section "
-"from the link above."
-msgstr "Friendica respects your privacy. By default, your posts will only show up to people you've added as friends. For more information, see the help section from the link above."
+"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is "
+"100, which is full quality."
+msgstr "Uploaded JPEGS will be saved at this quality setting [0-100]. Default is 100, which is the original quality level."
 
-#: mod/newmember.php:48
-msgid "Getting Help"
-msgstr "Getting help"
+#: mod/admin.php:1176
+msgid "Register policy"
+msgstr "Registration policy"
 
-#: mod/newmember.php:50
-msgid "Go to the Help Section"
-msgstr "Go to the help section"
+#: mod/admin.php:1177
+msgid "Maximum Daily Registrations"
+msgstr "Maximum daily registrations"
 
-#: mod/newmember.php:50
+#: mod/admin.php:1177
 msgid ""
-"Our <strong>help</strong> pages may be consulted for detail on other program"
-" features and resources."
-msgstr "Our <strong>help</strong> pages may be consulted for detail on other program features and resources."
+"If registration is permitted above, this sets the maximum number of new user"
+" registrations to accept per day.  If register is set to closed, this "
+"setting has no effect."
+msgstr "If open registration is permitted, this sets the maximum number of new registrations per day.  This setting has no effect for registrations by approval."
 
-#: mod/nogroup.php:45 mod/viewcontacts.php:105 mod/contacts.php:599
-#: mod/contacts.php:943
-#, php-format
-msgid "Visit %s's profile [%s]"
-msgstr "Visit %s's profile [%s]"
+#: mod/admin.php:1178
+msgid "Register text"
+msgstr "Registration text"
 
-#: mod/nogroup.php:46 mod/contacts.php:944
-msgid "Edit contact"
-msgstr "Edit contact"
+#: mod/admin.php:1178
+msgid "Will be displayed prominently on the registration page."
+msgstr "Will be displayed prominently on the registration page."
 
-#: mod/nogroup.php:67
-msgid "Contacts who are not members of a group"
-msgstr "Contacts who are not members of a group"
+#: mod/admin.php:1179
+msgid "Accounts abandoned after x days"
+msgstr "Accounts abandoned after so many days"
 
-#: mod/notifications.php:37
-msgid "Invalid request identifier."
-msgstr "Invalid request identifier."
+#: mod/admin.php:1179
+msgid ""
+"Will not waste system resources polling external sites for abandonded "
+"accounts. Enter 0 for no time limit."
+msgstr "Will not waste system resources polling external sites for abandoned accounts. Enter 0 for no time limit."
 
-#: mod/notifications.php:46 mod/notifications.php:182
-#: mod/notifications.php:229
-msgid "Discard"
-msgstr "Discard"
+#: mod/admin.php:1180
+msgid "Allowed friend domains"
+msgstr "Allowed friend domains"
 
-#: mod/notifications.php:62 mod/notifications.php:181
-#: mod/notifications.php:265 mod/contacts.php:619 mod/contacts.php:819
-#: mod/contacts.php:1004
-msgid "Ignore"
-msgstr "Ignore"
+#: mod/admin.php:1180
+msgid ""
+"Comma separated list of domains which are allowed to establish friendships "
+"with this site. Wildcards are accepted. Empty to allow any domains"
+msgstr "Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Leave empty to allow any domains"
 
-#: mod/notifications.php:107
-msgid "Network Notifications"
-msgstr "Network notifications"
+#: mod/admin.php:1181
+msgid "Allowed email domains"
+msgstr "Allowed email domains"
 
-#: mod/notifications.php:113 mod/notify.php:72
-msgid "System Notifications"
-msgstr "System notifications"
+#: mod/admin.php:1181
+msgid ""
+"Comma separated list of domains which are allowed in email addresses for "
+"registrations to this site. Wildcards are accepted. Empty to allow any "
+"domains"
+msgstr "Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Leave empty to allow any domains"
 
-#: mod/notifications.php:119
-msgid "Personal Notifications"
-msgstr "Personal notifications"
+#: mod/admin.php:1182
+msgid "Block public"
+msgstr "Block public"
 
-#: mod/notifications.php:125
-msgid "Home Notifications"
-msgstr "Home notifications"
+#: mod/admin.php:1182
+msgid ""
+"Check to block public access to all otherwise public personal pages on this "
+"site unless you are currently logged in."
+msgstr "Block public access to all otherwise public personal pages on this site, except for local users when logged in."
 
-#: mod/notifications.php:154
-msgid "Show Ignored Requests"
-msgstr "Show ignored requests."
+#: mod/admin.php:1183
+msgid "Force publish"
+msgstr "Mandatory directory listing"
 
-#: mod/notifications.php:154
-msgid "Hide Ignored Requests"
-msgstr "Hide ignored requests"
-
-#: mod/notifications.php:166 mod/notifications.php:236
-msgid "Notification type: "
-msgstr "Notification type: "
+#: mod/admin.php:1183
+msgid ""
+"Check to force all profiles on this site to be listed in the site directory."
+msgstr "Force all profiles on this site to be listed in the site directory."
 
-#: mod/notifications.php:169
-#, php-format
-msgid "suggested by %s"
-msgstr "suggested by %s"
+#: mod/admin.php:1184
+msgid "Global directory URL"
+msgstr "Global directory URL"
 
-#: mod/notifications.php:174 mod/notifications.php:253 mod/contacts.php:626
-msgid "Hide this contact from others"
-msgstr "Hide this contact from others"
+#: mod/admin.php:1184
+msgid ""
+"URL to the global directory. If this is not set, the global directory is "
+"completely unavailable to the application."
+msgstr "URL to the global directory: If this is not set, the global directory is completely unavailable to the application."
 
-#: mod/notifications.php:175 mod/notifications.php:254
-msgid "Post a new friend activity"
-msgstr "Post a new friend activity"
+#: mod/admin.php:1185
+msgid "Allow threaded items"
+msgstr "Allow threaded items"
 
-#: mod/notifications.php:175 mod/notifications.php:254
-msgid "if applicable"
-msgstr "if applicable"
+#: mod/admin.php:1185
+msgid "Allow infinite level threading for items on this site."
+msgstr "Allow infinite levels of threading for items on this site."
 
-#: mod/notifications.php:178 mod/notifications.php:263 mod/admin.php:1596
-msgid "Approve"
-msgstr "Approve"
+#: mod/admin.php:1186
+msgid "Private posts by default for new users"
+msgstr "Private posts by default for new users"
 
-#: mod/notifications.php:197
-msgid "Claims to be known to you: "
-msgstr "Says they know me:"
+#: mod/admin.php:1186
+msgid ""
+"Set default post permissions for all new members to the default privacy "
+"group rather than public."
+msgstr "Set default post permissions for all new members to the default privacy group rather than public."
 
-#: mod/notifications.php:198
-msgid "yes"
-msgstr "yes"
+#: mod/admin.php:1187
+msgid "Don't include post content in email notifications"
+msgstr "Don't include post content in email notifications"
 
-#: mod/notifications.php:198
-msgid "no"
-msgstr "no"
+#: mod/admin.php:1187
+msgid ""
+"Don't include the content of a post/comment/private message/etc. in the "
+"email notifications that are sent out from this site, as a privacy measure."
+msgstr "Don't include the content of a post/comment/private message in the email notifications sent from this site, as a privacy measure."
 
-#: mod/notifications.php:199 mod/notifications.php:204
-msgid "Shall your connection be bidirectional or not?"
-msgstr "Shall your connection be in both directions or not?"
+#: mod/admin.php:1188
+msgid "Disallow public access to addons listed in the apps menu."
+msgstr "Disallow public access to addons listed in the apps menu."
 
-#: mod/notifications.php:200 mod/notifications.php:205
-#, php-format
+#: mod/admin.php:1188
 msgid ""
-"Accepting %s as a friend allows %s to subscribe to your posts, and you will "
-"also receive updates from them in your news feed."
-msgstr "Accepting %s as a friend allows %s to subscribe to your posts; you will also receive updates from them in your news feed."
+"Checking this box will restrict addons listed in the apps menu to members "
+"only."
+msgstr "Checking this box will restrict addons listed in the apps menu to members only."
 
-#: mod/notifications.php:201
-#, php-format
-msgid ""
-"Accepting %s as a subscriber allows them to subscribe to your posts, but you"
-" will not receive updates from them in your news feed."
-msgstr "Accepting %s as a subscriber allows them to subscribe to your posts, but you will not receive updates from them in your news feed."
+#: mod/admin.php:1189
+msgid "Don't embed private images in posts"
+msgstr "Don't embed private images in posts"
 
-#: mod/notifications.php:206
-#, php-format
+#: mod/admin.php:1189
 msgid ""
-"Accepting %s as a sharer allows them to subscribe to your posts, but you "
-"will not receive updates from them in your news feed."
-msgstr "Accepting %s as a sharer allows them to subscribe to your posts, but you will not receive updates from them in your news feed."
+"Don't replace locally-hosted private photos in posts with an embedded copy "
+"of the image. This means that contacts who receive posts containing private "
+"photos will have to authenticate and load each image, which may take a "
+"while."
+msgstr "Don't replace locally-hosted private photos in posts with an embedded copy of the image. This means that contacts who receive posts containing private photos will have to authenticate and load each image, which may take a while."
 
-#: mod/notifications.php:217
-msgid "Friend"
-msgstr "Friend"
+#: mod/admin.php:1190
+msgid "Allow Users to set remote_self"
+msgstr "Allow users to set \"Remote self\""
 
-#: mod/notifications.php:218
-msgid "Sharer"
-msgstr "Sharer"
+#: mod/admin.php:1190
+msgid ""
+"With checking this, every user is allowed to mark every contact as a "
+"remote_self in the repair contact dialog. Setting this flag on a contact "
+"causes mirroring every posting of that contact in the users stream."
+msgstr "This allows every user to mark contacts as a \"Remote self\" in the repair contact dialogue. Setting this flag on a contact will mirror every posting of that contact in the users stream."
 
-#: mod/notifications.php:218
-msgid "Subscriber"
-msgstr "Subscriber"
+#: mod/admin.php:1191
+msgid "Block multiple registrations"
+msgstr "Block multiple registrations"
 
-#: mod/notifications.php:257 mod/follow.php:131 mod/contacts.php:637
-msgid "Profile URL"
-msgstr "Profile URL:"
+#: mod/admin.php:1191
+msgid "Disallow users to register additional accounts for use as pages."
+msgstr "Disallow users to sign up for additional accounts."
 
-#: mod/notifications.php:274
-msgid "No introductions."
-msgstr "No introductions."
+#: mod/admin.php:1192
+msgid "OpenID support"
+msgstr "OpenID support"
 
-#: mod/notifications.php:315
-msgid "Show unread"
-msgstr "Show unread"
+#: mod/admin.php:1192
+msgid "OpenID support for registration and logins."
+msgstr "OpenID support for registration and logins."
 
-#: mod/notifications.php:315
-msgid "Show all"
-msgstr "Show all"
+#: mod/admin.php:1193
+msgid "Fullname check"
+msgstr "Full name check"
 
-#: mod/notifications.php:321
-#, php-format
-msgid "No more %s notifications."
-msgstr "No more %s notifications."
+#: mod/admin.php:1193
+msgid ""
+"Force users to register with a space between firstname and lastname in Full "
+"name, as an antispam measure"
+msgstr "Force users to sign up with a space between first name and last name in the full name field; it may reduce spam and abuse registrations."
 
-#: mod/notify.php:68
-msgid "No more system notifications."
-msgstr "No more system notifications."
+#: mod/admin.php:1194
+msgid "Community Page Style"
+msgstr "Community page style"
 
-#: mod/oexchange.php:24
-msgid "Post successful."
-msgstr "Post successful."
+#: mod/admin.php:1194
+msgid ""
+"Type of community page to show. 'Global community' shows every public "
+"posting from an open distributed network that arrived on this server."
+msgstr "Type of community page to show. 'Global community' shows every public posting from an open distributed network that arrived on this server."
 
-#: mod/openid.php:24
-msgid "OpenID protocol error. No ID returned."
-msgstr "OpenID protocol error. No ID returned."
+#: mod/admin.php:1195
+msgid "Posts per user on community page"
+msgstr "Posts per user on community page"
 
-#: mod/openid.php:60
+#: mod/admin.php:1195
 msgid ""
-"Account not found and OpenID registration is not permitted on this site."
-msgstr "Account not found and OpenID registration is not permitted on this site."
-
-#: mod/ostatus_subscribe.php:16
-msgid "Subscribing to OStatus contacts"
-msgstr "Subscribing to OStatus contacts"
+"The maximum number of posts per user on the community page. (Not valid for "
+"'Global Community')"
+msgstr "Maximum number of posts per user on the community page (not valid for 'Global Community')."
 
-#: mod/ostatus_subscribe.php:27
-msgid "No contact provided."
-msgstr "No contact provided."
+#: mod/admin.php:1196
+msgid "Enable OStatus support"
+msgstr "Enable OStatus support"
 
-#: mod/ostatus_subscribe.php:33
-msgid "Couldn't fetch information for contact."
-msgstr "Couldn't fetch information for contact."
+#: mod/admin.php:1196
+msgid ""
+"Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All "
+"communications in OStatus are public, so privacy warnings will be "
+"occasionally displayed."
+msgstr "Provide built-in OStatus (StatusNet, GNU Social, etc.) compatibility. All communications in OStatus are public, so privacy warnings will be occasionally displayed."
 
-#: mod/ostatus_subscribe.php:42
-msgid "Couldn't fetch friends for contact."
-msgstr "Couldn't fetch friends for contact."
+#: mod/admin.php:1197
+msgid "OStatus conversation completion interval"
+msgstr "OStatus conversation completion interval"
 
-#: mod/ostatus_subscribe.php:56 mod/repair_ostatus.php:46
-msgid "Done"
-msgstr "Done"
+#: mod/admin.php:1197
+msgid ""
+"How often shall the poller check for new entries in OStatus conversations? "
+"This can be a very ressource task."
+msgstr "How often shall the poller check for new entries in OStatus conversations? This can be rather resources consuming."
 
-#: mod/ostatus_subscribe.php:70
-msgid "success"
-msgstr "success"
+#: mod/admin.php:1198
+msgid "Only import OStatus threads from our contacts"
+msgstr "Only import OStatus threads from known contacts"
 
-#: mod/ostatus_subscribe.php:72
-msgid "failed"
-msgstr "failed"
+#: mod/admin.php:1198
+msgid ""
+"Normally we import every content from our OStatus contacts. With this option"
+" we only store threads that are started by a contact that is known on our "
+"system."
+msgstr "Normally we import every content from our OStatus contacts. With this option we only store threads that are started by a contact that is known on our system."
 
-#: mod/ostatus_subscribe.php:80 mod/repair_ostatus.php:52
-msgid "Keep this window open until done."
-msgstr "Keep this window open until done."
+#: mod/admin.php:1199
+msgid "OStatus support can only be enabled if threading is enabled."
+msgstr "OStatus support can only be enabled if threading is enabled."
 
-#: mod/p.php:12
-msgid "Not Extended"
-msgstr "Not extended"
+#: mod/admin.php:1201
+msgid ""
+"Diaspora support can't be enabled because Friendica was installed into a sub"
+" directory."
+msgstr "Diaspora support can't be enabled because Friendica was installed into a sub directory."
 
-#: mod/p.php:19 mod/p.php:46 mod/p.php:55 mod/fetch.php:15 mod/fetch.php:42
-#: mod/fetch.php:51 mod/help.php:56 index.php:301
-msgid "Not Found"
-msgstr "Not found"
+#: mod/admin.php:1202
+msgid "Enable Diaspora support"
+msgstr "Enable Diaspora support"
 
-#: mod/photos.php:96 mod/photos.php:1902
-msgid "Recent Photos"
-msgstr "Recent photos"
+#: mod/admin.php:1202
+msgid "Provide built-in Diaspora network compatibility."
+msgstr "Provide built-in Diaspora network compatibility."
 
-#: mod/photos.php:99 mod/photos.php:1330 mod/photos.php:1904
-msgid "Upload New Photos"
-msgstr "Upload new photos"
+#: mod/admin.php:1203
+msgid "Only allow Friendica contacts"
+msgstr "Only allow Friendica contacts"
 
-#: mod/photos.php:114 mod/settings.php:38
-msgid "everybody"
-msgstr "everybody"
+#: mod/admin.php:1203
+msgid ""
+"All contacts must use Friendica protocols. All other built-in communication "
+"protocols disabled."
+msgstr "All contacts must use Friendica protocols. All other built-in communication protocols will be disabled."
 
-#: mod/photos.php:178
-msgid "Contact information unavailable"
-msgstr "Contact information unavailable"
+#: mod/admin.php:1204
+msgid "Verify SSL"
+msgstr "Verify SSL"
 
-#: mod/photos.php:199
-msgid "Album not found."
-msgstr "Album not found."
+#: mod/admin.php:1204
+msgid ""
+"If you wish, you can turn on strict certificate checking. This will mean you"
+" cannot connect (at all) to self-signed SSL sites."
+msgstr "If you wish, you can turn on strict certificate checking. This will mean you cannot connect (at all) to self-signed SSL sites."
 
-#: mod/photos.php:232 mod/photos.php:244 mod/photos.php:1274
-msgid "Delete Album"
-msgstr "Delete album"
+#: mod/admin.php:1205
+msgid "Proxy user"
+msgstr "Proxy user"
 
-#: mod/photos.php:242
-msgid "Do you really want to delete this photo album and all its photos?"
-msgstr "Do you really want to delete this photo album and all its photos?"
+#: mod/admin.php:1206
+msgid "Proxy URL"
+msgstr "Proxy URL"
 
-#: mod/photos.php:325 mod/photos.php:336 mod/photos.php:1600
-msgid "Delete Photo"
-msgstr "Delete photo"
-
-#: mod/photos.php:334
-msgid "Do you really want to delete this photo?"
-msgstr "Do you really want to delete this photo?"
+#: mod/admin.php:1207
+msgid "Network timeout"
+msgstr "Network timeout"
 
-#: mod/photos.php:715
-#, php-format
-msgid "%1$s was tagged in %2$s by %3$s"
-msgstr "%1$s was tagged in %2$s by %3$s"
+#: mod/admin.php:1207
+msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
+msgstr "Value is in seconds. Set to 0 for unlimited (not recommended)."
 
-#: mod/photos.php:715
-msgid "a photo"
-msgstr "a photo"
+#: mod/admin.php:1208
+msgid "Maximum Load Average"
+msgstr "Maximum load average"
 
-#: mod/photos.php:815 mod/wall_upload.php:181 mod/profile_photo.php:155
-#, php-format
-msgid "Image exceeds size limit of %s"
-msgstr "Image exceeds size limit of %s"
+#: mod/admin.php:1208
+msgid ""
+"Maximum system load before delivery and poll processes are deferred - "
+"default 50."
+msgstr "Maximum system load before delivery and poll processes are deferred (default 50)."
 
-#: mod/photos.php:823
-msgid "Image file is empty."
-msgstr "Image file is empty."
+#: mod/admin.php:1209
+msgid "Maximum Load Average (Frontend)"
+msgstr "Maximum load average (frontend)"
 
-#: mod/photos.php:856 mod/wall_upload.php:218 mod/profile_photo.php:164
-msgid "Unable to process image."
-msgstr "Unable to process image."
+#: mod/admin.php:1209
+msgid "Maximum system load before the frontend quits service - default 50."
+msgstr "Maximum system load before the frontend quits service (default 50)."
 
-#: mod/photos.php:885 mod/wall_upload.php:257 mod/profile_photo.php:314
-msgid "Image upload failed."
-msgstr "Image upload failed."
+#: mod/admin.php:1210
+msgid "Minimal Memory"
+msgstr "Minimal memory"
 
-#: mod/photos.php:990
-msgid "No photos selected"
-msgstr "No photos selected"
+#: mod/admin.php:1210
+msgid ""
+"Minimal free memory in MB for the poller. Needs access to /proc/meminfo - "
+"default 0 (deactivated)."
+msgstr "Minimal free memory in MB for the poller. Needs access to /proc/meminfo (default 0 - deactivated)."
 
-#: mod/photos.php:1093 mod/videos.php:311
-msgid "Access to this item is restricted."
-msgstr "Access to this item is restricted."
+#: mod/admin.php:1211
+msgid "Maximum table size for optimization"
+msgstr "Maximum table size for optimization"
 
-#: mod/photos.php:1153
-#, php-format
-msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."
-msgstr "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."
+#: mod/admin.php:1211
+msgid ""
+"Maximum table size (in MB) for the automatic optimization - default 100 MB. "
+"Enter -1 to disable it."
+msgstr "Maximum table size (in MB) for the automatic optimization (default 100 MB; -1 to deactivate)."
 
-#: mod/photos.php:1190
-msgid "Upload Photos"
-msgstr "Upload photos"
+#: mod/admin.php:1212
+msgid "Minimum level of fragmentation"
+msgstr "Minimum level of fragmentation"
 
-#: mod/photos.php:1194 mod/photos.php:1269
-msgid "New album name: "
-msgstr "New album name: "
+#: mod/admin.php:1212
+msgid ""
+"Minimum fragmenation level to start the automatic optimization - default "
+"value is 30%."
+msgstr "Minimum fragmentation level to start the automatic optimization (default 30%)."
 
-#: mod/photos.php:1195
-msgid "or existing album name: "
-msgstr "or existing album name: "
+#: mod/admin.php:1214
+msgid "Periodical check of global contacts"
+msgstr "Periodical check of global contacts"
 
-#: mod/photos.php:1196
-msgid "Do not show a status post for this upload"
-msgstr "Do not show a status post for this upload"
+#: mod/admin.php:1214
+msgid ""
+"If enabled, the global contacts are checked periodically for missing or "
+"outdated data and the vitality of the contacts and servers."
+msgstr "This checks global contacts periodically for missing or outdated data and the vitality of the contacts and servers."
 
-#: mod/photos.php:1207 mod/photos.php:1604 mod/settings.php:1308
-msgid "Show to Groups"
-msgstr "Show to groups"
+#: mod/admin.php:1215
+msgid "Days between requery"
+msgstr "Days between enquiry"
 
-#: mod/photos.php:1208 mod/photos.php:1605 mod/settings.php:1309
-msgid "Show to Contacts"
-msgstr "Show to contacts"
+#: mod/admin.php:1215
+msgid "Number of days after which a server is requeried for his contacts."
+msgstr "Number of days after which a server is required check contacts."
 
-#: mod/photos.php:1209
-msgid "Private Photo"
-msgstr "Private photo"
+#: mod/admin.php:1216
+msgid "Discover contacts from other servers"
+msgstr "Discover contacts from other servers"
 
-#: mod/photos.php:1210
-msgid "Public Photo"
-msgstr "Public photo"
+#: mod/admin.php:1216
+msgid ""
+"Periodically query other servers for contacts. You can choose between "
+"'users': the users on the remote system, 'Global Contacts': active contacts "
+"that are known on the system. The fallback is meant for Redmatrix servers "
+"and older friendica servers, where global contacts weren't available. The "
+"fallback increases the server load, so the recommened setting is 'Users, "
+"Global Contacts'."
+msgstr "Periodically query other servers for contacts. You can choose between 'Users': the users on the remote system, 'Global Contacts': active contacts that are known on the system. The fallback is meant for Redmatrix servers and older Friendica servers, where global contacts weren't available. The fallback increases the server load, so the recommend setting is 'Users, Global Contacts'."
 
-#: mod/photos.php:1280
-msgid "Edit Album"
-msgstr "Edit album"
+#: mod/admin.php:1217
+msgid "Timeframe for fetching global contacts"
+msgstr "Time-frame for fetching global contacts"
 
-#: mod/photos.php:1285
-msgid "Show Newest First"
-msgstr "Show newest first"
+#: mod/admin.php:1217
+msgid ""
+"When the discovery is activated, this value defines the timeframe for the "
+"activity of the global contacts that are fetched from other servers."
+msgstr "If discovery is activated, this value defines the time-frame for the activity of the global contacts that are fetched from other servers."
 
-#: mod/photos.php:1287
-msgid "Show Oldest First"
-msgstr "Show oldest first"
+#: mod/admin.php:1218
+msgid "Search the local directory"
+msgstr "Search the local directory"
 
-#: mod/photos.php:1316 mod/photos.php:1887
-msgid "View Photo"
-msgstr "View photo"
+#: mod/admin.php:1218
+msgid ""
+"Search the local directory instead of the global directory. When searching "
+"locally, every search will be executed on the global directory in the "
+"background. This improves the search results when the search is repeated."
+msgstr "Search the local directory instead of the global directory. When searching locally, every search will be executed on the global directory in the background. This improves the search results when the search is repeated."
 
-#: mod/photos.php:1361
-msgid "Permission denied. Access to this item may be restricted."
-msgstr "Permission denied. Access to this item may be restricted."
+#: mod/admin.php:1220
+msgid "Publish server information"
+msgstr "Publish server information"
 
-#: mod/photos.php:1363
-msgid "Photo not available"
-msgstr "Photo not available"
+#: mod/admin.php:1220
+msgid ""
+"If enabled, general server and usage data will be published. The data "
+"contains the name and version of the server, number of users with public "
+"profiles, number of posts and the activated protocols and connectors. See <a"
+" href='http://the-federation.info/'>the-federation.info</a> for details."
+msgstr "This publishes generic data about the server and its usage. The data contains the name and version of the server, number of users with public profiles, number of posts and the activated protocols and connectors. See <a href='http://the-federation.info/'>the-federation.info</a> for details."
 
-#: mod/photos.php:1424
-msgid "View photo"
-msgstr "View photo"
+#: mod/admin.php:1222
+msgid "Suppress Tags"
+msgstr "Suppress tags"
 
-#: mod/photos.php:1424
-msgid "Edit photo"
-msgstr "Edit photo"
+#: mod/admin.php:1222
+msgid "Suppress showing a list of hashtags at the end of the posting."
+msgstr "Suppress listed hashtags at the end of posts."
 
-#: mod/photos.php:1425
-msgid "Use as profile photo"
-msgstr "Use as profile photo"
+#: mod/admin.php:1223
+msgid "Path to item cache"
+msgstr "Path to item cache"
 
-#: mod/photos.php:1450
-msgid "View Full Size"
-msgstr "View full size"
+#: mod/admin.php:1223
+msgid "The item caches buffers generated bbcode and external images."
+msgstr "The item caches buffers generated bbcode and external images."
 
-#: mod/photos.php:1540
-msgid "Tags: "
-msgstr "Tags: "
+#: mod/admin.php:1224
+msgid "Cache duration in seconds"
+msgstr "Cache duration in seconds"
 
-#: mod/photos.php:1543
-msgid "[Remove any tag]"
-msgstr "[Remove any tag]"
+#: mod/admin.php:1224
+msgid ""
+"How long should the cache files be hold? Default value is 86400 seconds (One"
+" day). To disable the item cache, set the value to -1."
+msgstr "How long should cache files be held? (Default 86400 seconds - one day;  -1 disables item cache)"
 
-#: mod/photos.php:1586
-msgid "New album name"
-msgstr "New album name"
+#: mod/admin.php:1225
+msgid "Maximum numbers of comments per post"
+msgstr "Maximum numbers of comments per post"
 
-#: mod/photos.php:1587
-msgid "Caption"
-msgstr "Caption"
+#: mod/admin.php:1225
+msgid "How much comments should be shown for each post? Default value is 100."
+msgstr "How many comments should be shown for each post? (Default 100)"
 
-#: mod/photos.php:1588
-msgid "Add a Tag"
-msgstr "Add Tag"
+#: mod/admin.php:1226
+msgid "Temp path"
+msgstr "Temp path"
 
-#: mod/photos.php:1588
+#: mod/admin.php:1226
 msgid ""
-"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
-msgstr "Example: @bob, @jojo@example.com, #California, #camping"
+"If you have a restricted system where the webserver can't access the system "
+"temp path, enter another path here."
+msgstr "Enter a different tmp path, if your system restricts the webserver's access to the system temp path."
 
-#: mod/photos.php:1589
-msgid "Do not rotate"
-msgstr "Do not rotate"
+#: mod/admin.php:1227
+msgid "Base path to installation"
+msgstr "Base path to installation"
 
-#: mod/photos.php:1590
-msgid "Rotate CW (right)"
-msgstr "Rotate right (CW)"
+#: mod/admin.php:1227
+msgid ""
+"If the system cannot detect the correct path to your installation, enter the"
+" correct path here. This setting should only be set if you are using a "
+"restricted system and symbolic links to your webroot."
+msgstr "If the system cannot detect the correct path to your installation, enter the correct path here. This setting should only be set if you are using a restricted system and symbolic links to your webroot."
 
-#: mod/photos.php:1591
-msgid "Rotate CCW (left)"
-msgstr "Rotate left (CCW)"
+#: mod/admin.php:1228
+msgid "Disable picture proxy"
+msgstr "Disable picture proxy"
 
-#: mod/photos.php:1606
-msgid "Private photo"
-msgstr "Private photo"
+#: mod/admin.php:1228
+msgid ""
+"The picture proxy increases performance and privacy. It shouldn't be used on"
+" systems with very low bandwith."
+msgstr "The picture proxy increases performance and privacy. It shouldn't be used on systems with very low bandwith."
 
-#: mod/photos.php:1607
-msgid "Public photo"
-msgstr "Public photo"
+#: mod/admin.php:1229
+msgid "Only search in tags"
+msgstr "Only search in tags"
 
-#: mod/photos.php:1816
-msgid "Map"
-msgstr "Map"
+#: mod/admin.php:1229
+msgid "On large systems the text search can slow down the system extremely."
+msgstr "On large systems the text search can slow down the system significantly."
 
-#: mod/photos.php:1893 mod/videos.php:395
-msgid "View Album"
-msgstr "View album"
+#: mod/admin.php:1231
+msgid "New base url"
+msgstr "New base URL"
 
-#: mod/poke.php:197
-msgid "Poke/Prod"
-msgstr "Poke/Prod"
+#: mod/admin.php:1231
+msgid ""
+"Change base url for this server. Sends relocate message to all DFRN contacts"
+" of all users."
+msgstr "Change base URL for this server. Sends relocate message to all DFRN contacts of all users."
 
-#: mod/poke.php:198
-msgid "poke, prod or do other things to somebody"
-msgstr "Poke, prod or do other things to somebody"
-
-#: mod/poke.php:199
-msgid "Recipient"
-msgstr "Recipient:"
+#: mod/admin.php:1233
+msgid "RINO Encryption"
+msgstr "RINO Encryption"
 
-#: mod/poke.php:200
-msgid "Choose what you wish to do to recipient"
-msgstr "Choose what you wish to do:"
+#: mod/admin.php:1233
+msgid "Encryption layer between nodes."
+msgstr "Encryption layer between nodes."
 
-#: mod/poke.php:203
-msgid "Make this post private"
-msgstr "Make this post private"
+#: mod/admin.php:1235
+msgid "Maximum number of parallel workers"
+msgstr "Maximum number of parallel workers"
 
-#: mod/profile.php:176
-msgid "Tips for New Members"
-msgstr "Tips for New Members"
+#: mod/admin.php:1235
+msgid ""
+"On shared hosters set this to 2. On larger systems, values of 10 are great. "
+"Default value is 4."
+msgstr "On shared hosts set this to 2. On larger systems, values of 10 are great. Default value is 4."
 
-#: mod/profperm.php:28 mod/profperm.php:59
-msgid "Invalid profile identifier."
-msgstr "Invalid profile identifier."
+#: mod/admin.php:1236
+msgid "Don't use 'proc_open' with the worker"
+msgstr "Don't use 'proc_open' with the worker"
 
-#: mod/profperm.php:105
-msgid "Profile Visibility Editor"
-msgstr "Profile Visibility Editor"
+#: mod/admin.php:1236
+msgid ""
+"Enable this if your system doesn't allow the use of 'proc_open'. This can "
+"happen on shared hosters. If this is enabled you should increase the "
+"frequency of poller calls in your crontab."
+msgstr "Enable this if your system doesn't allow the use of 'proc_open'. This can happen on shared hosts. If this is enabled you should increase the frequency of poller calls in your crontab."
 
-#: mod/profperm.php:118
-msgid "Visible To"
-msgstr "Visible to"
+#: mod/admin.php:1237
+msgid "Enable fastlane"
+msgstr "Enable fast-lane"
 
-#: mod/profperm.php:134
-msgid "All Contacts (with secure profile access)"
-msgstr "All contacts with secure profile access"
+#: mod/admin.php:1237
+msgid ""
+"When enabed, the fastlane mechanism starts an additional worker if processes"
+" with higher priority are blocked by processes of lower priority."
+msgstr "The fast-lane mechanism starts an additional worker if processes with higher priority are blocked by processes of lower priority."
 
-#: mod/removeme.php:54 mod/removeme.php:57
-msgid "Remove My Account"
-msgstr "Remove My Account"
+#: mod/admin.php:1238
+msgid "Enable frontend worker"
+msgstr "Enable frontend worker"
 
-#: mod/removeme.php:55
+#: mod/admin.php:1238
+#, php-format
 msgid ""
-"This will completely remove your account. Once this has been done it is not "
-"recoverable."
-msgstr "This will completely remove your account. Once this has been done it is not recoverable."
-
-#: mod/removeme.php:56
-msgid "Please enter your password for verification:"
-msgstr "Please enter your password for verification:"
+"When enabled the Worker process is triggered when backend access is "
+"performed (e.g. messages being delivered). On smaller sites you might want "
+"to call %s/worker on a regular basis via an external cron job. You should "
+"only enable this option if you cannot utilize cron/scheduled jobs on your "
+"server."
+msgstr "This triggers the worker process when the backend is accessed, such as messages being delivered. On smaller sites you might want to call %s/worker on a regular basis via an external cron job. You should only enable this option if you cannot utilize cron/scheduled jobs on your server."
 
-#: mod/repair_ostatus.php:16
-msgid "Resubscribing to OStatus contacts"
-msgstr "Resubscribing to OStatus contacts"
+#: mod/admin.php:1268
+msgid "Update has been marked successful"
+msgstr "Update has been marked successful"
 
-#: mod/repair_ostatus.php:32
-msgid "Error"
-msgstr "Error"
+#: mod/admin.php:1276
+#, php-format
+msgid "Database structure update %s was successfully applied."
+msgstr "Database structure update %s was successfully applied."
 
-#: mod/subthread.php:105
+#: mod/admin.php:1279
 #, php-format
-msgid "%1$s is following %2$s's %3$s"
-msgstr "%1$s is following %2$s's %3$s"
+msgid "Executing of database structure update %s failed with error: %s"
+msgstr "Executing of database structure update %s failed with error: %s"
 
-#: mod/suggest.php:29
-msgid "Do you really want to delete this suggestion?"
-msgstr "Do you really want to delete this suggestion?"
+#: mod/admin.php:1293
+#, php-format
+msgid "Executing %s failed with error: %s"
+msgstr "Executing %s failed with error: %s"
 
-#: mod/suggest.php:73
-msgid ""
-"No suggestions available. If this is a new site, please try again in 24 "
-"hours."
-msgstr "No suggestions available. If this is a new site, please try again in 24 hours."
+#: mod/admin.php:1296
+#, php-format
+msgid "Update %s was successfully applied."
+msgstr "Update %s was successfully applied."
 
-#: mod/suggest.php:86 mod/suggest.php:106
-msgid "Ignore/Hide"
-msgstr "Ignore/Hide"
+#: mod/admin.php:1299
+#, php-format
+msgid "Update %s did not return a status. Unknown if it succeeded."
+msgstr "Update %s did not return a status. Unknown if it succeeded."
 
-#: mod/tagrm.php:45
-msgid "Tag removed"
-msgstr "Tag removed"
+#: mod/admin.php:1302
+#, php-format
+msgid "There was no additional update function %s that needed to be called."
+msgstr "There was no additional update function %s that needed to be called."
 
-#: mod/tagrm.php:84
-msgid "Remove Item Tag"
-msgstr "Remove Item tag"
+#: mod/admin.php:1322
+msgid "No failed updates."
+msgstr "No failed updates."
 
-#: mod/tagrm.php:86
-msgid "Select a tag to remove: "
-msgstr "Select a tag to remove: "
+#: mod/admin.php:1323
+msgid "Check database structure"
+msgstr "Check database structure"
 
-#: mod/uexport.php:38
-msgid "Export account"
-msgstr "Export account"
+#: mod/admin.php:1328
+msgid "Failed Updates"
+msgstr "Failed updates"
 
-#: mod/uexport.php:38
+#: mod/admin.php:1329
 msgid ""
-"Export your account info and contacts. Use this to make a backup of your "
-"account and/or to move it to another server."
-msgstr "Export your account info and contacts. Use this to backup your account or to move it to another server."
+"This does not include updates prior to 1139, which did not return a status."
+msgstr "This does not include updates prior to 1139, which did not return a status."
 
-#: mod/uexport.php:39
-msgid "Export all"
-msgstr "Export all"
+#: mod/admin.php:1330
+msgid "Mark success (if update was manually applied)"
+msgstr "Mark success (if update was manually applied)"
 
-#: mod/uexport.php:39
+#: mod/admin.php:1331
+msgid "Attempt to execute this update step automatically"
+msgstr "Attempt to execute this update step automatically"
+
+#: mod/admin.php:1365
+#, php-format
 msgid ""
-"Export your accout info, contacts and all your items as json. Could be a "
-"very big file, and could take a lot of time. Use this to make a full backup "
-"of your account (photos are not exported)"
-msgstr "Export your account info, contacts and all your items as json. Could be a very big file, and could take a lot of time. Use this to make a full backup of your account (photos are not exported)"
+"\n"
+"\t\t\tDear %1$s,\n"
+"\t\t\t\tthe administrator of %2$s has set up an account for you."
+msgstr "\n\t\t\tDear %1$s,\n\t\t\t\tThe administrator of %2$s has set up an account for you."
 
-#: mod/uexport.php:46 mod/settings.php:97
-msgid "Export personal data"
-msgstr "Export personal data"
+#: mod/admin.php:1368
+#, php-format
+msgid ""
+"\n"
+"\t\t\tThe login details are as follows:\n"
+"\n"
+"\t\t\tSite Location:\t%1$s\n"
+"\t\t\tLogin Name:\t\t%2$s\n"
+"\t\t\tPassword:\t\t%3$s\n"
+"\n"
+"\t\t\tYou may change your password from your account \"Settings\" page after logging\n"
+"\t\t\tin.\n"
+"\n"
+"\t\t\tPlease take a few moments to review the other account settings on that page.\n"
+"\n"
+"\t\t\tYou may also wish to add some basic information to your default profile\n"
+"\t\t\t(on the \"Profiles\" page) so that other people can easily find you.\n"
+"\n"
+"\t\t\tWe recommend setting your full name, adding a profile photo,\n"
+"\t\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n"
+"\t\t\tperhaps what country you live in; if you do not wish to be more specific\n"
+"\t\t\tthan that.\n"
+"\n"
+"\t\t\tWe fully respect your right to privacy, and none of these items are necessary.\n"
+"\t\t\tIf you are new and do not know anybody here, they may help\n"
+"\t\t\tyou to make some new and interesting friends.\n"
+"\n"
+"\t\t\tThank you and welcome to %4$s."
+msgstr "\n\t\t\tThe login details are as follows:\n\n\t\t\tSite Location:\t%1$s\n\t\t\tLogin Name:\t\t%2$s\n\t\t\tPassword:\t\t%3$s\n\n\t\t\tYou may change your password from your account \"Settings\" page after logging\n\t\t\tin.\n\n\t\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\t\tYou may also wish to add some basic information to your default profile\n\t\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\t\tWe recommend setting your full name, adding a profile photo,\n\t\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\t\tperhaps what country you live in; if you do not wish to be more specific\n\t\t\tthan that.\n\n\t\t\tWe fully respect your right to privacy and none of these items are necessary.\n\t\t\tIf you are new and do not know anybody here, this may help\n\t\t\tyou to make some new and interesting friends.\n\n\t\t\tThank you and welcome to %4$s."
 
-#: mod/update_community.php:21 mod/update_display.php:25
-#: mod/update_notes.php:38 mod/update_profile.php:37 mod/update_network.php:29
-msgid "[Embedded content - reload page to view]"
-msgstr "[Embedded content - reload page to view]"
+#: mod/admin.php:1412
+#, php-format
+msgid "%s user blocked/unblocked"
+msgid_plural "%s users blocked/unblocked"
+msgstr[0] "%s user blocked/unblocked"
+msgstr[1] "%s users blocked/unblocked"
 
-#: mod/videos.php:126
-msgid "Do you really want to delete this video?"
-msgstr "Do you really want to delete this video?"
+#: mod/admin.php:1419
+#, php-format
+msgid "%s user deleted"
+msgid_plural "%s users deleted"
+msgstr[0] "%s user deleted"
+msgstr[1] "%s users deleted"
 
-#: mod/videos.php:131
-msgid "Delete Video"
-msgstr "Delete video"
+#: mod/admin.php:1466
+#, php-format
+msgid "User '%s' deleted"
+msgstr "User '%s' deleted"
 
-#: mod/videos.php:210
-msgid "No videos selected"
-msgstr "No videos selected"
+#: mod/admin.php:1474
+#, php-format
+msgid "User '%s' unblocked"
+msgstr "User '%s' unblocked"
 
-#: mod/videos.php:404
-msgid "Recent Videos"
-msgstr "Recent videos"
+#: mod/admin.php:1474
+#, php-format
+msgid "User '%s' blocked"
+msgstr "User '%s' blocked"
 
-#: mod/videos.php:406
-msgid "Upload New Videos"
-msgstr "Upload new videos"
+#: mod/admin.php:1582 mod/admin.php:1608
+msgid "Register date"
+msgstr "Registration date"
 
-#: mod/viewcontacts.php:78
-msgid "No contacts."
-msgstr "No contacts."
+#: mod/admin.php:1582 mod/admin.php:1608
+msgid "Last login"
+msgstr "Last login"
 
-#: mod/viewsrc.php:8
-msgid "Access denied."
-msgstr "Access denied."
+#: mod/admin.php:1582 mod/admin.php:1608
+msgid "Last item"
+msgstr "Last item"
 
-#: mod/wall_attach.php:19 mod/wall_attach.php:27 mod/wall_attach.php:78
-#: mod/wall_upload.php:36 mod/wall_upload.php:52 mod/wall_upload.php:110
-#: mod/wall_upload.php:150 mod/wall_upload.php:153
-msgid "Invalid request."
-msgstr "Invalid request."
+#: mod/admin.php:1582 mod/settings.php:46
+msgid "Account"
+msgstr "Account"
 
-#: mod/wall_attach.php:96
-msgid "Sorry, maybe your upload is bigger than the PHP configuration allows"
-msgstr "Sorry, maybe your upload is bigger than the PHP configuration allows"
+#: mod/admin.php:1591
+msgid "Add User"
+msgstr "Add user"
 
-#: mod/wall_attach.php:96
-msgid "Or - did you try to upload an empty file?"
-msgstr "Or did you try to upload an empty file?"
+#: mod/admin.php:1592
+msgid "select all"
+msgstr "select all"
 
-#: mod/wall_attach.php:107
-#, php-format
-msgid "File exceeds size limit of %s"
-msgstr "File exceeds size limit of %s"
+#: mod/admin.php:1593
+msgid "User registrations waiting for confirm"
+msgstr "User registrations awaiting confirmation"
 
-#: mod/wall_attach.php:160 mod/wall_attach.php:176
-msgid "File upload failed."
-msgstr "File upload failed."
+#: mod/admin.php:1594
+msgid "User waiting for permanent deletion"
+msgstr "User awaiting permanent deletion"
 
-#: mod/wallmessage.php:44 mod/wallmessage.php:108
-#, php-format
-msgid "Number of daily wall messages for %s exceeded. Message failed."
-msgstr "Number of daily wall messages for %s exceeded. Message failed."
+#: mod/admin.php:1595
+msgid "Request date"
+msgstr "Request date"
 
-#: mod/wallmessage.php:55
-msgid "Unable to check your home location."
-msgstr "Unable to check your home location."
+#: mod/admin.php:1596
+msgid "No registrations."
+msgstr "No registrations."
 
-#: mod/wallmessage.php:82 mod/wallmessage.php:91
-msgid "No recipient."
-msgstr "No recipient."
-
-#: mod/wallmessage.php:129
-#, php-format
-msgid ""
-"If you wish for %s to respond, please check that the privacy settings on "
-"your site allow private mail from unknown senders."
-msgstr "If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."
+#: mod/admin.php:1597
+msgid "Note from the user"
+msgstr "Note from the user"
 
-#: mod/webfinger.php:11 mod/probe.php:10
-msgid "Only logged in users are permitted to perform a probing."
-msgstr "Only logged in users are permitted to perform a probing."
+#: mod/admin.php:1598 mod/notifications.php:179 mod/notifications.php:264
+msgid "Approve"
+msgstr "Approve"
 
-#: mod/regmod.php:60
-msgid "Account approved."
-msgstr "Account approved."
+#: mod/admin.php:1599
+msgid "Deny"
+msgstr "Deny"
 
-#: mod/regmod.php:88
-#, php-format
-msgid "Registration revoked for %s"
-msgstr "Registration revoked for %s"
+#: mod/admin.php:1601 mod/contacts.php:625 mod/contacts.php:825
+#: mod/contacts.php:1003
+msgid "Block"
+msgstr "Block"
 
-#: mod/regmod.php:100
-msgid "Please login."
-msgstr "Please login."
+#: mod/admin.php:1602 mod/contacts.php:625 mod/contacts.php:825
+#: mod/contacts.php:1003
+msgid "Unblock"
+msgstr "Unblock"
 
-#: mod/uimport.php:53 mod/register.php:201
-msgid ""
-"This site has exceeded the number of allowed daily account registrations. "
-"Please try again tomorrow."
-msgstr "This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."
+#: mod/admin.php:1603
+msgid "Site admin"
+msgstr "Site admin"
 
-#: mod/uimport.php:68 mod/register.php:298
-msgid "Import"
-msgstr "Import profile"
+#: mod/admin.php:1604
+msgid "Account expired"
+msgstr "Account expired"
 
-#: mod/uimport.php:70
-msgid "Move account"
-msgstr "Move Existing Friendica Account"
+#: mod/admin.php:1607
+msgid "New User"
+msgstr "New user"
 
-#: mod/uimport.php:71
-msgid "You can import an account from another Friendica server."
-msgstr "You can import an existing Friendica profile to this node."
+#: mod/admin.php:1608
+msgid "Deleted since"
+msgstr "Deleted since"
 
-#: mod/uimport.php:72
+#: mod/admin.php:1613
 msgid ""
-"You need to export your account from the old server and upload it here. We "
-"will recreate your old account here with all your contacts. We will try also"
-" to inform your friends that you moved here."
-msgstr "You need to export your account from the old server and upload it here. We will recreate your old account here with all your contacts. We will try also to inform your friends that you moved here."
+"Selected users will be deleted!\\n\\nEverything these users had posted on "
+"this site will be permanently deleted!\\n\\nAre you sure?"
+msgstr "Selected users will be deleted!\\n\\nEverything these users has posted on this site will be permanently deleted!\\n\\nAre you sure?"
 
-#: mod/uimport.php:73
+#: mod/admin.php:1614
 msgid ""
-"This feature is experimental. We can't import contacts from the OStatus "
-"network (GNU Social/Statusnet) or from Diaspora"
-msgstr "This feature is experimental. We can't import contacts from the OStatus network (GNU Social/Statusnet) or from Diaspora."
-
-#: mod/uimport.php:74
-msgid "Account file"
-msgstr "Account file:"
+"The user {0} will be deleted!\\n\\nEverything this user has posted on this "
+"site will be permanently deleted!\\n\\nAre you sure?"
+msgstr "The user {0} will be deleted!\\n\\nEverything this user has posted on this site will be permanently deleted!\\n\\nAre you sure?"
 
-#: mod/uimport.php:74
-msgid ""
-"To export your account, go to \"Settings->Export your personal data\" and "
-"select \"Export account\""
-msgstr "To export your account, go to \"Settings->Export personal data\" and select \"Export account\""
+#: mod/admin.php:1624
+msgid "Name of the new user."
+msgstr "Name of the new user."
 
-#: mod/dfrn_request.php:103
-msgid "This introduction has already been accepted."
-msgstr "This introduction has already been accepted."
+#: mod/admin.php:1625
+msgid "Nickname"
+msgstr "Nickname"
 
-#: mod/dfrn_request.php:126 mod/dfrn_request.php:528
-msgid "Profile location is not valid or does not contain profile information."
-msgstr "Profile location is not valid or does not contain profile information."
+#: mod/admin.php:1625
+msgid "Nickname of the new user."
+msgstr "Nickname of the new user."
 
-#: mod/dfrn_request.php:131 mod/dfrn_request.php:533
-msgid "Warning: profile location has no identifiable owner name."
-msgstr "Warning: profile location has no identifiable owner name."
+#: mod/admin.php:1626
+msgid "Email address of the new user."
+msgstr "Email address of the new user."
 
-#: mod/dfrn_request.php:134 mod/dfrn_request.php:536
-msgid "Warning: profile location has no profile photo."
-msgstr "Warning: profile location has no profile photo."
+#: mod/admin.php:1669
+#, php-format
+msgid "Plugin %s disabled."
+msgstr "Plugin %s disabled."
 
-#: mod/dfrn_request.php:138 mod/dfrn_request.php:540
+#: mod/admin.php:1673
 #, php-format
-msgid "%d required parameter was not found at the given location"
-msgid_plural "%d required parameters were not found at the given location"
-msgstr[0] "%d required parameter was not found at the given location"
-msgstr[1] "%d required parameters were not found at the given location"
+msgid "Plugin %s enabled."
+msgstr "Plugin %s enabled."
 
-#: mod/dfrn_request.php:182
-msgid "Introduction complete."
-msgstr "Introduction complete."
+#: mod/admin.php:1684 mod/admin.php:1936
+msgid "Disable"
+msgstr "Disable"
 
-#: mod/dfrn_request.php:227
-msgid "Unrecoverable protocol error."
-msgstr "Unrecoverable protocol error."
+#: mod/admin.php:1686 mod/admin.php:1938
+msgid "Enable"
+msgstr "Enable"
 
-#: mod/dfrn_request.php:255
-msgid "Profile unavailable."
-msgstr "Profile unavailable."
+#: mod/admin.php:1709 mod/admin.php:1985
+msgid "Toggle"
+msgstr "Toggle"
 
-#: mod/dfrn_request.php:282
-#, php-format
-msgid "%s has received too many connection requests today."
-msgstr "%s has received too many connection requests today."
+#: mod/admin.php:1717 mod/admin.php:1994
+msgid "Author: "
+msgstr "Author: "
 
-#: mod/dfrn_request.php:283
-msgid "Spam protection measures have been invoked."
-msgstr "Spam protection measures have been invoked."
+#: mod/admin.php:1718 mod/admin.php:1995
+msgid "Maintainer: "
+msgstr "Maintainer: "
 
-#: mod/dfrn_request.php:284
-msgid "Friends are advised to please try again in 24 hours."
-msgstr "Friends are advised to please try again in 24 hours."
+#: mod/admin.php:1773
+msgid "Reload active plugins"
+msgstr "Reload active plugins"
 
-#: mod/dfrn_request.php:346
-msgid "Invalid locator"
-msgstr "Invalid locator"
+#: mod/admin.php:1778
+#, php-format
+msgid ""
+"There are currently no plugins available on your node. You can find the "
+"official plugin repository at %1$s and might find other interesting plugins "
+"in the open plugin registry at %2$s"
+msgstr "There are currently no plugins available on your node. You can find the official plugin repository at %1$s and might find other interesting plugins in the open plugin registry at %2$s"
 
-#: mod/dfrn_request.php:355
-msgid "Invalid email address."
-msgstr "Invalid email address."
+#: mod/admin.php:1897
+msgid "No themes found."
+msgstr "No themes found."
 
-#: mod/dfrn_request.php:380
-msgid "This account has not been configured for email. Request failed."
-msgstr "This account has not been configured for email. Request failed."
+#: mod/admin.php:1976
+msgid "Screenshot"
+msgstr "Screenshot"
 
-#: mod/dfrn_request.php:483
-msgid "You have already introduced yourself here."
-msgstr "You have already introduced yourself here."
+#: mod/admin.php:2036
+msgid "Reload active themes"
+msgstr "Reload active themes"
 
-#: mod/dfrn_request.php:487
+#: mod/admin.php:2041
 #, php-format
-msgid "Apparently you are already friends with %s."
-msgstr "Apparently you are already friends with %s."
-
-#: mod/dfrn_request.php:508
-msgid "Invalid profile URL."
-msgstr "Invalid profile URL."
-
-#: mod/dfrn_request.php:593 mod/contacts.php:221
-msgid "Failed to update contact record."
-msgstr "Failed to update contact record."
+msgid "No themes found on the system. They should be paced in %1$s"
+msgstr "No themes found on the system. They should be paced in %1$s"
 
-#: mod/dfrn_request.php:614
-msgid "Your introduction has been sent."
-msgstr "Your introduction has been sent."
+#: mod/admin.php:2042
+msgid "[Experimental]"
+msgstr "[Experimental]"
 
-#: mod/dfrn_request.php:656
-msgid ""
-"Remote subscription can't be done for your network. Please subscribe "
-"directly on your system."
-msgstr "Remote subscription can't be done for your network. Please subscribe directly on your system."
+#: mod/admin.php:2043
+msgid "[Unsupported]"
+msgstr "[Unsupported]"
 
-#: mod/dfrn_request.php:677
-msgid "Please login to confirm introduction."
-msgstr "Please login to confirm introduction."
+#: mod/admin.php:2067
+msgid "Log settings updated."
+msgstr "Log settings updated."
 
-#: mod/dfrn_request.php:687
-msgid ""
-"Incorrect identity currently logged in. Please login to "
-"<strong>this</strong> profile."
-msgstr "Incorrect identity currently logged in. Please login to <strong>this</strong> profile."
+#: mod/admin.php:2099
+msgid "PHP log currently enabled."
+msgstr "PHP log currently enabled."
 
-#: mod/dfrn_request.php:701 mod/dfrn_request.php:718
-msgid "Confirm"
-msgstr "Confirm"
+#: mod/admin.php:2101
+msgid "PHP log currently disabled."
+msgstr "PHP log currently disabled."
 
-#: mod/dfrn_request.php:713
-msgid "Hide this contact"
-msgstr "Hide this contact"
+#: mod/admin.php:2110
+msgid "Clear"
+msgstr "Clear"
 
-#: mod/dfrn_request.php:716
-#, php-format
-msgid "Welcome home %s."
-msgstr "Welcome home %s."
+#: mod/admin.php:2115
+msgid "Enable Debugging"
+msgstr "Enable debugging"
 
-#: mod/dfrn_request.php:717
-#, php-format
-msgid "Please confirm your introduction/connection request to %s."
-msgstr "Please confirm your introduction/connection request to %s."
+#: mod/admin.php:2116
+msgid "Log file"
+msgstr "Log file"
 
-#: mod/dfrn_request.php:848
+#: mod/admin.php:2116
 msgid ""
-"Please enter your 'Identity Address' from one of the following supported "
-"communications networks:"
-msgstr "Please enter your 'Identity address' from one of the following supported communications networks:"
+"Must be writable by web server. Relative to your Friendica top-level "
+"directory."
+msgstr "Must be writable by web server and relative to your Friendica top-level directory."
 
-#: mod/dfrn_request.php:872
-#, php-format
-msgid ""
-"If you are not yet a member of the free social web, <a "
-"href=\"%s/siteinfo\">follow this link to find a public Friendica site and "
-"join us today</a>."
-msgstr "If you are not yet a member of the free social web, <a href=\"%s/siteinfo\">follow this link to find a public Friendica site and join us today</a>."
+#: mod/admin.php:2117
+msgid "Log level"
+msgstr "Log level"
 
-#: mod/dfrn_request.php:877
-msgid "Friend/Connection Request"
-msgstr "Friend/Connection request"
+#: mod/admin.php:2120
+msgid "PHP logging"
+msgstr "PHP logging"
 
-#: mod/dfrn_request.php:878
+#: mod/admin.php:2121
 msgid ""
-"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, "
-"testuser@identi.ca"
-msgstr "Examples: jojo@friendica.example.com, http://friendica.example.com/profile/jojo, sam@identi.ca"
-
-#: mod/dfrn_request.php:879 mod/follow.php:114
-msgid "Please answer the following:"
-msgstr "Please answer the following:"
-
-#: mod/dfrn_request.php:880 mod/follow.php:115
-#, php-format
-msgid "Does %s know you?"
-msgstr "Does %s know you?"
+"To enable logging of PHP errors and warnings you can add the following to "
+"the .htconfig.php file of your installation. The filename set in the "
+"'error_log' line is relative to the friendica top-level directory and must "
+"be writeable by the web server. The option '1' for 'log_errors' and "
+"'display_errors' is to enable these options, set to '0' to disable them."
+msgstr "To enable logging of PHP errors and warnings you can add the following to the .htconfig.php file of your installation. The file name set in the 'error_log' line is relative to the Friendica top-level directory and must be writeable by the web server. The option '1' for 'log_errors' and 'display_errors' is to enable these options, set to '0' to disable them."
 
-#: mod/dfrn_request.php:884 mod/follow.php:116
-msgid "Add a personal note:"
-msgstr "Add a personal note:"
+#: mod/admin.php:2251 mod/admin.php:2252 mod/settings.php:784
+msgid "Off"
+msgstr "Off"
 
-#: mod/dfrn_request.php:887
-msgid "StatusNet/Federated Social Web"
-msgstr "StatusNet/Federated social web"
+#: mod/admin.php:2251 mod/admin.php:2252 mod/settings.php:784
+msgid "On"
+msgstr "On"
 
-#: mod/dfrn_request.php:889
+#: mod/admin.php:2252
 #, php-format
-msgid ""
-" - please do not use this form.  Instead, enter %s into your Diaspora search"
-" bar."
-msgstr " - please do not use this form.  Instead, enter %s into your Diaspora search bar."
+msgid "Lock feature %s"
+msgstr "Lock feature %s"
 
-#: mod/dfrn_request.php:890 mod/follow.php:122
-msgid "Your Identity Address:"
-msgstr "My identity address:"
+#: mod/admin.php:2260
+msgid "Manage Additional Features"
+msgstr "Manage additional features"
 
-#: mod/dfrn_request.php:893 mod/follow.php:21
-msgid "Submit Request"
-msgstr "Submit request"
+#: mod/allfriends.php:49
+msgid "No friends to display."
+msgstr "No friends to display."
 
-#: mod/dirfind.php:39
-#, php-format
-msgid "People Search - %s"
-msgstr "People search - %s"
-
-#: mod/dirfind.php:50
-#, php-format
-msgid "Forum Search - %s"
-msgstr "Forum search - %s"
+#: mod/bookmarklet.php:44
+msgid "The post was created"
+msgstr "The post was created"
 
-#: mod/events.php:96 mod/events.php:98
-msgid "Event can not end before it has started."
-msgstr "Event cannot end before it has started."
+#: mod/cal.php:146 mod/display.php:348 mod/profile.php:157
+msgid "Access to this profile has been restricted."
+msgstr "Access to this profile has been restricted."
 
-#: mod/events.php:105 mod/events.php:107
-msgid "Event title and start time are required."
-msgstr "Event title and starting time are required."
+#: mod/cal.php:274 mod/events.php:379
+msgid "View"
+msgstr "View"
 
-#: mod/events.php:379
-msgid "Create New Event"
-msgstr "Create new event"
+#: mod/cal.php:275 mod/events.php:381
+msgid "Previous"
+msgstr "Previous"
 
-#: mod/events.php:484
-msgid "Event details"
-msgstr "Event details"
+#: mod/cal.php:276 mod/events.php:382 mod/install.php:204
+msgid "Next"
+msgstr "Next"
 
-#: mod/events.php:485
-msgid "Starting date and Title are required."
-msgstr "Starting date and title are required."
+#: mod/cal.php:285 mod/events.php:391
+msgid "list"
+msgstr "List"
 
-#: mod/events.php:486 mod/events.php:487
-msgid "Event Starts:"
-msgstr "Event starts:"
+#: mod/cal.php:295
+msgid "User not found"
+msgstr "User not found"
 
-#: mod/events.php:486 mod/events.php:498 mod/profiles.php:712
-msgid "Required"
-msgstr "Required"
+#: mod/cal.php:311
+msgid "This calendar format is not supported"
+msgstr "This calendar format is not supported"
 
-#: mod/events.php:488 mod/events.php:504
-msgid "Finish date/time is not known or not relevant"
-msgstr "Finish date/time is not known or not relevant"
+#: mod/cal.php:313
+msgid "No exportable data found"
+msgstr "No exportable data found"
 
-#: mod/events.php:490 mod/events.php:491
-msgid "Event Finishes:"
-msgstr "Event finishes:"
+#: mod/cal.php:328
+msgid "calendar"
+msgstr "calendar"
 
-#: mod/events.php:492 mod/events.php:505
-msgid "Adjust for viewer timezone"
-msgstr "Adjust for viewer's time zone"
+#: mod/contacts.php:138
+#, php-format
+msgid "%d contact edited."
+msgid_plural "%d contacts edited."
+msgstr[0] "%d contact edited."
+msgstr[1] "%d contacts edited."
 
-#: mod/events.php:494
-msgid "Description:"
-msgstr "Description:"
+#: mod/contacts.php:173 mod/contacts.php:382
+msgid "Could not access contact record."
+msgstr "Could not access contact record."
 
-#: mod/events.php:498 mod/events.php:500
-msgid "Title:"
-msgstr "Title:"
+#: mod/contacts.php:187
+msgid "Could not locate selected profile."
+msgstr "Could not locate selected profile."
 
-#: mod/events.php:501 mod/events.php:502
-msgid "Share this event"
-msgstr "Share this event"
+#: mod/contacts.php:220
+msgid "Contact updated."
+msgstr "Contact updated."
 
-#: mod/events.php:531
-msgid "Failed to remove event"
-msgstr "Failed to remove event"
+#: mod/contacts.php:222 mod/dfrn_request.php:594
+msgid "Failed to update contact record."
+msgstr "Failed to update contact record."
 
-#: mod/events.php:533
-msgid "Event removed"
-msgstr "Event removed"
+#: mod/contacts.php:403
+msgid "Contact has been blocked"
+msgstr "Contact has been blocked"
 
-#: mod/follow.php:32
-msgid "You already added this contact."
-msgstr "You already added this contact."
+#: mod/contacts.php:403
+msgid "Contact has been unblocked"
+msgstr "Contact has been unblocked"
 
-#: mod/follow.php:41
-msgid "Diaspora support isn't enabled. Contact can't be added."
-msgstr "Diaspora support isn't enabled. Contact can't be added."
+#: mod/contacts.php:414
+msgid "Contact has been ignored"
+msgstr "Contact has been ignored"
 
-#: mod/follow.php:48
-msgid "OStatus support is disabled. Contact can't be added."
-msgstr "OStatus support is disabled. Contact can't be added."
+#: mod/contacts.php:414
+msgid "Contact has been unignored"
+msgstr "Contact has been unignored"
 
-#: mod/follow.php:55
-msgid "The network type couldn't be detected. Contact can't be added."
-msgstr "The network type couldn't be detected. Contact can't be added."
+#: mod/contacts.php:426
+msgid "Contact has been archived"
+msgstr "Contact has been archived"
 
-#: mod/follow.php:188
-msgid "Contact added"
-msgstr "Contact added"
+#: mod/contacts.php:426
+msgid "Contact has been unarchived"
+msgstr "Contact has been unarchived"
 
-#: mod/item.php:118
-msgid "Unable to locate original post."
-msgstr "Unable to locate original post."
+#: mod/contacts.php:451
+msgid "Drop contact"
+msgstr "Drop contact"
 
-#: mod/item.php:345
-msgid "Empty post discarded."
-msgstr "Empty post discarded."
+#: mod/contacts.php:454 mod/contacts.php:821
+msgid "Do you really want to delete this contact?"
+msgstr "Do you really want to delete this contact?"
 
-#: mod/item.php:904
-msgid "System error. Post not saved."
-msgstr "System error. Post not saved."
+#: mod/contacts.php:473
+msgid "Contact has been removed."
+msgstr "Contact has been removed."
 
-#: mod/item.php:995
+#: mod/contacts.php:510
 #, php-format
-msgid ""
-"This message was sent to you by %s, a member of the Friendica social "
-"network."
-msgstr "This message was sent to you by %s, a member of the Friendica social network."
+msgid "You are mutual friends with %s"
+msgstr "You are mutual friends with %s"
 
-#: mod/item.php:997
+#: mod/contacts.php:514
 #, php-format
-msgid "You may visit them online at %s"
-msgstr "You may visit them online at %s"
-
-#: mod/item.php:998
-msgid ""
-"Please contact the sender by replying to this post if you do not wish to "
-"receive these messages."
-msgstr "Please contact the sender by replying to this post if you do not wish to receive these messages."
+msgid "You are sharing with %s"
+msgstr "You are sharing with %s"
 
-#: mod/item.php:1002
+#: mod/contacts.php:519
 #, php-format
-msgid "%s posted an update."
-msgstr "%s posted an update."
+msgid "%s is sharing with you"
+msgstr "%s is sharing with you"
 
-#: mod/ping.php:274
-msgid "{0} wants to be your friend"
-msgstr "{0} wants to be your friend"
+#: mod/contacts.php:539
+msgid "Private communications are not available for this contact."
+msgstr "Private communications are not available for this contact."
 
-#: mod/ping.php:289
-msgid "{0} sent you a message"
-msgstr "{0} sent you a message"
+#: mod/contacts.php:546
+msgid "(Update was successful)"
+msgstr "(Update was successful)"
 
-#: mod/ping.php:304
-msgid "{0} requested registration"
-msgstr "{0} requested registration"
+#: mod/contacts.php:546
+msgid "(Update was not successful)"
+msgstr "(Update was not successful)"
 
-#: mod/profile_photo.php:44
-msgid "Image uploaded but image cropping failed."
-msgstr "Image uploaded but image cropping failed."
+#: mod/contacts.php:548 mod/contacts.php:984
+msgid "Suggest friends"
+msgstr "Suggest friends"
 
-#: mod/profile_photo.php:77 mod/profile_photo.php:85 mod/profile_photo.php:93
-#: mod/profile_photo.php:322
+#: mod/contacts.php:552
 #, php-format
-msgid "Image size reduction [%s] failed."
-msgstr "Image size reduction [%s] failed."
+msgid "Network type: %s"
+msgstr "Network type: %s"
 
-#: mod/profile_photo.php:127
-msgid ""
-"Shift-reload the page or clear browser cache if the new photo does not "
-"display immediately."
-msgstr "Shift-reload the page or clear browser cache if the new photo does not display immediately."
+#: mod/contacts.php:565
+msgid "Communications lost with this contact!"
+msgstr "Communications lost with this contact!"
 
-#: mod/profile_photo.php:136
-msgid "Unable to process image"
-msgstr "Unable to process image"
+#: mod/contacts.php:568
+msgid "Fetch further information for feeds"
+msgstr "Fetch further information for feeds"
 
-#: mod/profile_photo.php:253
-msgid "Upload File:"
-msgstr "Upload File:"
+#: mod/contacts.php:569
+msgid "Fetch information"
+msgstr "Fetch information"
 
-#: mod/profile_photo.php:254
-msgid "Select a profile:"
-msgstr "Select a profile:"
+#: mod/contacts.php:569
+msgid "Fetch information and keywords"
+msgstr "Fetch information and keywords"
 
-#: mod/profile_photo.php:256
-msgid "Upload"
-msgstr "Upload"
+#: mod/contacts.php:583 mod/unfollow.php:100
+msgid "Disconnect/Unfollow"
+msgstr "Disconnect/Unfollow"
 
-#: mod/profile_photo.php:259
-msgid "or"
-msgstr "or"
+#: mod/contacts.php:593
+msgid "Contact"
+msgstr "Contact"
 
-#: mod/profile_photo.php:259
-msgid "skip this step"
-msgstr "skip this step"
+#: mod/contacts.php:596
+msgid "Profile Visibility"
+msgstr "Profile visibility"
 
-#: mod/profile_photo.php:259
-msgid "select a photo from your photo albums"
-msgstr "select a photo from your photo albums"
+#: mod/contacts.php:597
+#, php-format
+msgid ""
+"Please choose the profile you would like to display to %s when viewing your "
+"profile securely."
+msgstr "Please choose the profile you would like to display to %s when viewing your profile securely."
 
-#: mod/profile_photo.php:273
-msgid "Crop Image"
-msgstr "Crop Image"
+#: mod/contacts.php:598
+msgid "Contact Information / Notes"
+msgstr "Personal note"
 
-#: mod/profile_photo.php:274
-msgid "Please adjust the image cropping for optimum viewing."
-msgstr "Please adjust the image cropping for optimum viewing."
+#: mod/contacts.php:599
+msgid "Their personal note"
+msgstr "Their personal note"
 
-#: mod/profile_photo.php:276
-msgid "Done Editing"
-msgstr "Done editing"
+#: mod/contacts.php:601
+msgid "Edit contact notes"
+msgstr "Edit contact notes"
 
-#: mod/profile_photo.php:312
-msgid "Image uploaded successfully."
-msgstr "Image uploaded successfully."
+#: mod/contacts.php:607
+msgid "Block/Unblock contact"
+msgstr "Block/Unblock contact"
 
-#: mod/profiles.php:42
-msgid "Profile deleted."
-msgstr "Profile deleted."
+#: mod/contacts.php:608
+msgid "Ignore contact"
+msgstr "Ignore contact"
 
-#: mod/profiles.php:58 mod/profiles.php:94
-msgid "Profile-"
-msgstr "Profile-"
+#: mod/contacts.php:609
+msgid "Repair URL settings"
+msgstr "Repair URL settings"
 
-#: mod/profiles.php:77 mod/profiles.php:122
-msgid "New profile created."
-msgstr "New profile created."
+#: mod/contacts.php:610
+msgid "View conversations"
+msgstr "View conversations"
 
-#: mod/profiles.php:100
-msgid "Profile unavailable to clone."
-msgstr "Profile unavailable to clone."
+#: mod/contacts.php:616
+msgid "Last update:"
+msgstr "Last update:"
 
-#: mod/profiles.php:196
-msgid "Profile Name is required."
-msgstr "Profile name is required."
+#: mod/contacts.php:618
+msgid "Update public posts"
+msgstr "Update public posts"
 
-#: mod/profiles.php:336
-msgid "Marital Status"
-msgstr "Marital status"
+#: mod/contacts.php:620 mod/contacts.php:994
+msgid "Update now"
+msgstr "Update now"
 
-#: mod/profiles.php:340
-msgid "Romantic Partner"
-msgstr "Romantic partner"
+#: mod/contacts.php:626 mod/contacts.php:826 mod/contacts.php:1011
+msgid "Unignore"
+msgstr "Unignore"
 
-#: mod/profiles.php:352
-msgid "Work/Employment"
-msgstr "Work/Employment:"
+#: mod/contacts.php:626 mod/contacts.php:826 mod/contacts.php:1011
+#: mod/notifications.php:63 mod/notifications.php:182
+#: mod/notifications.php:266
+msgid "Ignore"
+msgstr "Ignore"
 
-#: mod/profiles.php:355
-msgid "Religion"
-msgstr "Religion"
+#: mod/contacts.php:630
+msgid "Currently blocked"
+msgstr "Currently blocked"
 
-#: mod/profiles.php:359
-msgid "Political Views"
-msgstr "Political views"
+#: mod/contacts.php:631
+msgid "Currently ignored"
+msgstr "Currently ignored"
 
-#: mod/profiles.php:363
-msgid "Gender"
-msgstr "Gender"
+#: mod/contacts.php:632
+msgid "Currently archived"
+msgstr "Currently archived"
 
-#: mod/profiles.php:367
-msgid "Sexual Preference"
-msgstr "Sexual preference"
+#: mod/contacts.php:633 mod/notifications.php:175 mod/notifications.php:254
+msgid "Hide this contact from others"
+msgstr "Hide this contact from others"
 
-#: mod/profiles.php:371
-msgid "XMPP"
-msgstr "XMPP"
+#: mod/contacts.php:633
+msgid ""
+"Replies/likes to your public posts <strong>may</strong> still be visible"
+msgstr "Replies/Likes to your public posts <strong>may</strong> still be visible"
 
-#: mod/profiles.php:375
-msgid "Homepage"
-msgstr "Homepage"
+#: mod/contacts.php:634
+msgid "Notification for new posts"
+msgstr "Notification for new posts"
 
-#: mod/profiles.php:379 mod/profiles.php:698
-msgid "Interests"
-msgstr "Interests"
+#: mod/contacts.php:634
+msgid "Send a notification of every new post of this contact"
+msgstr "Send notification for every new post from this contact"
 
-#: mod/profiles.php:383
-msgid "Address"
-msgstr "Address"
+#: mod/contacts.php:637
+msgid "Blacklisted keywords"
+msgstr "Blacklisted keywords"
 
-#: mod/profiles.php:390 mod/profiles.php:694
-msgid "Location"
-msgstr "Location"
+#: mod/contacts.php:637
+msgid ""
+"Comma separated list of keywords that should not be converted to hashtags, "
+"when \"Fetch information and keywords\" is selected"
+msgstr "Comma separated list of keywords that should not be converted to hashtags, when \"Fetch information and keywords\" is selected"
 
-#: mod/profiles.php:475
-msgid "Profile updated."
-msgstr "Profile updated."
+#: mod/contacts.php:644 mod/follow.php:166 mod/notifications.php:258
+#: mod/unfollow.php:122
+msgid "Profile URL"
+msgstr "Profile URL:"
 
-#: mod/profiles.php:567
-msgid " and "
-msgstr " and "
+#: mod/contacts.php:655
+msgid "Actions"
+msgstr "Actions"
 
-#: mod/profiles.php:576
-msgid "public profile"
-msgstr "public profile"
+#: mod/contacts.php:658
+msgid "Contact Settings"
+msgstr "Notification and privacy "
 
-#: mod/profiles.php:579
-#, php-format
-msgid "%1$s changed %2$s to &ldquo;%3$s&rdquo;"
-msgstr "%1$s changed %2$s to &ldquo;%3$s&rdquo;"
+#: mod/contacts.php:704
+msgid "Suggestions"
+msgstr "Suggestions"
 
-#: mod/profiles.php:580
-#, php-format
-msgid " - Visit %1$s's %2$s"
-msgstr " - Visit %1$s's %2$s"
+#: mod/contacts.php:707
+msgid "Suggest potential friends"
+msgstr "Suggest potential friends"
 
-#: mod/profiles.php:582
-#, php-format
-msgid "%1$s has an updated %2$s, changing %3$s."
-msgstr "%1$s has an updated %2$s, changing %3$s."
+#: mod/contacts.php:712 mod/group.php:214
+msgid "All Contacts"
+msgstr "All contacts"
 
-#: mod/profiles.php:640
-msgid "Hide contacts and friends:"
-msgstr "Hide contacts and friends:"
+#: mod/contacts.php:715
+msgid "Show all contacts"
+msgstr "Show all contacts"
 
-#: mod/profiles.php:645
-msgid "Hide your contact/friend list from viewers of this profile?"
-msgstr "Hide your contact/friend list from viewers of this profile?"
+#: mod/contacts.php:720
+msgid "Unblocked"
+msgstr "Unblocked"
 
-#: mod/profiles.php:670
-msgid "Show more profile fields:"
-msgstr "Show more profile fields:"
+#: mod/contacts.php:723
+msgid "Only show unblocked contacts"
+msgstr "Only show unblocked contacts"
 
-#: mod/profiles.php:682
-msgid "Profile Actions"
-msgstr "Profile actions"
+#: mod/contacts.php:729
+msgid "Blocked"
+msgstr "Blocked"
 
-#: mod/profiles.php:683
-msgid "Edit Profile Details"
-msgstr "Edit Profile Details"
+#: mod/contacts.php:732
+msgid "Only show blocked contacts"
+msgstr "Only show blocked contacts"
 
-#: mod/profiles.php:685
-msgid "Change Profile Photo"
-msgstr "Change profile photo"
+#: mod/contacts.php:738
+msgid "Ignored"
+msgstr "Ignored"
 
-#: mod/profiles.php:686
-msgid "View this profile"
-msgstr "View this profile"
+#: mod/contacts.php:741
+msgid "Only show ignored contacts"
+msgstr "Only show ignored contacts"
 
-#: mod/profiles.php:688
-msgid "Create a new profile using these settings"
-msgstr "Create a new profile using these settings"
+#: mod/contacts.php:747
+msgid "Archived"
+msgstr "Archived"
 
-#: mod/profiles.php:689
-msgid "Clone this profile"
-msgstr "Clone this profile"
+#: mod/contacts.php:750
+msgid "Only show archived contacts"
+msgstr "Only show archived contacts"
 
-#: mod/profiles.php:690
-msgid "Delete this profile"
-msgstr "Delete this profile"
+#: mod/contacts.php:756
+msgid "Hidden"
+msgstr "Hidden"
 
-#: mod/profiles.php:692
-msgid "Basic information"
-msgstr "Basic information"
+#: mod/contacts.php:759
+msgid "Only show hidden contacts"
+msgstr "Only show hidden contacts"
 
-#: mod/profiles.php:693
-msgid "Profile picture"
-msgstr "Profile picture"
+#: mod/contacts.php:816
+msgid "Search your contacts"
+msgstr "Search your contacts"
 
-#: mod/profiles.php:695
-msgid "Preferences"
-msgstr "Preferences"
+#: mod/contacts.php:824 mod/settings.php:163 mod/settings.php:709
+msgid "Update"
+msgstr "Update"
 
-#: mod/profiles.php:696
-msgid "Status information"
-msgstr "Status information"
+#: mod/contacts.php:827 mod/contacts.php:1019
+msgid "Archive"
+msgstr "Archive"
 
-#: mod/profiles.php:697
-msgid "Additional information"
-msgstr "Additional information"
+#: mod/contacts.php:827 mod/contacts.php:1019
+msgid "Unarchive"
+msgstr "Unarchive"
 
-#: mod/profiles.php:700
-msgid "Relation"
-msgstr "Relation"
+#: mod/contacts.php:830
+msgid "Batch Actions"
+msgstr "Batch actions"
 
-#: mod/profiles.php:704
-msgid "Your Gender:"
-msgstr "Gender:"
+#: mod/contacts.php:876
+msgid "View all contacts"
+msgstr "View all contacts"
 
-#: mod/profiles.php:705
-msgid "<span class=\"heart\">&hearts;</span> Marital Status:"
-msgstr "<span class=\"heart\">&hearts;</span> Marital status:"
+#: mod/contacts.php:886
+msgid "View all common friends"
+msgstr "View all common friends"
 
-#: mod/profiles.php:707
-msgid "Example: fishing photography software"
-msgstr "Example: fishing photography software"
+#: mod/contacts.php:893
+msgid "Advanced Contact Settings"
+msgstr "Advanced contact settings"
 
-#: mod/profiles.php:712
-msgid "Profile Name:"
-msgstr "Profile name:"
+#: mod/contacts.php:927
+msgid "Mutual Friendship"
+msgstr "Mutual friendship"
 
-#: mod/profiles.php:714
-msgid ""
-"This is your <strong>public</strong> profile.<br />It <strong>may</strong> "
-"be visible to anybody using the internet."
-msgstr "This is your <strong>public</strong> profile.<br />It <strong>may</strong> be visible to anybody using the internet."
+#: mod/contacts.php:931
+msgid "is a fan of yours"
+msgstr "is a fan of yours"
 
-#: mod/profiles.php:715
-msgid "Your Full Name:"
-msgstr "My full name:"
+#: mod/contacts.php:935
+msgid "you are a fan of"
+msgstr "I follow them"
 
-#: mod/profiles.php:716
-msgid "Title/Description:"
-msgstr "Title/Description:"
+#: mod/contacts.php:1005
+msgid "Toggle Blocked status"
+msgstr "Toggle blocked status"
 
-#: mod/profiles.php:719
-msgid "Street Address:"
-msgstr "Street address:"
+#: mod/contacts.php:1013
+msgid "Toggle Ignored status"
+msgstr "Toggle ignored status"
 
-#: mod/profiles.php:720
-msgid "Locality/City:"
-msgstr "Locality/City:"
+#: mod/contacts.php:1021
+msgid "Toggle Archive status"
+msgstr "Toggle archive status"
 
-#: mod/profiles.php:721
-msgid "Region/State:"
-msgstr "Region/State:"
+#: mod/contacts.php:1029
+msgid "Delete contact"
+msgstr "Delete contact"
 
-#: mod/profiles.php:722
-msgid "Postal/Zip Code:"
-msgstr "Postcode:"
+#: mod/content.php:121 mod/network.php:632
+msgid "No such group"
+msgstr "No such group"
 
-#: mod/profiles.php:723
-msgid "Country:"
-msgstr "Country:"
+#: mod/content.php:132 mod/group.php:215 mod/network.php:653
+msgid "Group is empty"
+msgstr "Group is empty"
 
-#: mod/profiles.php:727
-msgid "Who: (if applicable)"
-msgstr "Who: (if applicable)"
+#: mod/content.php:137 mod/network.php:657
+#, php-format
+msgid "Group: %s"
+msgstr "Group: %s"
 
-#: mod/profiles.php:727
-msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
-msgstr "Examples: cathy123, Cathy Williams, cathy@example.com"
+#: mod/content.php:327 object/Item.php:101
+msgid "This entry was edited"
+msgstr "This entry was edited"
 
-#: mod/profiles.php:728
-msgid "Since [date]:"
-msgstr "Since when:"
+#: mod/content.php:623 object/Item.php:409
+#, php-format
+msgid "%d comment"
+msgid_plural "%d comments"
+msgstr[0] "%d comment"
+msgstr[1] "%d comments -"
 
-#: mod/profiles.php:730
-msgid "Tell us about yourself..."
-msgstr "About myself:"
+#: mod/content.php:640 mod/photos.php:1432 object/Item.php:122
+msgid "Private Message"
+msgstr "Private message"
 
-#: mod/profiles.php:731
-msgid "XMPP (Jabber) address:"
-msgstr "XMPP (Jabber) address:"
+#: mod/content.php:704 mod/photos.php:1628 object/Item.php:275
+msgid "I like this (toggle)"
+msgstr "I like this (toggle)"
 
-#: mod/profiles.php:731
-msgid ""
-"The XMPP address will be propagated to your contacts so that they can follow"
-" you."
-msgstr "The XMPP address will be propagated to your contacts so that they can follow you."
+#: mod/content.php:704 object/Item.php:275
+msgid "like"
+msgstr "Like"
 
-#: mod/profiles.php:732
-msgid "Homepage URL:"
-msgstr "Homepage URL:"
+#: mod/content.php:705 mod/photos.php:1629 object/Item.php:276
+msgid "I don't like this (toggle)"
+msgstr "I don't like this (toggle)"
 
-#: mod/profiles.php:735
-msgid "Religious Views:"
-msgstr "Religious views:"
+#: mod/content.php:705 object/Item.php:276
+msgid "dislike"
+msgstr "Dislike"
 
-#: mod/profiles.php:736
-msgid "Public Keywords:"
-msgstr "Public keywords:"
+#: mod/content.php:707 object/Item.php:279
+msgid "Share this"
+msgstr "Share this"
 
-#: mod/profiles.php:736
-msgid "(Used for suggesting potential friends, can be seen by others)"
-msgstr "Used for suggesting potential friends, can be seen by others."
+#: mod/content.php:707 object/Item.php:279
+msgid "share"
+msgstr "Share"
 
-#: mod/profiles.php:737
-msgid "Private Keywords:"
-msgstr "Private keywords:"
+#: mod/content.php:727 mod/photos.php:1646 mod/photos.php:1688
+#: mod/photos.php:1768 object/Item.php:694
+msgid "This is you"
+msgstr "This is me"
 
-#: mod/profiles.php:737
-msgid "(Used for searching profiles, never shown to others)"
-msgstr "Used for searching profiles, never shown to others."
+#: mod/content.php:729 mod/content.php:952 mod/photos.php:1648
+#: mod/photos.php:1690 mod/photos.php:1770 object/Item.php:381
+#: object/Item.php:696
+msgid "Comment"
+msgstr "Comment"
 
-#: mod/profiles.php:740
-msgid "Musical interests"
-msgstr "Music:"
+#: mod/content.php:731 object/Item.php:698
+msgid "Bold"
+msgstr "Bold"
 
-#: mod/profiles.php:741
-msgid "Books, literature"
-msgstr "Books, literature, poetry:"
+#: mod/content.php:732 object/Item.php:699
+msgid "Italic"
+msgstr "Italic"
 
-#: mod/profiles.php:742
-msgid "Television"
-msgstr "Television:"
+#: mod/content.php:733 object/Item.php:700
+msgid "Underline"
+msgstr "Underline"
 
-#: mod/profiles.php:743
-msgid "Film/dance/culture/entertainment"
-msgstr "Film, dance, culture, entertainment"
+#: mod/content.php:734 object/Item.php:701
+msgid "Quote"
+msgstr "Quote"
 
-#: mod/profiles.php:744
-msgid "Hobbies/Interests"
-msgstr "Hobbies/Interests:"
-
-#: mod/profiles.php:745
-msgid "Love/romance"
-msgstr "Love/Romance:"
-
-#: mod/profiles.php:746
-msgid "Work/employment"
-msgstr "Work/Employment:"
-
-#: mod/profiles.php:747
-msgid "School/education"
-msgstr "School/Education:"
+#: mod/content.php:735 object/Item.php:702
+msgid "Code"
+msgstr "Code"
 
-#: mod/profiles.php:748
-msgid "Contact information and Social Networks"
-msgstr "Contact information and other social networks:"
+#: mod/content.php:736 object/Item.php:703
+msgid "Image"
+msgstr "Image"
 
-#: mod/profiles.php:789
-msgid "Edit/Manage Profiles"
-msgstr "Edit/Manage Profiles"
+#: mod/content.php:737 object/Item.php:704
+msgid "Link"
+msgstr "Link"
 
-#: mod/register.php:96
-msgid ""
-"Registration successful. Please check your email for further instructions."
-msgstr "Registration successful. Please check your email for further instructions."
+#: mod/content.php:738 object/Item.php:705
+msgid "Video"
+msgstr "Video"
 
-#: mod/register.php:101
-#, php-format
-msgid ""
-"Failed to send email message. Here your accout details:<br> login: %s<br> "
-"password: %s<br><br>You can change your password after login."
-msgstr "Failed to send email message. Here your account details:<br> login: %s<br> password: %s<br><br>You can change your password after login."
+#: mod/content.php:748 mod/settings.php:745 object/Item.php:127
+#: object/Item.php:129
+msgid "Edit"
+msgstr "Edit"
 
-#: mod/register.php:108
-msgid "Registration successful."
-msgstr "Registration successful."
+#: mod/content.php:774 object/Item.php:242
+msgid "add star"
+msgstr "Add star"
 
-#: mod/register.php:114
-msgid "Your registration can not be processed."
-msgstr "Your registration cannot be processed."
+#: mod/content.php:775 object/Item.php:243
+msgid "remove star"
+msgstr "Remove star"
 
-#: mod/register.php:163
-msgid "Your registration is pending approval by the site owner."
-msgstr "Your registration is pending approval by the site administrator."
+#: mod/content.php:776 object/Item.php:244
+msgid "toggle star status"
+msgstr "Toggle star status"
 
-#: mod/register.php:229
-msgid ""
-"You may (optionally) fill in this form via OpenID by supplying your OpenID "
-"and clicking 'Register'."
-msgstr "You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Sign up now'."
+#: mod/content.php:779 object/Item.php:247
+msgid "starred"
+msgstr "Starred"
 
-#: mod/register.php:230
-msgid ""
-"If you are not familiar with OpenID, please leave that field blank and fill "
-"in the rest of the items."
-msgstr "If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."
+#: mod/content.php:780 mod/content.php:802 object/Item.php:264
+msgid "add tag"
+msgstr "Add tag"
 
-#: mod/register.php:231
-msgid "Your OpenID (optional): "
-msgstr "Your OpenID (optional): "
+#: mod/content.php:791 object/Item.php:252
+msgid "ignore thread"
+msgstr "Ignore thread"
 
-#: mod/register.php:245
-msgid "Include your profile in member directory?"
-msgstr "Include your profile in member directory?"
+#: mod/content.php:792 object/Item.php:253
+msgid "unignore thread"
+msgstr "Unignore thread"
 
-#: mod/register.php:270
-msgid "Note for the admin"
-msgstr "Note for the admin"
+#: mod/content.php:793 object/Item.php:254
+msgid "toggle ignore status"
+msgstr "Toggle ignore status"
 
-#: mod/register.php:270
-msgid "Leave a message for the admin, why you want to join this node"
-msgstr "Leave a message for the admin, why you want to join this node."
+#: mod/content.php:796 mod/ostatus_subscribe.php:76 object/Item.php:257
+msgid "ignored"
+msgstr "Ignored"
 
-#: mod/register.php:271
-msgid "Membership on this site is by invitation only."
-msgstr "Membership on this site is by invitation only."
+#: mod/content.php:807 object/Item.php:146
+msgid "save to folder"
+msgstr "Save to folder"
 
-#: mod/register.php:272
-msgid "Your invitation ID: "
-msgstr "Your invitation ID: "
+#: mod/content.php:855 object/Item.php:216
+msgid "I will attend"
+msgstr "I will attend"
 
-#: mod/register.php:275 mod/admin.php:1146
-msgid "Registration"
-msgstr "Join this Friendica Node Today"
+#: mod/content.php:855 object/Item.php:216
+msgid "I will not attend"
+msgstr "I will not attend"
 
-#: mod/register.php:283
-msgid "Your Full Name (e.g. Joe Smith, real or real-looking): "
-msgstr "Your full name: "
+#: mod/content.php:855 object/Item.php:216
+msgid "I might attend"
+msgstr "I might attend"
 
-#: mod/register.php:284
-msgid "Your Email Address: "
-msgstr "Your email address: "
+#: mod/content.php:919 object/Item.php:347
+msgid "to"
+msgstr "to"
 
-#: mod/register.php:286 mod/settings.php:1279
-msgid "New Password:"
-msgstr "New password:"
+#: mod/content.php:920 object/Item.php:349
+msgid "Wall-to-Wall"
+msgstr "Wall-to-wall"
 
-#: mod/register.php:286
-msgid "Leave empty for an auto generated password."
-msgstr "Leave empty for an auto generated password."
+#: mod/content.php:921 object/Item.php:350
+msgid "via Wall-To-Wall:"
+msgstr "via wall-to-wall:"
 
-#: mod/register.php:287 mod/settings.php:1280
-msgid "Confirm:"
-msgstr "Confirm new password:"
+#: mod/delegate.php:104
+msgid "No potential page delegates located."
+msgstr "No potential page delegates found."
 
-#: mod/register.php:288
+#: mod/delegate.php:135
 msgid ""
-"Choose a profile nickname. This must begin with a text character. Your "
-"profile address on this site will then be "
-"'<strong>nickname@$sitename</strong>'."
-msgstr "Choose a profile nickname. Your nickname will be part of your identity address; for example:  '<strong>nickname@$sitename</strong>'."
+"Delegates are able to manage all aspects of this account/page except for "
+"basic account settings. Please do not delegate your personal account to "
+"anybody that you do not trust completely."
+msgstr "Delegates are able to manage all aspects of this account except for key setting features. Please do not delegate your personal account to anybody that you do not trust completely."
 
-#: mod/register.php:289
-msgid "Choose a nickname: "
-msgstr "Choose a nickname: "
+#: mod/delegate.php:136
+msgid "Existing Page Managers"
+msgstr "Existing page managers"
 
-#: mod/register.php:299
-msgid "Import your profile to this friendica instance"
-msgstr "Import an existing Friendica profile to this node."
+#: mod/delegate.php:138
+msgid "Existing Page Delegates"
+msgstr "Existing page delegates"
 
-#: mod/search.php:28 mod/network.php:200
-msgid "Remove term"
-msgstr "Remove term"
+#: mod/delegate.php:140
+msgid "Potential Delegates"
+msgstr "Potential delegates"
 
-#: mod/search.php:103
-msgid "Only logged in users are permitted to perform a search."
-msgstr "Only logged in users are permitted to perform a search."
+#: mod/delegate.php:142 mod/tagrm.php:98
+msgid "Remove"
+msgstr "Remove"
 
-#: mod/search.php:127
-msgid "Too Many Requests"
-msgstr "Too many requests"
+#: mod/delegate.php:143
+msgid "Add"
+msgstr "Add"
 
-#: mod/search.php:128
-msgid "Only one search per minute is permitted for not logged in users."
-msgstr "Only one search per minute is permitted for not logged in users."
+#: mod/delegate.php:144
+msgid "No entries."
+msgstr "No entries."
 
-#: mod/search.php:222 mod/community.php:50
-msgid "No results."
-msgstr "No results."
+#: mod/dfrn_confirm.php:73 mod/profiles.php:24 mod/profiles.php:140
+#: mod/profiles.php:187 mod/profiles.php:623
+msgid "Profile not found."
+msgstr "Profile not found."
 
-#: mod/search.php:228
-#, php-format
-msgid "Items tagged with: %s"
-msgstr "Items tagged with: %s"
+#: mod/dfrn_confirm.php:130
+msgid ""
+"This may occasionally happen if contact was requested by both persons and it"
+" has already been approved."
+msgstr "This may occasionally happen if contact was requested by both persons and it has already been approved."
 
-#: mod/search.php:230 mod/contacts.php:810 mod/network.php:154
-#, php-format
-msgid "Results for: %s"
-msgstr "Results for: %s"
+#: mod/dfrn_confirm.php:247
+msgid "Response from remote site was not understood."
+msgstr "Response from remote site was not understood."
 
-#: mod/admin.php:98
-msgid "Theme settings updated."
-msgstr "Theme settings updated."
+#: mod/dfrn_confirm.php:256 mod/dfrn_confirm.php:261
+msgid "Unexpected response from remote site: "
+msgstr "Unexpected response from remote site: "
 
-#: mod/admin.php:170 mod/admin.php:1144
-msgid "Site"
-msgstr "Site"
+#: mod/dfrn_confirm.php:270
+msgid "Confirmation completed successfully."
+msgstr "Confirmation completed successfully."
 
-#: mod/admin.php:171 mod/admin.php:1078 mod/admin.php:1588 mod/admin.php:1604
-msgid "Users"
-msgstr "Users"
+#: mod/dfrn_confirm.php:272 mod/dfrn_confirm.php:286 mod/dfrn_confirm.php:293
+msgid "Remote site reported: "
+msgstr "Remote site reported: "
 
-#: mod/admin.php:172 mod/admin.php:1706 mod/admin.php:1769 mod/settings.php:76
-msgid "Plugins"
-msgstr "Plugins"
+#: mod/dfrn_confirm.php:284
+msgid "Temporary failure. Please wait and try again."
+msgstr "Temporary failure. Please wait and try again."
 
-#: mod/admin.php:173 mod/admin.php:1982 mod/admin.php:2032
-msgid "Themes"
-msgstr "Theme selection"
+#: mod/dfrn_confirm.php:291
+msgid "Introduction failed or was revoked."
+msgstr "Introduction failed or was revoked."
 
-#: mod/admin.php:174 mod/settings.php:54
-msgid "Additional features"
-msgstr "Additional features"
+#: mod/dfrn_confirm.php:420
+msgid "Unable to set contact photo."
+msgstr "Unable to set contact photo."
 
-#: mod/admin.php:175
-msgid "DB updates"
-msgstr "DB updates"
+#: mod/dfrn_confirm.php:561
+#, php-format
+msgid "No user record found for '%s' "
+msgstr "No user record found for '%s' "
 
-#: mod/admin.php:176 mod/admin.php:582
-msgid "Inspect Queue"
-msgstr "Inspect queue"
+#: mod/dfrn_confirm.php:571
+msgid "Our site encryption key is apparently messed up."
+msgstr "Our site encryption key is apparently messed up."
 
-#: mod/admin.php:177 mod/admin.php:297
-msgid "Server Blocklist"
-msgstr "Server blocklist"
+#: mod/dfrn_confirm.php:582
+msgid "Empty site URL was provided or URL could not be decrypted by us."
+msgstr "An empty URL was provided or the URL could not be decrypted by us."
 
-#: mod/admin.php:178 mod/admin.php:548
-msgid "Federation Statistics"
-msgstr "Federation statistics"
+#: mod/dfrn_confirm.php:604
+msgid "Contact record was not found for you on our site."
+msgstr "Contact record was not found for you on our site."
 
-#: mod/admin.php:179 mod/admin.php:374
-msgid "Delete Item"
-msgstr "Delete item"
+#: mod/dfrn_confirm.php:618
+#, php-format
+msgid "Site public key not available in contact record for URL %s."
+msgstr "Site public key not available in contact record for URL %s."
 
-#: mod/admin.php:193 mod/admin.php:204 mod/admin.php:2106
-msgid "Logs"
-msgstr "Logs"
+#: mod/dfrn_confirm.php:638
+msgid ""
+"The ID provided by your system is a duplicate on our system. It should work "
+"if you try again."
+msgstr "The ID provided by your system is a duplicate on our system. It should work if you try again."
 
-#: mod/admin.php:194 mod/admin.php:2174
-msgid "View Logs"
-msgstr "View logs"
+#: mod/dfrn_confirm.php:649
+msgid "Unable to set your contact credentials on our system."
+msgstr "Unable to set your contact credentials on our system."
 
-#: mod/admin.php:195
-msgid "probe address"
-msgstr "Probe address"
+#: mod/dfrn_confirm.php:711
+msgid "Unable to update your contact profile details on our system"
+msgstr "Unable to update your contact profile details on our system"
 
-#: mod/admin.php:196
-msgid "check webfinger"
-msgstr "Check webfinger"
+#: mod/dfrn_confirm.php:783
+#, php-format
+msgid "%1$s has joined %2$s"
+msgstr "%1$s has joined %2$s"
 
-#: mod/admin.php:203
-msgid "Plugin Features"
-msgstr "Plugin Features"
+#: mod/dfrn_poll.php:114 mod/dfrn_poll.php:550
+#, php-format
+msgid "%1$s welcomes %2$s"
+msgstr "%1$s welcomes %2$s"
 
-#: mod/admin.php:205
-msgid "diagnostics"
-msgstr "Diagnostics"
+#: mod/dfrn_request.php:104
+msgid "This introduction has already been accepted."
+msgstr "This introduction has already been accepted."
 
-#: mod/admin.php:206
-msgid "User registrations waiting for confirmation"
-msgstr "User registrations awaiting confirmation"
-
-#: mod/admin.php:288
-msgid "The blocked domain"
-msgstr "Blocked domain"
-
-#: mod/admin.php:289 mod/admin.php:302
-msgid "The reason why you blocked this domain."
-msgstr "Reason why you blocked this domain."
-
-#: mod/admin.php:290
-msgid "Delete domain"
-msgstr "Delete domain"
+#: mod/dfrn_request.php:127 mod/dfrn_request.php:529
+msgid "Profile location is not valid or does not contain profile information."
+msgstr "Profile location is not valid or does not contain profile information."
 
-#: mod/admin.php:290
-msgid "Check to delete this entry from the blocklist"
-msgstr "Check to delete this entry from the blocklist"
+#: mod/dfrn_request.php:132 mod/dfrn_request.php:534
+msgid "Warning: profile location has no identifiable owner name."
+msgstr "Warning: profile location has no identifiable owner name."
 
-#: mod/admin.php:296 mod/admin.php:373 mod/admin.php:547 mod/admin.php:581
-#: mod/admin.php:661 mod/admin.php:1143 mod/admin.php:1587 mod/admin.php:1705
-#: mod/admin.php:1768 mod/admin.php:1981 mod/admin.php:2031 mod/admin.php:2105
-#: mod/admin.php:2173
-msgid "Administration"
-msgstr "Administration"
+#: mod/dfrn_request.php:135 mod/dfrn_request.php:537
+msgid "Warning: profile location has no profile photo."
+msgstr "Warning: profile location has no profile photo."
 
-#: mod/admin.php:298
-msgid ""
-"This page can be used to define a black list of servers from the federated "
-"network that are not allowed to interact with your node. For all entered "
-"domains you should also give a reason why you have blocked the remote "
-"server."
-msgstr "This page can be used to define a black list of servers from the federated network that are not allowed to interact with your node. For all entered domains you should also give a reason why you have blocked the remote server."
+#: mod/dfrn_request.php:139 mod/dfrn_request.php:541
+#, php-format
+msgid "%d required parameter was not found at the given location"
+msgid_plural "%d required parameters were not found at the given location"
+msgstr[0] "%d required parameter was not found at the given location"
+msgstr[1] "%d required parameters were not found at the given location"
 
-#: mod/admin.php:299
-msgid ""
-"The list of blocked servers will be made publically available on the "
-"/friendica page so that your users and people investigating communication "
-"problems can find the reason easily."
-msgstr "The list of blocked servers will publicly available on the Friendica page so that your users and people investigating communication problems can readily find the reason."
+#: mod/dfrn_request.php:183
+msgid "Introduction complete."
+msgstr "Introduction complete."
 
-#: mod/admin.php:300
-msgid "Add new entry to block list"
-msgstr "Add new entry to block list"
+#: mod/dfrn_request.php:228
+msgid "Unrecoverable protocol error."
+msgstr "Unrecoverable protocol error."
 
-#: mod/admin.php:301
-msgid "Server Domain"
-msgstr "Server domain"
+#: mod/dfrn_request.php:256
+msgid "Profile unavailable."
+msgstr "Profile unavailable."
 
-#: mod/admin.php:301
-msgid ""
-"The domain of the new server to add to the block list. Do not include the "
-"protocol."
-msgstr "The domain of the new server to add to the block list. Do not include the protocol."
+#: mod/dfrn_request.php:283
+#, php-format
+msgid "%s has received too many connection requests today."
+msgstr "%s has received too many connection requests today."
 
-#: mod/admin.php:302
-msgid "Block reason"
-msgstr "Block reason"
+#: mod/dfrn_request.php:284
+msgid "Spam protection measures have been invoked."
+msgstr "Spam protection measures have been invoked."
 
-#: mod/admin.php:303
-msgid "Add Entry"
-msgstr "Add entry"
+#: mod/dfrn_request.php:285
+msgid "Friends are advised to please try again in 24 hours."
+msgstr "Friends are advised to please try again in 24 hours."
 
-#: mod/admin.php:304
-msgid "Save changes to the blocklist"
-msgstr "Save changes to the blocklist"
+#: mod/dfrn_request.php:347
+msgid "Invalid locator"
+msgstr "Invalid locator"
 
-#: mod/admin.php:305
-msgid "Current Entries in the Blocklist"
-msgstr "Current entries in the blocklist"
+#: mod/dfrn_request.php:356
+msgid "Invalid email address."
+msgstr "Invalid email address."
 
-#: mod/admin.php:308
-msgid "Delete entry from blocklist"
-msgstr "Delete entry from blocklist"
+#: mod/dfrn_request.php:381
+msgid "This account has not been configured for email. Request failed."
+msgstr "This account has not been configured for email. Request failed."
 
-#: mod/admin.php:311
-msgid "Delete entry from blocklist?"
-msgstr "Delete entry from blocklist?"
+#: mod/dfrn_request.php:484
+msgid "You have already introduced yourself here."
+msgstr "You have already introduced yourself here."
 
-#: mod/admin.php:336
-msgid "Server added to blocklist."
-msgstr "Server added to blocklist."
+#: mod/dfrn_request.php:488
+#, php-format
+msgid "Apparently you are already friends with %s."
+msgstr "Apparently you are already friends with %s."
 
-#: mod/admin.php:352
-msgid "Site blocklist updated."
-msgstr "Site blocklist updated."
+#: mod/dfrn_request.php:509
+msgid "Invalid profile URL."
+msgstr "Invalid profile URL."
 
-#: mod/admin.php:375
-msgid "Delete this Item"
-msgstr "Delete"
+#: mod/dfrn_request.php:615
+msgid "Your introduction has been sent."
+msgstr "Your introduction has been sent."
 
-#: mod/admin.php:376
+#: mod/dfrn_request.php:657
 msgid ""
-"On this page you can delete an item from your node. If the item is a top "
-"level posting, the entire thread will be deleted."
-msgstr "Here you can delete an item from this node. If the item is a top-level posting, the entire thread will be deleted."
+"Remote subscription can't be done for your network. Please subscribe "
+"directly on your system."
+msgstr "Remote subscription can't be done for your network. Please subscribe directly on your system."
 
-#: mod/admin.php:377
-msgid ""
-"You need to know the GUID of the item. You can find it e.g. by looking at "
-"the display URL. The last part of http://example.com/display/123456 is the "
-"GUID, here 123456."
-msgstr "You need to know the global unique identifier (GUID) of the item, which you can find by looking at the display URL. The last part of http://example.com/display/123456 is the GUID: i.e. 123456."
+#: mod/dfrn_request.php:678
+msgid "Please login to confirm introduction."
+msgstr "Please login to confirm introduction."
 
-#: mod/admin.php:378
-msgid "GUID"
-msgstr "GUID"
+#: mod/dfrn_request.php:688
+msgid ""
+"Incorrect identity currently logged in. Please login to "
+"<strong>this</strong> profile."
+msgstr "Incorrect identity currently logged in. Please login to <strong>this</strong> profile."
 
-#: mod/admin.php:378
-msgid "The GUID of the item you want to delete."
-msgstr "GUID of item to be deleted."
+#: mod/dfrn_request.php:702 mod/dfrn_request.php:719
+msgid "Confirm"
+msgstr "Confirm"
 
-#: mod/admin.php:415
-msgid "Item marked for deletion."
-msgstr "Item marked for deletion."
+#: mod/dfrn_request.php:714
+msgid "Hide this contact"
+msgstr "Hide this contact"
 
-#: mod/admin.php:478
-msgid "unknown"
-msgstr "unknown"
+#: mod/dfrn_request.php:717
+#, php-format
+msgid "Welcome home %s."
+msgstr "Welcome home %s."
 
-#: mod/admin.php:541
-msgid ""
-"This page offers you some numbers to the known part of the federated social "
-"network your Friendica node is part of. These numbers are not complete but "
-"only reflect the part of the network your node is aware of."
-msgstr "This page offers you the amount of known part of the federated social network your Friendica node is part of. These numbers are not complete and only reflect the part of the network your node is aware of."
+#: mod/dfrn_request.php:718
+#, php-format
+msgid "Please confirm your introduction/connection request to %s."
+msgstr "Please confirm your introduction/connection request to %s."
 
-#: mod/admin.php:542
+#: mod/dfrn_request.php:849
 msgid ""
-"The <em>Auto Discovered Contact Directory</em> feature is not enabled, it "
-"will improve the data displayed here."
-msgstr "The <em>Auto Discovered Contact Directory</em> feature is not enabled; enabling it will improve the data displayed here."
+"Please enter your 'Identity Address' from one of the following supported "
+"communications networks:"
+msgstr "Please enter your 'Identity address' from one of the following supported communications networks:"
 
-#: mod/admin.php:554
+#: mod/dfrn_request.php:873
 #, php-format
-msgid "Currently this node is aware of %d nodes from the following platforms:"
-msgstr "Currently this node is aware of %d nodes from the following platforms:"
+msgid ""
+"If you are not yet a member of the free social web, <a "
+"href=\"%s/siteinfo\">follow this link to find a public Friendica site and "
+"join us today</a>."
+msgstr "If you are not yet a member of the free social web, <a href=\"%s/siteinfo\">follow this link to find a public Friendica site and join us today</a>."
 
-#: mod/admin.php:584
-msgid "ID"
-msgstr "ID"
+#: mod/dfrn_request.php:878
+msgid "Friend/Connection Request"
+msgstr "Friend/Connection request"
 
-#: mod/admin.php:585
-msgid "Recipient Name"
-msgstr "Recipient name"
+#: mod/dfrn_request.php:879
+msgid ""
+"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, "
+"testuser@identi.ca"
+msgstr "Examples: jojo@friendica.example.com, http://friendica.example.com/profile/jojo, sam@identi.ca"
 
-#: mod/admin.php:586
-msgid "Recipient Profile"
-msgstr "Recipient profile"
+#: mod/dfrn_request.php:880 mod/follow.php:149
+msgid "Please answer the following:"
+msgstr "Please answer the following:"
 
-#: mod/admin.php:588
-msgid "Created"
-msgstr "Created"
+#: mod/dfrn_request.php:881 mod/follow.php:150
+#, php-format
+msgid "Does %s know you?"
+msgstr "Does %s know you?"
 
-#: mod/admin.php:589
-msgid "Last Tried"
-msgstr "Last Tried"
+#: mod/dfrn_request.php:885 mod/follow.php:151
+msgid "Add a personal note:"
+msgstr "Add a personal note:"
 
-#: mod/admin.php:590
-msgid ""
-"This page lists the content of the queue for outgoing postings. These are "
-"postings the initial delivery failed for. They will be resend later and "
-"eventually deleted if the delivery fails permanently."
-msgstr "This page lists the content of the queue for outgoing postings. These are postings the initial delivery failed for. They will be resend later and eventually deleted if the delivery fails permanently."
+#: mod/dfrn_request.php:888
+msgid "StatusNet/Federated Social Web"
+msgstr "StatusNet/Federated social web"
 
-#: mod/admin.php:615
+#: mod/dfrn_request.php:890
 #, php-format
 msgid ""
-"Your DB still runs with MyISAM tables. You should change the engine type to "
-"InnoDB. As Friendica will use InnoDB only features in the future, you should"
-" change this! See <a href=\"%s\">here</a> for a guide that may be helpful "
-"converting the table engines. You may also use the command <tt>php "
-"include/dbstructure.php toinnodb</tt> of your Friendica installation for an "
-"automatic conversion.<br />"
-msgstr "Your DB still runs with MyISAM tables. You should change the engine type to InnoDB. As Friendica will use InnoDB only features in the future, you should change this! See <a href=\"%s\">here</a> for a guide that may be helpful converting the table engines. You may also use the command <tt>php include/dbstructure.php toinnodb</tt> of your Friendica installation for an automatic conversion.<br />"
+" - please do not use this form.  Instead, enter %s into your Diaspora search"
+" bar."
+msgstr " - please do not use this form.  Instead, enter %s into your Diaspora search bar."
 
-#: mod/admin.php:624
-msgid ""
-"The database update failed. Please run \"php include/dbstructure.php "
-"update\" from the command line and have a look at the errors that might "
-"appear."
-msgstr "The database update failed. Please run 'php include/dbstructure.php update' from the command line and have a look at the errors that might appear."
+#: mod/dfrn_request.php:891 mod/follow.php:157 mod/unfollow.php:113
+msgid "Your Identity Address:"
+msgstr "My identity address:"
 
-#: mod/admin.php:629 mod/admin.php:1537
-msgid "Normal Account"
-msgstr "Standard account"
+#: mod/dfrn_request.php:894 mod/follow.php:63 mod/unfollow.php:65
+msgid "Submit Request"
+msgstr "Submit request"
 
-#: mod/admin.php:630 mod/admin.php:1538
-msgid "Automatic Follower Account"
-msgstr "Automatic follower account"
+#: mod/directory.php:195 view/theme/vier/theme.php:194
+msgid "Global Directory"
+msgstr "Global Directory"
 
-#: mod/admin.php:631 mod/admin.php:1539
-msgid "Public Forum Account"
-msgstr "Public forum account"
+#: mod/directory.php:197
+msgid "Find on this site"
+msgstr "Find on this site"
 
-#: mod/admin.php:632 mod/admin.php:1540
-msgid "Automatic Friend Account"
-msgstr "Automatic friend account"
+#: mod/directory.php:199
+msgid "Results for:"
+msgstr "Results for:"
 
-#: mod/admin.php:633
-msgid "Blog Account"
-msgstr "Blog account"
+#: mod/directory.php:201
+msgid "Site Directory"
+msgstr "Site directory"
 
-#: mod/admin.php:634
-msgid "Private Forum Account"
-msgstr "Private forum account"
+#: mod/directory.php:208
+msgid "No entries (some entries may be hidden)."
+msgstr "No entries (entries may be hidden)."
 
-#: mod/admin.php:656
-msgid "Message queues"
-msgstr "Message queues"
+#: mod/dirfind.php:40
+#, php-format
+msgid "People Search - %s"
+msgstr "People search - %s"
 
-#: mod/admin.php:662
-msgid "Summary"
-msgstr "Summary"
+#: mod/dirfind.php:51
+#, php-format
+msgid "Forum Search - %s"
+msgstr "Forum search - %s"
 
-#: mod/admin.php:664
-msgid "Registered users"
-msgstr "Signed up users"
+#: mod/dirfind.php:248 mod/match.php:113
+msgid "No matches"
+msgstr "No matches"
 
-#: mod/admin.php:666
-msgid "Pending registrations"
-msgstr "Pending registrations"
-
-#: mod/admin.php:667
-msgid "Version"
-msgstr "Version"
+#: mod/display.php:491
+msgid "Item has been removed."
+msgstr "Item has been removed."
 
-#: mod/admin.php:672
-msgid "Active plugins"
-msgstr "Active plugins"
+#: mod/editpost.php:20 mod/editpost.php:30
+msgid "Item not found"
+msgstr "Item not found"
 
-#: mod/admin.php:697
-msgid "Can not parse base url. Must have at least <scheme>://<domain>"
-msgstr "Can not parse base URL. Must have at least <scheme>://<domain>"
+#: mod/editpost.php:35
+msgid "Edit post"
+msgstr "Edit post"
 
-#: mod/admin.php:1004
-msgid "Site settings updated."
-msgstr "Site settings updated."
+#: mod/events.php:97 mod/events.php:99
+msgid "Event can not end before it has started."
+msgstr "Event cannot end before it has started."
 
-#: mod/admin.php:1032 mod/settings.php:944
-msgid "No special theme for mobile devices"
-msgstr "No special theme for mobile devices"
+#: mod/events.php:106 mod/events.php:108
+msgid "Event title and start time are required."
+msgstr "Event title and starting time are required."
 
-#: mod/admin.php:1061
-msgid "No community page"
-msgstr "No community page"
+#: mod/events.php:380
+msgid "Create New Event"
+msgstr "Create new event"
 
-#: mod/admin.php:1062
-msgid "Public postings from users of this site"
-msgstr "Public postings from users of this site"
+#: mod/events.php:485
+msgid "Event details"
+msgstr "Event details"
 
-#: mod/admin.php:1063
-msgid "Global community page"
-msgstr "Global community page"
+#: mod/events.php:486
+msgid "Starting date and Title are required."
+msgstr "Starting date and title are required."
 
-#: mod/admin.php:1068 mod/contacts.php:541
-msgid "Never"
-msgstr "Never"
+#: mod/events.php:487 mod/events.php:488
+msgid "Event Starts:"
+msgstr "Event starts:"
 
-#: mod/admin.php:1069
-msgid "At post arrival"
-msgstr "At post arrival"
+#: mod/events.php:487 mod/events.php:499 mod/profiles.php:713
+msgid "Required"
+msgstr "Required"
 
-#: mod/admin.php:1077 mod/contacts.php:568
-msgid "Disabled"
-msgstr "Disabled"
+#: mod/events.php:489 mod/events.php:505
+msgid "Finish date/time is not known or not relevant"
+msgstr "Finish date/time is not known or not relevant"
 
-#: mod/admin.php:1079
-msgid "Users, Global Contacts"
-msgstr "Users, Global Contacts"
+#: mod/events.php:491 mod/events.php:492
+msgid "Event Finishes:"
+msgstr "Event finishes:"
 
-#: mod/admin.php:1080
-msgid "Users, Global Contacts/fallback"
-msgstr "Users, Global Contacts/fallback"
+#: mod/events.php:493 mod/events.php:506
+msgid "Adjust for viewer timezone"
+msgstr "Adjust for viewer's time zone"
 
-#: mod/admin.php:1084
-msgid "One month"
-msgstr "One month"
+#: mod/events.php:495
+msgid "Description:"
+msgstr "Description:"
 
-#: mod/admin.php:1085
-msgid "Three months"
-msgstr "Three months"
+#: mod/events.php:499 mod/events.php:501
+msgid "Title:"
+msgstr "Title:"
 
-#: mod/admin.php:1086
-msgid "Half a year"
-msgstr "Half a year"
+#: mod/events.php:502 mod/events.php:503
+msgid "Share this event"
+msgstr "Share this event"
 
-#: mod/admin.php:1087
-msgid "One year"
-msgstr "One a year"
+#: mod/events.php:532
+msgid "Failed to remove event"
+msgstr "Failed to remove event"
 
-#: mod/admin.php:1092
-msgid "Multi user instance"
-msgstr "Multi user instance"
+#: mod/events.php:534
+msgid "Event removed"
+msgstr "Event removed"
 
-#: mod/admin.php:1115
-msgid "Closed"
-msgstr "Closed"
+#: mod/fbrowser.php:135
+msgid "Files"
+msgstr "Files"
 
-#: mod/admin.php:1116
-msgid "Requires approval"
-msgstr "Requires approval"
+#: mod/fetch.php:16 mod/fetch.php:43 mod/fetch.php:52 mod/help.php:57
+#: mod/p.php:20 mod/p.php:47 mod/p.php:56 index.php:302
+msgid "Not Found"
+msgstr "Not found"
 
-#: mod/admin.php:1117
-msgid "Open"
-msgstr "Open"
+#: mod/follow.php:42
+msgid "Contact added"
+msgstr "Contact added"
 
-#: mod/admin.php:1121
-msgid "No SSL policy, links will track page SSL state"
-msgstr "No SSL policy, links will track page SSL state"
+#: mod/follow.php:74
+msgid "You already added this contact."
+msgstr "You already added this contact."
 
-#: mod/admin.php:1122
-msgid "Force all links to use SSL"
-msgstr "Force all links to use SSL"
+#: mod/follow.php:83
+msgid "Diaspora support isn't enabled. Contact can't be added."
+msgstr "Diaspora support isn't enabled. Contact can't be added."
 
-#: mod/admin.php:1123
-msgid "Self-signed certificate, use SSL for local links only (discouraged)"
-msgstr "Self-signed certificate, use SSL for local links only (discouraged)"
+#: mod/follow.php:90
+msgid "OStatus support is disabled. Contact can't be added."
+msgstr "OStatus support is disabled. Contact can't be added."
 
-#: mod/admin.php:1145 mod/admin.php:1770 mod/admin.php:2033 mod/admin.php:2107
-#: mod/admin.php:2260 mod/settings.php:682 mod/settings.php:793
-#: mod/settings.php:842 mod/settings.php:909 mod/settings.php:1006
-#: mod/settings.php:1272
-msgid "Save Settings"
-msgstr "Save settings"
+#: mod/follow.php:97
+msgid "The network type couldn't be detected. Contact can't be added."
+msgstr "The network type couldn't be detected. Contact can't be added."
 
-#: mod/admin.php:1147
-msgid "File upload"
-msgstr "File upload"
+#: mod/friendica.php:70
+msgid "This is Friendica, version"
+msgstr "This is Friendica, version"
 
-#: mod/admin.php:1148
-msgid "Policies"
-msgstr "Policies"
+#: mod/friendica.php:71
+msgid "running at web location"
+msgstr "running at web location"
 
-#: mod/admin.php:1150
-msgid "Auto Discovered Contact Directory"
-msgstr "Auto-discovered contact directory"
+#: mod/friendica.php:75
+msgid ""
+"Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn "
+"more about the Friendica project."
+msgstr "Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn more about the Friendica project."
 
-#: mod/admin.php:1151
-msgid "Performance"
-msgstr "Performance"
+#: mod/friendica.php:79
+msgid "Bug reports and issues: please visit"
+msgstr "Bug reports and issues: please visit"
 
-#: mod/admin.php:1152
-msgid "Worker"
-msgstr "Worker"
+#: mod/friendica.php:79
+msgid "the bugtracker at github"
+msgstr "the bugtracker at github"
 
-#: mod/admin.php:1153
+#: mod/friendica.php:82
 msgid ""
-"Relocate - WARNING: advanced function. Could make this server unreachable."
-msgstr "Relocate - Warning, advanced function: This could make this server unreachable."
+"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - "
+"dot com"
+msgstr "Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"
 
-#: mod/admin.php:1156
-msgid "Site name"
-msgstr "Site name"
+#: mod/friendica.php:96
+msgid "Installed plugins/addons/apps:"
+msgstr "Installed plugins/addons/apps:"
 
-#: mod/admin.php:1157
-msgid "Host name"
-msgstr "Host name"
+#: mod/friendica.php:110
+msgid "No installed plugins/addons/apps"
+msgstr "No installed plugins/addons/apps"
 
-#: mod/admin.php:1158
-msgid "Sender Email"
-msgstr "Sender email"
+#: mod/friendica.php:115
+msgid "On this server the following remote servers are blocked."
+msgstr "On this server the following remote servers are blocked."
 
-#: mod/admin.php:1158
-msgid ""
-"The email address your server shall use to send notification emails from."
-msgstr "The email address your server shall use to send notification emails from."
+#: mod/group.php:31
+msgid "Group created."
+msgstr "Group created."
 
-#: mod/admin.php:1159
-msgid "Banner/Logo"
-msgstr "Banner/Logo"
+#: mod/group.php:37
+msgid "Could not create group."
+msgstr "Could not create group."
 
-#: mod/admin.php:1160
-msgid "Shortcut icon"
-msgstr "Shortcut icon"
+#: mod/group.php:51 mod/group.php:156
+msgid "Group not found."
+msgstr "Group not found."
 
-#: mod/admin.php:1160
-msgid "Link to an icon that will be used for browsers."
-msgstr "Link to an icon that will be used for browsers."
+#: mod/group.php:65
+msgid "Group name changed."
+msgstr "Group name changed."
 
-#: mod/admin.php:1161
-msgid "Touch icon"
-msgstr "Touch icon"
+#: mod/group.php:95
+msgid "Save Group"
+msgstr "Save group"
 
-#: mod/admin.php:1161
-msgid "Link to an icon that will be used for tablets and mobiles."
-msgstr "Link to an icon that will be used for tablets and mobiles."
+#: mod/group.php:100
+msgid "Create a group of contacts/friends."
+msgstr "Create a group of contacts/friends."
 
-#: mod/admin.php:1162
-msgid "Additional Info"
-msgstr "Additional Info"
+#: mod/group.php:125
+msgid "Group removed."
+msgstr "Group removed."
 
-#: mod/admin.php:1162
-#, php-format
-msgid ""
-"For public servers: you can add additional information here that will be "
-"listed at %s/siteinfo."
-msgstr "For public servers: add additional information here that will be listed at %s/siteinfo."
+#: mod/group.php:127
+msgid "Unable to remove group."
+msgstr "Unable to remove group."
 
-#: mod/admin.php:1163
-msgid "System language"
-msgstr "System language"
+#: mod/group.php:191
+msgid "Delete Group"
+msgstr "Delete group"
 
-#: mod/admin.php:1164
-msgid "System theme"
-msgstr "System theme"
+#: mod/group.php:197
+msgid "Group Editor"
+msgstr "Group Editor"
 
-#: mod/admin.php:1164
-msgid ""
-"Default system theme - may be over-ridden by user profiles - <a href='#' "
-"id='cnftheme'>change theme settings</a>"
-msgstr "Default system theme - may be overridden by user profiles - <a href='#' id='cnftheme'>change theme settings</a>"
+#: mod/group.php:202
+msgid "Edit Group Name"
+msgstr "Edit group name"
 
-#: mod/admin.php:1165
-msgid "Mobile system theme"
-msgstr "Mobile system theme"
+#: mod/group.php:212
+msgid "Members"
+msgstr "Members"
 
-#: mod/admin.php:1165
-msgid "Theme for mobile devices"
-msgstr "Theme for mobile devices"
+#: mod/group.php:228
+msgid "Remove Contact"
+msgstr "Remove contact"
 
-#: mod/admin.php:1166
-msgid "SSL link policy"
-msgstr "SSL link policy"
+#: mod/group.php:252
+msgid "Add Contact"
+msgstr "Add contact"
 
-#: mod/admin.php:1166
-msgid "Determines whether generated links should be forced to use SSL"
-msgstr "Determines whether generated links should be forced to use SSL"
+#: mod/hcard.php:14
+msgid "No profile"
+msgstr "No profile"
 
-#: mod/admin.php:1167
-msgid "Force SSL"
-msgstr "Force SSL"
+#: mod/help.php:45
+msgid "Help:"
+msgstr "Help:"
 
-#: mod/admin.php:1167
-msgid ""
-"Force all Non-SSL requests to SSL - Attention: on some systems it could lead"
-" to endless loops."
-msgstr "Force all Non-SSL requests to SSL - Attention: on some systems it could lead to endless loops."
+#: mod/help.php:60 index.php:305
+msgid "Page not found."
+msgstr "Page not found"
 
-#: mod/admin.php:1168
-msgid "Hide help entry from navigation menu"
-msgstr "Hide help entry from navigation menu"
+#: mod/home.php:42
+#, php-format
+msgid "Welcome to %s"
+msgstr "Welcome to %s"
 
-#: mod/admin.php:1168
-msgid ""
-"Hides the menu entry for the Help pages from the navigation menu. You can "
-"still access it calling /help directly."
-msgstr "Hides the menu entry for the Help pages from the navigation menu. Help pages can still be accessed by calling ../help directly via its URL."
+#: mod/install.php:109
+msgid "Friendica Communications Server - Setup"
+msgstr "Friendica Communications Server - Setup"
 
-#: mod/admin.php:1169
-msgid "Single user instance"
-msgstr "Single user instance"
+#: mod/install.php:115
+msgid "Could not connect to database."
+msgstr "Could not connect to database."
 
-#: mod/admin.php:1169
-msgid "Make this instance multi-user or single-user for the named user"
-msgstr "Make this instance multi-user or single-user for the named user"
+#: mod/install.php:119
+msgid "Could not create table."
+msgstr "Could not create table."
 
-#: mod/admin.php:1170
-msgid "Maximum image size"
-msgstr "Maximum image size"
+#: mod/install.php:125
+msgid "Your Friendica site database has been installed."
+msgstr "Your Friendica site database has been installed."
 
-#: mod/admin.php:1170
+#: mod/install.php:130
 msgid ""
-"Maximum size in bytes of uploaded images. Default is 0, which means no "
-"limits."
-msgstr "Maximum size in bytes of uploaded images. Default is 0, which means no limits."
+"You may need to import the file \"database.sql\" manually using phpmyadmin "
+"or mysql."
+msgstr "You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."
 
-#: mod/admin.php:1171
-msgid "Maximum image length"
-msgstr "Maximum image length"
+#: mod/install.php:131 mod/install.php:203 mod/install.php:550
+msgid "Please see the file \"INSTALL.txt\"."
+msgstr "Please see the file \"INSTALL.txt\"."
 
-#: mod/admin.php:1171
-msgid ""
-"Maximum length in pixels of the longest side of uploaded images. Default is "
-"-1, which means no limits."
-msgstr "Maximum length in pixels of the longest side of uploaded images. Default is -1, which means no limits."
+#: mod/install.php:143
+msgid "Database already in use."
+msgstr "Database already in use."
 
-#: mod/admin.php:1172
-msgid "JPEG image quality"
-msgstr "JPEG image quality"
+#: mod/install.php:200
+msgid "System check"
+msgstr "System check"
 
-#: mod/admin.php:1172
-msgid ""
-"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is "
-"100, which is full quality."
-msgstr "Uploaded JPEGS will be saved at this quality setting [0-100]. Default is 100, which is the original quality level."
+#: mod/install.php:205
+msgid "Check again"
+msgstr "Check again"
 
-#: mod/admin.php:1174
-msgid "Register policy"
-msgstr "Registration policy"
+#: mod/install.php:224
+msgid "Database connection"
+msgstr "Database connection"
 
-#: mod/admin.php:1175
-msgid "Maximum Daily Registrations"
-msgstr "Maximum daily registrations"
+#: mod/install.php:225
+msgid ""
+"In order to install Friendica we need to know how to connect to your "
+"database."
+msgstr "In order to install Friendica we need to know how to connect to your database."
 
-#: mod/admin.php:1175
+#: mod/install.php:226
 msgid ""
-"If registration is permitted above, this sets the maximum number of new user"
-" registrations to accept per day.  If register is set to closed, this "
-"setting has no effect."
-msgstr "If open registration is permitted, this sets the maximum number of new registrations per day.  This setting has no effect for registrations by approval."
+"Please contact your hosting provider or site administrator if you have "
+"questions about these settings."
+msgstr "Please contact your hosting provider or site administrator if you have questions about these settings."
 
-#: mod/admin.php:1176
-msgid "Register text"
-msgstr "Registration text"
+#: mod/install.php:227
+msgid ""
+"The database you specify below should already exist. If it does not, please "
+"create it before continuing."
+msgstr "The database you specify below should already exist. If it does not, please create it before continuing."
 
-#: mod/admin.php:1176
-msgid "Will be displayed prominently on the registration page."
-msgstr "Will be displayed prominently on the registration page."
+#: mod/install.php:231
+msgid "Database Server Name"
+msgstr "Database server name"
 
-#: mod/admin.php:1177
-msgid "Accounts abandoned after x days"
-msgstr "Accounts abandoned after so many days"
+#: mod/install.php:232
+msgid "Database Login Name"
+msgstr "Database login name"
 
-#: mod/admin.php:1177
-msgid ""
-"Will not waste system resources polling external sites for abandonded "
-"accounts. Enter 0 for no time limit."
-msgstr "Will not waste system resources polling external sites for abandoned accounts. Enter 0 for no time limit."
+#: mod/install.php:233
+msgid "Database Login Password"
+msgstr "Database login password"
 
-#: mod/admin.php:1178
-msgid "Allowed friend domains"
-msgstr "Allowed friend domains"
+#: mod/install.php:233
+msgid "For security reasons the password must not be empty"
+msgstr "For security reasons the password must not be empty"
 
-#: mod/admin.php:1178
-msgid ""
-"Comma separated list of domains which are allowed to establish friendships "
-"with this site. Wildcards are accepted. Empty to allow any domains"
-msgstr "Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Leave empty to allow any domains"
+#: mod/install.php:234
+msgid "Database Name"
+msgstr "Database name"
 
-#: mod/admin.php:1179
-msgid "Allowed email domains"
-msgstr "Allowed email domains"
+#: mod/install.php:235 mod/install.php:276
+msgid "Site administrator email address"
+msgstr "Site administrator email address"
 
-#: mod/admin.php:1179
+#: mod/install.php:235 mod/install.php:276
 msgid ""
-"Comma separated list of domains which are allowed in email addresses for "
-"registrations to this site. Wildcards are accepted. Empty to allow any "
-"domains"
-msgstr "Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Leave empty to allow any domains"
+"Your account email address must match this in order to use the web admin "
+"panel."
+msgstr "Your account email address must match this in order to use the web admin panel."
 
-#: mod/admin.php:1180
-msgid "Block public"
-msgstr "Block public"
+#: mod/install.php:239 mod/install.php:279
+msgid "Please select a default timezone for your website"
+msgstr "Please select a default time zone for your website"
 
-#: mod/admin.php:1180
-msgid ""
-"Check to block public access to all otherwise public personal pages on this "
-"site unless you are currently logged in."
-msgstr "Block public access to all otherwise public personal pages on this site, except for local users when logged in."
+#: mod/install.php:266
+msgid "Site settings"
+msgstr "Site settings"
 
-#: mod/admin.php:1181
-msgid "Force publish"
-msgstr "Mandatory directory listing"
+#: mod/install.php:280
+msgid "System Language:"
+msgstr "System language:"
 
-#: mod/admin.php:1181
+#: mod/install.php:280
 msgid ""
-"Check to force all profiles on this site to be listed in the site directory."
-msgstr "Force all profiles on this site to be listed in the site directory."
+"Set the default language for your Friendica installation interface and to "
+"send emails."
+msgstr "Set the default language for your Friendica installation interface and email communication."
 
-#: mod/admin.php:1182
-msgid "Global directory URL"
-msgstr "Global directory URL"
+#: mod/install.php:320
+msgid "Could not find a command line version of PHP in the web server PATH."
+msgstr "Could not find a command line version of PHP in the web server PATH."
 
-#: mod/admin.php:1182
+#: mod/install.php:321
 msgid ""
-"URL to the global directory. If this is not set, the global directory is "
-"completely unavailable to the application."
-msgstr "URL to the global directory: If this is not set, the global directory is completely unavailable to the application."
-
-#: mod/admin.php:1183
-msgid "Allow threaded items"
-msgstr "Allow threaded items"
-
-#: mod/admin.php:1183
-msgid "Allow infinite level threading for items on this site."
-msgstr "Allow infinite levels of threading for items on this site."
+"If you don't have a command line version of PHP installed on server, you "
+"will not be able to run the background processing. See <a "
+"href='https://github.com/friendica/friendica/blob/master/doc/Install.md#set-"
+"up-the-poller'>'Setup the poller'</a>"
+msgstr "If you don't have a command line version of PHP installed on your server, you will not be able to run the background processing. See <a href='https://github.com/friendica/friendica/blob/master/doc/Install.md#set-up-the-poller'>'Setup the poller'</a>"
 
-#: mod/admin.php:1184
-msgid "Private posts by default for new users"
-msgstr "Private posts by default for new users"
+#: mod/install.php:325
+msgid "PHP executable path"
+msgstr "PHP executable path"
 
-#: mod/admin.php:1184
+#: mod/install.php:325
 msgid ""
-"Set default post permissions for all new members to the default privacy "
-"group rather than public."
-msgstr "Set default post permissions for all new members to the default privacy group rather than public."
-
-#: mod/admin.php:1185
-msgid "Don't include post content in email notifications"
-msgstr "Don't include post content in email notifications"
+"Enter full path to php executable. You can leave this blank to continue the "
+"installation."
+msgstr "Enter full path to php executable. You can leave this blank to continue the installation."
 
-#: mod/admin.php:1185
-msgid ""
-"Don't include the content of a post/comment/private message/etc. in the "
-"email notifications that are sent out from this site, as a privacy measure."
-msgstr "Don't include the content of a post/comment/private message in the email notifications sent from this site, as a privacy measure."
+#: mod/install.php:330
+msgid "Command line PHP"
+msgstr "Command line PHP"
 
-#: mod/admin.php:1186
-msgid "Disallow public access to addons listed in the apps menu."
-msgstr "Disallow public access to addons listed in the apps menu."
+#: mod/install.php:339
+msgid "PHP executable is not the php cli binary (could be cgi-fgci version)"
+msgstr "PHP executable is not a php cli binary; it could possibly be a cgi-fgci version."
 
-#: mod/admin.php:1186
-msgid ""
-"Checking this box will restrict addons listed in the apps menu to members "
-"only."
-msgstr "Checking this box will restrict addons listed in the apps menu to members only."
+#: mod/install.php:340
+msgid "Found PHP version: "
+msgstr "Found PHP version: "
 
-#: mod/admin.php:1187
-msgid "Don't embed private images in posts"
-msgstr "Don't embed private images in posts"
+#: mod/install.php:342
+msgid "PHP cli binary"
+msgstr "PHP cli binary"
 
-#: mod/admin.php:1187
+#: mod/install.php:353
 msgid ""
-"Don't replace locally-hosted private photos in posts with an embedded copy "
-"of the image. This means that contacts who receive posts containing private "
-"photos will have to authenticate and load each image, which may take a "
-"while."
-msgstr "Don't replace locally-hosted private photos in posts with an embedded copy of the image. This means that contacts who receive posts containing private photos will have to authenticate and load each image, which may take a while."
+"The command line version of PHP on your system does not have "
+"\"register_argc_argv\" enabled."
+msgstr "The command line version of PHP on your system does not have \"register_argc_argv\" enabled."
 
-#: mod/admin.php:1188
-msgid "Allow Users to set remote_self"
-msgstr "Allow users to set \"Remote self\""
+#: mod/install.php:354
+msgid "This is required for message delivery to work."
+msgstr "This is required for message delivery to work."
 
-#: mod/admin.php:1188
+#: mod/install.php:356
+msgid "PHP register_argc_argv"
+msgstr "PHP register_argc_argv"
+
+#: mod/install.php:379
 msgid ""
-"With checking this, every user is allowed to mark every contact as a "
-"remote_self in the repair contact dialog. Setting this flag on a contact "
-"causes mirroring every posting of that contact in the users stream."
-msgstr "This allows every user to mark contacts as a \"Remote self\" in the repair contact dialogue. Setting this flag on a contact will mirror every posting of that contact in the users stream."
+"Error: the \"openssl_pkey_new\" function on this system is not able to "
+"generate encryption keys"
+msgstr "Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"
 
-#: mod/admin.php:1189
-msgid "Block multiple registrations"
-msgstr "Block multiple registrations"
+#: mod/install.php:380
+msgid ""
+"If running under Windows, please see "
+"\"http://www.php.net/manual/en/openssl.installation.php\"."
+msgstr "If running under Windows OS, please see \"http://www.php.net/manual/en/openssl.installation.php\"."
 
-#: mod/admin.php:1189
-msgid "Disallow users to register additional accounts for use as pages."
-msgstr "Disallow users to sign up for additional accounts."
+#: mod/install.php:382
+msgid "Generate encryption keys"
+msgstr "Generate encryption keys"
 
-#: mod/admin.php:1190
-msgid "OpenID support"
-msgstr "OpenID support"
+#: mod/install.php:389
+msgid "libCurl PHP module"
+msgstr "libCurl PHP module"
 
-#: mod/admin.php:1190
-msgid "OpenID support for registration and logins."
-msgstr "OpenID support for registration and logins."
-
-#: mod/admin.php:1191
-msgid "Fullname check"
-msgstr "Full name check"
+#: mod/install.php:390
+msgid "GD graphics PHP module"
+msgstr "GD graphics PHP module"
 
-#: mod/admin.php:1191
-msgid ""
-"Force users to register with a space between firstname and lastname in Full "
-"name, as an antispam measure"
-msgstr "Force users to sign up with a space between first name and last name in the full name field; it may reduce spam and abuse registrations."
+#: mod/install.php:391
+msgid "OpenSSL PHP module"
+msgstr "OpenSSL PHP module"
 
-#: mod/admin.php:1192
-msgid "Community Page Style"
-msgstr "Community page style"
+#: mod/install.php:392
+msgid "PDO or MySQLi PHP module"
+msgstr "PDO or MySQLi PHP module"
 
-#: mod/admin.php:1192
-msgid ""
-"Type of community page to show. 'Global community' shows every public "
-"posting from an open distributed network that arrived on this server."
-msgstr "Type of community page to show. 'Global community' shows every public posting from an open distributed network that arrived on this server."
+#: mod/install.php:393
+msgid "mb_string PHP module"
+msgstr "mb_string PHP module"
 
-#: mod/admin.php:1193
-msgid "Posts per user on community page"
-msgstr "Posts per user on community page"
+#: mod/install.php:394
+msgid "XML PHP module"
+msgstr "XML PHP module"
 
-#: mod/admin.php:1193
-msgid ""
-"The maximum number of posts per user on the community page. (Not valid for "
-"'Global Community')"
-msgstr "Maximum number of posts per user on the community page (not valid for 'Global Community')."
+#: mod/install.php:395
+msgid "iconv module"
+msgstr "iconv module"
 
-#: mod/admin.php:1194
-msgid "Enable OStatus support"
-msgstr "Enable OStatus support"
+#: mod/install.php:399 mod/install.php:401
+msgid "Apache mod_rewrite module"
+msgstr "Apache mod_rewrite module"
 
-#: mod/admin.php:1194
+#: mod/install.php:399
 msgid ""
-"Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All "
-"communications in OStatus are public, so privacy warnings will be "
-"occasionally displayed."
-msgstr "Provide built-in OStatus (StatusNet, GNU Social, etc.) compatibility. All communications in OStatus are public, so privacy warnings will be occasionally displayed."
+"Error: Apache webserver mod-rewrite module is required but not installed."
+msgstr "Error: Apache web server mod-rewrite module is required but not installed."
 
-#: mod/admin.php:1195
-msgid "OStatus conversation completion interval"
-msgstr "OStatus conversation completion interval"
+#: mod/install.php:407
+msgid "Error: libCURL PHP module required but not installed."
+msgstr "Error: libCURL PHP module required but not installed."
 
-#: mod/admin.php:1195
+#: mod/install.php:411
 msgid ""
-"How often shall the poller check for new entries in OStatus conversations? "
-"This can be a very ressource task."
-msgstr "How often shall the poller check for new entries in OStatus conversations? This can be rather resources consuming."
-
-#: mod/admin.php:1196
-msgid "Only import OStatus threads from our contacts"
-msgstr "Only import OStatus threads from known contacts"
+"Error: GD graphics PHP module with JPEG support required but not installed."
+msgstr "Error: GD graphics PHP module with JPEG support required but not installed."
 
-#: mod/admin.php:1196
-msgid ""
-"Normally we import every content from our OStatus contacts. With this option"
-" we only store threads that are started by a contact that is known on our "
-"system."
-msgstr "Normally we import every content from our OStatus contacts. With this option we only store threads that are started by a contact that is known on our system."
+#: mod/install.php:415
+msgid "Error: openssl PHP module required but not installed."
+msgstr "Error: openssl PHP module required but not installed."
 
-#: mod/admin.php:1197
-msgid "OStatus support can only be enabled if threading is enabled."
-msgstr "OStatus support can only be enabled if threading is enabled."
+#: mod/install.php:419
+msgid "Error: PDO or MySQLi PHP module required but not installed."
+msgstr "Error: PDO or MySQLi PHP module required but not installed."
 
-#: mod/admin.php:1199
-msgid ""
-"Diaspora support can't be enabled because Friendica was installed into a sub"
-" directory."
-msgstr "Diaspora support can't be enabled because Friendica was installed into a sub directory."
+#: mod/install.php:423
+msgid "Error: The MySQL driver for PDO is not installed."
+msgstr "Error: MySQL driver for PDO is not installed."
 
-#: mod/admin.php:1200
-msgid "Enable Diaspora support"
-msgstr "Enable Diaspora support"
+#: mod/install.php:427
+msgid "Error: mb_string PHP module required but not installed."
+msgstr "Error: mb_string PHP module required but not installed."
 
-#: mod/admin.php:1200
-msgid "Provide built-in Diaspora network compatibility."
-msgstr "Provide built-in Diaspora network compatibility."
+#: mod/install.php:431
+msgid "Error: iconv PHP module required but not installed."
+msgstr "Error: iconv PHP module required but not installed."
 
-#: mod/admin.php:1201
-msgid "Only allow Friendica contacts"
-msgstr "Only allow Friendica contacts"
+#: mod/install.php:441
+msgid "Error, XML PHP module required but not installed."
+msgstr "Error, XML PHP module required but not installed."
 
-#: mod/admin.php:1201
+#: mod/install.php:453
 msgid ""
-"All contacts must use Friendica protocols. All other built-in communication "
-"protocols disabled."
-msgstr "All contacts must use Friendica protocols. All other built-in communication protocols will be disabled."
+"The web installer needs to be able to create a file called \".htconfig.php\""
+" in the top folder of your web server and it is unable to do so."
+msgstr "The web installer needs to be able to create a file called \".htconfig.php\" in the top-level directory of your web server, but it is unable to do so."
 
-#: mod/admin.php:1202
-msgid "Verify SSL"
-msgstr "Verify SSL"
+#: mod/install.php:454
+msgid ""
+"This is most often a permission setting, as the web server may not be able "
+"to write files in your folder - even if you can."
+msgstr "This is most often a permission setting issue, as the web server may not be able to write files in your directory - even if you can."
 
-#: mod/admin.php:1202
+#: mod/install.php:455
 msgid ""
-"If you wish, you can turn on strict certificate checking. This will mean you"
-" cannot connect (at all) to self-signed SSL sites."
-msgstr "If you wish, you can turn on strict certificate checking. This will mean you cannot connect (at all) to self-signed SSL sites."
+"At the end of this procedure, we will give you a text to save in a file "
+"named .htconfig.php in your Friendica top folder."
+msgstr "At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Friendica top-level directory."
 
-#: mod/admin.php:1203
-msgid "Proxy user"
-msgstr "Proxy user"
+#: mod/install.php:456
+msgid ""
+"You can alternatively skip this procedure and perform a manual installation."
+" Please see the file \"INSTALL.txt\" for instructions."
+msgstr "Alternatively, you may skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."
 
-#: mod/admin.php:1204
-msgid "Proxy URL"
-msgstr "Proxy URL"
+#: mod/install.php:459
+msgid ".htconfig.php is writable"
+msgstr ".htconfig.php is writable"
 
-#: mod/admin.php:1205
-msgid "Network timeout"
-msgstr "Network timeout"
+#: mod/install.php:469
+msgid ""
+"Friendica uses the Smarty3 template engine to render its web views. Smarty3 "
+"compiles templates to PHP to speed up rendering."
+msgstr "Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."
 
-#: mod/admin.php:1205
-msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
-msgstr "Value is in seconds. Set to 0 for unlimited (not recommended)."
+#: mod/install.php:470
+msgid ""
+"In order to store these compiled templates, the web server needs to have "
+"write access to the directory view/smarty3/ under the Friendica top level "
+"folder."
+msgstr "In order to store these compiled templates, the web server needs to have write access to the directory view/smarty3/ under the Friendica top-level directory."
 
-#: mod/admin.php:1206
-msgid "Maximum Load Average"
-msgstr "Maximum load average"
+#: mod/install.php:471
+msgid ""
+"Please ensure that the user that your web server runs as (e.g. www-data) has"
+" write access to this folder."
+msgstr "Please ensure the user (e.g. www-data) that your web server runs as has write access to this directory."
 
-#: mod/admin.php:1206
+#: mod/install.php:472
 msgid ""
-"Maximum system load before delivery and poll processes are deferred - "
-"default 50."
-msgstr "Maximum system load before delivery and poll processes are deferred (default 50)."
+"Note: as a security measure, you should give the web server write access to "
+"view/smarty3/ only--not the template files (.tpl) that it contains."
+msgstr "Note: as a security measure, you should give the web server write access to view/smarty3/ only--not the template files (.tpl) that it contains."
 
-#: mod/admin.php:1207
-msgid "Maximum Load Average (Frontend)"
-msgstr "Maximum load average (frontend)"
+#: mod/install.php:475
+msgid "view/smarty3 is writable"
+msgstr "view/smarty3 is writable"
 
-#: mod/admin.php:1207
-msgid "Maximum system load before the frontend quits service - default 50."
-msgstr "Maximum system load before the frontend quits service (default 50)."
+#: mod/install.php:491
+msgid ""
+"Url rewrite in .htaccess is not working. Check your server configuration."
+msgstr "URL rewrite in .htaccess is not working. Check your server configuration."
 
-#: mod/admin.php:1208
-msgid "Minimal Memory"
-msgstr "Minimal memory"
+#: mod/install.php:493
+msgid "Url rewrite is working"
+msgstr "URL rewrite is working"
 
-#: mod/admin.php:1208
-msgid ""
-"Minimal free memory in MB for the poller. Needs access to /proc/meminfo - "
-"default 0 (deactivated)."
-msgstr "Minimal free memory in MB for the poller. Needs access to /proc/meminfo (default 0 - deactivated)."
+#: mod/install.php:512
+msgid "ImageMagick PHP extension is not installed"
+msgstr "ImageMagick PHP extension is not installed"
 
-#: mod/admin.php:1209
-msgid "Maximum table size for optimization"
-msgstr "Maximum table size for optimization"
+#: mod/install.php:514
+msgid "ImageMagick PHP extension is installed"
+msgstr "ImageMagick PHP extension is installed"
 
-#: mod/admin.php:1209
+#: mod/install.php:516
+msgid "ImageMagick supports GIF"
+msgstr "ImageMagick supports GIF"
+
+#: mod/install.php:523
 msgid ""
-"Maximum table size (in MB) for the automatic optimization - default 100 MB. "
-"Enter -1 to disable it."
-msgstr "Maximum table size (in MB) for the automatic optimization (default 100 MB; -1 to deactivate)."
+"The database configuration file \".htconfig.php\" could not be written. "
+"Please use the enclosed text to create a configuration file in your web "
+"server root."
+msgstr "The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."
 
-#: mod/admin.php:1210
-msgid "Minimum level of fragmentation"
-msgstr "Minimum level of fragmentation"
+#: mod/install.php:548
+msgid "<h1>What next</h1>"
+msgstr "<h1>What next</h1>"
 
-#: mod/admin.php:1210
+#: mod/install.php:549
 msgid ""
-"Minimum fragmenation level to start the automatic optimization - default "
-"value is 30%."
-msgstr "Minimum fragmentation level to start the automatic optimization (default 30%)."
+"IMPORTANT: You will need to [manually] setup a scheduled task for the "
+"poller."
+msgstr "IMPORTANT: You will need to [manually] setup a scheduled task for the poller."
 
-#: mod/admin.php:1212
-msgid "Periodical check of global contacts"
-msgstr "Periodical check of global contacts"
+#: mod/invite.php:31
+msgid "Total invitation limit exceeded."
+msgstr "Total invitation limit exceeded"
 
-#: mod/admin.php:1212
-msgid ""
-"If enabled, the global contacts are checked periodically for missing or "
-"outdated data and the vitality of the contacts and servers."
-msgstr "This checks global contacts periodically for missing or outdated data and the vitality of the contacts and servers."
+#: mod/invite.php:54
+#, php-format
+msgid "%s : Not a valid email address."
+msgstr "%s : Not a valid email address"
 
-#: mod/admin.php:1213
-msgid "Days between requery"
-msgstr "Days between enquiry"
+#: mod/invite.php:79
+msgid "Please join us on Friendica"
+msgstr "Please join us on Friendica."
 
-#: mod/admin.php:1213
-msgid "Number of days after which a server is requeried for his contacts."
-msgstr "Number of days after which a server is required check contacts."
+#: mod/invite.php:90
+msgid "Invitation limit exceeded. Please contact your site administrator."
+msgstr "Invitation limit is exceeded. Please contact your site administrator."
 
-#: mod/admin.php:1214
-msgid "Discover contacts from other servers"
-msgstr "Discover contacts from other servers"
+#: mod/invite.php:94
+#, php-format
+msgid "%s : Message delivery failed."
+msgstr "%s : Message delivery failed"
 
-#: mod/admin.php:1214
-msgid ""
-"Periodically query other servers for contacts. You can choose between "
-"'users': the users on the remote system, 'Global Contacts': active contacts "
-"that are known on the system. The fallback is meant for Redmatrix servers "
-"and older friendica servers, where global contacts weren't available. The "
-"fallback increases the server load, so the recommened setting is 'Users, "
-"Global Contacts'."
-msgstr "Periodically query other servers for contacts. You can choose between 'Users': the users on the remote system, 'Global Contacts': active contacts that are known on the system. The fallback is meant for Redmatrix servers and older Friendica servers, where global contacts weren't available. The fallback increases the server load, so the recommend setting is 'Users, Global Contacts'."
+#: mod/invite.php:98
+#, php-format
+msgid "%d message sent."
+msgid_plural "%d messages sent."
+msgstr[0] "%d message sent."
+msgstr[1] "%d messages sent."
 
-#: mod/admin.php:1215
-msgid "Timeframe for fetching global contacts"
-msgstr "Time-frame for fetching global contacts"
+#: mod/invite.php:117
+msgid "You have no more invitations available"
+msgstr "You have no more invitations available."
 
-#: mod/admin.php:1215
+#: mod/invite.php:125
+#, php-format
 msgid ""
-"When the discovery is activated, this value defines the timeframe for the "
-"activity of the global contacts that are fetched from other servers."
-msgstr "If discovery is activated, this value defines the time-frame for the activity of the global contacts that are fetched from other servers."
+"Visit %s for a list of public sites that you can join. Friendica members on "
+"other sites can all connect with each other, as well as with members of many"
+" other social networks."
+msgstr "Visit %s for a list of public sites that you can join. Friendica members on other sites can all connect with each other, as well as with members of many other social networks."
 
-#: mod/admin.php:1216
-msgid "Search the local directory"
-msgstr "Search the local directory"
+#: mod/invite.php:127
+#, php-format
+msgid ""
+"To accept this invitation, please visit and register at %s or any other "
+"public Friendica website."
+msgstr "To accept this invitation, please sign up at %s or any other public Friendica website."
 
-#: mod/admin.php:1216
+#: mod/invite.php:128
+#, php-format
 msgid ""
-"Search the local directory instead of the global directory. When searching "
-"locally, every search will be executed on the global directory in the "
-"background. This improves the search results when the search is repeated."
-msgstr "Search the local directory instead of the global directory. When searching locally, every search will be executed on the global directory in the background. This improves the search results when the search is repeated."
+"Friendica sites all inter-connect to create a huge privacy-enhanced social "
+"web that is owned and controlled by its members. They can also connect with "
+"many traditional social networks. See %s for a list of alternate Friendica "
+"sites you can join."
+msgstr "Friendica sites are all inter-connect to create a large privacy-enhanced social web that is owned and controlled by its members. They can also connect with many traditional social networks. See %s for a list of alternate Friendica sites you can join."
 
-#: mod/admin.php:1218
-msgid "Publish server information"
-msgstr "Publish server information"
+#: mod/invite.php:132
+msgid ""
+"Our apologies. This system is not currently configured to connect with other"
+" public sites or invite members."
+msgstr "Our apologies. This system is not currently configured to connect with other public sites or invite members."
 
-#: mod/admin.php:1218
+#: mod/invite.php:135
+#, php-format
+msgid "To accept this invitation, please visit and register at %s."
+msgstr "To accept this invitation, please visit and register at %s."
+
+#: mod/invite.php:136
 msgid ""
-"If enabled, general server and usage data will be published. The data "
-"contains the name and version of the server, number of users with public "
-"profiles, number of posts and the activated protocols and connectors. See <a"
-" href='http://the-federation.info/'>the-federation.info</a> for details."
-msgstr "This publishes generic data about the server and its usage. The data contains the name and version of the server, number of users with public profiles, number of posts and the activated protocols and connectors. See <a href='http://the-federation.info/'>the-federation.info</a> for details."
+"Friendica sites all inter-connect to create a huge privacy-enhanced social "
+"web that is owned and controlled by its members. They can also connect with "
+"many traditional social networks."
+msgstr "Friendica sites are all inter-connect to create a huge privacy-enhanced social web that is owned and controlled by its members. Each site can also connect with many traditional social networks."
 
-#: mod/admin.php:1220
-msgid "Suppress Tags"
-msgstr "Suppress tags"
+#: mod/invite.php:142
+msgid "Send invitations"
+msgstr "Send invitations"
 
-#: mod/admin.php:1220
-msgid "Suppress showing a list of hashtags at the end of the posting."
-msgstr "Suppress listed hashtags at the end of posts."
+#: mod/invite.php:143
+msgid "Enter email addresses, one per line:"
+msgstr "Enter email addresses, one per line:"
 
-#: mod/admin.php:1221
-msgid "Path to item cache"
-msgstr "Path to item cache"
+#: mod/invite.php:144 mod/message.php:332 mod/message.php:515
+#: mod/wallmessage.php:138
+msgid "Your message:"
+msgstr "Your message:"
 
-#: mod/admin.php:1221
-msgid "The item caches buffers generated bbcode and external images."
-msgstr "The item caches buffers generated bbcode and external images."
+#: mod/invite.php:145
+msgid ""
+"You are cordially invited to join me and other close friends on Friendica - "
+"and help us to create a better social web."
+msgstr "You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."
 
-#: mod/admin.php:1222
-msgid "Cache duration in seconds"
-msgstr "Cache duration in seconds"
+#: mod/invite.php:147
+msgid "You will need to supply this invitation code: $invite_code"
+msgstr "You will need to supply this invitation code: $invite_code"
 
-#: mod/admin.php:1222
+#: mod/invite.php:147
 msgid ""
-"How long should the cache files be hold? Default value is 86400 seconds (One"
-" day). To disable the item cache, set the value to -1."
-msgstr "How long should cache files be held? (Default 86400 seconds - one day;  -1 disables item cache)"
+"Once you have registered, please connect with me via my profile page at:"
+msgstr "Once you have signed up, please connect with me via my profile page at:"
 
-#: mod/admin.php:1223
-msgid "Maximum numbers of comments per post"
-msgstr "Maximum numbers of comments per post"
+#: mod/invite.php:149
+msgid ""
+"For more information about the Friendica project and why we feel it is "
+"important, please visit http://friendi.ca"
+msgstr "For more information about the Friendica project and why we feel it is important, please visit http://friendi.ca"
 
-#: mod/admin.php:1223
-msgid "How much comments should be shown for each post? Default value is 100."
-msgstr "How many comments should be shown for each post? (Default 100)"
+#: mod/item.php:119
+msgid "Unable to locate original post."
+msgstr "Unable to locate original post."
 
-#: mod/admin.php:1224
-msgid "Temp path"
-msgstr "Temp path"
+#: mod/item.php:346
+msgid "Empty post discarded."
+msgstr "Empty post discarded."
 
-#: mod/admin.php:1224
+#: mod/item.php:903
+msgid "System error. Post not saved."
+msgstr "System error. Post not saved."
+
+#: mod/item.php:994
+#, php-format
 msgid ""
-"If you have a restricted system where the webserver can't access the system "
-"temp path, enter another path here."
-msgstr "Enter a different tmp path, if your system restricts the webserver's access to the system temp path."
+"This message was sent to you by %s, a member of the Friendica social "
+"network."
+msgstr "This message was sent to you by %s, a member of the Friendica social network."
 
-#: mod/admin.php:1225
-msgid "Base path to installation"
-msgstr "Base path to installation"
+#: mod/item.php:996
+#, php-format
+msgid "You may visit them online at %s"
+msgstr "You may visit them online at %s"
 
-#: mod/admin.php:1225
+#: mod/item.php:997
 msgid ""
-"If the system cannot detect the correct path to your installation, enter the"
-" correct path here. This setting should only be set if you are using a "
-"restricted system and symbolic links to your webroot."
-msgstr "If the system cannot detect the correct path to your installation, enter the correct path here. This setting should only be set if you are using a restricted system and symbolic links to your webroot."
+"Please contact the sender by replying to this post if you do not wish to "
+"receive these messages."
+msgstr "Please contact the sender by replying to this post if you do not wish to receive these messages."
 
-#: mod/admin.php:1226
-msgid "Disable picture proxy"
-msgstr "Disable picture proxy"
+#: mod/item.php:1001
+#, php-format
+msgid "%s posted an update."
+msgstr "%s posted an update."
 
-#: mod/admin.php:1226
+#: mod/localtime.php:26
+msgid "Time Conversion"
+msgstr "Time conversion"
+
+#: mod/localtime.php:28
 msgid ""
-"The picture proxy increases performance and privacy. It shouldn't be used on"
-" systems with very low bandwith."
-msgstr "The picture proxy increases performance and privacy. It shouldn't be used on systems with very low bandwith."
+"Friendica provides this service for sharing events with other networks and "
+"friends in unknown timezones."
+msgstr "Friendica provides this service for sharing events with other networks and friends in unknown time zones."
 
-#: mod/admin.php:1227
-msgid "Only search in tags"
-msgstr "Only search in tags"
+#: mod/localtime.php:32
+#, php-format
+msgid "UTC time: %s"
+msgstr "UTC time: %s"
 
-#: mod/admin.php:1227
-msgid "On large systems the text search can slow down the system extremely."
-msgstr "On large systems the text search can slow down the system significantly."
+#: mod/localtime.php:35
+#, php-format
+msgid "Current timezone: %s"
+msgstr "Current time zone: %s"
 
-#: mod/admin.php:1229
-msgid "New base url"
-msgstr "New base URL"
+#: mod/localtime.php:38
+#, php-format
+msgid "Converted localtime: %s"
+msgstr "Converted local time: %s"
 
-#: mod/admin.php:1229
-msgid ""
-"Change base url for this server. Sends relocate message to all DFRN contacts"
-" of all users."
-msgstr "Change base URL for this server. Sends relocate message to all DFRN contacts of all users."
+#: mod/localtime.php:43
+msgid "Please select your timezone:"
+msgstr "Please select your time zone:"
 
-#: mod/admin.php:1231
-msgid "RINO Encryption"
-msgstr "RINO Encryption"
+#: mod/lostpass.php:22
+msgid "No valid account found."
+msgstr "No valid account found."
 
-#: mod/admin.php:1231
-msgid "Encryption layer between nodes."
-msgstr "Encryption layer between nodes."
+#: mod/lostpass.php:38
+msgid "Password reset request issued. Check your email."
+msgstr "Password reset request issued. Please check your email."
 
-#: mod/admin.php:1233
-msgid "Maximum number of parallel workers"
-msgstr "Maximum number of parallel workers"
+#: mod/lostpass.php:44
+#, php-format
+msgid ""
+"\n"
+"\t\tDear %1$s,\n"
+"\t\t\tA request was recently received at \"%2$s\" to reset your account\n"
+"\t\tpassword. In order to confirm this request, please select the verification link\n"
+"\t\tbelow or paste it into your web browser address bar.\n"
+"\n"
+"\t\tIf you did NOT request this change, please DO NOT follow the link\n"
+"\t\tprovided and ignore and/or delete this email.\n"
+"\n"
+"\t\tYour password will not be changed unless we can verify that you\n"
+"\t\tissued this request."
+msgstr "\n\t\tDear %1$s,\n\t\t\tA request was issued at \"%2$s\" to reset your account\n\t\tpassword. In order to confirm this request, please select the verification link\n\t\tbelow or paste it into your web browser address bar.\n\n\t\tIf you did NOT request this change, please DO NOT follow the link\n\t\tprovided and ignore/delete this email.\n\n\t\tYour password will not be changed unless we can verify that you\n\t\tissued this request."
 
-#: mod/admin.php:1233
+#: mod/lostpass.php:55
+#, php-format
 msgid ""
-"On shared hosters set this to 2. On larger systems, values of 10 are great. "
-"Default value is 4."
-msgstr "On shared hosts set this to 2. On larger systems, values of 10 are great. Default value is 4."
+"\n"
+"\t\tFollow this link to verify your identity:\n"
+"\n"
+"\t\t%1$s\n"
+"\n"
+"\t\tYou will then receive a follow-up message containing the new password.\n"
+"\t\tYou may change that password from your account settings page after logging in.\n"
+"\n"
+"\t\tThe login details are as follows:\n"
+"\n"
+"\t\tSite Location:\t%2$s\n"
+"\t\tLogin Name:\t%3$s"
+msgstr "\n\t\tFollow this link to verify your identity:\n\n\t\t%1$s\n\n\t\tYou will then receive a follow-up message containing the new password.\n\t\tYou may change that password from your account settings page after logging in.\n\n\t\tThe login details are as follows:\n\n\t\tSite Location:\t%2$s\n\t\tLogin Name:\t%3$s"
 
-#: mod/admin.php:1234
-msgid "Don't use 'proc_open' with the worker"
-msgstr "Don't use 'proc_open' with the worker"
+#: mod/lostpass.php:74
+#, php-format
+msgid "Password reset requested at %s"
+msgstr "Password reset requested at %s"
+
+#: mod/lostpass.php:94
+msgid ""
+"Request could not be verified. (You may have previously submitted it.) "
+"Password reset failed."
+msgstr "Request could not be verified. (You may have previously submitted it.) Password reset failed."
+
+#: mod/lostpass.php:113 boot.php:875
+msgid "Password Reset"
+msgstr "Forgotten password?"
+
+#: mod/lostpass.php:114
+msgid "Your password has been reset as requested."
+msgstr "Your password has been reset as requested."
+
+#: mod/lostpass.php:115
+msgid "Your new password is"
+msgstr "Your new password is"
+
+#: mod/lostpass.php:116
+msgid "Save or copy your new password - and then"
+msgstr "Save or copy your new password - and then"
+
+#: mod/lostpass.php:117
+msgid "click here to login"
+msgstr "click here to login"
+
+#: mod/lostpass.php:118
+msgid ""
+"Your password may be changed from the <em>Settings</em> page after "
+"successful login."
+msgstr "Your password may be changed from the <em>Settings</em> page after successful login."
+
+#: mod/lostpass.php:128
+#, php-format
+msgid ""
+"\n"
+"\t\t\t\tDear %1$s,\n"
+"\t\t\t\t\tYour password has been changed as requested. Please retain this\n"
+"\t\t\t\tinformation for your records (or change your password immediately to\n"
+"\t\t\t\tsomething that you will remember).\n"
+"\t\t\t"
+msgstr "\n\t\t\t\tDear %1$s,\n\t\t\t\t\tYour password has been changed as requested. Please retain this\n\t\t\t\tinformation for your records or change your password immediately to\n\t\t\t\tsomething that you will remember.\n\t\t\t"
+
+#: mod/lostpass.php:134
+#, php-format
+msgid ""
+"\n"
+"\t\t\t\tYour login details are as follows:\n"
+"\n"
+"\t\t\t\tSite Location:\t%1$s\n"
+"\t\t\t\tLogin Name:\t%2$s\n"
+"\t\t\t\tPassword:\t%3$s\n"
+"\n"
+"\t\t\t\tYou may change that password from your account settings page after logging in.\n"
+"\t\t\t"
+msgstr "\n\t\t\t\tYour login details are as follows:\n\n\t\t\t\tSite Location:\t%1$s\n\t\t\t\tLogin Name:\t%2$s\n\t\t\t\tPassword:\t%3$s\n\n\t\t\t\tYou may change that password from your account settings page after logging in.\n\t\t\t"
+
+#: mod/lostpass.php:150
+#, php-format
+msgid "Your password has been changed at %s"
+msgstr "Your password has been changed at %s"
+
+#: mod/lostpass.php:162
+msgid "Forgot your Password?"
+msgstr "Reset My Password"
+
+#: mod/lostpass.php:163
+msgid ""
+"Enter your email address and submit to have your password reset. Then check "
+"your email for further instructions."
+msgstr "Enter email address or nickname to reset your password. You will receive further instruction via email."
+
+#: mod/lostpass.php:164 boot.php:863
+msgid "Nickname or Email: "
+msgstr "Nickname or email: "
+
+#: mod/lostpass.php:165
+msgid "Reset"
+msgstr "Reset"
+
+#: mod/manage.php:153
+msgid "Manage Identities and/or Pages"
+msgstr "Manage Identities and Pages"
+
+#: mod/manage.php:154
+msgid ""
+"Toggle between different identities or community/group pages which share "
+"your account details or which you have been granted \"manage\" permissions"
+msgstr "Accounts that I manage or own."
+
+#: mod/manage.php:155
+msgid "Select an identity to manage: "
+msgstr "Select identity:"
+
+#: mod/match.php:39
+msgid "No keywords to match. Please add keywords to your default profile."
+msgstr "No keywords to match. Please add keywords to your default profile."
+
+#: mod/match.php:92
+msgid "is interested in:"
+msgstr "is interested in:"
+
+#: mod/match.php:106
+msgid "Profile Match"
+msgstr "Profile Match"
+
+#: mod/message.php:63 mod/wallmessage.php:53
+msgid "No recipient selected."
+msgstr "No recipient selected."
+
+#: mod/message.php:67
+msgid "Unable to locate contact information."
+msgstr "Unable to locate contact information."
+
+#: mod/message.php:70 mod/wallmessage.php:59
+msgid "Message could not be sent."
+msgstr "Message could not be sent."
+
+#: mod/message.php:73 mod/wallmessage.php:62
+msgid "Message collection failure."
+msgstr "Message collection failure."
+
+#: mod/message.php:76 mod/wallmessage.php:65
+msgid "Message sent."
+msgstr "Message sent."
+
+#: mod/message.php:205
+msgid "Do you really want to delete this message?"
+msgstr "Do you really want to delete this message?"
+
+#: mod/message.php:225
+msgid "Message deleted."
+msgstr "Message deleted."
+
+#: mod/message.php:255
+msgid "Conversation removed."
+msgstr "Conversation removed."
+
+#: mod/message.php:322 mod/wallmessage.php:129
+msgid "Send Private Message"
+msgstr "Send private message"
+
+#: mod/message.php:323 mod/message.php:510 mod/wallmessage.php:131
+msgid "To:"
+msgstr "To:"
+
+#: mod/message.php:328 mod/message.php:512 mod/wallmessage.php:132
+msgid "Subject:"
+msgstr "Subject:"
+
+#: mod/message.php:364
+msgid "No messages."
+msgstr "No messages."
+
+#: mod/message.php:403
+msgid "Message not available."
+msgstr "Message not available."
+
+#: mod/message.php:478
+msgid "Delete message"
+msgstr "Delete message"
+
+#: mod/message.php:503 mod/message.php:591
+msgid "Delete conversation"
+msgstr "Delete conversation"
+
+#: mod/message.php:505
+msgid ""
+"No secure communications available. You <strong>may</strong> be able to "
+"respond from the sender's profile page."
+msgstr "No secure communications available. You <strong>may</strong> be able to respond from the sender's profile page."
+
+#: mod/message.php:509
+msgid "Send Reply"
+msgstr "Send reply"
+
+#: mod/message.php:561
+#, php-format
+msgid "Unknown sender - %s"
+msgstr "Unknown sender - %s"
+
+#: mod/message.php:563
+#, php-format
+msgid "You and %s"
+msgstr "Me and %s"
+
+#: mod/message.php:565
+#, php-format
+msgid "%s and You"
+msgstr "%s and me"
+
+#: mod/message.php:594
+msgid "D, d M Y - g:i A"
+msgstr "D, d M Y - g:i A"
+
+#: mod/message.php:597
+#, php-format
+msgid "%d message"
+msgid_plural "%d messages"
+msgstr[0] "%d message"
+msgstr[1] "%d messages"
+
+#: mod/mood.php:136
+msgid "Mood"
+msgstr "Mood"
+
+#: mod/mood.php:137
+msgid "Set your current mood and tell your friends"
+msgstr "Set your current mood and tell your friends"
+
+#: mod/network.php:561
+#, php-format
+msgid ""
+"Warning: This group contains %s member from a network that doesn't allow non"
+" public messages."
+msgid_plural ""
+"Warning: This group contains %s members from a network that doesn't allow "
+"non public messages."
+msgstr[0] "Warning: This group contains %s member from a network that doesn't allow non public messages."
+msgstr[1] "Warning: This group contains %s members from a network that doesn't allow non public messages."
+
+#: mod/network.php:564
+msgid "Messages in this group won't be send to these receivers."
+msgstr "Messages in this group won't be send to these receivers."
+
+#: mod/network.php:684
+msgid "Private messages to this person are at risk of public disclosure."
+msgstr "Private messages to this person are at risk of public disclosure."
+
+#: mod/network.php:688
+msgid "Invalid contact."
+msgstr "Invalid contact."
+
+#: mod/network.php:892
+msgid "Commented Order"
+msgstr "Commented last"
+
+#: mod/network.php:895
+msgid "Sort by Comment Date"
+msgstr "Sort by comment date"
+
+#: mod/network.php:900
+msgid "Posted Order"
+msgstr "Posted last"
+
+#: mod/network.php:903
+msgid "Sort by Post Date"
+msgstr "Sort by post date"
+
+#: mod/network.php:914
+msgid "Posts that mention or involve you"
+msgstr "Posts mentioning or involving me"
+
+#: mod/network.php:922
+msgid "New"
+msgstr "New"
+
+#: mod/network.php:925
+msgid "Activity Stream - by date"
+msgstr "Activity Stream - by date"
+
+#: mod/network.php:933
+msgid "Shared Links"
+msgstr "Shared links"
+
+#: mod/network.php:936
+msgid "Interesting Links"
+msgstr "Interesting links"
+
+#: mod/network.php:944
+msgid "Starred"
+msgstr "Starred"
+
+#: mod/network.php:947
+msgid "Favourite Posts"
+msgstr "My favorite posts"
+
+#: mod/notifications.php:38
+msgid "Invalid request identifier."
+msgstr "Invalid request identifier."
+
+#: mod/notifications.php:47 mod/notifications.php:183
+#: mod/notifications.php:230
+msgid "Discard"
+msgstr "Discard"
+
+#: mod/notifications.php:108
+msgid "Network Notifications"
+msgstr "Network notifications"
+
+#: mod/notifications.php:114 mod/notify.php:73
+msgid "System Notifications"
+msgstr "System notifications"
+
+#: mod/notifications.php:120
+msgid "Personal Notifications"
+msgstr "Personal notifications"
+
+#: mod/notifications.php:126
+msgid "Home Notifications"
+msgstr "Home notifications"
+
+#: mod/notifications.php:155
+msgid "Show Ignored Requests"
+msgstr "Show ignored requests."
+
+#: mod/notifications.php:155
+msgid "Hide Ignored Requests"
+msgstr "Hide ignored requests"
+
+#: mod/notifications.php:167 mod/notifications.php:237
+msgid "Notification type: "
+msgstr "Notification type: "
+
+#: mod/notifications.php:170
+#, php-format
+msgid "suggested by %s"
+msgstr "suggested by %s"
+
+#: mod/notifications.php:176 mod/notifications.php:255
+msgid "Post a new friend activity"
+msgstr "Post a new friend activity"
+
+#: mod/notifications.php:176 mod/notifications.php:255
+msgid "if applicable"
+msgstr "if applicable"
+
+#: mod/notifications.php:198
+msgid "Claims to be known to you: "
+msgstr "Says they know me:"
+
+#: mod/notifications.php:199
+msgid "yes"
+msgstr "yes"
+
+#: mod/notifications.php:199
+msgid "no"
+msgstr "no"
+
+#: mod/notifications.php:200 mod/notifications.php:205
+msgid "Shall your connection be bidirectional or not?"
+msgstr "Shall your connection be in both directions or not?"
+
+#: mod/notifications.php:201 mod/notifications.php:206
+#, php-format
+msgid ""
+"Accepting %s as a friend allows %s to subscribe to your posts, and you will "
+"also receive updates from them in your news feed."
+msgstr "Accepting %s as a friend allows %s to subscribe to your posts; you will also receive updates from them in your news feed."
+
+#: mod/notifications.php:202
+#, php-format
+msgid ""
+"Accepting %s as a subscriber allows them to subscribe to your posts, but you"
+" will not receive updates from them in your news feed."
+msgstr "Accepting %s as a subscriber allows them to subscribe to your posts, but you will not receive updates from them in your news feed."
 
-#: mod/admin.php:1234
+#: mod/notifications.php:207
+#, php-format
 msgid ""
-"Enable this if your system doesn't allow the use of 'proc_open'. This can "
-"happen on shared hosters. If this is enabled you should increase the "
-"frequency of poller calls in your crontab."
-msgstr "Enable this if your system doesn't allow the use of 'proc_open'. This can happen on shared hosts. If this is enabled you should increase the frequency of poller calls in your crontab."
+"Accepting %s as a sharer allows them to subscribe to your posts, but you "
+"will not receive updates from them in your news feed."
+msgstr "Accepting %s as a sharer allows them to subscribe to your posts, but you will not receive updates from them in your news feed."
 
-#: mod/admin.php:1235
-msgid "Enable fastlane"
-msgstr "Enable fast-lane"
+#: mod/notifications.php:218
+msgid "Friend"
+msgstr "Friend"
 
-#: mod/admin.php:1235
-msgid ""
-"When enabed, the fastlane mechanism starts an additional worker if processes"
-" with higher priority are blocked by processes of lower priority."
-msgstr "The fast-lane mechanism starts an additional worker if processes with higher priority are blocked by processes of lower priority."
+#: mod/notifications.php:219
+msgid "Sharer"
+msgstr "Sharer"
 
-#: mod/admin.php:1236
-msgid "Enable frontend worker"
-msgstr "Enable frontend worker"
+#: mod/notifications.php:219
+msgid "Subscriber"
+msgstr "Subscriber"
 
-#: mod/admin.php:1236
-msgid ""
-"When enabled the Worker process is triggered when backend access is "
-"performed (e.g. messages being delivered). On smaller sites you might want "
-"to call yourdomain.tld/worker on a regular basis via an external cron job. "
-"You should only enable this option if you cannot utilize cron/scheduled jobs"
-" on your server. The worker background process needs to be activated for "
-"this."
-msgstr "If enabled the Worker process is triggered when backend access is performed (e.g. messages being delivered). On smaller sites you might want to call yourdomain.tld/worker on a regular basis via an external cron job. You should only enable this option if you cannot utilize cron/scheduled jobs on your server. The worker background process needs to be activated for this."
+#: mod/notifications.php:275
+msgid "No introductions."
+msgstr "No introductions."
 
-#: mod/admin.php:1266
-msgid "Update has been marked successful"
-msgstr "Update has been marked successful"
+#: mod/notifications.php:316
+msgid "Show unread"
+msgstr "Show unread"
 
-#: mod/admin.php:1274
-#, php-format
-msgid "Database structure update %s was successfully applied."
-msgstr "Database structure update %s was successfully applied."
+#: mod/notifications.php:316
+msgid "Show all"
+msgstr "Show all"
 
-#: mod/admin.php:1277
+#: mod/notifications.php:322
 #, php-format
-msgid "Executing of database structure update %s failed with error: %s"
-msgstr "Executing of database structure update %s failed with error: %s"
+msgid "No more %s notifications."
+msgstr "No more %s notifications."
 
-#: mod/admin.php:1291
-#, php-format
-msgid "Executing %s failed with error: %s"
-msgstr "Executing %s failed with error: %s"
+#: mod/notify.php:69
+msgid "No more system notifications."
+msgstr "No more system notifications."
 
-#: mod/admin.php:1294
-#, php-format
-msgid "Update %s was successfully applied."
-msgstr "Update %s was successfully applied."
+#: mod/oexchange.php:25
+msgid "Post successful."
+msgstr "Post successful."
 
-#: mod/admin.php:1297
-#, php-format
-msgid "Update %s did not return a status. Unknown if it succeeded."
-msgstr "Update %s did not return a status. Unknown if it succeeded."
+#: mod/openid.php:25
+msgid "OpenID protocol error. No ID returned."
+msgstr "OpenID protocol error. No ID returned."
 
-#: mod/admin.php:1300
-#, php-format
-msgid "There was no additional update function %s that needed to be called."
-msgstr "There was no additional update function %s that needed to be called."
+#: mod/openid.php:61
+msgid ""
+"Account not found and OpenID registration is not permitted on this site."
+msgstr "Account not found and OpenID registration is not permitted on this site."
 
-#: mod/admin.php:1320
-msgid "No failed updates."
-msgstr "No failed updates."
+#: mod/ostatus_subscribe.php:17
+msgid "Subscribing to OStatus contacts"
+msgstr "Subscribing to OStatus contacts"
 
-#: mod/admin.php:1321
-msgid "Check database structure"
-msgstr "Check database structure"
+#: mod/ostatus_subscribe.php:28
+msgid "No contact provided."
+msgstr "No contact provided."
 
-#: mod/admin.php:1326
-msgid "Failed Updates"
-msgstr "Failed updates"
+#: mod/ostatus_subscribe.php:34
+msgid "Couldn't fetch information for contact."
+msgstr "Couldn't fetch information for contact."
 
-#: mod/admin.php:1327
-msgid ""
-"This does not include updates prior to 1139, which did not return a status."
-msgstr "This does not include updates prior to 1139, which did not return a status."
+#: mod/ostatus_subscribe.php:43
+msgid "Couldn't fetch friends for contact."
+msgstr "Couldn't fetch friends for contact."
 
-#: mod/admin.php:1328
-msgid "Mark success (if update was manually applied)"
-msgstr "Mark success (if update was manually applied)"
+#: mod/ostatus_subscribe.php:57 mod/repair_ostatus.php:47
+msgid "Done"
+msgstr "Done"
 
-#: mod/admin.php:1329
-msgid "Attempt to execute this update step automatically"
-msgstr "Attempt to execute this update step automatically"
+#: mod/ostatus_subscribe.php:71
+msgid "success"
+msgstr "success"
 
-#: mod/admin.php:1363
-#, php-format
-msgid ""
-"\n"
-"\t\t\tDear %1$s,\n"
-"\t\t\t\tthe administrator of %2$s has set up an account for you."
-msgstr "\n\t\t\tDear %1$s,\n\t\t\t\tThe administrator of %2$s has set up an account for you."
+#: mod/ostatus_subscribe.php:73
+msgid "failed"
+msgstr "failed"
 
-#: mod/admin.php:1366
-#, php-format
-msgid ""
-"\n"
-"\t\t\tThe login details are as follows:\n"
-"\n"
-"\t\t\tSite Location:\t%1$s\n"
-"\t\t\tLogin Name:\t\t%2$s\n"
-"\t\t\tPassword:\t\t%3$s\n"
-"\n"
-"\t\t\tYou may change your password from your account \"Settings\" page after logging\n"
-"\t\t\tin.\n"
-"\n"
-"\t\t\tPlease take a few moments to review the other account settings on that page.\n"
-"\n"
-"\t\t\tYou may also wish to add some basic information to your default profile\n"
-"\t\t\t(on the \"Profiles\" page) so that other people can easily find you.\n"
-"\n"
-"\t\t\tWe recommend setting your full name, adding a profile photo,\n"
-"\t\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n"
-"\t\t\tperhaps what country you live in; if you do not wish to be more specific\n"
-"\t\t\tthan that.\n"
-"\n"
-"\t\t\tWe fully respect your right to privacy, and none of these items are necessary.\n"
-"\t\t\tIf you are new and do not know anybody here, they may help\n"
-"\t\t\tyou to make some new and interesting friends.\n"
-"\n"
-"\t\t\tThank you and welcome to %4$s."
-msgstr "\n\t\t\tThe login details are as follows:\n\n\t\t\tSite Location:\t%1$s\n\t\t\tLogin Name:\t\t%2$s\n\t\t\tPassword:\t\t%3$s\n\n\t\t\tYou may change your password from your account \"Settings\" page after logging\n\t\t\tin.\n\n\t\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\t\tYou may also wish to add some basic information to your default profile\n\t\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\t\tWe recommend setting your full name, adding a profile photo,\n\t\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\t\tperhaps what country you live in; if you do not wish to be more specific\n\t\t\tthan that.\n\n\t\t\tWe fully respect your right to privacy and none of these items are necessary.\n\t\t\tIf you are new and do not know anybody here, this may help\n\t\t\tyou to make some new and interesting friends.\n\n\t\t\tThank you and welcome to %4$s."
+#: mod/ostatus_subscribe.php:81 mod/repair_ostatus.php:53
+msgid "Keep this window open until done."
+msgstr "Keep this window open until done."
 
-#: mod/admin.php:1410
-#, php-format
-msgid "%s user blocked/unblocked"
-msgid_plural "%s users blocked/unblocked"
-msgstr[0] "%s user blocked/unblocked"
-msgstr[1] "%s users blocked/unblocked"
+#: mod/p.php:13
+msgid "Not Extended"
+msgstr "Not extended"
 
-#: mod/admin.php:1417
-#, php-format
-msgid "%s user deleted"
-msgid_plural "%s users deleted"
-msgstr[0] "%s user deleted"
-msgstr[1] "%s users deleted"
+#: mod/photos.php:97 mod/photos.php:1903
+msgid "Recent Photos"
+msgstr "Recent photos"
 
-#: mod/admin.php:1464
-#, php-format
-msgid "User '%s' deleted"
-msgstr "User '%s' deleted"
+#: mod/photos.php:100 mod/photos.php:1331 mod/photos.php:1905
+msgid "Upload New Photos"
+msgstr "Upload new photos"
 
-#: mod/admin.php:1472
-#, php-format
-msgid "User '%s' unblocked"
-msgstr "User '%s' unblocked"
+#: mod/photos.php:115 mod/settings.php:39
+msgid "everybody"
+msgstr "everybody"
 
-#: mod/admin.php:1472
-#, php-format
-msgid "User '%s' blocked"
-msgstr "User '%s' blocked"
+#: mod/photos.php:179
+msgid "Contact information unavailable"
+msgstr "Contact information unavailable"
 
-#: mod/admin.php:1580 mod/admin.php:1606
-msgid "Register date"
-msgstr "Registration date"
+#: mod/photos.php:200
+msgid "Album not found."
+msgstr "Album not found."
 
-#: mod/admin.php:1580 mod/admin.php:1606
-msgid "Last login"
-msgstr "Last login"
+#: mod/photos.php:233 mod/photos.php:245 mod/photos.php:1275
+msgid "Delete Album"
+msgstr "Delete album"
 
-#: mod/admin.php:1580 mod/admin.php:1606
-msgid "Last item"
-msgstr "Last item"
+#: mod/photos.php:243
+msgid "Do you really want to delete this photo album and all its photos?"
+msgstr "Do you really want to delete this photo album and all its photos?"
 
-#: mod/admin.php:1580 mod/settings.php:45
-msgid "Account"
-msgstr "Account"
+#: mod/photos.php:326 mod/photos.php:337 mod/photos.php:1601
+msgid "Delete Photo"
+msgstr "Delete photo"
 
-#: mod/admin.php:1589
-msgid "Add User"
-msgstr "Add user"
+#: mod/photos.php:335
+msgid "Do you really want to delete this photo?"
+msgstr "Do you really want to delete this photo?"
 
-#: mod/admin.php:1590
-msgid "select all"
-msgstr "select all"
+#: mod/photos.php:716
+#, php-format
+msgid "%1$s was tagged in %2$s by %3$s"
+msgstr "%1$s was tagged in %2$s by %3$s"
 
-#: mod/admin.php:1591
-msgid "User registrations waiting for confirm"
-msgstr "User registrations awaiting confirmation"
+#: mod/photos.php:716
+msgid "a photo"
+msgstr "a photo"
 
-#: mod/admin.php:1592
-msgid "User waiting for permanent deletion"
-msgstr "User awaiting permanent deletion"
+#: mod/photos.php:816 mod/profile_photo.php:156 mod/wall_upload.php:182
+#, php-format
+msgid "Image exceeds size limit of %s"
+msgstr "Image exceeds size limit of %s"
 
-#: mod/admin.php:1593
-msgid "Request date"
-msgstr "Request date"
+#: mod/photos.php:824
+msgid "Image file is empty."
+msgstr "Image file is empty."
 
-#: mod/admin.php:1594
-msgid "No registrations."
-msgstr "No registrations."
+#: mod/photos.php:857 mod/profile_photo.php:165 mod/wall_upload.php:219
+msgid "Unable to process image."
+msgstr "Unable to process image."
 
-#: mod/admin.php:1595
-msgid "Note from the user"
-msgstr "Note from the user"
+#: mod/photos.php:886 mod/profile_photo.php:315 mod/wall_upload.php:258
+msgid "Image upload failed."
+msgstr "Image upload failed."
 
-#: mod/admin.php:1597
-msgid "Deny"
-msgstr "Deny"
+#: mod/photos.php:991
+msgid "No photos selected"
+msgstr "No photos selected"
 
-#: mod/admin.php:1599 mod/contacts.php:618 mod/contacts.php:818
-#: mod/contacts.php:996
-msgid "Block"
-msgstr "Block"
+#: mod/photos.php:1094 mod/videos.php:312
+msgid "Access to this item is restricted."
+msgstr "Access to this item is restricted."
 
-#: mod/admin.php:1600 mod/contacts.php:618 mod/contacts.php:818
-#: mod/contacts.php:996
-msgid "Unblock"
-msgstr "Unblock"
+#: mod/photos.php:1154
+#, php-format
+msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."
+msgstr "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."
 
-#: mod/admin.php:1601
-msgid "Site admin"
-msgstr "Site admin"
+#: mod/photos.php:1191
+msgid "Upload Photos"
+msgstr "Upload photos"
 
-#: mod/admin.php:1602
-msgid "Account expired"
-msgstr "Account expired"
+#: mod/photos.php:1195 mod/photos.php:1270
+msgid "New album name: "
+msgstr "New album name: "
 
-#: mod/admin.php:1605
-msgid "New User"
-msgstr "New user"
+#: mod/photos.php:1196
+msgid "or existing album name: "
+msgstr "or existing album name: "
 
-#: mod/admin.php:1606
-msgid "Deleted since"
-msgstr "Deleted since"
+#: mod/photos.php:1197
+msgid "Do not show a status post for this upload"
+msgstr "Do not show a status post for this upload"
 
-#: mod/admin.php:1611
-msgid ""
-"Selected users will be deleted!\\n\\nEverything these users had posted on "
-"this site will be permanently deleted!\\n\\nAre you sure?"
-msgstr "Selected users will be deleted!\\n\\nEverything these users has posted on this site will be permanently deleted!\\n\\nAre you sure?"
+#: mod/photos.php:1208 mod/photos.php:1605 mod/settings.php:1309
+msgid "Show to Groups"
+msgstr "Show to groups"
 
-#: mod/admin.php:1612
-msgid ""
-"The user {0} will be deleted!\\n\\nEverything this user has posted on this "
-"site will be permanently deleted!\\n\\nAre you sure?"
-msgstr "The user {0} will be deleted!\\n\\nEverything this user has posted on this site will be permanently deleted!\\n\\nAre you sure?"
+#: mod/photos.php:1209 mod/photos.php:1606 mod/settings.php:1310
+msgid "Show to Contacts"
+msgstr "Show to contacts"
 
-#: mod/admin.php:1622
-msgid "Name of the new user."
-msgstr "Name of the new user."
+#: mod/photos.php:1210
+msgid "Private Photo"
+msgstr "Private photo"
 
-#: mod/admin.php:1623
-msgid "Nickname"
-msgstr "Nickname"
+#: mod/photos.php:1211
+msgid "Public Photo"
+msgstr "Public photo"
 
-#: mod/admin.php:1623
-msgid "Nickname of the new user."
-msgstr "Nickname of the new user."
+#: mod/photos.php:1281
+msgid "Edit Album"
+msgstr "Edit album"
 
-#: mod/admin.php:1624
-msgid "Email address of the new user."
-msgstr "Email address of the new user."
+#: mod/photos.php:1286
+msgid "Show Newest First"
+msgstr "Show newest first"
 
-#: mod/admin.php:1667
-#, php-format
-msgid "Plugin %s disabled."
-msgstr "Plugin %s disabled."
+#: mod/photos.php:1288
+msgid "Show Oldest First"
+msgstr "Show oldest first"
 
-#: mod/admin.php:1671
-#, php-format
-msgid "Plugin %s enabled."
-msgstr "Plugin %s enabled."
+#: mod/photos.php:1317 mod/photos.php:1888
+msgid "View Photo"
+msgstr "View photo"
 
-#: mod/admin.php:1682 mod/admin.php:1934
-msgid "Disable"
-msgstr "Disable"
+#: mod/photos.php:1362
+msgid "Permission denied. Access to this item may be restricted."
+msgstr "Permission denied. Access to this item may be restricted."
 
-#: mod/admin.php:1684 mod/admin.php:1936
-msgid "Enable"
-msgstr "Enable"
+#: mod/photos.php:1364
+msgid "Photo not available"
+msgstr "Photo not available"
 
-#: mod/admin.php:1707 mod/admin.php:1983
-msgid "Toggle"
-msgstr "Toggle"
+#: mod/photos.php:1425
+msgid "View photo"
+msgstr "View photo"
 
-#: mod/admin.php:1715 mod/admin.php:1992
-msgid "Author: "
-msgstr "Author: "
+#: mod/photos.php:1425
+msgid "Edit photo"
+msgstr "Edit photo"
 
-#: mod/admin.php:1716 mod/admin.php:1993
-msgid "Maintainer: "
-msgstr "Maintainer: "
+#: mod/photos.php:1426
+msgid "Use as profile photo"
+msgstr "Use as profile photo"
 
-#: mod/admin.php:1771
-msgid "Reload active plugins"
-msgstr "Reload active plugins"
+#: mod/photos.php:1451
+msgid "View Full Size"
+msgstr "View full size"
 
-#: mod/admin.php:1776
-#, php-format
-msgid ""
-"There are currently no plugins available on your node. You can find the "
-"official plugin repository at %1$s and might find other interesting plugins "
-"in the open plugin registry at %2$s"
-msgstr "There are currently no plugins available on your node. You can find the official plugin repository at %1$s and might find other interesting plugins in the open plugin registry at %2$s"
+#: mod/photos.php:1541
+msgid "Tags: "
+msgstr "Tags: "
 
-#: mod/admin.php:1895
-msgid "No themes found."
-msgstr "No themes found."
+#: mod/photos.php:1544
+msgid "[Remove any tag]"
+msgstr "[Remove any tag]"
 
-#: mod/admin.php:1974
-msgid "Screenshot"
-msgstr "Screenshot"
+#: mod/photos.php:1587
+msgid "New album name"
+msgstr "New album name"
 
-#: mod/admin.php:2034
-msgid "Reload active themes"
-msgstr "Reload active themes"
+#: mod/photos.php:1588
+msgid "Caption"
+msgstr "Caption"
 
-#: mod/admin.php:2039
-#, php-format
-msgid "No themes found on the system. They should be paced in %1$s"
-msgstr "No themes found on the system. They should be paced in %1$s"
+#: mod/photos.php:1589
+msgid "Add a Tag"
+msgstr "Add Tag"
 
-#: mod/admin.php:2040
-msgid "[Experimental]"
-msgstr "[Experimental]"
+#: mod/photos.php:1589
+msgid ""
+"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
+msgstr "Example: @bob, @jojo@example.com, #California, #camping"
 
-#: mod/admin.php:2041
-msgid "[Unsupported]"
-msgstr "[Unsupported]"
+#: mod/photos.php:1590
+msgid "Do not rotate"
+msgstr "Do not rotate"
 
-#: mod/admin.php:2065
-msgid "Log settings updated."
-msgstr "Log settings updated."
+#: mod/photos.php:1591
+msgid "Rotate CW (right)"
+msgstr "Rotate right (CW)"
 
-#: mod/admin.php:2097
-msgid "PHP log currently enabled."
-msgstr "PHP log currently enabled."
+#: mod/photos.php:1592
+msgid "Rotate CCW (left)"
+msgstr "Rotate left (CCW)"
 
-#: mod/admin.php:2099
-msgid "PHP log currently disabled."
-msgstr "PHP log currently disabled."
+#: mod/photos.php:1607
+msgid "Private photo"
+msgstr "Private photo"
 
-#: mod/admin.php:2108
-msgid "Clear"
-msgstr "Clear"
+#: mod/photos.php:1608
+msgid "Public photo"
+msgstr "Public photo"
 
-#: mod/admin.php:2113
-msgid "Enable Debugging"
-msgstr "Enable debugging"
+#: mod/photos.php:1817
+msgid "Map"
+msgstr "Map"
 
-#: mod/admin.php:2114
-msgid "Log file"
-msgstr "Log file"
+#: mod/photos.php:1894 mod/videos.php:396
+msgid "View Album"
+msgstr "View album"
 
-#: mod/admin.php:2114
-msgid ""
-"Must be writable by web server. Relative to your Friendica top-level "
-"directory."
-msgstr "Must be writable by web server and relative to your Friendica top-level directory."
+#: mod/ping.php:275
+msgid "{0} wants to be your friend"
+msgstr "{0} wants to be your friend"
 
-#: mod/admin.php:2115
-msgid "Log level"
-msgstr "Log level"
+#: mod/ping.php:290
+msgid "{0} sent you a message"
+msgstr "{0} sent you a message"
 
-#: mod/admin.php:2118
-msgid "PHP logging"
-msgstr "PHP logging"
+#: mod/ping.php:305
+msgid "{0} requested registration"
+msgstr "{0} requested registration"
 
-#: mod/admin.php:2119
-msgid ""
-"To enable logging of PHP errors and warnings you can add the following to "
-"the .htconfig.php file of your installation. The filename set in the "
-"'error_log' line is relative to the friendica top-level directory and must "
-"be writeable by the web server. The option '1' for 'log_errors' and "
-"'display_errors' is to enable these options, set to '0' to disable them."
-msgstr "To enable logging of PHP errors and warnings you can add the following to the .htconfig.php file of your installation. The file name set in the 'error_log' line is relative to the Friendica top-level directory and must be writeable by the web server. The option '1' for 'log_errors' and 'display_errors' is to enable these options, set to '0' to disable them."
+#: mod/poke.php:198
+msgid "Poke/Prod"
+msgstr "Poke/Prod"
 
-#: mod/admin.php:2249 mod/admin.php:2250 mod/settings.php:783
-msgid "Off"
-msgstr "Off"
+#: mod/poke.php:199
+msgid "poke, prod or do other things to somebody"
+msgstr "Poke, prod or do other things to somebody"
 
-#: mod/admin.php:2249 mod/admin.php:2250 mod/settings.php:783
-msgid "On"
-msgstr "On"
+#: mod/poke.php:200
+msgid "Recipient"
+msgstr "Recipient:"
 
-#: mod/admin.php:2250
-#, php-format
-msgid "Lock feature %s"
-msgstr "Lock feature %s"
+#: mod/poke.php:201
+msgid "Choose what you wish to do to recipient"
+msgstr "Choose what you wish to do:"
 
-#: mod/admin.php:2258
-msgid "Manage Additional Features"
-msgstr "Manage additional features"
+#: mod/poke.php:204
+msgid "Make this post private"
+msgstr "Make this post private"
 
-#: mod/community.php:23
-msgid "Not available."
-msgstr "Not available."
+#: mod/profile.php:177
+msgid "Tips for New Members"
+msgstr "Tips for New Members"
 
-#: mod/contacts.php:137
-#, php-format
-msgid "%d contact edited."
-msgid_plural "%d contacts edited."
-msgstr[0] "%d contact edited."
-msgstr[1] "%d contacts edited."
+#: mod/profile_photo.php:45
+msgid "Image uploaded but image cropping failed."
+msgstr "Image uploaded but image cropping failed."
 
-#: mod/contacts.php:172 mod/contacts.php:381
-msgid "Could not access contact record."
-msgstr "Could not access contact record."
+#: mod/profile_photo.php:78 mod/profile_photo.php:86 mod/profile_photo.php:94
+#: mod/profile_photo.php:323
+#, php-format
+msgid "Image size reduction [%s] failed."
+msgstr "Image size reduction [%s] failed."
 
-#: mod/contacts.php:186
-msgid "Could not locate selected profile."
-msgstr "Could not locate selected profile."
+#: mod/profile_photo.php:128
+msgid ""
+"Shift-reload the page or clear browser cache if the new photo does not "
+"display immediately."
+msgstr "Shift-reload the page or clear browser cache if the new photo does not display immediately."
 
-#: mod/contacts.php:219
-msgid "Contact updated."
-msgstr "Contact updated."
+#: mod/profile_photo.php:137
+msgid "Unable to process image"
+msgstr "Unable to process image"
 
-#: mod/contacts.php:402
-msgid "Contact has been blocked"
-msgstr "Contact has been blocked"
+#: mod/profile_photo.php:254
+msgid "Upload File:"
+msgstr "Upload File:"
 
-#: mod/contacts.php:402
-msgid "Contact has been unblocked"
-msgstr "Contact has been unblocked"
+#: mod/profile_photo.php:255
+msgid "Select a profile:"
+msgstr "Select a profile:"
 
-#: mod/contacts.php:413
-msgid "Contact has been ignored"
-msgstr "Contact has been ignored"
+#: mod/profile_photo.php:257
+msgid "Upload"
+msgstr "Upload"
 
-#: mod/contacts.php:413
-msgid "Contact has been unignored"
-msgstr "Contact has been unignored"
+#: mod/profile_photo.php:260
+msgid "or"
+msgstr "or"
 
-#: mod/contacts.php:425
-msgid "Contact has been archived"
-msgstr "Contact has been archived"
+#: mod/profile_photo.php:260
+msgid "skip this step"
+msgstr "skip this step"
 
-#: mod/contacts.php:425
-msgid "Contact has been unarchived"
-msgstr "Contact has been unarchived"
+#: mod/profile_photo.php:260
+msgid "select a photo from your photo albums"
+msgstr "select a photo from your photo albums"
 
-#: mod/contacts.php:450
-msgid "Drop contact"
-msgstr "Drop contact"
+#: mod/profile_photo.php:274
+msgid "Crop Image"
+msgstr "Crop Image"
 
-#: mod/contacts.php:453 mod/contacts.php:814
-msgid "Do you really want to delete this contact?"
-msgstr "Do you really want to delete this contact?"
+#: mod/profile_photo.php:275
+msgid "Please adjust the image cropping for optimum viewing."
+msgstr "Please adjust the image cropping for optimum viewing."
 
-#: mod/contacts.php:472
-msgid "Contact has been removed."
-msgstr "Contact has been removed."
+#: mod/profile_photo.php:277
+msgid "Done Editing"
+msgstr "Done editing"
 
-#: mod/contacts.php:509
-#, php-format
-msgid "You are mutual friends with %s"
-msgstr "You are mutual friends with %s"
+#: mod/profile_photo.php:313
+msgid "Image uploaded successfully."
+msgstr "Image uploaded successfully."
 
-#: mod/contacts.php:513
-#, php-format
-msgid "You are sharing with %s"
-msgstr "You are sharing with %s"
+#: mod/profiles.php:43
+msgid "Profile deleted."
+msgstr "Profile deleted."
 
-#: mod/contacts.php:518
-#, php-format
-msgid "%s is sharing with you"
-msgstr "%s is sharing with you"
+#: mod/profiles.php:59 mod/profiles.php:95
+msgid "Profile-"
+msgstr "Profile-"
 
-#: mod/contacts.php:538
-msgid "Private communications are not available for this contact."
-msgstr "Private communications are not available for this contact."
+#: mod/profiles.php:78 mod/profiles.php:123
+msgid "New profile created."
+msgstr "New profile created."
 
-#: mod/contacts.php:545
-msgid "(Update was successful)"
-msgstr "(Update was successful)"
+#: mod/profiles.php:101
+msgid "Profile unavailable to clone."
+msgstr "Profile unavailable to clone."
 
-#: mod/contacts.php:545
-msgid "(Update was not successful)"
-msgstr "(Update was not successful)"
+#: mod/profiles.php:197
+msgid "Profile Name is required."
+msgstr "Profile name is required."
 
-#: mod/contacts.php:547 mod/contacts.php:977
-msgid "Suggest friends"
-msgstr "Suggest friends"
+#: mod/profiles.php:337
+msgid "Marital Status"
+msgstr "Marital status"
 
-#: mod/contacts.php:551
-#, php-format
-msgid "Network type: %s"
-msgstr "Network type: %s"
+#: mod/profiles.php:341
+msgid "Romantic Partner"
+msgstr "Romantic partner"
 
-#: mod/contacts.php:564
-msgid "Communications lost with this contact!"
-msgstr "Communications lost with this contact!"
+#: mod/profiles.php:353
+msgid "Work/Employment"
+msgstr "Work/Employment:"
 
-#: mod/contacts.php:567
-msgid "Fetch further information for feeds"
-msgstr "Fetch further information for feeds"
+#: mod/profiles.php:356
+msgid "Religion"
+msgstr "Religion"
 
-#: mod/contacts.php:568
-msgid "Fetch information"
-msgstr "Fetch information"
+#: mod/profiles.php:360
+msgid "Political Views"
+msgstr "Political views"
 
-#: mod/contacts.php:568
-msgid "Fetch information and keywords"
-msgstr "Fetch information and keywords"
+#: mod/profiles.php:364
+msgid "Gender"
+msgstr "Gender"
 
-#: mod/contacts.php:586
-msgid "Contact"
-msgstr "Contact"
+#: mod/profiles.php:368
+msgid "Sexual Preference"
+msgstr "Sexual preference"
 
-#: mod/contacts.php:589
-msgid "Profile Visibility"
-msgstr "Profile visibility"
+#: mod/profiles.php:372
+msgid "XMPP"
+msgstr "XMPP"
 
-#: mod/contacts.php:590
-#, php-format
-msgid ""
-"Please choose the profile you would like to display to %s when viewing your "
-"profile securely."
-msgstr "Please choose the profile you would like to display to %s when viewing your profile securely."
+#: mod/profiles.php:376
+msgid "Homepage"
+msgstr "Homepage"
 
-#: mod/contacts.php:591
-msgid "Contact Information / Notes"
-msgstr "Personal note"
+#: mod/profiles.php:380 mod/profiles.php:699
+msgid "Interests"
+msgstr "Interests"
 
-#: mod/contacts.php:592
-msgid "Their personal note"
-msgstr "Their personal note"
+#: mod/profiles.php:384
+msgid "Address"
+msgstr "Address"
 
-#: mod/contacts.php:594
-msgid "Edit contact notes"
-msgstr "Edit contact notes"
+#: mod/profiles.php:391 mod/profiles.php:695
+msgid "Location"
+msgstr "Location"
 
-#: mod/contacts.php:600
-msgid "Block/Unblock contact"
-msgstr "Block/Unblock contact"
+#: mod/profiles.php:476
+msgid "Profile updated."
+msgstr "Profile updated."
 
-#: mod/contacts.php:601
-msgid "Ignore contact"
-msgstr "Ignore contact"
+#: mod/profiles.php:568
+msgid " and "
+msgstr " and "
 
-#: mod/contacts.php:602
-msgid "Repair URL settings"
-msgstr "Repair URL settings"
+#: mod/profiles.php:577
+msgid "public profile"
+msgstr "public profile"
 
-#: mod/contacts.php:603
-msgid "View conversations"
-msgstr "View conversations"
+#: mod/profiles.php:580
+#, php-format
+msgid "%1$s changed %2$s to &ldquo;%3$s&rdquo;"
+msgstr "%1$s changed %2$s to &ldquo;%3$s&rdquo;"
 
-#: mod/contacts.php:609
-msgid "Last update:"
-msgstr "Last update:"
+#: mod/profiles.php:581
+#, php-format
+msgid " - Visit %1$s's %2$s"
+msgstr " - Visit %1$s's %2$s"
 
-#: mod/contacts.php:611
-msgid "Update public posts"
-msgstr "Update public posts"
+#: mod/profiles.php:583
+#, php-format
+msgid "%1$s has an updated %2$s, changing %3$s."
+msgstr "%1$s has an updated %2$s, changing %3$s."
 
-#: mod/contacts.php:613 mod/contacts.php:987
-msgid "Update now"
-msgstr "Update now"
+#: mod/profiles.php:641
+msgid "Hide contacts and friends:"
+msgstr "Hide contacts and friends:"
 
-#: mod/contacts.php:619 mod/contacts.php:819 mod/contacts.php:1004
-msgid "Unignore"
-msgstr "Unignore"
+#: mod/profiles.php:646
+msgid "Hide your contact/friend list from viewers of this profile?"
+msgstr "Hide your contact/friend list from viewers of this profile?"
 
-#: mod/contacts.php:623
-msgid "Currently blocked"
-msgstr "Currently blocked"
+#: mod/profiles.php:671
+msgid "Show more profile fields:"
+msgstr "Show more profile fields:"
 
-#: mod/contacts.php:624
-msgid "Currently ignored"
-msgstr "Currently ignored"
+#: mod/profiles.php:683
+msgid "Profile Actions"
+msgstr "Profile actions"
 
-#: mod/contacts.php:625
-msgid "Currently archived"
-msgstr "Currently archived"
+#: mod/profiles.php:684
+msgid "Edit Profile Details"
+msgstr "Edit Profile Details"
 
-#: mod/contacts.php:626
-msgid ""
-"Replies/likes to your public posts <strong>may</strong> still be visible"
-msgstr "Replies/Likes to your public posts <strong>may</strong> still be visible"
+#: mod/profiles.php:686
+msgid "Change Profile Photo"
+msgstr "Change profile photo"
 
-#: mod/contacts.php:627
-msgid "Notification for new posts"
-msgstr "Notification for new posts"
+#: mod/profiles.php:687
+msgid "View this profile"
+msgstr "View this profile"
 
-#: mod/contacts.php:627
-msgid "Send a notification of every new post of this contact"
-msgstr "Send notification for every new post from this contact"
+#: mod/profiles.php:689
+msgid "Create a new profile using these settings"
+msgstr "Create a new profile using these settings"
 
-#: mod/contacts.php:630
-msgid "Blacklisted keywords"
-msgstr "Blacklisted keywords"
+#: mod/profiles.php:690
+msgid "Clone this profile"
+msgstr "Clone this profile"
 
-#: mod/contacts.php:630
-msgid ""
-"Comma separated list of keywords that should not be converted to hashtags, "
-"when \"Fetch information and keywords\" is selected"
-msgstr "Comma separated list of keywords that should not be converted to hashtags, when \"Fetch information and keywords\" is selected"
+#: mod/profiles.php:691
+msgid "Delete this profile"
+msgstr "Delete this profile"
 
-#: mod/contacts.php:648
-msgid "Actions"
-msgstr "Actions"
+#: mod/profiles.php:693
+msgid "Basic information"
+msgstr "Basic information"
 
-#: mod/contacts.php:651
-msgid "Contact Settings"
-msgstr "Notification and privacy "
+#: mod/profiles.php:694
+msgid "Profile picture"
+msgstr "Profile picture"
 
-#: mod/contacts.php:697
-msgid "Suggestions"
-msgstr "Suggestions"
+#: mod/profiles.php:696
+msgid "Preferences"
+msgstr "Preferences"
 
-#: mod/contacts.php:700
-msgid "Suggest potential friends"
-msgstr "Suggest potential friends"
+#: mod/profiles.php:697
+msgid "Status information"
+msgstr "Status information"
 
-#: mod/contacts.php:708
-msgid "Show all contacts"
-msgstr "Show all contacts"
+#: mod/profiles.php:698
+msgid "Additional information"
+msgstr "Additional information"
 
-#: mod/contacts.php:713
-msgid "Unblocked"
-msgstr "Unblocked"
+#: mod/profiles.php:701
+msgid "Relation"
+msgstr "Relation"
 
-#: mod/contacts.php:716
-msgid "Only show unblocked contacts"
-msgstr "Only show unblocked contacts"
+#: mod/profiles.php:705
+msgid "Your Gender:"
+msgstr "Gender:"
 
-#: mod/contacts.php:722
-msgid "Blocked"
-msgstr "Blocked"
+#: mod/profiles.php:706
+msgid "<span class=\"heart\">&hearts;</span> Marital Status:"
+msgstr "<span class=\"heart\">&hearts;</span> Marital status:"
 
-#: mod/contacts.php:725
-msgid "Only show blocked contacts"
-msgstr "Only show blocked contacts"
+#: mod/profiles.php:708
+msgid "Example: fishing photography software"
+msgstr "Example: fishing photography software"
 
-#: mod/contacts.php:731
-msgid "Ignored"
-msgstr "Ignored"
+#: mod/profiles.php:713
+msgid "Profile Name:"
+msgstr "Profile name:"
 
-#: mod/contacts.php:734
-msgid "Only show ignored contacts"
-msgstr "Only show ignored contacts"
+#: mod/profiles.php:715
+msgid ""
+"This is your <strong>public</strong> profile.<br />It <strong>may</strong> "
+"be visible to anybody using the internet."
+msgstr "This is your <strong>public</strong> profile.<br />It <strong>may</strong> be visible to anybody using the internet."
 
-#: mod/contacts.php:740
-msgid "Archived"
-msgstr "Archived"
+#: mod/profiles.php:716
+msgid "Your Full Name:"
+msgstr "My full name:"
 
-#: mod/contacts.php:743
-msgid "Only show archived contacts"
-msgstr "Only show archived contacts"
+#: mod/profiles.php:717
+msgid "Title/Description:"
+msgstr "Title/Description:"
 
-#: mod/contacts.php:749
-msgid "Hidden"
-msgstr "Hidden"
+#: mod/profiles.php:720
+msgid "Street Address:"
+msgstr "Street address:"
 
-#: mod/contacts.php:752
-msgid "Only show hidden contacts"
-msgstr "Only show hidden contacts"
+#: mod/profiles.php:721
+msgid "Locality/City:"
+msgstr "Locality/City:"
 
-#: mod/contacts.php:809
-msgid "Search your contacts"
-msgstr "Search your contacts"
+#: mod/profiles.php:722
+msgid "Region/State:"
+msgstr "Region/State:"
 
-#: mod/contacts.php:817 mod/settings.php:162 mod/settings.php:708
-msgid "Update"
-msgstr "Update"
+#: mod/profiles.php:723
+msgid "Postal/Zip Code:"
+msgstr "Postcode:"
 
-#: mod/contacts.php:820 mod/contacts.php:1012
-msgid "Archive"
-msgstr "Archive"
+#: mod/profiles.php:724
+msgid "Country:"
+msgstr "Country:"
 
-#: mod/contacts.php:820 mod/contacts.php:1012
-msgid "Unarchive"
-msgstr "Unarchive"
+#: mod/profiles.php:728
+msgid "Who: (if applicable)"
+msgstr "Who: (if applicable)"
 
-#: mod/contacts.php:823
-msgid "Batch Actions"
-msgstr "Batch actions"
+#: mod/profiles.php:728
+msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
+msgstr "Examples: cathy123, Cathy Williams, cathy@example.com"
 
-#: mod/contacts.php:869
-msgid "View all contacts"
-msgstr "View all contacts"
+#: mod/profiles.php:729
+msgid "Since [date]:"
+msgstr "Since when:"
 
-#: mod/contacts.php:879
-msgid "View all common friends"
-msgstr "View all common friends"
+#: mod/profiles.php:731
+msgid "Tell us about yourself..."
+msgstr "About myself:"
 
-#: mod/contacts.php:886
-msgid "Advanced Contact Settings"
-msgstr "Advanced contact settings"
+#: mod/profiles.php:732
+msgid "XMPP (Jabber) address:"
+msgstr "XMPP (Jabber) address:"
 
-#: mod/contacts.php:920
-msgid "Mutual Friendship"
-msgstr "Mutual friendship"
+#: mod/profiles.php:732
+msgid ""
+"The XMPP address will be propagated to your contacts so that they can follow"
+" you."
+msgstr "The XMPP address will be propagated to your contacts so that they can follow you."
 
-#: mod/contacts.php:924
-msgid "is a fan of yours"
-msgstr "is a fan of yours"
+#: mod/profiles.php:733
+msgid "Homepage URL:"
+msgstr "Homepage URL:"
 
-#: mod/contacts.php:928
-msgid "you are a fan of"
-msgstr "I follow them"
+#: mod/profiles.php:736
+msgid "Religious Views:"
+msgstr "Religious views:"
 
-#: mod/contacts.php:998
-msgid "Toggle Blocked status"
-msgstr "Toggle blocked status"
+#: mod/profiles.php:737
+msgid "Public Keywords:"
+msgstr "Public keywords:"
 
-#: mod/contacts.php:1006
-msgid "Toggle Ignored status"
-msgstr "Toggle ignored status"
+#: mod/profiles.php:737
+msgid "(Used for suggesting potential friends, can be seen by others)"
+msgstr "Used for suggesting potential friends, can be seen by others."
 
-#: mod/contacts.php:1014
-msgid "Toggle Archive status"
-msgstr "Toggle archive status"
+#: mod/profiles.php:738
+msgid "Private Keywords:"
+msgstr "Private keywords:"
 
-#: mod/contacts.php:1022
-msgid "Delete contact"
-msgstr "Delete contact"
+#: mod/profiles.php:738
+msgid "(Used for searching profiles, never shown to others)"
+msgstr "Used for searching profiles, never shown to others."
 
-#: mod/display.php:500
-msgid "Item has been removed."
-msgstr "Item has been removed."
+#: mod/profiles.php:741
+msgid "Musical interests"
+msgstr "Music:"
 
-#: mod/help.php:44
-msgid "Help:"
-msgstr "Help:"
+#: mod/profiles.php:742
+msgid "Books, literature"
+msgstr "Books, literature, poetry:"
 
-#: mod/help.php:59 index.php:304
-msgid "Page not found."
-msgstr "Page not found"
+#: mod/profiles.php:743
+msgid "Television"
+msgstr "Television:"
 
-#: mod/invite.php:30
-msgid "Total invitation limit exceeded."
-msgstr "Total invitation limit exceeded"
+#: mod/profiles.php:744
+msgid "Film/dance/culture/entertainment"
+msgstr "Film, dance, culture, entertainment"
 
-#: mod/invite.php:53
-#, php-format
-msgid "%s : Not a valid email address."
-msgstr "%s : Not a valid email address"
+#: mod/profiles.php:745
+msgid "Hobbies/Interests"
+msgstr "Hobbies/Interests:"
 
-#: mod/invite.php:78
-msgid "Please join us on Friendica"
-msgstr "Please join us on Friendica."
+#: mod/profiles.php:746
+msgid "Love/romance"
+msgstr "Love/Romance:"
 
-#: mod/invite.php:89
-msgid "Invitation limit exceeded. Please contact your site administrator."
-msgstr "Invitation limit is exceeded. Please contact your site administrator."
+#: mod/profiles.php:747
+msgid "Work/employment"
+msgstr "Work/Employment:"
 
-#: mod/invite.php:93
-#, php-format
-msgid "%s : Message delivery failed."
-msgstr "%s : Message delivery failed"
+#: mod/profiles.php:748
+msgid "School/education"
+msgstr "School/Education:"
 
-#: mod/invite.php:97
-#, php-format
-msgid "%d message sent."
-msgid_plural "%d messages sent."
-msgstr[0] "%d message sent."
-msgstr[1] "%d messages sent."
+#: mod/profiles.php:749
+msgid "Contact information and Social Networks"
+msgstr "Contact information and other social networks:"
 
-#: mod/invite.php:116
-msgid "You have no more invitations available"
-msgstr "You have no more invitations available."
+#: mod/profiles.php:790
+msgid "Edit/Manage Profiles"
+msgstr "Edit/Manage Profiles"
 
-#: mod/invite.php:124
-#, php-format
+#: mod/register.php:97
 msgid ""
-"Visit %s for a list of public sites that you can join. Friendica members on "
-"other sites can all connect with each other, as well as with members of many"
-" other social networks."
-msgstr "Visit %s for a list of public sites that you can join. Friendica members on other sites can all connect with each other, as well as with members of many other social networks."
+"Registration successful. Please check your email for further instructions."
+msgstr "Registration successful. Please check your email for further instructions."
 
-#: mod/invite.php:126
+#: mod/register.php:102
 #, php-format
 msgid ""
-"To accept this invitation, please visit and register at %s or any other "
-"public Friendica website."
-msgstr "To accept this invitation, please sign up at %s or any other public Friendica website."
+"Failed to send email message. Here your accout details:<br> login: %s<br> "
+"password: %s<br><br>You can change your password after login."
+msgstr "Failed to send email message. Here your account details:<br> login: %s<br> password: %s<br><br>You can change your password after login."
 
-#: mod/invite.php:127
-#, php-format
-msgid ""
-"Friendica sites all inter-connect to create a huge privacy-enhanced social "
-"web that is owned and controlled by its members. They can also connect with "
-"many traditional social networks. See %s for a list of alternate Friendica "
-"sites you can join."
-msgstr "Friendica sites are all inter-connect to create a large privacy-enhanced social web that is owned and controlled by its members. They can also connect with many traditional social networks. See %s for a list of alternate Friendica sites you can join."
+#: mod/register.php:109
+msgid "Registration successful."
+msgstr "Registration successful."
 
-#: mod/invite.php:131
-msgid ""
-"Our apologies. This system is not currently configured to connect with other"
-" public sites or invite members."
-msgstr "Our apologies. This system is not currently configured to connect with other public sites or invite members."
+#: mod/register.php:115
+msgid "Your registration can not be processed."
+msgstr "Your registration cannot be processed."
 
-#: mod/invite.php:134
-#, php-format
-msgid "To accept this invitation, please visit and register at %s."
-msgstr "To accept this invitation, please visit and register at %s."
+#: mod/register.php:164
+msgid "Your registration is pending approval by the site owner."
+msgstr "Your registration is pending approval by the site administrator."
 
-#: mod/invite.php:135
+#: mod/register.php:230
 msgid ""
-"Friendica sites all inter-connect to create a huge privacy-enhanced social "
-"web that is owned and controlled by its members. They can also connect with "
-"many traditional social networks."
-msgstr "Friendica sites are all inter-connect to create a huge privacy-enhanced social web that is owned and controlled by its members. Each site can also connect with many traditional social networks."
+"You may (optionally) fill in this form via OpenID by supplying your OpenID "
+"and clicking 'Register'."
+msgstr "You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Sign up now'."
 
-#: mod/invite.php:141
-msgid "Send invitations"
-msgstr "Send invitations"
+#: mod/register.php:231
+msgid ""
+"If you are not familiar with OpenID, please leave that field blank and fill "
+"in the rest of the items."
+msgstr "If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."
 
-#: mod/invite.php:142
-msgid "Enter email addresses, one per line:"
-msgstr "Enter email addresses, one per line:"
+#: mod/register.php:232
+msgid "Your OpenID (optional): "
+msgstr "Your OpenID (optional): "
 
-#: mod/invite.php:144
-msgid ""
-"You are cordially invited to join me and other close friends on Friendica - "
-"and help us to create a better social web."
-msgstr "You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."
+#: mod/register.php:246
+msgid "Include your profile in member directory?"
+msgstr "Include your profile in member directory?"
 
-#: mod/invite.php:146
-msgid "You will need to supply this invitation code: $invite_code"
-msgstr "You will need to supply this invitation code: $invite_code"
+#: mod/register.php:271
+msgid "Note for the admin"
+msgstr "Note for the admin"
 
-#: mod/invite.php:146
-msgid ""
-"Once you have registered, please connect with me via my profile page at:"
-msgstr "Once you have signed up, please connect with me via my profile page at:"
+#: mod/register.php:271
+msgid "Leave a message for the admin, why you want to join this node"
+msgstr "Leave a message for the admin, why you want to join this node."
 
-#: mod/invite.php:148
-msgid ""
-"For more information about the Friendica project and why we feel it is "
-"important, please visit http://friendi.ca"
-msgstr "For more information about the Friendica project and why we feel it is important, please visit http://friendi.ca"
+#: mod/register.php:272
+msgid "Membership on this site is by invitation only."
+msgstr "Membership on this site is by invitation only."
 
-#: mod/network.php:419
-#, php-format
-msgid ""
-"Warning: This group contains %s member from a network that doesn't allow non"
-" public messages."
-msgid_plural ""
-"Warning: This group contains %s members from a network that doesn't allow "
-"non public messages."
-msgstr[0] "Warning: This group contains %s member from a network that doesn't allow non public messages."
-msgstr[1] "Warning: This group contains %s members from a network that doesn't allow non public messages."
+#: mod/register.php:273
+msgid "Your invitation ID: "
+msgstr "Your invitation ID: "
 
-#: mod/network.php:422
-msgid "Messages in this group won't be send to these receivers."
-msgstr "Messages in this group won't be send to these receivers."
+#: mod/register.php:284
+msgid "Your Full Name (e.g. Joe Smith, real or real-looking): "
+msgstr "Your full name: "
 
-#: mod/network.php:550
-msgid "Private messages to this person are at risk of public disclosure."
-msgstr "Private messages to this person are at risk of public disclosure."
+#: mod/register.php:285
+msgid "Your Email Address: "
+msgstr "Your email address: "
 
-#: mod/network.php:555
-msgid "Invalid contact."
-msgstr "Invalid contact."
+#: mod/register.php:287 mod/settings.php:1280
+msgid "New Password:"
+msgstr "New password:"
 
-#: mod/network.php:849
-msgid "Commented Order"
-msgstr "Commented last"
+#: mod/register.php:287
+msgid "Leave empty for an auto generated password."
+msgstr "Leave empty for an auto generated password."
 
-#: mod/network.php:852
-msgid "Sort by Comment Date"
-msgstr "Sort by comment date"
+#: mod/register.php:288 mod/settings.php:1281
+msgid "Confirm:"
+msgstr "Confirm new password:"
 
-#: mod/network.php:857
-msgid "Posted Order"
-msgstr "Posted last"
+#: mod/register.php:289
+msgid ""
+"Choose a profile nickname. This must begin with a text character. Your "
+"profile address on this site will then be "
+"'<strong>nickname@$sitename</strong>'."
+msgstr "Choose a profile nickname. Your nickname will be part of your identity address; for example:  '<strong>nickname@$sitename</strong>'."
 
-#: mod/network.php:860
-msgid "Sort by Post Date"
-msgstr "Sort by post date"
+#: mod/register.php:290
+msgid "Choose a nickname: "
+msgstr "Choose a nickname: "
 
-#: mod/network.php:871
-msgid "Posts that mention or involve you"
-msgstr "Posts mentioning or involving me"
+#: mod/register.php:300
+msgid "Import your profile to this friendica instance"
+msgstr "Import an existing Friendica profile to this node."
 
-#: mod/network.php:879
-msgid "New"
-msgstr "New"
+#: mod/regmod.php:61
+msgid "Account approved."
+msgstr "Account approved."
 
-#: mod/network.php:882
-msgid "Activity Stream - by date"
-msgstr "Activity Stream - by date"
+#: mod/regmod.php:89
+#, php-format
+msgid "Registration revoked for %s"
+msgstr "Registration revoked for %s"
 
-#: mod/network.php:890
-msgid "Shared Links"
-msgstr "Shared links"
+#: mod/regmod.php:101
+msgid "Please login."
+msgstr "Please login."
 
-#: mod/network.php:893
-msgid "Interesting Links"
-msgstr "Interesting links"
+#: mod/removeme.php:55 mod/removeme.php:58
+msgid "Remove My Account"
+msgstr "Remove My Account"
 
-#: mod/network.php:901
-msgid "Starred"
-msgstr "Starred"
+#: mod/removeme.php:56
+msgid ""
+"This will completely remove your account. Once this has been done it is not "
+"recoverable."
+msgstr "This will completely remove your account. Once this has been done it is not recoverable."
 
-#: mod/network.php:904
-msgid "Favourite Posts"
-msgstr "My favorite posts"
+#: mod/removeme.php:57
+msgid "Please enter your password for verification:"
+msgstr "Please enter your password for verification:"
+
+#: mod/repair_ostatus.php:17
+msgid "Resubscribing to OStatus contacts"
+msgstr "Resubscribing to OStatus contacts"
+
+#: mod/repair_ostatus.php:33
+msgid "Error"
+msgstr "Error"
 
-#: mod/settings.php:62
+#: mod/settings.php:63
 msgid "Display"
 msgstr "Display"
 
-#: mod/settings.php:69 mod/settings.php:891
+#: mod/settings.php:70 mod/settings.php:892
 msgid "Social Networks"
 msgstr "Social networks"
 
-#: mod/settings.php:90
+#: mod/settings.php:91
 msgid "Connected apps"
 msgstr "Connected apps"
 
-#: mod/settings.php:104
+#: mod/settings.php:98 mod/uexport.php:47
+msgid "Export personal data"
+msgstr "Export personal data"
+
+#: mod/settings.php:105
 msgid "Remove account"
 msgstr "Remove account"
 
-#: mod/settings.php:159
+#: mod/settings.php:160
 msgid "Missing some important data!"
 msgstr "Missing some important data!"
 
-#: mod/settings.php:273
+#: mod/settings.php:274
 msgid "Failed to connect with email account using the settings provided."
 msgstr "Failed to connect with email account using the settings provided."
 
-#: mod/settings.php:278
+#: mod/settings.php:279
 msgid "Email settings updated."
 msgstr "Email settings updated."
 
-#: mod/settings.php:293
+#: mod/settings.php:294
 msgid "Features updated"
 msgstr "Features updated"
 
-#: mod/settings.php:363
+#: mod/settings.php:364
 msgid "Relocate message has been send to your contacts"
 msgstr "Relocate message has been send to your contacts"
 
-#: mod/settings.php:382
+#: mod/settings.php:383
 msgid "Empty passwords are not allowed. Password unchanged."
 msgstr "Empty passwords are not allowed. Password unchanged."
 
-#: mod/settings.php:390
+#: mod/settings.php:391
 msgid "Wrong password."
 msgstr "Wrong password."
 
-#: mod/settings.php:401
+#: mod/settings.php:402
 msgid "Password changed."
 msgstr "Password changed."
 
-#: mod/settings.php:403
+#: mod/settings.php:404
 msgid "Password update failed. Please try again."
 msgstr "Password update failed. Please try again."
 
-#: mod/settings.php:483
+#: mod/settings.php:484
 msgid " Please use a shorter name."
 msgstr " Please use a shorter name."
 
-#: mod/settings.php:485
+#: mod/settings.php:486
 msgid " Name too short."
 msgstr " Name too short."
 
-#: mod/settings.php:494
+#: mod/settings.php:495
 msgid "Wrong Password"
 msgstr "Wrong password"
 
-#: mod/settings.php:499
+#: mod/settings.php:500
 msgid " Not valid email."
 msgstr "Invalid email."
 
-#: mod/settings.php:505
+#: mod/settings.php:506
 msgid " Cannot change to that email."
 msgstr " Cannot change to that email."
 
-#: mod/settings.php:561
+#: mod/settings.php:562
 msgid "Private forum has no privacy permissions. Using default privacy group."
 msgstr "Private forum has no privacy permissions. Using default privacy group."
 
-#: mod/settings.php:565
+#: mod/settings.php:566
 msgid "Private forum has no privacy permissions and no default privacy group."
 msgstr "Private forum has no privacy permissions and no default privacy group."
 
-#: mod/settings.php:605
+#: mod/settings.php:606
 msgid "Settings updated."
 msgstr "Settings updated."
 
-#: mod/settings.php:681 mod/settings.php:707 mod/settings.php:743
+#: mod/settings.php:682 mod/settings.php:708 mod/settings.php:744
 msgid "Add application"
 msgstr "Add application"
 
-#: mod/settings.php:685 mod/settings.php:711
+#: mod/settings.php:686 mod/settings.php:712
 msgid "Consumer Key"
 msgstr "Consumer key"
 
-#: mod/settings.php:686 mod/settings.php:712
+#: mod/settings.php:687 mod/settings.php:713
 msgid "Consumer Secret"
 msgstr "Consumer secret"
 
-#: mod/settings.php:687 mod/settings.php:713
+#: mod/settings.php:688 mod/settings.php:714
 msgid "Redirect"
 msgstr "Redirect"
 
-#: mod/settings.php:688 mod/settings.php:714
+#: mod/settings.php:689 mod/settings.php:715
 msgid "Icon url"
 msgstr "Icon URL"
 
-#: mod/settings.php:699
+#: mod/settings.php:700
 msgid "You can't edit this application."
 msgstr "You cannot edit this application."
 
-#: mod/settings.php:742
+#: mod/settings.php:743
 msgid "Connected Apps"
 msgstr "Connected Apps"
 
-#: mod/settings.php:746
+#: mod/settings.php:747
 msgid "Client key starts with"
 msgstr "Client key starts with"
 
-#: mod/settings.php:747
+#: mod/settings.php:748
 msgid "No name"
 msgstr "No name"
 
-#: mod/settings.php:748
+#: mod/settings.php:749
 msgid "Remove authorization"
 msgstr "Remove authorization"
 
-#: mod/settings.php:760
+#: mod/settings.php:761
 msgid "No Plugin settings configured"
 msgstr "No plugin settings configured"
 
-#: mod/settings.php:769
+#: mod/settings.php:770
 msgid "Plugin Settings"
 msgstr "Plugin Settings"
 
-#: mod/settings.php:791
+#: mod/settings.php:792
 msgid "Additional Features"
 msgstr "Additional Features"
 
-#: mod/settings.php:801 mod/settings.php:805
+#: mod/settings.php:802 mod/settings.php:806
 msgid "General Social Media Settings"
 msgstr "General Social Media Settings"
 
-#: mod/settings.php:811
+#: mod/settings.php:812
 msgid "Disable intelligent shortening"
 msgstr "Disable intelligent shortening"
 
-#: mod/settings.php:813
+#: mod/settings.php:814
 msgid ""
 "Normally the system tries to find the best link to add to shortened posts. "
 "If this option is enabled then every shortened post will always point to the"
 " original friendica post."
 msgstr "Normally the system tries to find the best link to add to shortened posts. If this option is enabled then every shortened post will always point to the original Friendica post."
 
-#: mod/settings.php:819
+#: mod/settings.php:820
 msgid "Automatically follow any GNU Social (OStatus) followers/mentioners"
 msgstr "Automatically follow any GNU Social (OStatus) followers/mentioners"
 
-#: mod/settings.php:821
+#: mod/settings.php:822
 msgid ""
 "If you receive a message from an unknown OStatus user, this option decides "
 "what to do. If it is checked, a new contact will be created for every "
 "unknown user."
 msgstr "Create a new contact for every unknown OStatus user from whom you receive a message."
 
-#: mod/settings.php:827
+#: mod/settings.php:828
 msgid "Default group for OStatus contacts"
 msgstr "Default group for OStatus contacts"
 
-#: mod/settings.php:835
+#: mod/settings.php:836
 msgid "Your legacy GNU Social account"
 msgstr "Your legacy GNU Social account"
 
-#: mod/settings.php:837
+#: mod/settings.php:838
 msgid ""
 "If you enter your old GNU Social/Statusnet account name here (in the format "
 "user@domain.tld), your contacts will be added automatically. The field will "
 "be emptied when done."
 msgstr "Entering your old GNU Social/Statusnet account name here (format: user@domain.tld), will automatically added your contacts. The field will be emptied when done."
 
-#: mod/settings.php:840
+#: mod/settings.php:841
 msgid "Repair OStatus subscriptions"
 msgstr "Repair OStatus subscriptions"
 
-#: mod/settings.php:849 mod/settings.php:850
+#: mod/settings.php:850 mod/settings.php:851
 #, php-format
 msgid "Built-in support for %s connectivity is %s"
 msgstr "Built-in support for %s connectivity is %s"
 
-#: mod/settings.php:849 mod/settings.php:850
+#: mod/settings.php:850 mod/settings.php:851
 msgid "enabled"
 msgstr "enabled"
 
-#: mod/settings.php:849 mod/settings.php:850
+#: mod/settings.php:850 mod/settings.php:851
 msgid "disabled"
 msgstr "disabled"
 
-#: mod/settings.php:850
+#: mod/settings.php:851
 msgid "GNU Social (OStatus)"
 msgstr "GNU Social (OStatus)"
 
-#: mod/settings.php:884
+#: mod/settings.php:885
 msgid "Email access is disabled on this site."
 msgstr "Email access is disabled on this site."
 
-#: mod/settings.php:896
+#: mod/settings.php:897
 msgid "Email/Mailbox Setup"
 msgstr "Email/Mailbox setup"
 
-#: mod/settings.php:897
+#: mod/settings.php:898
 msgid ""
 "If you wish to communicate with email contacts using this service "
 "(optional), please specify how to connect to your mailbox."
 msgstr "Specify how to connect to your mailbox, if you wish to communicate with existing email contacts."
 
-#: mod/settings.php:898
+#: mod/settings.php:899
 msgid "Last successful email check:"
 msgstr "Last successful email check:"
 
-#: mod/settings.php:900
+#: mod/settings.php:901
 msgid "IMAP server name:"
 msgstr "IMAP server name:"
 
-#: mod/settings.php:901
+#: mod/settings.php:902
 msgid "IMAP port:"
 msgstr "IMAP port:"
 
-#: mod/settings.php:902
+#: mod/settings.php:903
 msgid "Security:"
 msgstr "Security:"
 
-#: mod/settings.php:902 mod/settings.php:907
+#: mod/settings.php:903 mod/settings.php:908
 msgid "None"
 msgstr "None"
 
-#: mod/settings.php:903
+#: mod/settings.php:904
 msgid "Email login name:"
 msgstr "Email login name:"
 
-#: mod/settings.php:904
+#: mod/settings.php:905
 msgid "Email password:"
 msgstr "Email password:"
 
-#: mod/settings.php:905
+#: mod/settings.php:906
 msgid "Reply-to address:"
 msgstr "Reply-to address:"
 
-#: mod/settings.php:906
+#: mod/settings.php:907
 msgid "Send public posts to all email contacts:"
 msgstr "Send public posts to all email contacts:"
 
-#: mod/settings.php:907
+#: mod/settings.php:908
 msgid "Action after import:"
 msgstr "Action after import:"
 
-#: mod/settings.php:907
+#: mod/settings.php:908
 msgid "Move to folder"
 msgstr "Move to folder"
 
-#: mod/settings.php:908
+#: mod/settings.php:909
 msgid "Move to folder:"
 msgstr "Move to folder:"
 
-#: mod/settings.php:1004
+#: mod/settings.php:1005
 msgid "Display Settings"
 msgstr "Display Settings"
 
-#: mod/settings.php:1010 mod/settings.php:1033
+#: mod/settings.php:1011 mod/settings.php:1034
 msgid "Display Theme:"
 msgstr "Display theme:"
 
-#: mod/settings.php:1011
+#: mod/settings.php:1012
 msgid "Mobile Theme:"
 msgstr "Mobile theme:"
 
-#: mod/settings.php:1012
+#: mod/settings.php:1013
 msgid "Suppress warning of insecure networks"
 msgstr "Suppress warning of insecure networks"
 
-#: mod/settings.php:1012
+#: mod/settings.php:1013
 msgid ""
 "Should the system suppress the warning that the current group contains "
 "members of networks that can't receive non public postings."
 msgstr "Suppresses warnings if groups contains members whose networks that cannot receive non-public postings."
 
-#: mod/settings.php:1013
+#: mod/settings.php:1014
 msgid "Update browser every xx seconds"
 msgstr "Update browser every so many seconds:"
 
-#: mod/settings.php:1013
+#: mod/settings.php:1014
 msgid "Minimum of 10 seconds. Enter -1 to disable it."
 msgstr "Minimum 10 seconds; to disable -1."
 
-#: mod/settings.php:1014
+#: mod/settings.php:1015
 msgid "Number of items to display per page:"
 msgstr "Number of items displayed per page:"
 
-#: mod/settings.php:1014 mod/settings.php:1015
+#: mod/settings.php:1015 mod/settings.php:1016
 msgid "Maximum of 100 items"
 msgstr "Maximum of 100 items"
 
-#: mod/settings.php:1015
+#: mod/settings.php:1016
 msgid "Number of items to display per page when viewed from mobile device:"
 msgstr "Number of items displayed per page on mobile devices:"
 
-#: mod/settings.php:1016
+#: mod/settings.php:1017
 msgid "Don't show emoticons"
 msgstr "Don't show emoticons"
 
-#: mod/settings.php:1017
+#: mod/settings.php:1018
 msgid "Calendar"
 msgstr "Calendar"
 
-#: mod/settings.php:1018
+#: mod/settings.php:1019
 msgid "Beginning of week:"
 msgstr "Week begins: "
 
-#: mod/settings.php:1019
+#: mod/settings.php:1020
 msgid "Don't show notices"
 msgstr "Don't show notices"
 
-#: mod/settings.php:1020
+#: mod/settings.php:1021
 msgid "Infinite scroll"
 msgstr "Infinite scroll"
 
-#: mod/settings.php:1021
+#: mod/settings.php:1022
 msgid "Automatic updates only at the top of the network page"
 msgstr "Automatically updates only top of the network page"
 
-#: mod/settings.php:1021
+#: mod/settings.php:1022
 msgid ""
 "When disabled, the network page is updated all the time, which could be "
 "confusing while reading."
 msgstr "When disabled, the network page is updated all the time, which could be confusing while reading."
 
-#: mod/settings.php:1022
+#: mod/settings.php:1023
 msgid "Bandwith Saver Mode"
 msgstr "Bandwith saving mode"
 
-#: mod/settings.php:1022
+#: mod/settings.php:1023
 msgid ""
 "When enabled, embedded content is not displayed on automatic updates, they "
 "only show on page reload."
 msgstr "If enabled, embedded content is not displayed on automatic updates; it is only shown on page reload."
 
-#: mod/settings.php:1024
+#: mod/settings.php:1025
 msgid "General Theme Settings"
 msgstr "Themes"
 
-#: mod/settings.php:1025
+#: mod/settings.php:1026
 msgid "Custom Theme Settings"
 msgstr "Theme customization"
 
-#: mod/settings.php:1026
+#: mod/settings.php:1027
 msgid "Content Settings"
 msgstr "Content/Layout"
 
-#: mod/settings.php:1027 view/theme/duepuntozero/config.php:66
-#: view/theme/frio/config.php:69 view/theme/quattro/config.php:72
-#: view/theme/vier/config.php:115
+#: mod/settings.php:1028 view/theme/duepuntozero/config.php:67
+#: view/theme/frio/config.php:70 view/theme/quattro/config.php:73
+#: view/theme/vier/config.php:116
 msgid "Theme settings"
 msgstr "Theme settings"
 
-#: mod/settings.php:1111
+#: mod/settings.php:1112
 msgid "Account Types"
 msgstr "Account types:"
 
-#: mod/settings.php:1112
+#: mod/settings.php:1113
 msgid "Personal Page Subtypes"
 msgstr "Personal Page subtypes"
 
-#: mod/settings.php:1113
+#: mod/settings.php:1114
 msgid "Community Forum Subtypes"
 msgstr "Community forum subtypes"
 
-#: mod/settings.php:1120
+#: mod/settings.php:1121
 msgid "Personal Page"
 msgstr "Personal Page"
 
-#: mod/settings.php:1121
+#: mod/settings.php:1122
 msgid "Account for a personal profile."
 msgstr "Account for a personal profile."
 
-#: mod/settings.php:1124
+#: mod/settings.php:1125
 msgid "Organisation Page"
 msgstr "Organization Page"
 
-#: mod/settings.php:1125
+#: mod/settings.php:1126
 msgid ""
 "Account for an organisation that automatically approves contact requests as "
 "\"Followers\"."
 msgstr "Account for an organization that automatically approves contact requests as \"Followers\"."
 
-#: mod/settings.php:1128
+#: mod/settings.php:1129
 msgid "News Page"
 msgstr "News Page"
 
-#: mod/settings.php:1129
+#: mod/settings.php:1130
 msgid ""
 "Account for a news reflector that automatically approves contact requests as"
 " \"Followers\"."
 msgstr "Account for a news reflector that automatically approves contact requests as \"Followers\"."
 
-#: mod/settings.php:1132
+#: mod/settings.php:1133
 msgid "Community Forum"
 msgstr "Community Forum"
 
-#: mod/settings.php:1133
+#: mod/settings.php:1134
 msgid "Account for community discussions."
 msgstr "Account for community discussions."
 
-#: mod/settings.php:1136
+#: mod/settings.php:1137
 msgid "Normal Account Page"
 msgstr "Standard"
 
-#: mod/settings.php:1137
+#: mod/settings.php:1138
 msgid ""
 "Account for a regular personal profile that requires manual approval of "
 "\"Friends\" and \"Followers\"."
 msgstr "Account for a regular personal profile that requires manual approval of \"Friends\" and \"Followers\"."
 
-#: mod/settings.php:1140
+#: mod/settings.php:1141
 msgid "Soapbox Page"
 msgstr "Soapbox"
 
-#: mod/settings.php:1141
+#: mod/settings.php:1142
 msgid ""
 "Account for a public profile that automatically approves contact requests as"
 " \"Followers\"."
 msgstr "Account for a public profile that automatically approves contact requests as \"Followers\"."
 
-#: mod/settings.php:1144
+#: mod/settings.php:1145
 msgid "Public Forum"
 msgstr "Public forum"
 
-#: mod/settings.php:1145
+#: mod/settings.php:1146
 msgid "Automatically approves all contact requests."
 msgstr "Automatically approves all contact requests."
 
-#: mod/settings.php:1148
+#: mod/settings.php:1149
 msgid "Automatic Friend Page"
 msgstr "Love-all"
 
-#: mod/settings.php:1149
+#: mod/settings.php:1150
 msgid ""
 "Account for a popular profile that automatically approves contact requests "
 "as \"Friends\"."
 msgstr "Account for a popular profile that automatically approves contact requests as \"Friends\"."
 
-#: mod/settings.php:1152
+#: mod/settings.php:1153
 msgid "Private Forum [Experimental]"
 msgstr "Private forum [Experimental]"
 
-#: mod/settings.php:1153
+#: mod/settings.php:1154
 msgid "Requires manual approval of contact requests."
 msgstr "Requires manual approval of contact requests."
 
-#: mod/settings.php:1164
+#: mod/settings.php:1165
 msgid "OpenID:"
 msgstr "OpenID:"
 
-#: mod/settings.php:1164
+#: mod/settings.php:1165
 msgid "(Optional) Allow this OpenID to login to this account."
 msgstr "(Optional) Allow this OpenID to login to this account."
 
-#: mod/settings.php:1172
+#: mod/settings.php:1173
 msgid "Publish your default profile in your local site directory?"
 msgstr "Publish default profile in local site directory?"
 
-#: mod/settings.php:1172
+#: mod/settings.php:1173
 msgid "Your profile may be visible in public."
 msgstr "Your local directory may be publicly visible"
 
-#: mod/settings.php:1178
+#: mod/settings.php:1179
 msgid "Publish your default profile in the global social directory?"
 msgstr "Publish default profile in global directory?"
 
-#: mod/settings.php:1185
+#: mod/settings.php:1186
 msgid "Hide your contact/friend list from viewers of your default profile?"
 msgstr "Hide my contact list from others?"
 
-#: mod/settings.php:1189
+#: mod/settings.php:1190
 msgid ""
 "If enabled, posting public messages to Diaspora and other networks isn't "
 "possible."
 msgstr "Posting public messages to Diaspora and other networks will not be possible if enabled"
 
-#: mod/settings.php:1194
+#: mod/settings.php:1195
 msgid "Allow friends to post to your profile page?"
 msgstr "Allow friends to post to my wall?"
 
-#: mod/settings.php:1199
+#: mod/settings.php:1200
 msgid "Allow friends to tag your posts?"
 msgstr "Allow friends to tag my post?"
 
-#: mod/settings.php:1204
+#: mod/settings.php:1205
 msgid "Allow us to suggest you as a potential friend to new members?"
 msgstr "Allow us to suggest you as a potential friend to new members?"
 
-#: mod/settings.php:1209
+#: mod/settings.php:1210
 msgid "Permit unknown people to send you private mail?"
 msgstr "Allow unknown people to send me private messages?"
 
-#: mod/settings.php:1217
+#: mod/settings.php:1218
 msgid "Profile is <strong>not published</strong>."
 msgstr "Profile is <strong>not published</strong>."
 
-#: mod/settings.php:1225
+#: mod/settings.php:1226
 #, php-format
 msgid "Your Identity Address is <strong>'%s'</strong> or '%s'."
 msgstr "My identity address: <strong>'%s'</strong> or '%s'"
 
-#: mod/settings.php:1232
+#: mod/settings.php:1233
 msgid "Automatically expire posts after this many days:"
 msgstr "Automatically expire posts after this many days:"
 
-#: mod/settings.php:1232
+#: mod/settings.php:1233
 msgid "If empty, posts will not expire. Expired posts will be deleted"
 msgstr "Posts will not expire if empty;  expired posts will be deleted"
 
-#: mod/settings.php:1233
+#: mod/settings.php:1234
 msgid "Advanced expiration settings"
 msgstr "Advanced expiration settings"
 
-#: mod/settings.php:1234
+#: mod/settings.php:1235
 msgid "Advanced Expiration"
 msgstr "Advanced expiration"
 
-#: mod/settings.php:1235
+#: mod/settings.php:1236
 msgid "Expire posts:"
 msgstr "Expire posts:"
 
-#: mod/settings.php:1236
+#: mod/settings.php:1237
 msgid "Expire personal notes:"
 msgstr "Expire personal notes:"
 
-#: mod/settings.php:1237
+#: mod/settings.php:1238
 msgid "Expire starred posts:"
 msgstr "Expire starred posts:"
 
-#: mod/settings.php:1238
+#: mod/settings.php:1239
 msgid "Expire photos:"
 msgstr "Expire photos:"
 
-#: mod/settings.php:1239
+#: mod/settings.php:1240
 msgid "Only expire posts by others:"
 msgstr "Only expire posts by others:"
 
-#: mod/settings.php:1270
+#: mod/settings.php:1271
 msgid "Account Settings"
 msgstr "Account Settings"
 
-#: mod/settings.php:1278
+#: mod/settings.php:1279
 msgid "Password Settings"
 msgstr "Password change"
 
-#: mod/settings.php:1280
+#: mod/settings.php:1281
 msgid "Leave password fields blank unless changing"
 msgstr "Leave password fields blank unless changing"
 
-#: mod/settings.php:1281
+#: mod/settings.php:1282
 msgid "Current Password:"
 msgstr "Current password:"
 
-#: mod/settings.php:1281 mod/settings.php:1282
+#: mod/settings.php:1282 mod/settings.php:1283
 msgid "Your current password to confirm the changes"
 msgstr "Current password to confirm change"
 
-#: mod/settings.php:1282
+#: mod/settings.php:1283
 msgid "Password:"
 msgstr "Password:"
 
-#: mod/settings.php:1286
+#: mod/settings.php:1287
 msgid "Basic Settings"
 msgstr "Basic information"
 
-#: mod/settings.php:1288
+#: mod/settings.php:1289
 msgid "Email Address:"
 msgstr "Email address:"
 
-#: mod/settings.php:1289
+#: mod/settings.php:1290
 msgid "Your Timezone:"
 msgstr "Time zone:"
 
-#: mod/settings.php:1290
+#: mod/settings.php:1291
 msgid "Your Language:"
 msgstr "Language:"
 
-#: mod/settings.php:1290
+#: mod/settings.php:1291
 msgid ""
 "Set the language we use to show you friendica interface and to send you "
 "emails"
 msgstr "Set the language of your Friendica interface and emails receiving"
 
-#: mod/settings.php:1291
+#: mod/settings.php:1292
 msgid "Default Post Location:"
 msgstr "Posting location:"
 
-#: mod/settings.php:1292
+#: mod/settings.php:1293
 msgid "Use Browser Location:"
 msgstr "Use browser location:"
 
-#: mod/settings.php:1295
+#: mod/settings.php:1296
 msgid "Security and Privacy Settings"
 msgstr "Security and privacy"
 
-#: mod/settings.php:1297
+#: mod/settings.php:1298
 msgid "Maximum Friend Requests/Day:"
 msgstr "Maximum friend requests per day:"
 
-#: mod/settings.php:1297 mod/settings.php:1327
+#: mod/settings.php:1298 mod/settings.php:1328
 msgid "(to prevent spam abuse)"
 msgstr "May prevent spam or abuse registrations"
 
-#: mod/settings.php:1298
+#: mod/settings.php:1299
 msgid "Default Post Permissions"
 msgstr "Default post permissions"
 
-#: mod/settings.php:1299
+#: mod/settings.php:1300
 msgid "(click to open/close)"
 msgstr "(click to open/close)"
 
-#: mod/settings.php:1310
+#: mod/settings.php:1311
 msgid "Default Private Post"
 msgstr "Default private post"
 
-#: mod/settings.php:1311
+#: mod/settings.php:1312
 msgid "Default Public Post"
 msgstr "Default public post"
 
-#: mod/settings.php:1315
+#: mod/settings.php:1316
 msgid "Default Permissions for New Posts"
 msgstr "Default permissions for new posts"
 
-#: mod/settings.php:1327
+#: mod/settings.php:1328
 msgid "Maximum private messages per day from unknown people:"
 msgstr "Maximum private messages per day from unknown people:"
 
-#: mod/settings.php:1330
+#: mod/settings.php:1331
 msgid "Notification Settings"
 msgstr "Notification"
 
-#: mod/settings.php:1331
+#: mod/settings.php:1332
 msgid "By default post a status message when:"
 msgstr "By default post a status message when:"
 
-#: mod/settings.php:1332
+#: mod/settings.php:1333
 msgid "accepting a friend request"
 msgstr "accepting friend requests"
 
-#: mod/settings.php:1333
+#: mod/settings.php:1334
 msgid "joining a forum/community"
 msgstr "joining forums or communities"
 
-#: mod/settings.php:1334
+#: mod/settings.php:1335
 msgid "making an <em>interesting</em> profile change"
 msgstr "making an <em>interesting</em> profile change"
 
-#: mod/settings.php:1335
+#: mod/settings.php:1336
 msgid "Send a notification email when:"
 msgstr "Send notification email when:"
 
-#: mod/settings.php:1336
+#: mod/settings.php:1337
 msgid "You receive an introduction"
 msgstr "Receiving an introduction"
 
-#: mod/settings.php:1337
+#: mod/settings.php:1338
 msgid "Your introductions are confirmed"
 msgstr "My introductions are confirmed"
 
-#: mod/settings.php:1338
+#: mod/settings.php:1339
 msgid "Someone writes on your profile wall"
 msgstr "Someone writes on my wall"
 
-#: mod/settings.php:1339
+#: mod/settings.php:1340
 msgid "Someone writes a followup comment"
 msgstr "A follow up comment is posted"
 
-#: mod/settings.php:1340
+#: mod/settings.php:1341
 msgid "You receive a private message"
 msgstr "receiving a private message"
 
-#: mod/settings.php:1341
+#: mod/settings.php:1342
 msgid "You receive a friend suggestion"
 msgstr "Receiving a friend suggestion"
 
-#: mod/settings.php:1342
+#: mod/settings.php:1343
 msgid "You are tagged in a post"
 msgstr "Tagged in a post"
 
-#: mod/settings.php:1343
+#: mod/settings.php:1344
 msgid "You are poked/prodded/etc. in a post"
 msgstr "Poked in a post"
 
-#: mod/settings.php:1345
+#: mod/settings.php:1346
 msgid "Activate desktop notifications"
 msgstr "Activate desktop notifications"
 
-#: mod/settings.php:1345
+#: mod/settings.php:1346
 msgid "Show desktop popup on new notifications"
 msgstr "Show desktop pop-up on new notifications"
 
-#: mod/settings.php:1347
+#: mod/settings.php:1348
 msgid "Text-only notification emails"
 msgstr "Text-only notification emails"
 
-#: mod/settings.php:1349
+#: mod/settings.php:1350
 msgid "Send text only notification emails, without the html part"
 msgstr "Receive text only emails without HTML "
 
-#: mod/settings.php:1351
+#: mod/settings.php:1352
 msgid "Advanced Account/Page Type Settings"
 msgstr "Advanced account types"
 
-#: mod/settings.php:1352
+#: mod/settings.php:1353
 msgid "Change the behaviour of this account for special situations"
 msgstr "Change behaviour of this account for special situations"
 
-#: mod/settings.php:1355
+#: mod/settings.php:1356
 msgid "Relocate"
 msgstr "Recent relocation"
 
-#: mod/settings.php:1356
+#: mod/settings.php:1357
 msgid ""
 "If you have moved this profile from another server, and some of your "
 "contacts don't receive your updates, try pushing this button."
 msgstr "If you have moved this profile from another server and some of your contacts don't receive your updates:"
 
-#: mod/settings.php:1357
+#: mod/settings.php:1358
 msgid "Resend relocate message to contacts"
 msgstr "Resend relocation message to contacts"
 
-#: object/Item.php:356
+#: mod/subthread.php:106
+#, php-format
+msgid "%1$s is following %2$s's %3$s"
+msgstr "%1$s is following %2$s's %3$s"
+
+#: mod/suggest.php:30
+msgid "Do you really want to delete this suggestion?"
+msgstr "Do you really want to delete this suggestion?"
+
+#: mod/suggest.php:74
+msgid ""
+"No suggestions available. If this is a new site, please try again in 24 "
+"hours."
+msgstr "No suggestions available. If this is a new site, please try again in 24 hours."
+
+#: mod/suggest.php:87 mod/suggest.php:107
+msgid "Ignore/Hide"
+msgstr "Ignore/Hide"
+
+#: mod/tagrm.php:46
+msgid "Tag removed"
+msgstr "Tag removed"
+
+#: mod/tagrm.php:85
+msgid "Remove Item Tag"
+msgstr "Remove Item tag"
+
+#: mod/tagrm.php:87
+msgid "Select a tag to remove: "
+msgstr "Select a tag to remove: "
+
+#: mod/uexport.php:39
+msgid "Export account"
+msgstr "Export account"
+
+#: mod/uexport.php:39
+msgid ""
+"Export your account info and contacts. Use this to make a backup of your "
+"account and/or to move it to another server."
+msgstr "Export your account info and contacts. Use this to backup your account or to move it to another server."
+
+#: mod/uexport.php:40
+msgid "Export all"
+msgstr "Export all"
+
+#: mod/uexport.php:40
+msgid ""
+"Export your accout info, contacts and all your items as json. Could be a "
+"very big file, and could take a lot of time. Use this to make a full backup "
+"of your account (photos are not exported)"
+msgstr "Export your account info, contacts and all your items as json. Could be a very big file, and could take a lot of time. Use this to make a full backup of your account (photos are not exported)"
+
+#: mod/unfollow.php:33
+msgid "Contact wasn't found or can't be unfollowed."
+msgstr "Contact wasn't found or can't be unfollowed."
+
+#: mod/unfollow.php:47
+msgid "Contact unfollowed"
+msgstr "Contact unfollowed"
+
+#: mod/unfollow.php:73
+msgid "You aren't a friend of this contact."
+msgstr "You aren't a friend of this contact."
+
+#: mod/unfollow.php:79
+msgid "Unfollowing is currently not supported by your network."
+msgstr "Unfollowing is currently not supported by your network."
+
+#: mod/videos.php:127
+msgid "Do you really want to delete this video?"
+msgstr "Do you really want to delete this video?"
+
+#: mod/videos.php:132
+msgid "Delete Video"
+msgstr "Delete video"
+
+#: mod/videos.php:211
+msgid "No videos selected"
+msgstr "No videos selected"
+
+#: mod/videos.php:405
+msgid "Recent Videos"
+msgstr "Recent videos"
+
+#: mod/videos.php:407
+msgid "Upload New Videos"
+msgstr "Upload new videos"
+
+#: mod/wallmessage.php:45 mod/wallmessage.php:109
+#, php-format
+msgid "Number of daily wall messages for %s exceeded. Message failed."
+msgstr "Number of daily wall messages for %s exceeded. Message failed."
+
+#: mod/wallmessage.php:56
+msgid "Unable to check your home location."
+msgstr "Unable to check your home location."
+
+#: mod/wallmessage.php:83 mod/wallmessage.php:92
+msgid "No recipient."
+msgstr "No recipient."
+
+#: mod/wallmessage.php:130
+#, php-format
+msgid ""
+"If you wish for %s to respond, please check that the privacy settings on "
+"your site allow private mail from unknown senders."
+msgstr "If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."
+
+#: object/Item.php:348
 msgid "via"
 msgstr "via"
 
-#: view/theme/duepuntozero/config.php:47
+#: view/theme/duepuntozero/config.php:48
 msgid "greenzero"
 msgstr "greenzero"
 
-#: view/theme/duepuntozero/config.php:48
+#: view/theme/duepuntozero/config.php:49
 msgid "purplezero"
 msgstr "purplezero"
 
-#: view/theme/duepuntozero/config.php:49
+#: view/theme/duepuntozero/config.php:50
 msgid "easterbunny"
 msgstr "easterbunny"
 
-#: view/theme/duepuntozero/config.php:50
+#: view/theme/duepuntozero/config.php:51
 msgid "darkzero"
 msgstr "darkzero"
 
-#: view/theme/duepuntozero/config.php:51
+#: view/theme/duepuntozero/config.php:52
 msgid "comix"
 msgstr "comix"
 
-#: view/theme/duepuntozero/config.php:52
+#: view/theme/duepuntozero/config.php:53
 msgid "slackr"
 msgstr "slackr"
 
-#: view/theme/duepuntozero/config.php:67
+#: view/theme/duepuntozero/config.php:68
 msgid "Variations"
 msgstr "Variations"
 
@@ -8847,167 +8870,167 @@ msgstr "Resize to best fit"
 msgid "Resize to best fit and retain aspect ratio."
 msgstr "Resize to best fit and retain aspect ratio."
 
-#: view/theme/frio/config.php:50
+#: view/theme/frio/config.php:51
 msgid "Default"
 msgstr "Default"
 
-#: view/theme/frio/config.php:62
+#: view/theme/frio/config.php:63
 msgid "Note: "
 msgstr "Note - "
 
-#: view/theme/frio/config.php:62
+#: view/theme/frio/config.php:63
 msgid "Check image permissions if all users are allowed to visit the image"
 msgstr "Check image permissions if all users are allowed to visit the image"
 
-#: view/theme/frio/config.php:70
+#: view/theme/frio/config.php:71
 msgid "Select scheme"
 msgstr "Select scheme:"
 
-#: view/theme/frio/config.php:71
+#: view/theme/frio/config.php:72
 msgid "Navigation bar background color"
 msgstr "Navigation bar background color:"
 
-#: view/theme/frio/config.php:72
+#: view/theme/frio/config.php:73
 msgid "Navigation bar icon color "
 msgstr "Navigation bar icon color:"
 
-#: view/theme/frio/config.php:73
+#: view/theme/frio/config.php:74
 msgid "Link color"
 msgstr "Link color:"
 
-#: view/theme/frio/config.php:74
+#: view/theme/frio/config.php:75
 msgid "Set the background color"
 msgstr "Background color:"
 
-#: view/theme/frio/config.php:75
+#: view/theme/frio/config.php:76
 msgid "Content background transparency"
 msgstr "Content background transparency:"
 
-#: view/theme/frio/config.php:76
+#: view/theme/frio/config.php:77
 msgid "Set the background image"
 msgstr "Background image:"
 
-#: view/theme/frio/theme.php:230
+#: view/theme/frio/theme.php:231
 msgid "Guest"
 msgstr "Guest"
 
-#: view/theme/frio/theme.php:236
+#: view/theme/frio/theme.php:237
 msgid "Visitor"
 msgstr "Visitor"
 
-#: view/theme/quattro/config.php:73
+#: view/theme/quattro/config.php:74
 msgid "Alignment"
 msgstr "Alignment"
 
-#: view/theme/quattro/config.php:73
+#: view/theme/quattro/config.php:74
 msgid "Left"
 msgstr "Left"
 
-#: view/theme/quattro/config.php:73
+#: view/theme/quattro/config.php:74
 msgid "Center"
 msgstr "Center"
 
-#: view/theme/quattro/config.php:74
+#: view/theme/quattro/config.php:75
 msgid "Color scheme"
 msgstr "Color scheme"
 
-#: view/theme/quattro/config.php:75
+#: view/theme/quattro/config.php:76
 msgid "Posts font size"
 msgstr "Posts font size"
 
-#: view/theme/quattro/config.php:76
+#: view/theme/quattro/config.php:77
 msgid "Textareas font size"
 msgstr "Text areas font size"
 
-#: view/theme/vier/config.php:70
+#: view/theme/vier/config.php:71
 msgid "Comma separated list of helper forums"
 msgstr "Comma separated list of helper forums"
 
-#: view/theme/vier/config.php:116
+#: view/theme/vier/config.php:117
 msgid "Set style"
 msgstr "Set style"
 
-#: view/theme/vier/config.php:117
+#: view/theme/vier/config.php:118
 msgid "Community Pages"
 msgstr "Community pages"
 
-#: view/theme/vier/config.php:118 view/theme/vier/theme.php:143
+#: view/theme/vier/config.php:119 view/theme/vier/theme.php:144
 msgid "Community Profiles"
 msgstr "Community profiles"
 
-#: view/theme/vier/config.php:119
+#: view/theme/vier/config.php:120
 msgid "Help or @NewHere ?"
 msgstr "Help or @NewHere ?"
 
-#: view/theme/vier/config.php:120 view/theme/vier/theme.php:384
+#: view/theme/vier/config.php:121 view/theme/vier/theme.php:385
 msgid "Connect Services"
 msgstr "Connect services"
 
-#: view/theme/vier/config.php:121 view/theme/vier/theme.php:191
+#: view/theme/vier/config.php:122 view/theme/vier/theme.php:192
 msgid "Find Friends"
 msgstr "Find friends"
 
-#: view/theme/vier/config.php:122 view/theme/vier/theme.php:173
+#: view/theme/vier/config.php:123 view/theme/vier/theme.php:174
 msgid "Last users"
 msgstr "Last users"
 
-#: view/theme/vier/theme.php:192
+#: view/theme/vier/theme.php:193
 msgid "Local Directory"
 msgstr "Local directory"
 
-#: view/theme/vier/theme.php:284
+#: view/theme/vier/theme.php:285
 msgid "Quick Start"
 msgstr "Quick start"
 
-#: src/App.php:527
+#: src/App.php:523
 msgid "Delete this item?"
 msgstr "Delete this item?"
 
-#: src/App.php:529
+#: src/App.php:525
 msgid "show fewer"
 msgstr "Show fewer."
 
-#: index.php:436
-msgid "toggle mobile"
-msgstr "Toggle mobile"
-
-#: boot.php:735
+#: boot.php:724
 #, php-format
 msgid "Update %s failed. See error logs."
 msgstr "Update %s failed. See error logs."
 
-#: boot.php:847
+#: boot.php:836
 msgid "Create a New Account"
 msgstr "Create a new account"
 
-#: boot.php:875
+#: boot.php:864
 msgid "Password: "
 msgstr "Password: "
 
-#: boot.php:876
+#: boot.php:865
 msgid "Remember me"
 msgstr "Remember me"
 
-#: boot.php:879
+#: boot.php:868
 msgid "Or login using OpenID: "
 msgstr "Or login with OpenID: "
 
-#: boot.php:885
+#: boot.php:874
 msgid "Forgot your password?"
 msgstr "Forgot your password?"
 
-#: boot.php:888
+#: boot.php:877
 msgid "Website Terms of Service"
 msgstr "Website Terms of Service"
 
-#: boot.php:889
+#: boot.php:878
 msgid "terms of service"
 msgstr "Terms of service"
 
-#: boot.php:891
+#: boot.php:880
 msgid "Website Privacy Policy"
 msgstr "Website Privacy Policy"
 
-#: boot.php:892
+#: boot.php:881
 msgid "privacy policy"
 msgstr "Privacy policy"
+
+#: index.php:437
+msgid "toggle mobile"
+msgstr "Toggle mobile"
index 367f0f44a4a16ce2b91008eb88643f49a0172635..a24bed1066d53223a1dfa1a47e0385fea24ce619 100644 (file)
@@ -54,9 +54,6 @@ $a->strings["Mute Post Notifications"] = "Mute post notifications";
 $a->strings["Ability to mute notifications for a thread"] = "Ability to mute notifications for a thread";
 $a->strings["Advanced Profile Settings"] = "Advanced profiles";
 $a->strings["Show visitors public community forums at the Advanced Profile Page"] = "Show visitors of public community forums at the advanced profile page";
-$a->strings["Forums"] = "Forums";
-$a->strings["External link to forum"] = "External link to forum";
-$a->strings["show more"] = "Show more...";
 $a->strings["Miscellaneous"] = "Miscellaneous";
 $a->strings["Birthday:"] = "Birthday:";
 $a->strings["Age: "] = "Age: ";
@@ -80,52 +77,6 @@ $a->strings["seconds"] = "seconds";
 $a->strings["%1\$d %2\$s ago"] = "%1\$d %2\$s ago";
 $a->strings["%s's birthday"] = "%s's birthday";
 $a->strings["Happy Birthday %s"] = "Happy Birthday, %s!";
-$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s likes %2\$s's %3\$s";
-$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s doesn't like %2\$s's %3\$s";
-$a->strings["%1\$s is attending %2\$s's %3\$s"] = "%1\$s is going to %2\$s's %3\$s";
-$a->strings["%1\$s is not attending %2\$s's %3\$s"] = "%1\$s is not going to %2\$s's %3\$s";
-$a->strings["%1\$s may attend %2\$s's %3\$s"] = "%1\$s may go to %2\$s's %3\$s";
-$a->strings["photo"] = "photo";
-$a->strings["status"] = "status";
-$a->strings["event"] = "event";
-$a->strings["Error decoding account file"] = "Error decoding account file";
-$a->strings["Error! No version data in file! This is not a Friendica account file?"] = "Error! No version data in file! Is this a Friendica account file?";
-$a->strings["Error! Cannot check nickname"] = "Error! Cannot check nickname.";
-$a->strings["User '%s' already exists on this server!"] = "User '%s' already exists on this server!";
-$a->strings["User creation error"] = "User creation error";
-$a->strings["User profile creation error"] = "User profile creation error";
-$a->strings["%d contact not imported"] = array(
-       0 => "%d contact not imported",
-       1 => "%d contacts not imported",
-);
-$a->strings["Done. You can now login with your username and password"] = "Done. You can now login with your username and password";
-$a->strings["Passwords do not match. Password unchanged."] = "Passwords do not match. Password unchanged.";
-$a->strings["An invitation is required."] = "An invitation is required.";
-$a->strings["Invitation could not be verified."] = "Invitation could not be verified.";
-$a->strings["Invalid OpenID url"] = "Invalid OpenID URL";
-$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID.";
-$a->strings["The error message was:"] = "The error message was:";
-$a->strings["Please enter the required information."] = "Please enter the required information.";
-$a->strings["Please use a shorter name."] = "Please use a shorter name.";
-$a->strings["Name too short."] = "Name too short.";
-$a->strings["That doesn't appear to be your full (First Last) name."] = "That doesn't appear to be your full (i.e first and last) name.";
-$a->strings["Your email domain is not among those allowed on this site."] = "Your email domain is not allowed on this site.";
-$a->strings["Not a valid email address."] = "Not a valid email address.";
-$a->strings["Cannot use that email."] = "Cannot use that email.";
-$a->strings["Your \"nickname\" can only contain \"a-z\", \"0-9\" and \"_\"."] = "Your \"nickname\" can only contain \"a-z\", \"0-9\" and \"_\".";
-$a->strings["Nickname is already registered. Please choose another."] = "Nickname is already registered. Please choose another.";
-$a->strings["Nickname was once registered here and may not be re-used. Please choose another."] = "Nickname was once registered here and may not be re-used. Please choose another.";
-$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "SERIOUS ERROR: Generation of security keys failed.";
-$a->strings["An error occurred during registration. Please try again."] = "An error occurred during registration. Please try again.";
-$a->strings["default"] = "default";
-$a->strings["An error occurred creating your default profile. Please try again."] = "An error occurred creating your default profile. Please try again.";
-$a->strings["Friends"] = "Friends";
-$a->strings["Profile Photos"] = "Profile photos";
-$a->strings["\n\t\tDear %1\$s,\n\t\t\tThank you for registering at %2\$s. Your account is pending for approval by the administrator.\n\t"] = "\n\t\tDear %1\$s,\n\t\t\tThank you for signing up at %2\$s. Your account is pending approval by the administrator.\n\t";
-$a->strings["Registration at %s"] = "Registration at %s";
-$a->strings["\n\t\tDear %1\$s,\n\t\t\tThank you for registering at %2\$s. Your account has been created.\n\t"] = "\n\t\tDear %1\$s,\n\t\t\tThank you for signing up at %2\$s. Your account has been created.\n\t";
-$a->strings["\n\t\tThe login details are as follows:\n\t\t\tSite Location:\t%3\$s\n\t\t\tLogin Name:\t%1\$s\n\t\t\tPassword:\t%5\$s\n\n\t\tYou may change your password from your account \"Settings\" page after logging\n\t\tin.\n\n\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\tYou may also wish to add some basic information to your default profile\n\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\tWe recommend setting your full name, adding a profile photo,\n\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\tperhaps what country you live in; if you do not wish to be more specific\n\t\tthan that.\n\n\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\tIf you are new and do not know anybody here, they may help\n\t\tyou to make some new and interesting friends.\n\n\n\t\tThank you and welcome to %2\$s."] = "\n\t\tThe login details are as follows:\n\t\t\tSite Location:\t%3\$s\n\t\t\tLogin Name:\t%1\$s\n\t\t\tPassword:\t%5\$s\n\n\t\tYou may change your password for your account \"Settings\" after logging\n\t\tin.\n\n\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\tYou may wish to add some basic information to your default profile\n\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\tWe recommend setting your full name, adding a profile photo,\n\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\tperhaps what country you live in, if you do not wish to be more specific\n\t\tthan that.\n\n\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\tIf you are new and do not know anybody here, these settings may help to\n\t\tmake new and interesting friends.\n\n\n\t\tThank you and welcome to %2\$s.";
-$a->strings["Registration details for %s"] = "Registration details for %s";
 $a->strings["Male"] = "Male";
 $a->strings["Female"] = "Female";
 $a->strings["Currently Male"] = "Currently Male";
@@ -165,6 +116,7 @@ $a->strings["Infatuated"] = "Infatuated";
 $a->strings["Dating"] = "Dating";
 $a->strings["Unfaithful"] = "Unfaithful";
 $a->strings["Sex Addict"] = "Sex addict";
+$a->strings["Friends"] = "Friends";
 $a->strings["Friends/Benefits"] = "Friends with benefits";
 $a->strings["Casual"] = "Casual";
 $a->strings["Engaged"] = "Engaged";
@@ -186,211 +138,8 @@ $a->strings["Uncertain"] = "Uncertain";
 $a->strings["It's complicated"] = "It's complicated";
 $a->strings["Don't care"] = "Don't care";
 $a->strings["Ask me"] = "Ask me";
-$a->strings["System"] = "System";
-$a->strings["Network"] = "Network";
-$a->strings["Personal"] = "Personal";
-$a->strings["Home"] = "Home";
-$a->strings["Introductions"] = "Introductions";
-$a->strings["%s commented on %s's post"] = "%s commented on %s's post";
-$a->strings["%s created a new post"] = "%s posted something new";
-$a->strings["%s liked %s's post"] = "%s liked %s's post";
-$a->strings["%s disliked %s's post"] = "%s disliked %s's post";
-$a->strings["%s is attending %s's event"] = "%s is going to %s's event";
-$a->strings["%s is not attending %s's event"] = "%s is not going to %s's event";
-$a->strings["%s may attend %s's event"] = "%s may go to %s's event";
-$a->strings["%s is now friends with %s"] = "%s is now friends with %s";
-$a->strings["Friend Suggestion"] = "Friend suggestion";
-$a->strings["Friend/Connect Request"] = "Friend/Contact request";
-$a->strings["New Follower"] = "New follower";
-$a->strings["Wall Photos"] = "Wall photos";
-$a->strings["Daily posting limit of %d posts reached. The post was rejected."] = "Daily posting limit of %d posts reached. This post was rejected.";
-$a->strings["Weekly posting limit of %d posts reached. The post was rejected."] = "Weekly posting limit of %d posts reached. This post was rejected.";
-$a->strings["Monthly posting limit of %d posts reached. The post was rejected."] = "Monthly posting limit of %d posts reached. This post was rejected.";
-$a->strings["Logged out."] = "Logged out.";
-$a->strings["Login failed."] = "Login failed.";
-$a->strings["Image/photo"] = "Image/Photo";
-$a->strings["<a href=\"%1\$s\" target=\"_blank\">%2\$s</a> %3\$s"] = "<a href=\"%1\$s\" target=\"_blank\">%2\$s</a> %3\$s";
-$a->strings["$1 wrote:"] = "$1 wrote:";
-$a->strings["Encrypted content"] = "Encrypted content";
-$a->strings["Invalid source protocol"] = "Invalid source protocol";
-$a->strings["Invalid link protocol"] = "Invalid link protocol";
 $a->strings["Cannot locate DNS info for database server '%s'"] = "Cannot locate DNS info for database server '%s'";
-$a->strings["(no subject)"] = "(no subject)";
-$a->strings["noreply"] = "noreply";
-$a->strings["l F d, Y \\@ g:i A"] = "l F d, Y \\@ g:i A";
-$a->strings["Starts:"] = "Starts:";
-$a->strings["Finishes:"] = "Finishes:";
-$a->strings["Location:"] = "Location:";
-$a->strings["all-day"] = "All-day";
-$a->strings["Sun"] = "Sun";
-$a->strings["Mon"] = "Mon";
-$a->strings["Tue"] = "Tue";
-$a->strings["Wed"] = "Wed";
-$a->strings["Thu"] = "Thu";
-$a->strings["Fri"] = "Fri";
-$a->strings["Sat"] = "Sat";
-$a->strings["Sunday"] = "Sunday";
-$a->strings["Monday"] = "Monday";
-$a->strings["Tuesday"] = "Tuesday";
-$a->strings["Wednesday"] = "Wednesday";
-$a->strings["Thursday"] = "Thursday";
-$a->strings["Friday"] = "Friday";
-$a->strings["Saturday"] = "Saturday";
-$a->strings["Jan"] = "Jan";
-$a->strings["Feb"] = "Feb";
-$a->strings["Mar"] = "Mar";
-$a->strings["Apr"] = "Apr";
-$a->strings["May"] = "May";
-$a->strings["Jun"] = "Jun";
-$a->strings["Jul"] = "Jul";
-$a->strings["Aug"] = "Aug";
-$a->strings["Sept"] = "Sep";
-$a->strings["Oct"] = "Oct";
-$a->strings["Nov"] = "Nov";
-$a->strings["Dec"] = "Dec";
-$a->strings["January"] = "January";
-$a->strings["February"] = "February";
-$a->strings["March"] = "March";
-$a->strings["April"] = "April";
-$a->strings["June"] = "June";
-$a->strings["July"] = "July";
-$a->strings["August"] = "August";
-$a->strings["September"] = "September";
-$a->strings["October"] = "October";
-$a->strings["November"] = "November";
-$a->strings["December"] = "December";
-$a->strings["today"] = "today";
-$a->strings["No events to display"] = "No events to display";
-$a->strings["l, F j"] = "l, F j";
-$a->strings["Edit event"] = "Edit event";
-$a->strings["Delete event"] = "Delete event";
-$a->strings["link to source"] = "Link to source";
-$a->strings["Export"] = "Export";
-$a->strings["Export calendar as ical"] = "Export calendar as ical";
-$a->strings["Export calendar as csv"] = "Export calendar as csv";
-$a->strings["Disallowed profile URL."] = "Disallowed profile URL.";
-$a->strings["Blocked domain"] = "Blocked domain";
-$a->strings["Connect URL missing."] = "Connect URL missing.";
-$a->strings["This site is not configured to allow communications with other networks."] = "This site is not configured to allow communications with other networks.";
-$a->strings["No compatible communication protocols or feeds were discovered."] = "No compatible communication protocols or feeds were discovered.";
-$a->strings["The profile address specified does not provide adequate information."] = "The profile address specified does not provide adequate information.";
-$a->strings["An author or name was not found."] = "An author or name was not found.";
-$a->strings["No browser URL could be matched to this address."] = "No browser URL could be matched to this address.";
-$a->strings["Unable to match @-style Identity Address with a known protocol or email contact."] = "Unable to match @-style identity address with a known protocol or email contact.";
-$a->strings["Use mailto: in front of address to force email check."] = "Use mailto: in front of address to force email check.";
-$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "The profile address specified belongs to a network which has been disabled on this site.";
-$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "Limited profile: This person will be unable to receive direct/private messages from you.";
-$a->strings["Unable to retrieve contact information."] = "Unable to retrieve contact information.";
-$a->strings["[no subject]"] = "[no subject]";
-$a->strings["Nothing new here"] = "Nothing new here";
-$a->strings["Clear notifications"] = "Clear notifications";
-$a->strings["@name, !forum, #tags, content"] = "@name, !forum, #tags, content";
-$a->strings["Logout"] = "Logout";
-$a->strings["End this session"] = "End this session";
-$a->strings["Status"] = "Status";
-$a->strings["Your posts and conversations"] = "My posts and conversations";
-$a->strings["Profile"] = "Profile";
-$a->strings["Your profile page"] = "My profile page";
-$a->strings["Photos"] = "Photos";
-$a->strings["Your photos"] = "My photos";
-$a->strings["Videos"] = "Videos";
-$a->strings["Your videos"] = "My videos";
-$a->strings["Events"] = "Events";
-$a->strings["Your events"] = "My events";
-$a->strings["Personal notes"] = "Personal notes";
-$a->strings["Your personal notes"] = "My personal notes";
-$a->strings["Login"] = "Login";
-$a->strings["Sign in"] = "Sign in";
-$a->strings["Home Page"] = "Home page";
-$a->strings["Register"] = "Sign up now >>";
-$a->strings["Create an account"] = "Create account";
-$a->strings["Help"] = "Help";
-$a->strings["Help and documentation"] = "Help and documentation";
-$a->strings["Apps"] = "Apps";
-$a->strings["Addon applications, utilities, games"] = "Addon applications, utilities, games";
-$a->strings["Search"] = "Search";
-$a->strings["Search site content"] = "Search site content";
-$a->strings["Full Text"] = "Full text";
-$a->strings["Tags"] = "Tags";
-$a->strings["Contacts"] = "Contacts";
-$a->strings["Community"] = "Community";
-$a->strings["Conversations on this site"] = "Public conversations on this site";
-$a->strings["Conversations on the network"] = "Conversations on the network";
-$a->strings["Events and Calendar"] = "Events and calendar";
-$a->strings["Directory"] = "Directory";
-$a->strings["People directory"] = "People directory";
-$a->strings["Information"] = "Information";
-$a->strings["Information about this friendica instance"] = "Information about this Friendica instance";
-$a->strings["Conversations from your friends"] = "My friends' conversations";
-$a->strings["Network Reset"] = "Network reset";
-$a->strings["Load Network page with no filters"] = "Load network page without filters";
-$a->strings["Friend Requests"] = "Friend requests";
-$a->strings["Notifications"] = "Notifications";
-$a->strings["See all notifications"] = "See all notifications";
-$a->strings["Mark as seen"] = "Mark as seen";
-$a->strings["Mark all system notifications seen"] = "Mark all system notifications seen";
-$a->strings["Messages"] = "Messages";
-$a->strings["Private mail"] = "Private messages";
-$a->strings["Inbox"] = "Inbox";
-$a->strings["Outbox"] = "Outbox";
-$a->strings["New Message"] = "New Message";
-$a->strings["Manage"] = "Manage";
-$a->strings["Manage other pages"] = "Manage other pages";
-$a->strings["Delegations"] = "Delegations";
-$a->strings["Delegate Page Management"] = "Delegate Page Management";
-$a->strings["Settings"] = "Settings";
-$a->strings["Account settings"] = "Account settings";
-$a->strings["Profiles"] = "Profiles";
-$a->strings["Manage/Edit Profiles"] = "Manage/Edit profiles";
-$a->strings["Manage/edit friends and contacts"] = "Manage/Edit friends and contacts";
-$a->strings["Admin"] = "Admin";
-$a->strings["Site setup and configuration"] = "Site setup and configuration";
-$a->strings["Navigation"] = "Navigation";
-$a->strings["Site map"] = "Site map";
-$a->strings["view full size"] = "view full size";
 $a->strings["Contact Photos"] = "Contact photos";
-$a->strings["Welcome "] = "Welcome ";
-$a->strings["Please upload a profile photo."] = "Please upload a profile photo.";
-$a->strings["Welcome back "] = "Welcome back ";
-$a->strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "The form security token was incorrect. This probably happened because the form has not been submitted within 3 hours.";
-$a->strings["Add New Contact"] = "Add new contact";
-$a->strings["Enter address or web location"] = "Enter address or web location";
-$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Example: jo@example.com, http://example.com/jo";
-$a->strings["Connect"] = "Connect";
-$a->strings["%d invitation available"] = array(
-       0 => "%d invitation available",
-       1 => "%d invitations available",
-);
-$a->strings["Find People"] = "Find people";
-$a->strings["Enter name or interest"] = "Enter name or interest";
-$a->strings["Connect/Follow"] = "Connect/Follow";
-$a->strings["Examples: Robert Morgenstein, Fishing"] = "Examples: Robert Morgenstein, fishing";
-$a->strings["Find"] = "Find";
-$a->strings["Friend Suggestions"] = "Friend suggestions";
-$a->strings["Similar Interests"] = "Similar interests";
-$a->strings["Random Profile"] = "Random profile";
-$a->strings["Invite Friends"] = "Invite friends";
-$a->strings["View Global Directory"] = "View global directory";
-$a->strings["Networks"] = "Networks";
-$a->strings["All Networks"] = "All networks";
-$a->strings["Everything"] = "Everything";
-$a->strings["Categories"] = "Categories";
-$a->strings["%d contact in common"] = array(
-       0 => "%d contact in common",
-       1 => "%d contacts in common",
-);
-$a->strings["%s\\'s birthday"] = "%s\\'s birthday";
-$a->strings["View Profile"] = "View profile";
-$a->strings["View Status"] = "View status";
-$a->strings["View Photos"] = "View photos";
-$a->strings["Network Posts"] = "Network posts";
-$a->strings["View Contact"] = "View contact";
-$a->strings["Drop Contact"] = "Drop contact";
-$a->strings["Send PM"] = "Send PM";
-$a->strings["Poke"] = "Poke";
-$a->strings["Organisation"] = "Organization";
-$a->strings["News"] = "News";
-$a->strings["Forum"] = "Forum";
 $a->strings["Post to Email"] = "Post to email";
 $a->strings["Connectors disabled, since \"%s\" is enabled."] = "Connectors are disabled since \"%s\" is enabled.";
 $a->strings["Hide your profile details from unknown viewers?"] = "Hide profile details from unknown viewers?";
@@ -430,9 +179,100 @@ $a->strings["Diaspora Connector"] = "Diaspora connector";
 $a->strings["GNU Social Connector"] = "GNU Social connector";
 $a->strings["pnut"] = "Pnut";
 $a->strings["App.net"] = "App.net";
-$a->strings["%1\$s attends %2\$s's %3\$s"] = "%1\$s goes to %2\$s's %3\$s";
-$a->strings["%1\$s doesn't attend %2\$s's %3\$s"] = "%1\$s doesn't go %2\$s's %3\$s";
-$a->strings["%1\$s attends maybe %2\$s's %3\$s"] = "%1\$s might go to %2\$s's %3\$s";
+$a->strings["A deleted group with this name was revived. Existing item permissions <strong>may</strong> apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "A deleted group with this name has been revived. Existing item permissions <strong>may</strong> apply to this group and any future members. If this is not what you intended, please create another group with a different name.";
+$a->strings["Default privacy group for new contacts"] = "Default privacy group for new contacts";
+$a->strings["Everybody"] = "Everybody";
+$a->strings["edit"] = "edit";
+$a->strings["Groups"] = "Groups";
+$a->strings["Edit groups"] = "Edit groups";
+$a->strings["Edit group"] = "Edit group";
+$a->strings["Create a new group"] = "Create new group";
+$a->strings["Group Name: "] = "Group name: ";
+$a->strings["Contacts not in any group"] = "Contacts not in any group";
+$a->strings["add"] = "add";
+$a->strings["View Profile"] = "View profile";
+$a->strings["Connect/Follow"] = "Connect/Follow";
+$a->strings["View Status"] = "View status";
+$a->strings["View Photos"] = "View photos";
+$a->strings["Network Posts"] = "Network posts";
+$a->strings["View Contact"] = "View contact";
+$a->strings["Drop Contact"] = "Drop contact";
+$a->strings["Send PM"] = "Send PM";
+$a->strings["Poke"] = "Poke";
+$a->strings["Organisation"] = "Organization";
+$a->strings["News"] = "News";
+$a->strings["Forum"] = "Forum";
+$a->strings["Forums"] = "Forums";
+$a->strings["External link to forum"] = "External link to forum";
+$a->strings["show more"] = "Show more...";
+$a->strings["System"] = "System";
+$a->strings["Network"] = "Network";
+$a->strings["Personal"] = "Personal";
+$a->strings["Home"] = "Home";
+$a->strings["Introductions"] = "Introductions";
+$a->strings["%s commented on %s's post"] = "%s commented on %s's post";
+$a->strings["%s created a new post"] = "%s posted something new";
+$a->strings["%s liked %s's post"] = "%s liked %s's post";
+$a->strings["%s disliked %s's post"] = "%s disliked %s's post";
+$a->strings["%s is attending %s's event"] = "%s is going to %s's event";
+$a->strings["%s is not attending %s's event"] = "%s is not going to %s's event";
+$a->strings["%s may attend %s's event"] = "%s may go to %s's event";
+$a->strings["%s is now friends with %s"] = "%s is now friends with %s";
+$a->strings["Friend Suggestion"] = "Friend suggestion";
+$a->strings["Friend/Connect Request"] = "Friend/Contact request";
+$a->strings["New Follower"] = "New follower";
+$a->strings["Wall Photos"] = "Wall photos";
+$a->strings["Daily posting limit of %d posts reached. The post was rejected."] = "Daily posting limit of %d posts reached. This post was rejected.";
+$a->strings["Weekly posting limit of %d posts reached. The post was rejected."] = "Weekly posting limit of %d posts reached. This post was rejected.";
+$a->strings["Monthly posting limit of %d posts reached. The post was rejected."] = "Monthly posting limit of %d posts reached. This post was rejected.";
+$a->strings["Profile Photos"] = "Profile photos";
+$a->strings["Logged out."] = "Logged out.";
+$a->strings["Login failed."] = "Login failed.";
+$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID.";
+$a->strings["The error message was:"] = "The error message was:";
+$a->strings["l F d, Y \\@ g:i A"] = "l F d, Y \\@ g:i A";
+$a->strings["Starts:"] = "Starts:";
+$a->strings["Finishes:"] = "Finishes:";
+$a->strings["Location:"] = "Location:";
+$a->strings["Image/photo"] = "Image/Photo";
+$a->strings["<a href=\"%1\$s\" target=\"_blank\">%2\$s</a> %3\$s"] = "<a href=\"%1\$s\" target=\"_blank\">%2\$s</a> %3\$s";
+$a->strings["$1 wrote:"] = "$1 wrote:";
+$a->strings["Encrypted content"] = "Encrypted content";
+$a->strings["Invalid source protocol"] = "Invalid source protocol";
+$a->strings["Invalid link protocol"] = "Invalid link protocol";
+$a->strings["Add New Contact"] = "Add new contact";
+$a->strings["Enter address or web location"] = "Enter address or web location";
+$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Example: jo@example.com, http://example.com/jo";
+$a->strings["Connect"] = "Connect";
+$a->strings["%d invitation available"] = array(
+       0 => "%d invitation available",
+       1 => "%d invitations available",
+);
+$a->strings["Find People"] = "Find people";
+$a->strings["Enter name or interest"] = "Enter name or interest";
+$a->strings["Examples: Robert Morgenstein, Fishing"] = "Examples: Robert Morgenstein, fishing";
+$a->strings["Find"] = "Find";
+$a->strings["Friend Suggestions"] = "Friend suggestions";
+$a->strings["Similar Interests"] = "Similar interests";
+$a->strings["Random Profile"] = "Random profile";
+$a->strings["Invite Friends"] = "Invite friends";
+$a->strings["View Global Directory"] = "View global directory";
+$a->strings["Networks"] = "Networks";
+$a->strings["All Networks"] = "All networks";
+$a->strings["Everything"] = "Everything";
+$a->strings["Categories"] = "Categories";
+$a->strings["%d contact in common"] = array(
+       0 => "%d contact in common",
+       1 => "%d contacts in common",
+);
+$a->strings["event"] = "event";
+$a->strings["status"] = "status";
+$a->strings["photo"] = "photo";
+$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s likes %2\$s's %3\$s";
+$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s doesn't like %2\$s's %3\$s";
+$a->strings["%1\$s attends %2\$s's %3\$s"] = "%1\$s goes to %2\$s's %3\$s";
+$a->strings["%1\$s doesn't attend %2\$s's %3\$s"] = "%1\$s doesn't go %2\$s's %3\$s";
+$a->strings["%1\$s attends maybe %2\$s's %3\$s"] = "%1\$s might go to %2\$s's %3\$s";
 $a->strings["%1\$s is now friends with %2\$s"] = "%1\$s is now friends with %2\$s";
 $a->strings["%1\$s poked %2\$s"] = "%1\$s poked %2\$s";
 $a->strings["%1\$s is currently %2\$s"] = "%1\$s is currently %2\$s";
@@ -530,6 +370,9 @@ $a->strings["\nError %d occurred during database update:\n%s\n"] = "\nError %d o
 $a->strings["Errors encountered performing database changes: "] = "Errors encountered performing database changes: ";
 $a->strings[": Database update"] = ": Database update";
 $a->strings["%s: updating %s table."] = "%s: updating %s table.";
+$a->strings["(no subject)"] = "(no subject)";
+$a->strings["noreply"] = "noreply";
+$a->strings["%s\\'s birthday"] = "%s\\'s birthday";
 $a->strings["Sharing notification from Diaspora network"] = "Sharing notification from Diaspora network";
 $a->strings["Attachments:"] = "Attachments:";
 $a->strings["Friendica Notification"] = "Friendica notification";
@@ -591,21 +434,71 @@ $a->strings["You've received a registration request from '%1\$s' at %2\$s"] = "Y
 $a->strings["You've received a [url=%1\$s]registration request[/url] from %2\$s."] = "You've received a [url=%1\$s]registration request[/url] from %2\$s.";
 $a->strings["Full Name:\t%1\$s\\nSite Location:\t%2\$s\\nLogin Name:\t%3\$s (%4\$s)"] = "Full Name:\t%1\$s\\nSite Location:\t%2\$s\\nLogin Name:\t%3\$s (%4\$s)";
 $a->strings["Please visit %s to approve or reject the request."] = "Please visit %s to approve or reject the request.";
-$a->strings["A deleted group with this name was revived. Existing item permissions <strong>may</strong> apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "A deleted group with this name has been revived. Existing item permissions <strong>may</strong> apply to this group and any future members. If this is not what you intended, please create another group with a different name.";
-$a->strings["Default privacy group for new contacts"] = "Default privacy group for new contacts";
-$a->strings["Everybody"] = "Everybody";
-$a->strings["edit"] = "edit";
-$a->strings["Groups"] = "Groups";
-$a->strings["Edit groups"] = "Edit groups";
-$a->strings["Edit group"] = "Edit group";
-$a->strings["Create a new group"] = "Create new group";
-$a->strings["Group Name: "] = "Group name: ";
-$a->strings["Contacts not in any group"] = "Contacts not in any group";
-$a->strings["add"] = "add";
+$a->strings["all-day"] = "All-day";
+$a->strings["Sun"] = "Sun";
+$a->strings["Mon"] = "Mon";
+$a->strings["Tue"] = "Tue";
+$a->strings["Wed"] = "Wed";
+$a->strings["Thu"] = "Thu";
+$a->strings["Fri"] = "Fri";
+$a->strings["Sat"] = "Sat";
+$a->strings["Sunday"] = "Sunday";
+$a->strings["Monday"] = "Monday";
+$a->strings["Tuesday"] = "Tuesday";
+$a->strings["Wednesday"] = "Wednesday";
+$a->strings["Thursday"] = "Thursday";
+$a->strings["Friday"] = "Friday";
+$a->strings["Saturday"] = "Saturday";
+$a->strings["Jan"] = "Jan";
+$a->strings["Feb"] = "Feb";
+$a->strings["Mar"] = "Mar";
+$a->strings["Apr"] = "Apr";
+$a->strings["May"] = "May";
+$a->strings["Jun"] = "Jun";
+$a->strings["Jul"] = "Jul";
+$a->strings["Aug"] = "Aug";
+$a->strings["Sept"] = "Sep";
+$a->strings["Oct"] = "Oct";
+$a->strings["Nov"] = "Nov";
+$a->strings["Dec"] = "Dec";
+$a->strings["January"] = "January";
+$a->strings["February"] = "February";
+$a->strings["March"] = "March";
+$a->strings["April"] = "April";
+$a->strings["June"] = "June";
+$a->strings["July"] = "July";
+$a->strings["August"] = "August";
+$a->strings["September"] = "September";
+$a->strings["October"] = "October";
+$a->strings["November"] = "November";
+$a->strings["December"] = "December";
+$a->strings["today"] = "today";
+$a->strings["No events to display"] = "No events to display";
+$a->strings["l, F j"] = "l, F j";
+$a->strings["Edit event"] = "Edit event";
+$a->strings["Delete event"] = "Delete event";
+$a->strings["link to source"] = "Link to source";
+$a->strings["Export"] = "Export";
+$a->strings["Export calendar as ical"] = "Export calendar as ical";
+$a->strings["Export calendar as csv"] = "Export calendar as csv";
+$a->strings["Disallowed profile URL."] = "Disallowed profile URL.";
+$a->strings["Blocked domain"] = "Blocked domain";
+$a->strings["Connect URL missing."] = "Connect URL missing.";
+$a->strings["This site is not configured to allow communications with other networks."] = "This site is not configured to allow communications with other networks.";
+$a->strings["No compatible communication protocols or feeds were discovered."] = "No compatible communication protocols or feeds were discovered.";
+$a->strings["The profile address specified does not provide adequate information."] = "The profile address specified does not provide adequate information.";
+$a->strings["An author or name was not found."] = "An author or name was not found.";
+$a->strings["No browser URL could be matched to this address."] = "No browser URL could be matched to this address.";
+$a->strings["Unable to match @-style Identity Address with a known protocol or email contact."] = "Unable to match @-style identity address with a known protocol or email contact.";
+$a->strings["Use mailto: in front of address to force email check."] = "Use mailto: in front of address to force email check.";
+$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "The profile address specified belongs to a network which has been disabled on this site.";
+$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "Limited profile: This person will be unable to receive direct/private messages from you.";
+$a->strings["Unable to retrieve contact information."] = "Unable to retrieve contact information.";
 $a->strings["Requested account is not available."] = "Requested account is unavailable.";
 $a->strings["Requested profile is not available."] = "Requested profile is unavailable.";
 $a->strings["Edit profile"] = "Edit profile";
 $a->strings["Atom feed"] = "Atom feed";
+$a->strings["Profiles"] = "Profiles";
 $a->strings["Manage/edit profiles"] = "Manage/Edit profiles";
 $a->strings["Change profile photo"] = "Change profile photo";
 $a->strings["Create New Profile"] = "Create new profile";
@@ -626,6 +519,7 @@ $a->strings["Birthdays this week:"] = "Birthdays this week:";
 $a->strings["[No description]"] = "[No description]";
 $a->strings["Event Reminders"] = "Event reminders";
 $a->strings["Events this week:"] = "Events this week:";
+$a->strings["Profile"] = "Profile";
 $a->strings["Full Name:"] = "Full name:";
 $a->strings["j F, Y"] = "j F, Y";
 $a->strings["j F"] = "j F";
@@ -650,17 +544,85 @@ $a->strings["School/education:"] = "School/Education:";
 $a->strings["Forums:"] = "Forums:";
 $a->strings["Basic"] = "Basic";
 $a->strings["Advanced"] = "Advanced";
+$a->strings["Status"] = "Status";
 $a->strings["Status Messages and Posts"] = "Status Messages and Posts";
 $a->strings["Profile Details"] = "Profile Details";
+$a->strings["Photos"] = "Photos";
 $a->strings["Photo Albums"] = "Photo Albums";
+$a->strings["Videos"] = "Videos";
+$a->strings["Events"] = "Events";
+$a->strings["Events and Calendar"] = "Events and calendar";
 $a->strings["Personal Notes"] = "Personal notes";
 $a->strings["Only You Can See This"] = "Only you can see this.";
+$a->strings["Contacts"] = "Contacts";
 $a->strings["[Name Withheld]"] = "[Name Withheld]";
 $a->strings["Item not found."] = "Item not found.";
 $a->strings["Do you really want to delete this item?"] = "Do you really want to delete this item?";
 $a->strings["Yes"] = "Yes";
 $a->strings["Permission denied."] = "Permission denied.";
 $a->strings["Archives"] = "Archives";
+$a->strings["%1\$s is attending %2\$s's %3\$s"] = "%1\$s is going to %2\$s's %3\$s";
+$a->strings["%1\$s is not attending %2\$s's %3\$s"] = "%1\$s is not going to %2\$s's %3\$s";
+$a->strings["%1\$s may attend %2\$s's %3\$s"] = "%1\$s may go to %2\$s's %3\$s";
+$a->strings["[no subject]"] = "[no subject]";
+$a->strings["Nothing new here"] = "Nothing new here";
+$a->strings["Clear notifications"] = "Clear notifications";
+$a->strings["@name, !forum, #tags, content"] = "@name, !forum, #tags, content";
+$a->strings["Logout"] = "Logout";
+$a->strings["End this session"] = "End this session";
+$a->strings["Your posts and conversations"] = "My posts and conversations";
+$a->strings["Your profile page"] = "My profile page";
+$a->strings["Your photos"] = "My photos";
+$a->strings["Your videos"] = "My videos";
+$a->strings["Your events"] = "My events";
+$a->strings["Personal notes"] = "Personal notes";
+$a->strings["Your personal notes"] = "My personal notes";
+$a->strings["Login"] = "Login";
+$a->strings["Sign in"] = "Sign in";
+$a->strings["Home Page"] = "Home page";
+$a->strings["Register"] = "Sign up now >>";
+$a->strings["Create an account"] = "Create account";
+$a->strings["Help"] = "Help";
+$a->strings["Help and documentation"] = "Help and documentation";
+$a->strings["Apps"] = "Apps";
+$a->strings["Addon applications, utilities, games"] = "Addon applications, utilities, games";
+$a->strings["Search"] = "Search";
+$a->strings["Search site content"] = "Search site content";
+$a->strings["Full Text"] = "Full text";
+$a->strings["Tags"] = "Tags";
+$a->strings["Community"] = "Community";
+$a->strings["Conversations on this site"] = "Public conversations on this site";
+$a->strings["Conversations on the network"] = "Conversations on the network";
+$a->strings["Directory"] = "Directory";
+$a->strings["People directory"] = "People directory";
+$a->strings["Information"] = "Information";
+$a->strings["Information about this friendica instance"] = "Information about this Friendica instance";
+$a->strings["Conversations from your friends"] = "My friends' conversations";
+$a->strings["Network Reset"] = "Network reset";
+$a->strings["Load Network page with no filters"] = "Load network page without filters";
+$a->strings["Friend Requests"] = "Friend requests";
+$a->strings["Notifications"] = "Notifications";
+$a->strings["See all notifications"] = "See all notifications";
+$a->strings["Mark as seen"] = "Mark as seen";
+$a->strings["Mark all system notifications seen"] = "Mark all system notifications seen";
+$a->strings["Messages"] = "Messages";
+$a->strings["Private mail"] = "Private messages";
+$a->strings["Inbox"] = "Inbox";
+$a->strings["Outbox"] = "Outbox";
+$a->strings["New Message"] = "New Message";
+$a->strings["Manage"] = "Manage";
+$a->strings["Manage other pages"] = "Manage other pages";
+$a->strings["Delegations"] = "Delegations";
+$a->strings["Delegate Page Management"] = "Delegate Page Management";
+$a->strings["Settings"] = "Settings";
+$a->strings["Account settings"] = "Account settings";
+$a->strings["Manage/Edit Profiles"] = "Manage/Edit profiles";
+$a->strings["Manage/edit friends and contacts"] = "Manage/Edit friends and contacts";
+$a->strings["Admin"] = "Admin";
+$a->strings["Site setup and configuration"] = "Site setup and configuration";
+$a->strings["Navigation"] = "Navigation";
+$a->strings["Site map"] = "Site map";
+$a->strings["view full size"] = "view full size";
 $a->strings["Embedded content"] = "Embedded content";
 $a->strings["Embedding disabled"] = "Embedding disabled";
 $a->strings["%s is now following %s."] = "%s is now following %s.";
@@ -670,6 +632,10 @@ $a->strings["stopped following"] = "stopped following";
 $a->strings["Click here to upgrade."] = "Click here to upgrade.";
 $a->strings["This action exceeds the limits set by your subscription plan."] = "This action exceeds the limits set by your subscription plan.";
 $a->strings["This action is not available under your subscription plan."] = "This action is not available under your subscription plan.";
+$a->strings["Welcome "] = "Welcome ";
+$a->strings["Please upload a profile photo."] = "Please upload a profile photo.";
+$a->strings["Welcome back "] = "Welcome back ";
+$a->strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "The form security token was incorrect. This probably happened because the form has not been submitted within 3 hours.";
 $a->strings["newer"] = "Later posts";
 $a->strings["older"] = "Earlier posts";
 $a->strings["first"] = "first";
@@ -729,20 +695,53 @@ $a->strings["comment"] = array(
 );
 $a->strings["post"] = "post";
 $a->strings["Item filed"] = "Item filed";
-$a->strings["No friends to display."] = "No friends to display.";
-$a->strings["Authorize application connection"] = "Authorize application connection";
-$a->strings["Return to your app and insert this Securty Code:"] = "Return to your app and insert this security code:";
-$a->strings["Please login to continue."] = "Please login to continue.";
-$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Do you want to authorize this application to access your posts and contacts and create new posts for you?";
-$a->strings["No"] = "No";
-$a->strings["You must be logged in to use addons. "] = "You must be logged in to use addons. ";
-$a->strings["Applications"] = "Applications";
-$a->strings["No installed applications."] = "No installed applications.";
-$a->strings["Item not available."] = "Item not available.";
-$a->strings["Item was not found."] = "Item was not found.";
-$a->strings["Source (bbcode) text:"] = "Source (bbcode) text:";
-$a->strings["Source (Diaspora) text to convert to BBcode:"] = "Source (Diaspora) text to convert to BBcode:";
-$a->strings["Source input: "] = "Source input: ";
+$a->strings["Error decoding account file"] = "Error decoding account file";
+$a->strings["Error! No version data in file! This is not a Friendica account file?"] = "Error! No version data in file! Is this a Friendica account file?";
+$a->strings["Error! Cannot check nickname"] = "Error! Cannot check nickname.";
+$a->strings["User '%s' already exists on this server!"] = "User '%s' already exists on this server!";
+$a->strings["User creation error"] = "User creation error";
+$a->strings["User profile creation error"] = "User profile creation error";
+$a->strings["%d contact not imported"] = array(
+       0 => "%d contact not imported",
+       1 => "%d contacts not imported",
+);
+$a->strings["Done. You can now login with your username and password"] = "Done. You can now login with your username and password";
+$a->strings["Passwords do not match. Password unchanged."] = "Passwords do not match. Password unchanged.";
+$a->strings["An invitation is required."] = "An invitation is required.";
+$a->strings["Invitation could not be verified."] = "Invitation could not be verified.";
+$a->strings["Invalid OpenID url"] = "Invalid OpenID URL";
+$a->strings["Please enter the required information."] = "Please enter the required information.";
+$a->strings["Please use a shorter name."] = "Please use a shorter name.";
+$a->strings["Name too short."] = "Name too short.";
+$a->strings["That doesn't appear to be your full (First Last) name."] = "That doesn't appear to be your full (i.e first and last) name.";
+$a->strings["Your email domain is not among those allowed on this site."] = "Your email domain is not allowed on this site.";
+$a->strings["Not a valid email address."] = "Not a valid email address.";
+$a->strings["Cannot use that email."] = "Cannot use that email.";
+$a->strings["Your \"nickname\" can only contain \"a-z\", \"0-9\" and \"_\"."] = "Your \"nickname\" can only contain \"a-z\", \"0-9\" and \"_\".";
+$a->strings["Nickname is already registered. Please choose another."] = "Nickname is already registered. Please choose another.";
+$a->strings["Nickname was once registered here and may not be re-used. Please choose another."] = "Nickname was once registered here and may not be re-used. Please choose another.";
+$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "SERIOUS ERROR: Generation of security keys failed.";
+$a->strings["An error occurred during registration. Please try again."] = "An error occurred during registration. Please try again.";
+$a->strings["default"] = "default";
+$a->strings["An error occurred creating your default profile. Please try again."] = "An error occurred creating your default profile. Please try again.";
+$a->strings["\n\t\tDear %1\$s,\n\t\t\tThank you for registering at %2\$s. Your account is pending for approval by the administrator.\n\t"] = "\n\t\tDear %1\$s,\n\t\t\tThank you for signing up at %2\$s. Your account is pending approval by the administrator.\n\t";
+$a->strings["Registration at %s"] = "Registration at %s";
+$a->strings["\n\t\tDear %1\$s,\n\t\t\tThank you for registering at %2\$s. Your account has been created.\n\t"] = "\n\t\tDear %1\$s,\n\t\t\tThank you for signing up at %2\$s. Your account has been created.\n\t";
+$a->strings["\n\t\tThe login details are as follows:\n\t\t\tSite Location:\t%3\$s\n\t\t\tLogin Name:\t%1\$s\n\t\t\tPassword:\t%5\$s\n\n\t\tYou may change your password from your account \"Settings\" page after logging\n\t\tin.\n\n\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\tYou may also wish to add some basic information to your default profile\n\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\tWe recommend setting your full name, adding a profile photo,\n\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\tperhaps what country you live in; if you do not wish to be more specific\n\t\tthan that.\n\n\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\tIf you are new and do not know anybody here, they may help\n\t\tyou to make some new and interesting friends.\n\n\n\t\tThank you and welcome to %2\$s."] = "\n\t\tThe login details are as follows:\n\t\t\tSite Location:\t%3\$s\n\t\t\tLogin Name:\t%1\$s\n\t\t\tPassword:\t%5\$s\n\n\t\tYou may change your password for your account \"Settings\" after logging\n\t\tin.\n\n\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\tYou may wish to add some basic information to your default profile\n\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\tWe recommend setting your full name, adding a profile photo,\n\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\tperhaps what country you live in, if you do not wish to be more specific\n\t\tthan that.\n\n\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\tIf you are new and do not know anybody here, these settings may help to\n\t\tmake new and interesting friends.\n\n\n\t\tThank you and welcome to %2\$s.";
+$a->strings["Registration details for %s"] = "Registration details for %s";
+$a->strings["Authorize application connection"] = "Authorize application connection";
+$a->strings["Return to your app and insert this Securty Code:"] = "Return to your app and insert this security code:";
+$a->strings["Please login to continue."] = "Please login to continue.";
+$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Do you want to authorize this application to access your posts and contacts and create new posts for you?";
+$a->strings["No"] = "No";
+$a->strings["You must be logged in to use addons. "] = "You must be logged in to use addons. ";
+$a->strings["Applications"] = "Applications";
+$a->strings["No installed applications."] = "No installed applications.";
+$a->strings["Item not available."] = "Item not available.";
+$a->strings["Item was not found."] = "Item was not found.";
+$a->strings["Source (bbcode) text:"] = "Source (bbcode) text:";
+$a->strings["Source (Diaspora) text to convert to BBcode:"] = "Source (Diaspora) text to convert to BBcode:";
+$a->strings["Source input: "] = "Source input: ";
 $a->strings["bb2html (raw HTML): "] = "bb2html (raw HTML): ";
 $a->strings["bb2html: "] = "bb2html: ";
 $a->strings["bb2html2bb: "] = "bb2html2bb: ";
@@ -752,61 +751,8 @@ $a->strings["bb2dia2bb: "] = "bb2dia2bb: ";
 $a->strings["bb2md2html2bb: "] = "bb2md2html2bb: ";
 $a->strings["Source input (Diaspora format): "] = "Source input (Diaspora format): ";
 $a->strings["diaspora2bb: "] = "diaspora2bb: ";
-$a->strings["The post was created"] = "The post was created";
-$a->strings["Access to this profile has been restricted."] = "Access to this profile has been restricted.";
-$a->strings["View"] = "View";
-$a->strings["Previous"] = "Previous";
-$a->strings["Next"] = "Next";
-$a->strings["list"] = "List";
-$a->strings["User not found"] = "User not found";
-$a->strings["This calendar format is not supported"] = "This calendar format is not supported";
-$a->strings["No exportable data found"] = "No exportable data found";
-$a->strings["calendar"] = "calendar";
 $a->strings["No contacts in common."] = "No contacts in common.";
 $a->strings["Common Friends"] = "Common friends";
-$a->strings["No such group"] = "No such group";
-$a->strings["Group is empty"] = "Group is empty";
-$a->strings["Group: %s"] = "Group: %s";
-$a->strings["This entry was edited"] = "This entry was edited";
-$a->strings["%d comment"] = array(
-       0 => "%d comment",
-       1 => "%d comments -",
-);
-$a->strings["Private Message"] = "Private message";
-$a->strings["I like this (toggle)"] = "I like this (toggle)";
-$a->strings["like"] = "Like";
-$a->strings["I don't like this (toggle)"] = "I don't like this (toggle)";
-$a->strings["dislike"] = "Dislike";
-$a->strings["Share this"] = "Share this";
-$a->strings["share"] = "Share";
-$a->strings["This is you"] = "This is me";
-$a->strings["Comment"] = "Comment";
-$a->strings["Submit"] = "Submit";
-$a->strings["Bold"] = "Bold";
-$a->strings["Italic"] = "Italic";
-$a->strings["Underline"] = "Underline";
-$a->strings["Quote"] = "Quote";
-$a->strings["Code"] = "Code";
-$a->strings["Image"] = "Image";
-$a->strings["Link"] = "Link";
-$a->strings["Video"] = "Video";
-$a->strings["Edit"] = "Edit";
-$a->strings["add star"] = "Add star";
-$a->strings["remove star"] = "Remove star";
-$a->strings["toggle star status"] = "Toggle star status";
-$a->strings["starred"] = "Starred";
-$a->strings["add tag"] = "Add tag";
-$a->strings["ignore thread"] = "Ignore thread";
-$a->strings["unignore thread"] = "Unignore thread";
-$a->strings["toggle ignore status"] = "Toggle ignore status";
-$a->strings["ignored"] = "Ignored";
-$a->strings["save to folder"] = "Save to folder";
-$a->strings["I will attend"] = "I will attend";
-$a->strings["I will not attend"] = "I will not attend";
-$a->strings["I might attend"] = "I might attend";
-$a->strings["to"] = "to";
-$a->strings["Wall-to-Wall"] = "Wall-to-wall";
-$a->strings["via Wall-To-Wall:"] = "via wall-to-wall:";
 $a->strings["Credits"] = "Credits";
 $a->strings["Friendica is a community project, that would not be possible without the help of many people. Here is a list of those who have contributed to the code or the translation of Friendica. Thank you all!"] = "Friendica is a community project that would not be possible without the help of many people. Here is a list of those who have contributed to the code or the translation of Friendica. Thank you all!";
 $a->strings["Contact settings applied."] = "Contact settings applied.";
@@ -819,6 +765,7 @@ $a->strings["Mirror as forwarded posting"] = "Mirror as forwarded posting";
 $a->strings["Mirror as my own posting"] = "Mirror as my own posting";
 $a->strings["Return to contact editor"] = "Return to contact editor";
 $a->strings["Refetch contact data"] = "Re-fetch contact data.";
+$a->strings["Submit"] = "Submit";
 $a->strings["Remote Self"] = "Remote self";
 $a->strings["Mirror postings from this contact"] = "Mirror postings from this contact:";
 $a->strings["Mark this contact as remote_self, this will cause friendica to repost new entries from this contact."] = "This will cause Friendica to repost new entries from this contact.";
@@ -831,211 +778,13 @@ $a->strings["Friend Confirm URL"] = "Friend confirm URL:";
 $a->strings["Notification Endpoint URL"] = "Notification endpoint URL";
 $a->strings["Poll/Feed URL"] = "Poll/Feed URL:";
 $a->strings["New photo from this URL"] = "New photo from this URL:";
-$a->strings["No potential page delegates located."] = "No potential page delegates found.";
-$a->strings["Delegates are able to manage all aspects of this account/page except for basic account settings. Please do not delegate your personal account to anybody that you do not trust completely."] = "Delegates are able to manage all aspects of this account except for key setting features. Please do not delegate your personal account to anybody that you do not trust completely.";
-$a->strings["Existing Page Managers"] = "Existing page managers";
-$a->strings["Existing Page Delegates"] = "Existing page delegates";
-$a->strings["Potential Delegates"] = "Potential delegates";
-$a->strings["Remove"] = "Remove";
-$a->strings["Add"] = "Add";
-$a->strings["No entries."] = "No entries.";
-$a->strings["Profile not found."] = "Profile not found.";
-$a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = "This may occasionally happen if contact was requested by both persons and it has already been approved.";
-$a->strings["Response from remote site was not understood."] = "Response from remote site was not understood.";
-$a->strings["Unexpected response from remote site: "] = "Unexpected response from remote site: ";
-$a->strings["Confirmation completed successfully."] = "Confirmation completed successfully.";
-$a->strings["Remote site reported: "] = "Remote site reported: ";
-$a->strings["Temporary failure. Please wait and try again."] = "Temporary failure. Please wait and try again.";
-$a->strings["Introduction failed or was revoked."] = "Introduction failed or was revoked.";
-$a->strings["Unable to set contact photo."] = "Unable to set contact photo.";
-$a->strings["No user record found for '%s' "] = "No user record found for '%s' ";
-$a->strings["Our site encryption key is apparently messed up."] = "Our site encryption key is apparently messed up.";
-$a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "An empty URL was provided or the URL could not be decrypted by us.";
-$a->strings["Contact record was not found for you on our site."] = "Contact record was not found for you on our site.";
-$a->strings["Site public key not available in contact record for URL %s."] = "Site public key not available in contact record for URL %s.";
-$a->strings["The ID provided by your system is a duplicate on our system. It should work if you try again."] = "The ID provided by your system is a duplicate on our system. It should work if you try again.";
-$a->strings["Unable to set your contact credentials on our system."] = "Unable to set your contact credentials on our system.";
-$a->strings["Unable to update your contact profile details on our system"] = "Unable to update your contact profile details on our system";
-$a->strings["%1\$s has joined %2\$s"] = "%1\$s has joined %2\$s";
-$a->strings["%1\$s welcomes %2\$s"] = "%1\$s welcomes %2\$s";
-$a->strings["Public access denied."] = "Public access denied.";
-$a->strings["Global Directory"] = "Global Directory";
-$a->strings["Find on this site"] = "Find on this site";
-$a->strings["Results for:"] = "Results for:";
-$a->strings["Site Directory"] = "Site directory";
-$a->strings["No entries (some entries may be hidden)."] = "No entries (entries may be hidden).";
-$a->strings["Item not found"] = "Item not found";
-$a->strings["Edit post"] = "Edit post";
-$a->strings["Files"] = "Files";
 $a->strings["- select -"] = "- select -";
-$a->strings["This is Friendica, version"] = "This is Friendica, version";
-$a->strings["running at web location"] = "running at web location";
-$a->strings["Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn more about the Friendica project."] = "Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn more about the Friendica project.";
-$a->strings["Bug reports and issues: please visit"] = "Bug reports and issues: please visit";
-$a->strings["the bugtracker at github"] = "the bugtracker at github";
-$a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"] = "Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com";
-$a->strings["Installed plugins/addons/apps:"] = "Installed plugins/addons/apps:";
-$a->strings["No installed plugins/addons/apps"] = "No installed plugins/addons/apps";
-$a->strings["On this server the following remote servers are blocked."] = "On this server the following remote servers are blocked.";
-$a->strings["Reason for the block"] = "Reason for the block";
 $a->strings["Friend suggestion sent."] = "Friend suggestion sent";
 $a->strings["Suggest Friends"] = "Suggest friends";
 $a->strings["Suggest a friend for %s"] = "Suggest a friend for %s";
-$a->strings["Group created."] = "Group created.";
-$a->strings["Could not create group."] = "Could not create group.";
-$a->strings["Group not found."] = "Group not found.";
-$a->strings["Group name changed."] = "Group name changed.";
-$a->strings["Permission denied"] = "Permission denied";
-$a->strings["Save Group"] = "Save group";
-$a->strings["Create a group of contacts/friends."] = "Create a group of contacts/friends.";
-$a->strings["Group removed."] = "Group removed.";
-$a->strings["Unable to remove group."] = "Unable to remove group.";
-$a->strings["Delete Group"] = "Delete group";
-$a->strings["Group Editor"] = "Group Editor";
-$a->strings["Edit Group Name"] = "Edit group name";
-$a->strings["Members"] = "Members";
-$a->strings["All Contacts"] = "All contacts";
-$a->strings["Remove Contact"] = "Remove contact";
-$a->strings["Add Contact"] = "Add contact";
-$a->strings["Click on a contact to add or remove."] = "Click on a contact to add or remove.";
-$a->strings["No profile"] = "No profile";
-$a->strings["Welcome to %s"] = "Welcome to %s";
-$a->strings["Friendica Communications Server - Setup"] = "Friendica Communications Server - Setup";
-$a->strings["Could not connect to database."] = "Could not connect to database.";
-$a->strings["Could not create table."] = "Could not create table.";
-$a->strings["Your Friendica site database has been installed."] = "Your Friendica site database has been installed.";
-$a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = "You may need to import the file \"database.sql\" manually using phpmyadmin or mysql.";
-$a->strings["Please see the file \"INSTALL.txt\"."] = "Please see the file \"INSTALL.txt\".";
-$a->strings["Database already in use."] = "Database already in use.";
-$a->strings["System check"] = "System check";
-$a->strings["Check again"] = "Check again";
-$a->strings["Database connection"] = "Database connection";
-$a->strings["In order to install Friendica we need to know how to connect to your database."] = "In order to install Friendica we need to know how to connect to your database.";
-$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Please contact your hosting provider or site administrator if you have questions about these settings.";
-$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "The database you specify below should already exist. If it does not, please create it before continuing.";
-$a->strings["Database Server Name"] = "Database server name";
-$a->strings["Database Login Name"] = "Database login name";
-$a->strings["Database Login Password"] = "Database login password";
-$a->strings["For security reasons the password must not be empty"] = "For security reasons the password must not be empty";
-$a->strings["Database Name"] = "Database name";
-$a->strings["Site administrator email address"] = "Site administrator email address";
-$a->strings["Your account email address must match this in order to use the web admin panel."] = "Your account email address must match this in order to use the web admin panel.";
-$a->strings["Please select a default timezone for your website"] = "Please select a default time zone for your website";
-$a->strings["Site settings"] = "Site settings";
-$a->strings["System Language:"] = "System language:";
-$a->strings["Set the default language for your Friendica installation interface and to send emails."] = "Set the default language for your Friendica installation interface and email communication.";
-$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Could not find a command line version of PHP in the web server PATH.";
-$a->strings["If you don't have a command line version of PHP installed on server, you will not be able to run the background processing. See <a href='https://github.com/friendica/friendica/blob/master/doc/Install.md#set-up-the-poller'>'Setup the poller'</a>"] = "If you don't have a command line version of PHP installed on your server, you will not be able to run the background processing. See <a href='https://github.com/friendica/friendica/blob/master/doc/Install.md#set-up-the-poller'>'Setup the poller'</a>";
-$a->strings["PHP executable path"] = "PHP executable path";
-$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Enter full path to php executable. You can leave this blank to continue the installation.";
-$a->strings["Command line PHP"] = "Command line PHP";
-$a->strings["PHP executable is not the php cli binary (could be cgi-fgci version)"] = "PHP executable is not a php cli binary; it could possibly be a cgi-fgci version.";
-$a->strings["Found PHP version: "] = "Found PHP version: ";
-$a->strings["PHP cli binary"] = "PHP cli binary";
-$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "The command line version of PHP on your system does not have \"register_argc_argv\" enabled.";
-$a->strings["This is required for message delivery to work."] = "This is required for message delivery to work.";
-$a->strings["PHP register_argc_argv"] = "PHP register_argc_argv";
-$a->strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys";
-$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "If running under Windows OS, please see \"http://www.php.net/manual/en/openssl.installation.php\".";
-$a->strings["Generate encryption keys"] = "Generate encryption keys";
-$a->strings["libCurl PHP module"] = "libCurl PHP module";
-$a->strings["GD graphics PHP module"] = "GD graphics PHP module";
-$a->strings["OpenSSL PHP module"] = "OpenSSL PHP module";
-$a->strings["PDO or MySQLi PHP module"] = "PDO or MySQLi PHP module";
-$a->strings["mb_string PHP module"] = "mb_string PHP module";
-$a->strings["XML PHP module"] = "XML PHP module";
-$a->strings["iconv module"] = "iconv module";
-$a->strings["Apache mod_rewrite module"] = "Apache mod_rewrite module";
-$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Error: Apache web server mod-rewrite module is required but not installed.";
-$a->strings["Error: libCURL PHP module required but not installed."] = "Error: libCURL PHP module required but not installed.";
-$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Error: GD graphics PHP module with JPEG support required but not installed.";
-$a->strings["Error: openssl PHP module required but not installed."] = "Error: openssl PHP module required but not installed.";
-$a->strings["Error: PDO or MySQLi PHP module required but not installed."] = "Error: PDO or MySQLi PHP module required but not installed.";
-$a->strings["Error: The MySQL driver for PDO is not installed."] = "Error: MySQL driver for PDO is not installed.";
-$a->strings["Error: mb_string PHP module required but not installed."] = "Error: mb_string PHP module required but not installed.";
-$a->strings["Error: iconv PHP module required but not installed."] = "Error: iconv PHP module required but not installed.";
-$a->strings["Error, XML PHP module required but not installed."] = "Error, XML PHP module required but not installed.";
-$a->strings["The web installer needs to be able to create a file called \".htconfig.php\" in the top folder of your web server and it is unable to do so."] = "The web installer needs to be able to create a file called \".htconfig.php\" in the top-level directory of your web server, but it is unable to do so.";
-$a->strings["This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can."] = "This is most often a permission setting issue, as the web server may not be able to write files in your directory - even if you can.";
-$a->strings["At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Friendica top folder."] = "At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Friendica top-level directory.";
-$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = "Alternatively, you may skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions.";
-$a->strings[".htconfig.php is writable"] = ".htconfig.php is writable";
-$a->strings["Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering.";
-$a->strings["In order to store these compiled templates, the web server needs to have write access to the directory view/smarty3/ under the Friendica top level folder."] = "In order to store these compiled templates, the web server needs to have write access to the directory view/smarty3/ under the Friendica top-level directory.";
-$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Please ensure the user (e.g. www-data) that your web server runs as has write access to this directory.";
-$a->strings["Note: as a security measure, you should give the web server write access to view/smarty3/ only--not the template files (.tpl) that it contains."] = "Note: as a security measure, you should give the web server write access to view/smarty3/ only--not the template files (.tpl) that it contains.";
-$a->strings["view/smarty3 is writable"] = "view/smarty3 is writable";
-$a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = "URL rewrite in .htaccess is not working. Check your server configuration.";
-$a->strings["Url rewrite is working"] = "URL rewrite is working";
-$a->strings["ImageMagick PHP extension is not installed"] = "ImageMagick PHP extension is not installed";
-$a->strings["ImageMagick PHP extension is installed"] = "ImageMagick PHP extension is installed";
-$a->strings["ImageMagick supports GIF"] = "ImageMagick supports GIF";
-$a->strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = "The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root.";
-$a->strings["<h1>What next</h1>"] = "<h1>What next</h1>";
-$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "IMPORTANT: You will need to [manually] setup a scheduled task for the poller.";
-$a->strings["Time Conversion"] = "Time conversion";
-$a->strings["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = "Friendica provides this service for sharing events with other networks and friends in unknown time zones.";
-$a->strings["UTC time: %s"] = "UTC time: %s";
-$a->strings["Current timezone: %s"] = "Current time zone: %s";
-$a->strings["Converted localtime: %s"] = "Converted local time: %s";
-$a->strings["Please select your timezone:"] = "Please select your time zone:";
 $a->strings["Remote privacy information not available."] = "Remote privacy information not available.";
 $a->strings["Visible to:"] = "Visible to:";
-$a->strings["No valid account found."] = "No valid account found.";
-$a->strings["Password reset request issued. Check your email."] = "Password reset request issued. Please check your email.";
-$a->strings["\n\t\tDear %1\$s,\n\t\t\tA request was recently received at \"%2\$s\" to reset your account\n\t\tpassword. In order to confirm this request, please select the verification link\n\t\tbelow or paste it into your web browser address bar.\n\n\t\tIf you did NOT request this change, please DO NOT follow the link\n\t\tprovided and ignore and/or delete this email.\n\n\t\tYour password will not be changed unless we can verify that you\n\t\tissued this request."] = "\n\t\tDear %1\$s,\n\t\t\tA request was issued at \"%2\$s\" to reset your account\n\t\tpassword. In order to confirm this request, please select the verification link\n\t\tbelow or paste it into your web browser address bar.\n\n\t\tIf you did NOT request this change, please DO NOT follow the link\n\t\tprovided and ignore/delete this email.\n\n\t\tYour password will not be changed unless we can verify that you\n\t\tissued this request.";
-$a->strings["\n\t\tFollow this link to verify your identity:\n\n\t\t%1\$s\n\n\t\tYou will then receive a follow-up message containing the new password.\n\t\tYou may change that password from your account settings page after logging in.\n\n\t\tThe login details are as follows:\n\n\t\tSite Location:\t%2\$s\n\t\tLogin Name:\t%3\$s"] = "\n\t\tFollow this link to verify your identity:\n\n\t\t%1\$s\n\n\t\tYou will then receive a follow-up message containing the new password.\n\t\tYou may change that password from your account settings page after logging in.\n\n\t\tThe login details are as follows:\n\n\t\tSite Location:\t%2\$s\n\t\tLogin Name:\t%3\$s";
-$a->strings["Password reset requested at %s"] = "Password reset requested at %s";
-$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Request could not be verified. (You may have previously submitted it.) Password reset failed.";
-$a->strings["Password Reset"] = "Forgotten password?";
-$a->strings["Your password has been reset as requested."] = "Your password has been reset as requested.";
-$a->strings["Your new password is"] = "Your new password is";
-$a->strings["Save or copy your new password - and then"] = "Save or copy your new password - and then";
-$a->strings["click here to login"] = "click here to login";
-$a->strings["Your password may be changed from the <em>Settings</em> page after successful login."] = "Your password may be changed from the <em>Settings</em> page after successful login.";
-$a->strings["\n\t\t\t\tDear %1\$s,\n\t\t\t\t\tYour password has been changed as requested. Please retain this\n\t\t\t\tinformation for your records (or change your password immediately to\n\t\t\t\tsomething that you will remember).\n\t\t\t"] = "\n\t\t\t\tDear %1\$s,\n\t\t\t\t\tYour password has been changed as requested. Please retain this\n\t\t\t\tinformation for your records or change your password immediately to\n\t\t\t\tsomething that you will remember.\n\t\t\t";
-$a->strings["\n\t\t\t\tYour login details are as follows:\n\n\t\t\t\tSite Location:\t%1\$s\n\t\t\t\tLogin Name:\t%2\$s\n\t\t\t\tPassword:\t%3\$s\n\n\t\t\t\tYou may change that password from your account settings page after logging in.\n\t\t\t"] = "\n\t\t\t\tYour login details are as follows:\n\n\t\t\t\tSite Location:\t%1\$s\n\t\t\t\tLogin Name:\t%2\$s\n\t\t\t\tPassword:\t%3\$s\n\n\t\t\t\tYou may change that password from your account settings page after logging in.\n\t\t\t";
-$a->strings["Your password has been changed at %s"] = "Your password has been changed at %s";
-$a->strings["Forgot your Password?"] = "Reset My Password";
-$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Enter email address or nickname to reset your password. You will receive further instruction via email.";
-$a->strings["Nickname or Email: "] = "Nickname or email: ";
-$a->strings["Reset"] = "Reset";
 $a->strings["System down for maintenance"] = "Sorry, the system is currently down for maintenance.";
-$a->strings["Manage Identities and/or Pages"] = "Manage Identities and Pages";
-$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "Accounts that I manage or own.";
-$a->strings["Select an identity to manage: "] = "Select identity:";
-$a->strings["No keywords to match. Please add keywords to your default profile."] = "No keywords to match. Please add keywords to your default profile.";
-$a->strings["is interested in:"] = "is interested in:";
-$a->strings["Profile Match"] = "Profile Match";
-$a->strings["No matches"] = "No matches";
-$a->strings["No recipient selected."] = "No recipient selected.";
-$a->strings["Unable to locate contact information."] = "Unable to locate contact information.";
-$a->strings["Message could not be sent."] = "Message could not be sent.";
-$a->strings["Message collection failure."] = "Message collection failure.";
-$a->strings["Message sent."] = "Message sent.";
-$a->strings["Do you really want to delete this message?"] = "Do you really want to delete this message?";
-$a->strings["Message deleted."] = "Message deleted.";
-$a->strings["Conversation removed."] = "Conversation removed.";
-$a->strings["Send Private Message"] = "Send private message";
-$a->strings["To:"] = "To:";
-$a->strings["Subject:"] = "Subject:";
-$a->strings["Your message:"] = "Your message:";
-$a->strings["No messages."] = "No messages.";
-$a->strings["Message not available."] = "Message not available.";
-$a->strings["Delete message"] = "Delete message";
-$a->strings["Delete conversation"] = "Delete conversation";
-$a->strings["No secure communications available. You <strong>may</strong> be able to respond from the sender's profile page."] = "No secure communications available. You <strong>may</strong> be able to respond from the sender's profile page.";
-$a->strings["Send Reply"] = "Send reply";
-$a->strings["Unknown sender - %s"] = "Unknown sender - %s";
-$a->strings["You and %s"] = "Me and %s";
-$a->strings["%s and You"] = "%s and me";
-$a->strings["D, d M Y - g:i A"] = "D, d M Y - g:i A";
-$a->strings["%d message"] = array(
-       0 => "%d message",
-       1 => "%d messages",
-);
-$a->strings["Mood"] = "Mood";
-$a->strings["Set your current mood and tell your friends"] = "Set your current mood and tell your friends";
 $a->strings["Welcome to Friendica"] = "Welcome to Friendica";
 $a->strings["New Member Checklist"] = "New Member Checklist";
 $a->strings["We would like to offer some tips and links to help make your experience enjoyable. Click any item to visit the relevant page. A link to this page will be visible from your home page for two weeks after your initial registration and then will quietly disappear."] = "We would like to offer some tips and links to help make your experience enjoyable. Click any item to visit the relevant page. A link to this page will be visible from your home page for two weeks after your initial registration and then will quietly disappear.";
@@ -1070,132 +819,14 @@ $a->strings["Our <strong>help</strong> pages may be consulted for detail on othe
 $a->strings["Visit %s's profile [%s]"] = "Visit %s's profile [%s]";
 $a->strings["Edit contact"] = "Edit contact";
 $a->strings["Contacts who are not members of a group"] = "Contacts who are not members of a group";
-$a->strings["Invalid request identifier."] = "Invalid request identifier.";
-$a->strings["Discard"] = "Discard";
-$a->strings["Ignore"] = "Ignore";
-$a->strings["Network Notifications"] = "Network notifications";
-$a->strings["System Notifications"] = "System notifications";
-$a->strings["Personal Notifications"] = "Personal notifications";
-$a->strings["Home Notifications"] = "Home notifications";
-$a->strings["Show Ignored Requests"] = "Show ignored requests.";
-$a->strings["Hide Ignored Requests"] = "Hide ignored requests";
-$a->strings["Notification type: "] = "Notification type: ";
-$a->strings["suggested by %s"] = "suggested by %s";
-$a->strings["Hide this contact from others"] = "Hide this contact from others";
-$a->strings["Post a new friend activity"] = "Post a new friend activity";
-$a->strings["if applicable"] = "if applicable";
-$a->strings["Approve"] = "Approve";
-$a->strings["Claims to be known to you: "] = "Says they know me:";
-$a->strings["yes"] = "yes";
-$a->strings["no"] = "no";
-$a->strings["Shall your connection be bidirectional or not?"] = "Shall your connection be in both directions or not?";
-$a->strings["Accepting %s as a friend allows %s to subscribe to your posts, and you will also receive updates from them in your news feed."] = "Accepting %s as a friend allows %s to subscribe to your posts; you will also receive updates from them in your news feed.";
-$a->strings["Accepting %s as a subscriber allows them to subscribe to your posts, but you will not receive updates from them in your news feed."] = "Accepting %s as a subscriber allows them to subscribe to your posts, but you will not receive updates from them in your news feed.";
-$a->strings["Accepting %s as a sharer allows them to subscribe to your posts, but you will not receive updates from them in your news feed."] = "Accepting %s as a sharer allows them to subscribe to your posts, but you will not receive updates from them in your news feed.";
-$a->strings["Friend"] = "Friend";
-$a->strings["Sharer"] = "Sharer";
-$a->strings["Subscriber"] = "Subscriber";
-$a->strings["Profile URL"] = "Profile URL:";
-$a->strings["No introductions."] = "No introductions.";
-$a->strings["Show unread"] = "Show unread";
-$a->strings["Show all"] = "Show all";
-$a->strings["No more %s notifications."] = "No more %s notifications.";
-$a->strings["No more system notifications."] = "No more system notifications.";
-$a->strings["Post successful."] = "Post successful.";
-$a->strings["OpenID protocol error. No ID returned."] = "OpenID protocol error. No ID returned.";
-$a->strings["Account not found and OpenID registration is not permitted on this site."] = "Account not found and OpenID registration is not permitted on this site.";
-$a->strings["Subscribing to OStatus contacts"] = "Subscribing to OStatus contacts";
-$a->strings["No contact provided."] = "No contact provided.";
-$a->strings["Couldn't fetch information for contact."] = "Couldn't fetch information for contact.";
-$a->strings["Couldn't fetch friends for contact."] = "Couldn't fetch friends for contact.";
-$a->strings["Done"] = "Done";
-$a->strings["success"] = "success";
-$a->strings["failed"] = "failed";
-$a->strings["Keep this window open until done."] = "Keep this window open until done.";
-$a->strings["Not Extended"] = "Not extended";
-$a->strings["Not Found"] = "Not found";
-$a->strings["Recent Photos"] = "Recent photos";
-$a->strings["Upload New Photos"] = "Upload new photos";
-$a->strings["everybody"] = "everybody";
-$a->strings["Contact information unavailable"] = "Contact information unavailable";
-$a->strings["Album not found."] = "Album not found.";
-$a->strings["Delete Album"] = "Delete album";
-$a->strings["Do you really want to delete this photo album and all its photos?"] = "Do you really want to delete this photo album and all its photos?";
-$a->strings["Delete Photo"] = "Delete photo";
-$a->strings["Do you really want to delete this photo?"] = "Do you really want to delete this photo?";
-$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "%1\$s was tagged in %2\$s by %3\$s";
-$a->strings["a photo"] = "a photo";
-$a->strings["Image exceeds size limit of %s"] = "Image exceeds size limit of %s";
-$a->strings["Image file is empty."] = "Image file is empty.";
-$a->strings["Unable to process image."] = "Unable to process image.";
-$a->strings["Image upload failed."] = "Image upload failed.";
-$a->strings["No photos selected"] = "No photos selected";
-$a->strings["Access to this item is restricted."] = "Access to this item is restricted.";
-$a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage.";
-$a->strings["Upload Photos"] = "Upload photos";
-$a->strings["New album name: "] = "New album name: ";
-$a->strings["or existing album name: "] = "or existing album name: ";
-$a->strings["Do not show a status post for this upload"] = "Do not show a status post for this upload";
-$a->strings["Show to Groups"] = "Show to groups";
-$a->strings["Show to Contacts"] = "Show to contacts";
-$a->strings["Private Photo"] = "Private photo";
-$a->strings["Public Photo"] = "Public photo";
-$a->strings["Edit Album"] = "Edit album";
-$a->strings["Show Newest First"] = "Show newest first";
-$a->strings["Show Oldest First"] = "Show oldest first";
-$a->strings["View Photo"] = "View photo";
-$a->strings["Permission denied. Access to this item may be restricted."] = "Permission denied. Access to this item may be restricted.";
-$a->strings["Photo not available"] = "Photo not available";
-$a->strings["View photo"] = "View photo";
-$a->strings["Edit photo"] = "Edit photo";
-$a->strings["Use as profile photo"] = "Use as profile photo";
-$a->strings["View Full Size"] = "View full size";
-$a->strings["Tags: "] = "Tags: ";
-$a->strings["[Remove any tag]"] = "[Remove any tag]";
-$a->strings["New album name"] = "New album name";
-$a->strings["Caption"] = "Caption";
-$a->strings["Add a Tag"] = "Add Tag";
-$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Example: @bob, @jojo@example.com, #California, #camping";
-$a->strings["Do not rotate"] = "Do not rotate";
-$a->strings["Rotate CW (right)"] = "Rotate right (CW)";
-$a->strings["Rotate CCW (left)"] = "Rotate left (CCW)";
-$a->strings["Private photo"] = "Private photo";
-$a->strings["Public photo"] = "Public photo";
-$a->strings["Map"] = "Map";
-$a->strings["View Album"] = "View album";
-$a->strings["Poke/Prod"] = "Poke/Prod";
-$a->strings["poke, prod or do other things to somebody"] = "Poke, prod or do other things to somebody";
-$a->strings["Recipient"] = "Recipient:";
-$a->strings["Choose what you wish to do to recipient"] = "Choose what you wish to do:";
-$a->strings["Make this post private"] = "Make this post private";
-$a->strings["Tips for New Members"] = "Tips for New Members";
+$a->strings["Permission denied"] = "Permission denied";
 $a->strings["Invalid profile identifier."] = "Invalid profile identifier.";
 $a->strings["Profile Visibility Editor"] = "Profile Visibility Editor";
+$a->strings["Click on a contact to add or remove."] = "Click on a contact to add or remove.";
 $a->strings["Visible To"] = "Visible to";
 $a->strings["All Contacts (with secure profile access)"] = "All contacts with secure profile access";
-$a->strings["Remove My Account"] = "Remove My Account";
-$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "This will completely remove your account. Once this has been done it is not recoverable.";
-$a->strings["Please enter your password for verification:"] = "Please enter your password for verification:";
-$a->strings["Resubscribing to OStatus contacts"] = "Resubscribing to OStatus contacts";
-$a->strings["Error"] = "Error";
-$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s is following %2\$s's %3\$s";
-$a->strings["Do you really want to delete this suggestion?"] = "Do you really want to delete this suggestion?";
-$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "No suggestions available. If this is a new site, please try again in 24 hours.";
-$a->strings["Ignore/Hide"] = "Ignore/Hide";
-$a->strings["Tag removed"] = "Tag removed";
-$a->strings["Remove Item Tag"] = "Remove Item tag";
-$a->strings["Select a tag to remove: "] = "Select a tag to remove: ";
-$a->strings["Export account"] = "Export account";
-$a->strings["Export your account info and contacts. Use this to make a backup of your account and/or to move it to another server."] = "Export your account info and contacts. Use this to backup your account or to move it to another server.";
-$a->strings["Export all"] = "Export all";
-$a->strings["Export your accout info, contacts and all your items as json. Could be a very big file, and could take a lot of time. Use this to make a full backup of your account (photos are not exported)"] = "Export your account info, contacts and all your items as json. Could be a very big file, and could take a lot of time. Use this to make a full backup of your account (photos are not exported)";
-$a->strings["Export personal data"] = "Export personal data";
 $a->strings["[Embedded content - reload page to view]"] = "[Embedded content - reload page to view]";
-$a->strings["Do you really want to delete this video?"] = "Do you really want to delete this video?";
-$a->strings["Delete Video"] = "Delete video";
-$a->strings["No videos selected"] = "No videos selected";
-$a->strings["Recent Videos"] = "Recent videos";
-$a->strings["Upload New Videos"] = "Upload new videos";
+$a->strings["Public access denied."] = "Public access denied.";
 $a->strings["No contacts."] = "No contacts.";
 $a->strings["Access denied."] = "Access denied.";
 $a->strings["Invalid request."] = "Invalid request.";
@@ -1203,14 +834,7 @@ $a->strings["Sorry, maybe your upload is bigger than the PHP configuration allow
 $a->strings["Or - did you try to upload an empty file?"] = "Or did you try to upload an empty file?";
 $a->strings["File exceeds size limit of %s"] = "File exceeds size limit of %s";
 $a->strings["File upload failed."] = "File upload failed.";
-$a->strings["Number of daily wall messages for %s exceeded. Message failed."] = "Number of daily wall messages for %s exceeded. Message failed.";
-$a->strings["Unable to check your home location."] = "Unable to check your home location.";
-$a->strings["No recipient."] = "No recipient.";
-$a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = "If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders.";
 $a->strings["Only logged in users are permitted to perform a probing."] = "Only logged in users are permitted to perform a probing.";
-$a->strings["Account approved."] = "Account approved.";
-$a->strings["Registration revoked for %s"] = "Registration revoked for %s";
-$a->strings["Please login."] = "Please login.";
 $a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "This site has exceeded the number of allowed daily account registrations. Please try again tomorrow.";
 $a->strings["Import"] = "Import profile";
 $a->strings["Move account"] = "Move Existing Friendica Account";
@@ -1219,187 +843,6 @@ $a->strings["You need to export your account from the old server and upload it h
 $a->strings["This feature is experimental. We can't import contacts from the OStatus network (GNU Social/Statusnet) or from Diaspora"] = "This feature is experimental. We can't import contacts from the OStatus network (GNU Social/Statusnet) or from Diaspora.";
 $a->strings["Account file"] = "Account file:";
 $a->strings["To export your account, go to \"Settings->Export your personal data\" and select \"Export account\""] = "To export your account, go to \"Settings->Export personal data\" and select \"Export account\"";
-$a->strings["This introduction has already been accepted."] = "This introduction has already been accepted.";
-$a->strings["Profile location is not valid or does not contain profile information."] = "Profile location is not valid or does not contain profile information.";
-$a->strings["Warning: profile location has no identifiable owner name."] = "Warning: profile location has no identifiable owner name.";
-$a->strings["Warning: profile location has no profile photo."] = "Warning: profile location has no profile photo.";
-$a->strings["%d required parameter was not found at the given location"] = array(
-       0 => "%d required parameter was not found at the given location",
-       1 => "%d required parameters were not found at the given location",
-);
-$a->strings["Introduction complete."] = "Introduction complete.";
-$a->strings["Unrecoverable protocol error."] = "Unrecoverable protocol error.";
-$a->strings["Profile unavailable."] = "Profile unavailable.";
-$a->strings["%s has received too many connection requests today."] = "%s has received too many connection requests today.";
-$a->strings["Spam protection measures have been invoked."] = "Spam protection measures have been invoked.";
-$a->strings["Friends are advised to please try again in 24 hours."] = "Friends are advised to please try again in 24 hours.";
-$a->strings["Invalid locator"] = "Invalid locator";
-$a->strings["Invalid email address."] = "Invalid email address.";
-$a->strings["This account has not been configured for email. Request failed."] = "This account has not been configured for email. Request failed.";
-$a->strings["You have already introduced yourself here."] = "You have already introduced yourself here.";
-$a->strings["Apparently you are already friends with %s."] = "Apparently you are already friends with %s.";
-$a->strings["Invalid profile URL."] = "Invalid profile URL.";
-$a->strings["Failed to update contact record."] = "Failed to update contact record.";
-$a->strings["Your introduction has been sent."] = "Your introduction has been sent.";
-$a->strings["Remote subscription can't be done for your network. Please subscribe directly on your system."] = "Remote subscription can't be done for your network. Please subscribe directly on your system.";
-$a->strings["Please login to confirm introduction."] = "Please login to confirm introduction.";
-$a->strings["Incorrect identity currently logged in. Please login to <strong>this</strong> profile."] = "Incorrect identity currently logged in. Please login to <strong>this</strong> profile.";
-$a->strings["Confirm"] = "Confirm";
-$a->strings["Hide this contact"] = "Hide this contact";
-$a->strings["Welcome home %s."] = "Welcome home %s.";
-$a->strings["Please confirm your introduction/connection request to %s."] = "Please confirm your introduction/connection request to %s.";
-$a->strings["Please enter your 'Identity Address' from one of the following supported communications networks:"] = "Please enter your 'Identity address' from one of the following supported communications networks:";
-$a->strings["If you are not yet a member of the free social web, <a href=\"%s/siteinfo\">follow this link to find a public Friendica site and join us today</a>."] = "If you are not yet a member of the free social web, <a href=\"%s/siteinfo\">follow this link to find a public Friendica site and join us today</a>.";
-$a->strings["Friend/Connection Request"] = "Friend/Connection request";
-$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"] = "Examples: jojo@friendica.example.com, http://friendica.example.com/profile/jojo, sam@identi.ca";
-$a->strings["Please answer the following:"] = "Please answer the following:";
-$a->strings["Does %s know you?"] = "Does %s know you?";
-$a->strings["Add a personal note:"] = "Add a personal note:";
-$a->strings["StatusNet/Federated Social Web"] = "StatusNet/Federated social web";
-$a->strings[" - please do not use this form.  Instead, enter %s into your Diaspora search bar."] = " - please do not use this form.  Instead, enter %s into your Diaspora search bar.";
-$a->strings["Your Identity Address:"] = "My identity address:";
-$a->strings["Submit Request"] = "Submit request";
-$a->strings["People Search - %s"] = "People search - %s";
-$a->strings["Forum Search - %s"] = "Forum search - %s";
-$a->strings["Event can not end before it has started."] = "Event cannot end before it has started.";
-$a->strings["Event title and start time are required."] = "Event title and starting time are required.";
-$a->strings["Create New Event"] = "Create new event";
-$a->strings["Event details"] = "Event details";
-$a->strings["Starting date and Title are required."] = "Starting date and title are required.";
-$a->strings["Event Starts:"] = "Event starts:";
-$a->strings["Required"] = "Required";
-$a->strings["Finish date/time is not known or not relevant"] = "Finish date/time is not known or not relevant";
-$a->strings["Event Finishes:"] = "Event finishes:";
-$a->strings["Adjust for viewer timezone"] = "Adjust for viewer's time zone";
-$a->strings["Description:"] = "Description:";
-$a->strings["Title:"] = "Title:";
-$a->strings["Share this event"] = "Share this event";
-$a->strings["Failed to remove event"] = "Failed to remove event";
-$a->strings["Event removed"] = "Event removed";
-$a->strings["You already added this contact."] = "You already added this contact.";
-$a->strings["Diaspora support isn't enabled. Contact can't be added."] = "Diaspora support isn't enabled. Contact can't be added.";
-$a->strings["OStatus support is disabled. Contact can't be added."] = "OStatus support is disabled. Contact can't be added.";
-$a->strings["The network type couldn't be detected. Contact can't be added."] = "The network type couldn't be detected. Contact can't be added.";
-$a->strings["Contact added"] = "Contact added";
-$a->strings["Unable to locate original post."] = "Unable to locate original post.";
-$a->strings["Empty post discarded."] = "Empty post discarded.";
-$a->strings["System error. Post not saved."] = "System error. Post not saved.";
-$a->strings["This message was sent to you by %s, a member of the Friendica social network."] = "This message was sent to you by %s, a member of the Friendica social network.";
-$a->strings["You may visit them online at %s"] = "You may visit them online at %s";
-$a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "Please contact the sender by replying to this post if you do not wish to receive these messages.";
-$a->strings["%s posted an update."] = "%s posted an update.";
-$a->strings["{0} wants to be your friend"] = "{0} wants to be your friend";
-$a->strings["{0} sent you a message"] = "{0} sent you a message";
-$a->strings["{0} requested registration"] = "{0} requested registration";
-$a->strings["Image uploaded but image cropping failed."] = "Image uploaded but image cropping failed.";
-$a->strings["Image size reduction [%s] failed."] = "Image size reduction [%s] failed.";
-$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Shift-reload the page or clear browser cache if the new photo does not display immediately.";
-$a->strings["Unable to process image"] = "Unable to process image";
-$a->strings["Upload File:"] = "Upload File:";
-$a->strings["Select a profile:"] = "Select a profile:";
-$a->strings["Upload"] = "Upload";
-$a->strings["or"] = "or";
-$a->strings["skip this step"] = "skip this step";
-$a->strings["select a photo from your photo albums"] = "select a photo from your photo albums";
-$a->strings["Crop Image"] = "Crop Image";
-$a->strings["Please adjust the image cropping for optimum viewing."] = "Please adjust the image cropping for optimum viewing.";
-$a->strings["Done Editing"] = "Done editing";
-$a->strings["Image uploaded successfully."] = "Image uploaded successfully.";
-$a->strings["Profile deleted."] = "Profile deleted.";
-$a->strings["Profile-"] = "Profile-";
-$a->strings["New profile created."] = "New profile created.";
-$a->strings["Profile unavailable to clone."] = "Profile unavailable to clone.";
-$a->strings["Profile Name is required."] = "Profile name is required.";
-$a->strings["Marital Status"] = "Marital status";
-$a->strings["Romantic Partner"] = "Romantic partner";
-$a->strings["Work/Employment"] = "Work/Employment:";
-$a->strings["Religion"] = "Religion";
-$a->strings["Political Views"] = "Political views";
-$a->strings["Gender"] = "Gender";
-$a->strings["Sexual Preference"] = "Sexual preference";
-$a->strings["XMPP"] = "XMPP";
-$a->strings["Homepage"] = "Homepage";
-$a->strings["Interests"] = "Interests";
-$a->strings["Address"] = "Address";
-$a->strings["Location"] = "Location";
-$a->strings["Profile updated."] = "Profile updated.";
-$a->strings[" and "] = " and ";
-$a->strings["public profile"] = "public profile";
-$a->strings["%1\$s changed %2\$s to &ldquo;%3\$s&rdquo;"] = "%1\$s changed %2\$s to &ldquo;%3\$s&rdquo;";
-$a->strings[" - Visit %1\$s's %2\$s"] = " - Visit %1\$s's %2\$s";
-$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s has an updated %2\$s, changing %3\$s.";
-$a->strings["Hide contacts and friends:"] = "Hide contacts and friends:";
-$a->strings["Hide your contact/friend list from viewers of this profile?"] = "Hide your contact/friend list from viewers of this profile?";
-$a->strings["Show more profile fields:"] = "Show more profile fields:";
-$a->strings["Profile Actions"] = "Profile actions";
-$a->strings["Edit Profile Details"] = "Edit Profile Details";
-$a->strings["Change Profile Photo"] = "Change profile photo";
-$a->strings["View this profile"] = "View this profile";
-$a->strings["Create a new profile using these settings"] = "Create a new profile using these settings";
-$a->strings["Clone this profile"] = "Clone this profile";
-$a->strings["Delete this profile"] = "Delete this profile";
-$a->strings["Basic information"] = "Basic information";
-$a->strings["Profile picture"] = "Profile picture";
-$a->strings["Preferences"] = "Preferences";
-$a->strings["Status information"] = "Status information";
-$a->strings["Additional information"] = "Additional information";
-$a->strings["Relation"] = "Relation";
-$a->strings["Your Gender:"] = "Gender:";
-$a->strings["<span class=\"heart\">&hearts;</span> Marital Status:"] = "<span class=\"heart\">&hearts;</span> Marital status:";
-$a->strings["Example: fishing photography software"] = "Example: fishing photography software";
-$a->strings["Profile Name:"] = "Profile name:";
-$a->strings["This is your <strong>public</strong> profile.<br />It <strong>may</strong> be visible to anybody using the internet."] = "This is your <strong>public</strong> profile.<br />It <strong>may</strong> be visible to anybody using the internet.";
-$a->strings["Your Full Name:"] = "My full name:";
-$a->strings["Title/Description:"] = "Title/Description:";
-$a->strings["Street Address:"] = "Street address:";
-$a->strings["Locality/City:"] = "Locality/City:";
-$a->strings["Region/State:"] = "Region/State:";
-$a->strings["Postal/Zip Code:"] = "Postcode:";
-$a->strings["Country:"] = "Country:";
-$a->strings["Who: (if applicable)"] = "Who: (if applicable)";
-$a->strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Examples: cathy123, Cathy Williams, cathy@example.com";
-$a->strings["Since [date]:"] = "Since when:";
-$a->strings["Tell us about yourself..."] = "About myself:";
-$a->strings["XMPP (Jabber) address:"] = "XMPP (Jabber) address:";
-$a->strings["The XMPP address will be propagated to your contacts so that they can follow you."] = "The XMPP address will be propagated to your contacts so that they can follow you.";
-$a->strings["Homepage URL:"] = "Homepage URL:";
-$a->strings["Religious Views:"] = "Religious views:";
-$a->strings["Public Keywords:"] = "Public keywords:";
-$a->strings["(Used for suggesting potential friends, can be seen by others)"] = "Used for suggesting potential friends, can be seen by others.";
-$a->strings["Private Keywords:"] = "Private keywords:";
-$a->strings["(Used for searching profiles, never shown to others)"] = "Used for searching profiles, never shown to others.";
-$a->strings["Musical interests"] = "Music:";
-$a->strings["Books, literature"] = "Books, literature, poetry:";
-$a->strings["Television"] = "Television:";
-$a->strings["Film/dance/culture/entertainment"] = "Film, dance, culture, entertainment";
-$a->strings["Hobbies/Interests"] = "Hobbies/Interests:";
-$a->strings["Love/romance"] = "Love/Romance:";
-$a->strings["Work/employment"] = "Work/Employment:";
-$a->strings["School/education"] = "School/Education:";
-$a->strings["Contact information and Social Networks"] = "Contact information and other social networks:";
-$a->strings["Edit/Manage Profiles"] = "Edit/Manage Profiles";
-$a->strings["Registration successful. Please check your email for further instructions."] = "Registration successful. Please check your email for further instructions.";
-$a->strings["Failed to send email message. Here your accout details:<br> login: %s<br> password: %s<br><br>You can change your password after login."] = "Failed to send email message. Here your account details:<br> login: %s<br> password: %s<br><br>You can change your password after login.";
-$a->strings["Registration successful."] = "Registration successful.";
-$a->strings["Your registration can not be processed."] = "Your registration cannot be processed.";
-$a->strings["Your registration is pending approval by the site owner."] = "Your registration is pending approval by the site administrator.";
-$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Sign up now'.";
-$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items.";
-$a->strings["Your OpenID (optional): "] = "Your OpenID (optional): ";
-$a->strings["Include your profile in member directory?"] = "Include your profile in member directory?";
-$a->strings["Note for the admin"] = "Note for the admin";
-$a->strings["Leave a message for the admin, why you want to join this node"] = "Leave a message for the admin, why you want to join this node.";
-$a->strings["Membership on this site is by invitation only."] = "Membership on this site is by invitation only.";
-$a->strings["Your invitation ID: "] = "Your invitation ID: ";
-$a->strings["Registration"] = "Join this Friendica Node Today";
-$a->strings["Your Full Name (e.g. Joe Smith, real or real-looking): "] = "Your full name: ";
-$a->strings["Your Email Address: "] = "Your email address: ";
-$a->strings["New Password:"] = "New password:";
-$a->strings["Leave empty for an auto generated password."] = "Leave empty for an auto generated password.";
-$a->strings["Confirm:"] = "Confirm new password:";
-$a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be '<strong>nickname@\$sitename</strong>'."] = "Choose a profile nickname. Your nickname will be part of your identity address; for example:  '<strong>nickname@\$sitename</strong>'.";
-$a->strings["Choose a nickname: "] = "Choose a nickname: ";
-$a->strings["Import your profile to this friendica instance"] = "Import an existing Friendica profile to this node.";
 $a->strings["Remove term"] = "Remove term";
 $a->strings["Only logged in users are permitted to perform a search."] = "Only logged in users are permitted to perform a search.";
 $a->strings["Too Many Requests"] = "Too many requests";
@@ -1407,6 +850,7 @@ $a->strings["Only one search per minute is permitted for not logged in users."]
 $a->strings["No results."] = "No results.";
 $a->strings["Items tagged with: %s"] = "Items tagged with: %s";
 $a->strings["Results for: %s"] = "Results for: %s";
+$a->strings["Not available."] = "Not available.";
 $a->strings["Theme settings updated."] = "Theme settings updated.";
 $a->strings["Site"] = "Site";
 $a->strings["Users"] = "Users";
@@ -1426,6 +870,7 @@ $a->strings["Plugin Features"] = "Plugin Features";
 $a->strings["diagnostics"] = "Diagnostics";
 $a->strings["User registrations waiting for confirmation"] = "User registrations awaiting confirmation";
 $a->strings["The blocked domain"] = "Blocked domain";
+$a->strings["Reason for the block"] = "Reason for the block";
 $a->strings["The reason why you blocked this domain."] = "Reason why you blocked this domain.";
 $a->strings["Delete domain"] = "Delete domain";
 $a->strings["Check to delete this entry from the blocklist"] = "Check to delete this entry from the blocklist";
@@ -1496,6 +941,7 @@ $a->strings["No SSL policy, links will track page SSL state"] = "No SSL policy,
 $a->strings["Force all links to use SSL"] = "Force all links to use SSL";
 $a->strings["Self-signed certificate, use SSL for local links only (discouraged)"] = "Self-signed certificate, use SSL for local links only (discouraged)";
 $a->strings["Save Settings"] = "Save settings";
+$a->strings["Registration"] = "Join this Friendica Node Today";
 $a->strings["File upload"] = "File upload";
 $a->strings["Policies"] = "Policies";
 $a->strings["Auto Discovered Contact Directory"] = "Auto-discovered contact directory";
@@ -1638,7 +1084,7 @@ $a->strings["Enable this if your system doesn't allow the use of 'proc_open'. Th
 $a->strings["Enable fastlane"] = "Enable fast-lane";
 $a->strings["When enabed, the fastlane mechanism starts an additional worker if processes with higher priority are blocked by processes of lower priority."] = "The fast-lane mechanism starts an additional worker if processes with higher priority are blocked by processes of lower priority.";
 $a->strings["Enable frontend worker"] = "Enable frontend worker";
-$a->strings["When enabled the Worker process is triggered when backend access is performed (e.g. messages being delivered). On smaller sites you might want to call yourdomain.tld/worker on a regular basis via an external cron job. You should only enable this option if you cannot utilize cron/scheduled jobs on your server. The worker background process needs to be activated for this."] = "If enabled the Worker process is triggered when backend access is performed (e.g. messages being delivered). On smaller sites you might want to call yourdomain.tld/worker on a regular basis via an external cron job. You should only enable this option if you cannot utilize cron/scheduled jobs on your server. The worker background process needs to be activated for this.";
+$a->strings["When enabled the Worker process is triggered when backend access is performed (e.g. messages being delivered). On smaller sites you might want to call %s/worker on a regular basis via an external cron job. You should only enable this option if you cannot utilize cron/scheduled jobs on your server."] = "This triggers the worker process when the backend is accessed, such as messages being delivered. On smaller sites you might want to call %s/worker on a regular basis via an external cron job. You should only enable this option if you cannot utilize cron/scheduled jobs on your server.";
 $a->strings["Update has been marked successful"] = "Update has been marked successful";
 $a->strings["Database structure update %s was successfully applied."] = "Database structure update %s was successfully applied.";
 $a->strings["Executing of database structure update %s failed with error: %s"] = "Executing of database structure update %s failed with error: %s";
@@ -1676,6 +1122,7 @@ $a->strings["User waiting for permanent deletion"] = "User awaiting permanent de
 $a->strings["Request date"] = "Request date";
 $a->strings["No registrations."] = "No registrations.";
 $a->strings["Note from the user"] = "Note from the user";
+$a->strings["Approve"] = "Approve";
 $a->strings["Deny"] = "Deny";
 $a->strings["Block"] = "Block";
 $a->strings["Unblock"] = "Unblock";
@@ -1718,7 +1165,17 @@ $a->strings["Off"] = "Off";
 $a->strings["On"] = "On";
 $a->strings["Lock feature %s"] = "Lock feature %s";
 $a->strings["Manage Additional Features"] = "Manage additional features";
-$a->strings["Not available."] = "Not available.";
+$a->strings["No friends to display."] = "No friends to display.";
+$a->strings["The post was created"] = "The post was created";
+$a->strings["Access to this profile has been restricted."] = "Access to this profile has been restricted.";
+$a->strings["View"] = "View";
+$a->strings["Previous"] = "Previous";
+$a->strings["Next"] = "Next";
+$a->strings["list"] = "List";
+$a->strings["User not found"] = "User not found";
+$a->strings["This calendar format is not supported"] = "This calendar format is not supported";
+$a->strings["No exportable data found"] = "No exportable data found";
+$a->strings["calendar"] = "calendar";
 $a->strings["%d contact edited."] = array(
        0 => "%d contact edited.",
        1 => "%d contacts edited.",
@@ -1726,6 +1183,7 @@ $a->strings["%d contact edited."] = array(
 $a->strings["Could not access contact record."] = "Could not access contact record.";
 $a->strings["Could not locate selected profile."] = "Could not locate selected profile.";
 $a->strings["Contact updated."] = "Contact updated.";
+$a->strings["Failed to update contact record."] = "Failed to update contact record.";
 $a->strings["Contact has been blocked"] = "Contact has been blocked";
 $a->strings["Contact has been unblocked"] = "Contact has been unblocked";
 $a->strings["Contact has been ignored"] = "Contact has been ignored";
@@ -1747,6 +1205,7 @@ $a->strings["Communications lost with this contact!"] = "Communications lost wit
 $a->strings["Fetch further information for feeds"] = "Fetch further information for feeds";
 $a->strings["Fetch information"] = "Fetch information";
 $a->strings["Fetch information and keywords"] = "Fetch information and keywords";
+$a->strings["Disconnect/Unfollow"] = "Disconnect/Unfollow";
 $a->strings["Contact"] = "Contact";
 $a->strings["Profile Visibility"] = "Profile visibility";
 $a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Please choose the profile you would like to display to %s when viewing your profile securely.";
@@ -1761,18 +1220,22 @@ $a->strings["Last update:"] = "Last update:";
 $a->strings["Update public posts"] = "Update public posts";
 $a->strings["Update now"] = "Update now";
 $a->strings["Unignore"] = "Unignore";
+$a->strings["Ignore"] = "Ignore";
 $a->strings["Currently blocked"] = "Currently blocked";
 $a->strings["Currently ignored"] = "Currently ignored";
 $a->strings["Currently archived"] = "Currently archived";
+$a->strings["Hide this contact from others"] = "Hide this contact from others";
 $a->strings["Replies/likes to your public posts <strong>may</strong> still be visible"] = "Replies/Likes to your public posts <strong>may</strong> still be visible";
 $a->strings["Notification for new posts"] = "Notification for new posts";
 $a->strings["Send a notification of every new post of this contact"] = "Send notification for every new post from this contact";
 $a->strings["Blacklisted keywords"] = "Blacklisted keywords";
 $a->strings["Comma separated list of keywords that should not be converted to hashtags, when \"Fetch information and keywords\" is selected"] = "Comma separated list of keywords that should not be converted to hashtags, when \"Fetch information and keywords\" is selected";
+$a->strings["Profile URL"] = "Profile URL:";
 $a->strings["Actions"] = "Actions";
 $a->strings["Contact Settings"] = "Notification and privacy ";
 $a->strings["Suggestions"] = "Suggestions";
 $a->strings["Suggest potential friends"] = "Suggest potential friends";
+$a->strings["All Contacts"] = "All contacts";
 $a->strings["Show all contacts"] = "Show all contacts";
 $a->strings["Unblocked"] = "Unblocked";
 $a->strings["Only show unblocked contacts"] = "Only show unblocked contacts";
@@ -1799,9 +1262,247 @@ $a->strings["Toggle Blocked status"] = "Toggle blocked status";
 $a->strings["Toggle Ignored status"] = "Toggle ignored status";
 $a->strings["Toggle Archive status"] = "Toggle archive status";
 $a->strings["Delete contact"] = "Delete contact";
+$a->strings["No such group"] = "No such group";
+$a->strings["Group is empty"] = "Group is empty";
+$a->strings["Group: %s"] = "Group: %s";
+$a->strings["This entry was edited"] = "This entry was edited";
+$a->strings["%d comment"] = array(
+       0 => "%d comment",
+       1 => "%d comments -",
+);
+$a->strings["Private Message"] = "Private message";
+$a->strings["I like this (toggle)"] = "I like this (toggle)";
+$a->strings["like"] = "Like";
+$a->strings["I don't like this (toggle)"] = "I don't like this (toggle)";
+$a->strings["dislike"] = "Dislike";
+$a->strings["Share this"] = "Share this";
+$a->strings["share"] = "Share";
+$a->strings["This is you"] = "This is me";
+$a->strings["Comment"] = "Comment";
+$a->strings["Bold"] = "Bold";
+$a->strings["Italic"] = "Italic";
+$a->strings["Underline"] = "Underline";
+$a->strings["Quote"] = "Quote";
+$a->strings["Code"] = "Code";
+$a->strings["Image"] = "Image";
+$a->strings["Link"] = "Link";
+$a->strings["Video"] = "Video";
+$a->strings["Edit"] = "Edit";
+$a->strings["add star"] = "Add star";
+$a->strings["remove star"] = "Remove star";
+$a->strings["toggle star status"] = "Toggle star status";
+$a->strings["starred"] = "Starred";
+$a->strings["add tag"] = "Add tag";
+$a->strings["ignore thread"] = "Ignore thread";
+$a->strings["unignore thread"] = "Unignore thread";
+$a->strings["toggle ignore status"] = "Toggle ignore status";
+$a->strings["ignored"] = "Ignored";
+$a->strings["save to folder"] = "Save to folder";
+$a->strings["I will attend"] = "I will attend";
+$a->strings["I will not attend"] = "I will not attend";
+$a->strings["I might attend"] = "I might attend";
+$a->strings["to"] = "to";
+$a->strings["Wall-to-Wall"] = "Wall-to-wall";
+$a->strings["via Wall-To-Wall:"] = "via wall-to-wall:";
+$a->strings["No potential page delegates located."] = "No potential page delegates found.";
+$a->strings["Delegates are able to manage all aspects of this account/page except for basic account settings. Please do not delegate your personal account to anybody that you do not trust completely."] = "Delegates are able to manage all aspects of this account except for key setting features. Please do not delegate your personal account to anybody that you do not trust completely.";
+$a->strings["Existing Page Managers"] = "Existing page managers";
+$a->strings["Existing Page Delegates"] = "Existing page delegates";
+$a->strings["Potential Delegates"] = "Potential delegates";
+$a->strings["Remove"] = "Remove";
+$a->strings["Add"] = "Add";
+$a->strings["No entries."] = "No entries.";
+$a->strings["Profile not found."] = "Profile not found.";
+$a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = "This may occasionally happen if contact was requested by both persons and it has already been approved.";
+$a->strings["Response from remote site was not understood."] = "Response from remote site was not understood.";
+$a->strings["Unexpected response from remote site: "] = "Unexpected response from remote site: ";
+$a->strings["Confirmation completed successfully."] = "Confirmation completed successfully.";
+$a->strings["Remote site reported: "] = "Remote site reported: ";
+$a->strings["Temporary failure. Please wait and try again."] = "Temporary failure. Please wait and try again.";
+$a->strings["Introduction failed or was revoked."] = "Introduction failed or was revoked.";
+$a->strings["Unable to set contact photo."] = "Unable to set contact photo.";
+$a->strings["No user record found for '%s' "] = "No user record found for '%s' ";
+$a->strings["Our site encryption key is apparently messed up."] = "Our site encryption key is apparently messed up.";
+$a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "An empty URL was provided or the URL could not be decrypted by us.";
+$a->strings["Contact record was not found for you on our site."] = "Contact record was not found for you on our site.";
+$a->strings["Site public key not available in contact record for URL %s."] = "Site public key not available in contact record for URL %s.";
+$a->strings["The ID provided by your system is a duplicate on our system. It should work if you try again."] = "The ID provided by your system is a duplicate on our system. It should work if you try again.";
+$a->strings["Unable to set your contact credentials on our system."] = "Unable to set your contact credentials on our system.";
+$a->strings["Unable to update your contact profile details on our system"] = "Unable to update your contact profile details on our system";
+$a->strings["%1\$s has joined %2\$s"] = "%1\$s has joined %2\$s";
+$a->strings["%1\$s welcomes %2\$s"] = "%1\$s welcomes %2\$s";
+$a->strings["This introduction has already been accepted."] = "This introduction has already been accepted.";
+$a->strings["Profile location is not valid or does not contain profile information."] = "Profile location is not valid or does not contain profile information.";
+$a->strings["Warning: profile location has no identifiable owner name."] = "Warning: profile location has no identifiable owner name.";
+$a->strings["Warning: profile location has no profile photo."] = "Warning: profile location has no profile photo.";
+$a->strings["%d required parameter was not found at the given location"] = array(
+       0 => "%d required parameter was not found at the given location",
+       1 => "%d required parameters were not found at the given location",
+);
+$a->strings["Introduction complete."] = "Introduction complete.";
+$a->strings["Unrecoverable protocol error."] = "Unrecoverable protocol error.";
+$a->strings["Profile unavailable."] = "Profile unavailable.";
+$a->strings["%s has received too many connection requests today."] = "%s has received too many connection requests today.";
+$a->strings["Spam protection measures have been invoked."] = "Spam protection measures have been invoked.";
+$a->strings["Friends are advised to please try again in 24 hours."] = "Friends are advised to please try again in 24 hours.";
+$a->strings["Invalid locator"] = "Invalid locator";
+$a->strings["Invalid email address."] = "Invalid email address.";
+$a->strings["This account has not been configured for email. Request failed."] = "This account has not been configured for email. Request failed.";
+$a->strings["You have already introduced yourself here."] = "You have already introduced yourself here.";
+$a->strings["Apparently you are already friends with %s."] = "Apparently you are already friends with %s.";
+$a->strings["Invalid profile URL."] = "Invalid profile URL.";
+$a->strings["Your introduction has been sent."] = "Your introduction has been sent.";
+$a->strings["Remote subscription can't be done for your network. Please subscribe directly on your system."] = "Remote subscription can't be done for your network. Please subscribe directly on your system.";
+$a->strings["Please login to confirm introduction."] = "Please login to confirm introduction.";
+$a->strings["Incorrect identity currently logged in. Please login to <strong>this</strong> profile."] = "Incorrect identity currently logged in. Please login to <strong>this</strong> profile.";
+$a->strings["Confirm"] = "Confirm";
+$a->strings["Hide this contact"] = "Hide this contact";
+$a->strings["Welcome home %s."] = "Welcome home %s.";
+$a->strings["Please confirm your introduction/connection request to %s."] = "Please confirm your introduction/connection request to %s.";
+$a->strings["Please enter your 'Identity Address' from one of the following supported communications networks:"] = "Please enter your 'Identity address' from one of the following supported communications networks:";
+$a->strings["If you are not yet a member of the free social web, <a href=\"%s/siteinfo\">follow this link to find a public Friendica site and join us today</a>."] = "If you are not yet a member of the free social web, <a href=\"%s/siteinfo\">follow this link to find a public Friendica site and join us today</a>.";
+$a->strings["Friend/Connection Request"] = "Friend/Connection request";
+$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"] = "Examples: jojo@friendica.example.com, http://friendica.example.com/profile/jojo, sam@identi.ca";
+$a->strings["Please answer the following:"] = "Please answer the following:";
+$a->strings["Does %s know you?"] = "Does %s know you?";
+$a->strings["Add a personal note:"] = "Add a personal note:";
+$a->strings["StatusNet/Federated Social Web"] = "StatusNet/Federated social web";
+$a->strings[" - please do not use this form.  Instead, enter %s into your Diaspora search bar."] = " - please do not use this form.  Instead, enter %s into your Diaspora search bar.";
+$a->strings["Your Identity Address:"] = "My identity address:";
+$a->strings["Submit Request"] = "Submit request";
+$a->strings["Global Directory"] = "Global Directory";
+$a->strings["Find on this site"] = "Find on this site";
+$a->strings["Results for:"] = "Results for:";
+$a->strings["Site Directory"] = "Site directory";
+$a->strings["No entries (some entries may be hidden)."] = "No entries (entries may be hidden).";
+$a->strings["People Search - %s"] = "People search - %s";
+$a->strings["Forum Search - %s"] = "Forum search - %s";
+$a->strings["No matches"] = "No matches";
 $a->strings["Item has been removed."] = "Item has been removed.";
+$a->strings["Item not found"] = "Item not found";
+$a->strings["Edit post"] = "Edit post";
+$a->strings["Event can not end before it has started."] = "Event cannot end before it has started.";
+$a->strings["Event title and start time are required."] = "Event title and starting time are required.";
+$a->strings["Create New Event"] = "Create new event";
+$a->strings["Event details"] = "Event details";
+$a->strings["Starting date and Title are required."] = "Starting date and title are required.";
+$a->strings["Event Starts:"] = "Event starts:";
+$a->strings["Required"] = "Required";
+$a->strings["Finish date/time is not known or not relevant"] = "Finish date/time is not known or not relevant";
+$a->strings["Event Finishes:"] = "Event finishes:";
+$a->strings["Adjust for viewer timezone"] = "Adjust for viewer's time zone";
+$a->strings["Description:"] = "Description:";
+$a->strings["Title:"] = "Title:";
+$a->strings["Share this event"] = "Share this event";
+$a->strings["Failed to remove event"] = "Failed to remove event";
+$a->strings["Event removed"] = "Event removed";
+$a->strings["Files"] = "Files";
+$a->strings["Not Found"] = "Not found";
+$a->strings["Contact added"] = "Contact added";
+$a->strings["You already added this contact."] = "You already added this contact.";
+$a->strings["Diaspora support isn't enabled. Contact can't be added."] = "Diaspora support isn't enabled. Contact can't be added.";
+$a->strings["OStatus support is disabled. Contact can't be added."] = "OStatus support is disabled. Contact can't be added.";
+$a->strings["The network type couldn't be detected. Contact can't be added."] = "The network type couldn't be detected. Contact can't be added.";
+$a->strings["This is Friendica, version"] = "This is Friendica, version";
+$a->strings["running at web location"] = "running at web location";
+$a->strings["Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn more about the Friendica project."] = "Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn more about the Friendica project.";
+$a->strings["Bug reports and issues: please visit"] = "Bug reports and issues: please visit";
+$a->strings["the bugtracker at github"] = "the bugtracker at github";
+$a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"] = "Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com";
+$a->strings["Installed plugins/addons/apps:"] = "Installed plugins/addons/apps:";
+$a->strings["No installed plugins/addons/apps"] = "No installed plugins/addons/apps";
+$a->strings["On this server the following remote servers are blocked."] = "On this server the following remote servers are blocked.";
+$a->strings["Group created."] = "Group created.";
+$a->strings["Could not create group."] = "Could not create group.";
+$a->strings["Group not found."] = "Group not found.";
+$a->strings["Group name changed."] = "Group name changed.";
+$a->strings["Save Group"] = "Save group";
+$a->strings["Create a group of contacts/friends."] = "Create a group of contacts/friends.";
+$a->strings["Group removed."] = "Group removed.";
+$a->strings["Unable to remove group."] = "Unable to remove group.";
+$a->strings["Delete Group"] = "Delete group";
+$a->strings["Group Editor"] = "Group Editor";
+$a->strings["Edit Group Name"] = "Edit group name";
+$a->strings["Members"] = "Members";
+$a->strings["Remove Contact"] = "Remove contact";
+$a->strings["Add Contact"] = "Add contact";
+$a->strings["No profile"] = "No profile";
 $a->strings["Help:"] = "Help:";
 $a->strings["Page not found."] = "Page not found";
+$a->strings["Welcome to %s"] = "Welcome to %s";
+$a->strings["Friendica Communications Server - Setup"] = "Friendica Communications Server - Setup";
+$a->strings["Could not connect to database."] = "Could not connect to database.";
+$a->strings["Could not create table."] = "Could not create table.";
+$a->strings["Your Friendica site database has been installed."] = "Your Friendica site database has been installed.";
+$a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = "You may need to import the file \"database.sql\" manually using phpmyadmin or mysql.";
+$a->strings["Please see the file \"INSTALL.txt\"."] = "Please see the file \"INSTALL.txt\".";
+$a->strings["Database already in use."] = "Database already in use.";
+$a->strings["System check"] = "System check";
+$a->strings["Check again"] = "Check again";
+$a->strings["Database connection"] = "Database connection";
+$a->strings["In order to install Friendica we need to know how to connect to your database."] = "In order to install Friendica we need to know how to connect to your database.";
+$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Please contact your hosting provider or site administrator if you have questions about these settings.";
+$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "The database you specify below should already exist. If it does not, please create it before continuing.";
+$a->strings["Database Server Name"] = "Database server name";
+$a->strings["Database Login Name"] = "Database login name";
+$a->strings["Database Login Password"] = "Database login password";
+$a->strings["For security reasons the password must not be empty"] = "For security reasons the password must not be empty";
+$a->strings["Database Name"] = "Database name";
+$a->strings["Site administrator email address"] = "Site administrator email address";
+$a->strings["Your account email address must match this in order to use the web admin panel."] = "Your account email address must match this in order to use the web admin panel.";
+$a->strings["Please select a default timezone for your website"] = "Please select a default time zone for your website";
+$a->strings["Site settings"] = "Site settings";
+$a->strings["System Language:"] = "System language:";
+$a->strings["Set the default language for your Friendica installation interface and to send emails."] = "Set the default language for your Friendica installation interface and email communication.";
+$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Could not find a command line version of PHP in the web server PATH.";
+$a->strings["If you don't have a command line version of PHP installed on server, you will not be able to run the background processing. See <a href='https://github.com/friendica/friendica/blob/master/doc/Install.md#set-up-the-poller'>'Setup the poller'</a>"] = "If you don't have a command line version of PHP installed on your server, you will not be able to run the background processing. See <a href='https://github.com/friendica/friendica/blob/master/doc/Install.md#set-up-the-poller'>'Setup the poller'</a>";
+$a->strings["PHP executable path"] = "PHP executable path";
+$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Enter full path to php executable. You can leave this blank to continue the installation.";
+$a->strings["Command line PHP"] = "Command line PHP";
+$a->strings["PHP executable is not the php cli binary (could be cgi-fgci version)"] = "PHP executable is not a php cli binary; it could possibly be a cgi-fgci version.";
+$a->strings["Found PHP version: "] = "Found PHP version: ";
+$a->strings["PHP cli binary"] = "PHP cli binary";
+$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "The command line version of PHP on your system does not have \"register_argc_argv\" enabled.";
+$a->strings["This is required for message delivery to work."] = "This is required for message delivery to work.";
+$a->strings["PHP register_argc_argv"] = "PHP register_argc_argv";
+$a->strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys";
+$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "If running under Windows OS, please see \"http://www.php.net/manual/en/openssl.installation.php\".";
+$a->strings["Generate encryption keys"] = "Generate encryption keys";
+$a->strings["libCurl PHP module"] = "libCurl PHP module";
+$a->strings["GD graphics PHP module"] = "GD graphics PHP module";
+$a->strings["OpenSSL PHP module"] = "OpenSSL PHP module";
+$a->strings["PDO or MySQLi PHP module"] = "PDO or MySQLi PHP module";
+$a->strings["mb_string PHP module"] = "mb_string PHP module";
+$a->strings["XML PHP module"] = "XML PHP module";
+$a->strings["iconv module"] = "iconv module";
+$a->strings["Apache mod_rewrite module"] = "Apache mod_rewrite module";
+$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Error: Apache web server mod-rewrite module is required but not installed.";
+$a->strings["Error: libCURL PHP module required but not installed."] = "Error: libCURL PHP module required but not installed.";
+$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Error: GD graphics PHP module with JPEG support required but not installed.";
+$a->strings["Error: openssl PHP module required but not installed."] = "Error: openssl PHP module required but not installed.";
+$a->strings["Error: PDO or MySQLi PHP module required but not installed."] = "Error: PDO or MySQLi PHP module required but not installed.";
+$a->strings["Error: The MySQL driver for PDO is not installed."] = "Error: MySQL driver for PDO is not installed.";
+$a->strings["Error: mb_string PHP module required but not installed."] = "Error: mb_string PHP module required but not installed.";
+$a->strings["Error: iconv PHP module required but not installed."] = "Error: iconv PHP module required but not installed.";
+$a->strings["Error, XML PHP module required but not installed."] = "Error, XML PHP module required but not installed.";
+$a->strings["The web installer needs to be able to create a file called \".htconfig.php\" in the top folder of your web server and it is unable to do so."] = "The web installer needs to be able to create a file called \".htconfig.php\" in the top-level directory of your web server, but it is unable to do so.";
+$a->strings["This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can."] = "This is most often a permission setting issue, as the web server may not be able to write files in your directory - even if you can.";
+$a->strings["At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Friendica top folder."] = "At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Friendica top-level directory.";
+$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = "Alternatively, you may skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions.";
+$a->strings[".htconfig.php is writable"] = ".htconfig.php is writable";
+$a->strings["Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering.";
+$a->strings["In order to store these compiled templates, the web server needs to have write access to the directory view/smarty3/ under the Friendica top level folder."] = "In order to store these compiled templates, the web server needs to have write access to the directory view/smarty3/ under the Friendica top-level directory.";
+$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Please ensure the user (e.g. www-data) that your web server runs as has write access to this directory.";
+$a->strings["Note: as a security measure, you should give the web server write access to view/smarty3/ only--not the template files (.tpl) that it contains."] = "Note: as a security measure, you should give the web server write access to view/smarty3/ only--not the template files (.tpl) that it contains.";
+$a->strings["view/smarty3 is writable"] = "view/smarty3 is writable";
+$a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = "URL rewrite in .htaccess is not working. Check your server configuration.";
+$a->strings["Url rewrite is working"] = "URL rewrite is working";
+$a->strings["ImageMagick PHP extension is not installed"] = "ImageMagick PHP extension is not installed";
+$a->strings["ImageMagick PHP extension is installed"] = "ImageMagick PHP extension is installed";
+$a->strings["ImageMagick supports GIF"] = "ImageMagick supports GIF";
+$a->strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = "The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root.";
+$a->strings["<h1>What next</h1>"] = "<h1>What next</h1>";
+$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "IMPORTANT: You will need to [manually] setup a scheduled task for the poller.";
 $a->strings["Total invitation limit exceeded."] = "Total invitation limit exceeded";
 $a->strings["%s : Not a valid email address."] = "%s : Not a valid email address";
 $a->strings["Please join us on Friendica"] = "Please join us on Friendica.";
@@ -1811,19 +1512,85 @@ $a->strings["%d message sent."] = array(
        0 => "%d message sent.",
        1 => "%d messages sent.",
 );
-$a->strings["You have no more invitations available"] = "You have no more invitations available.";
-$a->strings["Visit %s for a list of public sites that you can join. Friendica members on other sites can all connect with each other, as well as with members of many other social networks."] = "Visit %s for a list of public sites that you can join. Friendica members on other sites can all connect with each other, as well as with members of many other social networks.";
-$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = "To accept this invitation, please sign up at %s or any other public Friendica website.";
-$a->strings["Friendica sites all inter-connect to create a huge privacy-enhanced social web that is owned and controlled by its members. They can also connect with many traditional social networks. See %s for a list of alternate Friendica sites you can join."] = "Friendica sites are all inter-connect to create a large privacy-enhanced social web that is owned and controlled by its members. They can also connect with many traditional social networks. See %s for a list of alternate Friendica sites you can join.";
-$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = "Our apologies. This system is not currently configured to connect with other public sites or invite members.";
-$a->strings["To accept this invitation, please visit and register at %s."] = "To accept this invitation, please visit and register at %s.";
-$a->strings["Friendica sites all inter-connect to create a huge privacy-enhanced social web that is owned and controlled by its members. They can also connect with many traditional social networks."] = "Friendica sites are all inter-connect to create a huge privacy-enhanced social web that is owned and controlled by its members. Each site can also connect with many traditional social networks.";
-$a->strings["Send invitations"] = "Send invitations";
-$a->strings["Enter email addresses, one per line:"] = "Enter email addresses, one per line:";
-$a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = "You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web.";
-$a->strings["You will need to supply this invitation code: \$invite_code"] = "You will need to supply this invitation code: \$invite_code";
-$a->strings["Once you have registered, please connect with me via my profile page at:"] = "Once you have signed up, please connect with me via my profile page at:";
-$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendi.ca"] = "For more information about the Friendica project and why we feel it is important, please visit http://friendi.ca";
+$a->strings["You have no more invitations available"] = "You have no more invitations available.";
+$a->strings["Visit %s for a list of public sites that you can join. Friendica members on other sites can all connect with each other, as well as with members of many other social networks."] = "Visit %s for a list of public sites that you can join. Friendica members on other sites can all connect with each other, as well as with members of many other social networks.";
+$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = "To accept this invitation, please sign up at %s or any other public Friendica website.";
+$a->strings["Friendica sites all inter-connect to create a huge privacy-enhanced social web that is owned and controlled by its members. They can also connect with many traditional social networks. See %s for a list of alternate Friendica sites you can join."] = "Friendica sites are all inter-connect to create a large privacy-enhanced social web that is owned and controlled by its members. They can also connect with many traditional social networks. See %s for a list of alternate Friendica sites you can join.";
+$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = "Our apologies. This system is not currently configured to connect with other public sites or invite members.";
+$a->strings["To accept this invitation, please visit and register at %s."] = "To accept this invitation, please visit and register at %s.";
+$a->strings["Friendica sites all inter-connect to create a huge privacy-enhanced social web that is owned and controlled by its members. They can also connect with many traditional social networks."] = "Friendica sites are all inter-connect to create a huge privacy-enhanced social web that is owned and controlled by its members. Each site can also connect with many traditional social networks.";
+$a->strings["Send invitations"] = "Send invitations";
+$a->strings["Enter email addresses, one per line:"] = "Enter email addresses, one per line:";
+$a->strings["Your message:"] = "Your message:";
+$a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = "You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web.";
+$a->strings["You will need to supply this invitation code: \$invite_code"] = "You will need to supply this invitation code: \$invite_code";
+$a->strings["Once you have registered, please connect with me via my profile page at:"] = "Once you have signed up, please connect with me via my profile page at:";
+$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendi.ca"] = "For more information about the Friendica project and why we feel it is important, please visit http://friendi.ca";
+$a->strings["Unable to locate original post."] = "Unable to locate original post.";
+$a->strings["Empty post discarded."] = "Empty post discarded.";
+$a->strings["System error. Post not saved."] = "System error. Post not saved.";
+$a->strings["This message was sent to you by %s, a member of the Friendica social network."] = "This message was sent to you by %s, a member of the Friendica social network.";
+$a->strings["You may visit them online at %s"] = "You may visit them online at %s";
+$a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "Please contact the sender by replying to this post if you do not wish to receive these messages.";
+$a->strings["%s posted an update."] = "%s posted an update.";
+$a->strings["Time Conversion"] = "Time conversion";
+$a->strings["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = "Friendica provides this service for sharing events with other networks and friends in unknown time zones.";
+$a->strings["UTC time: %s"] = "UTC time: %s";
+$a->strings["Current timezone: %s"] = "Current time zone: %s";
+$a->strings["Converted localtime: %s"] = "Converted local time: %s";
+$a->strings["Please select your timezone:"] = "Please select your time zone:";
+$a->strings["No valid account found."] = "No valid account found.";
+$a->strings["Password reset request issued. Check your email."] = "Password reset request issued. Please check your email.";
+$a->strings["\n\t\tDear %1\$s,\n\t\t\tA request was recently received at \"%2\$s\" to reset your account\n\t\tpassword. In order to confirm this request, please select the verification link\n\t\tbelow or paste it into your web browser address bar.\n\n\t\tIf you did NOT request this change, please DO NOT follow the link\n\t\tprovided and ignore and/or delete this email.\n\n\t\tYour password will not be changed unless we can verify that you\n\t\tissued this request."] = "\n\t\tDear %1\$s,\n\t\t\tA request was issued at \"%2\$s\" to reset your account\n\t\tpassword. In order to confirm this request, please select the verification link\n\t\tbelow or paste it into your web browser address bar.\n\n\t\tIf you did NOT request this change, please DO NOT follow the link\n\t\tprovided and ignore/delete this email.\n\n\t\tYour password will not be changed unless we can verify that you\n\t\tissued this request.";
+$a->strings["\n\t\tFollow this link to verify your identity:\n\n\t\t%1\$s\n\n\t\tYou will then receive a follow-up message containing the new password.\n\t\tYou may change that password from your account settings page after logging in.\n\n\t\tThe login details are as follows:\n\n\t\tSite Location:\t%2\$s\n\t\tLogin Name:\t%3\$s"] = "\n\t\tFollow this link to verify your identity:\n\n\t\t%1\$s\n\n\t\tYou will then receive a follow-up message containing the new password.\n\t\tYou may change that password from your account settings page after logging in.\n\n\t\tThe login details are as follows:\n\n\t\tSite Location:\t%2\$s\n\t\tLogin Name:\t%3\$s";
+$a->strings["Password reset requested at %s"] = "Password reset requested at %s";
+$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Request could not be verified. (You may have previously submitted it.) Password reset failed.";
+$a->strings["Password Reset"] = "Forgotten password?";
+$a->strings["Your password has been reset as requested."] = "Your password has been reset as requested.";
+$a->strings["Your new password is"] = "Your new password is";
+$a->strings["Save or copy your new password - and then"] = "Save or copy your new password - and then";
+$a->strings["click here to login"] = "click here to login";
+$a->strings["Your password may be changed from the <em>Settings</em> page after successful login."] = "Your password may be changed from the <em>Settings</em> page after successful login.";
+$a->strings["\n\t\t\t\tDear %1\$s,\n\t\t\t\t\tYour password has been changed as requested. Please retain this\n\t\t\t\tinformation for your records (or change your password immediately to\n\t\t\t\tsomething that you will remember).\n\t\t\t"] = "\n\t\t\t\tDear %1\$s,\n\t\t\t\t\tYour password has been changed as requested. Please retain this\n\t\t\t\tinformation for your records or change your password immediately to\n\t\t\t\tsomething that you will remember.\n\t\t\t";
+$a->strings["\n\t\t\t\tYour login details are as follows:\n\n\t\t\t\tSite Location:\t%1\$s\n\t\t\t\tLogin Name:\t%2\$s\n\t\t\t\tPassword:\t%3\$s\n\n\t\t\t\tYou may change that password from your account settings page after logging in.\n\t\t\t"] = "\n\t\t\t\tYour login details are as follows:\n\n\t\t\t\tSite Location:\t%1\$s\n\t\t\t\tLogin Name:\t%2\$s\n\t\t\t\tPassword:\t%3\$s\n\n\t\t\t\tYou may change that password from your account settings page after logging in.\n\t\t\t";
+$a->strings["Your password has been changed at %s"] = "Your password has been changed at %s";
+$a->strings["Forgot your Password?"] = "Reset My Password";
+$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Enter email address or nickname to reset your password. You will receive further instruction via email.";
+$a->strings["Nickname or Email: "] = "Nickname or email: ";
+$a->strings["Reset"] = "Reset";
+$a->strings["Manage Identities and/or Pages"] = "Manage Identities and Pages";
+$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "Accounts that I manage or own.";
+$a->strings["Select an identity to manage: "] = "Select identity:";
+$a->strings["No keywords to match. Please add keywords to your default profile."] = "No keywords to match. Please add keywords to your default profile.";
+$a->strings["is interested in:"] = "is interested in:";
+$a->strings["Profile Match"] = "Profile Match";
+$a->strings["No recipient selected."] = "No recipient selected.";
+$a->strings["Unable to locate contact information."] = "Unable to locate contact information.";
+$a->strings["Message could not be sent."] = "Message could not be sent.";
+$a->strings["Message collection failure."] = "Message collection failure.";
+$a->strings["Message sent."] = "Message sent.";
+$a->strings["Do you really want to delete this message?"] = "Do you really want to delete this message?";
+$a->strings["Message deleted."] = "Message deleted.";
+$a->strings["Conversation removed."] = "Conversation removed.";
+$a->strings["Send Private Message"] = "Send private message";
+$a->strings["To:"] = "To:";
+$a->strings["Subject:"] = "Subject:";
+$a->strings["No messages."] = "No messages.";
+$a->strings["Message not available."] = "Message not available.";
+$a->strings["Delete message"] = "Delete message";
+$a->strings["Delete conversation"] = "Delete conversation";
+$a->strings["No secure communications available. You <strong>may</strong> be able to respond from the sender's profile page."] = "No secure communications available. You <strong>may</strong> be able to respond from the sender's profile page.";
+$a->strings["Send Reply"] = "Send reply";
+$a->strings["Unknown sender - %s"] = "Unknown sender - %s";
+$a->strings["You and %s"] = "Me and %s";
+$a->strings["%s and You"] = "%s and me";
+$a->strings["D, d M Y - g:i A"] = "D, d M Y - g:i A";
+$a->strings["%d message"] = array(
+       0 => "%d message",
+       1 => "%d messages",
+);
+$a->strings["Mood"] = "Mood";
+$a->strings["Set your current mood and tell your friends"] = "Set your current mood and tell your friends";
 $a->strings["Warning: This group contains %s member from a network that doesn't allow non public messages."] = array(
        0 => "Warning: This group contains %s member from a network that doesn't allow non public messages.",
        1 => "Warning: This group contains %s members from a network that doesn't allow non public messages.",
@@ -1842,9 +1609,223 @@ $a->strings["Shared Links"] = "Shared links";
 $a->strings["Interesting Links"] = "Interesting links";
 $a->strings["Starred"] = "Starred";
 $a->strings["Favourite Posts"] = "My favorite posts";
+$a->strings["Invalid request identifier."] = "Invalid request identifier.";
+$a->strings["Discard"] = "Discard";
+$a->strings["Network Notifications"] = "Network notifications";
+$a->strings["System Notifications"] = "System notifications";
+$a->strings["Personal Notifications"] = "Personal notifications";
+$a->strings["Home Notifications"] = "Home notifications";
+$a->strings["Show Ignored Requests"] = "Show ignored requests.";
+$a->strings["Hide Ignored Requests"] = "Hide ignored requests";
+$a->strings["Notification type: "] = "Notification type: ";
+$a->strings["suggested by %s"] = "suggested by %s";
+$a->strings["Post a new friend activity"] = "Post a new friend activity";
+$a->strings["if applicable"] = "if applicable";
+$a->strings["Claims to be known to you: "] = "Says they know me:";
+$a->strings["yes"] = "yes";
+$a->strings["no"] = "no";
+$a->strings["Shall your connection be bidirectional or not?"] = "Shall your connection be in both directions or not?";
+$a->strings["Accepting %s as a friend allows %s to subscribe to your posts, and you will also receive updates from them in your news feed."] = "Accepting %s as a friend allows %s to subscribe to your posts; you will also receive updates from them in your news feed.";
+$a->strings["Accepting %s as a subscriber allows them to subscribe to your posts, but you will not receive updates from them in your news feed."] = "Accepting %s as a subscriber allows them to subscribe to your posts, but you will not receive updates from them in your news feed.";
+$a->strings["Accepting %s as a sharer allows them to subscribe to your posts, but you will not receive updates from them in your news feed."] = "Accepting %s as a sharer allows them to subscribe to your posts, but you will not receive updates from them in your news feed.";
+$a->strings["Friend"] = "Friend";
+$a->strings["Sharer"] = "Sharer";
+$a->strings["Subscriber"] = "Subscriber";
+$a->strings["No introductions."] = "No introductions.";
+$a->strings["Show unread"] = "Show unread";
+$a->strings["Show all"] = "Show all";
+$a->strings["No more %s notifications."] = "No more %s notifications.";
+$a->strings["No more system notifications."] = "No more system notifications.";
+$a->strings["Post successful."] = "Post successful.";
+$a->strings["OpenID protocol error. No ID returned."] = "OpenID protocol error. No ID returned.";
+$a->strings["Account not found and OpenID registration is not permitted on this site."] = "Account not found and OpenID registration is not permitted on this site.";
+$a->strings["Subscribing to OStatus contacts"] = "Subscribing to OStatus contacts";
+$a->strings["No contact provided."] = "No contact provided.";
+$a->strings["Couldn't fetch information for contact."] = "Couldn't fetch information for contact.";
+$a->strings["Couldn't fetch friends for contact."] = "Couldn't fetch friends for contact.";
+$a->strings["Done"] = "Done";
+$a->strings["success"] = "success";
+$a->strings["failed"] = "failed";
+$a->strings["Keep this window open until done."] = "Keep this window open until done.";
+$a->strings["Not Extended"] = "Not extended";
+$a->strings["Recent Photos"] = "Recent photos";
+$a->strings["Upload New Photos"] = "Upload new photos";
+$a->strings["everybody"] = "everybody";
+$a->strings["Contact information unavailable"] = "Contact information unavailable";
+$a->strings["Album not found."] = "Album not found.";
+$a->strings["Delete Album"] = "Delete album";
+$a->strings["Do you really want to delete this photo album and all its photos?"] = "Do you really want to delete this photo album and all its photos?";
+$a->strings["Delete Photo"] = "Delete photo";
+$a->strings["Do you really want to delete this photo?"] = "Do you really want to delete this photo?";
+$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "%1\$s was tagged in %2\$s by %3\$s";
+$a->strings["a photo"] = "a photo";
+$a->strings["Image exceeds size limit of %s"] = "Image exceeds size limit of %s";
+$a->strings["Image file is empty."] = "Image file is empty.";
+$a->strings["Unable to process image."] = "Unable to process image.";
+$a->strings["Image upload failed."] = "Image upload failed.";
+$a->strings["No photos selected"] = "No photos selected";
+$a->strings["Access to this item is restricted."] = "Access to this item is restricted.";
+$a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage.";
+$a->strings["Upload Photos"] = "Upload photos";
+$a->strings["New album name: "] = "New album name: ";
+$a->strings["or existing album name: "] = "or existing album name: ";
+$a->strings["Do not show a status post for this upload"] = "Do not show a status post for this upload";
+$a->strings["Show to Groups"] = "Show to groups";
+$a->strings["Show to Contacts"] = "Show to contacts";
+$a->strings["Private Photo"] = "Private photo";
+$a->strings["Public Photo"] = "Public photo";
+$a->strings["Edit Album"] = "Edit album";
+$a->strings["Show Newest First"] = "Show newest first";
+$a->strings["Show Oldest First"] = "Show oldest first";
+$a->strings["View Photo"] = "View photo";
+$a->strings["Permission denied. Access to this item may be restricted."] = "Permission denied. Access to this item may be restricted.";
+$a->strings["Photo not available"] = "Photo not available";
+$a->strings["View photo"] = "View photo";
+$a->strings["Edit photo"] = "Edit photo";
+$a->strings["Use as profile photo"] = "Use as profile photo";
+$a->strings["View Full Size"] = "View full size";
+$a->strings["Tags: "] = "Tags: ";
+$a->strings["[Remove any tag]"] = "[Remove any tag]";
+$a->strings["New album name"] = "New album name";
+$a->strings["Caption"] = "Caption";
+$a->strings["Add a Tag"] = "Add Tag";
+$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Example: @bob, @jojo@example.com, #California, #camping";
+$a->strings["Do not rotate"] = "Do not rotate";
+$a->strings["Rotate CW (right)"] = "Rotate right (CW)";
+$a->strings["Rotate CCW (left)"] = "Rotate left (CCW)";
+$a->strings["Private photo"] = "Private photo";
+$a->strings["Public photo"] = "Public photo";
+$a->strings["Map"] = "Map";
+$a->strings["View Album"] = "View album";
+$a->strings["{0} wants to be your friend"] = "{0} wants to be your friend";
+$a->strings["{0} sent you a message"] = "{0} sent you a message";
+$a->strings["{0} requested registration"] = "{0} requested registration";
+$a->strings["Poke/Prod"] = "Poke/Prod";
+$a->strings["poke, prod or do other things to somebody"] = "Poke, prod or do other things to somebody";
+$a->strings["Recipient"] = "Recipient:";
+$a->strings["Choose what you wish to do to recipient"] = "Choose what you wish to do:";
+$a->strings["Make this post private"] = "Make this post private";
+$a->strings["Tips for New Members"] = "Tips for New Members";
+$a->strings["Image uploaded but image cropping failed."] = "Image uploaded but image cropping failed.";
+$a->strings["Image size reduction [%s] failed."] = "Image size reduction [%s] failed.";
+$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Shift-reload the page or clear browser cache if the new photo does not display immediately.";
+$a->strings["Unable to process image"] = "Unable to process image";
+$a->strings["Upload File:"] = "Upload File:";
+$a->strings["Select a profile:"] = "Select a profile:";
+$a->strings["Upload"] = "Upload";
+$a->strings["or"] = "or";
+$a->strings["skip this step"] = "skip this step";
+$a->strings["select a photo from your photo albums"] = "select a photo from your photo albums";
+$a->strings["Crop Image"] = "Crop Image";
+$a->strings["Please adjust the image cropping for optimum viewing."] = "Please adjust the image cropping for optimum viewing.";
+$a->strings["Done Editing"] = "Done editing";
+$a->strings["Image uploaded successfully."] = "Image uploaded successfully.";
+$a->strings["Profile deleted."] = "Profile deleted.";
+$a->strings["Profile-"] = "Profile-";
+$a->strings["New profile created."] = "New profile created.";
+$a->strings["Profile unavailable to clone."] = "Profile unavailable to clone.";
+$a->strings["Profile Name is required."] = "Profile name is required.";
+$a->strings["Marital Status"] = "Marital status";
+$a->strings["Romantic Partner"] = "Romantic partner";
+$a->strings["Work/Employment"] = "Work/Employment:";
+$a->strings["Religion"] = "Religion";
+$a->strings["Political Views"] = "Political views";
+$a->strings["Gender"] = "Gender";
+$a->strings["Sexual Preference"] = "Sexual preference";
+$a->strings["XMPP"] = "XMPP";
+$a->strings["Homepage"] = "Homepage";
+$a->strings["Interests"] = "Interests";
+$a->strings["Address"] = "Address";
+$a->strings["Location"] = "Location";
+$a->strings["Profile updated."] = "Profile updated.";
+$a->strings[" and "] = " and ";
+$a->strings["public profile"] = "public profile";
+$a->strings["%1\$s changed %2\$s to &ldquo;%3\$s&rdquo;"] = "%1\$s changed %2\$s to &ldquo;%3\$s&rdquo;";
+$a->strings[" - Visit %1\$s's %2\$s"] = " - Visit %1\$s's %2\$s";
+$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s has an updated %2\$s, changing %3\$s.";
+$a->strings["Hide contacts and friends:"] = "Hide contacts and friends:";
+$a->strings["Hide your contact/friend list from viewers of this profile?"] = "Hide your contact/friend list from viewers of this profile?";
+$a->strings["Show more profile fields:"] = "Show more profile fields:";
+$a->strings["Profile Actions"] = "Profile actions";
+$a->strings["Edit Profile Details"] = "Edit Profile Details";
+$a->strings["Change Profile Photo"] = "Change profile photo";
+$a->strings["View this profile"] = "View this profile";
+$a->strings["Create a new profile using these settings"] = "Create a new profile using these settings";
+$a->strings["Clone this profile"] = "Clone this profile";
+$a->strings["Delete this profile"] = "Delete this profile";
+$a->strings["Basic information"] = "Basic information";
+$a->strings["Profile picture"] = "Profile picture";
+$a->strings["Preferences"] = "Preferences";
+$a->strings["Status information"] = "Status information";
+$a->strings["Additional information"] = "Additional information";
+$a->strings["Relation"] = "Relation";
+$a->strings["Your Gender:"] = "Gender:";
+$a->strings["<span class=\"heart\">&hearts;</span> Marital Status:"] = "<span class=\"heart\">&hearts;</span> Marital status:";
+$a->strings["Example: fishing photography software"] = "Example: fishing photography software";
+$a->strings["Profile Name:"] = "Profile name:";
+$a->strings["This is your <strong>public</strong> profile.<br />It <strong>may</strong> be visible to anybody using the internet."] = "This is your <strong>public</strong> profile.<br />It <strong>may</strong> be visible to anybody using the internet.";
+$a->strings["Your Full Name:"] = "My full name:";
+$a->strings["Title/Description:"] = "Title/Description:";
+$a->strings["Street Address:"] = "Street address:";
+$a->strings["Locality/City:"] = "Locality/City:";
+$a->strings["Region/State:"] = "Region/State:";
+$a->strings["Postal/Zip Code:"] = "Postcode:";
+$a->strings["Country:"] = "Country:";
+$a->strings["Who: (if applicable)"] = "Who: (if applicable)";
+$a->strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Examples: cathy123, Cathy Williams, cathy@example.com";
+$a->strings["Since [date]:"] = "Since when:";
+$a->strings["Tell us about yourself..."] = "About myself:";
+$a->strings["XMPP (Jabber) address:"] = "XMPP (Jabber) address:";
+$a->strings["The XMPP address will be propagated to your contacts so that they can follow you."] = "The XMPP address will be propagated to your contacts so that they can follow you.";
+$a->strings["Homepage URL:"] = "Homepage URL:";
+$a->strings["Religious Views:"] = "Religious views:";
+$a->strings["Public Keywords:"] = "Public keywords:";
+$a->strings["(Used for suggesting potential friends, can be seen by others)"] = "Used for suggesting potential friends, can be seen by others.";
+$a->strings["Private Keywords:"] = "Private keywords:";
+$a->strings["(Used for searching profiles, never shown to others)"] = "Used for searching profiles, never shown to others.";
+$a->strings["Musical interests"] = "Music:";
+$a->strings["Books, literature"] = "Books, literature, poetry:";
+$a->strings["Television"] = "Television:";
+$a->strings["Film/dance/culture/entertainment"] = "Film, dance, culture, entertainment";
+$a->strings["Hobbies/Interests"] = "Hobbies/Interests:";
+$a->strings["Love/romance"] = "Love/Romance:";
+$a->strings["Work/employment"] = "Work/Employment:";
+$a->strings["School/education"] = "School/Education:";
+$a->strings["Contact information and Social Networks"] = "Contact information and other social networks:";
+$a->strings["Edit/Manage Profiles"] = "Edit/Manage Profiles";
+$a->strings["Registration successful. Please check your email for further instructions."] = "Registration successful. Please check your email for further instructions.";
+$a->strings["Failed to send email message. Here your accout details:<br> login: %s<br> password: %s<br><br>You can change your password after login."] = "Failed to send email message. Here your account details:<br> login: %s<br> password: %s<br><br>You can change your password after login.";
+$a->strings["Registration successful."] = "Registration successful.";
+$a->strings["Your registration can not be processed."] = "Your registration cannot be processed.";
+$a->strings["Your registration is pending approval by the site owner."] = "Your registration is pending approval by the site administrator.";
+$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Sign up now'.";
+$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items.";
+$a->strings["Your OpenID (optional): "] = "Your OpenID (optional): ";
+$a->strings["Include your profile in member directory?"] = "Include your profile in member directory?";
+$a->strings["Note for the admin"] = "Note for the admin";
+$a->strings["Leave a message for the admin, why you want to join this node"] = "Leave a message for the admin, why you want to join this node.";
+$a->strings["Membership on this site is by invitation only."] = "Membership on this site is by invitation only.";
+$a->strings["Your invitation ID: "] = "Your invitation ID: ";
+$a->strings["Your Full Name (e.g. Joe Smith, real or real-looking): "] = "Your full name: ";
+$a->strings["Your Email Address: "] = "Your email address: ";
+$a->strings["New Password:"] = "New password:";
+$a->strings["Leave empty for an auto generated password."] = "Leave empty for an auto generated password.";
+$a->strings["Confirm:"] = "Confirm new password:";
+$a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be '<strong>nickname@\$sitename</strong>'."] = "Choose a profile nickname. Your nickname will be part of your identity address; for example:  '<strong>nickname@\$sitename</strong>'.";
+$a->strings["Choose a nickname: "] = "Choose a nickname: ";
+$a->strings["Import your profile to this friendica instance"] = "Import an existing Friendica profile to this node.";
+$a->strings["Account approved."] = "Account approved.";
+$a->strings["Registration revoked for %s"] = "Registration revoked for %s";
+$a->strings["Please login."] = "Please login.";
+$a->strings["Remove My Account"] = "Remove My Account";
+$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "This will completely remove your account. Once this has been done it is not recoverable.";
+$a->strings["Please enter your password for verification:"] = "Please enter your password for verification:";
+$a->strings["Resubscribing to OStatus contacts"] = "Resubscribing to OStatus contacts";
+$a->strings["Error"] = "Error";
 $a->strings["Display"] = "Display";
 $a->strings["Social Networks"] = "Social networks";
 $a->strings["Connected apps"] = "Connected apps";
+$a->strings["Export personal data"] = "Export personal data";
 $a->strings["Remove account"] = "Remove account";
 $a->strings["Missing some important data!"] = "Missing some important data!";
 $a->strings["Failed to connect with email account using the settings provided."] = "Failed to connect with email account using the settings provided.";
@@ -2015,6 +1996,30 @@ $a->strings["Change the behaviour of this account for special situations"] = "Ch
 $a->strings["Relocate"] = "Recent relocation";
 $a->strings["If you have moved this profile from another server, and some of your contacts don't receive your updates, try pushing this button."] = "If you have moved this profile from another server and some of your contacts don't receive your updates:";
 $a->strings["Resend relocate message to contacts"] = "Resend relocation message to contacts";
+$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s is following %2\$s's %3\$s";
+$a->strings["Do you really want to delete this suggestion?"] = "Do you really want to delete this suggestion?";
+$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "No suggestions available. If this is a new site, please try again in 24 hours.";
+$a->strings["Ignore/Hide"] = "Ignore/Hide";
+$a->strings["Tag removed"] = "Tag removed";
+$a->strings["Remove Item Tag"] = "Remove Item tag";
+$a->strings["Select a tag to remove: "] = "Select a tag to remove: ";
+$a->strings["Export account"] = "Export account";
+$a->strings["Export your account info and contacts. Use this to make a backup of your account and/or to move it to another server."] = "Export your account info and contacts. Use this to backup your account or to move it to another server.";
+$a->strings["Export all"] = "Export all";
+$a->strings["Export your accout info, contacts and all your items as json. Could be a very big file, and could take a lot of time. Use this to make a full backup of your account (photos are not exported)"] = "Export your account info, contacts and all your items as json. Could be a very big file, and could take a lot of time. Use this to make a full backup of your account (photos are not exported)";
+$a->strings["Contact wasn't found or can't be unfollowed."] = "Contact wasn't found or can't be unfollowed.";
+$a->strings["Contact unfollowed"] = "Contact unfollowed";
+$a->strings["You aren't a friend of this contact."] = "You aren't a friend of this contact.";
+$a->strings["Unfollowing is currently not supported by your network."] = "Unfollowing is currently not supported by your network.";
+$a->strings["Do you really want to delete this video?"] = "Do you really want to delete this video?";
+$a->strings["Delete Video"] = "Delete video";
+$a->strings["No videos selected"] = "No videos selected";
+$a->strings["Recent Videos"] = "Recent videos";
+$a->strings["Upload New Videos"] = "Upload new videos";
+$a->strings["Number of daily wall messages for %s exceeded. Message failed."] = "Number of daily wall messages for %s exceeded. Message failed.";
+$a->strings["Unable to check your home location."] = "Unable to check your home location.";
+$a->strings["No recipient."] = "No recipient.";
+$a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = "If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders.";
 $a->strings["via"] = "via";
 $a->strings["greenzero"] = "greenzero";
 $a->strings["purplezero"] = "purplezero";
@@ -2061,7 +2066,6 @@ $a->strings["Local Directory"] = "Local directory";
 $a->strings["Quick Start"] = "Quick start";
 $a->strings["Delete this item?"] = "Delete this item?";
 $a->strings["show fewer"] = "Show fewer.";
-$a->strings["toggle mobile"] = "Toggle mobile";
 $a->strings["Update %s failed. See error logs."] = "Update %s failed. See error logs.";
 $a->strings["Create a New Account"] = "Create a new account";
 $a->strings["Password: "] = "Password: ";
@@ -2072,3 +2076,4 @@ $a->strings["Website Terms of Service"] = "Website Terms of Service";
 $a->strings["terms of service"] = "Terms of service";
 $a->strings["Website Privacy Policy"] = "Website Privacy Policy";
 $a->strings["privacy policy"] = "Privacy policy";
+$a->strings["toggle mobile"] = "Toggle mobile";
index 5dfc6d121701329f794625a51b456abde0ab38a8..25252717701a7e15dfefe5069f103653e8618cc5 100644 (file)
 # Translators:
 # Matthew Exon <transifex.mexon@spamgourmet.com>, 2013-2015
 # Mike Macgirvin, 2010
+# mytbk <mytbk920423@gmail.com>, 2017
+# mytbk <mytbk920423@gmail.com>, 2017
 # Matthew Exon <transifex.mexon@spamgourmet.com>, 2012-2013
 msgid ""
 msgstr ""
 "Project-Id-Version: friendica\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-09 08:57+0100\n"
-"PO-Revision-Date: 2015-02-11 09:48+0000\n"
-"Last-Translator: Matthew Exon <transifex.mexon@spamgourmet.com>\n"
-"Language-Team: Chinese (China) (http://www.transifex.com/projects/p/friendica/language/zh_CN/)\n"
+"POT-Creation-Date: 2017-10-01 08:52+0200\n"
+"PO-Revision-Date: 2017-10-03 01:44+0000\n"
+"Last-Translator: fabrixxm <fabrix.xm@gmail.com>\n"
+"Language-Team: Chinese (China) (http://www.transifex.com/Friendica/friendica/language/zh_CN/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: zh_CN\n"
 "Plural-Forms: nplurals=1; plural=0;\n"
 
-#: ../../mod/contacts.php:108
-#, php-format
-msgid "%d contact edited."
-msgid_plural "%d contacts edited"
-msgstr[0] "%d熟人编辑了"
+#: include/features.php:65
+msgid "General Features"
+msgstr "通用特性"
 
-#: ../../mod/contacts.php:139 ../../mod/contacts.php:272
-msgid "Could not access contact record."
-msgstr "用不了熟人记录。"
+#: include/features.php:67
+msgid "Multiple Profiles"
+msgstr "多简介"
 
-#: ../../mod/contacts.php:153
-msgid "Could not locate selected profile."
-msgstr "找不到选择的简介。"
+#: include/features.php:67
+msgid "Ability to create multiple profiles"
+msgstr "能穿凿多简介"
 
-#: ../../mod/contacts.php:186
-msgid "Contact updated."
-msgstr "ç\86\9f人æ\9b´æ\96°äº\86ã\80\82"
+#: include/features.php:68
+msgid "Photo Location"
+msgstr "ç\85§ç\89\87å\9c°ç\82¹"
 
-#: ../../mod/contacts.php:188 ../../mod/dfrn_request.php:576
-msgid "Failed to update contact record."
-msgstr "更新熟人记录失败了。"
+#: include/features.php:68
+msgid ""
+"Photo metadata is normally stripped. This extracts the location (if present)"
+" prior to stripping metadata and links it to a map."
+msgstr ""
 
-#: ../../mod/contacts.php:254 ../../mod/manage.php:96
-#: ../../mod/display.php:499 ../../mod/profile_photo.php:19
-#: ../../mod/profile_photo.php:169 ../../mod/profile_photo.php:180
-#: ../../mod/profile_photo.php:193 ../../mod/follow.php:9
-#: ../../mod/item.php:168 ../../mod/item.php:184 ../../mod/group.php:19
-#: ../../mod/dfrn_confirm.php:55 ../../mod/fsuggest.php:78
-#: ../../mod/wall_upload.php:66 ../../mod/viewcontacts.php:24
-#: ../../mod/notifications.php:66 ../../mod/message.php:38
-#: ../../mod/message.php:174 ../../mod/crepair.php:119
-#: ../../mod/nogroup.php:25 ../../mod/network.php:4 ../../mod/allfriends.php:9
-#: ../../mod/events.php:140 ../../mod/install.php:151
-#: ../../mod/wallmessage.php:9 ../../mod/wallmessage.php:33
-#: ../../mod/wallmessage.php:79 ../../mod/wallmessage.php:103
-#: ../../mod/wall_attach.php:55 ../../mod/settings.php:102
-#: ../../mod/settings.php:596 ../../mod/settings.php:601
-#: ../../mod/register.php:42 ../../mod/delegate.php:12 ../../mod/mood.php:114
-#: ../../mod/suggest.php:58 ../../mod/profiles.php:165
-#: ../../mod/profiles.php:618 ../../mod/editpost.php:10 ../../mod/api.php:26
-#: ../../mod/api.php:31 ../../mod/notes.php:20 ../../mod/poke.php:135
-#: ../../mod/invite.php:15 ../../mod/invite.php:101 ../../mod/photos.php:134
-#: ../../mod/photos.php:1050 ../../mod/regmod.php:110 ../../mod/uimport.php:23
-#: ../../mod/attach.php:33 ../../include/items.php:4712 ../../index.php:369
-msgid "Permission denied."
-msgstr "权限不够。"
+#: include/features.php:69
+msgid "Export Public Calendar"
+msgstr "导出公共日历"
 
-#: ../../mod/contacts.php:287
-msgid "Contact has been blocked"
-msgstr "熟人拦了"
+#: include/features.php:69
+msgid "Ability for visitors to download the public calendar"
+msgstr ""
 
-#: ../../mod/contacts.php:287
-msgid "Contact has been unblocked"
-msgstr "熟人否拦了"
+#: include/features.php:74
+msgid "Post Composition Features"
+msgstr "文章编写特性"
 
-#: ../../mod/contacts.php:298
-msgid "Contact has been ignored"
-msgstr "熟人不理了"
+#: include/features.php:75
+msgid "Post Preview"
+msgstr "文章预览"
 
-#: ../../mod/contacts.php:298
-msgid "Contact has been unignored"
-msgstr "熟人否不理了"
+#: include/features.php:75
+msgid "Allow previewing posts and comments before publishing them"
+msgstr "在发布前允许预览文章和评论"
 
-#: ../../mod/contacts.php:310
-msgid "Contact has been archived"
-msgstr "把联系存档了"
+#: include/features.php:76
+msgid "Auto-mention Forums"
+msgstr "自动提示论坛"
 
-#: ../../mod/contacts.php:310
-msgid "Contact has been unarchived"
-msgstr "把联系从存档拿来了"
+#: include/features.php:76
+msgid ""
+"Add/remove mention when a forum page is selected/deselected in ACL window."
+msgstr ""
 
-#: ../../mod/contacts.php:335 ../../mod/contacts.php:711
-msgid "Do you really want to delete this contact?"
-msgstr "您真的想删除这个熟人吗?"
+#: include/features.php:81
+msgid "Network Sidebar Widgets"
+msgstr "网络工具栏小窗口"
 
-#: ../../mod/contacts.php:337 ../../mod/message.php:209
-#: ../../mod/settings.php:1010 ../../mod/settings.php:1016
-#: ../../mod/settings.php:1024 ../../mod/settings.php:1028
-#: ../../mod/settings.php:1033 ../../mod/settings.php:1039
-#: ../../mod/settings.php:1045 ../../mod/settings.php:1051
-#: ../../mod/settings.php:1081 ../../mod/settings.php:1082
-#: ../../mod/settings.php:1083 ../../mod/settings.php:1084
-#: ../../mod/settings.php:1085 ../../mod/dfrn_request.php:830
-#: ../../mod/register.php:233 ../../mod/suggest.php:29
-#: ../../mod/profiles.php:661 ../../mod/profiles.php:664 ../../mod/api.php:105
-#: ../../include/items.php:4557
-msgid "Yes"
-msgstr "是"
+#: include/features.php:82
+msgid "Search by Date"
+msgstr "按日期搜索"
 
-#: ../../mod/contacts.php:340 ../../mod/tagrm.php:11 ../../mod/tagrm.php:94
-#: ../../mod/message.php:212 ../../mod/fbrowser.php:81
-#: ../../mod/fbrowser.php:116 ../../mod/settings.php:615
-#: ../../mod/settings.php:641 ../../mod/dfrn_request.php:844
-#: ../../mod/suggest.php:32 ../../mod/editpost.php:148
-#: ../../mod/photos.php:203 ../../mod/photos.php:292
-#: ../../include/conversation.php:1129 ../../include/items.php:4560
-msgid "Cancel"
-msgstr "退消"
+#: include/features.php:82
+msgid "Ability to select posts by date ranges"
+msgstr "能按时期范围选择文章"
 
-#: ../../mod/contacts.php:352
-msgid "Contact has been removed."
-msgstr "熟人删除了。"
+#: include/features.php:83 include/features.php:113
+msgid "List Forums"
+msgstr ""
 
-#: ../../mod/contacts.php:390
-#, php-format
-msgid "You are mutual friends with %s"
-msgstr "您和%s是共同朋友们"
+#: include/features.php:83
+msgid "Enable widget to display the forums your are connected with"
+msgstr ""
 
-#: ../../mod/contacts.php:394
-#, php-format
-msgid "You are sharing with %s"
-msgstr "您分享给%s"
+#: include/features.php:84
+msgid "Group Filter"
+msgstr "组过滤器"
 
-#: ../../mod/contacts.php:399
-#, php-format
-msgid "%s is sharing with you"
-msgstr "%s给您分享"
+#: include/features.php:84
+msgid "Enable widget to display Network posts only from selected group"
+msgstr "启用用于只显示从所选组发出的网络文章的小组件"
 
-#: ../../mod/contacts.php:416
-msgid "Private communications are not available for this contact."
-msgstr "没有私人的沟通跟这个熟人"
+#: include/features.php:85
+msgid "Network Filter"
+msgstr "网络滤器"
 
-#: ../../mod/contacts.php:419 ../../mod/admin.php:569
-msgid "Never"
-msgstr "ä»\8eæ\9cª"
+#: include/features.php:85
+msgid "Enable widget to display Network posts only from selected network"
+msgstr "使å\85\89表示ç½\91ç»\9cæ\96\87ç« ä»\8eé\80\89æ\8b©ç\9a\84ç½\91ç»\9cå°\8fçª\97å\8f£"
 
-#: ../../mod/contacts.php:423
-msgid "(Update was successful)"
-msgstr "(更新成功)"
+#: include/features.php:86 mod/network.php:194 mod/search.php:37
+msgid "Saved Searches"
+msgstr "保存的搜索"
 
-#: ../../mod/contacts.php:423
-msgid "(Update was not successful)"
-msgstr "(更新不成功)"
+#: include/features.php:86
+msgid "Save search terms for re-use"
+msgstr "保存搜索关键为再用"
 
-#: ../../mod/contacts.php:425
-msgid "Suggest friends"
-msgstr "建议朋友们"
+#: include/features.php:91
+msgid "Network Tabs"
+msgstr "网络分页"
 
-#: ../../mod/contacts.php:429
-#, php-format
-msgid "Network type: %s"
-msgstr "网络种类: %s"
+#: include/features.php:92
+msgid "Network Personal Tab"
+msgstr "网络私人分页"
 
-#: ../../mod/contacts.php:432 ../../include/contact_widgets.php:200
-#, php-format
-msgid "%d contact in common"
-msgid_plural "%d contacts in common"
-msgstr[0] "%d共同熟人"
+#: include/features.php:92
+msgid "Enable tab to display only Network posts that you've interacted on"
+msgstr "使表示光网络文章您参加了分页可用"
 
-#: ../../mod/contacts.php:437
-msgid "View all contacts"
-msgstr "ç\9c\8bæ\89\80æ\9c\89ç\9a\84ç\86\9f人"
+#: include/features.php:93
+msgid "Network New Tab"
+msgstr "ç½\91ç»\9cæ\96°å\88\86页"
 
-#: ../../mod/contacts.php:442 ../../mod/contacts.php:501
-#: ../../mod/contacts.php:714 ../../mod/admin.php:1009
-msgid "Unblock"
-msgstr "不拦"
+#: include/features.php:93
+msgid "Enable tab to display only new Network posts (from the last 12 hours)"
+msgstr "使表示光网络文章在12小时内分页可用"
 
-#: ../../mod/contacts.php:442 ../../mod/contacts.php:501
-#: ../../mod/contacts.php:714 ../../mod/admin.php:1008
-msgid "Block"
-msgstr "拦"
+#: include/features.php:94
+msgid "Network Shared Links Tab"
+msgstr "网络分享链接分页"
 
-#: ../../mod/contacts.php:445
-msgid "Toggle Blocked status"
-msgstr "交æ\9b¿æ\8b¦é\85\8dç½®"
+#: include/features.php:94
+msgid "Enable tab to display only Network posts with links in them"
+msgstr "使表示å\85\89ç½\91ç»\9cæ\96\87ç« å\8c\85æ\8b¬é\93¾æ\8e¥å\88\86页å\8f¯ç\94¨"
 
-#: ../../mod/contacts.php:448 ../../mod/contacts.php:502
-#: ../../mod/contacts.php:715
-msgid "Unignore"
-msgstr "停不理"
+#: include/features.php:99
+msgid "Post/Comment Tools"
+msgstr "文章/评论工具"
 
-#: ../../mod/contacts.php:448 ../../mod/contacts.php:502
-#: ../../mod/contacts.php:715 ../../mod/notifications.php:51
-#: ../../mod/notifications.php:164 ../../mod/notifications.php:210
-msgid "Ignore"
-msgstr "忽视"
+#: include/features.php:100
+msgid "Multiple Deletion"
+msgstr "多删除"
 
-#: ../../mod/contacts.php:451
-msgid "Toggle Ignored status"
-msgstr "交替忽视现状"
+#: include/features.php:100
+msgid "Select and delete multiple posts/comments at once"
+msgstr "选择和删除多文章/评论一次"
 
-#: ../../mod/contacts.php:455 ../../mod/contacts.php:716
-msgid "Unarchive"
-msgstr "从存档拿来"
+#: include/features.php:101
+msgid "Edit Sent Posts"
+msgstr "编辑发送的文章"
 
-#: ../../mod/contacts.php:455 ../../mod/contacts.php:716
-msgid "Archive"
-msgstr "存档"
+#: include/features.php:101
+msgid "Edit and correct posts and comments after sending"
+msgstr "编辑或修改文章和评论发送后"
 
-#: ../../mod/contacts.php:458
-msgid "Toggle Archive status"
-msgstr "交替档案现状"
+#: include/features.php:102
+msgid "Tagging"
+msgstr "标签"
 
-#: ../../mod/contacts.php:461
-msgid "Repair"
-msgstr "维修"
+#: include/features.php:102
+msgid "Ability to tag existing posts"
+msgstr "能把目前的文章标签"
 
-#: ../../mod/contacts.php:464
-msgid "Advanced Contact Settings"
-msgstr "专家熟人设置"
+#: include/features.php:103
+msgid "Post Categories"
+msgstr "文章种类"
 
-#: ../../mod/contacts.php:470
-msgid "Communications lost with this contact!"
-msgstr "联系跟这个熟人断开了!"
+#: include/features.php:103
+msgid "Add categories to your posts"
+msgstr "加入种类给您的文章"
 
-#: ../../mod/contacts.php:473
-msgid "Contact Editor"
-msgstr "熟人编器"
-
-#: ../../mod/contacts.php:475 ../../mod/manage.php:110
-#: ../../mod/fsuggest.php:107 ../../mod/message.php:335
-#: ../../mod/message.php:564 ../../mod/crepair.php:186
-#: ../../mod/events.php:478 ../../mod/content.php:710
-#: ../../mod/install.php:248 ../../mod/install.php:286 ../../mod/mood.php:137
-#: ../../mod/profiles.php:686 ../../mod/localtime.php:45
-#: ../../mod/poke.php:199 ../../mod/invite.php:140 ../../mod/photos.php:1084
-#: ../../mod/photos.php:1203 ../../mod/photos.php:1514
-#: ../../mod/photos.php:1565 ../../mod/photos.php:1609
-#: ../../mod/photos.php:1697 ../../object/Item.php:678
-#: ../../view/theme/cleanzero/config.php:80
-#: ../../view/theme/dispy/config.php:70 ../../view/theme/quattro/config.php:64
-#: ../../view/theme/diabook/config.php:148
-#: ../../view/theme/diabook/theme.php:633 ../../view/theme/vier/config.php:53
-#: ../../view/theme/duepuntozero/config.php:59
-msgid "Submit"
-msgstr "提交"
+#: include/features.php:104 include/contact_widgets.php:167
+msgid "Saved Folders"
+msgstr "保存的文件夹"
 
-#: ../../mod/contacts.php:476
-msgid "Profile Visibility"
-msgstr "简历可见量"
+#: include/features.php:104
+msgid "Ability to file posts under folders"
+msgstr "能把文章归档在文件夹 "
 
-#: ../../mod/contacts.php:477
-#, php-format
-msgid ""
-"Please choose the profile you would like to display to %s when viewing your "
-"profile securely."
-msgstr "请选择简介您想给%s显示他安全地看您的简介的时候。"
+#: include/features.php:105
+msgid "Dislike Posts"
+msgstr "不喜欢文章"
 
-#: ../../mod/contacts.php:478
-msgid "Contact Information / Notes"
-msgstr "熟人信息/便条"
+#: include/features.php:105
+msgid "Ability to dislike posts/comments"
+msgstr "能不喜欢文章/评论"
 
-#: ../../mod/contacts.php:479
-msgid "Edit contact notes"
-msgstr "编辑熟人便条"
+#: include/features.php:106
+msgid "Star Posts"
+msgstr "文章星"
 
-#: ../../mod/contacts.php:484 ../../mod/contacts.php:679
-#: ../../mod/viewcontacts.php:64 ../../mod/nogroup.php:40
-#, php-format
-msgid "Visit %s's profile [%s]"
-msgstr "看%s的简介[%s]"
+#: include/features.php:106
+msgid "Ability to mark special posts with a star indicator"
+msgstr "能把优秀文章跟星标注"
 
-#: ../../mod/contacts.php:485
-msgid "Block/Unblock contact"
-msgstr "拦/否拦熟人"
+#: include/features.php:107
+msgid "Mute Post Notifications"
+msgstr ""
 
-#: ../../mod/contacts.php:486
-msgid "Ignore contact"
-msgstr "忽视熟人"
+#: include/features.php:107
+msgid "Ability to mute notifications for a thread"
+msgstr ""
 
-#: ../../mod/contacts.php:487
-msgid "Repair URL settings"
-msgstr "维修URL设置"
+#: include/features.php:112
+msgid "Advanced Profile Settings"
+msgstr ""
 
-#: ../../mod/contacts.php:488
-msgid "View conversations"
-msgstr "看交流"
+#: include/features.php:113
+msgid "Show visitors public community forums at the Advanced Profile Page"
+msgstr ""
 
-#: ../../mod/contacts.php:490
-msgid "Delete contact"
-msgstr "å\88 é\99¤ç\86\9f人"
+#: include/datetime.php:66 include/datetime.php:68 mod/profiles.php:696
+msgid "Miscellaneous"
+msgstr "形形è\89²è\89²"
 
-#: ../../mod/contacts.php:494
-msgid "Last update:"
-msgstr "上个更新:"
+#: include/datetime.php:196 include/identity.php:654
+msgid "Birthday:"
+msgstr "生日:"
 
-#: ../../mod/contacts.php:496
-msgid "Update public posts"
-msgstr "更新公开文章"
+#: include/datetime.php:198 mod/profiles.php:719
+msgid "Age: "
+msgstr "年纪:"
 
-#: ../../mod/contacts.php:498 ../../mod/admin.php:1503
-msgid "Update now"
-msgstr "现在更新"
+#: include/datetime.php:200
+msgid "YYYY-MM-DD or MM-DD"
+msgstr "YYYY-MM-DD 或 MM-DD"
 
-#: ../../mod/contacts.php:505
-msgid "Currently blocked"
-msgstr "现在拦的"
+#: include/datetime.php:370
+msgid "never"
+msgstr "从未"
 
-#: ../../mod/contacts.php:506
-msgid "Currently ignored"
-msgstr "现在不理的"
+#: include/datetime.php:376
+msgid "less than a second ago"
+msgstr "一秒以内"
 
-#: ../../mod/contacts.php:507
-msgid "Currently archived"
-msgstr "现在存档着"
+#: include/datetime.php:379
+msgid "year"
+msgstr ""
 
-#: ../../mod/contacts.php:508 ../../mod/notifications.php:157
-#: ../../mod/notifications.php:204
-msgid "Hide this contact from others"
-msgstr "隐藏这个熟人给别人"
+#: include/datetime.php:379
+msgid "years"
+msgstr "年"
 
-#: ../../mod/contacts.php:508
-msgid ""
-"Replies/likes to your public posts <strong>may</strong> still be visible"
-msgstr "回答/喜欢关您公开文章<strong>会</strong>还可见的"
+#: include/datetime.php:380 include/event.php:454 mod/cal.php:282
+#: mod/events.php:388
+msgid "month"
+msgstr ""
 
-#: ../../mod/contacts.php:509
-msgid "Notification for new posts"
-msgstr "æ\96°æ¶\88æ\81¯æ\8f\90示"
+#: include/datetime.php:380
+msgid "months"
+msgstr "æ\9c\88"
 
-#: ../../mod/contacts.php:509
-msgid "Send a notification of every new post of this contact"
-msgstr "发提示在所有这个联络的新消息"
+#: include/datetime.php:381 include/event.php:455 mod/cal.php:283
+#: mod/events.php:389
+msgid "week"
+msgstr "星期"
 
-#: ../../mod/contacts.php:510
-msgid "Fetch further information for feeds"
-msgstr "æ\8b¿æ\96\87æº\90å\88«ç\9a\84æ¶\88æ\81¯"
+#: include/datetime.php:381
+msgid "weeks"
+msgstr "æ\98\9fæ\9c\9f"
 
-#: ../../mod/contacts.php:511
-msgid "Disabled"
-msgstr "已停用"
+#: include/datetime.php:382 include/event.php:456 mod/cal.php:284
+#: mod/events.php:390
+msgid "day"
+msgstr "日"
 
-#: ../../mod/contacts.php:511
-msgid "Fetch information"
-msgstr "å\8f\96æ¶\88æ\81¯"
+#: include/datetime.php:382
+msgid "days"
+msgstr "天"
 
-#: ../../mod/contacts.php:511
-msgid "Fetch information and keywords"
-msgstr "å\8f\96æ¶\88æ\81¯å\92\8cå\85³é\94®è¯\8d"
+#: include/datetime.php:383
+msgid "hour"
+msgstr "å°\8fæ\97"
 
-#: ../../mod/contacts.php:513
-msgid "Blacklisted keywords"
-msgstr "黑名单关键词"
+#: include/datetime.php:383
+msgid "hours"
+msgstr "小时"
 
-#: ../../mod/contacts.php:513
-msgid ""
-"Comma separated list of keywords that should not be converted to hashtags, "
-"when \"Fetch information and keywords\" is selected"
-msgstr "逗号分的关键词不应该翻译成主题标签,如果“取消息和关键词”选择的。"
-
-#: ../../mod/contacts.php:564
-msgid "Suggestions"
-msgstr "建议"
+#: include/datetime.php:384
+msgid "minute"
+msgstr "分钟"
 
-#: ../../mod/contacts.php:567
-msgid "Suggest potential friends"
-msgstr "建议æ½\9cå\9c¨æ\9c\8bå\8f\8b们"
+#: include/datetime.php:384
+msgid "minutes"
+msgstr "å\88\86é\92\9f"
 
-#: ../../mod/contacts.php:570 ../../mod/group.php:194
-msgid "All Contacts"
-msgstr "所有的熟人"
+#: include/datetime.php:385
+msgid "second"
+msgstr ""
 
-#: ../../mod/contacts.php:573
-msgid "Show all contacts"
-msgstr "表示所有的熟人"
+#: include/datetime.php:385
+msgid "seconds"
+msgstr ""
 
-#: ../../mod/contacts.php:576
-msgid "Unblocked"
-msgstr "不拦了"
+#: include/datetime.php:394
+#, php-format
+msgid "%1$d %2$s ago"
+msgstr "%1$d %2$s以前"
 
-#: ../../mod/contacts.php:579
-msgid "Only show unblocked contacts"
-msgstr "只表示不拦的熟人"
+#: include/datetime.php:620
+#, php-format
+msgid "%s's birthday"
+msgstr "%s的生日"
 
-#: ../../mod/contacts.php:583
-msgid "Blocked"
-msgstr "拦了"
+#: include/datetime.php:621 include/dfrn.php:1332
+#, php-format
+msgid "Happy Birthday %s"
+msgstr "生日快乐%s"
 
-#: ../../mod/contacts.php:586
-msgid "Only show blocked contacts"
-msgstr "只表示拦的熟人"
+#: include/profile_selectors.php:6
+msgid "Male"
+msgstr "男的"
 
-#: ../../mod/contacts.php:590
-msgid "Ignored"
-msgstr "忽è§\86的"
+#: include/profile_selectors.php:6
+msgid "Female"
+msgstr "女的"
 
-#: ../../mod/contacts.php:593
-msgid "Only show ignored contacts"
-msgstr "只表示忽视的熟人"
+#: include/profile_selectors.php:6
+msgid "Currently Male"
+msgstr "现在男的"
 
-#: ../../mod/contacts.php:597
-msgid "Archived"
-msgstr "在存档"
+#: include/profile_selectors.php:6
+msgid "Currently Female"
+msgstr "现在女的"
 
-#: ../../mod/contacts.php:600
-msgid "Only show archived contacts"
-msgstr "只表示档案熟人"
+#: include/profile_selectors.php:6
+msgid "Mostly Male"
+msgstr "主要男的"
 
-#: ../../mod/contacts.php:604
-msgid "Hidden"
-msgstr "隐藏的"
+#: include/profile_selectors.php:6
+msgid "Mostly Female"
+msgstr "主要女的"
 
-#: ../../mod/contacts.php:607
-msgid "Only show hidden contacts"
-msgstr "只表示隐藏的熟人"
+#: include/profile_selectors.php:6
+msgid "Transgender"
+msgstr "跨性別"
 
-#: ../../mod/contacts.php:655
-msgid "Mutual Friendship"
-msgstr "共同友谊"
+#: include/profile_selectors.php:6
+msgid "Intersex"
+msgstr "阴阳人"
 
-#: ../../mod/contacts.php:659
-msgid "is a fan of yours"
-msgstr "是您迷"
+#: include/profile_selectors.php:6
+msgid "Transsexual"
+msgstr "”转基因“人"
 
-#: ../../mod/contacts.php:663
-msgid "you are a fan of"
-msgstr "ä½ å\96\9c欢"
+#: include/profile_selectors.php:6
+msgid "Hermaphrodite"
+msgstr "两æ\80§ä½\93"
 
-#: ../../mod/contacts.php:680 ../../mod/nogroup.php:41
-msgid "Edit contact"
-msgstr "编熟人"
+#: include/profile_selectors.php:6
+msgid "Neuter"
+msgstr "中性的"
 
-#: ../../mod/contacts.php:702 ../../include/nav.php:177
-#: ../../view/theme/diabook/theme.php:125
-msgid "Contacts"
-msgstr "熟人"
+#: include/profile_selectors.php:6
+msgid "Non-specific"
+msgstr "不明确的"
 
-#: ../../mod/contacts.php:706
-msgid "Search your contacts"
-msgstr "搜索您的熟人"
+#: include/profile_selectors.php:6
+msgid "Other"
+msgstr "别的"
 
-#: ../../mod/contacts.php:707 ../../mod/directory.php:61
-msgid "Finding: "
-msgstr "找着:"
+#: include/profile_selectors.php:6 include/conversation.php:1556
+msgid "Undecided"
+msgid_plural "Undecided"
+msgstr[0] "未决定的"
 
-#: ../../mod/contacts.php:708 ../../mod/directory.php:63
-#: ../../include/contact_widgets.php:34
-msgid "Find"
-msgstr "搜索"
+#: include/profile_selectors.php:23
+msgid "Males"
+msgstr "男人"
 
-#: ../../mod/contacts.php:713 ../../mod/settings.php:132
-#: ../../mod/settings.php:640
-msgid "Update"
-msgstr "更新"
+#: include/profile_selectors.php:23
+msgid "Females"
+msgstr "女人"
 
-#: ../../mod/contacts.php:717 ../../mod/group.php:171 ../../mod/admin.php:1007
-#: ../../mod/content.php:438 ../../mod/content.php:741
-#: ../../mod/settings.php:677 ../../mod/photos.php:1654
-#: ../../object/Item.php:130 ../../include/conversation.php:614
-msgid "Delete"
-msgstr "删除"
+#: include/profile_selectors.php:23
+msgid "Gay"
+msgstr "男同性恋的"
 
-#: ../../mod/hcard.php:10
-msgid "No profile"
-msgstr "无简介"
+#: include/profile_selectors.php:23
+msgid "Lesbian"
+msgstr "女同性恋的"
 
-#: ../../mod/manage.php:106
-msgid "Manage Identities and/or Pages"
-msgstr "管理身份或页"
+#: include/profile_selectors.php:23
+msgid "No Preference"
+msgstr "无偏爱"
 
-#: ../../mod/manage.php:107
-msgid ""
-"Toggle between different identities or community/group pages which share "
-"your account details or which you have been granted \"manage\" permissions"
-msgstr "交替不同同一人或社会/组页合用您的账户或给您「管理」批准"
+#: include/profile_selectors.php:23
+msgid "Bisexual"
+msgstr "双性恋的"
 
-#: ../../mod/manage.php:108
-msgid "Select an identity to manage: "
-msgstr "选择同一个人管理:"
+#: include/profile_selectors.php:23
+msgid "Autosexual"
+msgstr "自性的"
 
-#: ../../mod/oexchange.php:25
-msgid "Post successful."
-msgstr "评论发表了。"
+#: include/profile_selectors.php:23
+msgid "Abstinent"
+msgstr "有节制的"
 
-#: ../../mod/profperm.php:19 ../../mod/group.php:72 ../../index.php:368
-msgid "Permission denied"
-msgstr "权限不够"
+#: include/profile_selectors.php:23
+msgid "Virgin"
+msgstr "原始的"
 
-#: ../../mod/profperm.php:25 ../../mod/profperm.php:55
-msgid "Invalid profile identifier."
-msgstr "无限的简介标识符。"
+#: include/profile_selectors.php:23
+msgid "Deviant"
+msgstr "变态"
 
-#: ../../mod/profperm.php:101
-msgid "Profile Visibility Editor"
-msgstr "简介能见度编辑器。"
+#: include/profile_selectors.php:23
+msgid "Fetish"
+msgstr "恋物对象"
 
-#: ../../mod/profperm.php:103 ../../mod/newmember.php:32 ../../boot.php:2119
-#: ../../include/profile_advanced.php:7 ../../include/profile_advanced.php:87
-#: ../../include/nav.php:77 ../../view/theme/diabook/theme.php:124
-msgid "Profile"
-msgstr "简介"
+#: include/profile_selectors.php:23
+msgid "Oodles"
+msgstr "多多"
 
-#: ../../mod/profperm.php:105 ../../mod/group.php:224
-msgid "Click on a contact to add or remove."
-msgstr "点击熟人为添加或删除。"
+#: include/profile_selectors.php:23
+msgid "Nonsexual"
+msgstr "无性"
 
-#: ../../mod/profperm.php:114
-msgid "Visible To"
-msgstr "è\83½è§\81被"
+#: include/profile_selectors.php:42
+msgid "Single"
+msgstr "å\8d\95身"
 
-#: ../../mod/profperm.php:130
-msgid "All Contacts (with secure profile access)"
-msgstr "所有熟人(跟安全地简介使用权)"
+#: include/profile_selectors.php:42
+msgid "Lonely"
+msgstr "寂寞"
 
-#: ../../mod/display.php:82 ../../mod/display.php:284
-#: ../../mod/display.php:503 ../../mod/viewsrc.php:15 ../../mod/admin.php:169
-#: ../../mod/admin.php:1052 ../../mod/admin.php:1265 ../../mod/notice.php:15
-#: ../../include/items.php:4516
-msgid "Item not found."
-msgstr "项目找不到。"
+#: include/profile_selectors.php:42
+msgid "Available"
+msgstr "单身的"
 
-#: ../../mod/display.php:212 ../../mod/videos.php:115
-#: ../../mod/viewcontacts.php:19 ../../mod/community.php:18
-#: ../../mod/dfrn_request.php:762 ../../mod/search.php:89
-#: ../../mod/directory.php:33 ../../mod/photos.php:920
-msgid "Public access denied."
-msgstr "公众看拒绝"
+#: include/profile_selectors.php:42
+msgid "Unavailable"
+msgstr "不可获得的"
 
-#: ../../mod/display.php:332 ../../mod/profile.php:155
-msgid "Access to this profile has been restricted."
-msgstr "使用权这个简介被限制了."
+#: include/profile_selectors.php:42
+msgid "Has crush"
+msgstr "迷恋"
 
-#: ../../mod/display.php:496
-msgid "Item has been removed."
-msgstr "项目被删除了。"
+#: include/profile_selectors.php:42
+msgid "Infatuated"
+msgstr "痴迷"
 
-#: ../../mod/newmember.php:6
-msgid "Welcome to Friendica"
-msgstr "Friendica欢迎你"
+#: include/profile_selectors.php:42
+msgid "Dating"
+msgstr "约会"
 
-#: ../../mod/newmember.php:8
-msgid "New Member Checklist"
-msgstr "新的成员一览表"
+#: include/profile_selectors.php:42
+msgid "Unfaithful"
+msgstr "外遇"
 
-#: ../../mod/newmember.php:12
-msgid ""
-"We would like to offer some tips and links to help make your experience "
-"enjoyable. Click any item to visit the relevant page. A link to this page "
-"will be visible from your home page for two weeks after your initial "
-"registration and then will quietly disappear."
-msgstr "我们想提高几个建议和超链接为让你的经历愉快。点击一个项目为了访问相应的网页。你最初登记两周以上一个环节到这儿来在你的首页,然后悄声地消失。"
+#: include/profile_selectors.php:42
+msgid "Sex Addict"
+msgstr "性交因成瘾者"
 
-#: ../../mod/newmember.php:14
-msgid "Getting Started"
-msgstr "开始方法"
+#: include/profile_selectors.php:42 include/user.php:262 include/user.php:266
+msgid "Friends"
+msgstr "朋友"
 
-#: ../../mod/newmember.php:18
-msgid "Friendica Walk-Through"
-msgstr "Friendica游览"
+#: include/profile_selectors.php:42
+msgid "Friends/Benefits"
+msgstr "朋友/益"
 
-#: ../../mod/newmember.php:18
-msgid ""
-"On your <em>Quick Start</em> page - find a brief introduction to your "
-"profile and network tabs, make some new connections, and find some groups to"
-" join."
-msgstr "在您的<em>快开始</em>页-看段介绍您的简介和网络分页,结新联系,而找新组为加入。"
+#: include/profile_selectors.php:42
+msgid "Casual"
+msgstr "休闲"
 
-#: ../../mod/newmember.php:22 ../../mod/admin.php:1104
-#: ../../mod/admin.php:1325 ../../mod/settings.php:85
-#: ../../include/nav.php:172 ../../view/theme/diabook/theme.php:544
-#: ../../view/theme/diabook/theme.php:648
-msgid "Settings"
-msgstr "配置"
+#: include/profile_selectors.php:42
+msgid "Engaged"
+msgstr "已订婚的"
 
-#: ../../mod/newmember.php:26
-msgid "Go to Your Settings"
-msgstr "您的设置"
+#: include/profile_selectors.php:42
+msgid "Married"
+msgstr "结婚"
 
-#: ../../mod/newmember.php:26
-msgid ""
-"On your <em>Settings</em> page -  change your initial password. Also make a "
-"note of your Identity Address. This looks just like an email address - and "
-"will be useful in making friends on the free social web."
-msgstr "在你的<em>设置</em>页 - 改变你的最初的密码。也记住你的客户地址。这好像一个电子邮件地址,是用于在自由社会化网络交朋友们有用的。"
+#: include/profile_selectors.php:42
+msgid "Imaginarily married"
+msgstr "想像结婚"
 
-#: ../../mod/newmember.php:28
-msgid ""
-"Review the other settings, particularly the privacy settings. An unpublished"
-" directory listing is like having an unlisted phone number. In general, you "
-"should probably publish your listing - unless all of your friends and "
-"potential friends know exactly how to find you."
-msgstr "校对别的设置,特别隐私设置。一个未出版的目录项目是跟未出版的电话号码一样。平时,你可能应该出版你的目录项目-除非都你的朋友们和可交的朋友们已经知道确切地怎么找你。"
+#: include/profile_selectors.php:42
+msgid "Partners"
+msgstr "伴侣"
 
-#: ../../mod/newmember.php:36 ../../mod/profile_photo.php:244
-#: ../../mod/profiles.php:699
-msgid "Upload Profile Photo"
-msgstr "上传简历照片"
+#: include/profile_selectors.php:42
+msgid "Cohabiting"
+msgstr "同居"
 
-#: ../../mod/newmember.php:36
-msgid ""
-"Upload a profile photo if you have not done so already. Studies have shown "
-"that people with real photos of themselves are ten times more likely to make"
-" friends than people who do not."
-msgstr "上传一张简历照片除非你已经做过。研究表明有真正自己的照片的人比没有的交朋友们可能多十倍。"
+#: include/profile_selectors.php:42
+msgid "Common law"
+msgstr "普通法结婚"
 
-#: ../../mod/newmember.php:38
-msgid "Edit Your Profile"
-msgstr "编辑您的简介"
+#: include/profile_selectors.php:42
+msgid "Happy"
+msgstr "幸福"
 
-#: ../../mod/newmember.php:38
-msgid ""
-"Edit your <strong>default</strong> profile to your liking. Review the "
-"settings for hiding your list of friends and hiding the profile from unknown"
-" visitors."
-msgstr "随意编你的<strong>公开的</strong>简历。评论设置为藏起来你的朋友表和简历过陌生来客。"
+#: include/profile_selectors.php:42
+msgid "Not looking"
+msgstr "没找"
 
-#: ../../mod/newmember.php:40
-msgid "Profile Keywords"
-msgstr "简介关键字"
+#: include/profile_selectors.php:42
+msgid "Swinger"
+msgstr "交换性伴侣的"
 
-#: ../../mod/newmember.php:40
-msgid ""
-"Set some public keywords for your default profile which describe your "
-"interests. We may be able to find other people with similar interests and "
-"suggest friendships."
-msgstr "指定一些公开关键字在您的默认简介描述您兴趣。我们可能找得了别人有相似兴趣和建议友谊。"
+#: include/profile_selectors.php:42
+msgid "Betrayed"
+msgstr "被背叛"
 
-#: ../../mod/newmember.php:44
-msgid "Connecting"
-msgstr "连接着"
+#: include/profile_selectors.php:42
+msgid "Separated"
+msgstr "分手"
 
-#: ../../mod/newmember.php:49 ../../mod/newmember.php:51
-#: ../../include/contact_selectors.php:81
-msgid "Facebook"
-msgstr "Facebook"
+#: include/profile_selectors.php:42
+msgid "Unstable"
+msgstr "不稳"
 
-#: ../../mod/newmember.php:49
-msgid ""
-"Authorise the Facebook Connector if you currently have a Facebook account "
-"and we will (optionally) import all your Facebook friends and conversations."
-msgstr "要是你有一个Facebook账户,批准Facebook插销。我们来(可选的)进口都你Facebook朋友们和交谈。"
+#: include/profile_selectors.php:42
+msgid "Divorced"
+msgstr "离婚"
 
-#: ../../mod/newmember.php:51
-msgid ""
-"<em>If</em> this is your own personal server, installing the Facebook addon "
-"may ease your transition to the free social web."
-msgstr "<em>要是</em>这是你的私利服务器,安装Facebook插件会把你的过渡到自由社会化网络自在一点。"
+#: include/profile_selectors.php:42
+msgid "Imaginarily divorced"
+msgstr "想像离婚"
 
-#: ../../mod/newmember.php:56
-msgid "Importing Emails"
-msgstr "进口着邮件"
+#: include/profile_selectors.php:42
+msgid "Widowed"
+msgstr "寡妇"
 
-#: ../../mod/newmember.php:56
-msgid ""
-"Enter your email access information on your Connector Settings page if you "
-"wish to import and interact with friends or mailing lists from your email "
-"INBOX"
-msgstr "输入你电子邮件使用信息在插销设置页,要是你想用你的电子邮件进口和互动朋友们或邮件表。"
+#: include/profile_selectors.php:42
+msgid "Uncertain"
+msgstr "不确定"
 
-#: ../../mod/newmember.php:58
-msgid "Go to Your Contacts Page"
-msgstr "æ\82¨ç\9a\84ç\86\9f人页"
+#: include/profile_selectors.php:42
+msgid "It's complicated"
+msgstr "æ\98¯å¤\8dæ\9d\82"
 
-#: ../../mod/newmember.php:58
-msgid ""
-"Your Contacts page is your gateway to managing friendships and connecting "
-"with friends on other networks. Typically you enter their address or site "
-"URL in the <em>Add New Contact</em> dialog."
-msgstr "您熟人页是您门口为管理熟人和连接朋友们在别的网络。典型您输入他的地址或者网站URL在<em>添加新熟人</em>对话框。"
+#: include/profile_selectors.php:42
+msgid "Don't care"
+msgstr "无所谓"
 
-#: ../../mod/newmember.php:60
-msgid "Go to Your Site's Directory"
-msgstr "您网站的目录"
+#: include/profile_selectors.php:42
+msgid "Ask me"
+msgstr "问我"
 
-#: ../../mod/newmember.php:60
-msgid ""
-"The Directory page lets you find other people in this network or other "
-"federated sites. Look for a <em>Connect</em> or <em>Follow</em> link on "
-"their profile page. Provide your own Identity Address if requested."
-msgstr "目录页让您找别人在这个网络或别的同盟的网站。找一个<em>连接</em>或<em>关注</em>按钮在他们的简介页。您被要求的话,提供您自己的同一个人地址。"
+#: include/dba_pdo.php:75 include/dba.php:56
+#, php-format
+msgid "Cannot locate DNS info for database server '%s'"
+msgstr "找不到DNS信息为数据库服务器「%s」"
 
-#: ../../mod/newmember.php:62
-msgid "Finding New People"
-msgstr "找新人"
+#: include/acl_selectors.php:355
+msgid "Post to Email"
+msgstr "电邮发布"
 
-#: ../../mod/newmember.php:62
-msgid ""
-"On the side panel of the Contacts page are several tools to find new "
-"friends. We can match people by interest, look up people by name or "
-"interest, and provide suggestions based on network relationships. On a brand"
-" new site, friend suggestions will usually begin to be populated within 24 "
-"hours."
-msgstr "在熟人页的工具栏有一些工具为找新朋友们。我们会使人们相配按名或兴趣,和以网络关系作为提醒建议的根据。在新网站,朋友建议平常开始24小时后。"
+#: include/acl_selectors.php:360
+#, php-format
+msgid "Connectors disabled, since \"%s\" is enabled."
+msgstr "连接器已停用,因为\"%s\"启用。"
 
-#: ../../mod/newmember.php:66 ../../include/group.php:270
-msgid "Groups"
-msgstr ""
+#: include/acl_selectors.php:361 mod/settings.php:1185
+msgid "Hide your profile details from unknown viewers?"
+msgstr "使简介信息给陌生的看着看不了?"
 
-#: ../../mod/newmember.php:70
-msgid "Group Your Contacts"
-msgstr "把熟人组起来"
+#: include/acl_selectors.php:367
+msgid "Visible to everybody"
+msgstr "任何人可见的"
 
-#: ../../mod/newmember.php:70
-msgid ""
-"Once you have made some friends, organize them into private conversation "
-"groups from the sidebar of your Contacts page and then you can interact with"
-" each group privately on your Network page."
-msgstr "您交朋友们后,组织他们分私人交流组在您熟人页的边栏,您会私下地跟组交流在您的网络页。"
+#: include/acl_selectors.php:368 view/theme/vier/config.php:110
+msgid "show"
+msgstr "显示"
 
-#: ../../mod/newmember.php:73
-msgid "Why Aren't My Posts Public?"
-msgstr "我文章怎么没公开的?"
+#: include/acl_selectors.php:369 view/theme/vier/config.php:110
+msgid "don't show"
+msgstr "不显示"
 
-#: ../../mod/newmember.php:73
-msgid ""
-"Friendica respects your privacy. By default, your posts will only show up to"
-" people you've added as friends. For more information, see the help section "
-"from the link above."
-msgstr "Friendica尊敬您的隐私。默认是您文章只被您朋友们看。更多消息在帮助部分在上面的链接。"
+#: include/acl_selectors.php:375 mod/editpost.php:126
+msgid "CC: email addresses"
+msgstr "抄送: 电子邮件地址"
 
-#: ../../mod/newmember.php:78
-msgid "Getting Help"
-msgstr "æ\80\8eä¹\88è\8e·å¾\97帮å\8a©"
+#: include/acl_selectors.php:376 mod/editpost.php:133
+msgid "Example: bob@example.com, mary@example.com"
+msgstr "æ¯\94å¦\82: li@example.com, wang@example.com"
 
-#: ../../mod/newmember.php:82
-msgid "Go to the Help Section"
-msgstr "看帮助部分"
+#: include/acl_selectors.php:378 mod/events.php:512 mod/photos.php:1199
+#: mod/photos.php:1596
+msgid "Permissions"
+msgstr "权利"
 
-#: ../../mod/newmember.php:82
-msgid ""
-"Our <strong>help</strong> pages may be consulted for detail on other program"
-" features and resources."
-msgstr "我们<strong>帮助</strong>页可查阅到详情关于别的编程特点和资源。"
+#: include/acl_selectors.php:379
+msgid "Close"
+msgstr "关闭"
 
-#: ../../mod/openid.php:24
-msgid "OpenID protocol error. No ID returned."
-msgstr "OpenID协议错误。没ID还。 "
+#: include/contact_selectors.php:32
+msgid "Unknown | Not categorised"
+msgstr "未知的 |无分类"
 
-#: ../../mod/openid.php:53
-msgid ""
-"Account not found and OpenID registration is not permitted on this site."
-msgstr "找不到账户和OpenID注册不允许。"
+#: include/contact_selectors.php:33
+msgid "Block immediately"
+msgstr "立即封禁"
 
-#: ../../mod/openid.php:93 ../../include/auth.php:112
-#: ../../include/auth.php:175
-msgid "Login failed."
-msgstr "登记失败了。"
+#: include/contact_selectors.php:34
+msgid "Shady, spammer, self-marketer"
+msgstr "可疑,发垃圾者,自市场开发者"
 
-#: ../../mod/profile_photo.php:44
-msgid "Image uploaded but image cropping failed."
-msgstr "照片上传去了,但修剪失灵。"
+#: include/contact_selectors.php:35
+msgid "Known to me, but no opinion"
+msgstr "我认识,但没有意见"
 
-#: ../../mod/profile_photo.php:74 ../../mod/profile_photo.php:81
-#: ../../mod/profile_photo.php:88 ../../mod/profile_photo.php:204
-#: ../../mod/profile_photo.php:296 ../../mod/profile_photo.php:305
-#: ../../mod/photos.php:155 ../../mod/photos.php:731 ../../mod/photos.php:1187
-#: ../../mod/photos.php:1210 ../../include/user.php:335
-#: ../../include/user.php:342 ../../include/user.php:349
-#: ../../view/theme/diabook/theme.php:500
-msgid "Profile Photos"
-msgstr "简介照片"
+#: include/contact_selectors.php:36
+msgid "OK, probably harmless"
+msgstr "行,大概无恶意的"
 
-#: ../../mod/profile_photo.php:77 ../../mod/profile_photo.php:84
-#: ../../mod/profile_photo.php:91 ../../mod/profile_photo.php:308
-#, php-format
-msgid "Image size reduction [%s] failed."
-msgstr "照片减少[%s]失灵。"
+#: include/contact_selectors.php:37
+msgid "Reputable, has my trust"
+msgstr "可信的,有我的信任"
 
-#: ../../mod/profile_photo.php:118
-msgid ""
-"Shift-reload the page or clear browser cache if the new photo does not "
-"display immediately."
-msgstr "万一新照片一会出现,换档重新加载或者成为空浏览器高速缓存。"
+#: include/contact_selectors.php:56 mod/admin.php:1079
+msgid "Frequently"
+msgstr "时常"
 
-#: ../../mod/profile_photo.php:128
-msgid "Unable to process image"
-msgstr "不能处理照片"
+#: include/contact_selectors.php:57 mod/admin.php:1080
+msgid "Hourly"
+msgstr "每小时"
 
-#: ../../mod/profile_photo.php:144 ../../mod/wall_upload.php:122
-#, php-format
-msgid "Image exceeds size limit of %d"
-msgstr "图像超标最大极限尺寸 %d"
+#: include/contact_selectors.php:58 mod/admin.php:1081
+msgid "Twice daily"
+msgstr "每日两次"
 
-#: ../../mod/profile_photo.php:153 ../../mod/wall_upload.php:144
-#: ../../mod/photos.php:807
-msgid "Unable to process image."
-msgstr "处理不了图像."
+#: include/contact_selectors.php:59 mod/admin.php:1082
+msgid "Daily"
+msgstr "每日"
 
-#: ../../mod/profile_photo.php:242
-msgid "Upload File:"
-msgstr "上传文件:"
+#: include/contact_selectors.php:60
+msgid "Weekly"
+msgstr "每周"
 
-#: ../../mod/profile_photo.php:243
-msgid "Select a profile:"
-msgstr "选择一个简介"
+#: include/contact_selectors.php:61
+msgid "Monthly"
+msgstr "每月"
 
-#: ../../mod/profile_photo.php:245
-msgid "Upload"
-msgstr "上传"
+#: include/contact_selectors.php:76 mod/dfrn_request.php:887
+msgid "Friendica"
+msgstr "Friendica"
 
-#: ../../mod/profile_photo.php:248 ../../mod/settings.php:1062
-msgid "or"
-msgstr "或者"
+#: include/contact_selectors.php:77
+msgid "OStatus"
+msgstr "OStatus"
 
-#: ../../mod/profile_photo.php:248
-msgid "skip this step"
-msgstr "略过这步"
+#: include/contact_selectors.php:78
+msgid "RSS/Atom"
+msgstr "RSS/Atom"
 
-#: ../../mod/profile_photo.php:248
-msgid "select a photo from your photo albums"
-msgstr "从您的照片册选择一片。"
+#: include/contact_selectors.php:79 include/contact_selectors.php:86
+#: mod/admin.php:1588 mod/admin.php:1601 mod/admin.php:1614 mod/admin.php:1632
+msgid "Email"
+msgstr "电子邮件"
 
-#: ../../mod/profile_photo.php:262
-msgid "Crop Image"
-msgstr "修剪照片"
+#: include/contact_selectors.php:80 mod/dfrn_request.php:889
+#: mod/settings.php:845
+msgid "Diaspora"
+msgstr "Diaspora"
 
-#: ../../mod/profile_photo.php:263
-msgid "Please adjust the image cropping for optimum viewing."
-msgstr "请调图片剪裁为最好看。"
+#: include/contact_selectors.php:81
+msgid "Facebook"
+msgstr "Facebook"
 
-#: ../../mod/profile_photo.php:265
-msgid "Done Editing"
-msgstr "编完了"
+#: include/contact_selectors.php:82
+msgid "Zot!"
+msgstr "Zot!"
 
-#: ../../mod/profile_photo.php:299
-msgid "Image uploaded successfully."
-msgstr "照片成功地上传了"
+#: include/contact_selectors.php:83
+msgid "LinkedIn"
+msgstr "LinkedIn"
 
-#: ../../mod/profile_photo.php:301 ../../mod/wall_upload.php:172
-#: ../../mod/photos.php:834
-msgid "Image upload failed."
-msgstr "图像上载失败了."
+#: include/contact_selectors.php:84
+msgid "XMPP/IM"
+msgstr "XMPP/IM"
 
-#: ../../mod/subthread.php:87 ../../mod/tagger.php:62 ../../mod/like.php:149
-#: ../../include/conversation.php:126 ../../include/conversation.php:254
-#: ../../include/text.php:1968 ../../include/diaspora.php:2087
-#: ../../view/theme/diabook/theme.php:471
-msgid "photo"
-msgstr "照片"
+#: include/contact_selectors.php:85
+msgid "MySpace"
+msgstr "MySpace"
 
-#: ../../mod/subthread.php:87 ../../mod/tagger.php:62 ../../mod/like.php:149
-#: ../../mod/like.php:319 ../../include/conversation.php:121
-#: ../../include/conversation.php:130 ../../include/conversation.php:249
-#: ../../include/conversation.php:258 ../../include/diaspora.php:2087
-#: ../../view/theme/diabook/theme.php:466
-#: ../../view/theme/diabook/theme.php:475
-msgid "status"
-msgstr "现状"
+#: include/contact_selectors.php:87
+msgid "Google+"
+msgstr "Google+"
 
-#: ../../mod/subthread.php:103
-#, php-format
-msgid "%1$s is following %2$s's %3$s"
-msgstr "%1$s关注着%2$s的%3$s"
+#: include/contact_selectors.php:88
+msgid "pump.io"
+msgstr "pump.io"
 
-#: ../../mod/tagrm.php:41
-msgid "Tag removed"
-msgstr "标签去除了"
+#: include/contact_selectors.php:89
+msgid "Twitter"
+msgstr "Twitter"
 
-#: ../../mod/tagrm.php:79
-msgid "Remove Item Tag"
-msgstr "去除项目标签"
+#: include/contact_selectors.php:90
+msgid "Diaspora Connector"
+msgstr "Diaspora连接"
 
-#: ../../mod/tagrm.php:81
-msgid "Select a tag to remove: "
-msgstr "选择标签去除"
+#: include/contact_selectors.php:91
+msgid "GNU Social Connector"
+msgstr "GNU Social 连接器"
 
-#: ../../mod/tagrm.php:93 ../../mod/delegate.php:139
-msgid "Remove"
-msgstr "移走"
+#: include/contact_selectors.php:92
+msgid "pnut"
+msgstr ""
 
-#: ../../mod/filer.php:30 ../../include/conversation.php:1006
-#: ../../include/conversation.php:1024
-msgid "Save to Folder:"
-msgstr "保存再文件夹:"
+#: include/contact_selectors.php:93
+msgid "App.net"
+msgstr ""
 
-#: ../../mod/filer.php:30
-msgid "- select -"
-msgstr "-选择-"
+#: include/group.php:25
+msgid ""
+"A deleted group with this name was revived. Existing item permissions "
+"<strong>may</strong> apply to this group and any future members. If this is "
+"not what you intended, please create another group with a different name."
+msgstr "一个用这个名字的被删掉的组复活了。现有项目的权限<strong>可能</strong>对这个组和任何未来的成员有效。如果这不是你想要的,请用一个不同的名字创建另一个组。"
 
-#: ../../mod/filer.php:31 ../../mod/editpost.php:109 ../../mod/notes.php:63
-#: ../../include/text.php:956
-msgid "Save"
-msgstr "保存"
+#: include/group.php:201
+msgid "Default privacy group for new contacts"
+msgstr "对新联系人的默认隐私组"
 
-#: ../../mod/follow.php:27
-msgid "Contact added"
-msgstr "熟人添了"
+#: include/group.php:234
+msgid "Everybody"
+msgstr "每人"
 
-#: ../../mod/item.php:113
-msgid "Unable to locate original post."
-msgstr "找不到当初的新闻"
+#: include/group.php:257
+msgid "edit"
+msgstr "编辑"
 
-#: ../../mod/item.php:345
-msgid "Empty post discarded."
-msgstr "空å¿\83ç\9a\84æ\96°é\97»ä¸¢å¼\83äº\86"
+#: include/group.php:278 mod/newmember.php:39
+msgid "Groups"
+msgstr "ç»\84"
 
-#: ../../mod/item.php:484 ../../mod/wall_upload.php:169
-#: ../../mod/wall_upload.php:178 ../../mod/wall_upload.php:185
-#: ../../include/Photo.php:916 ../../include/Photo.php:931
-#: ../../include/Photo.php:938 ../../include/Photo.php:960
-#: ../../include/message.php:144
-msgid "Wall Photos"
-msgstr "墙照片"
+#: include/group.php:280
+msgid "Edit groups"
+msgstr "编辑组"
 
-#: ../../mod/item.php:938
-msgid "System error. Post not saved."
-msgstr "ç³»ç»\9fé\94\99误ã\80\82x"
+#: include/group.php:282
+msgid "Edit group"
+msgstr "ç¼\96è¾\91ç»\84"
 
-#: ../../mod/item.php:964
-#, php-format
-msgid ""
-"This message was sent to you by %s, a member of the Friendica social "
-"network."
-msgstr "这个新闻是由%s,Friendica社会化网络成员之一,发给你。"
+#: include/group.php:283
+msgid "Create a new group"
+msgstr "创造新组"
 
-#: ../../mod/item.php:966
-#, php-format
-msgid "You may visit them online at %s"
-msgstr "你可以网上拜访他在%s"
+#: include/group.php:284 mod/group.php:101 mod/group.php:198
+msgid "Group Name: "
+msgstr "组名:"
 
-#: ../../mod/item.php:967
-msgid ""
-"Please contact the sender by replying to this post if you do not wish to "
-"receive these messages."
-msgstr "你不想受到这些新闻的话,请回答这个新闻给发者联系。"
+#: include/group.php:286
+msgid "Contacts not in any group"
+msgstr "不在任何组的联系人"
 
-#: ../../mod/item.php:971
-#, php-format
-msgid "%s posted an update."
-msgstr "%s贴上一个新闻。"
+#: include/group.php:288 mod/network.php:195
+msgid "add"
+msgstr "添加"
 
-#: ../../mod/group.php:29
-msgid "Group created."
-msgstr "组造成了。"
+#: include/ForumManager.php:119 include/nav.php:134 include/text.php:1104
+#: view/theme/vier/theme.php:249
+msgid "Forums"
+msgstr "论坛"
 
-#: ../../mod/group.php:35
-msgid "Could not create group."
-msgstr "不能造成组。"
+#: include/ForumManager.php:121 view/theme/vier/theme.php:251
+msgid "External link to forum"
+msgstr "到论坛的外链"
 
-#: ../../mod/group.php:47 ../../mod/group.php:140
-msgid "Group not found."
-msgstr "组找不到。"
+#: include/ForumManager.php:124 include/contact_widgets.php:272
+#: include/items.php:2407 mod/content.php:626 object/Item.php:417
+#: view/theme/vier/theme.php:254 src/App.php:524
+msgid "show more"
+msgstr "看多"
 
-#: ../../mod/group.php:60
-msgid "Group name changed."
-msgstr "ç»\84å\90\8då\8f\98å\8c\96äº\86ã\80\82"
+#: include/NotificationsManager.php:157
+msgid "System"
+msgstr "ç³»ç»\9f"
 
-#: ../../mod/group.php:87
-msgid "Save Group"
-msgstr "保存组"
+#: include/NotificationsManager.php:164 include/nav.php:161 mod/admin.php:589
+#: view/theme/frio/theme.php:260
+msgid "Network"
+msgstr "网络"
 
-#: ../../mod/group.php:93
-msgid "Create a group of contacts/friends."
-msgstr "造成组熟人/朋友们。"
+#: include/NotificationsManager.php:171 mod/network.php:911
+#: mod/profiles.php:694
+msgid "Personal"
+msgstr "私人"
 
-#: ../../mod/group.php:94 ../../mod/group.php:180
-msgid "Group Name: "
-msgstr "组名:"
+#: include/NotificationsManager.php:178 include/nav.php:108
+#: include/nav.php:164
+msgid "Home"
+msgstr "主页"
 
-#: ../../mod/group.php:113
-msgid "Group removed."
-msgstr "组删除了。"
+#: include/NotificationsManager.php:185 include/nav.php:169
+msgid "Introductions"
+msgstr "介绍"
 
-#: ../../mod/group.php:115
-msgid "Unable to remove group."
-msgstr "不能删除组。"
+#: include/NotificationsManager.php:243 include/NotificationsManager.php:255
+#, php-format
+msgid "%s commented on %s's post"
+msgstr "%s 在 %s 的文章发表了评论"
 
-#: ../../mod/group.php:179
-msgid "Group Editor"
-msgstr "组编辑器"
+#: include/NotificationsManager.php:254
+#, php-format
+msgid "%s created a new post"
+msgstr "%s 创建了一个新文章"
 
-#: ../../mod/group.php:192
-msgid "Members"
-msgstr "成员"
+#: include/NotificationsManager.php:269
+#, php-format
+msgid "%s liked %s's post"
+msgstr "%s喜欢了%s的消息"
 
-#: ../../mod/apps.php:7 ../../index.php:212
-msgid "You must be logged in to use addons. "
-msgstr "您用插件前要登录"
+#: include/NotificationsManager.php:282
+#, php-format
+msgid "%s disliked %s's post"
+msgstr "%s不喜欢了%s的消息"
 
-#: ../../mod/apps.php:11
-msgid "Applications"
-msgstr "应用"
+#: include/NotificationsManager.php:295
+#, php-format
+msgid "%s is attending %s's event"
+msgstr "%s 正在参加 %s 的事件"
 
-#: ../../mod/apps.php:14
-msgid "No installed applications."
-msgstr "没有安装的应用"
+#: include/NotificationsManager.php:308
+#, php-format
+msgid "%s is not attending %s's event"
+msgstr "%s 不在参加 %s 的事件"
 
-#: ../../mod/dfrn_confirm.php:64 ../../mod/profiles.php:18
-#: ../../mod/profiles.php:133 ../../mod/profiles.php:179
-#: ../../mod/profiles.php:630
-msgid "Profile not found."
-msgstr "找不到简介。"
+#: include/NotificationsManager.php:321
+#, php-format
+msgid "%s may attend %s's event"
+msgstr "%s 可以参加 %s 的事件"
 
-#: ../../mod/dfrn_confirm.php:120 ../../mod/fsuggest.php:20
-#: ../../mod/fsuggest.php:92 ../../mod/crepair.php:133
-msgid "Contact not found."
-msgstr "没找到熟人。"
+#: include/NotificationsManager.php:338
+#, php-format
+msgid "%s is now friends with %s"
+msgstr "%s成为%s的朋友"
 
-#: ../../mod/dfrn_confirm.php:121
-msgid ""
-"This may occasionally happen if contact was requested by both persons and it"
-" has already been approved."
-msgstr "这会偶尔地发生熟人双方都要求和已经批准的时候。"
+#: include/NotificationsManager.php:776
+msgid "Friend Suggestion"
+msgstr "朋友建议"
 
-#: ../../mod/dfrn_confirm.php:240
-msgid "Response from remote site was not understood."
-msgstr "é\81¥ç½\91ç«\99ç\9a\84å\9b\9eç­\94æ\98\8eç\99½ä¸\8däº\86ã\80\82"
+#: include/NotificationsManager.php:805
+msgid "Friend/Connect Request"
+msgstr "å\8f\8bè°\8aï¼\8fè\81\94ç»\9cè¦\81æ±\82"
 
-#: ../../mod/dfrn_confirm.php:249 ../../mod/dfrn_confirm.php:254
-msgid "Unexpected response from remote site: "
-msgstr "居然回答从遥网站:"
+#: include/NotificationsManager.php:805
+msgid "New Follower"
+msgstr "新关注者:"
 
-#: ../../mod/dfrn_confirm.php:263
-msgid "Confirmation completed successfully."
-msgstr "确认成功完成。"
+#: include/auth.php:53
+msgid "Logged out."
+msgstr "注销了"
 
-#: ../../mod/dfrn_confirm.php:265 ../../mod/dfrn_confirm.php:279
-#: ../../mod/dfrn_confirm.php:286
-msgid "Remote site reported: "
-msgstr "遥网站报案:"
+#: include/auth.php:124 include/auth.php:186 mod/openid.php:111
+msgid "Login failed."
+msgstr "登记失败了。"
 
-#: ../../mod/dfrn_confirm.php:277
-msgid "Temporary failure. Please wait and try again."
-msgstr "临时失败。请等一会,再试。"
+#: include/auth.php:140 include/user.php:77
+msgid ""
+"We encountered a problem while logging in with the OpenID you provided. "
+"Please check the correct spelling of the ID."
+msgstr "我们用您输入的OpenID登录的时候碰到问题。请核实拼法是对的。"
 
-#: ../../mod/dfrn_confirm.php:284
-msgid "Introduction failed or was revoked."
-msgstr "介绍失败或被吊销。"
+#: include/auth.php:140 include/user.php:77
+msgid "The error message was:"
+msgstr "错误通知是:"
 
-#: ../../mod/dfrn_confirm.php:429
-msgid "Unable to set contact photo."
-msgstr "不会指定熟人照片。"
+#: include/bb2diaspora.php:234 include/event.php:20 mod/localtime.php:14
+msgid "l F d, Y \\@ g:i A"
+msgstr "l F d, Y \\@ g:i A"
 
-#: ../../mod/dfrn_confirm.php:486 ../../include/conversation.php:172
-#: ../../include/diaspora.php:620
-#, php-format
-msgid "%1$s is now friends with %2$s"
-msgstr "%1$s是成为%2$s的朋友"
+#: include/bb2diaspora.php:240 include/event.php:37 include/event.php:57
+#: include/event.php:460
+msgid "Starts:"
+msgstr "开始:"
+
+#: include/bb2diaspora.php:248 include/event.php:40 include/event.php:63
+#: include/event.php:461
+msgid "Finishes:"
+msgstr "结束:"
+
+#: include/bb2diaspora.php:257 include/event.php:44 include/event.php:70
+#: include/event.php:462 include/identity.php:339 mod/directory.php:135
+#: mod/events.php:497 mod/notifications.php:247 mod/contacts.php:657
+msgid "Location:"
+msgstr "位置:"
 
-#: ../../mod/dfrn_confirm.php:571
+#: include/bbcode.php:429 include/bbcode.php:1192 include/bbcode.php:1193
+msgid "Image/photo"
+msgstr "图像/照片"
+
+#: include/bbcode.php:545
 #, php-format
-msgid "No user record found for '%s' "
-msgstr "找不到「%s」的用户记录"
+msgid "<a href=\"%1$s\" target=\"_blank\">%2$s</a> %3$s"
+msgstr ""
 
-#: ../../mod/dfrn_confirm.php:581
-msgid "Our site encryption key is apparently messed up."
-msgstr "看起来我们的加密钥匙失灵了。"
+#: include/bbcode.php:1149 include/bbcode.php:1171
+msgid "$1 wrote:"
+msgstr "$1写:"
 
-#: ../../mod/dfrn_confirm.php:592
-msgid "Empty site URL was provided or URL could not be decrypted by us."
-msgstr "空的URL供应,或URL解不了码。"
+#: include/bbcode.php:1201 include/bbcode.php:1202
+msgid "Encrypted content"
+msgstr "加密的内容"
 
-#: ../../mod/dfrn_confirm.php:613
-msgid "Contact record was not found for you on our site."
-msgstr "熟人记录在我们的网站找不了。"
+#: include/bbcode.php:1321
+msgid "Invalid source protocol"
+msgstr "无效的源协议"
 
-#: ../../mod/dfrn_confirm.php:627
-#, php-format
-msgid "Site public key not available in contact record for URL %s."
-msgstr "没有网站公开钥匙在熟人记录在URL%s。"
+#: include/bbcode.php:1332
+msgid "Invalid link protocol"
+msgstr "无效的连接协议"
 
-#: ../../mod/dfrn_confirm.php:647
-msgid ""
-"The ID provided by your system is a duplicate on our system. It should work "
-"if you try again."
-msgstr "身份证明由您的系统是在我们的重做。你再试应该运行。"
+#: include/contact_widgets.php:12
+msgid "Add New Contact"
+msgstr "增添新的熟人"
 
-#: ../../mod/dfrn_confirm.php:658
-msgid "Unable to set your contact credentials on our system."
-msgstr "不能创作您的熟人证件在我们的系统。"
+#: include/contact_widgets.php:13
+msgid "Enter address or web location"
+msgstr "输入地址或网络位置"
 
-#: ../../mod/dfrn_confirm.php:725
-msgid "Unable to update your contact profile details on our system"
-msgstr "不能更新您的熟人简介消息在我们的系统"
+#: include/contact_widgets.php:14
+msgid "Example: bob@example.com, http://example.com/barbara"
+msgstr "比如:li@example.com, http://example.com/li"
 
-#: ../../mod/dfrn_confirm.php:752 ../../mod/dfrn_request.php:717
-#: ../../include/items.php:4008
-msgid "[Name Withheld]"
-msgstr "[名字拒给]"
+#: include/contact_widgets.php:16 include/identity.php:229
+#: mod/allfriends.php:88 mod/dirfind.php:210 mod/match.php:93
+#: mod/suggest.php:101
+msgid "Connect"
+msgstr "连接"
 
-#: ../../mod/dfrn_confirm.php:797
+#: include/contact_widgets.php:31
 #, php-format
-msgid "%1$s has joined %2$s"
-msgstr "%1$s加入%2$s了"
+msgid "%d invitation available"
+msgid_plural "%d invitations available"
+msgstr[0] "%d邀请可用的"
 
-#: ../../mod/profile.php:21 ../../boot.php:1458
-msgid "Requested profile is not available."
-msgstr "要求的简介联系不上的。"
+#: include/contact_widgets.php:37
+msgid "Find People"
+msgstr "找人物"
 
-#: ../../mod/profile.php:180
-msgid "Tips for New Members"
-msgstr "提示对新成员"
+#: include/contact_widgets.php:38
+msgid "Enter name or interest"
+msgstr "输入名字或兴趣"
 
-#: ../../mod/videos.php:125
-msgid "No videos selected"
-msgstr "没选择的视频"
+#: include/contact_widgets.php:39 include/conversation.php:1026
+#: include/Contact.php:415 mod/allfriends.php:72 mod/dirfind.php:213
+#: mod/follow.php:143 mod/match.php:78 mod/suggest.php:83 mod/contacts.php:589
+msgid "Connect/Follow"
+msgstr "连接/关注"
 
-#: ../../mod/videos.php:226 ../../mod/photos.php:1031
-msgid "Access to this item is restricted."
-msgstr "这个项目使用权限的。"
+#: include/contact_widgets.php:40
+msgid "Examples: Robert Morgenstein, Fishing"
+msgstr "比如:李某,打鱼"
 
-#: ../../mod/videos.php:301 ../../include/text.php:1405
-msgid "View Video"
-msgstr "看视频"
+#: include/contact_widgets.php:41 mod/directory.php:202 mod/contacts.php:827
+msgid "Find"
+msgstr "搜索"
 
-#: ../../mod/videos.php:308 ../../mod/photos.php:1808
-msgid "View Album"
-msgstr "看照片册"
+#: include/contact_widgets.php:42 mod/suggest.php:114
+#: view/theme/vier/theme.php:196
+msgid "Friend Suggestions"
+msgstr "朋友推荐"
 
-#: ../../mod/videos.php:317
-msgid "Recent Videos"
-msgstr "最近视频"
+#: include/contact_widgets.php:43 view/theme/vier/theme.php:195
+msgid "Similar Interests"
+msgstr "相似兴趣"
 
-#: ../../mod/videos.php:319
-msgid "Upload New Videos"
-msgstr "上传新视频"
+#: include/contact_widgets.php:44
+msgid "Random Profile"
+msgstr "随机简介"
 
-#: ../../mod/tagger.php:95 ../../include/conversation.php:266
-#, php-format
-msgid "%1$s tagged %2$s's %3$s with %4$s"
-msgstr "%1$s把%4$s标签%2$s的%3$s"
+#: include/contact_widgets.php:45 view/theme/vier/theme.php:197
+msgid "Invite Friends"
+msgstr "邀请朋友们"
 
-#: ../../mod/fsuggest.php:63
-msgid "Friend suggestion sent."
-msgstr "æ\9c\8bå\8f\8b建议å\8f\91é\80\81äº\86ã\80\82"
+#: include/contact_widgets.php:46
+msgid "View Global Directory"
+msgstr "æ\9f¥ç\9c\8bå\85¨ç\90\83ç\9b®å½\95"
 
-#: ../../mod/fsuggest.php:97
-msgid "Suggest Friends"
-msgstr "建议朋友们"
+#: include/contact_widgets.php:132
+msgid "Networks"
+msgstr "网络"
 
-#: ../../mod/fsuggest.php:99
-#, php-format
-msgid "Suggest a friend for %s"
-msgstr "建议朋友给%s"
+#: include/contact_widgets.php:135
+msgid "All Networks"
+msgstr "所有网络"
 
-#: ../../mod/lostpass.php:19
-msgid "No valid account found."
-msgstr "找不到效的账户。"
+#: include/contact_widgets.php:170 include/contact_widgets.php:205
+msgid "Everything"
+msgstr "一切"
 
-#: ../../mod/lostpass.php:35
-msgid "Password reset request issued. Check your email."
-msgstr "重设密码要求发布了。核对您的收件箱。"
+#: include/contact_widgets.php:202
+msgid "Categories"
+msgstr "种类"
 
-#: ../../mod/lostpass.php:42
+#: include/contact_widgets.php:267
 #, php-format
-msgid ""
-"\n"
-"\t\tDear %1$s,\n"
-"\t\t\tA request was recently received at \"%2$s\" to reset your account\n"
-"\t\tpassword. In order to confirm this request, please select the verification link\n"
-"\t\tbelow or paste it into your web browser address bar.\n"
-"\n"
-"\t\tIf you did NOT request this change, please DO NOT follow the link\n"
-"\t\tprovided and ignore and/or delete this email.\n"
-"\n"
-"\t\tYour password will not be changed unless we can verify that you\n"
-"\t\tissued this request."
-msgstr "\n\t\t亲爱的%1$s,\n\t\t\t最近\"%2$s\"收到重设你账号密码要求。为了验证此要求,请点击\n\t\t下面的链接或者粘贴在浏览器。\n\n\t\t如果你没请求这个变化,请别点击并忽视或删除这个邮件。\n\n\t\t你的密码将不改变除非我们验证这个请求是由你发地。"
+msgid "%d contact in common"
+msgid_plural "%d contacts in common"
+msgstr[0] "%d共同熟人"
+
+#: include/conversation.php:135 include/conversation.php:287
+#: include/like.php:184 include/text.php:1885
+msgid "event"
+msgstr "项目"
 
-#: ../../mod/lostpass.php:53
+#: include/conversation.php:138 include/conversation.php:148
+#: include/conversation.php:290 include/conversation.php:299
+#: include/like.php:182 include/diaspora.php:1695 mod/subthread.php:90
+#: mod/tagger.php:64
+msgid "status"
+msgstr "现状"
+
+#: include/conversation.php:143 include/conversation.php:295
+#: include/like.php:182 include/text.php:1887 mod/subthread.php:90
+#: mod/tagger.php:64
+msgid "photo"
+msgstr "照片"
+
+#: include/conversation.php:155 include/like.php:31 include/diaspora.php:1691
 #, php-format
-msgid ""
-"\n"
-"\t\tFollow this link to verify your identity:\n"
-"\n"
-"\t\t%1$s\n"
-"\n"
-"\t\tYou will then receive a follow-up message containing the new password.\n"
-"\t\tYou may change that password from your account settings page after logging in.\n"
-"\n"
-"\t\tThe login details are as follows:\n"
-"\n"
-"\t\tSite Location:\t%2$s\n"
-"\t\tLogin Name:\t%3$s"
-msgstr "\n\t\t点击西面的链接为验证你的身份:\n\n\t\t%1$s\n\n\t\t你将收一个邮件包括新的密码。登录之后你能改密码在设置页面。\n\n\t\t登录消息是:\n\n\t\t网站地址:\t%2$s\n\t\t用户名:\t%3$s"
+msgid "%1$s likes %2$s's %3$s"
+msgstr "%1$s喜欢%2$s的%3$s"
 
-#: ../../mod/lostpass.php:72
+#: include/conversation.php:158 include/like.php:35 include/like.php:40
 #, php-format
-msgid "Password reset requested at %s"
-msgstr "重设密码要求被发布%s"
+msgid "%1$s doesn't like %2$s's %3$s"
+msgstr "%1$s不喜欢%2$s的%3$s"
 
-#: ../../mod/lostpass.php:92
-msgid ""
-"Request could not be verified. (You may have previously submitted it.) "
-"Password reset failed."
-msgstr "要求确认不了。(您可能已经提交它。)重设密码失败了。"
+#: include/conversation.php:161
+#, php-format
+msgid "%1$s attends %2$s's %3$s"
+msgstr "%1$s 参加了 %2$s 的 %3$s"
 
-#: ../../mod/lostpass.php:109 ../../boot.php:1280
-msgid "Password Reset"
-msgstr "复位密码"
+#: include/conversation.php:164
+#, php-format
+msgid "%1$s doesn't attend %2$s's %3$s"
+msgstr "%1$s 没有参加 %2$s 的 %3$s"
 
-#: ../../mod/lostpass.php:110
-msgid "Your password has been reset as requested."
-msgstr "您的密码被重设如要求的。"
+#: include/conversation.php:167
+#, php-format
+msgid "%1$s attends maybe %2$s's %3$s"
+msgstr ""
 
-#: ../../mod/lostpass.php:111
-msgid "Your new password is"
-msgstr "你的新的密码是"
+#: include/conversation.php:200 mod/dfrn_confirm.php:480
+#, php-format
+msgid "%1$s is now friends with %2$s"
+msgstr "%1$s是成为%2$s的朋友"
 
-#: ../../mod/lostpass.php:112
-msgid "Save or copy your new password - and then"
-msgstr "保存或复制新密码-之后"
+#: include/conversation.php:241
+#, php-format
+msgid "%1$s poked %2$s"
+msgstr "%1$s把%2$s戳"
 
-#: ../../mod/lostpass.php:113
-msgid "click here to login"
-msgstr "在这儿点击"
-
-#: ../../mod/lostpass.php:114
-msgid ""
-"Your password may be changed from the <em>Settings</em> page after "
-"successful login."
-msgstr "您的密码能被变化从<em>设置</em>页成功登记后。"
-
-#: ../../mod/lostpass.php:125
-#, php-format
-msgid ""
-"\n"
-"\t\t\t\tDear %1$s,\n"
-"\t\t\t\t\tYour password has been changed as requested. Please retain this\n"
-"\t\t\t\tinformation for your records (or change your password immediately to\n"
-"\t\t\t\tsomething that you will remember).\n"
-"\t\t\t"
-msgstr "\n\t\t\t\t亲戚的%1$s,\n\t\t\t\t\t你的密码于你的要求被改了。请保存这个消息或者\n\t\t\t\t立刻改密码成什么容易回忆的。\n\t\t\t"
-
-#: ../../mod/lostpass.php:131
+#: include/conversation.php:262 mod/mood.php:65
 #, php-format
-msgid ""
-"\n"
-"\t\t\t\tYour login details are as follows:\n"
-"\n"
-"\t\t\t\tSite Location:\t%1$s\n"
-"\t\t\t\tLogin Name:\t%2$s\n"
-"\t\t\t\tPassword:\t%3$s\n"
-"\n"
-"\t\t\t\tYou may change that password from your account settings page after logging in.\n"
-"\t\t\t"
-msgstr "\n\t\t\t\t你的登录消息是:\n\n\t\t\t\t网站地址:%1$s\n\t\t\t\t用户名:%2$s\n\t\t\t\t密码:%3$s\n\n\t\t\t\t登录后你能改密码在设置页面。\n\t\t\t"
+msgid "%1$s is currently %2$s"
+msgstr "%1$s现在是%2$s"
 
-#: ../../mod/lostpass.php:147
+#: include/conversation.php:309 mod/tagger.php:97
 #, php-format
-msgid "Your password has been changed at %s"
-msgstr "您密码被变化在%s"
-
-#: ../../mod/lostpass.php:159
-msgid "Forgot your Password?"
-msgstr "忘记你的密码吗?"
-
-#: ../../mod/lostpass.php:160
-msgid ""
-"Enter your email address and submit to have your password reset. Then check "
-"your email for further instructions."
-msgstr "输入您的邮件地址和提交为重置密码。然后核对收件箱看别的说明。"
-
-#: ../../mod/lostpass.php:161
-msgid "Nickname or Email: "
-msgstr "昵称或邮件地址:"
+msgid "%1$s tagged %2$s's %3$s with %4$s"
+msgstr "%1$s把%4$s标签%2$s的%3$s"
 
-#: ../../mod/lostpass.php:162
-msgid "Reset"
-msgstr "复位"
+#: include/conversation.php:336
+msgid "post/item"
+msgstr "文章/项目"
 
-#: ../../mod/like.php:166 ../../include/conversation.php:137
-#: ../../include/diaspora.php:2103 ../../view/theme/diabook/theme.php:480
+#: include/conversation.php:337
 #, php-format
-msgid "%1$s likes %2$s's %3$s"
-msgstr "%1$s喜欢%2$s的%3$s"
+msgid "%1$s marked %2$s's %3$s as favorite"
+msgstr "%1$s标注%2$s的%3$s为偏爱"
 
-#: ../../mod/like.php:168 ../../include/conversation.php:140
-#, php-format
-msgid "%1$s doesn't like %2$s's %3$s"
-msgstr "%1$s不喜欢%2$s的%3$s"
+#: include/conversation.php:615 mod/content.php:374 mod/photos.php:1665
+#: mod/profiles.php:339
+msgid "Likes"
+msgstr "喜欢"
 
-#: ../../mod/ping.php:240
-msgid "{0} wants to be your friend"
-msgstr "{0}想成为您的朋友"
+#: include/conversation.php:615 mod/content.php:374 mod/photos.php:1665
+#: mod/profiles.php:343
+msgid "Dislikes"
+msgstr "不喜欢"
 
-#: ../../mod/ping.php:245
-msgid "{0} sent you a message"
-msgstr "{0}发给您一个通信"
+#: include/conversation.php:616 include/conversation.php:1550
+#: mod/content.php:375 mod/photos.php:1666
+msgid "Attending"
+msgid_plural "Attending"
+msgstr[0] "正在参加"
 
-#: ../../mod/ping.php:250
-msgid "{0} requested registration"
-msgstr "{0}要求注册"
+#: include/conversation.php:616 mod/content.php:375 mod/photos.php:1666
+msgid "Not attending"
+msgstr "不在参加"
 
-#: ../../mod/ping.php:256
-#, php-format
-msgid "{0} commented %s's post"
-msgstr "{0}对%s的文章发表意见"
+#: include/conversation.php:616 mod/content.php:375 mod/photos.php:1666
+msgid "Might attend"
+msgstr "可以参加"
 
-#: ../../mod/ping.php:261
-#, php-format
-msgid "{0} liked %s's post"
-msgstr "{0}喜欢%s的文章"
+#: include/conversation.php:753 mod/content.php:455 mod/content.php:761
+#: mod/photos.php:1731 object/Item.php:147
+msgid "Select"
+msgstr "选择"
 
-#: ../../mod/ping.php:266
-#, php-format
-msgid "{0} disliked %s's post"
-msgstr "{0}不喜欢%s的文章"
+#: include/conversation.php:754 mod/content.php:456 mod/content.php:762
+#: mod/photos.php:1732 mod/settings.php:741 mod/admin.php:1606
+#: mod/contacts.php:837 mod/contacts.php:1036 object/Item.php:148
+msgid "Delete"
+msgstr "删除"
 
-#: ../../mod/ping.php:271
+#: include/conversation.php:797 mod/content.php:489 mod/content.php:917
+#: mod/content.php:918 object/Item.php:350 object/Item.php:351
 #, php-format
-msgid "{0} is now friends with %s"
-msgstr "{0}成为%s的朋友"
-
-#: ../../mod/ping.php:276
-msgid "{0} posted"
-msgstr "{0}陈列"
+msgid "View %s's profile @ %s"
+msgstr "看%s的简介@ %s"
 
-#: ../../mod/ping.php:281
-#, php-format
-msgid "{0} tagged %s's post with #%s"
-msgstr "{0}用#%s标签%s的文章"
+#: include/conversation.php:809 object/Item.php:338
+msgid "Categories:"
+msgstr "种类:"
 
-#: ../../mod/ping.php:287
-msgid "{0} mentioned you in a post"
-msgstr "{0}提到您在文章"
+#: include/conversation.php:810 object/Item.php:339
+msgid "Filed under:"
+msgstr "归档在:"
 
-#: ../../mod/viewcontacts.php:41
-msgid "No contacts."
-msgstr "没有熟人。"
+#: include/conversation.php:817 mod/content.php:499 mod/content.php:930
+#: object/Item.php:364
+#, php-format
+msgid "%s from %s"
+msgstr "%s从%s"
 
-#: ../../mod/viewcontacts.php:78 ../../include/text.php:876
-msgid "View Contacts"
-msgstr "看熟人"
+#: include/conversation.php:833 mod/content.php:515
+msgid "View in context"
+msgstr "看在上下文"
 
-#: ../../mod/notifications.php:26
-msgid "Invalid request identifier."
-msgstr "无效要求身份号。"
+#: include/conversation.php:835 include/conversation.php:1307
+#: mod/content.php:517 mod/content.php:955 mod/editpost.php:117
+#: mod/message.php:337 mod/message.php:522 mod/wallmessage.php:143
+#: mod/photos.php:1630 object/Item.php:389
+msgid "Please wait"
+msgstr "请等一下"
 
-#: ../../mod/notifications.php:35 ../../mod/notifications.php:165
-#: ../../mod/notifications.php:211
-msgid "Discard"
-msgstr "丢弃"
+#: include/conversation.php:912
+msgid "remove"
+msgstr "删除"
 
-#: ../../mod/notifications.php:78
-msgid "System"
-msgstr "系统"
+#: include/conversation.php:916
+msgid "Delete Selected Items"
+msgstr "删除选的项目"
 
-#: ../../mod/notifications.php:83 ../../include/nav.php:145
-msgid "Network"
-msgstr "网络"
+#: include/conversation.php:1011 view/theme/frio/theme.php:347
+msgid "Follow Thread"
+msgstr "关注线绳"
 
-#: ../../mod/notifications.php:88 ../../mod/network.php:371
-msgid "Personal"
-msgstr "ç§\81人"
+#: include/conversation.php:1012 include/Contact.php:458
+msgid "View Status"
+msgstr "ç\9c\8bç\8e°ç\8a"
 
-#: ../../mod/notifications.php:93 ../../include/nav.php:105
-#: ../../include/nav.php:148 ../../view/theme/diabook/theme.php:123
-msgid "Home"
-msgstr "主页"
+#: include/conversation.php:1013 include/conversation.php:1029
+#: include/Contact.php:401 include/Contact.php:414 include/Contact.php:459
+#: mod/allfriends.php:71 mod/directory.php:153 mod/dirfind.php:212
+#: mod/match.php:77 mod/suggest.php:82
+msgid "View Profile"
+msgstr "看简介"
 
-#: ../../mod/notifications.php:98 ../../include/nav.php:154
-msgid "Introductions"
-msgstr "介绍"
+#: include/conversation.php:1014 include/Contact.php:460
+msgid "View Photos"
+msgstr "看照片"
 
-#: ../../mod/notifications.php:122
-msgid "Show Ignored Requests"
-msgstr "显示不理的要求"
+#: include/conversation.php:1015 include/Contact.php:461
+msgid "Network Posts"
+msgstr "网络文章"
 
-#: ../../mod/notifications.php:122
-msgid "Hide Ignored Requests"
-msgstr "隐藏不理的要求"
+#: include/conversation.php:1016 include/Contact.php:462
+msgid "View Contact"
+msgstr "查看联系人"
 
-#: ../../mod/notifications.php:149 ../../mod/notifications.php:195
-msgid "Notification type: "
-msgstr "通知种类:"
+#: include/conversation.php:1017 include/Contact.php:464
+msgid "Send PM"
+msgstr "发送私信"
 
-#: ../../mod/notifications.php:150
-msgid "Friend Suggestion"
-msgstr "æ\9c\8bå\8f\8b建议"
+#: include/conversation.php:1021 include/Contact.php:465
+msgid "Poke"
+msgstr "æ\88³"
 
-#: ../../mod/notifications.php:152
+#: include/conversation.php:1148
 #, php-format
-msgid "suggested by %s"
-msgstr "由%s建议的"
-
-#: ../../mod/notifications.php:158 ../../mod/notifications.php:205
-msgid "Post a new friend activity"
-msgstr "表新朋友活动"
-
-#: ../../mod/notifications.php:158 ../../mod/notifications.php:205
-msgid "if applicable"
-msgstr "或适用"
-
-#: ../../mod/notifications.php:161 ../../mod/notifications.php:208
-#: ../../mod/admin.php:1005
-msgid "Approve"
-msgstr "批准"
+msgid "%s likes this."
+msgstr "%s喜欢这个."
 
-#: ../../mod/notifications.php:181
-msgid "Claims to be known to you: "
-msgstr "声称被您认识:"
+#: include/conversation.php:1151
+#, php-format
+msgid "%s doesn't like this."
+msgstr "%s没有喜欢这个."
 
-#: ../../mod/notifications.php:181
-msgid "yes"
-msgstr "是"
+#: include/conversation.php:1154
+#, php-format
+msgid "%s attends."
+msgstr ""
 
-#: ../../mod/notifications.php:181
-msgid "no"
-msgstr "否"
+#: include/conversation.php:1157
+#, php-format
+msgid "%s doesn't attend."
+msgstr ""
 
-#: ../../mod/notifications.php:188
-msgid "Approve as: "
-msgstr "批准作为"
+#: include/conversation.php:1160
+#, php-format
+msgid "%s attends maybe."
+msgstr ""
 
-#: ../../mod/notifications.php:189
-msgid "Friend"
-msgstr "朋友"
+#: include/conversation.php:1171
+msgid "and"
+msgstr ""
 
-#: ../../mod/notifications.php:190
-msgid "Sharer"
-msgstr "分享者"
+#: include/conversation.php:1177
+#, php-format
+msgid ", and %d other people"
+msgstr ",和%d别人"
 
-#: ../../mod/notifications.php:190
-msgid "Fan/Admirer"
-msgstr "迷/赞赏者"
+#: include/conversation.php:1186
+#, php-format
+msgid "<span  %1$s>%2$d people</span> like this"
+msgstr "<span  %1$s>%2$d人们</span>喜欢这个"
 
-#: ../../mod/notifications.php:196
-msgid "Friend/Connect Request"
-msgstr "友谊/联络要求"
+#: include/conversation.php:1187
+#, php-format
+msgid "%s like this."
+msgstr "%s 赞了这个。"
 
-#: ../../mod/notifications.php:196
-msgid "New Follower"
-msgstr "新关注者:"
+#: include/conversation.php:1190
+#, php-format
+msgid "<span  %1$s>%2$d people</span> don't like this"
+msgstr "<span  %1$s>%2$d人们</span>不喜欢这个"
 
-#: ../../mod/notifications.php:217
-msgid "No introductions."
-msgstr "没有介绍。"
+#: include/conversation.php:1191
+#, php-format
+msgid "%s don't like this."
+msgstr "%s 踩了这个。"
 
-#: ../../mod/notifications.php:220 ../../include/nav.php:155
-msgid "Notifications"
-msgstr "通知"
+#: include/conversation.php:1194
+#, php-format
+msgid "<span  %1$s>%2$d people</span> attend"
+msgstr ""
 
-#: ../../mod/notifications.php:258 ../../mod/notifications.php:387
-#: ../../mod/notifications.php:478
+#: include/conversation.php:1195
 #, php-format
-msgid "%s liked %s's post"
-msgstr "%s喜欢了%s的消息"
+msgid "%s attend."
+msgstr ""
 
-#: ../../mod/notifications.php:268 ../../mod/notifications.php:397
-#: ../../mod/notifications.php:488
+#: include/conversation.php:1198
 #, php-format
-msgid "%s disliked %s's post"
-msgstr "%s不喜欢了%s的消息"
+msgid "<span  %1$s>%2$d people</span> don't attend"
+msgstr ""
 
-#: ../../mod/notifications.php:283 ../../mod/notifications.php:412
-#: ../../mod/notifications.php:503
+#: include/conversation.php:1199
 #, php-format
-msgid "%s is now friends with %s"
-msgstr "%s成为%s的朋友"
+msgid "%s don't attend."
+msgstr ""
 
-#: ../../mod/notifications.php:290 ../../mod/notifications.php:419
+#: include/conversation.php:1202
 #, php-format
-msgid "%s created a new post"
-msgstr "%s造成新文章"
+msgid "<span  %1$s>%2$d people</span> attend maybe"
+msgstr ""
 
-#: ../../mod/notifications.php:291 ../../mod/notifications.php:420
-#: ../../mod/notifications.php:513
+#: include/conversation.php:1203
 #, php-format
-msgid "%s commented on %s's post"
-msgstr "%s便条%s的文章"
+msgid "%s anttend maybe."
+msgstr ""
 
-#: ../../mod/notifications.php:306
-msgid "No more network notifications."
-msgstr "没有别的网络通信。"
+#: include/conversation.php:1232 include/conversation.php:1248
+msgid "Visible to <strong>everybody</strong>"
+msgstr "<strong>大家</strong>可见的"
 
-#: ../../mod/notifications.php:310
-msgid "Network Notifications"
-msgstr "网络通知"
+#: include/conversation.php:1233 include/conversation.php:1249
+#: mod/message.php:271 mod/message.php:278 mod/message.php:418
+#: mod/message.php:425 mod/wallmessage.php:117 mod/wallmessage.php:124
+msgid "Please enter a link URL:"
+msgstr "请输入一个链接 URL:"
 
-#: ../../mod/notifications.php:336 ../../mod/notify.php:75
-msgid "No more system notifications."
-msgstr "没别系统通知。"
+#: include/conversation.php:1234 include/conversation.php:1250
+msgid "Please enter a video link/URL:"
+msgstr "请输入视频连接/URL:"
 
-#: ../../mod/notifications.php:340 ../../mod/notify.php:79
-msgid "System Notifications"
-msgstr "系统通知"
+#: include/conversation.php:1235 include/conversation.php:1251
+msgid "Please enter an audio link/URL:"
+msgstr "请输入音响连接/URL:"
 
-#: ../../mod/notifications.php:435
-msgid "No more personal notifications."
-msgstr "没æ\9c\89å\88«ç\9a\84ç§\81人é\80\9aä¿¡ã\80\82"
+#: include/conversation.php:1236 include/conversation.php:1252
+msgid "Tag term:"
+msgstr "æ \87ç­¾:"
 
-#: ../../mod/notifications.php:439
-msgid "Personal Notifications"
-msgstr "私人通知"
+#: include/conversation.php:1237 include/conversation.php:1253
+#: mod/filer.php:31
+msgid "Save to Folder:"
+msgstr "保存再文件夹:"
 
-#: ../../mod/notifications.php:520
-msgid "No more home notifications."
-msgstr "没有别的家通信。"
+#: include/conversation.php:1238 include/conversation.php:1254
+msgid "Where are you right now?"
+msgstr "你在哪里?"
 
-#: ../../mod/notifications.php:524
-msgid "Home Notifications"
-msgstr "主页通知"
+#: include/conversation.php:1239
+msgid "Delete item(s)?"
+msgstr "把项目删除吗?"
 
-#: ../../mod/babel.php:17
-msgid "Source (bbcode) text:"
-msgstr "源代码(bbcode)正文"
+#: include/conversation.php:1288
+msgid "Share"
+msgstr "分享"
 
-#: ../../mod/babel.php:23
-msgid "Source (Diaspora) text to convert to BBcode:"
-msgstr "源代(Diaspora)正文要翻译成BBCode:"
+#: include/conversation.php:1289 mod/editpost.php:103 mod/message.php:335
+#: mod/message.php:519 mod/wallmessage.php:141
+msgid "Upload photo"
+msgstr "上传照片"
 
-#: ../../mod/babel.php:31
-msgid "Source input: "
-msgstr "源代码输入:"
+#: include/conversation.php:1290 mod/editpost.php:104
+msgid "upload photo"
+msgstr "上传照片"
 
-#: ../../mod/babel.php:35
-msgid "bb2html (raw HTML): "
-msgstr "bb2html(生HTML): "
+#: include/conversation.php:1291 mod/editpost.php:105
+msgid "Attach file"
+msgstr "附上文件"
 
-#: ../../mod/babel.php:39
-msgid "bb2html: "
-msgstr "bb2html:"
+#: include/conversation.php:1292 mod/editpost.php:106
+msgid "attach file"
+msgstr "附上文件"
 
-#: ../../mod/babel.php:43
-msgid "bb2html2bb: "
-msgstr "bb2html2bb:"
+#: include/conversation.php:1293 mod/editpost.php:107 mod/message.php:336
+#: mod/message.php:520 mod/wallmessage.php:142
+msgid "Insert web link"
+msgstr "插入网页链接"
 
-#: ../../mod/babel.php:47
-msgid "bb2md: "
-msgstr "bb2md:"
+#: include/conversation.php:1294 mod/editpost.php:108
+msgid "web link"
+msgstr "网页链接"
 
-#: ../../mod/babel.php:51
-msgid "bb2md2html: "
-msgstr "bb2md2html:"
+#: include/conversation.php:1295 mod/editpost.php:109
+msgid "Insert video link"
+msgstr "插入视频链接"
 
-#: ../../mod/babel.php:55
-msgid "bb2dia2bb: "
-msgstr "bb2dia2bb:"
-
-#: ../../mod/babel.php:59
-msgid "bb2md2html2bb: "
-msgstr "bb2md2html2bb:"
+#: include/conversation.php:1296 mod/editpost.php:110
+msgid "video link"
+msgstr "视频链接"
 
-#: ../../mod/babel.php:69
-msgid "Source input (Diaspora format): "
-msgstr "æº\90代è¾\93å\85¥ï¼\88Diasporaå½¢å¼\8fï¼\89ï¼\9a"
+#: include/conversation.php:1297 mod/editpost.php:111
+msgid "Insert audio link"
+msgstr "æ\8f\92å\85¥é\9f³é¢\91é\93¾æ\8e¥"
 
-#: ../../mod/babel.php:74
-msgid "diaspora2bb: "
-msgstr "diaspora2bb: "
+#: include/conversation.php:1298 mod/editpost.php:112
+msgid "audio link"
+msgstr "音频链接"
 
-#: ../../mod/navigation.php:20 ../../include/nav.php:34
-msgid "Nothing new here"
-msgstr "è¿\99é\87\8c没æ\9c\89ä»\80ä¹\88æ\96°ç\9a\84"
+#: include/conversation.php:1299 mod/editpost.php:113
+msgid "Set your location"
+msgstr "设å®\9aæ\82¨ç\9a\84ä½\8dç½®"
 
-#: ../../mod/navigation.php:24 ../../include/nav.php:38
-msgid "Clear notifications"
-msgstr "æ¸\85ç\90\86å\87ºé\80\9aç\9f¥"
+#: include/conversation.php:1300 mod/editpost.php:114
+msgid "set location"
+msgstr "æ\8c\87å®\9aä½\8dç½®"
 
-#: ../../mod/message.php:9 ../../include/nav.php:164
-msgid "New Message"
-msgstr "æ\96°ç\9a\84æ¶\88æ\81¯"
+#: include/conversation.php:1301 mod/editpost.php:115
+msgid "Clear browser location"
+msgstr "æ¸\85空æµ\8fè§\88å\99¨ä½\8dç½®"
 
-#: ../../mod/message.php:63 ../../mod/wallmessage.php:56
-msgid "No recipient selected."
-msgstr "没æ\9c\89é\80\89æ\8b©ç\9a\84æ\8e¥å\8f\97è\80\85ã\80\82"
+#: include/conversation.php:1302 mod/editpost.php:116
+msgid "clear location"
+msgstr "æ¸\85é\99¤ä½\8dç½®"
 
-#: ../../mod/message.php:67
-msgid "Unable to locate contact information."
-msgstr "æ\89¾ä¸\8då\88°ç\86\9f人信æ\81¯ã\80\82"
+#: include/conversation.php:1304 mod/editpost.php:130
+msgid "Set title"
+msgstr "æ\8c\87å®\9aæ \87é¢\98"
 
-#: ../../mod/message.php:70 ../../mod/wallmessage.php:62
-msgid "Message could not be sent."
-msgstr "消息发不了。"
+#: include/conversation.php:1306 mod/editpost.php:132
+msgid "Categories (comma-separated list)"
+msgstr "种类(逗号分隔单)"
 
-#: ../../mod/message.php:73 ../../mod/wallmessage.php:65
-msgid "Message collection failure."
-msgstr "通信受到错误。"
+#: include/conversation.php:1308 mod/editpost.php:118
+msgid "Permission settings"
+msgstr "权设置"
 
-#: ../../mod/message.php:76 ../../mod/wallmessage.php:68
-msgid "Message sent."
-msgstr "æ\88æ\81¯å\8f\91äº\86"
+#: include/conversation.php:1309 mod/editpost.php:147
+msgid "permissions"
+msgstr "æ\9d\83å\88©"
 
-#: ../../mod/message.php:182 ../../include/nav.php:161
-msgid "Messages"
-msgstr "消息"
+#: include/conversation.php:1317 mod/editpost.php:127
+msgid "Public post"
+msgstr "公开的消息"
 
-#: ../../mod/message.php:207
-msgid "Do you really want to delete this message?"
-msgstr "您真的想删除这个通知吗?"
+#: include/conversation.php:1322 mod/content.php:739 mod/editpost.php:138
+#: mod/events.php:507 mod/photos.php:1650 mod/photos.php:1692
+#: mod/photos.php:1772 object/Item.php:711
+msgid "Preview"
+msgstr "预演"
 
-#: ../../mod/message.php:227
-msgid "Message deleted."
-msgstr "消息删除了。"
+#: include/conversation.php:1326 include/items.php:2148
+#: mod/dfrn_request.php:895 mod/editpost.php:141 mod/follow.php:161
+#: mod/message.php:210 mod/tagrm.php:14 mod/tagrm.php:99 mod/videos.php:135
+#: mod/photos.php:248 mod/photos.php:340 mod/settings.php:679
+#: mod/settings.php:705 mod/suggest.php:35 mod/contacts.php:468
+#: mod/fbrowser.php:104 mod/fbrowser.php:139 mod/unfollow.php:117
+msgid "Cancel"
+msgstr "退消"
 
-#: ../../mod/message.php:258
-msgid "Conversation removed."
-msgstr "交流删除了。"
+#: include/conversation.php:1332
+msgid "Post to Groups"
+msgstr "发到组"
 
-#: ../../mod/message.php:283 ../../mod/message.php:291
-#: ../../mod/message.php:466 ../../mod/message.php:474
-#: ../../mod/wallmessage.php:127 ../../mod/wallmessage.php:135
-#: ../../include/conversation.php:1002 ../../include/conversation.php:1020
-msgid "Please enter a link URL:"
-msgstr "请输入环节URL:"
+#: include/conversation.php:1333
+msgid "Post to Contacts"
+msgstr "发到熟人"
 
-#: ../../mod/message.php:319 ../../mod/wallmessage.php:142
-msgid "Send Private Message"
-msgstr "发私人的通信"
+#: include/conversation.php:1334
+msgid "Private post"
+msgstr "私人文章"
 
-#: ../../mod/message.php:320 ../../mod/message.php:553
-#: ../../mod/wallmessage.php:144
-msgid "To:"
-msgstr "到:"
+#: include/conversation.php:1339 include/identity.php:267 mod/editpost.php:145
+msgid "Message"
+msgstr "通知"
 
-#: ../../mod/message.php:325 ../../mod/message.php:555
-#: ../../mod/wallmessage.php:145
-msgid "Subject:"
-msgstr "题目:"
+#: include/conversation.php:1340 mod/editpost.php:146
+msgid "Browser"
+msgstr "浏览器"
 
-#: ../../mod/message.php:329 ../../mod/message.php:558
-#: ../../mod/wallmessage.php:151 ../../mod/invite.php:134
-msgid "Your message:"
-msgstr "你的消息:"
+#: include/conversation.php:1522
+msgid "View all"
+msgstr "查看全部"
 
-#: ../../mod/message.php:332 ../../mod/message.php:562
-#: ../../mod/wallmessage.php:154 ../../mod/editpost.php:110
-#: ../../include/conversation.php:1091
-msgid "Upload photo"
-msgstr "上传照片"
+#: include/conversation.php:1544
+msgid "Like"
+msgid_plural "Likes"
+msgstr[0] "喜欢"
 
-#: ../../mod/message.php:333 ../../mod/message.php:563
-#: ../../mod/wallmessage.php:155 ../../mod/editpost.php:114
-#: ../../include/conversation.php:1095
-msgid "Insert web link"
-msgstr "插入网页环节"
+#: include/conversation.php:1547
+msgid "Dislike"
+msgid_plural "Dislikes"
+msgstr[0] "不喜欢"
 
-#: ../../mod/message.php:334 ../../mod/message.php:565
-#: ../../mod/content.php:499 ../../mod/content.php:883
-#: ../../mod/wallmessage.php:156 ../../mod/editpost.php:124
-#: ../../mod/photos.php:1545 ../../object/Item.php:364
-#: ../../include/conversation.php:692 ../../include/conversation.php:1109
-msgid "Please wait"
-msgstr "请等一下"
+#: include/conversation.php:1553
+msgid "Not Attending"
+msgid_plural "Not Attending"
+msgstr[0] "不在参加"
 
-#: ../../mod/message.php:371
-msgid "No messages."
-msgstr "没有消息"
+#: include/dbstructure.php:26
+msgid "There are no tables on MyISAM."
+msgstr ""
 
-#: ../../mod/message.php:378
+#: include/dbstructure.php:67
 #, php-format
-msgid "Unknown sender - %s"
-msgstr "生发送人-%s"
+msgid ""
+"\n"
+"\t\t\tThe friendica developers released update %s recently,\n"
+"\t\t\tbut when I tried to install it, something went terribly wrong.\n"
+"\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n"
+"\t\t\tfriendica developer if you can not help me on your own. My database might be invalid."
+msgstr ""
 
-#: ../../mod/message.php:381
+#: include/dbstructure.php:72
 #, php-format
-msgid "You and %s"
-msgstr "您和%s"
+msgid ""
+"The error message is\n"
+"[pre]%s[/pre]"
+msgstr ""
 
-#: ../../mod/message.php:384
+#: include/dbstructure.php:197
 #, php-format
-msgid "%s and You"
-msgstr "%s和您"
+msgid ""
+"\n"
+"Error %d occurred during database update:\n"
+"%s\n"
+msgstr ""
 
-#: ../../mod/message.php:405 ../../mod/message.php:546
-msgid "Delete conversation"
-msgstr "删除交谈"
+#: include/dbstructure.php:200
+msgid "Errors encountered performing database changes: "
+msgstr "操作数据库更改的时候遇到了错误:"
 
-#: ../../mod/message.php:408
-msgid "D, d M Y - g:i A"
-msgstr "D, d M Y - g:i A"
+#: include/dbstructure.php:208
+msgid ": Database update"
+msgstr ": 数据库升级"
 
-#: ../../mod/message.php:411
+#: include/dbstructure.php:440
 #, php-format
-msgid "%d message"
-msgid_plural "%d messages"
-msgstr[0] "%d通知"
-
-#: ../../mod/message.php:450
-msgid "Message not available."
-msgstr "通信不可用的"
+msgid "%s: updating %s table."
+msgstr "%s: 正在更新 %s 表。"
 
-#: ../../mod/message.php:520
-msgid "Delete message"
-msgstr "删除消息"
+#: include/delivery.php:429
+msgid "(no subject)"
+msgstr "(无主题)"
 
-#: ../../mod/message.php:548
-msgid ""
-"No secure communications available. You <strong>may</strong> be able to "
-"respond from the sender's profile page."
-msgstr "没可用的安全交通。您<strong>可能</strong>会在发送人的简介页会回答。"
+#: include/delivery.php:441 include/enotify.php:47
+msgid "noreply"
+msgstr "noreply"
 
-#: ../../mod/message.php:552
-msgid "Send Reply"
-msgstr "发回答"
+#: include/enotify.php:28
+msgid "Friendica Notification"
+msgstr "Friendica 通知"
 
-#: ../../mod/update_display.php:22 ../../mod/update_community.php:18
-#: ../../mod/update_notes.php:37 ../../mod/update_profile.php:41
-#: ../../mod/update_network.php:25
-msgid "[Embedded content - reload page to view]"
-msgstr "[嵌入内容-重新加载页为看]"
+#: include/enotify.php:31
+msgid "Thank You,"
+msgstr "谢谢,"
 
-#: ../../mod/crepair.php:106
-msgid "Contact settings applied."
-msgstr "熟人设置应用了。"
+#: include/enotify.php:34
+#, php-format
+msgid "%s Administrator"
+msgstr "%s管理员"
 
-#: ../../mod/crepair.php:108
-msgid "Contact update failed."
-msgstr "熟人更新失败。"
+#: include/enotify.php:36
+#, php-format
+msgid "%1$s, %2$s Administrator"
+msgstr "%1$s, %2$s 的管理员"
 
-#: ../../mod/crepair.php:139
-msgid "Repair Contact Settings"
-msgstr "维修熟人设置"
+#: include/enotify.php:81
+#, php-format
+msgid "%s <!item_type!>"
+msgstr "%s <!item_type!>"
 
-#: ../../mod/crepair.php:141
-msgid ""
-"<strong>WARNING: This is highly advanced</strong> and if you enter incorrect"
-" information your communications with this contact may stop working."
-msgstr "<strong>注意:这是很高等的</strong>,你输入错的信息你和熟人的沟通会弄失灵了。"
+#: include/enotify.php:94
+#, php-format
+msgid "[Friendica:Notify] New mail received at %s"
+msgstr "[Friendica:Notify]收到新邮件在%s"
 
-#: ../../mod/crepair.php:142
-msgid ""
-"Please use your browser 'Back' button <strong>now</strong> if you are "
-"uncertain what to do on this page."
-msgstr "请<strong>立即</strong>用后退按钮如果您不确定怎么用这页"
+#: include/enotify.php:96
+#, php-format
+msgid "%1$s sent you a new private message at %2$s."
+msgstr "%1$s发给您新私人通知在%2$s."
 
-#: ../../mod/crepair.php:148
-msgid "Return to contact editor"
-msgstr "回归熟人处理器"
+#: include/enotify.php:97
+#, php-format
+msgid "%1$s sent you %2$s."
+msgstr "%1$s发给您%2$s."
 
-#: ../../mod/crepair.php:159 ../../mod/crepair.php:161
-msgid "No mirroring"
-msgstr "没有复制"
+#: include/enotify.php:97
+msgid "a private message"
+msgstr "一条私人的消息"
 
-#: ../../mod/crepair.php:159
-msgid "Mirror as forwarded posting"
-msgstr "复制为传达文章"
+#: include/enotify.php:99
+#, php-format
+msgid "Please visit %s to view and/or reply to your private messages."
+msgstr "请访问 %s 来查看并且/或者回复你的私信。"
 
-#: ../../mod/crepair.php:159 ../../mod/crepair.php:161
-msgid "Mirror as my own posting"
-msgstr "复制为我自己的文章"
+#: include/enotify.php:145
+#, php-format
+msgid "%1$s commented on [url=%2$s]a %3$s[/url]"
+msgstr "%1$s于[url=%2$s]a %3$s[/url]评论了"
 
-#: ../../mod/crepair.php:165 ../../mod/admin.php:1003 ../../mod/admin.php:1015
-#: ../../mod/admin.php:1016 ../../mod/admin.php:1029
-#: ../../mod/settings.php:616 ../../mod/settings.php:642
-msgid "Name"
-msgstr "名字"
+#: include/enotify.php:152
+#, php-format
+msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]"
+msgstr "%1$s于[url=%2$s]%3$s的%4$s[/url]评论了"
 
-#: ../../mod/crepair.php:166
-msgid "Account Nickname"
-msgstr "帐户昵称"
+#: include/enotify.php:160
+#, php-format
+msgid "%1$s commented on [url=%2$s]your %3$s[/url]"
+msgstr "%1$s于[url=%2$s]您的%3$s[/url]评论了"
 
-#: ../../mod/crepair.php:167
-msgid "@Tagname - overrides Name/Nickname"
-msgstr "@Tagname越过名/昵称"
+#: include/enotify.php:170
+#, php-format
+msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s"
+msgstr "[Friendica:Notify]于交流#%1$d由%2$s评论"
 
-#: ../../mod/crepair.php:168
-msgid "Account URL"
-msgstr "帐户URL"
+#: include/enotify.php:172
+#, php-format
+msgid "%s commented on an item/conversation you have been following."
+msgstr "%s对你有兴趣的项目/ 交谈发表意见"
 
-#: ../../mod/crepair.php:169
-msgid "Friend Request URL"
-msgstr "朋友请求URL"
+#: include/enotify.php:175 include/enotify.php:189 include/enotify.php:203
+#: include/enotify.php:217 include/enotify.php:235 include/enotify.php:249
+#, php-format
+msgid "Please visit %s to view and/or reply to the conversation."
+msgstr "请访问%s来查看并且/或者回复这个对话。"
 
-#: ../../mod/crepair.php:170
-msgid "Friend Confirm URL"
-msgstr "朋友确认URL"
+#: include/enotify.php:182
+#, php-format
+msgid "[Friendica:Notify] %s posted to your profile wall"
+msgstr "[Friendica:Notify] %s贴在您的简介墙"
 
-#: ../../mod/crepair.php:171
-msgid "Notification Endpoint URL"
-msgstr "通知端URL"
+#: include/enotify.php:184
+#, php-format
+msgid "%1$s posted to your profile wall at %2$s"
+msgstr "%1$s放在您的简介墙在%2$s"
 
-#: ../../mod/crepair.php:172
-msgid "Poll/Feed URL"
-msgstr "喂URL"
+#: include/enotify.php:185
+#, php-format
+msgid "%1$s posted to [url=%2$s]your wall[/url]"
+msgstr "%1$s放在[url=%2$s]您的墙[/url]"
 
-#: ../../mod/crepair.php:173
-msgid "New photo from this URL"
-msgstr "新照片从这个URL"
+#: include/enotify.php:196
+#, php-format
+msgid "[Friendica:Notify] %s tagged you"
+msgstr "[Friendica:Notify] %s标签您"
 
-#: ../../mod/crepair.php:174
-msgid "Remote Self"
-msgstr "遥远的自身"
+#: include/enotify.php:198
+#, php-format
+msgid "%1$s tagged you at %2$s"
+msgstr "%1$s把您在%2$s标签"
 
-#: ../../mod/crepair.php:176
-msgid "Mirror postings from this contact"
-msgstr "把这个熟人的文章复制。"
+#: include/enotify.php:199
+#, php-format
+msgid "%1$s [url=%2$s]tagged you[/url]."
+msgstr "%1$s[url=%2$s]把您标签[/url]."
 
-#: ../../mod/crepair.php:176
-msgid ""
-"Mark this contact as remote_self, this will cause friendica to repost new "
-"entries from this contact."
-msgstr "表明这个熟人当遥远的自身。Friendica要把这个熟人的新的文章复制。"
+#: include/enotify.php:210
+#, php-format
+msgid "[Friendica:Notify] %s shared a new post"
+msgstr "[Friendica:Notify] %s分享新的消息"
 
-#: ../../mod/bookmarklet.php:12 ../../boot.php:1266 ../../include/nav.php:92
-msgid "Login"
-msgstr "登录"
+#: include/enotify.php:212
+#, php-format
+msgid "%1$s shared a new post at %2$s"
+msgstr "%1$s分享新的消息在%2$s"
 
-#: ../../mod/bookmarklet.php:41
-msgid "The post was created"
-msgstr "文章创建了"
+#: include/enotify.php:213
+#, php-format
+msgid "%1$s [url=%2$s]shared a post[/url]."
+msgstr "%1$s [url=%2$s]分享一个消息[/url]."
 
-#: ../../mod/viewsrc.php:7
-msgid "Access denied."
-msgstr "没有用权。"
+#: include/enotify.php:224
+#, php-format
+msgid "[Friendica:Notify] %1$s poked you"
+msgstr "[Friendica:Notify]您被%1$s戳"
 
-#: ../../mod/dirfind.php:26
-msgid "People Search"
-msgstr "搜索人物"
+#: include/enotify.php:226
+#, php-format
+msgid "%1$s poked you at %2$s"
+msgstr "您被%1$s戳在%2$s"
 
-#: ../../mod/dirfind.php:60 ../../mod/match.php:65
-msgid "No matches"
-msgstr "没有结果"
+#: include/enotify.php:227
+#, php-format
+msgid "%1$s [url=%2$s]poked you[/url]."
+msgstr "%1$s[url=%2$s]把您戳[/url]。"
 
-#: ../../mod/fbrowser.php:25 ../../boot.php:2126 ../../include/nav.php:78
-#: ../../view/theme/diabook/theme.php:126
-msgid "Photos"
-msgstr "照片"
+#: include/enotify.php:242
+#, php-format
+msgid "[Friendica:Notify] %s tagged your post"
+msgstr "[Friendica:Notify] %s标前您的文章"
 
-#: ../../mod/fbrowser.php:113
-msgid "Files"
-msgstr "文件"
+#: include/enotify.php:244
+#, php-format
+msgid "%1$s tagged your post at %2$s"
+msgstr "%1$s把您的文章在%2$s标签"
 
-#: ../../mod/nogroup.php:59
-msgid "Contacts who are not members of a group"
-msgstr "没当成员的熟人"
+#: include/enotify.php:245
+#, php-format
+msgid "%1$s tagged [url=%2$s]your post[/url]"
+msgstr "%1$s把[url=%2$s]您的文章[/url]标签"
 
-#: ../../mod/admin.php:57
-msgid "Theme settings updated."
-msgstr "主题设置更新了。"
+#: include/enotify.php:256
+msgid "[Friendica:Notify] Introduction received"
+msgstr "[Friendica:Notify] 收到介绍"
 
-#: ../../mod/admin.php:104 ../../mod/admin.php:619
-msgid "Site"
-msgstr "网站"
+#: include/enotify.php:258
+#, php-format
+msgid "You've received an introduction from '%1$s' at %2$s"
+msgstr "您从「%1$s」受到一个介绍在%2$s"
 
-#: ../../mod/admin.php:105 ../../mod/admin.php:998 ../../mod/admin.php:1013
-msgid "Users"
-msgstr "用户"
+#: include/enotify.php:259
+#, php-format
+msgid "You've received [url=%1$s]an introduction[/url] from %2$s."
+msgstr "您从%2$s收到[url=%1$s]一个介绍[/url]。"
 
-#: ../../mod/admin.php:106 ../../mod/admin.php:1102 ../../mod/admin.php:1155
-#: ../../mod/settings.php:57
-msgid "Plugins"
-msgstr "插件"
+#: include/enotify.php:263 include/enotify.php:306
+#, php-format
+msgid "You may visit their profile at %s"
+msgstr "你能看他的简介在%s"
 
-#: ../../mod/admin.php:107 ../../mod/admin.php:1323 ../../mod/admin.php:1357
-msgid "Themes"
-msgstr "主题"
+#: include/enotify.php:265
+#, php-format
+msgid "Please visit %s to approve or reject the introduction."
+msgstr "请批准或拒绝介绍在%s"
 
-#: ../../mod/admin.php:108
-msgid "DB updates"
-msgstr "数据库更新"
+#: include/enotify.php:273
+msgid "[Friendica:Notify] A new person is sharing with you"
+msgstr "[Friendica:Notify] 一个新的人正在和你分享"
 
-#: ../../mod/admin.php:123 ../../mod/admin.php:132 ../../mod/admin.php:1444
-msgid "Logs"
-msgstr "记录"
+#: include/enotify.php:275 include/enotify.php:276
+#, php-format
+msgid "%1$s is sharing with you at %2$s"
+msgstr ""
 
-#: ../../mod/admin.php:124
-msgid "probe address"
-msgstr "试探地址"
+#: include/enotify.php:282
+msgid "[Friendica:Notify] You have a new follower"
+msgstr "[Friendica:Notify] 你有一个新的粉丝"
 
-#: ../../mod/admin.php:125
-msgid "check webfinger"
-msgstr "查webfinger"
+#: include/enotify.php:284 include/enotify.php:285
+#, php-format
+msgid "You have a new follower at %2$s : %1$s"
+msgstr "你在 %2$s 有一个新的关注者: %1$s"
 
-#: ../../mod/admin.php:130 ../../include/nav.php:184
-msgid "Admin"
-msgstr "管理"
+#: include/enotify.php:296
+msgid "[Friendica:Notify] Friend suggestion received"
+msgstr "[Friendica:Notify] 收到朋友建议"
 
-#: ../../mod/admin.php:131
-msgid "Plugin Features"
-msgstr "插件特点"
+#: include/enotify.php:298
+#, php-format
+msgid "You've received a friend suggestion from '%1$s' at %2$s"
+msgstr "您从「%2$s」收到[url=%1$s]一个朋友建议[/url]。"
 
-#: ../../mod/admin.php:133
-msgid "diagnostics"
-msgstr "诊断"
+#: include/enotify.php:299
+#, php-format
+msgid ""
+"You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s."
+msgstr "您从%3$s收到[url=%1$s]一个朋友建议[/url]为%2$s。"
 
-#: ../../mod/admin.php:134
-msgid "User registrations waiting for confirmation"
-msgstr "用户注册等确认"
+#: include/enotify.php:304
+msgid "Name:"
+msgstr "名字:"
 
-#: ../../mod/admin.php:193 ../../mod/admin.php:952
-msgid "Normal Account"
-msgstr "正常帐户"
+#: include/enotify.php:305
+msgid "Photo:"
+msgstr "照片:"
 
-#: ../../mod/admin.php:194 ../../mod/admin.php:953
-msgid "Soapbox Account"
-msgstr "演讲台帐户"
+#: include/enotify.php:308
+#, php-format
+msgid "Please visit %s to approve or reject the suggestion."
+msgstr "请访问%s来批准或拒绝这个建议。"
 
-#: ../../mod/admin.php:195 ../../mod/admin.php:954
-msgid "Community/Celebrity Account"
-msgstr "社会/名人帐户"
+#: include/enotify.php:316 include/enotify.php:330
+msgid "[Friendica:Notify] Connection accepted"
+msgstr "[Friendica:Notify] 连接被接受"
 
-#: ../../mod/admin.php:196 ../../mod/admin.php:955
-msgid "Automatic Friend Account"
-msgstr "自动朋友帐户"
+#: include/enotify.php:318 include/enotify.php:332
+#, php-format
+msgid "'%1$s' has accepted your connection request at %2$s"
+msgstr ""
 
-#: ../../mod/admin.php:197
-msgid "Blog Account"
-msgstr "博客账户"
+#: include/enotify.php:319 include/enotify.php:333
+#, php-format
+msgid "%2$s has accepted your [url=%1$s]connection request[/url]."
+msgstr ""
 
-#: ../../mod/admin.php:198
-msgid "Private Forum"
-msgstr "私人评坛"
+#: include/enotify.php:323
+msgid ""
+"You are now mutual friends and may exchange status updates, photos, and "
+"email without restriction."
+msgstr "你们现在已经互为朋友了,可以不受限制地交换状态更新、照片和邮件。"
 
-#: ../../mod/admin.php:217
-msgid "Message queues"
-msgstr "通知排队"
+#: include/enotify.php:325
+#, php-format
+msgid "Please visit %s if you wish to make any changes to this relationship."
+msgstr "请访问%s如果你希望对这个关系做任何改变。"
 
-#: ../../mod/admin.php:222 ../../mod/admin.php:618 ../../mod/admin.php:997
-#: ../../mod/admin.php:1101 ../../mod/admin.php:1154 ../../mod/admin.php:1322
-#: ../../mod/admin.php:1356 ../../mod/admin.php:1443
-msgid "Administration"
-msgstr "管理"
+#: include/enotify.php:337
+#, php-format
+msgid ""
+"'%1$s' has chosen to accept you a \"fan\", which restricts some forms of "
+"communication - such as private messaging and some profile interactions. If "
+"this is a celebrity or community page, these settings were applied "
+"automatically."
+msgstr "'%1$s'选择欢迎你为\"迷\",限制有的沟通方式,比如死人交流和有的简介互动。如果这是名人或社会页,此设置是自动地施用。"
 
-#: ../../mod/admin.php:223
-msgid "Summary"
-msgstr "总算"
+#: include/enotify.php:339
+#, php-format
+msgid ""
+"'%1$s' may choose to extend this into a two-way or more permissive "
+"relationship in the future."
+msgstr ""
 
-#: ../../mod/admin.php:225
-msgid "Registered users"
-msgstr "注册的用户"
+#: include/enotify.php:341
+#, php-format
+msgid "Please visit %s  if you wish to make any changes to this relationship."
+msgstr "请访问 %s  如果你希望对修改这个关系。"
 
-#: ../../mod/admin.php:227
-msgid "Pending registrations"
-msgstr "未决的注册"
+#: include/enotify.php:351
+msgid "[Friendica System:Notify] registration request"
+msgstr ""
 
-#: ../../mod/admin.php:228
-msgid "Version"
-msgstr "版本"
+#: include/enotify.php:353
+#, php-format
+msgid "You've received a registration request from '%1$s' at %2$s"
+msgstr ""
 
-#: ../../mod/admin.php:232
-msgid "Active plugins"
-msgstr "活跃的插件"
+#: include/enotify.php:354
+#, php-format
+msgid "You've received a [url=%1$s]registration request[/url] from %2$s."
+msgstr ""
 
-#: ../../mod/admin.php:255
-msgid "Can not parse base url. Must have at least <scheme>://<domain>"
-msgstr "不能分析基础URL。至少要<scheme>://<domain>"
+#: include/enotify.php:358
+#, php-format
+msgid "Full Name:\t%1$s\\nSite Location:\t%2$s\\nLogin Name:\t%3$s (%4$s)"
+msgstr ""
 
-#: ../../mod/admin.php:516
-msgid "Site settings updated."
-msgstr "网站设置更新了。"
+#: include/enotify.php:361
+#, php-format
+msgid "Please visit %s to approve or reject the request."
+msgstr "请访问%s来批准或拒绝这个请求。"
 
-#: ../../mod/admin.php:545 ../../mod/settings.php:828
-msgid "No special theme for mobile devices"
-msgstr "没专门适合手机的主题"
+#: include/event.php:409
+msgid "all-day"
+msgstr "全天"
 
-#: ../../mod/admin.php:562
-msgid "No community page"
-msgstr "没æ\9c\89社ä¼\9a页"
+#: include/event.php:411
+msgid "Sun"
+msgstr "æ\98\9fæ\9c\9fæ\97¥"
 
-#: ../../mod/admin.php:563
-msgid "Public postings from users of this site"
-msgstr "æ\9c¬ç½\91ç«\99ç\94¨æ\88·ç\9a\84å\85¬å¼\80æ\96\87ç« "
+#: include/event.php:412
+msgid "Mon"
+msgstr "æ\98\9fæ\9c\9fä¸\80"
 
-#: ../../mod/admin.php:564
-msgid "Global community page"
-msgstr "全球社会页"
+#: include/event.php:413
+msgid "Tue"
+msgstr "星期二"
 
-#: ../../mod/admin.php:570
-msgid "At post arrival"
-msgstr "æ\94¶ä»¶ç\9a\84æ\97¶å\80\99"
+#: include/event.php:414
+msgid "Wed"
+msgstr "æ\98\9fæ\9c\9fä¸\89"
 
-#: ../../mod/admin.php:571 ../../include/contact_selectors.php:56
-msgid "Frequently"
-msgstr "æ\97¶å¸¸"
+#: include/event.php:415
+msgid "Thu"
+msgstr "æ\98\9fæ\9c\9få\9b\9b"
 
-#: ../../mod/admin.php:572 ../../include/contact_selectors.php:57
-msgid "Hourly"
-msgstr "æ¯\8få°\8fæ\97"
+#: include/event.php:416
+msgid "Fri"
+msgstr "æ\98\9fæ\9c\9fäº\94"
 
-#: ../../mod/admin.php:573 ../../include/contact_selectors.php:58
-msgid "Twice daily"
-msgstr "æ¯\8fæ\97¥ä¸¤æ¬¡"
+#: include/event.php:417
+msgid "Sat"
+msgstr "æ\98\9fæ\9c\9få\85­"
 
-#: ../../mod/admin.php:574 ../../include/contact_selectors.php:59
-msgid "Daily"
-msgstr "æ¯\8fæ\97¥"
+#: include/event.php:419 include/text.php:1207 mod/settings.php:978
+msgid "Sunday"
+msgstr "æ\98\9fæ\9c\9f天"
 
-#: ../../mod/admin.php:579
-msgid "Multi user instance"
-msgstr "多用户网站"
+#: include/event.php:420 include/text.php:1207 mod/settings.php:978
+msgid "Monday"
+msgstr "星期一"
 
-#: ../../mod/admin.php:602
-msgid "Closed"
-msgstr "关闭"
+#: include/event.php:421 include/text.php:1207
+msgid "Tuesday"
+msgstr "星期二"
 
-#: ../../mod/admin.php:603
-msgid "Requires approval"
-msgstr "要批准"
+#: include/event.php:422 include/text.php:1207
+msgid "Wednesday"
+msgstr "星期三"
 
-#: ../../mod/admin.php:604
-msgid "Open"
-msgstr "æ\89\93å¼\80"
+#: include/event.php:423 include/text.php:1207
+msgid "Thursday"
+msgstr "æ\98\9fæ\9c\9få\9b\9b"
 
-#: ../../mod/admin.php:608
-msgid "No SSL policy, links will track page SSL state"
-msgstr "没SSLæ\96¹é\92\88ï¼\8cç\8e¯è\8a\82å°\86追踪页SSLç\8e°ç\8a"
+#: include/event.php:424 include/text.php:1207
+msgid "Friday"
+msgstr "æ\98\9fæ\9c\9fäº\94"
 
-#: ../../mod/admin.php:609
-msgid "Force all links to use SSL"
-msgstr "让所有的环节用SSL"
+#: include/event.php:425 include/text.php:1207
+msgid "Saturday"
+msgstr "星期六"
 
-#: ../../mod/admin.php:610
-msgid "Self-signed certificate, use SSL for local links only (discouraged)"
-msgstr "自签证书,用SSL再光本地环节(劝止的)"
+#: include/event.php:427
+msgid "Jan"
+msgstr "一月"
 
-#: ../../mod/admin.php:620 ../../mod/admin.php:1156 ../../mod/admin.php:1358
-#: ../../mod/admin.php:1445 ../../mod/settings.php:614
-#: ../../mod/settings.php:724 ../../mod/settings.php:798
-#: ../../mod/settings.php:880 ../../mod/settings.php:1113
-msgid "Save Settings"
-msgstr "保存设置"
+#: include/event.php:428
+msgid "Feb"
+msgstr "二月"
 
-#: ../../mod/admin.php:621 ../../mod/register.php:255
-msgid "Registration"
-msgstr "注册"
+#: include/event.php:429
+msgid "Mar"
+msgstr "三月"
 
-#: ../../mod/admin.php:622
-msgid "File upload"
-msgstr "文件上传"
+#: include/event.php:430
+msgid "Apr"
+msgstr "四月"
 
-#: ../../mod/admin.php:623
-msgid "Policies"
-msgstr "政策"
+#: include/event.php:431 include/event.php:444 include/text.php:1211
+msgid "May"
+msgstr "五月"
 
-#: ../../mod/admin.php:624
-msgid "Advanced"
-msgstr "高等"
+#: include/event.php:432
+msgid "Jun"
+msgstr "六月"
 
-#: ../../mod/admin.php:625
-msgid "Performance"
-msgstr "性能"
+#: include/event.php:433
+msgid "Jul"
+msgstr "七月"
 
-#: ../../mod/admin.php:626
-msgid ""
-"Relocate - WARNING: advanced function. Could make this server unreachable."
-msgstr "调动:注意先进的功能。能吧服务器使不能联系。"
+#: include/event.php:434
+msgid "Aug"
+msgstr "八月"
 
-#: ../../mod/admin.php:629
-msgid "Site name"
-msgstr "网页名字"
+#: include/event.php:435
+msgid "Sept"
+msgstr "九月"
 
-#: ../../mod/admin.php:630
-msgid "Host name"
-msgstr "服务器名"
+#: include/event.php:436
+msgid "Oct"
+msgstr "十月"
 
-#: ../../mod/admin.php:631
-msgid "Sender Email"
-msgstr "å¯\84主é\82®ä»¶"
+#: include/event.php:437
+msgid "Nov"
+msgstr "å\8d\81ä¸\80æ\9c\88"
 
-#: ../../mod/admin.php:632
-msgid "Banner/Logo"
-msgstr "标题/标志"
+#: include/event.php:438
+msgid "Dec"
+msgstr "十二月"
 
-#: ../../mod/admin.php:633
-msgid "Shortcut icon"
-msgstr "捷径小图片"
+#: include/event.php:440 include/text.php:1211
+msgid "January"
+msgstr "一月"
 
-#: ../../mod/admin.php:634
-msgid "Touch icon"
-msgstr "触摸小图片"
+#: include/event.php:441 include/text.php:1211
+msgid "February"
+msgstr "二月"
 
-#: ../../mod/admin.php:635
-msgid "Additional Info"
-msgstr "别的消息"
+#: include/event.php:442 include/text.php:1211
+msgid "March"
+msgstr "三月"
 
-#: ../../mod/admin.php:635
-msgid ""
-"For public servers: you can add additional information here that will be "
-"listed at dir.friendica.com/siteinfo."
-msgstr "公共服务器:您会这里添加消息要列在dir.friendica.com/siteinfo。"
+#: include/event.php:443 include/text.php:1211
+msgid "April"
+msgstr "四月"
 
-#: ../../mod/admin.php:636
-msgid "System language"
-msgstr "系统语言"
+#: include/event.php:445 include/text.php:1211
+msgid "June"
+msgstr "六月"
 
-#: ../../mod/admin.php:637
-msgid "System theme"
-msgstr "系统主题"
+#: include/event.php:446 include/text.php:1211
+msgid "July"
+msgstr "七月"
 
-#: ../../mod/admin.php:637
-msgid ""
-"Default system theme - may be over-ridden by user profiles - <a href='#' "
-"id='cnftheme'>change theme settings</a>"
-msgstr "默认系统主题-会被用户简介超驰-<a href='#' id='cnftheme'>把主题设置变化</a>"
+#: include/event.php:447 include/text.php:1211
+msgid "August"
+msgstr "八月"
 
-#: ../../mod/admin.php:638
-msgid "Mobile system theme"
-msgstr "手机系统主题"
+#: include/event.php:448 include/text.php:1211
+msgid "September"
+msgstr "九月"
 
-#: ../../mod/admin.php:638
-msgid "Theme for mobile devices"
-msgstr "主题适合手机"
+#: include/event.php:449 include/text.php:1211
+msgid "October"
+msgstr "十月"
 
-#: ../../mod/admin.php:639
-msgid "SSL link policy"
-msgstr "SSLç\8e¯è\8a\82æ\96¹é\92\88"
+#: include/event.php:450 include/text.php:1211
+msgid "November"
+msgstr "å\8d\81ä¸\80æ\9c\88"
 
-#: ../../mod/admin.php:639
-msgid "Determines whether generated links should be forced to use SSL"
-msgstr "å\86³å®\9a产ç\94\9fç\9a\84ç\8e¯è\8a\82å\90¦å\88\99被强迫ç\94¨SSL"
+#: include/event.php:451 include/text.php:1211
+msgid "December"
+msgstr "å\8d\81äº\8cæ\9c\88"
 
-#: ../../mod/admin.php:640
-msgid "Force SSL"
-msgstr "强逼SSL"
+#: include/event.php:453 mod/cal.php:281 mod/events.php:387
+msgid "today"
+msgstr "今天"
 
-#: ../../mod/admin.php:640
-msgid ""
-"Force all Non-SSL requests to SSL - Attention: on some systems it could lead"
-" to endless loops."
-msgstr "强逼所有非SSL的要求用SSL。注意:在有的系统会导致无限循环"
+#: include/event.php:458
+msgid "No events to display"
+msgstr "没有可显示的事件"
 
-#: ../../mod/admin.php:641
-msgid "Old style 'Share'"
-msgstr "老款式'分享'"
+#: include/event.php:571
+msgid "l, F j"
+msgstr "l, F j"
 
-#: ../../mod/admin.php:641
-msgid "Deactivates the bbcode element 'share' for repeating items."
-msgstr "为重复的项目吧bbcode“share”代码使不活跃"
+#: include/event.php:593
+msgid "Edit event"
+msgstr "编项目"
 
-#: ../../mod/admin.php:642
-msgid "Hide help entry from navigation menu"
-msgstr "隐藏帮助在航行选单"
+#: include/event.php:594
+msgid "Delete event"
+msgstr "删除事件"
 
-#: ../../mod/admin.php:642
-msgid ""
-"Hides the menu entry for the Help pages from the navigation menu. You can "
-"still access it calling /help directly."
-msgstr "隐藏帮助项目在航行选单。您还能用它经过手动的输入「/help」"
+#: include/event.php:620 include/text.php:1609 include/text.php:1616
+msgid "link to source"
+msgstr "链接到来源"
 
-#: ../../mod/admin.php:643
-msgid "Single user instance"
-msgstr "å\8d\95ç\94¨æ\88·ç½\91ç«\99"
+#: include/event.php:878
+msgid "Export"
+msgstr "导å\87º"
 
-#: ../../mod/admin.php:643
-msgid "Make this instance multi-user or single-user for the named user"
-msgstr "å¼\84è¿\99ç½\91ç«\99å¤\9aç\94¨æ\88·æ\88\96å\8d\95ç\94¨æ\88·ä¸ºé\80\89æ\8b©ç\9a\84ç\94¨æ\88·"
+#: include/event.php:879
+msgid "Export calendar as ical"
+msgstr "导å\87ºæ\97¥å\8e\86为 ical"
 
-#: ../../mod/admin.php:644
-msgid "Maximum image size"
-msgstr "å\9b¾ç\89\87æ\9c\80大尺寸"
+#: include/event.php:880
+msgid "Export calendar as csv"
+msgstr "导å\87ºæ\97¥å\8e\86为 csv"
 
-#: ../../mod/admin.php:644
-msgid ""
-"Maximum size in bytes of uploaded images. Default is 0, which means no "
-"limits."
-msgstr "最多上传照相的字节。默认是零,意思是无限。"
+#: include/identity.php:46
+msgid "Requested account is not available."
+msgstr "要求的账户不可用。"
 
-#: ../../mod/admin.php:645
-msgid "Maximum image length"
-msgstr "最大图片大小"
+#: include/identity.php:55 mod/profile.php:23
+msgid "Requested profile is not available."
+msgstr "要求的简介联系不上的。"
 
-#: ../../mod/admin.php:645
-msgid ""
-"Maximum length in pixels of the longest side of uploaded images. Default is "
-"-1, which means no limits."
-msgstr "最多像素在上传图片的长度。默认-1,意思是无限。"
+#: include/identity.php:99 include/identity.php:322 include/identity.php:755
+msgid "Edit profile"
+msgstr "修改简介"
 
-#: ../../mod/admin.php:646
-msgid "JPEG image quality"
-msgstr "JPEG图片质量"
+#: include/identity.php:262
+msgid "Atom feed"
+msgstr ""
 
-#: ../../mod/admin.php:646
-msgid ""
-"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is "
-"100, which is full quality."
-msgstr "上传的JPEG被用这质量[0-100]保存。默认100,最高。"
+#: include/identity.php:293 include/nav.php:192
+msgid "Profiles"
+msgstr "简介"
 
-#: ../../mod/admin.php:648
-msgid "Register policy"
-msgstr "注册政策"
+#: include/identity.php:293
+msgid "Manage/edit profiles"
+msgstr "管理/修改简介"
 
-#: ../../mod/admin.php:649
-msgid "Maximum Daily Registrations"
-msgstr "一天最多注册"
+#: include/identity.php:298 include/identity.php:324 mod/profiles.php:785
+msgid "Change profile photo"
+msgstr "换简介照片"
 
-#: ../../mod/admin.php:649
-msgid ""
-"If registration is permitted above, this sets the maximum number of new user"
-" registrations to accept per day.  If register is set to closed, this "
-"setting has no effect."
-msgstr "如果注册上边许可的,这个选择一天最多新用户注册会接待。如果注册关闭了,这个设置没有印象。"
+#: include/identity.php:299 mod/profiles.php:786
+msgid "Create New Profile"
+msgstr "创造新的简介"
 
-#: ../../mod/admin.php:650
-msgid "Register text"
-msgstr "注册正文"
+#: include/identity.php:309 mod/profiles.php:775
+msgid "Profile Image"
+msgstr "简介图像"
 
-#: ../../mod/admin.php:650
-msgid "Will be displayed prominently on the registration page."
-msgstr "被显著的在注册页表示。"
+#: include/identity.php:312 mod/profiles.php:777
+msgid "visible to everybody"
+msgstr "给打假可见的"
 
-#: ../../mod/admin.php:651
-msgid "Accounts abandoned after x days"
-msgstr "账户丢弃X天后"
+#: include/identity.php:313 mod/profiles.php:682 mod/profiles.php:778
+msgid "Edit visibility"
+msgstr "修改能见度"
 
-#: ../../mod/admin.php:651
-msgid ""
-"Will not waste system resources polling external sites for abandonded "
-"accounts. Enter 0 for no time limit."
-msgstr "拒绝浪费系统资源看外网站找丢弃的账户。输入0为无时限。"
+#: include/identity.php:341 include/identity.php:642 mod/directory.php:137
+#: mod/notifications.php:253
+msgid "Gender:"
+msgstr "性别:"
 
-#: ../../mod/admin.php:652
-msgid "Allowed friend domains"
-msgstr "允许的朋友域"
+#: include/identity.php:344 include/identity.php:665 mod/directory.php:139
+msgid "Status:"
+msgstr "现状:"
 
-#: ../../mod/admin.php:652
-msgid ""
-"Comma separated list of domains which are allowed to establish friendships "
-"with this site. Wildcards are accepted. Empty to allow any domains"
-msgstr "逗号分隔的域名许根这个网站结友谊。通配符行。空的允许所有的域名。"
+#: include/identity.php:346 include/identity.php:682 mod/directory.php:141
+msgid "Homepage:"
+msgstr "主页:"
 
-#: ../../mod/admin.php:653
-msgid "Allowed email domains"
-msgstr "允许的电子邮件域"
+#: include/identity.php:348 include/identity.php:702 mod/directory.php:143
+#: mod/notifications.php:249 mod/contacts.php:661
+msgid "About:"
+msgstr "关于:"
 
-#: ../../mod/admin.php:653
-msgid ""
-"Comma separated list of domains which are allowed in email addresses for "
-"registrations to this site. Wildcards are accepted. Empty to allow any "
-"domains"
-msgstr "逗号分隔的域名可接受在邮件地址为这网站的注册。通配符行。空的允许所有的域名。"
+#: include/identity.php:350 mod/contacts.php:659
+msgid "XMPP:"
+msgstr ""
 
-#: ../../mod/admin.php:654
-msgid "Block public"
-msgstr "拦公开"
+#: include/identity.php:436 mod/notifications.php:261 mod/contacts.php:59
+msgid "Network:"
+msgstr "网络"
 
-#: ../../mod/admin.php:654
-msgid ""
-"Check to block public access to all otherwise public personal pages on this "
-"site unless you are currently logged in."
-msgstr "拦公开看什么否则空开的私页在这网站除了您登录的时候以外。"
+#: include/identity.php:465 include/identity.php:556
+msgid "g A l F d"
+msgstr "g A l d F"
 
-#: ../../mod/admin.php:655
-msgid "Force publish"
-msgstr "需要出版"
+#: include/identity.php:466 include/identity.php:557
+msgid "F d"
+msgstr "F d"
 
-#: ../../mod/admin.php:655
-msgid ""
-"Check to force all profiles on this site to be listed in the site directory."
-msgstr "让所有这网站的的简介表明在网站目录。"
+#: include/identity.php:518 include/identity.php:604
+msgid "[today]"
+msgstr "[今天]"
 
-#: ../../mod/admin.php:656
-msgid "Global directory update URL"
-msgstr "综合目录更新URL"
+#: include/identity.php:530
+msgid "Birthday Reminders"
+msgstr "提醒生日"
 
-#: ../../mod/admin.php:656
-msgid ""
-"URL to update the global directory. If this is not set, the global directory"
-" is completely unavailable to the application."
-msgstr "URL为更新综合目录。如果没有,这个应用用不了综合目录。"
+#: include/identity.php:531
+msgid "Birthdays this week:"
+msgstr "这周的生日:"
 
-#: ../../mod/admin.php:657
-msgid "Allow threaded items"
-msgstr "允许线绳项目"
+#: include/identity.php:591
+msgid "[No description]"
+msgstr "[无描述]"
 
-#: ../../mod/admin.php:657
-msgid "Allow infinite level threading for items on this site."
-msgstr "允许无限水平线绳为这网站的项目。"
+#: include/identity.php:618
+msgid "Event Reminders"
+msgstr "事件提醒"
 
-#: ../../mod/admin.php:658
-msgid "Private posts by default for new users"
-msgstr "新用户默认写私人文章"
+#: include/identity.php:619
+msgid "Events this week:"
+msgstr "这周的事件:"
 
-#: ../../mod/admin.php:658
-msgid ""
-"Set default post permissions for all new members to the default privacy "
-"group rather than public."
-msgstr "默认新用户文章批准使默认隐私组,没有公开。"
+#: include/identity.php:630 include/identity.php:759 include/identity.php:792
+#: include/nav.php:85 mod/newmember.php:20 mod/profperm.php:107
+#: mod/contacts.php:668 mod/contacts.php:870 view/theme/frio/theme.php:254
+msgid "Profile"
+msgstr "简介"
 
-#: ../../mod/admin.php:659
-msgid "Don't include post content in email notifications"
-msgstr "å\88«å\8c\85å\90«æ\96\87ç« å\86\85容å\9c¨é\82®ä»¶æ¶\88æ\81¯"
+#: include/identity.php:639 mod/settings.php:1283
+msgid "Full Name:"
+msgstr "å\85¨å\90\8dï¼\9a"
 
-#: ../../mod/admin.php:659
-msgid ""
-"Don't include the content of a post/comment/private message/etc. in the "
-"email notifications that are sent out from this site, as a privacy measure."
-msgstr "别包含文章/谈论/私消息/等的内容在文件消息被这个网站寄出,为了隐私。"
+#: include/identity.php:646
+msgid "j F, Y"
+msgstr "j F, Y"
 
-#: ../../mod/admin.php:660
-msgid "Disallow public access to addons listed in the apps menu."
-msgstr "不允许插件的公众使用权在应用选单。"
+#: include/identity.php:647
+msgid "j F"
+msgstr "j F"
 
-#: ../../mod/admin.php:660
-msgid ""
-"Checking this box will restrict addons listed in the apps menu to members "
-"only."
-msgstr "复选这个框为把应用选内插件限制仅成员"
+#: include/identity.php:661
+msgid "Age:"
+msgstr "年纪:"
 
-#: ../../mod/admin.php:661
-msgid "Don't embed private images in posts"
-msgstr "别嵌入私人图案在文章里"
+#: include/identity.php:674
+#, php-format
+msgid "for %1$d %2$s"
+msgstr "为%1$d %2$s"
 
-#: ../../mod/admin.php:661
-msgid ""
-"Don't replace locally-hosted private photos in posts with an embedded copy "
-"of the image. This means that contacts who receive posts containing private "
-"photos will have to authenticate and load each image, which may take a "
-"while."
-msgstr "别把复制嵌入的照相代替本网站的私人照相在文章里。结果是收包括私人照相的熟人要认证才卸载个张照片,会花许久。"
+#: include/identity.php:678 mod/profiles.php:701
+msgid "Sexual Preference:"
+msgstr "性取向:"
 
-#: ../../mod/admin.php:662
-msgid "Allow Users to set remote_self"
-msgstr "允许用户用遥远的自身"
+#: include/identity.php:686 mod/profiles.php:728
+msgid "Hometown:"
+msgstr "故乡:"
 
-#: ../../mod/admin.php:662
-msgid ""
-"With checking this, every user is allowed to mark every contact as a "
-"remote_self in the repair contact dialog. Setting this flag on a contact "
-"causes mirroring every posting of that contact in the users stream."
-msgstr "选择这个之后,用户们允许表明熟人当遥远的自身在熟人修理页。遥远的自身所有文章被复制到用户文章流。"
+#: include/identity.php:690 mod/follow.php:174 mod/notifications.php:251
+#: mod/contacts.php:663
+msgid "Tags:"
+msgstr "标签:"
 
-#: ../../mod/admin.php:663
-msgid "Block multiple registrations"
-msgstr "æ\8b¦ä¸\80人å¤\9a注å\86\8c"
+#: include/identity.php:694 mod/profiles.php:729
+msgid "Political Views:"
+msgstr "æ\94¿æ²»è§\82念ï¼\9a"
 
-#: ../../mod/admin.php:663
-msgid "Disallow users to register additional accounts for use as pages."
-msgstr "不允许用户注册别的账户为当页。"
+#: include/identity.php:698
+msgid "Religion:"
+msgstr "宗教:"
 
-#: ../../mod/admin.php:664
-msgid "OpenID support"
-msgstr "OpenID支持"
+#: include/identity.php:706
+msgid "Hobbies/Interests:"
+msgstr "爱好/兴趣"
 
-#: ../../mod/admin.php:664
-msgid "OpenID support for registration and logins."
-msgstr "OpenID支持注册和登录。"
+#: include/identity.php:710 mod/profiles.php:733
+msgid "Likes:"
+msgstr "喜欢:"
 
-#: ../../mod/admin.php:665
-msgid "Fullname check"
-msgstr "全名核实"
+#: include/identity.php:714 mod/profiles.php:734
+msgid "Dislikes:"
+msgstr "不喜欢:"
 
-#: ../../mod/admin.php:665
-msgid ""
-"Force users to register with a space between firstname and lastname in Full "
-"name, as an antispam measure"
-msgstr "让用户注册的时候放空格姓名中间,省得垃圾注册。"
+#: include/identity.php:718
+msgid "Contact information and Social Networks:"
+msgstr "熟人消息和社会化网络"
 
-#: ../../mod/admin.php:666
-msgid "UTF-8 Regular expressions"
-msgstr "UTF-8正则表达式"
+#: include/identity.php:722
+msgid "Musical interests:"
+msgstr "音乐兴趣:"
 
-#: ../../mod/admin.php:666
-msgid "Use PHP UTF8 regular expressions"
-msgstr "用PHP UTF8正则表达式"
+#: include/identity.php:726
+msgid "Books, literature:"
+msgstr "书,文学"
 
-#: ../../mod/admin.php:667
-msgid "Community Page Style"
-msgstr "社ä¼\9a页款å¼\8f"
+#: include/identity.php:730
+msgid "Television:"
+msgstr "ç\94µè§\86ï¼\9a"
 
-#: ../../mod/admin.php:667
-msgid ""
-"Type of community page to show. 'Global community' shows every public "
-"posting from an open distributed network that arrived on this server."
-msgstr "社会页种类将显示。“全球社会”显示所有公开的文章从某网络到达本服务器。"
+#: include/identity.php:734
+msgid "Film/dance/culture/entertainment:"
+msgstr "电影/跳舞/文化/娱乐:"
 
-#: ../../mod/admin.php:668
-msgid "Posts per user on community page"
-msgstr "个用户文章数量在社会页"
+#: include/identity.php:738
+msgid "Love/Romance:"
+msgstr "爱情/浪漫"
 
-#: ../../mod/admin.php:668
-msgid ""
-"The maximum number of posts per user on the community page. (Not valid for "
-"'Global Community')"
-msgstr "一个用户最多文章在社会页。(无效在“全球社会”)"
+#: include/identity.php:742
+msgid "Work/employment:"
+msgstr "工作"
 
-#: ../../mod/admin.php:669
-msgid "Enable OStatus support"
-msgstr "使OStatus支持可用"
+#: include/identity.php:746
+msgid "School/education:"
+msgstr "学院/教育"
 
-#: ../../mod/admin.php:669
-msgid ""
-"Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All "
-"communications in OStatus are public, so privacy warnings will be "
-"occasionally displayed."
-msgstr "提供OStatus(StatusNet,GNU Social,等)兼容性。所有OStatus的交通是公开的,所以私事警告偶尔来表示。"
+#: include/identity.php:751
+msgid "Forums:"
+msgstr ""
 
-#: ../../mod/admin.php:670
-msgid "OStatus conversation completion interval"
-msgstr "OStatus对话完成间隔"
+#: include/identity.php:760 mod/events.php:510
+msgid "Basic"
+msgstr "基本"
 
-#: ../../mod/admin.php:670
-msgid ""
-"How often shall the poller check for new entries in OStatus conversations? "
-"This can be a very ressource task."
-msgstr "喂器要多久查一次新文章在OStatus交流?这会花许多系统资源。"
+#: include/identity.php:761 mod/events.php:511 mod/admin.php:1158
+#: mod/contacts.php:899
+msgid "Advanced"
+msgstr "高级"
 
-#: ../../mod/admin.php:671
-msgid "Enable Diaspora support"
-msgstr "使Diaspora支持能够"
+#: include/identity.php:784 include/nav.php:84 mod/contacts.php:666
+#: mod/contacts.php:862 view/theme/frio/theme.php:253
+msgid "Status"
+msgstr "状态"
 
-#: ../../mod/admin.php:671
-msgid "Provide built-in Diaspora network compatibility."
-msgstr "提供内装Diaspora网络兼容。"
+#: include/identity.php:787 mod/follow.php:182 mod/contacts.php:865
+#: mod/unfollow.php:133
+msgid "Status Messages and Posts"
+msgstr "现状通知和文章"
 
-#: ../../mod/admin.php:672
-msgid "Only allow Friendica contacts"
-msgstr "只许Friendica熟人"
+#: include/identity.php:795 mod/contacts.php:873
+msgid "Profile Details"
+msgstr "简介内容"
 
-#: ../../mod/admin.php:672
-msgid ""
-"All contacts must use Friendica protocols. All other built-in communication "
-"protocols disabled."
-msgstr "所有的熟人要用Friendica协议 。别的内装的沟通协议都已停用。"
+#: include/identity.php:800 include/nav.php:86 mod/fbrowser.php:34
+#: view/theme/frio/theme.php:255
+msgid "Photos"
+msgstr "照片"
 
-#: ../../mod/admin.php:673
-msgid "Verify SSL"
-msgstr "证实"
+#: include/identity.php:803 mod/photos.php:96
+msgid "Photo Albums"
+msgstr "相册"
 
-#: ../../mod/admin.php:673
-msgid ""
-"If you wish, you can turn on strict certificate checking. This will mean you"
-" cannot connect (at all) to self-signed SSL sites."
-msgstr "你想的话,您会使严格证书核实可用。意思是您不能根自签的SSL网站交流。"
+#: include/identity.php:808 include/identity.php:811 include/nav.php:87
+#: view/theme/frio/theme.php:256
+msgid "Videos"
+msgstr "视频"
 
-#: ../../mod/admin.php:674
-msgid "Proxy user"
-msgstr "代理用户"
+#: include/identity.php:820 include/identity.php:831 include/nav.php:88
+#: include/nav.php:152 mod/cal.php:273 mod/events.php:378
+#: view/theme/frio/theme.php:257 view/theme/frio/theme.php:261
+msgid "Events"
+msgstr "事件"
 
-#: ../../mod/admin.php:675
-msgid "Proxy URL"
-msgstr "代理URL"
+#: include/identity.php:823 include/identity.php:834 include/nav.php:152
+#: view/theme/frio/theme.php:261
+msgid "Events and Calendar"
+msgstr "事件和日历"
 
-#: ../../mod/admin.php:676
-msgid "Network timeout"
-msgstr "ç½\91ç»\9cè¶\85æ\97"
+#: include/identity.php:842 mod/notes.php:49
+msgid "Personal Notes"
+msgstr "ç§\81人便æ\9d¡"
 
-#: ../../mod/admin.php:676
-msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
-msgstr "输入秒数。输入零为无限(不推荐的)。"
+#: include/identity.php:845
+msgid "Only You Can See This"
+msgstr "只有你可以看这个"
 
-#: ../../mod/admin.php:677
-msgid "Delivery interval"
-msgstr "传送间隔"
+#: include/identity.php:853 include/identity.php:856 include/nav.php:131
+#: include/nav.php:195 include/text.php:1101 mod/viewcontacts.php:124
+#: mod/contacts.php:821 mod/contacts.php:882 view/theme/frio/theme.php:264
+msgid "Contacts"
+msgstr "联系人"
 
-#: ../../mod/admin.php:677
-msgid ""
-"Delay background delivery processes by this many seconds to reduce system "
-"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 "
-"for large dedicated servers."
-msgstr "把背景传送过程耽误这多秒为减少系统工作量。推荐:4-5在共用服务器,2-3在私人服务器。0-1在大专门服务器。"
+#: include/like.php:45
+#, php-format
+msgid "%1$s is attending %2$s's %3$s"
+msgstr ""
 
-#: ../../mod/admin.php:678
-msgid "Poll interval"
-msgstr "检查时间"
+#: include/like.php:50
+#, php-format
+msgid "%1$s is not attending %2$s's %3$s"
+msgstr ""
 
-#: ../../mod/admin.php:678
-msgid ""
-"Delay background polling processes by this many seconds to reduce system "
-"load. If 0, use delivery interval."
-msgstr "把背景检查行程耽误这数秒为减少系统负荷。如果是0,用发布时间。"
+#: include/like.php:55
+#, php-format
+msgid "%1$s may attend %2$s's %3$s"
+msgstr ""
 
-#: ../../mod/admin.php:679
-msgid "Maximum Load Average"
-msgstr "最大负荷平均"
+#: include/nav.php:38 mod/navigation.php:22
+msgid "Nothing new here"
+msgstr "这里没有什么新的"
 
-#: ../../mod/admin.php:679
-msgid ""
-"Maximum system load before delivery and poll processes are deferred - "
-"default 50."
-msgstr "系统负荷平均以上转播和检查行程会被耽误-默认50。"
+#: include/nav.php:42 mod/navigation.php:26
+msgid "Clear notifications"
+msgstr "清理出通知"
 
-#: ../../mod/admin.php:681
-msgid "Use MySQL full text engine"
-msgstr "用MySQL全正文机车"
+#: include/nav.php:43 include/text.php:1094
+msgid "@name, !forum, #tags, content"
+msgstr ""
 
-#: ../../mod/admin.php:681
-msgid ""
-"Activates the full text engine. Speeds up search - but can only search for "
-"four and more characters."
-msgstr "使全正文机车可用。把搜索催-可是只能搜索4字以上"
+#: include/nav.php:81 view/theme/frio/theme.php:250 boot.php:869
+msgid "Logout"
+msgstr "注销"
 
-#: ../../mod/admin.php:682
-msgid "Suppress Language"
-msgstr "封锁语言"
+#: include/nav.php:81 view/theme/frio/theme.php:250
+msgid "End this session"
+msgstr "结束这段时间"
 
-#: ../../mod/admin.php:682
-msgid "Suppress language information in meta information about a posting."
-msgstr "遗漏语言消息从文章的描述"
+#: include/nav.php:84 include/nav.php:164 view/theme/frio/theme.php:253
+msgid "Your posts and conversations"
+msgstr "你的消息和交谈"
 
-#: ../../mod/admin.php:683
-msgid "Suppress Tags"
-msgstr "压制标签"
+#: include/nav.php:85 view/theme/frio/theme.php:254
+msgid "Your profile page"
+msgstr "你的简介页"
 
-#: ../../mod/admin.php:683
-msgid "Suppress showing a list of hashtags at the end of the posting."
-msgstr "别显示主題標籤列表在文章后面。"
+#: include/nav.php:86 view/theme/frio/theme.php:255
+msgid "Your photos"
+msgstr "你的照片"
 
-#: ../../mod/admin.php:684
-msgid "Path to item cache"
-msgstr "路线到项目缓存"
+#: include/nav.php:87 view/theme/frio/theme.php:256
+msgid "Your videos"
+msgstr "你的视频"
 
-#: ../../mod/admin.php:685
-msgid "Cache duration in seconds"
-msgstr "缓存时间秒"
+#: include/nav.php:88 view/theme/frio/theme.php:257
+msgid "Your events"
+msgstr "你的项目"
 
-#: ../../mod/admin.php:685
-msgid ""
-"How long should the cache files be hold? Default value is 86400 seconds (One"
-" day). To disable the item cache, set the value to -1."
-msgstr "高速缓存要存文件多久?默认是86400秒钟(一天)。停用高速缓存,输入-1。"
+#: include/nav.php:89
+msgid "Personal notes"
+msgstr "私人的便条"
 
-#: ../../mod/admin.php:686
-msgid "Maximum numbers of comments per post"
-msgstr "文件最多评论"
+#: include/nav.php:89
+msgid "Your personal notes"
+msgstr "你的私人便条"
 
-#: ../../mod/admin.php:686
-msgid "How much comments should be shown for each post? Default value is 100."
-msgstr ""
+#: include/nav.php:98 mod/bookmarklet.php:15 boot.php:870
+msgid "Login"
+msgstr "登录"
 
-#: ../../mod/admin.php:687
-msgid "Path for lock file"
-msgstr "路线到锁文件"
+#: include/nav.php:98
+msgid "Sign in"
+msgstr "登记"
 
-#: ../../mod/admin.php:688
-msgid "Temp path"
-msgstr "临æ\97¶æ\96\87件路线"
+#: include/nav.php:108
+msgid "Home Page"
+msgstr "主页"
 
-#: ../../mod/admin.php:689
-msgid "Base path to installation"
-msgstr "基础安装路线"
+#: include/nav.php:112 mod/register.php:293 boot.php:846
+msgid "Register"
+msgstr "注册"
 
-#: ../../mod/admin.php:690
-msgid "Disable picture proxy"
-msgstr "停用图片代理"
+#: include/nav.php:112
+msgid "Create an account"
+msgstr "注册"
 
-#: ../../mod/admin.php:690
-msgid ""
-"The picture proxy increases performance and privacy. It shouldn't be used on"
-" systems with very low bandwith."
-msgstr ""
+#: include/nav.php:118 mod/help.php:51 view/theme/vier/theme.php:292
+msgid "Help"
+msgstr "帮助"
 
-#: ../../mod/admin.php:691
-msgid "Enable old style pager"
-msgstr ""
+#: include/nav.php:118
+msgid "Help and documentation"
+msgstr "帮助证件"
 
-#: ../../mod/admin.php:691
-msgid ""
-"The old style pager has page numbers but slows down massively the page "
-"speed."
-msgstr ""
+#: include/nav.php:122
+msgid "Apps"
+msgstr "应用程序"
 
-#: ../../mod/admin.php:692
-msgid "Only search in tags"
-msgstr ""
+#: include/nav.php:122
+msgid "Addon applications, utilities, games"
+msgstr "可加的应用,设施,游戏"
 
-#: ../../mod/admin.php:692
-msgid "On large systems the text search can slow down the system extremely."
-msgstr ""
+#: include/nav.php:126 include/text.php:1091 mod/search.php:145
+msgid "Search"
+msgstr "搜索"
 
-#: ../../mod/admin.php:694
-msgid "New base url"
-msgstr "æ\96°å\9fºç¡\80URL"
+#: include/nav.php:126
+msgid "Search site content"
+msgstr "æ\90\9cç´¢ç½\91ç«\99å\86\85容"
 
-#: ../../mod/admin.php:711
-msgid "Update has been marked successful"
-msgstr "更新当成功标签了"
+#: include/nav.php:129 include/text.php:1099
+msgid "Full Text"
+msgstr "全文"
 
-#: ../../mod/admin.php:719
-#, php-format
-msgid "Database structure update %s was successfully applied."
-msgstr ""
+#: include/nav.php:130 include/text.php:1100
+msgid "Tags"
+msgstr "标签:"
 
-#: ../../mod/admin.php:722
-#, php-format
-msgid "Executing of database structure update %s failed with error: %s"
-msgstr ""
+#: include/nav.php:146 include/nav.php:148 mod/community.php:31
+msgid "Community"
+msgstr "社会"
 
-#: ../../mod/admin.php:734
-#, php-format
-msgid "Executing %s failed with error: %s"
-msgstr ""
+#: include/nav.php:146
+msgid "Conversations on this site"
+msgstr "这个网站的交谈"
 
-#: ../../mod/admin.php:737
-#, php-format
-msgid "Update %s was successfully applied."
-msgstr "把%s更新成功地实行。"
+#: include/nav.php:148
+msgid "Conversations on the network"
+msgstr "网络上的对话"
 
-#: ../../mod/admin.php:741
-#, php-format
-msgid "Update %s did not return a status. Unknown if it succeeded."
-msgstr "%s更新没回答现状。不知道是否成功。"
+#: include/nav.php:155
+msgid "Directory"
+msgstr "名录"
 
-#: ../../mod/admin.php:743
-#, php-format
-msgid "There was no additional update function %s that needed to be called."
-msgstr ""
+#: include/nav.php:155
+msgid "People directory"
+msgstr "人物名录"
 
-#: ../../mod/admin.php:762
-msgid "No failed updates."
-msgstr "没有不通过地更新。"
+#: include/nav.php:157
+msgid "Information"
+msgstr "资料"
 
-#: ../../mod/admin.php:763
-msgid "Check database structure"
-msgstr ""
+#: include/nav.php:157
+msgid "Information about this friendica instance"
+msgstr "资料关于这个Friendica服务器"
 
-#: ../../mod/admin.php:768
-msgid "Failed Updates"
-msgstr "没é\80\9aè¿\87ç\9a\84æ\9b´æ\96°"
+#: include/nav.php:161 view/theme/frio/theme.php:260
+msgid "Conversations from your friends"
+msgstr "æ\9d¥è\87ªä½ ç\9a\84æ\9c\8bå\8f\8b们ç\9a\84交è°\88"
 
-#: ../../mod/admin.php:769
-msgid ""
-"This does not include updates prior to 1139, which did not return a status."
-msgstr "这个不包括1139号更新之前,它们没回答装线。"
+#: include/nav.php:162
+msgid "Network Reset"
+msgstr "网络重设"
 
-#: ../../mod/admin.php:770
-msgid "Mark success (if update was manually applied)"
-msgstr "标注成功(如果手动地把更新实行了)"
+#: include/nav.php:162
+msgid "Load Network page with no filters"
+msgstr "表示网络页无滤器"
 
-#: ../../mod/admin.php:771
-msgid "Attempt to execute this update step automatically"
-msgstr "试图自动地把这步更新实行"
+#: include/nav.php:169
+msgid "Friend Requests"
+msgstr "友谊邀请"
 
-#: ../../mod/admin.php:803
-#, php-format
-msgid ""
-"\n"
-"\t\t\tDear %1$s,\n"
-"\t\t\t\tthe administrator of %2$s has set up an account for you."
-msgstr ""
+#: include/nav.php:172 mod/notifications.php:99
+msgid "Notifications"
+msgstr "通知"
 
-#: ../../mod/admin.php:806
-#, php-format
-msgid ""
-"\n"
-"\t\t\tThe login details are as follows:\n"
-"\n"
-"\t\t\tSite Location:\t%1$s\n"
-"\t\t\tLogin Name:\t\t%2$s\n"
-"\t\t\tPassword:\t\t%3$s\n"
-"\n"
-"\t\t\tYou may change your password from your account \"Settings\" page after logging\n"
-"\t\t\tin.\n"
-"\n"
-"\t\t\tPlease take a few moments to review the other account settings on that page.\n"
-"\n"
-"\t\t\tYou may also wish to add some basic information to your default profile\n"
-"\t\t\t(on the \"Profiles\" page) so that other people can easily find you.\n"
-"\n"
-"\t\t\tWe recommend setting your full name, adding a profile photo,\n"
-"\t\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n"
-"\t\t\tperhaps what country you live in; if you do not wish to be more specific\n"
-"\t\t\tthan that.\n"
-"\n"
-"\t\t\tWe fully respect your right to privacy, and none of these items are necessary.\n"
-"\t\t\tIf you are new and do not know anybody here, they may help\n"
-"\t\t\tyou to make some new and interesting friends.\n"
-"\n"
-"\t\t\tThank you and welcome to %4$s."
-msgstr ""
+#: include/nav.php:173
+msgid "See all notifications"
+msgstr "看所有的通知"
 
-#: ../../mod/admin.php:838 ../../include/user.php:413
-#, php-format
-msgid "Registration details for %s"
-msgstr "注册信息为%s"
+#: include/nav.php:174 mod/settings.php:903
+msgid "Mark as seen"
+msgstr "标注看过"
 
-#: ../../mod/admin.php:850
-#, php-format
-msgid "%s user blocked/unblocked"
-msgid_plural "%s users blocked/unblocked"
-msgstr[0] "%s用户拦/不拦了"
+#: include/nav.php:174
+msgid "Mark all system notifications seen"
+msgstr "记号各系统通知看过的"
 
-#: ../../mod/admin.php:857
-#, php-format
-msgid "%s user deleted"
-msgid_plural "%s users deleted"
-msgstr[0] "%s用户删除了"
+#: include/nav.php:178 mod/message.php:180 view/theme/frio/theme.php:262
+msgid "Messages"
+msgstr "消息"
 
-#: ../../mod/admin.php:896
-#, php-format
-msgid "User '%s' deleted"
-msgstr "用户「%s」删除了"
+#: include/nav.php:178 view/theme/frio/theme.php:262
+msgid "Private mail"
+msgstr "私人的邮件"
 
-#: ../../mod/admin.php:904
-#, php-format
-msgid "User '%s' unblocked"
-msgstr "用户「%s」无拦了"
+#: include/nav.php:179
+msgid "Inbox"
+msgstr "收件箱"
 
-#: ../../mod/admin.php:904
-#, php-format
-msgid "User '%s' blocked"
-msgstr "用户「%s」拦了"
+#: include/nav.php:180
+msgid "Outbox"
+msgstr "发件箱"
 
-#: ../../mod/admin.php:999
-msgid "Add User"
-msgstr "æ·»å\8a ç\94¨æ\88·"
+#: include/nav.php:181 mod/message.php:19
+msgid "New Message"
+msgstr "æ\96°ç\9a\84æ¶\88æ\81¯"
 
-#: ../../mod/admin.php:1000
-msgid "select all"
-msgstr "都选"
+#: include/nav.php:184
+msgid "Manage"
+msgstr "代用户"
 
-#: ../../mod/admin.php:1001
-msgid "User registrations waiting for confirm"
-msgstr "ç\94¨æ\88·æ³¨å\86\8cç­\89å¾\85确认"
+#: include/nav.php:184
+msgid "Manage other pages"
+msgstr "管ç\90\86å\88«ç\9a\84页"
 
-#: ../../mod/admin.php:1002
-msgid "User waiting for permanent deletion"
-msgstr "用户等待长久删除"
+#: include/nav.php:187 mod/settings.php:84
+msgid "Delegations"
+msgstr "代表"
 
-#: ../../mod/admin.php:1003
-msgid "Request date"
-msgstr "要求日期"
+#: include/nav.php:187 mod/delegate.php:130
+msgid "Delegate Page Management"
+msgstr "页代表管理"
 
-#: ../../mod/admin.php:1003 ../../mod/admin.php:1015 ../../mod/admin.php:1016
-#: ../../mod/admin.php:1031 ../../include/contact_selectors.php:79
-#: ../../include/contact_selectors.php:86
-msgid "Email"
-msgstr "电子邮件"
+#: include/nav.php:189 mod/newmember.php:15 mod/settings.php:114
+#: mod/admin.php:1716 mod/admin.php:1992 view/theme/frio/theme.php:263
+msgid "Settings"
+msgstr "配置"
 
-#: ../../mod/admin.php:1004
-msgid "No registrations."
-msgstr "没有注册。"
+#: include/nav.php:189 view/theme/frio/theme.php:263
+msgid "Account settings"
+msgstr "帐户配置"
 
-#: ../../mod/admin.php:1006
-msgid "Deny"
-msgstr "否定"
+#: include/nav.php:192
+msgid "Manage/Edit Profiles"
+msgstr "管理/编辑简介"
 
-#: ../../mod/admin.php:1010
-msgid "Site admin"
-msgstr "ç½\91ç«\99管ç\90\86å\91\98"
+#: include/nav.php:195 view/theme/frio/theme.php:264
+msgid "Manage/edit friends and contacts"
+msgstr "管ç\90\86/ç¼\96æ\9c\8bå\8f\8b们å\92\8cç\86\9f人们"
 
-#: ../../mod/admin.php:1011
-msgid "Account expired"
-msgstr "å¸\90æ\88·è¿\87æ\9c\9fäº\86"
+#: include/nav.php:200 mod/admin.php:203
+msgid "Admin"
+msgstr "管ç\90\86"
 
-#: ../../mod/admin.php:1014
-msgid "New User"
-msgstr "新用户"
+#: include/nav.php:200
+msgid "Site setup and configuration"
+msgstr "网站开办和配置"
 
-#: ../../mod/admin.php:1015 ../../mod/admin.php:1016
-msgid "Register date"
-msgstr "注册日期"
+#: include/nav.php:203
+msgid "Navigation"
+msgstr "航行"
 
-#: ../../mod/admin.php:1015 ../../mod/admin.php:1016
-msgid "Last login"
-msgstr "上次登录"
+#: include/nav.php:203
+msgid "Site map"
+msgstr "网站地图"
 
-#: ../../mod/admin.php:1015 ../../mod/admin.php:1016
-msgid "Last item"
-msgstr "上项目"
+#: include/oembed.php:254
+msgid "Embedded content"
+msgstr "嵌入内容"
 
-#: ../../mod/admin.php:1015
-msgid "Deleted since"
-msgstr "å\88 é\99¤ä»\8e"
+#: include/oembed.php:262
+msgid "Embedding disabled"
+msgstr "åµ\8cå\85¥å·²å\81\9cç\94¨"
 
-#: ../../mod/admin.php:1016 ../../mod/settings.php:36
-msgid "Account"
-msgstr "帐户"
+#: include/plugin.php:519 include/plugin.php:521
+msgid "Click here to upgrade."
+msgstr "这里点击为更新。"
 
-#: ../../mod/admin.php:1018
-msgid ""
-"Selected users will be deleted!\\n\\nEverything these users had posted on "
-"this site will be permanently deleted!\\n\\nAre you sure?"
-msgstr "特定的用户被删除!\\n\\n什么这些用户放在这个网站被永远删除!\\n\\n您肯定吗?"
+#: include/plugin.php:528
+msgid "This action exceeds the limits set by your subscription plan."
+msgstr "这个行动超过您订阅的限制。"
 
-#: ../../mod/admin.php:1019
-msgid ""
-"The user {0} will be deleted!\\n\\nEverything this user has posted on this "
-"site will be permanently deleted!\\n\\nAre you sure?"
-msgstr "用户{0}将被删除!\\n\\n什么这个用户放在这个网站被永远删除!\\n\\n您肯定吗?"
+#: include/plugin.php:533
+msgid "This action is not available under your subscription plan."
+msgstr "这个行动在您的订阅不可用的。"
 
-#: ../../mod/admin.php:1029
-msgid "Name of the new user."
-msgstr "æ\96°ç\94¨æ\88·ç\9a\84å\90\8d"
+#: include/security.php:64
+msgid "Welcome "
+msgstr "欢è¿\8e"
 
-#: ../../mod/admin.php:1030
-msgid "Nickname"
-msgstr "昵称"
+#: include/security.php:65
+msgid "Please upload a profile photo."
+msgstr "请上传一张简介照片"
 
-#: ../../mod/admin.php:1030
-msgid "Nickname of the new user."
-msgstr "æ\96°ç\94¨æ\88·ç\9a\84æ\98µç§°"
+#: include/security.php:67
+msgid "Welcome back "
+msgstr "欢è¿\8eå½\92æ\9d¥"
 
-#: ../../mod/admin.php:1031
-msgid "Email address of the new user."
-msgstr "新用户的邮件地址"
+#: include/security.php:424
+msgid ""
+"The form security token was not correct. This probably happened because the "
+"form has been opened for too long (>3 hours) before submitting it."
+msgstr "表格安全令牌不对。最可能因为表格开着太久(三个小时以上)提交前。"
 
-#: ../../mod/admin.php:1064
-#, php-format
-msgid "Plugin %s disabled."
-msgstr "使插件%s已停用。"
+#: include/text.php:315
+msgid "newer"
+msgstr "更新"
 
-#: ../../mod/admin.php:1068
-#, php-format
-msgid "Plugin %s enabled."
-msgstr "使插件%s能用。"
+#: include/text.php:316
+msgid "older"
+msgstr "更旧"
 
-#: ../../mod/admin.php:1078 ../../mod/admin.php:1294
-msgid "Disable"
-msgstr "停用"
+#: include/text.php:321
+msgid "first"
+msgstr "首先"
 
-#: ../../mod/admin.php:1080 ../../mod/admin.php:1296
-msgid "Enable"
-msgstr "使è\83½ç\94¨"
+#: include/text.php:322
+msgid "prev"
+msgstr "ä¸\8a个"
 
-#: ../../mod/admin.php:1103 ../../mod/admin.php:1324
-msgid "Toggle"
-msgstr "肘节"
+#: include/text.php:356
+msgid "next"
+msgstr "下个"
 
-#: ../../mod/admin.php:1111 ../../mod/admin.php:1334
-msgid "Author: "
-msgstr "作家:"
+#: include/text.php:357
+msgid "last"
+msgstr "最后"
 
-#: ../../mod/admin.php:1112 ../../mod/admin.php:1335
-msgid "Maintainer: "
-msgstr "保持员:"
+#: include/text.php:411
+msgid "Loading more entries..."
+msgstr "没有项目..."
 
-#: ../../mod/admin.php:1254
-msgid "No themes found."
-msgstr "找不到主题。"
+#: include/text.php:412
+msgid "The end"
+msgstr ""
 
-#: ../../mod/admin.php:1316
-msgid "Screenshot"
-msgstr "æ\88ªå\9b¾"
+#: include/text.php:965
+msgid "No contacts"
+msgstr "没æ\9c\89ç\86\9f人"
 
-#: ../../mod/admin.php:1362
-msgid "[Experimental]"
-msgstr "[试验]"
+#: include/text.php:989
+#, php-format
+msgid "%d Contact"
+msgid_plural "%d Contacts"
+msgstr[0] "%d熟人"
 
-#: ../../mod/admin.php:1363
-msgid "[Unsupported]"
-msgstr "[没支持]"
+#: include/text.php:1002
+msgid "View Contacts"
+msgstr "看熟人"
 
-#: ../../mod/admin.php:1390
-msgid "Log settings updated."
-msgstr "日志设置更新了。"
+#: include/text.php:1092 mod/filer.php:32 mod/notes.php:64
+#: mod/editpost.php:102
+msgid "Save"
+msgstr "保存"
 
-#: ../../mod/admin.php:1446
-msgid "Clear"
-msgstr "æ¸\85ç\90\86å\87º"
+#: include/text.php:1153
+msgid "poke"
+msgstr "æ\88³"
 
-#: ../../mod/admin.php:1452
-msgid "Enable Debugging"
-msgstr "æ\8a\8aè°\83è¯\95使å\8f¯ç\94¨ç\9a\84"
+#: include/text.php:1153
+msgid "poked"
+msgstr "æ\88³äº\86"
 
-#: ../../mod/admin.php:1453
-msgid "Log file"
-msgstr "记录文件"
+#: include/text.php:1154
+msgid "ping"
+msgstr ""
 
-#: ../../mod/admin.php:1453
-msgid ""
-"Must be writable by web server. Relative to your Friendica top-level "
-"directory."
-msgstr "必要被网页服务器可写的。相对Friendica主文件夹。"
+#: include/text.php:1154
+msgid "pinged"
+msgstr "砰了"
 
-#: ../../mod/admin.php:1454
-msgid "Log level"
-msgstr "è®°å½\95æ°´å¹³"
+#: include/text.php:1155
+msgid "prod"
+msgstr "æ\9f\94æ\88³"
 
-#: ../../mod/admin.php:1504
-msgid "Close"
-msgstr "关闭"
+#: include/text.php:1155
+msgid "prodded"
+msgstr "柔戳了"
 
-#: ../../mod/admin.php:1510
-msgid "FTP Host"
-msgstr "FTP主机"
+#: include/text.php:1156
+msgid "slap"
+msgstr "掌击"
 
-#: ../../mod/admin.php:1511
-msgid "FTP Path"
-msgstr "FTP目录"
+#: include/text.php:1156
+msgid "slapped"
+msgstr "掌击了"
 
-#: ../../mod/admin.php:1512
-msgid "FTP User"
-msgstr "FTP用户"
+#: include/text.php:1157
+msgid "finger"
+msgstr ""
 
-#: ../../mod/admin.php:1513
-msgid "FTP Password"
-msgstr "FTP密码"
+#: include/text.php:1157
+msgid "fingered"
+msgstr "指了"
 
-#: ../../mod/network.php:142
-msgid "Search Results For:"
-msgstr "搜索结果为:"
+#: include/text.php:1158
+msgid "rebuff"
+msgstr "窝脖儿"
 
-#: ../../mod/network.php:185 ../../mod/search.php:21
-msgid "Remove term"
-msgstr "删除关键字"
+#: include/text.php:1158
+msgid "rebuffed"
+msgstr "窝脖儿了"
 
-#: ../../mod/network.php:194 ../../mod/search.php:30
-#: ../../include/features.php:42
-msgid "Saved Searches"
-msgstr "保存的搜索"
+#: include/text.php:1172
+msgid "happy"
+msgstr "开心"
 
-#: ../../mod/network.php:195 ../../include/group.php:275
-msgid "add"
-msgstr "添加"
+#: include/text.php:1173
+msgid "sad"
+msgstr "伤心"
 
-#: ../../mod/network.php:356
-msgid "Commented Order"
-msgstr "è¯\84论æ\97¶é\97´é¡ºåº\8f"
+#: include/text.php:1174
+msgid "mellow"
+msgstr "è½»æ\9d¾"
 
-#: ../../mod/network.php:359
-msgid "Sort by Comment Date"
-msgstr "按评论日期顺序排列"
+#: include/text.php:1175
+msgid "tired"
+msgstr ""
 
-#: ../../mod/network.php:362
-msgid "Posted Order"
-msgstr "è´´æ\97¶é\97´é¡ºåº\8f"
+#: include/text.php:1176
+msgid "perky"
+msgstr "æ\9cºæ\95\8f"
 
-#: ../../mod/network.php:365
-msgid "Sort by Post Date"
-msgstr "按发布日期顺序排列"
+#: include/text.php:1177
+msgid "angry"
+msgstr "生气"
 
-#: ../../mod/network.php:374
-msgid "Posts that mention or involve you"
-msgstr "提或关您的文章"
+#: include/text.php:1178
+msgid "stupified"
+msgstr "麻醉"
 
-#: ../../mod/network.php:380
-msgid "New"
-msgstr ""
+#: include/text.php:1179
+msgid "puzzled"
+msgstr "纳闷"
 
-#: ../../mod/network.php:383
-msgid "Activity Stream - by date"
-msgstr "æ´»å\8a¨æ²³æµ\81ï¼\8dæ\8c\89æ\97¥æ\9c\9f"
+#: include/text.php:1180
+msgid "interested"
+msgstr "æ\9c\89å\85´è¶£"
 
-#: ../../mod/network.php:389
-msgid "Shared Links"
-msgstr "共同环节"
+#: include/text.php:1181
+msgid "bitter"
+msgstr ""
 
-#: ../../mod/network.php:392
-msgid "Interesting Links"
-msgstr "有意思的超链接"
+#: include/text.php:1182
+msgid "cheerful"
+msgstr "快乐"
 
-#: ../../mod/network.php:398
-msgid "Starred"
-msgstr "被星"
+#: include/text.php:1183
+msgid "alive"
+msgstr "活着"
 
-#: ../../mod/network.php:401
-msgid "Favourite Posts"
-msgstr "最喜欢的文章"
+#: include/text.php:1184
+msgid "annoyed"
+msgstr "被烦恼"
 
-#: ../../mod/network.php:463
-#, php-format
-msgid "Warning: This group contains %s member from an insecure network."
-msgid_plural ""
-"Warning: This group contains %s members from an insecure network."
-msgstr[0] "警告:这个组bao han%s成员从不安全网络。"
+#: include/text.php:1185
+msgid "anxious"
+msgstr "心焦"
 
-#: ../../mod/network.php:466
-msgid "Private messages to this group are at risk of public disclosure."
-msgstr "私人通信给这组回被公开。"
+#: include/text.php:1186
+msgid "cranky"
+msgstr "不稳"
 
-#: ../../mod/network.php:520 ../../mod/content.php:119
-msgid "No such group"
-msgstr "没有这个组"
+#: include/text.php:1187
+msgid "disturbed"
+msgstr "不安"
 
-#: ../../mod/network.php:537 ../../mod/content.php:130
-msgid "Group is empty"
-msgstr "组没有成员"
+#: include/text.php:1188
+msgid "frustrated"
+msgstr "被作梗"
 
-#: ../../mod/network.php:544 ../../mod/content.php:134
-msgid "Group: "
-msgstr "组:"
+#: include/text.php:1189
+msgid "motivated"
+msgstr "士气高涨"
 
-#: ../../mod/network.php:554
-msgid "Contact: "
-msgstr "熟人:"
+#: include/text.php:1190
+msgid "relaxed"
+msgstr "轻松"
 
-#: ../../mod/network.php:556
-msgid "Private messages to this person are at risk of public disclosure."
-msgstr "ç§\81人é\80\9aä¿¡ç»\99è¿\99个人å\9b\9e被å\85¬å¼\80ã\80\82"
+#: include/text.php:1191
+msgid "surprised"
+msgstr "诧å¼\82"
 
-#: ../../mod/network.php:561
-msgid "Invalid contact."
-msgstr "无效熟人。"
+#: include/text.php:1408 mod/videos.php:389
+msgid "View Video"
+msgstr "看视频"
 
-#: ../../mod/allfriends.php:34
-#, php-format
-msgid "Friends of %s"
-msgstr "%s的朋友们"
+#: include/text.php:1425
+msgid "bytes"
+msgstr "字节"
 
-#: ../../mod/allfriends.php:40
-msgid "No friends to display."
-msgstr "没有朋友展示。"
+#: include/text.php:1460 include/text.php:1471
+msgid "Click to open/close"
+msgstr "点击为开关"
 
-#: ../../mod/events.php:66
-msgid "Event title and start time are required."
-msgstr "项目标题和开始时间是必须的。"
+#: include/text.php:1603
+msgid "View on separate page"
+msgstr "在另一页面中查看"
 
-#: ../../mod/events.php:291
-msgid "l, F j"
-msgstr "l, F j"
+#: include/text.php:1604
+msgid "view on separate page"
+msgstr "在另一页面中查看"
 
-#: ../../mod/events.php:313
-msgid "Edit event"
-msgstr "编项目"
+#: include/text.php:1889
+msgid "activity"
+msgstr "活动"
 
-#: ../../mod/events.php:335 ../../include/text.php:1647
-#: ../../include/text.php:1657
-msgid "link to source"
-msgstr "链接到来源"
+#: include/text.php:1891 mod/content.php:625 object/Item.php:416
+#: object/Item.php:428
+msgid "comment"
+msgid_plural "comments"
+msgstr[0] "评论"
 
-#: ../../mod/events.php:370 ../../boot.php:2143 ../../include/nav.php:80
-#: ../../view/theme/diabook/theme.php:127
-msgid "Events"
-msgstr "事件"
+#: include/text.php:1894
+msgid "post"
+msgstr "文章"
 
-#: ../../mod/events.php:371
-msgid "Create New Event"
-msgstr "造成新的项目"
+#: include/text.php:2060
+msgid "Item filed"
+msgstr "把项目归档了"
 
-#: ../../mod/events.php:372
-msgid "Previous"
-msgstr ""
+#: include/uimport.php:84
+msgid "Error decoding account file"
+msgstr "解码账户文件出错误"
 
-#: ../../mod/events.php:373 ../../mod/install.php:207
-msgid "Next"
-msgstr ""
+#: include/uimport.php:90
+msgid "Error! No version data in file! This is not a Friendica account file?"
+msgstr "错误!文件没有版本数!这不是Friendica账户文件吗?"
 
-#: ../../mod/events.php:446
-msgid "hour:minute"
-msgstr "小时:分钟"
+#: include/uimport.php:107 include/uimport.php:118
+msgid "Error! Cannot check nickname"
+msgstr "错误!不能检查昵称"
 
-#: ../../mod/events.php:456
-msgid "Event details"
-msgstr "项目内容"
+#: include/uimport.php:111 include/uimport.php:122
+#, php-format
+msgid "User '%s' already exists on this server!"
+msgstr "用户「%s」已经存在这个服务器!"
+
+#: include/uimport.php:144
+msgid "User creation error"
+msgstr "用户创造错误"
+
+#: include/uimport.php:165
+msgid "User profile creation error"
+msgstr "用户简介创造错误"
 
-#: ../../mod/events.php:457
+#: include/uimport.php:214
 #, php-format
-msgid "Format is %s %s. Starting date and Title are required."
-msgstr "形式是%s%s。开始时间和标题是必须的。"
+msgid "%d contact not imported"
+msgid_plural "%d contacts not imported"
+msgstr[0] "%d熟人没进口了"
 
-#: ../../mod/events.php:459
-msgid "Event Starts:"
-msgstr "事件开始:"
+#: include/uimport.php:280
+msgid "Done. You can now login with your username and password"
+msgstr "完了。您现在会用您用户名和密码登录"
 
-#: ../../mod/events.php:459 ../../mod/events.php:473
-msgid "Required"
-msgstr "å¿\85é¡»ç\9a\84"
+#: include/user.php:41 mod/settings.php:373
+msgid "Passwords do not match. Password unchanged."
+msgstr "å¯\86ç \81们ä¸\8dç\9b¸é\85\8dã\80\82å¯\86ç \81没æ\9cªæ\94¹å\8f\98ç\9a\84ã\80\82"
 
-#: ../../mod/events.php:462
-msgid "Finish date/time is not known or not relevant"
-msgstr "结束日/时未知或无关"
+#: include/user.php:50
+msgid "An invitation is required."
+msgstr "邀请必要的。"
 
-#: ../../mod/events.php:464
-msgid "Event Finishes:"
-msgstr "äº\8b件ç»\93æ\9d\9f:"
+#: include/user.php:55
+msgid "Invitation could not be verified."
+msgstr "ä¸\8dè\83½è¯\81å®\9eé\82\80请ã\80\82"
 
-#: ../../mod/events.php:467
-msgid "Adjust for viewer timezone"
-msgstr "调为观众的时间"
+#: include/user.php:63
+msgid "Invalid OpenID url"
+msgstr "无效的OpenID url"
 
-#: ../../mod/events.php:469
-msgid "Description:"
-msgstr "描述:"
+#: include/user.php:84
+msgid "Please enter the required information."
+msgstr "请输入必要的信息。"
 
-#: ../../mod/events.php:471 ../../mod/directory.php:136 ../../boot.php:1648
-#: ../../include/bb2diaspora.php:170 ../../include/event.php:40
-msgid "Location:"
-msgstr "位置:"
+#: include/user.php:98
+msgid "Please use a shorter name."
+msgstr "请用短一点名。"
 
-#: ../../mod/events.php:473
-msgid "Title:"
-msgstr "标题:"
+#: include/user.php:100
+msgid "Name too short."
+msgstr "名字太短。"
 
-#: ../../mod/events.php:475
-msgid "Share this event"
-msgstr "分享这个项目"
+#: include/user.php:108
+msgid "That doesn't appear to be your full (First Last) name."
+msgstr "这看上去不是您的全姓名。"
 
-#: ../../mod/content.php:437 ../../mod/content.php:740
-#: ../../mod/photos.php:1653 ../../object/Item.php:129
-#: ../../include/conversation.php:613
-msgid "Select"
-msgstr "选择"
+#: include/user.php:113
+msgid "Your email domain is not among those allowed on this site."
+msgstr "这网站允许的域名中没有您的"
 
-#: ../../mod/content.php:471 ../../mod/content.php:852
-#: ../../mod/content.php:853 ../../object/Item.php:326
-#: ../../object/Item.php:327 ../../include/conversation.php:654
-#, php-format
-msgid "View %s's profile @ %s"
-msgstr "看%s的简介@ %s"
+#: include/user.php:116
+msgid "Not a valid email address."
+msgstr "无效的邮件地址。"
 
-#: ../../mod/content.php:481 ../../mod/content.php:864
-#: ../../object/Item.php:340 ../../include/conversation.php:674
-#, php-format
-msgid "%s from %s"
-msgstr "%s从%s"
+#: include/user.php:129
+msgid "Cannot use that email."
+msgstr "不能用这个邮件地址。"
 
-#: ../../mod/content.php:497 ../../include/conversation.php:690
-msgid "View in context"
-msgstr "看在上下文"
+#: include/user.php:135
+msgid "Your \"nickname\" can only contain \"a-z\", \"0-9\" and \"_\"."
+msgstr "你的“昵称”只能包含 \"a-z\", \"0-9\" 和 \"_\"."
 
-#: ../../mod/content.php:603 ../../object/Item.php:387
-#, php-format
-msgid "%d comment"
-msgid_plural "%d comments"
-msgstr[0] "%d评论"
+#: include/user.php:142 include/user.php:230
+msgid "Nickname is already registered. Please choose another."
+msgstr "昵称已经报到。请选择新的。"
 
-#: ../../mod/content.php:605 ../../object/Item.php:389
-#: ../../object/Item.php:402 ../../include/text.php:1972
-msgid "comment"
-msgid_plural "comments"
-msgstr[0] "评论"
+#: include/user.php:152
+msgid ""
+"Nickname was once registered here and may not be re-used. Please choose "
+"another."
+msgstr "昵称曾经这里注册于是不能再用。请选择别的。"
 
-#: ../../mod/content.php:606 ../../boot.php:751 ../../object/Item.php:390
-#: ../../include/contact_widgets.php:205
-msgid "show more"
-msgstr "看多"
+#: include/user.php:168
+msgid "SERIOUS ERROR: Generation of security keys failed."
+msgstr "要紧错误:产生安全钥匙失败了。"
 
-#: ../../mod/content.php:620 ../../mod/photos.php:1359
-#: ../../object/Item.php:116
-msgid "Private Message"
-msgstr "私人的新闻"
+#: include/user.php:216
+msgid "An error occurred during registration. Please try again."
+msgstr "报到出了问题。请再试。"
 
-#: ../../mod/content.php:684 ../../mod/photos.php:1542
-#: ../../object/Item.php:231
-msgid "I like this (toggle)"
-msgstr "我喜欢这(交替)"
+#: include/user.php:239 view/theme/duepuntozero/config.php:47
+msgid "default"
+msgstr "默认"
 
-#: ../../mod/content.php:684 ../../object/Item.php:231
-msgid "like"
-msgstr "喜欢"
+#: include/user.php:249
+msgid "An error occurred creating your default profile. Please try again."
+msgstr "创建你的默认简介的时候出现了一个错误。请再试。"
+
+#: include/user.php:308 include/user.php:316 include/user.php:324
+#: include/api.php:3717 mod/profile_photo.php:75 mod/profile_photo.php:83
+#: mod/profile_photo.php:91 mod/profile_photo.php:215
+#: mod/profile_photo.php:310 mod/profile_photo.php:320 mod/photos.php:74
+#: mod/photos.php:190 mod/photos.php:777 mod/photos.php:1259
+#: mod/photos.php:1280 mod/photos.php:1866
+msgid "Profile Photos"
+msgstr "简介照片"
 
-#: ../../mod/content.php:685 ../../mod/photos.php:1543
-#: ../../object/Item.php:232
-msgid "I don't like this (toggle)"
-msgstr "我不喜欢这(交替)"
+#: include/user.php:399
+#, php-format
+msgid ""
+"\n"
+"\t\tDear %1$s,\n"
+"\t\t\tThank you for registering at %2$s. Your account is pending for approval by the administrator.\n"
+"\t"
+msgstr ""
 
-#: ../../mod/content.php:685 ../../object/Item.php:232
-msgid "dislike"
-msgstr "讨厌"
+#: include/user.php:409
+#, php-format
+msgid "Registration at %s"
+msgstr ""
 
-#: ../../mod/content.php:687 ../../object/Item.php:234
-msgid "Share this"
-msgstr "分享这个"
+#: include/user.php:419
+#, php-format
+msgid ""
+"\n"
+"\t\tDear %1$s,\n"
+"\t\t\tThank you for registering at %2$s. Your account has been created.\n"
+"\t"
+msgstr ""
 
-#: ../../mod/content.php:687 ../../object/Item.php:234
-msgid "share"
-msgstr "分享"
+#: include/user.php:423
+#, php-format
+msgid ""
+"\n"
+"\t\tThe login details are as follows:\n"
+"\t\t\tSite Location:\t%3$s\n"
+"\t\t\tLogin Name:\t%1$s\n"
+"\t\t\tPassword:\t%5$s\n"
+"\n"
+"\t\tYou may change your password from your account \"Settings\" page after logging\n"
+"\t\tin.\n"
+"\n"
+"\t\tPlease take a few moments to review the other account settings on that page.\n"
+"\n"
+"\t\tYou may also wish to add some basic information to your default profile\n"
+"\t\t(on the \"Profiles\" page) so that other people can easily find you.\n"
+"\n"
+"\t\tWe recommend setting your full name, adding a profile photo,\n"
+"\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n"
+"\t\tperhaps what country you live in; if you do not wish to be more specific\n"
+"\t\tthan that.\n"
+"\n"
+"\t\tWe fully respect your right to privacy, and none of these items are necessary.\n"
+"\t\tIf you are new and do not know anybody here, they may help\n"
+"\t\tyou to make some new and interesting friends.\n"
+"\n"
+"\n"
+"\t\tThank you and welcome to %2$s."
+msgstr ""
 
-#: ../../mod/content.php:707 ../../mod/photos.php:1562
-#: ../../mod/photos.php:1606 ../../mod/photos.php:1694
-#: ../../object/Item.php:675
-msgid "This is you"
-msgstr "这是你"
+#: include/user.php:455 mod/admin.php:1406
+#, php-format
+msgid "Registration details for %s"
+msgstr "注册信息为%s"
 
-#: ../../mod/content.php:709 ../../mod/photos.php:1564
-#: ../../mod/photos.php:1608 ../../mod/photos.php:1696 ../../boot.php:750
-#: ../../object/Item.php:361 ../../object/Item.php:677
-msgid "Comment"
-msgstr "评论"
+#: include/Photo.php:1008 include/Photo.php:1024 include/Photo.php:1032
+#: include/Photo.php:1057 include/message.php:138 mod/item.php:469
+#: mod/wall_upload.php:250
+msgid "Wall Photos"
+msgstr "墙照片"
 
-#: ../../mod/content.php:711 ../../object/Item.php:679
-msgid "Bold"
-msgstr "粗体字 "
+#: include/dfrn.php:1331
+#, php-format
+msgid "%s\\'s birthday"
+msgstr "%s的生日"
 
-#: ../../mod/content.php:712 ../../object/Item.php:680
-msgid "Italic"
-msgstr "斜体 "
+#: include/message.php:15 include/message.php:161
+msgid "[no subject]"
+msgstr "[无题目]"
 
-#: ../../mod/content.php:713 ../../object/Item.php:681
-msgid "Underline"
-msgstr "下划线"
+#: include/photos.php:57 include/photos.php:66 mod/photos.php:190
+#: mod/photos.php:1126 mod/photos.php:1259 mod/photos.php:1280
+#: mod/photos.php:1842 mod/photos.php:1856 mod/fbrowser.php:43
+#: mod/fbrowser.php:65
+msgid "Contact Photos"
+msgstr "熟人照片"
 
-#: ../../mod/content.php:714 ../../object/Item.php:682
-msgid "Quote"
-msgstr "å¼\95语"
+#: include/Contact.php:463
+msgid "Drop Contact"
+msgstr "å\88 é\99¤ç\86\9f人"
 
-#: ../../mod/content.php:715 ../../object/Item.php:683
-msgid "Code"
-msgstr "源代码"
+#: include/Contact.php:841
+msgid "Organisation"
+msgstr "组织"
 
-#: ../../mod/content.php:716 ../../object/Item.php:684
-msgid "Image"
-msgstr "图片"
+#: include/Contact.php:844
+msgid "News"
+msgstr "新闻"
 
-#: ../../mod/content.php:717 ../../object/Item.php:685
-msgid "Link"
-msgstr "环节"
+#: include/Contact.php:847
+msgid "Forum"
+msgstr "论坛"
 
-#: ../../mod/content.php:718 ../../object/Item.php:686
-msgid "Video"
-msgstr "录像"
+#: include/api.php:1103
+#, php-format
+msgid "Daily posting limit of %d posts reached. The post was rejected."
+msgstr "到达了每日发文限制 %d. 这篇文章被拒绝发出。"
 
-#: ../../mod/content.php:719 ../../mod/editpost.php:145
-#: ../../mod/photos.php:1566 ../../mod/photos.php:1610
-#: ../../mod/photos.php:1698 ../../object/Item.php:687
-#: ../../include/conversation.php:1126
-msgid "Preview"
-msgstr "预演"
+#: include/api.php:1124
+#, php-format
+msgid "Weekly posting limit of %d posts reached. The post was rejected."
+msgstr "到达了每周发文限制 %d. 这篇文章被拒绝发出。"
 
-#: ../../mod/content.php:728 ../../mod/settings.php:676
-#: ../../object/Item.php:120
-msgid "Edit"
-msgstr "编辑"
+#: include/api.php:1145
+#, php-format
+msgid "Monthly posting limit of %d posts reached. The post was rejected."
+msgstr "到达了每月发文限制 %d. 这篇文章被拒绝发出。"
 
-#: ../../mod/content.php:753 ../../object/Item.php:195
-msgid "add star"
-msgstr "å\8a æ\98\9f"
+#: include/diaspora.php:2259
+msgid "Sharing notification from Diaspora network"
+msgstr "å\88\86享é\80\9aç\9f¥ä»\8eDiasporaç½\91ç»\9c"
 
-#: ../../mod/content.php:754 ../../object/Item.php:196
-msgid "remove star"
-msgstr "消星"
+#: include/diaspora.php:3226
+msgid "Attachments:"
+msgstr "附件:"
 
-#: ../../mod/content.php:755 ../../object/Item.php:197
-msgid "toggle star status"
-msgstr "转变星现状"
+#: include/follow.php:85 mod/dfrn_request.php:515
+msgid "Disallowed profile URL."
+msgstr "不允许的简介地址."
 
-#: ../../mod/content.php:758 ../../object/Item.php:200
-msgid "starred"
-msgstr "被贴星"
+#: include/follow.php:90 mod/dfrn_request.php:521 mod/friendica.php:116
+#: mod/admin.php:289 mod/admin.php:307
+msgid "Blocked domain"
+msgstr "被封禁的域名"
 
-#: ../../mod/content.php:759 ../../object/Item.php:220
-msgid "add tag"
-msgstr "加标签"
+#: include/follow.php:95
+msgid "Connect URL missing."
+msgstr "连接URL失踪的。"
 
-#: ../../mod/content.php:763 ../../object/Item.php:133
-msgid "save to folder"
-msgstr "保存在文件夹"
+#: include/follow.php:123
+msgid ""
+"This site is not configured to allow communications with other networks."
+msgstr "这网站没配置允许跟别的网络交流."
 
-#: ../../mod/content.php:854 ../../object/Item.php:328
-msgid "to"
-msgstr ""
+#: include/follow.php:124 include/follow.php:138
+msgid "No compatible communication protocols or feeds were discovered."
+msgstr "没有兼容协议或者摘要找到了."
 
-#: ../../mod/content.php:855 ../../object/Item.php:330
-msgid "Wall-to-Wall"
-msgstr "从墙到墙"
+#: include/follow.php:136
+msgid "The profile address specified does not provide adequate information."
+msgstr "输入的简介地址没有够消息。"
 
-#: ../../mod/content.php:856 ../../object/Item.php:331
-msgid "via Wall-To-Wall:"
-msgstr "通过从墙到墙"
+#: include/follow.php:141
+msgid "An author or name was not found."
+msgstr "找不到作者或名。"
 
-#: ../../mod/removeme.php:46 ../../mod/removeme.php:49
-msgid "Remove My Account"
-msgstr "删除我的账户"
+#: include/follow.php:144
+msgid "No browser URL could be matched to this address."
+msgstr "这个地址没有符合什么游览器URL。"
 
-#: ../../mod/removeme.php:47
+#: include/follow.php:147
 msgid ""
-"This will completely remove your account. Once this has been done it is not "
-"recoverable."
-msgstr "这要完全删除您的账户。这一做过,就不能恢复。"
-
-#: ../../mod/removeme.php:48
-msgid "Please enter your password for verification:"
-msgstr "请输入密码为确认:"
-
-#: ../../mod/install.php:117
-msgid "Friendica Communications Server - Setup"
-msgstr "Friendica沟通服务器-安装"
-
-#: ../../mod/install.php:123
-msgid "Could not connect to database."
-msgstr "解不了数据库。"
-
-#: ../../mod/install.php:127
-msgid "Could not create table."
-msgstr "造成不了表格。"
+"Unable to match @-style Identity Address with a known protocol or email "
+"contact."
+msgstr "无法匹配一个@-风格的身份地址和一个已知的协议或电子邮件联系人。"
 
-#: ../../mod/install.php:133
-msgid "Your Friendica site database has been installed."
-msgstr "您Friendica网站数据库被安装了。"
+#: include/follow.php:148
+msgid "Use mailto: in front of address to force email check."
+msgstr "输入mailto:地址前为要求电子邮件检查。"
 
-#: ../../mod/install.php:138
+#: include/follow.php:154
 msgid ""
-"You may need to import the file \"database.sql\" manually using phpmyadmin "
-"or mysql."
-msgstr "您可能要手工地进口文件「database.sql」用phpmyadmin或mysql。"
+"The profile address specified belongs to a network which has been disabled "
+"on this site."
+msgstr "输入的简介地址属在这个网站使不可用的网络。"
 
-#: ../../mod/install.php:139 ../../mod/install.php:206
-#: ../../mod/install.php:525
-msgid "Please see the file \"INSTALL.txt\"."
-msgstr "请看文件「INSTALL.txt」"
+#: include/follow.php:159
+msgid ""
+"Limited profile. This person will be unable to receive direct/personal "
+"notifications from you."
+msgstr "有限的简介。这人不会接受直达/私人通信从您。"
 
-#: ../../mod/install.php:203
-msgid "System check"
-msgstr "系统检测"
+#: include/follow.php:256
+msgid "Unable to retrieve contact information."
+msgstr "不能取回熟人消息。"
 
-#: ../../mod/install.php:208
-msgid "Check again"
-msgstr "再检测"
+#: include/items.php:1724 mod/dfrn_confirm.php:738 mod/dfrn_request.php:760
+msgid "[Name Withheld]"
+msgstr "[名字拒给]"
 
-#: ../../mod/install.php:227
-msgid "Database connection"
-msgstr "数据库接通"
+#: include/items.php:2100 mod/viewsrc.php:16 mod/notice.php:18
+#: mod/display.php:122 mod/display.php:291 mod/display.php:496
+#: mod/admin.php:257 mod/admin.php:1663 mod/admin.php:1914
+msgid "Item not found."
+msgstr "项目找不到。"
 
-#: ../../mod/install.php:228
-msgid ""
-"In order to install Friendica we need to know how to connect to your "
-"database."
-msgstr "为安装Friendica我们要知道怎么连接您的数据库。"
+#: include/items.php:2143
+msgid "Do you really want to delete this item?"
+msgstr "您真的想删除这个项目吗?"
 
-#: ../../mod/install.php:229
-msgid ""
-"Please contact your hosting provider or site administrator if you have "
-"questions about these settings."
-msgstr "你有关于这些设置有问题的话,请给互联网托管服务或者网页管理联系。"
+#: include/items.php:2145 mod/api.php:107 mod/dfrn_request.php:881
+#: mod/follow.php:150 mod/message.php:207 mod/register.php:249
+#: mod/profiles.php:638 mod/profiles.php:641 mod/profiles.php:668
+#: mod/settings.php:1168 mod/settings.php:1174 mod/settings.php:1181
+#: mod/settings.php:1185 mod/settings.php:1190 mod/settings.php:1195
+#: mod/settings.php:1200 mod/settings.php:1205 mod/settings.php:1231
+#: mod/settings.php:1232 mod/settings.php:1233 mod/settings.php:1234
+#: mod/settings.php:1235 mod/suggest.php:32 mod/contacts.php:465
+msgid "Yes"
+msgstr "是"
 
-#: ../../mod/install.php:230
-msgid ""
-"The database you specify below should already exist. If it does not, please "
-"create it before continuing."
-msgstr "您下边指定的数据库应该已经存在。如果还没有,请继续前造成。"
+#: include/items.php:2284 mod/api.php:28 mod/api.php:33 mod/attach.php:35
+#: mod/common.php:20 mod/crepair.php:105 mod/fsuggest.php:80
+#: mod/nogroup.php:29 mod/notes.php:25 mod/viewcontacts.php:49
+#: mod/uimport.php:26 mod/allfriends.php:15 mod/cal.php:302
+#: mod/dfrn_confirm.php:64 mod/dirfind.php:16 mod/editpost.php:13
+#: mod/events.php:189 mod/follow.php:14 mod/follow.php:55 mod/follow.php:118
+#: mod/group.php:21 mod/invite.php:18 mod/invite.php:106 mod/item.php:198
+#: mod/item.php:210 mod/manage.php:104 mod/message.php:49 mod/message.php:172
+#: mod/mood.php:117 mod/network.php:17 mod/notifications.php:74
+#: mod/ostatus_subscribe.php:12 mod/poke.php:156 mod/profile_photo.php:20
+#: mod/profile_photo.php:180 mod/profile_photo.php:191
+#: mod/profile_photo.php:204 mod/register.php:46 mod/regmod.php:107
+#: mod/repair_ostatus.php:12 mod/wall_upload.php:102 mod/wall_upload.php:105
+#: mod/wallmessage.php:12 mod/wallmessage.php:36 mod/wallmessage.php:76
+#: mod/wallmessage.php:100 mod/delegate.php:15 mod/display.php:493
+#: mod/photos.php:169 mod/photos.php:1112 mod/profiles.php:167
+#: mod/profiles.php:605 mod/settings.php:25 mod/settings.php:133
+#: mod/settings.php:665 mod/suggest.php:58 mod/wall_attach.php:69
+#: mod/wall_attach.php:72 mod/contacts.php:373 mod/unfollow.php:14
+#: mod/unfollow.php:57 mod/unfollow.php:90 index.php:411
+msgid "Permission denied."
+msgstr "权限不够。"
 
-#: ../../mod/install.php:234
-msgid "Database Server Name"
-msgstr "æ\95°æ\8d®åº\93æ\9c\8då\8a¡å\99¨å\90\8d"
+#: include/items.php:2401
+msgid "Archives"
+msgstr "æ¡£æ¡\88"
 
-#: ../../mod/install.php:235
-msgid "Database Login Name"
-msgstr "数据库登录名"
+#: include/network.php:704
+msgid "view full size"
+msgstr "看全尺寸"
 
-#: ../../mod/install.php:236
-msgid "Database Login Password"
-msgstr "数据库登录密码"
+#: include/ostatus.php:1690
+#, php-format
+msgid "%s is now following %s."
+msgstr "%s 正在关注 %s."
 
-#: ../../mod/install.php:237
-msgid "Database Name"
-msgstr "数据库名字"
+#: include/ostatus.php:1691
+msgid "following"
+msgstr "关注"
 
-#: ../../mod/install.php:238 ../../mod/install.php:277
-msgid "Site administrator email address"
-msgstr "网站行政人员邮件地址"
+#: include/ostatus.php:1694
+#, php-format
+msgid "%s stopped following %s."
+msgstr "%s 停止关注了 %s."
 
-#: ../../mod/install.php:238 ../../mod/install.php:277
-msgid ""
-"Your account email address must match this in order to use the web admin "
-"panel."
-msgstr "您账户邮件地址必要符合这个为用网站处理仪表板"
+#: include/ostatus.php:1695
+msgid "stopped following"
+msgstr "结束关注了"
 
-#: ../../mod/install.php:242 ../../mod/install.php:280
-msgid "Please select a default timezone for your website"
-msgstr "请选择您网站的默认时区"
+#: mod/api.php:78 mod/api.php:104
+msgid "Authorize application connection"
+msgstr "授权应用连接"
 
-#: ../../mod/install.php:267
-msgid "Site settings"
-msgstr "网站设置"
+#: mod/api.php:79
+msgid "Return to your app and insert this Securty Code:"
+msgstr "回归您的应用和输入这个安全密码:"
 
-#: ../../mod/install.php:321
-msgid "Could not find a command line version of PHP in the web server PATH."
-msgstr "没找到命令行PHP在网服务器PATH。"
+#: mod/api.php:91
+msgid "Please login to continue."
+msgstr "请登记为继续。"
 
-#: ../../mod/install.php:322
+#: mod/api.php:106
 msgid ""
-"If you don't have a command line version of PHP installed on server, you "
-"will not be able to run background polling via cron. See <a "
-"href='http://friendica.com/node/27'>'Activating scheduled tasks'</a>"
-msgstr "如果您没有命令行PHP在服务器,您实行不了用cron背景检查。看<a href='http://friendica.com/node/27'>「使安排做的任务可用」</a>"
+"Do you want to authorize this application to access your posts and contacts,"
+" and/or create new posts for you?"
+msgstr "你要授权这个应用访问你的文章和联系人,及/或为你创建新的文章吗?"
+
+#: mod/api.php:108 mod/dfrn_request.php:881 mod/follow.php:150
+#: mod/register.php:250 mod/profiles.php:638 mod/profiles.php:642
+#: mod/profiles.php:668 mod/settings.php:1168 mod/settings.php:1174
+#: mod/settings.php:1181 mod/settings.php:1185 mod/settings.php:1190
+#: mod/settings.php:1195 mod/settings.php:1200 mod/settings.php:1205
+#: mod/settings.php:1231 mod/settings.php:1232 mod/settings.php:1233
+#: mod/settings.php:1234 mod/settings.php:1235
+msgid "No"
+msgstr "否"
 
-#: ../../mod/install.php:326
-msgid "PHP executable path"
-msgstr "PHP可执行路径"
+#: mod/apps.php:9 index.php:258
+msgid "You must be logged in to use addons. "
+msgstr "您用插件前要登录"
 
-#: ../../mod/install.php:326
-msgid ""
-"Enter full path to php executable. You can leave this blank to continue the "
-"installation."
-msgstr "输入全路线到php执行程序。您会留空白为继续安装。"
+#: mod/apps.php:14
+msgid "Applications"
+msgstr "应用"
 
-#: ../../mod/install.php:331
-msgid "Command line PHP"
-msgstr "命令行PHP"
+#: mod/apps.php:17
+msgid "No installed applications."
+msgstr "没有安装的应用"
 
-#: ../../mod/install.php:340
-msgid "PHP executable is not the php cli binary (could be cgi-fgci version)"
-msgstr "PHP执行程序不是命令行PHP執行檔(有可能是cgi-fgci版本)"
+#: mod/attach.php:10
+msgid "Item not available."
+msgstr "项目不可用的"
 
-#: ../../mod/install.php:341
-msgid "Found PHP version: "
-msgstr "找到PHP版本号:"
+#: mod/attach.php:22
+msgid "Item was not found."
+msgstr "找不到项目。"
 
-#: ../../mod/install.php:343
-msgid "PHP cli binary"
-msgstr "命令行PHP執行檔"
+#: mod/babel.php:18
+msgid "Source (bbcode) text:"
+msgstr "源代码(bbcode)正文"
 
-#: ../../mod/install.php:354
-msgid ""
-"The command line version of PHP on your system does not have "
-"\"register_argc_argv\" enabled."
-msgstr "您系统的命令行PHP没有能够「register_argc_argv」。"
+#: mod/babel.php:25
+msgid "Source (Diaspora) text to convert to BBcode:"
+msgstr "源代(Diaspora)正文要翻译成BBCode:"
 
-#: ../../mod/install.php:355
-msgid "This is required for message delivery to work."
-msgstr "这必要为通信发布成功。"
+#: mod/babel.php:33
+msgid "Source input: "
+msgstr "源代码输入:"
 
-#: ../../mod/install.php:357
-msgid "PHP register_argc_argv"
-msgstr "PHP register_argc_argv"
+#: mod/babel.php:37
+msgid "bb2html (raw HTML): "
+msgstr "bb2html(生HTML): "
 
-#: ../../mod/install.php:378
-msgid ""
-"Error: the \"openssl_pkey_new\" function on this system is not able to "
-"generate encryption keys"
-msgstr "错误:这系统的「register_argc_argv」子程序不能产生加密钥匙"
+#: mod/babel.php:41
+msgid "bb2html: "
+msgstr "bb2html:"
 
-#: ../../mod/install.php:379
-msgid ""
-"If running under Windows, please see "
-"\"http://www.php.net/manual/en/openssl.installation.php\"."
-msgstr "如果您用Windows,请看「http://www.php.net/manual/en/openssl.installation.php」。"
+#: mod/babel.php:45
+msgid "bb2html2bb: "
+msgstr "bb2html2bb:"
 
-#: ../../mod/install.php:381
-msgid "Generate encryption keys"
-msgstr "产生加密钥匙"
+#: mod/babel.php:49
+msgid "bb2md: "
+msgstr "bb2md:"
 
-#: ../../mod/install.php:388
-msgid "libCurl PHP module"
-msgstr "libCurl PHP模块"
+#: mod/babel.php:53
+msgid "bb2md2html: "
+msgstr "bb2md2html:"
 
-#: ../../mod/install.php:389
-msgid "GD graphics PHP module"
-msgstr "GD显示PHP模块"
+#: mod/babel.php:57
+msgid "bb2dia2bb: "
+msgstr "bb2dia2bb:"
 
-#: ../../mod/install.php:390
-msgid "OpenSSL PHP module"
-msgstr "OpenSSL PHP模块"
+#: mod/babel.php:61
+msgid "bb2md2html2bb: "
+msgstr "bb2md2html2bb:"
 
-#: ../../mod/install.php:391
-msgid "mysqli PHP module"
-msgstr "mysqli PHP模块"
+#: mod/babel.php:67
+msgid "Source input (Diaspora format): "
+msgstr "源代输入(Diaspora形式):"
 
-#: ../../mod/install.php:392
-msgid "mb_string PHP module"
-msgstr "mb_string PHP模块"
+#: mod/babel.php:71
+msgid "diaspora2bb: "
+msgstr "diaspora2bb: "
 
-#: ../../mod/install.php:397 ../../mod/install.php:399
-msgid "Apache mod_rewrite module"
-msgstr "Apache mod_rewrite部件"
+#: mod/common.php:93
+msgid "No contacts in common."
+msgstr "没有共同熟人。"
 
-#: ../../mod/install.php:397
-msgid ""
-"Error: Apache webserver mod-rewrite module is required but not installed."
-msgstr "错误:Apache服务器的mod-rewrite模块是必要的可却不安装的。"
+#: mod/common.php:143 mod/contacts.php:892
+msgid "Common Friends"
+msgstr "普通朋友们"
 
-#: ../../mod/install.php:405
-msgid "Error: libCURL PHP module required but not installed."
-msgstr "错误:libCurl PHP模块是必要的可却不安装的。"
+#: mod/credits.php:19
+msgid "Credits"
+msgstr ""
 
-#: ../../mod/install.php:409
+#: mod/credits.php:20
 msgid ""
-"Error: GD graphics PHP module with JPEG support required but not installed."
-msgstr "错误:GD显示PHP模块跟JPEG支持是必要的可却安装的。"
-
-#: ../../mod/install.php:413
-msgid "Error: openssl PHP module required but not installed."
-msgstr "错误:openssl PHP模块是必要的可却不安装的。"
+"Friendica is a community project, that would not be possible without the "
+"help of many people. Here is a list of those who have contributed to the "
+"code or the translation of Friendica. Thank you all!"
+msgstr ""
 
-#: ../../mod/install.php:417
-msgid "Error: mysqli PHP module required but not installed."
-msgstr "错误:mysqli PHP模块是必要的可却不安装的。"
+#: mod/crepair.php:92
+msgid "Contact settings applied."
+msgstr "熟人设置应用了。"
 
-#: ../../mod/install.php:421
-msgid "Error: mb_string PHP module required but not installed."
-msgstr "错误:mbstring PHP模块必要可没安装的。"
+#: mod/crepair.php:94
+msgid "Contact update failed."
+msgstr "熟人更新失败。"
 
-#: ../../mod/install.php:438
-msgid ""
-"The web installer needs to be able to create a file called \".htconfig.php\""
-" in the top folder of your web server and it is unable to do so."
-msgstr "网页安装者要能造成叫「.htconfig.php」在网服务器主文件夹可却不能。"
+#: mod/crepair.php:119 mod/fsuggest.php:22 mod/fsuggest.php:94
+#: mod/dfrn_confirm.php:129
+msgid "Contact not found."
+msgstr "没找到熟人。"
 
-#: ../../mod/install.php:439
+#: mod/crepair.php:125
 msgid ""
-"This is most often a permission setting, as the web server may not be able "
-"to write files in your folder - even if you can."
-msgstr "这常常是一个权设置,因为网服务器可能不会写文件在文件夹-即使您会。"
+"<strong>WARNING: This is highly advanced</strong> and if you enter incorrect"
+" information your communications with this contact may stop working."
+msgstr "<strong>注意:这是很高等的</strong>,你输入错的信息你和熟人的沟通会弄失灵了。"
 
-#: ../../mod/install.php:440
+#: mod/crepair.php:126
 msgid ""
-"At the end of this procedure, we will give you a text to save in a file "
-"named .htconfig.php in your Friendica top folder."
-msgstr "è¿\99个步骤头ï¼\8cæ\88\91们ç»\99æ\82¨æ­£æ\96\87è¦\81ä¿\9då­\98å\9c¨å\8f«.htconfig.phpç\9a\84æ\96\87件å\9c¨æ\82¨Friendica主æ\96\87件夹ã\80\82"
+"Please use your browser 'Back' button <strong>now</strong> if you are "
+"uncertain what to do on this page."
+msgstr "请<strong>ç«\8bå\8d³</strong>ç\94¨å\90\8eé\80\80æ\8c\89é\92®å¦\82æ\9e\9cæ\82¨ä¸\8dç¡®å®\9aæ\80\8eä¹\88ç\94¨è¿\99页"
 
-#: ../../mod/install.php:441
-msgid ""
-"You can alternatively skip this procedure and perform a manual installation."
-" Please see the file \"INSTALL.txt\" for instructions."
-msgstr "或者您会这个步骤不做还是实行手动的安装。请看INSTALL.txt文件为说明。"
+#: mod/crepair.php:139 mod/crepair.php:141
+msgid "No mirroring"
+msgstr "没有复制"
 
-#: ../../mod/install.php:444
-msgid ".htconfig.php is writable"
-msgstr ".htconfig.php是可写的"
+#: mod/crepair.php:139
+msgid "Mirror as forwarded posting"
+msgstr "复制为传达文章"
 
-#: ../../mod/install.php:454
-msgid ""
-"Friendica uses the Smarty3 template engine to render its web views. Smarty3 "
-"compiles templates to PHP to speed up rendering."
-msgstr "Friendica用Smarty3模板机车为建筑网页。Smarty3把模板编译成PHP为催建筑网页。"
+#: mod/crepair.php:139 mod/crepair.php:141
+msgid "Mirror as my own posting"
+msgstr "复制为我自己的文章"
 
-#: ../../mod/install.php:455
-msgid ""
-"In order to store these compiled templates, the web server needs to have "
-"write access to the directory view/smarty3/ under the Friendica top level "
-"folder."
-msgstr "为了保存这些模板,网服务器要写权利于view/smarty3/目录在Friendica主目录下。"
+#: mod/crepair.php:155
+msgid "Return to contact editor"
+msgstr "回归熟人处理器"
 
-#: ../../mod/install.php:456
-msgid ""
-"Please ensure that the user that your web server runs as (e.g. www-data) has"
-" write access to this folder."
-msgstr "请保险您网服务器用户(比如www-data)有这个目录的写权利。"
+#: mod/crepair.php:157
+msgid "Refetch contact data"
+msgstr "重新获取联系人数据"
+
+#: mod/crepair.php:159 mod/fsuggest.php:109 mod/content.php:730
+#: mod/events.php:509 mod/install.php:245 mod/install.php:285
+#: mod/invite.php:150 mod/localtime.php:47 mod/manage.php:157
+#: mod/message.php:338 mod/message.php:521 mod/mood.php:140 mod/poke.php:205
+#: mod/photos.php:1144 mod/photos.php:1274 mod/photos.php:1600
+#: mod/photos.php:1649 mod/photos.php:1691 mod/photos.php:1771
+#: mod/profiles.php:679 mod/contacts.php:604 object/Item.php:702
+#: view/theme/duepuntozero/config.php:65 view/theme/frio/config.php:68
+#: view/theme/quattro/config.php:71 view/theme/vier/config.php:114
+msgid "Submit"
+msgstr "提交"
 
-#: ../../mod/install.php:457
-msgid ""
-"Note: as a security measure, you should give the web server write access to "
-"view/smarty3/ only--not the template files (.tpl) that it contains."
-msgstr "注意:为了安全,您应该只给网服务器写权利于view/smarty3/-没有模板文件(.tpl)之下。"
+#: mod/crepair.php:161
+msgid "Remote Self"
+msgstr "遥远的自身"
 
-#: ../../mod/install.php:460
-msgid "view/smarty3 is writable"
-msgstr "能写view/smarty3"
+#: mod/crepair.php:164
+msgid "Mirror postings from this contact"
+msgstr "把这个熟人的文章复制。"
 
-#: ../../mod/install.php:472
+#: mod/crepair.php:166
 msgid ""
-"Url rewrite in .htaccess is not working. Check your server configuration."
-msgstr " URL改写在.htaccess不行。检查您服务器设置。"
+"Mark this contact as remote_self, this will cause friendica to repost new "
+"entries from this contact."
+msgstr "表明这个熟人当遥远的自身。Friendica要把这个熟人的新的文章复制。"
 
-#: ../../mod/install.php:474
-msgid "Url rewrite is working"
-msgstr "URL改写发挥机能"
+#: mod/crepair.php:170 mod/settings.php:680 mod/settings.php:706
+#: mod/admin.php:1588 mod/admin.php:1601 mod/admin.php:1614 mod/admin.php:1630
+msgid "Name"
+msgstr "名字"
 
-#: ../../mod/install.php:484
-msgid ""
-"The database configuration file \".htconfig.php\" could not be written. "
-"Please use the enclosed text to create a configuration file in your web "
-"server root."
-msgstr "数据库设置文件「.htconfig.php」不能被写。请把包括的正文造成设置文件在网服务器子目录。"
+#: mod/crepair.php:171
+msgid "Account Nickname"
+msgstr "帐户昵称"
 
-#: ../../mod/install.php:523
-msgid "<h1>What next</h1>"
-msgstr "<h1>下步是什么</h1>"
+#: mod/crepair.php:172
+msgid "@Tagname - overrides Name/Nickname"
+msgstr "@Tagname越过名/昵称"
 
-#: ../../mod/install.php:524
-msgid ""
-"IMPORTANT: You will need to [manually] setup a scheduled task for the "
-"poller."
-msgstr "重要:您要[手工地]准备安排的任务给喂器。"
+#: mod/crepair.php:173
+msgid "Account URL"
+msgstr "帐户URL"
 
-#: ../../mod/wallmessage.php:42 ../../mod/wallmessage.php:112
-#, php-format
-msgid "Number of daily wall messages for %s exceeded. Message failed."
-msgstr "一天最多墙通知给%s超过了。通知没有通过 。"
+#: mod/crepair.php:174
+msgid "Friend Request URL"
+msgstr "朋友请求URL"
 
-#: ../../mod/wallmessage.php:59
-msgid "Unable to check your home location."
-msgstr "核对ä¸\8däº\86æ\82¨ç\9a\84主页ã\80\82"
+#: mod/crepair.php:175
+msgid "Friend Confirm URL"
+msgstr "æ\9c\8bå\8f\8b确认URL"
 
-#: ../../mod/wallmessage.php:86 ../../mod/wallmessage.php:95
-msgid "No recipient."
-msgstr "没有接受者。"
+#: mod/crepair.php:176
+msgid "Notification Endpoint URL"
+msgstr "通知端URL"
 
-#: ../../mod/wallmessage.php:143
-#, php-format
-msgid ""
-"If you wish for %s to respond, please check that the privacy settings on "
-"your site allow private mail from unknown senders."
-msgstr "如果您想%s回答,请核对您网站的隐私设置允许生发送人的私人邮件。"
+#: mod/crepair.php:177
+msgid "Poll/Feed URL"
+msgstr "喂URL"
 
-#: ../../mod/help.php:79
-msgid "Help:"
-msgstr "帮助:"
+#: mod/crepair.php:178
+msgid "New photo from this URL"
+msgstr "新照片从这个URL"
 
-#: ../../mod/help.php:84 ../../include/nav.php:114
-msgid "Help"
-msgstr "帮助"
+#: mod/filer.php:31
+msgid "- select -"
+msgstr "-选择-"
 
-#: ../../mod/help.php:90 ../../index.php:256
-msgid "Not Found"
-msgstr "æ\9cªå\8f\91ç\8e°"
+#: mod/fsuggest.php:65
+msgid "Friend suggestion sent."
+msgstr "æ\9c\8bå\8f\8b建议å\8f\91é\80\81äº\86ã\80\82"
 
-#: ../../mod/help.php:93 ../../index.php:259
-msgid "Page not found."
-msgstr "页发现。"
+#: mod/fsuggest.php:99
+msgid "Suggest Friends"
+msgstr "推荐的朋友们"
 
-#: ../../mod/dfrn_poll.php:103 ../../mod/dfrn_poll.php:536
+#: mod/fsuggest.php:101
 #, php-format
-msgid "%1$s welcomes %2$s"
-msgstr "%1$s欢迎%2$s"
+msgid "Suggest a friend for %s"
+msgstr "给 %s 推荐朋友"
 
-#: ../../mod/home.php:35
-#, php-format
-msgid "Welcome to %s"
-msgstr "%s欢迎你"
+#: mod/lockview.php:33 mod/lockview.php:41
+msgid "Remote privacy information not available."
+msgstr "摇隐私信息无效"
 
-#: ../../mod/wall_attach.php:75
-msgid "Sorry, maybe your upload is bigger than the PHP configuration allows"
-msgstr "不好意思,可能你上传的是PHP设置允许的大"
+#: mod/lockview.php:50
+msgid "Visible to:"
+msgstr "可见给:"
 
-#: ../../mod/wall_attach.php:75
-msgid "Or - did you try to upload an empty file?"
-msgstr "或者,你是不是上传空的文件?"
+#: mod/maintenance.php:21
+msgid "System down for maintenance"
+msgstr "系统关闭为了维持"
 
-#: ../../mod/wall_attach.php:81
-#, php-format
-msgid "File exceeds size limit of %d"
-msgstr "文件数目超过最多%d"
+#: mod/newmember.php:7
+msgid "Welcome to Friendica"
+msgstr "Friendica欢迎你"
 
-#: ../../mod/wall_attach.php:122 ../../mod/wall_attach.php:133
-msgid "File upload failed."
-msgstr "æ\96\87件ä¸\8a传失败ã\80\82"
+#: mod/newmember.php:8
+msgid "New Member Checklist"
+msgstr "æ\96°æ\88\90å\91\98æ¸\85å\8d\95"
 
-#: ../../mod/match.php:12
-msgid "Profile Match"
-msgstr "简介符合"
+#: mod/newmember.php:10
+msgid ""
+"We would like to offer some tips and links to help make your experience "
+"enjoyable. Click any item to visit the relevant page. A link to this page "
+"will be visible from your home page for two weeks after your initial "
+"registration and then will quietly disappear."
+msgstr "我们想提供一些建议和链接以助于让你有愉快的经历。点击任意一项访问相应的网页。在你注册之后,到这个页面的链接会在你的主页显示两周,之后悄声地消失。"
 
-#: ../../mod/match.php:20
-msgid "No keywords to match. Please add keywords to your default profile."
-msgstr "没有符合的关键字。请在您的默认简介加关键字。"
+#: mod/newmember.php:11
+msgid "Getting Started"
+msgstr "入门"
 
-#: ../../mod/match.php:57
-msgid "is interested in:"
-msgstr "感兴趣对:"
+#: mod/newmember.php:13
+msgid "Friendica Walk-Through"
+msgstr "Friendica游览"
 
-#: ../../mod/match.php:58 ../../mod/suggest.php:90 ../../boot.php:1568
-#: ../../include/contact_widgets.php:10
-msgid "Connect"
-msgstr "连接"
+#: mod/newmember.php:13
+msgid ""
+"On your <em>Quick Start</em> page - find a brief introduction to your "
+"profile and network tabs, make some new connections, and find some groups to"
+" join."
+msgstr "在你的<em>快速上手</em>页-找到一个简要的对你的简介和网络标签的介绍,创建一些新的连接,并找一些群组加入。"
 
-#: ../../mod/share.php:44
-msgid "link"
-msgstr "链接"
+#: mod/newmember.php:17
+msgid "Go to Your Settings"
+msgstr "您的设置"
 
-#: ../../mod/community.php:23
-msgid "Not available."
-msgstr "不可用的"
+#: mod/newmember.php:17
+msgid ""
+"On your <em>Settings</em> page -  change your initial password. Also make a "
+"note of your Identity Address. This looks just like an email address - and "
+"will be useful in making friends on the free social web."
+msgstr "在你的<em>设置</em>页 - 改变你最初的密码。同时也记住你的身份地址。这看起来像一个电子邮件地址 - 并且在这个自由的社交网络交友时会有用。"
 
-#: ../../mod/community.php:32 ../../include/nav.php:129
-#: ../../include/nav.php:131 ../../view/theme/diabook/theme.php:129
-msgid "Community"
-msgstr "社会"
+#: mod/newmember.php:18
+msgid ""
+"Review the other settings, particularly the privacy settings. An unpublished"
+" directory listing is like having an unlisted phone number. In general, you "
+"should probably publish your listing - unless all of your friends and "
+"potential friends know exactly how to find you."
+msgstr "校对别的设置,特别是隐私设置。一个未发布的目录项目是跟未出版的电话号码一样。平时,你可能应该出版你的目录项目-除非都你的朋友们和可交的朋友们已经知道确切地怎么找你。"
 
-#: ../../mod/community.php:62 ../../mod/community.php:71
-#: ../../mod/search.php:168 ../../mod/search.php:192
-msgid "No results."
-msgstr "没有结果"
+#: mod/newmember.php:22 mod/profile_photo.php:256 mod/profiles.php:698
+msgid "Upload Profile Photo"
+msgstr "上传简历照片"
 
-#: ../../mod/settings.php:29 ../../mod/photos.php:80
-msgid "everybody"
-msgstr "每人"
+#: mod/newmember.php:22
+msgid ""
+"Upload a profile photo if you have not done so already. Studies have shown "
+"that people with real photos of themselves are ten times more likely to make"
+" friends than people who do not."
+msgstr "上传一张简历照片除非你已经做过。研究表明有真正自己的照片的人比没有的交朋友们可能多十倍。"
 
-#: ../../mod/settings.php:41
-msgid "Additional features"
-msgstr "附加的特点"
+#: mod/newmember.php:23
+msgid "Edit Your Profile"
+msgstr "编辑您的简介"
 
-#: ../../mod/settings.php:46
-msgid "Display"
-msgstr "显示"
+#: mod/newmember.php:23
+msgid ""
+"Edit your <strong>default</strong> profile to your liking. Review the "
+"settings for hiding your list of friends and hiding the profile from unknown"
+" visitors."
+msgstr "随意编你的<strong>公开的</strong>简历。评论设置为藏起来你的朋友表和简历过陌生来客。"
 
-#: ../../mod/settings.php:52 ../../mod/settings.php:780
-msgid "Social Networks"
-msgstr "社ä¼\9aå\8c\96ç½\91ç»\9c"
+#: mod/newmember.php:24
+msgid "Profile Keywords"
+msgstr "ç®\80ä»\8bå\85³é\94®å­\97"
 
-#: ../../mod/settings.php:62 ../../include/nav.php:170
-msgid "Delegations"
-msgstr "代表"
+#: mod/newmember.php:24
+msgid ""
+"Set some public keywords for your default profile which describe your "
+"interests. We may be able to find other people with similar interests and "
+"suggest friendships."
+msgstr "指定一些公开关键字在您的默认简介描述您兴趣。我们可能找得了别人有相似兴趣和建议友谊。"
 
-#: ../../mod/settings.php:67
-msgid "Connected apps"
-msgstr "连接着应用"
+#: mod/newmember.php:26
+msgid "Connecting"
+msgstr "连接着"
 
-#: ../../mod/settings.php:72 ../../mod/uexport.php:85
-msgid "Export personal data"
-msgstr "出口私人信息"
+#: mod/newmember.php:32
+msgid "Importing Emails"
+msgstr "进口着邮件"
 
-#: ../../mod/settings.php:77
-msgid "Remove account"
-msgstr "删除账户"
+#: mod/newmember.php:32
+msgid ""
+"Enter your email access information on your Connector Settings page if you "
+"wish to import and interact with friends or mailing lists from your email "
+"INBOX"
+msgstr "输入你电子邮件使用信息在插销设置页,要是你想用你的电子邮件进口和互动朋友们或邮件表。"
 
-#: ../../mod/settings.php:129
-msgid "Missing some important data!"
-msgstr "æ\9c\89ç\9a\84é\87\8dè¦\81ä¿¡æ\81¯å¤±è¸ªç\9a\84ï¼\81"
+#: mod/newmember.php:35
+msgid "Go to Your Contacts Page"
+msgstr "æ\82¨ç\9a\84ç\86\9f人页"
 
-#: ../../mod/settings.php:238
-msgid "Failed to connect with email account using the settings provided."
-msgstr "不能连接电子邮件账户用输入的设置。"
+#: mod/newmember.php:35
+msgid ""
+"Your Contacts page is your gateway to managing friendships and connecting "
+"with friends on other networks. Typically you enter their address or site "
+"URL in the <em>Add New Contact</em> dialog."
+msgstr "您熟人页是您门口为管理熟人和连接朋友们在别的网络。典型您输入他的地址或者网站URL在<em>添加新熟人</em>对话框。"
 
-#: ../../mod/settings.php:243
-msgid "Email settings updated."
-msgstr "电子邮件设置更新了"
+#: mod/newmember.php:36
+msgid "Go to Your Site's Directory"
+msgstr "您网站的目录"
 
-#: ../../mod/settings.php:258
-msgid "Features updated"
-msgstr "特点更新了"
+#: mod/newmember.php:36
+msgid ""
+"The Directory page lets you find other people in this network or other "
+"federated sites. Look for a <em>Connect</em> or <em>Follow</em> link on "
+"their profile page. Provide your own Identity Address if requested."
+msgstr "目录页让您找别人在这个网络或别的同盟的网站。找一个<em>连接</em>或<em>关注</em>按钮在他们的简介页。您被要求的话,提供您自己的同一个人地址。"
 
-#: ../../mod/settings.php:321
-msgid "Relocate message has been send to your contacts"
-msgstr "调动信息寄给您的熟人"
+#: mod/newmember.php:37
+msgid "Finding New People"
+msgstr "找新人"
 
-#: ../../mod/settings.php:335
-msgid "Passwords do not match. Password unchanged."
-msgstr "密码们不相配。密码没未改变的。"
+#: mod/newmember.php:37
+msgid ""
+"On the side panel of the Contacts page are several tools to find new "
+"friends. We can match people by interest, look up people by name or "
+"interest, and provide suggestions based on network relationships. On a brand"
+" new site, friend suggestions will usually begin to be populated within 24 "
+"hours."
+msgstr "在熟人页的工具栏有一些工具为找新朋友们。我们会使人们相配按名或兴趣,和以网络关系作为提醒建议的根据。在新网站,朋友建议平常开始24小时后。"
 
-#: ../../mod/settings.php:340
-msgid "Empty passwords are not allowed. Password unchanged."
-msgstr "空ç\9a\84å¯\86ç \81ç¦\81æ­¢ã\80\82å¯\86ç \81没æ\9cªæ\94¹å\8f\98ç\9a\84ã\80\82"
+#: mod/newmember.php:41
+msgid "Group Your Contacts"
+msgstr "ç»\99ä½ ç\9a\84è\81\94系人å\88\86ç»\84"
 
-#: ../../mod/settings.php:348
-msgid "Wrong password."
-msgstr "密码不正确。"
+#: mod/newmember.php:41
+msgid ""
+"Once you have made some friends, organize them into private conversation "
+"groups from the sidebar of your Contacts page and then you can interact with"
+" each group privately on your Network page."
+msgstr "您交朋友们后,组织他们分私人交流组在您熟人页的边栏,您会私下地跟组交流在您的网络页。"
 
-#: ../../mod/settings.php:359
-msgid "Password changed."
-msgstr "密码变化了。"
+#: mod/newmember.php:44
+msgid "Why Aren't My Posts Public?"
+msgstr "我文章怎么没公开的?"
 
-#: ../../mod/settings.php:361
-msgid "Password update failed. Please try again."
-msgstr "密码更新失败了。请再试。"
+#: mod/newmember.php:44
+msgid ""
+"Friendica respects your privacy. By default, your posts will only show up to"
+" people you've added as friends. For more information, see the help section "
+"from the link above."
+msgstr "Friendica尊敬您的隐私。默认是您文章只被您朋友们看。更多消息在帮助部分在上面的链接。"
 
-#: ../../mod/settings.php:428
-msgid " Please use a shorter name."
-msgstr "请用短一点个名。"
+#: mod/newmember.php:48
+msgid "Getting Help"
+msgstr "怎么获得帮助"
 
-#: ../../mod/settings.php:430
-msgid " Name too short."
-msgstr "名字太短。"
+#: mod/newmember.php:50
+msgid "Go to the Help Section"
+msgstr "看帮助部分"
 
-#: ../../mod/settings.php:439
-msgid "Wrong Password"
-msgstr "密码不正确"
+#: mod/newmember.php:50
+msgid ""
+"Our <strong>help</strong> pages may be consulted for detail on other program"
+" features and resources."
+msgstr "我们<strong>帮助</strong>页可查阅到详情关于别的编程特点和资源。"
 
-#: ../../mod/settings.php:444
-msgid " Not valid email."
-msgstr " 电子邮件地址无效."
+#: mod/nogroup.php:45 mod/viewcontacts.php:105 mod/contacts.php:615
+#: mod/contacts.php:959
+#, php-format
+msgid "Visit %s's profile [%s]"
+msgstr "看%s的简介[%s]"
 
-#: ../../mod/settings.php:450
-msgid " Cannot change to that email."
-msgstr "不能变化到这个邮件地址。"
+#: mod/nogroup.php:46 mod/contacts.php:960
+msgid "Edit contact"
+msgstr "编熟人"
 
-#: ../../mod/settings.php:506
-msgid "Private forum has no privacy permissions. Using default privacy group."
-msgstr "私人评坛没有隐私批准。默认隐私组用者。"
+#: mod/nogroup.php:67
+msgid "Contacts who are not members of a group"
+msgstr "没当成员的熟人"
 
-#: ../../mod/settings.php:510
-msgid "Private forum has no privacy permissions and no default privacy group."
-msgstr "私人评坛没有隐私批准或默认隐私组。"
+#: mod/profperm.php:22 mod/group.php:78 index.php:410
+msgid "Permission denied"
+msgstr "权限不够"
 
-#: ../../mod/settings.php:540
-msgid "Settings updated."
-msgstr "设置跟新了"
+#: mod/profperm.php:28 mod/profperm.php:59
+msgid "Invalid profile identifier."
+msgstr "无限的简介标识符。"
 
-#: ../../mod/settings.php:613 ../../mod/settings.php:639
-#: ../../mod/settings.php:675
-msgid "Add application"
-msgstr "加入应用"
+#: mod/profperm.php:105
+msgid "Profile Visibility Editor"
+msgstr "简介能见度编辑器。"
 
-#: ../../mod/settings.php:617 ../../mod/settings.php:643
-msgid "Consumer Key"
-msgstr "钥匙(Consumer Key)"
+#: mod/profperm.php:109 mod/group.php:264
+msgid "Click on a contact to add or remove."
+msgstr "点击熟人为添加或删除。"
 
-#: ../../mod/settings.php:618 ../../mod/settings.php:644
-msgid "Consumer Secret"
-msgstr "密码(Consumer Secret)"
+#: mod/profperm.php:118
+msgid "Visible To"
+msgstr "能见被"
 
-#: ../../mod/settings.php:619 ../../mod/settings.php:645
-msgid "Redirect"
-msgstr "重定向"
+#: mod/profperm.php:134
+msgid "All Contacts (with secure profile access)"
+msgstr "所有熟人(跟安全地简介使用权)"
 
-#: ../../mod/settings.php:620 ../../mod/settings.php:646
-msgid "Icon url"
-msgstr "图符URL"
+#: mod/update_community.php:21 mod/update_display.php:25
+#: mod/update_notes.php:38 mod/update_profile.php:37 mod/update_network.php:29
+msgid "[Embedded content - reload page to view]"
+msgstr "[嵌入内容-重新加载页为看]"
 
-#: ../../mod/settings.php:631
-msgid "You can't edit this application."
-msgstr "您不能编辑这个应用。"
+#: mod/viewcontacts.php:39 mod/webfinger.php:10 mod/probe.php:9
+#: mod/community.php:17 mod/dfrn_request.php:805 mod/directory.php:33
+#: mod/videos.php:201 mod/display.php:218 mod/photos.php:982 mod/search.php:89
+#: mod/search.php:95
+msgid "Public access denied."
+msgstr "公众看拒绝"
 
-#: ../../mod/settings.php:674
-msgid "Connected Apps"
-msgstr "连接着应用"
+#: mod/viewcontacts.php:78
+msgid "No contacts."
+msgstr "没有熟人。"
 
-#: ../../mod/settings.php:678
-msgid "Client key starts with"
-msgstr "客户钥匙头字是"
+#: mod/viewsrc.php:8
+msgid "Access denied."
+msgstr "没有用权。"
 
-#: ../../mod/settings.php:679
-msgid "No name"
-msgstr "无名"
+#: mod/webfinger.php:11 mod/probe.php:10
+msgid "Only logged in users are permitted to perform a probing."
+msgstr ""
 
-#: ../../mod/settings.php:680
-msgid "Remove authorization"
-msgstr "撤消权能"
+#: mod/uimport.php:53 mod/register.php:202
+msgid ""
+"This site has exceeded the number of allowed daily account registrations. "
+"Please try again tomorrow."
+msgstr "这个网站超过一天最多账户注册。请明天再试。"
 
-#: ../../mod/settings.php:692
-msgid "No Plugin settings configured"
-msgstr "没插件设置配置了"
+#: mod/uimport.php:68 mod/register.php:299
+msgid "Import"
+msgstr "进口"
 
-#: ../../mod/settings.php:700
-msgid "Plugin Settings"
-msgstr "æ\8f\92件设置"
+#: mod/uimport.php:70
+msgid "Move account"
+msgstr "æ\8a\8aè´¦æ\88·æ\90¬å\87º"
 
-#: ../../mod/settings.php:714
-msgid "Off"
-msgstr ""
+#: mod/uimport.php:71
+msgid "You can import an account from another Friendica server."
+msgstr "您会从别的Friendica服务器进口账户"
 
-#: ../../mod/settings.php:714
-msgid "On"
-msgstr "开"
+#: mod/uimport.php:72
+msgid ""
+"You need to export your account from the old server and upload it here. We "
+"will recreate your old account here with all your contacts. We will try also"
+" to inform your friends that you moved here."
+msgstr "你需要从老服务器导出你的账户并在这里上传。我们会在这里重建你的账户,包括你所有的联系人。我们也会通知你的朋友们你搬到了这里。"
 
-#: ../../mod/settings.php:722
-msgid "Additional Features"
-msgstr "附加的特点"
+#: mod/uimport.php:73
+msgid ""
+"This feature is experimental. We can't import contacts from the OStatus "
+"network (GNU Social/Statusnet) or from Diaspora"
+msgstr "这个特性是实验性的。我们不能从 OStatus 网络 (GNU Social/Statusnet) 或者 Diaspora 导入联系人"
+
+#: mod/uimport.php:74
+msgid "Account file"
+msgstr "账户文件"
+
+#: mod/uimport.php:74
+msgid ""
+"To export your account, go to \"Settings->Export your personal data\" and "
+"select \"Export account\""
+msgstr "为了导出你的账户,点击「设置→导出你的个人信息」和选择「导出账户」"
+
+#: mod/community.php:22
+msgid "Not available."
+msgstr "不可用的"
+
+#: mod/community.php:49 mod/search.php:215
+msgid "No results."
+msgstr "没有结果。"
+
+#: mod/allfriends.php:49
+msgid "No friends to display."
+msgstr "没有朋友展示。"
+
+#: mod/bookmarklet.php:44
+msgid "The post was created"
+msgstr "文章创建了"
+
+#: mod/cal.php:146 mod/profile.php:157 mod/display.php:348
+msgid "Access to this profile has been restricted."
+msgstr "使用权这个简介被限制了."
+
+#: mod/cal.php:274 mod/events.php:379
+msgid "View"
+msgstr ""
+
+#: mod/cal.php:275 mod/events.php:381
+msgid "Previous"
+msgstr "上"
+
+#: mod/cal.php:276 mod/events.php:382 mod/install.php:204
+msgid "Next"
+msgstr "下"
+
+#: mod/cal.php:285 mod/events.php:391
+msgid "list"
+msgstr ""
+
+#: mod/cal.php:295
+msgid "User not found"
+msgstr ""
+
+#: mod/cal.php:311
+msgid "This calendar format is not supported"
+msgstr ""
+
+#: mod/cal.php:313
+msgid "No exportable data found"
+msgstr "找不到可导出的数据"
+
+#: mod/cal.php:328
+msgid "calendar"
+msgstr "日历"
+
+#: mod/content.php:121 mod/network.php:632
+msgid "No such group"
+msgstr "没有这个组"
+
+#: mod/content.php:132 mod/group.php:215 mod/network.php:653
+msgid "Group is empty"
+msgstr "组没有成员"
 
-#: ../../mod/settings.php:736 ../../mod/settings.php:737
+#: mod/content.php:137 mod/network.php:657
 #, php-format
-msgid "Built-in support for %s connectivity is %s"
-msgstr "包括的支持为%s连通性是%s"
+msgid "Group: %s"
+msgstr ""
 
-#: ../../mod/settings.php:736 ../../mod/dfrn_request.php:838
-#: ../../include/contact_selectors.php:80
-msgid "Diaspora"
-msgstr "Diaspora"
+#: mod/content.php:327 object/Item.php:106
+msgid "This entry was edited"
+msgstr "这个条目被编辑了"
 
-#: ../../mod/settings.php:736 ../../mod/settings.php:737
-msgid "enabled"
-msgstr "能够做的"
+#: mod/content.php:623 object/Item.php:414
+#, php-format
+msgid "%d comment"
+msgid_plural "%d comments"
+msgstr[0] "%d评论"
 
-#: ../../mod/settings.php:736 ../../mod/settings.php:737
-msgid "disabled"
-msgstr "已停用"
+#: mod/content.php:640 mod/photos.php:1432 object/Item.php:127
+msgid "Private Message"
+msgstr "私人的新闻"
 
-#: ../../mod/settings.php:737
-msgid "StatusNet"
-msgstr "StatusNet"
+#: mod/content.php:704 mod/photos.php:1628 object/Item.php:280
+msgid "I like this (toggle)"
+msgstr "我喜欢这(交替)"
 
-#: ../../mod/settings.php:773
-msgid "Email access is disabled on this site."
-msgstr "这个网站没有邮件使用权"
+#: mod/content.php:704 object/Item.php:280
+msgid "like"
+msgstr "喜欢"
 
-#: ../../mod/settings.php:785
-msgid "Email/Mailbox Setup"
-msgstr "邮件收件箱设置"
+#: mod/content.php:705 mod/photos.php:1629 object/Item.php:281
+msgid "I don't like this (toggle)"
+msgstr "我不喜欢这(交替)"
 
-#: ../../mod/settings.php:786
-msgid ""
-"If you wish to communicate with email contacts using this service "
-"(optional), please specify how to connect to your mailbox."
-msgstr "如果您想用这股服务(可选的)跟邮件熟人交流,请指定怎么连通您的收件箱。"
+#: mod/content.php:705 object/Item.php:281
+msgid "dislike"
+msgstr "讨厌"
 
-#: ../../mod/settings.php:787
-msgid "Last successful email check:"
-msgstr "上个成功收件箱检查:"
+#: mod/content.php:707 object/Item.php:284
+msgid "Share this"
+msgstr "分享这个"
 
-#: ../../mod/settings.php:789
-msgid "IMAP server name:"
-msgstr "IMAP服务器名字:"
+#: mod/content.php:707 object/Item.php:284
+msgid "share"
+msgstr "分享"
 
-#: ../../mod/settings.php:790
-msgid "IMAP port:"
-msgstr "IMAP服务器端口:"
+#: mod/content.php:727 mod/photos.php:1646 mod/photos.php:1688
+#: mod/photos.php:1768 object/Item.php:699
+msgid "This is you"
+msgstr "这是你"
 
-#: ../../mod/settings.php:791
-msgid "Security:"
-msgstr "安全:"
+#: mod/content.php:729 mod/content.php:952 mod/photos.php:1648
+#: mod/photos.php:1690 mod/photos.php:1770 object/Item.php:386
+#: object/Item.php:701
+msgid "Comment"
+msgstr "评论"
 
-#: ../../mod/settings.php:791 ../../mod/settings.php:796
-msgid "None"
-msgstr "没有"
+#: mod/content.php:731 object/Item.php:703
+msgid "Bold"
+msgstr "粗体"
 
-#: ../../mod/settings.php:792
-msgid "Email login name:"
-msgstr "邮件登记名:"
+#: mod/content.php:732 object/Item.php:704
+msgid "Italic"
+msgstr "斜体"
 
-#: ../../mod/settings.php:793
-msgid "Email password:"
-msgstr "邮件密码:"
+#: mod/content.php:733 object/Item.php:705
+msgid "Underline"
+msgstr "下划线"
 
-#: ../../mod/settings.php:794
-msgid "Reply-to address:"
-msgstr "å\9b\9eç­\94å\9c°å\9d\80ï¼\9a"
+#: mod/content.php:734 object/Item.php:706
+msgid "Quote"
+msgstr "å¼\95语"
 
-#: ../../mod/settings.php:795
-msgid "Send public posts to all email contacts:"
-msgstr "发公开的文章给所有的邮件熟人:"
+#: mod/content.php:735 object/Item.php:707
+msgid "Code"
+msgstr "源代码"
 
-#: ../../mod/settings.php:796
-msgid "Action after import:"
-msgstr "进口后行动:"
+#: mod/content.php:736 object/Item.php:708
+msgid "Image"
+msgstr "图片"
 
-#: ../../mod/settings.php:796
-msgid "Mark as seen"
-msgstr "标注看过"
+#: mod/content.php:737 object/Item.php:709
+msgid "Link"
+msgstr "链接"
 
-#: ../../mod/settings.php:796
-msgid "Move to folder"
-msgstr "搬到文件夹"
+#: mod/content.php:738 object/Item.php:710
+msgid "Video"
+msgstr "录像"
 
-#: ../../mod/settings.php:797
-msgid "Move to folder:"
-msgstr "搬到文件夹:"
+#: mod/content.php:748 mod/settings.php:740 object/Item.php:132
+#: object/Item.php:134
+msgid "Edit"
+msgstr "编辑"
 
-#: ../../mod/settings.php:878
-msgid "Display Settings"
-msgstr "表示设置"
+#: mod/content.php:774 object/Item.php:247
+msgid "add star"
+msgstr "加星"
 
-#: ../../mod/settings.php:884 ../../mod/settings.php:899
-msgid "Display Theme:"
-msgstr "æ\98¾ç¤ºä¸»é¢\98ï¼\9a"
+#: mod/content.php:775 object/Item.php:248
+msgid "remove star"
+msgstr "æ\88æ\98\9f"
 
-#: ../../mod/settings.php:885
-msgid "Mobile Theme:"
-msgstr "手机主题:"
+#: mod/content.php:776 object/Item.php:249
+msgid "toggle star status"
+msgstr "转变星现状"
 
-#: ../../mod/settings.php:886
-msgid "Update browser every xx seconds"
-msgstr "更新游览器每XX秒"
+#: mod/content.php:779 object/Item.php:252
+msgid "starred"
+msgstr "被贴星"
 
-#: ../../mod/settings.php:886
-msgid "Minimum of 10 seconds, no maximum"
-msgstr "最小10秒,没有上限"
+#: mod/content.php:780 mod/content.php:802 object/Item.php:269
+msgid "add tag"
+msgstr "加标签"
 
-#: ../../mod/settings.php:887
-msgid "Number of items to display per page:"
-msgstr "每页表示多少项目:"
+#: mod/content.php:791 object/Item.php:257
+msgid "ignore thread"
+msgstr "忽视主题"
 
-#: ../../mod/settings.php:887 ../../mod/settings.php:888
-msgid "Maximum of 100 items"
-msgstr "最多100项目"
+#: mod/content.php:792 object/Item.php:258
+msgid "unignore thread"
+msgstr "别忽视主题"
 
-#: ../../mod/settings.php:888
-msgid "Number of items to display per page when viewed from mobile device:"
-msgstr "用手机看一页展示多少项目:"
+#: mod/content.php:793 object/Item.php:259
+msgid "toggle ignore status"
+msgstr "切换忽视状态"
 
-#: ../../mod/settings.php:889
-msgid "Don't show emoticons"
-msgstr "å\88«è¡¨ç¤ºè¯·è¡¨ç¬¦å\8f·"
+#: mod/content.php:796 mod/ostatus_subscribe.php:76 object/Item.php:262
+msgid "ignored"
+msgstr "忽è§\86"
 
-#: ../../mod/settings.php:890
-msgid "Don't show notices"
-msgstr "别表提示"
+#: mod/content.php:807 object/Item.php:151
+msgid "save to folder"
+msgstr "保存在文件夹"
 
-#: ../../mod/settings.php:891
-msgid "Infinite scroll"
-msgstr "无限的滚动"
+#: mod/content.php:855 object/Item.php:221
+msgid "I will attend"
+msgstr ""
 
-#: ../../mod/settings.php:892
-msgid "Automatic updates only at the top of the network page"
+#: mod/content.php:855 object/Item.php:221
+msgid "I will not attend"
 msgstr ""
 
-#: ../../mod/settings.php:969
-msgid "User Types"
+#: mod/content.php:855 object/Item.php:221
+msgid "I might attend"
 msgstr ""
 
-#: ../../mod/settings.php:970
-msgid "Community Types"
-msgstr ""
+#: mod/content.php:919 object/Item.php:352
+msgid "to"
+msgstr "至"
+
+#: mod/content.php:920 object/Item.php:354
+msgid "Wall-to-Wall"
+msgstr "从墙到墙"
+
+#: mod/content.php:921 object/Item.php:355
+msgid "via Wall-To-Wall:"
+msgstr "通过从墙到墙"
+
+#: mod/dfrn_confirm.php:73 mod/profiles.php:24 mod/profiles.php:134
+#: mod/profiles.php:181 mod/profiles.php:617
+msgid "Profile not found."
+msgstr "找不到简介。"
+
+#: mod/dfrn_confirm.php:130
+msgid ""
+"This may occasionally happen if contact was requested by both persons and it"
+" has already been approved."
+msgstr "这会偶尔地发生熟人双方都要求和已经批准的时候。"
+
+#: mod/dfrn_confirm.php:247
+msgid "Response from remote site was not understood."
+msgstr "遥网站的回答明白不了。"
+
+#: mod/dfrn_confirm.php:256 mod/dfrn_confirm.php:261
+msgid "Unexpected response from remote site: "
+msgstr "居然回答从遥网站:"
+
+#: mod/dfrn_confirm.php:270
+msgid "Confirmation completed successfully."
+msgstr "确认成功完成。"
+
+#: mod/dfrn_confirm.php:272 mod/dfrn_confirm.php:286 mod/dfrn_confirm.php:293
+msgid "Remote site reported: "
+msgstr "远程站点报告:"
+
+#: mod/dfrn_confirm.php:284
+msgid "Temporary failure. Please wait and try again."
+msgstr "临时失败。请等一会,再试。"
+
+#: mod/dfrn_confirm.php:291
+msgid "Introduction failed or was revoked."
+msgstr "介绍失败或被吊销。"
+
+#: mod/dfrn_confirm.php:420
+msgid "Unable to set contact photo."
+msgstr "不会指定熟人照片。"
+
+#: mod/dfrn_confirm.php:561
+#, php-format
+msgid "No user record found for '%s' "
+msgstr "找不到「%s」的用户记录"
+
+#: mod/dfrn_confirm.php:571
+msgid "Our site encryption key is apparently messed up."
+msgstr "看起来我们的加密钥匙失灵了。"
+
+#: mod/dfrn_confirm.php:582
+msgid "Empty site URL was provided or URL could not be decrypted by us."
+msgstr "空的URL供应,或URL解不了码。"
+
+#: mod/dfrn_confirm.php:604
+msgid "Contact record was not found for you on our site."
+msgstr "熟人记录在我们的网站找不了。"
+
+#: mod/dfrn_confirm.php:618
+#, php-format
+msgid "Site public key not available in contact record for URL %s."
+msgstr "没有网站公开钥匙在熟人记录在URL%s。"
+
+#: mod/dfrn_confirm.php:638
+msgid ""
+"The ID provided by your system is a duplicate on our system. It should work "
+"if you try again."
+msgstr "身份证明由您的系统是在我们的重做。你再试应该运行。"
+
+#: mod/dfrn_confirm.php:649
+msgid "Unable to set your contact credentials on our system."
+msgstr "不能创作您的熟人证件在我们的系统。"
+
+#: mod/dfrn_confirm.php:711
+msgid "Unable to update your contact profile details on our system"
+msgstr "不能更新您的熟人简介消息在我们的系统"
+
+#: mod/dfrn_confirm.php:783
+#, php-format
+msgid "%1$s has joined %2$s"
+msgstr "%1$s加入%2$s了"
+
+#: mod/dfrn_poll.php:114 mod/dfrn_poll.php:550
+#, php-format
+msgid "%1$s welcomes %2$s"
+msgstr "%1$s欢迎%2$s"
+
+#: mod/dfrn_request.php:104
+msgid "This introduction has already been accepted."
+msgstr "这个介绍已经接受了。"
+
+#: mod/dfrn_request.php:127 mod/dfrn_request.php:529
+msgid "Profile location is not valid or does not contain profile information."
+msgstr "简介位置失效或不包含简介信息。"
+
+#: mod/dfrn_request.php:132 mod/dfrn_request.php:534
+msgid "Warning: profile location has no identifiable owner name."
+msgstr "警告:简介位置没有可设别的主名。"
+
+#: mod/dfrn_request.php:135 mod/dfrn_request.php:537
+msgid "Warning: profile location has no profile photo."
+msgstr "警告:简介位置没有简介图。"
+
+#: mod/dfrn_request.php:139 mod/dfrn_request.php:541
+#, php-format
+msgid "%d required parameter was not found at the given location"
+msgid_plural "%d required parameters were not found at the given location"
+msgstr[0] "%d需要的参数没找到在输入的位置。"
+
+#: mod/dfrn_request.php:183
+msgid "Introduction complete."
+msgstr "介绍完成的。"
+
+#: mod/dfrn_request.php:228
+msgid "Unrecoverable protocol error."
+msgstr "不能恢复的协议错误"
+
+#: mod/dfrn_request.php:256
+msgid "Profile unavailable."
+msgstr "简介无效"
+
+#: mod/dfrn_request.php:283
+#, php-format
+msgid "%s has received too many connection requests today."
+msgstr "%s今天已经受到了太多联络要求"
+
+#: mod/dfrn_request.php:284
+msgid "Spam protection measures have been invoked."
+msgstr "垃圾保护措施被用了。"
+
+#: mod/dfrn_request.php:285
+msgid "Friends are advised to please try again in 24 hours."
+msgstr "朋友们被建议请24小时后再试。"
+
+#: mod/dfrn_request.php:347
+msgid "Invalid locator"
+msgstr "无效找到物"
+
+#: mod/dfrn_request.php:356
+msgid "Invalid email address."
+msgstr "无效的邮件地址。"
+
+#: mod/dfrn_request.php:381
+msgid "This account has not been configured for email. Request failed."
+msgstr "这个账户没有设置用电子邮件。要求没通过。"
+
+#: mod/dfrn_request.php:484
+msgid "You have already introduced yourself here."
+msgstr "您已经自我介绍这儿。"
+
+#: mod/dfrn_request.php:488
+#, php-format
+msgid "Apparently you are already friends with %s."
+msgstr "看上去您已经是%s的朋友。"
+
+#: mod/dfrn_request.php:509
+msgid "Invalid profile URL."
+msgstr "无效的简介URL。"
+
+#: mod/dfrn_request.php:594 mod/contacts.php:222
+msgid "Failed to update contact record."
+msgstr "更新熟人记录失败了。"
+
+#: mod/dfrn_request.php:615
+msgid "Your introduction has been sent."
+msgstr "您的介绍发布了。"
+
+#: mod/dfrn_request.php:657
+msgid ""
+"Remote subscription can't be done for your network. Please subscribe "
+"directly on your system."
+msgstr ""
+
+#: mod/dfrn_request.php:678
+msgid "Please login to confirm introduction."
+msgstr "请登记为确认介绍。"
+
+#: mod/dfrn_request.php:688
+msgid ""
+"Incorrect identity currently logged in. Please login to "
+"<strong>this</strong> profile."
+msgstr "错误的用户登记者。请用<strong>这个</strong>用户。"
+
+#: mod/dfrn_request.php:702 mod/dfrn_request.php:719
+msgid "Confirm"
+msgstr "确认"
+
+#: mod/dfrn_request.php:714
+msgid "Hide this contact"
+msgstr "隐藏这个熟人"
+
+#: mod/dfrn_request.php:717
+#, php-format
+msgid "Welcome home %s."
+msgstr "欢迎%s。"
+
+#: mod/dfrn_request.php:718
+#, php-format
+msgid "Please confirm your introduction/connection request to %s."
+msgstr "请确认您的介绍/联络要求给%s。"
+
+#: mod/dfrn_request.php:849
+msgid ""
+"Please enter your 'Identity Address' from one of the following supported "
+"communications networks:"
+msgstr "请输入您的「同一人地址」这些支持的交通网络中:"
+
+#: mod/dfrn_request.php:873
+#, php-format
+msgid ""
+"If you are not yet a member of the free social web, <a "
+"href=\"%s/siteinfo\">follow this link to find a public Friendica site and "
+"join us today</a>."
+msgstr ""
+
+#: mod/dfrn_request.php:878
+msgid "Friend/Connection Request"
+msgstr "朋友/连接请求"
+
+#: mod/dfrn_request.php:879
+msgid ""
+"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, "
+"testuser@identi.ca"
+msgstr "比如:jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"
+
+#: mod/dfrn_request.php:880 mod/follow.php:149
+msgid "Please answer the following:"
+msgstr "请回答下述的:"
+
+#: mod/dfrn_request.php:881 mod/follow.php:150
+#, php-format
+msgid "Does %s know you?"
+msgstr "%s是否认识你?"
+
+#: mod/dfrn_request.php:885 mod/follow.php:151
+msgid "Add a personal note:"
+msgstr "添加一个个人便条:"
+
+#: mod/dfrn_request.php:888
+msgid "StatusNet/Federated Social Web"
+msgstr "StatusNet/联合社会化网"
+
+#: mod/dfrn_request.php:890
+#, php-format
+msgid ""
+" - please do not use this form.  Instead, enter %s into your Diaspora search"
+" bar."
+msgstr " - 请别用这个表格。反而输入%s在您的Diaspora搜索功能。"
+
+#: mod/dfrn_request.php:891 mod/follow.php:157 mod/unfollow.php:113
+msgid "Your Identity Address:"
+msgstr "您的同一个人地址:"
+
+#: mod/dfrn_request.php:894 mod/follow.php:63 mod/unfollow.php:65
+msgid "Submit Request"
+msgstr "提交要求"
+
+#: mod/directory.php:195 view/theme/vier/theme.php:194
+msgid "Global Directory"
+msgstr "综合目录"
+
+#: mod/directory.php:197
+msgid "Find on this site"
+msgstr "找在这网站"
+
+#: mod/directory.php:199
+msgid "Results for:"
+msgstr ""
+
+#: mod/directory.php:201
+msgid "Site Directory"
+msgstr "网站目录"
+
+#: mod/directory.php:208
+msgid "No entries (some entries may be hidden)."
+msgstr "没有文章(有的文章会被隐藏)。"
+
+#: mod/dirfind.php:40
+#, php-format
+msgid "People Search - %s"
+msgstr ""
+
+#: mod/dirfind.php:51
+#, php-format
+msgid "Forum Search - %s"
+msgstr ""
+
+#: mod/dirfind.php:248 mod/match.php:113
+msgid "No matches"
+msgstr "没有结果"
+
+#: mod/editpost.php:20 mod/editpost.php:30
+msgid "Item not found"
+msgstr "项目没找到"
+
+#: mod/editpost.php:35
+msgid "Edit post"
+msgstr "编辑文章"
+
+#: mod/events.php:97 mod/events.php:99
+msgid "Event can not end before it has started."
+msgstr ""
+
+#: mod/events.php:106 mod/events.php:108
+msgid "Event title and start time are required."
+msgstr "项目标题和开始时间是必须的。"
+
+#: mod/events.php:380
+msgid "Create New Event"
+msgstr "创建新的事件"
+
+#: mod/events.php:485
+msgid "Event details"
+msgstr "项目内容"
+
+#: mod/events.php:486
+msgid "Starting date and Title are required."
+msgstr "需要开始日期和标题。"
+
+#: mod/events.php:487 mod/events.php:488
+msgid "Event Starts:"
+msgstr "事件开始:"
+
+#: mod/events.php:487 mod/events.php:499 mod/profiles.php:707
+msgid "Required"
+msgstr "必须的"
+
+#: mod/events.php:489 mod/events.php:505
+msgid "Finish date/time is not known or not relevant"
+msgstr "结束日/时未知或无关"
+
+#: mod/events.php:491 mod/events.php:492
+msgid "Event Finishes:"
+msgstr "事件结束:"
+
+#: mod/events.php:493 mod/events.php:506
+msgid "Adjust for viewer timezone"
+msgstr "调为观众的时间"
+
+#: mod/events.php:495
+msgid "Description:"
+msgstr "描述:"
+
+#: mod/events.php:499 mod/events.php:501
+msgid "Title:"
+msgstr "标题:"
+
+#: mod/events.php:502 mod/events.php:503
+msgid "Share this event"
+msgstr "分享这个项目"
+
+#: mod/events.php:532
+msgid "Failed to remove event"
+msgstr "删除事件失败"
+
+#: mod/events.php:534
+msgid "Event removed"
+msgstr "事件已删除"
+
+#: mod/fetch.php:16 mod/fetch.php:43 mod/fetch.php:52 mod/help.php:57
+#: mod/p.php:20 mod/p.php:47 mod/p.php:56 index.php:302
+msgid "Not Found"
+msgstr "未发现"
+
+#: mod/follow.php:42
+msgid "Contact added"
+msgstr "熟人添了"
+
+#: mod/follow.php:74
+msgid "You already added this contact."
+msgstr "你已经添加了这个联系人。"
+
+#: mod/follow.php:83
+msgid "Diaspora support isn't enabled. Contact can't be added."
+msgstr "Diaspora 支持没被启用。无法添加联系人。"
+
+#: mod/follow.php:90
+msgid "OStatus support is disabled. Contact can't be added."
+msgstr "OStatus 支持没被启用。无法添加联系人。"
+
+#: mod/follow.php:97
+msgid "The network type couldn't be detected. Contact can't be added."
+msgstr "网络类型无法被检测。无法添加联系人。"
+
+#: mod/follow.php:166 mod/notifications.php:258 mod/contacts.php:653
+#: mod/unfollow.php:122
+msgid "Profile URL"
+msgstr ""
+
+#: mod/friendica.php:70
+msgid "This is Friendica, version"
+msgstr "这是Friendica,版本"
+
+#: mod/friendica.php:71
+msgid "running at web location"
+msgstr "运作再网址"
+
+#: mod/friendica.php:75
+msgid ""
+"Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn "
+"more about the Friendica project."
+msgstr "请看<a href=\"http://friendica.com\">Friendica.com</a>发现多关于Friendica工程。"
+
+#: mod/friendica.php:79
+msgid "Bug reports and issues: please visit"
+msgstr "问题报案:请去"
+
+#: mod/friendica.php:79
+msgid "the bugtracker at github"
+msgstr ""
+
+#: mod/friendica.php:82
+msgid ""
+"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - "
+"dot com"
+msgstr "建议,夸奖,捐赠,等-请发邮件到「 Info」在Friendica点com"
+
+#: mod/friendica.php:96
+msgid "Installed plugins/addons/apps:"
+msgstr "安装的插件/加件/应用:"
+
+#: mod/friendica.php:110
+msgid "No installed plugins/addons/apps"
+msgstr "没有安装的插件/应用"
+
+#: mod/friendica.php:115
+msgid "On this server the following remote servers are blocked."
+msgstr "在这个服务器上以下远程服务器被封禁了。"
+
+#: mod/friendica.php:116 mod/admin.php:290 mod/admin.php:308
+msgid "Reason for the block"
+msgstr "封禁原因"
+
+#: mod/group.php:31
+msgid "Group created."
+msgstr "群组已创建。"
+
+#: mod/group.php:37
+msgid "Could not create group."
+msgstr "无法创建群组。"
+
+#: mod/group.php:51 mod/group.php:156
+msgid "Group not found."
+msgstr "组找不到。"
+
+#: mod/group.php:65
+msgid "Group name changed."
+msgstr "组名变化了。"
+
+#: mod/group.php:95
+msgid "Save Group"
+msgstr "保存组"
+
+#: mod/group.php:100
+msgid "Create a group of contacts/friends."
+msgstr "创建一组联系人/朋友。"
+
+#: mod/group.php:125
+msgid "Group removed."
+msgstr "组删除了。"
+
+#: mod/group.php:127
+msgid "Unable to remove group."
+msgstr "不能删除组。"
+
+#: mod/group.php:191
+msgid "Delete Group"
+msgstr "删除群组"
+
+#: mod/group.php:197
+msgid "Group Editor"
+msgstr "组编辑器"
+
+#: mod/group.php:202
+msgid "Edit Group Name"
+msgstr "编辑群组名称"
+
+#: mod/group.php:212
+msgid "Members"
+msgstr "成员"
+
+#: mod/group.php:214 mod/contacts.php:721
+msgid "All Contacts"
+msgstr "所有的熟人"
+
+#: mod/group.php:228
+msgid "Remove Contact"
+msgstr "删除联系人"
+
+#: mod/group.php:252
+msgid "Add Contact"
+msgstr "添加联系人"
+
+#: mod/hcard.php:14
+msgid "No profile"
+msgstr "无简介"
+
+#: mod/help.php:45
+msgid "Help:"
+msgstr "帮助:"
+
+#: mod/help.php:60 index.php:305
+msgid "Page not found."
+msgstr "页发现。"
+
+#: mod/home.php:42
+#, php-format
+msgid "Welcome to %s"
+msgstr "%s欢迎你"
+
+#: mod/install.php:109
+msgid "Friendica Communications Server - Setup"
+msgstr "Friendica沟通服务器-安装"
+
+#: mod/install.php:115
+msgid "Could not connect to database."
+msgstr "解不了数据库。"
+
+#: mod/install.php:119
+msgid "Could not create table."
+msgstr "无法创建表格。"
+
+#: mod/install.php:125
+msgid "Your Friendica site database has been installed."
+msgstr "您Friendica网站数据库被安装了。"
+
+#: mod/install.php:130
+msgid ""
+"You may need to import the file \"database.sql\" manually using phpmyadmin "
+"or mysql."
+msgstr "您可能要手工地进口文件「database.sql」用phpmyadmin或mysql。"
+
+#: mod/install.php:131 mod/install.php:203 mod/install.php:550
+msgid "Please see the file \"INSTALL.txt\"."
+msgstr "请看文件「INSTALL.txt」"
+
+#: mod/install.php:143
+msgid "Database already in use."
+msgstr ""
+
+#: mod/install.php:200
+msgid "System check"
+msgstr "系统检测"
+
+#: mod/install.php:205
+msgid "Check again"
+msgstr "再检测"
+
+#: mod/install.php:224
+msgid "Database connection"
+msgstr "数据库接通"
+
+#: mod/install.php:225
+msgid ""
+"In order to install Friendica we need to know how to connect to your "
+"database."
+msgstr "为安装Friendica我们要知道怎么连接您的数据库。"
+
+#: mod/install.php:226
+msgid ""
+"Please contact your hosting provider or site administrator if you have "
+"questions about these settings."
+msgstr "你有关于这些设置有问题的话,请给互联网托管服务或者网页管理联系。"
+
+#: mod/install.php:227
+msgid ""
+"The database you specify below should already exist. If it does not, please "
+"create it before continuing."
+msgstr "您下边指定的数据库应该已经存在。如果还没有,请创建后继续。"
+
+#: mod/install.php:231
+msgid "Database Server Name"
+msgstr "数据库服务器名"
+
+#: mod/install.php:232
+msgid "Database Login Name"
+msgstr "数据库登录名"
+
+#: mod/install.php:233
+msgid "Database Login Password"
+msgstr "数据库登录密码"
+
+#: mod/install.php:233
+msgid "For security reasons the password must not be empty"
+msgstr "由于安全的原因,密码不能为空"
+
+#: mod/install.php:234
+msgid "Database Name"
+msgstr "数据库名字"
+
+#: mod/install.php:235 mod/install.php:276
+msgid "Site administrator email address"
+msgstr "网站行政人员邮件地址"
+
+#: mod/install.php:235 mod/install.php:276
+msgid ""
+"Your account email address must match this in order to use the web admin "
+"panel."
+msgstr "您账户邮件地址必要符合这个为用网站处理仪表板"
+
+#: mod/install.php:239 mod/install.php:279
+msgid "Please select a default timezone for your website"
+msgstr "请选择您网站的默认时区"
+
+#: mod/install.php:266
+msgid "Site settings"
+msgstr "网站设置"
+
+#: mod/install.php:280
+msgid "System Language:"
+msgstr "系统语言:"
+
+#: mod/install.php:280
+msgid ""
+"Set the default language for your Friendica installation interface and to "
+"send emails."
+msgstr ""
+
+#: mod/install.php:320
+msgid "Could not find a command line version of PHP in the web server PATH."
+msgstr "没找到命令行PHP在网服务器PATH。"
+
+#: mod/install.php:321
+msgid ""
+"If you don't have a command line version of PHP installed on server, you "
+"will not be able to run the background processing. See <a "
+"href='https://github.com/friendica/friendica/blob/master/doc/Install.md#set-"
+"up-the-poller'>'Setup the poller'</a>"
+msgstr ""
+
+#: mod/install.php:325
+msgid "PHP executable path"
+msgstr "PHP可执行路径"
+
+#: mod/install.php:325
+msgid ""
+"Enter full path to php executable. You can leave this blank to continue the "
+"installation."
+msgstr "输入全路线到php执行程序。您会留空白为继续安装。"
+
+#: mod/install.php:330
+msgid "Command line PHP"
+msgstr "命令行PHP"
+
+#: mod/install.php:339
+msgid "PHP executable is not the php cli binary (could be cgi-fgci version)"
+msgstr "PHP执行程序不是命令行PHP執行檔(有可能是cgi-fgci版本)"
+
+#: mod/install.php:340
+msgid "Found PHP version: "
+msgstr "找到 PHP 版本:"
+
+#: mod/install.php:342
+msgid "PHP cli binary"
+msgstr "命令行PHP執行檔"
+
+#: mod/install.php:353
+msgid ""
+"The command line version of PHP on your system does not have "
+"\"register_argc_argv\" enabled."
+msgstr "您系统的命令行PHP没有能够「register_argc_argv」。"
+
+#: mod/install.php:354
+msgid "This is required for message delivery to work."
+msgstr "这必要为通信发布成功。"
+
+#: mod/install.php:356
+msgid "PHP register_argc_argv"
+msgstr "PHP register_argc_argv"
+
+#: mod/install.php:379
+msgid ""
+"Error: the \"openssl_pkey_new\" function on this system is not able to "
+"generate encryption keys"
+msgstr "错误:这系统的「register_argc_argv」子程序不能产生加密钥匙"
+
+#: mod/install.php:380
+msgid ""
+"If running under Windows, please see "
+"\"http://www.php.net/manual/en/openssl.installation.php\"."
+msgstr "如果您用Windows,请看「http://www.php.net/manual/en/openssl.installation.php」。"
+
+#: mod/install.php:382
+msgid "Generate encryption keys"
+msgstr "产生加密钥匙"
+
+#: mod/install.php:389
+msgid "libCurl PHP module"
+msgstr "libCurl PHP模块"
+
+#: mod/install.php:390
+msgid "GD graphics PHP module"
+msgstr "GD显示PHP模块"
+
+#: mod/install.php:391
+msgid "OpenSSL PHP module"
+msgstr "OpenSSL PHP模块"
+
+#: mod/install.php:392
+msgid "PDO or MySQLi PHP module"
+msgstr ""
+
+#: mod/install.php:393
+msgid "mb_string PHP module"
+msgstr "mb_string PHP模块"
+
+#: mod/install.php:394
+msgid "XML PHP module"
+msgstr "XML PHP 模块"
+
+#: mod/install.php:395
+msgid "iconv module"
+msgstr "iconv 模块"
+
+#: mod/install.php:399 mod/install.php:401
+msgid "Apache mod_rewrite module"
+msgstr "Apache mod_rewrite部件"
+
+#: mod/install.php:399
+msgid ""
+"Error: Apache webserver mod-rewrite module is required but not installed."
+msgstr "错误:Apache服务器的mod-rewrite模块是必要的可却不安装的。"
+
+#: mod/install.php:407
+msgid "Error: libCURL PHP module required but not installed."
+msgstr "错误:libCurl PHP模块是必要的可却不安装的。"
+
+#: mod/install.php:411
+msgid ""
+"Error: GD graphics PHP module with JPEG support required but not installed."
+msgstr "错误:GD显示PHP模块跟JPEG支持是必要的可却安装的。"
+
+#: mod/install.php:415
+msgid "Error: openssl PHP module required but not installed."
+msgstr "错误:openssl PHP模块是必要的可却不安装的。"
+
+#: mod/install.php:419
+msgid "Error: PDO or MySQLi PHP module required but not installed."
+msgstr ""
+
+#: mod/install.php:423
+msgid "Error: The MySQL driver for PDO is not installed."
+msgstr ""
+
+#: mod/install.php:427
+msgid "Error: mb_string PHP module required but not installed."
+msgstr "错误:mbstring PHP模块必要可没安装的。"
+
+#: mod/install.php:431
+msgid "Error: iconv PHP module required but not installed."
+msgstr ""
+
+#: mod/install.php:441
+msgid "Error, XML PHP module required but not installed."
+msgstr ""
+
+#: mod/install.php:453
+msgid ""
+"The web installer needs to be able to create a file called \".htconfig.php\""
+" in the top folder of your web server and it is unable to do so."
+msgstr "网页安装器要创建一个叫 \".htconfig.php\" 的文件在你的 web 服务器的顶层目录下,但无法这么做。"
+
+#: mod/install.php:454
+msgid ""
+"This is most often a permission setting, as the web server may not be able "
+"to write files in your folder - even if you can."
+msgstr "这常常是一个权设置,因为网服务器可能不会写文件在文件夹-即使您会。"
+
+#: mod/install.php:455
+msgid ""
+"At the end of this procedure, we will give you a text to save in a file "
+"named .htconfig.php in your Friendica top folder."
+msgstr "这个步骤头,我们给您正文要保存在叫.htconfig.php的文件在您Friendica主文件夹。"
+
+#: mod/install.php:456
+msgid ""
+"You can alternatively skip this procedure and perform a manual installation."
+" Please see the file \"INSTALL.txt\" for instructions."
+msgstr "或者您会这个步骤不做还是实行手动的安装。请看INSTALL.txt文件为说明。"
+
+#: mod/install.php:459
+msgid ".htconfig.php is writable"
+msgstr ".htconfig.php是可写的"
+
+#: mod/install.php:469
+msgid ""
+"Friendica uses the Smarty3 template engine to render its web views. Smarty3 "
+"compiles templates to PHP to speed up rendering."
+msgstr "Friendica用Smarty3模板机车为建筑网页。Smarty3把模板编译成PHP为催建筑网页。"
+
+#: mod/install.php:470
+msgid ""
+"In order to store these compiled templates, the web server needs to have "
+"write access to the directory view/smarty3/ under the Friendica top level "
+"folder."
+msgstr "为了保存这些模板,网服务器要写权利于view/smarty3/目录在Friendica主目录下。"
+
+#: mod/install.php:471
+msgid ""
+"Please ensure that the user that your web server runs as (e.g. www-data) has"
+" write access to this folder."
+msgstr "请保险您网服务器用户(比如www-data)有这个目录的写权利。"
+
+#: mod/install.php:472
+msgid ""
+"Note: as a security measure, you should give the web server write access to "
+"view/smarty3/ only--not the template files (.tpl) that it contains."
+msgstr "注意:为了安全,您应该只给网服务器写权利于view/smarty3/-没有模板文件(.tpl)之下。"
+
+#: mod/install.php:475
+msgid "view/smarty3 is writable"
+msgstr "能写view/smarty3"
+
+#: mod/install.php:491
+msgid ""
+"Url rewrite in .htaccess is not working. Check your server configuration."
+msgstr "在 .htaccess 中的 URL 重写不工作。请检查你的服务器配置。"
+
+#: mod/install.php:493
+msgid "Url rewrite is working"
+msgstr "URL改写发挥机能"
+
+#: mod/install.php:512
+msgid "ImageMagick PHP extension is not installed"
+msgstr ""
+
+#: mod/install.php:514
+msgid "ImageMagick PHP extension is installed"
+msgstr ""
+
+#: mod/install.php:516
+msgid "ImageMagick supports GIF"
+msgstr "ImageMagick 支持 GIF"
+
+#: mod/install.php:523
+msgid ""
+"The database configuration file \".htconfig.php\" could not be written. "
+"Please use the enclosed text to create a configuration file in your web "
+"server root."
+msgstr "数据库配置文件 \".htconfig.php\" 无法被写入。请在 web 服务器根目录下使用附上的文字创建一个配置文件。"
+
+#: mod/install.php:548
+msgid "<h1>What next</h1>"
+msgstr "<h1>下步是什么</h1>"
+
+#: mod/install.php:549
+msgid ""
+"IMPORTANT: You will need to [manually] setup a scheduled task for the "
+"poller."
+msgstr "重要:您要[手工地]准备安排的任务给喂器。"
+
+#: mod/invite.php:31
+msgid "Total invitation limit exceeded."
+msgstr "邀请限超过了。"
+
+#: mod/invite.php:54
+#, php-format
+msgid "%s : Not a valid email address."
+msgstr "%s : 不是效的电子邮件地址."
+
+#: mod/invite.php:79
+msgid "Please join us on Friendica"
+msgstr "请加入我们再Friendica"
+
+#: mod/invite.php:90
+msgid "Invitation limit exceeded. Please contact your site administrator."
+msgstr "邀请限超过了。请联系您的网站管理员。"
+
+#: mod/invite.php:94
+#, php-format
+msgid "%s : Message delivery failed."
+msgstr "%s : 送消息失败了。"
+
+#: mod/invite.php:98
+#, php-format
+msgid "%d message sent."
+msgid_plural "%d messages sent."
+msgstr[0] "%d消息传送了。"
+
+#: mod/invite.php:117
+msgid "You have no more invitations available"
+msgstr "您没有别的邀请"
+
+#: mod/invite.php:125
+#, php-format
+msgid ""
+"Visit %s for a list of public sites that you can join. Friendica members on "
+"other sites can all connect with each other, as well as with members of many"
+" other social networks."
+msgstr "参观%s看一单公开网站您会加入。Friendica成员在别的网站都会互相连接,再跟很多别的社会网络。"
+
+#: mod/invite.php:127
+#, php-format
+msgid ""
+"To accept this invitation, please visit and register at %s or any other "
+"public Friendica website."
+msgstr "为接受这个邀请,请再%s或什么别的Friendica网站注册。"
+
+#: mod/invite.php:128
+#, php-format
+msgid ""
+"Friendica sites all inter-connect to create a huge privacy-enhanced social "
+"web that is owned and controlled by its members. They can also connect with "
+"many traditional social networks. See %s for a list of alternate Friendica "
+"sites you can join."
+msgstr "Friendica 站点互相连接来创建一个增强隐私的由他们的成员拥有并控制的社交网络。它们也能跟多传统的社交网络连接。看 %s 来获取一份你可以选择加入的 Friendica 站点。"
+
+#: mod/invite.php:132
+msgid ""
+"Our apologies. This system is not currently configured to connect with other"
+" public sites or invite members."
+msgstr "不好意思。这个系统目前没设置跟别的公开网站连接或邀请成员。"
+
+#: mod/invite.php:135
+#, php-format
+msgid "To accept this invitation, please visit and register at %s."
+msgstr ""
+
+#: mod/invite.php:136
+msgid ""
+"Friendica sites all inter-connect to create a huge privacy-enhanced social "
+"web that is owned and controlled by its members. They can also connect with "
+"many traditional social networks."
+msgstr ""
+
+#: mod/invite.php:142
+msgid "Send invitations"
+msgstr "发请柬"
+
+#: mod/invite.php:143
+msgid "Enter email addresses, one per line:"
+msgstr "输入电子邮件地址,一行一个:"
+
+#: mod/invite.php:144 mod/message.php:332 mod/message.php:515
+#: mod/wallmessage.php:138
+msgid "Your message:"
+msgstr "你的消息:"
+
+#: mod/invite.php:145
+msgid ""
+"You are cordially invited to join me and other close friends on Friendica - "
+"and help us to create a better social web."
+msgstr "在 Friendica,你被诚挚地邀请来加入我和其他亲密的朋友-并帮助我们创建更好的社会网络。"
+
+#: mod/invite.php:147
+msgid "You will need to supply this invitation code: $invite_code"
+msgstr "您要输入这个邀请密码:$invite_code"
+
+#: mod/invite.php:147
+msgid ""
+"Once you have registered, please connect with me via my profile page at:"
+msgstr "您一注册,请页跟我连接,用我的简介在:"
+
+#: mod/invite.php:149
+msgid ""
+"For more information about the Friendica project and why we feel it is "
+"important, please visit http://friendi.ca"
+msgstr ""
+
+#: mod/item.php:119
+msgid "Unable to locate original post."
+msgstr "找不到当初的新闻"
+
+#: mod/item.php:346
+msgid "Empty post discarded."
+msgstr "空帖子被丢弃了。"
+
+#: mod/item.php:903
+msgid "System error. Post not saved."
+msgstr "系统错误。x"
+
+#: mod/item.php:994
+#, php-format
+msgid ""
+"This message was sent to you by %s, a member of the Friendica social "
+"network."
+msgstr "这个新闻是由%s,Friendica社会化网络成员之一,发给你。"
+
+#: mod/item.php:996
+#, php-format
+msgid "You may visit them online at %s"
+msgstr "你可以网上拜访他在%s"
+
+#: mod/item.php:997
+msgid ""
+"Please contact the sender by replying to this post if you do not wish to "
+"receive these messages."
+msgstr "你不想受到这些新闻的话,请回答这个新闻给发者联系。"
+
+#: mod/item.php:1001
+#, php-format
+msgid "%s posted an update."
+msgstr "%s贴上一个新闻。"
+
+#: mod/localtime.php:26
+msgid "Time Conversion"
+msgstr "时间装换"
+
+#: mod/localtime.php:28
+msgid ""
+"Friendica provides this service for sharing events with other networks and "
+"friends in unknown timezones."
+msgstr "Friendica提供这个服务目的是分享项目跟别的网络和朋友们在别的时区。"
+
+#: mod/localtime.php:32
+#, php-format
+msgid "UTC time: %s"
+msgstr "UTC时间: %s"
+
+#: mod/localtime.php:35
+#, php-format
+msgid "Current timezone: %s"
+msgstr "现在时区: %s"
+
+#: mod/localtime.php:38
+#, php-format
+msgid "Converted localtime: %s"
+msgstr "装换的当地时间:%s"
+
+#: mod/localtime.php:43
+msgid "Please select your timezone:"
+msgstr "请选择你的时区:"
+
+#: mod/lostpass.php:22
+msgid "No valid account found."
+msgstr "找不到效的账户。"
+
+#: mod/lostpass.php:38
+msgid "Password reset request issued. Check your email."
+msgstr "重设密码要求发布了。核对您的收件箱。"
+
+#: mod/lostpass.php:44
+#, php-format
+msgid ""
+"\n"
+"\t\tDear %1$s,\n"
+"\t\t\tA request was recently received at \"%2$s\" to reset your account\n"
+"\t\tpassword. In order to confirm this request, please select the verification link\n"
+"\t\tbelow or paste it into your web browser address bar.\n"
+"\n"
+"\t\tIf you did NOT request this change, please DO NOT follow the link\n"
+"\t\tprovided and ignore and/or delete this email.\n"
+"\n"
+"\t\tYour password will not be changed unless we can verify that you\n"
+"\t\tissued this request."
+msgstr "\n\t\t亲爱的%1$s,\n\t\t\t最近\"%2$s\"收到重设你账号密码要求。为了验证此要求,请点击\n\t\t下面的链接或者粘贴在浏览器。\n\n\t\t如果你没请求这个变化,请别点击并忽视或删除这个邮件。\n\n\t\t你的密码将不改变除非我们验证这个请求是由你发地。"
+
+#: mod/lostpass.php:55
+#, php-format
+msgid ""
+"\n"
+"\t\tFollow this link to verify your identity:\n"
+"\n"
+"\t\t%1$s\n"
+"\n"
+"\t\tYou will then receive a follow-up message containing the new password.\n"
+"\t\tYou may change that password from your account settings page after logging in.\n"
+"\n"
+"\t\tThe login details are as follows:\n"
+"\n"
+"\t\tSite Location:\t%2$s\n"
+"\t\tLogin Name:\t%3$s"
+msgstr "\n\t\t点击西面的链接为验证你的身份:\n\n\t\t%1$s\n\n\t\t你将收一个邮件包括新的密码。登录之后你能改密码在设置页面。\n\n\t\t登录消息是:\n\n\t\t网站地址:\t%2$s\n\t\t用户名:\t%3$s"
+
+#: mod/lostpass.php:74
+#, php-format
+msgid "Password reset requested at %s"
+msgstr "重设密码要求被发布%s"
+
+#: mod/lostpass.php:94
+msgid ""
+"Request could not be verified. (You may have previously submitted it.) "
+"Password reset failed."
+msgstr "要求确认不了。(您可能已经提交它。)重设密码失败了。"
+
+#: mod/lostpass.php:113 boot.php:884
+msgid "Password Reset"
+msgstr "复位密码"
+
+#: mod/lostpass.php:114
+msgid "Your password has been reset as requested."
+msgstr "您的密码被重设如要求的。"
+
+#: mod/lostpass.php:115
+msgid "Your new password is"
+msgstr "你的新的密码是"
+
+#: mod/lostpass.php:116
+msgid "Save or copy your new password - and then"
+msgstr "保存或复制新密码-之后"
+
+#: mod/lostpass.php:117
+msgid "click here to login"
+msgstr "在这儿点击"
+
+#: mod/lostpass.php:118
+msgid ""
+"Your password may be changed from the <em>Settings</em> page after "
+"successful login."
+msgstr "您的密码能被变化从<em>设置</em>页成功登记后。"
+
+#: mod/lostpass.php:128
+#, php-format
+msgid ""
+"\n"
+"\t\t\t\tDear %1$s,\n"
+"\t\t\t\t\tYour password has been changed as requested. Please retain this\n"
+"\t\t\t\tinformation for your records (or change your password immediately to\n"
+"\t\t\t\tsomething that you will remember).\n"
+"\t\t\t"
+msgstr "\n\t\t\t\t亲戚的%1$s,\n\t\t\t\t\t你的密码于你的要求被改了。请保存这个消息或者\n\t\t\t\t立刻改密码成什么容易回忆的。\n\t\t\t"
+
+#: mod/lostpass.php:134
+#, php-format
+msgid ""
+"\n"
+"\t\t\t\tYour login details are as follows:\n"
+"\n"
+"\t\t\t\tSite Location:\t%1$s\n"
+"\t\t\t\tLogin Name:\t%2$s\n"
+"\t\t\t\tPassword:\t%3$s\n"
+"\n"
+"\t\t\t\tYou may change that password from your account settings page after logging in.\n"
+"\t\t\t"
+msgstr "\n\t\t\t\t你的登录消息是:\n\n\t\t\t\t网站地址:%1$s\n\t\t\t\t用户名:%2$s\n\t\t\t\t密码:%3$s\n\n\t\t\t\t登录后你能改密码在设置页面。\n\t\t\t"
+
+#: mod/lostpass.php:150
+#, php-format
+msgid "Your password has been changed at %s"
+msgstr "您密码被变化在%s"
 
-#: ../../mod/settings.php:971
-msgid "Normal Account Page"
-msgstr "平常账æ\88·é¡µ"
+#: mod/lostpass.php:162
+msgid "Forgot your Password?"
+msgstr "å¿\98è®°ä½ ç\9a\84å¯\86ç \81å\90\97ï¼\9f"
 
-#: ../../mod/settings.php:972
-msgid "This account is a normal personal profile"
-msgstr "这个帐户是正常私人简介"
+#: mod/lostpass.php:163
+msgid ""
+"Enter your email address and submit to have your password reset. Then check "
+"your email for further instructions."
+msgstr "输入您的邮件地址和提交为重置密码。然后核对收件箱看别的说明。"
 
-#: ../../mod/settings.php:975
-msgid "Soapbox Page"
-msgstr "æ¼\94讲å\8f°é¡µ"
+#: mod/lostpass.php:164 boot.php:872
+msgid "Nickname or Email: "
+msgstr "æ\98µç§°æ\88\96é\82®ä»¶å\9c°å\9d\80ï¼\9a"
 
-#: ../../mod/settings.php:976
-msgid "Automatically approve all connection/friend requests as read-only fans"
-msgstr "自动批准所有联络/友谊要求当只看的迷"
+#: mod/lostpass.php:165
+msgid "Reset"
+msgstr "复位"
 
-#: ../../mod/settings.php:979
-msgid "Community Forum/Celebrity Account"
-msgstr "社ä¼\9aè¯\84å\9d\9bï¼\8få\90\8d人账æ\88·"
+#: mod/manage.php:153
+msgid "Manage Identities and/or Pages"
+msgstr "管ç\90\86身份æ\88\96页"
 
-#: ../../mod/settings.php:980
+#: mod/manage.php:154
 msgid ""
-"Automatically approve all connection/friend requests as read-write fans"
-msgstr "自动批准所有联络/友谊要求当看写的迷"
-
-#: ../../mod/settings.php:983
-msgid "Automatic Friend Page"
-msgstr "自动朋友页"
-
-#: ../../mod/settings.php:984
-msgid "Automatically approve all connection/friend requests as friends"
-msgstr "自动批准所有联络/友谊要求当朋友"
-
-#: ../../mod/settings.php:987
-msgid "Private Forum [Experimental]"
-msgstr "隐私评坛[实验性的 ]"
+"Toggle between different identities or community/group pages which share "
+"your account details or which you have been granted \"manage\" permissions"
+msgstr "交替不同同一人或社会/组页合用您的账户或给您「管理」批准"
 
-#: ../../mod/settings.php:988
-msgid "Private forum - approved members only"
-msgstr "é\9a\90ç§\81è¯\84å\9d\9bï¼\8då\8fªæ\89¹å\87\86ç\9a\84æ\88\90å\91\98"
+#: mod/manage.php:155
+msgid "Select an identity to manage: "
+msgstr "é\80\89æ\8b©å\90\8cä¸\80个人管ç\90\86ï¼\9a"
 
-#: ../../mod/settings.php:1000
-msgid "OpenID:"
-msgstr "OpenID:"
+#: mod/match.php:39
+msgid "No keywords to match. Please add keywords to your default profile."
+msgstr "没有符合的关键字。请在您的默认简介加关键字。"
 
-#: ../../mod/settings.php:1000
-msgid "(Optional) Allow this OpenID to login to this account."
-msgstr "(可选的)许这个OpenID这个账户登记。"
+#: mod/match.php:92
+msgid "is interested in:"
+msgstr "感兴趣对:"
 
-#: ../../mod/settings.php:1010
-msgid "Publish your default profile in your local site directory?"
-msgstr "出版您默认简介在您当地的网站目录?"
+#: mod/match.php:106
+msgid "Profile Match"
+msgstr "简介符合"
 
-#: ../../mod/settings.php:1010 ../../mod/settings.php:1016
-#: ../../mod/settings.php:1024 ../../mod/settings.php:1028
-#: ../../mod/settings.php:1033 ../../mod/settings.php:1039
-#: ../../mod/settings.php:1045 ../../mod/settings.php:1051
-#: ../../mod/settings.php:1081 ../../mod/settings.php:1082
-#: ../../mod/settings.php:1083 ../../mod/settings.php:1084
-#: ../../mod/settings.php:1085 ../../mod/dfrn_request.php:830
-#: ../../mod/register.php:234 ../../mod/profiles.php:661
-#: ../../mod/profiles.php:665 ../../mod/api.php:106
-msgid "No"
-msgstr "否"
+#: mod/message.php:63 mod/wallmessage.php:53
+msgid "No recipient selected."
+msgstr "没有选择的接受者。"
 
-#: ../../mod/settings.php:1016
-msgid "Publish your default profile in the global social directory?"
-msgstr "出版您默认简介在综合社会目录?"
+#: mod/message.php:67
+msgid "Unable to locate contact information."
+msgstr "找不到熟人信息。"
 
-#: ../../mod/settings.php:1024
-msgid "Hide your contact/friend list from viewers of your default profile?"
-msgstr "藏起来  发现您的熟人/朋友单不让这个简介看着看?\n "
+#: mod/message.php:70 mod/wallmessage.php:59
+msgid "Message could not be sent."
+msgstr "消息发不了。"
 
-#: ../../mod/settings.php:1028 ../../include/conversation.php:1057
-msgid "Hide your profile details from unknown viewers?"
-msgstr "使简介信息给陌生的看着看不了?"
+#: mod/message.php:73 mod/wallmessage.php:62
+msgid "Message collection failure."
+msgstr "通信受到错误。"
 
-#: ../../mod/settings.php:1028
-msgid ""
-"If enabled, posting public messages to Diaspora and other networks isn't "
-"possible."
-msgstr ""
+#: mod/message.php:76 mod/wallmessage.php:65
+msgid "Message sent."
+msgstr "消息发了"
 
-#: ../../mod/settings.php:1033
-msgid "Allow friends to post to your profile page?"
-msgstr "允许朋友们贴文章在您的简介页?"
+#: mod/message.php:205
+msgid "Do you really want to delete this message?"
+msgstr "您真的想删除这个通知吗?"
 
-#: ../../mod/settings.php:1039
-msgid "Allow friends to tag your posts?"
-msgstr "允许朋友们标签您的文章?"
+#: mod/message.php:225
+msgid "Message deleted."
+msgstr "消息删除了。"
 
-#: ../../mod/settings.php:1045
-msgid "Allow us to suggest you as a potential friend to new members?"
-msgstr "允许我们建议您潜力朋友给新成员?"
+#: mod/message.php:255
+msgid "Conversation removed."
+msgstr "交流删除了。"
 
-#: ../../mod/settings.php:1051
-msgid "Permit unknown people to send you private mail?"
-msgstr "å\85\81许ç\94\9f人å¯\84ç»\99æ\82¨ç§\81人é\82®ä»¶ï¼\9f"
+#: mod/message.php:322 mod/wallmessage.php:129
+msgid "Send Private Message"
+msgstr "å\8f\91ç§\81人ç\9a\84é\80\9aä¿¡"
 
-#: ../../mod/settings.php:1059
-msgid "Profile is <strong>not published</strong>."
-msgstr "简介是<strong>没出版</strong>"
+#: mod/message.php:323 mod/message.php:510 mod/wallmessage.php:131
+msgid "To:"
+msgstr "到:"
 
-#: ../../mod/settings.php:1067
-msgid "Your Identity Address is"
-msgstr "您的同一个人地址是"
+#: mod/message.php:328 mod/message.php:512 mod/wallmessage.php:132
+msgid "Subject:"
+msgstr "题目:"
 
-#: ../../mod/settings.php:1078
-msgid "Automatically expire posts after this many days:"
-msgstr "自动地过期文章这数天:"
+#: mod/message.php:364
+msgid "No messages."
+msgstr "没有消息"
 
-#: ../../mod/settings.php:1078
-msgid "If empty, posts will not expire. Expired posts will be deleted"
-msgstr "如果空的,文章不会过期。过期的文章被删除"
+#: mod/message.php:403
+msgid "Message not available."
+msgstr "通信不可用的"
 
-#: ../../mod/settings.php:1079
-msgid "Advanced expiration settings"
-msgstr "å\85\88è¿\9bç\9a\84è¿\87æ\9c\9f设置"
+#: mod/message.php:478
+msgid "Delete message"
+msgstr "å\88 é\99¤æ¶\88æ\81¯"
 
-#: ../../mod/settings.php:1080
-msgid "Advanced Expiration"
-msgstr "å\85\88è¿\9bç\9a\84è¿\87æ\9c\9f"
+#: mod/message.php:503 mod/message.php:591
+msgid "Delete conversation"
+msgstr "å\88 é\99¤äº¤è°\88"
 
-#: ../../mod/settings.php:1081
-msgid "Expire posts:"
-msgstr "把文章过期:"
+#: mod/message.php:505
+msgid ""
+"No secure communications available. You <strong>may</strong> be able to "
+"respond from the sender's profile page."
+msgstr "没可用的安全交通。您<strong>可能</strong>会在发送人的简介页会回答。"
 
-#: ../../mod/settings.php:1082
-msgid "Expire personal notes:"
-msgstr "把私人便条过期:"
+#: mod/message.php:509
+msgid "Send Reply"
+msgstr "发回答"
 
-#: ../../mod/settings.php:1083
-msgid "Expire starred posts:"
-msgstr "把星的文章过期:"
+#: mod/message.php:561
+#, php-format
+msgid "Unknown sender - %s"
+msgstr "生发送人-%s"
 
-#: ../../mod/settings.php:1084
-msgid "Expire photos:"
-msgstr "把照片过期:"
+#: mod/message.php:563
+#, php-format
+msgid "You and %s"
+msgstr "您和%s"
 
-#: ../../mod/settings.php:1085
-msgid "Only expire posts by others:"
-msgstr "只别人的文章过期:"
+#: mod/message.php:565
+#, php-format
+msgid "%s and You"
+msgstr "%s和您"
 
-#: ../../mod/settings.php:1111
-msgid "Account Settings"
-msgstr "帐户设置"
+#: mod/message.php:594
+msgid "D, d M Y - g:i A"
+msgstr "D, d M Y - g:i A"
 
-#: ../../mod/settings.php:1119
-msgid "Password Settings"
-msgstr "密码设置"
+#: mod/message.php:597
+#, php-format
+msgid "%d message"
+msgid_plural "%d messages"
+msgstr[0] "%d通知"
 
-#: ../../mod/settings.php:1120
-msgid "New Password:"
-msgstr "新密码:"
+#: mod/mood.php:136
+msgid "Mood"
+msgstr "心情"
 
-#: ../../mod/settings.php:1121
-msgid "Confirm:"
-msgstr "确认:"
+#: mod/mood.php:137
+msgid "Set your current mood and tell your friends"
+msgstr "选择现在的心情而告诉朋友们"
 
-#: ../../mod/settings.php:1121
-msgid "Leave password fields blank unless changing"
-msgstr "非变化留空密码栏"
+#: mod/network.php:187 mod/search.php:28
+msgid "Remove term"
+msgstr "删除关键字"
 
-#: ../../mod/settings.php:1122
-msgid "Current Password:"
-msgstr "目前密码:"
+#: mod/network.php:561
+#, php-format
+msgid ""
+"Warning: This group contains %s member from a network that doesn't allow non"
+" public messages."
+msgid_plural ""
+"Warning: This group contains %s members from a network that doesn't allow "
+"non public messages."
+msgstr[0] "警告:这个组包含 %s 来自不允许非公开消息的网络的成员。"
 
-#: ../../mod/settings.php:1122 ../../mod/settings.php:1123
-msgid "Your current password to confirm the changes"
-msgstr "您目前密码为确认变化"
+#: mod/network.php:564
+msgid "Messages in this group won't be send to these receivers."
+msgstr "这个组中的消息不会被发送至这些接收者。"
 
-#: ../../mod/settings.php:1123
-msgid "Password:"
-msgstr "密码:"
+#: mod/network.php:684
+msgid "Private messages to this person are at risk of public disclosure."
+msgstr "私人通信给这个人回被公开。"
 
-#: ../../mod/settings.php:1127
-msgid "Basic Settings"
-msgstr "基础设置"
+#: mod/network.php:688
+msgid "Invalid contact."
+msgstr "无效熟人。"
 
-#: ../../mod/settings.php:1128 ../../include/profile_advanced.php:15
-msgid "Full Name:"
-msgstr "全名:"
+#: mod/network.php:892
+msgid "Commented Order"
+msgstr "评论时间顺序"
 
-#: ../../mod/settings.php:1129
-msgid "Email Address:"
-msgstr "电子邮件地址:"
+#: mod/network.php:895
+msgid "Sort by Comment Date"
+msgstr "按评论日期顺序排列"
 
-#: ../../mod/settings.php:1130
-msgid "Your Timezone:"
-msgstr "您的时区:"
+#: mod/network.php:900
+msgid "Posted Order"
+msgstr "贴时间顺序"
 
-#: ../../mod/settings.php:1131
-msgid "Default Post Location:"
-msgstr "默认文章位置:"
+#: mod/network.php:903
+msgid "Sort by Post Date"
+msgstr "按发布日期顺序排列"
 
-#: ../../mod/settings.php:1132
-msgid "Use Browser Location:"
-msgstr "用游览器位置:"
+#: mod/network.php:914
+msgid "Posts that mention or involve you"
+msgstr "提或关您的文章"
 
-#: ../../mod/settings.php:1135
-msgid "Security and Privacy Settings"
-msgstr "安全和隐私设置"
+#: mod/network.php:922
+msgid "New"
+msgstr ""
 
-#: ../../mod/settings.php:1137
-msgid "Maximum Friend Requests/Day:"
-msgstr "æ\9c\80å¤\9aå\8f\8bè°\8aè¦\81æ±\82个天ï¼\9a"
+#: mod/network.php:925
+msgid "Activity Stream - by date"
+msgstr "æ´»å\8a¨æ²³æµ\81ï¼\8dæ\8c\89æ\97¥æ\9c\9f"
 
-#: ../../mod/settings.php:1137 ../../mod/settings.php:1167
-msgid "(to prevent spam abuse)"
-msgstr "(为防止垃圾邮件滥用)"
+#: mod/network.php:933
+msgid "Shared Links"
+msgstr "共享的链接"
 
-#: ../../mod/settings.php:1138
-msgid "Default Post Permissions"
-msgstr "默认文章准许"
+#: mod/network.php:936
+msgid "Interesting Links"
+msgstr "有意思的超链接"
 
-#: ../../mod/settings.php:1139
-msgid "(click to open/close)"
-msgstr "(点击为打开/关闭)"
+#: mod/network.php:944
+msgid "Starred"
+msgstr "被星"
 
-#: ../../mod/settings.php:1148 ../../mod/photos.php:1146
-#: ../../mod/photos.php:1519
-msgid "Show to Groups"
-msgstr "给组表示"
+#: mod/network.php:947
+msgid "Favourite Posts"
+msgstr "最喜欢的文章"
 
-#: ../../mod/settings.php:1149 ../../mod/photos.php:1147
-#: ../../mod/photos.php:1520
-msgid "Show to Contacts"
-msgstr "给熟人表示"
+#: mod/notifications.php:38
+msgid "Invalid request identifier."
+msgstr "无效要求身份号。"
 
-#: ../../mod/settings.php:1150
-msgid "Default Private Post"
-msgstr "默认私人文章"
+#: mod/notifications.php:47 mod/notifications.php:183
+#: mod/notifications.php:230
+msgid "Discard"
+msgstr "丢弃"
 
-#: ../../mod/settings.php:1151
-msgid "Default Public Post"
-msgstr "默认公开文章"
+#: mod/notifications.php:63 mod/notifications.php:182
+#: mod/notifications.php:266 mod/contacts.php:635 mod/contacts.php:835
+#: mod/contacts.php:1020
+msgid "Ignore"
+msgstr "忽视"
 
-#: ../../mod/settings.php:1155
-msgid "Default Permissions for New Posts"
-msgstr "默认权利为新文章"
+#: mod/notifications.php:108
+msgid "Network Notifications"
+msgstr "网络通知"
 
-#: ../../mod/settings.php:1167
-msgid "Maximum private messages per day from unknown people:"
-msgstr "一天最多从生人私人邮件:"
+#: mod/notifications.php:114 mod/notify.php:73
+msgid "System Notifications"
+msgstr "系统通知"
 
-#: ../../mod/settings.php:1170
-msgid "Notification Settings"
-msgstr "消息设置"
+#: mod/notifications.php:120
+msgid "Personal Notifications"
+msgstr "私人通知"
 
-#: ../../mod/settings.php:1171
-msgid "By default post a status message when:"
-msgstr "默认地发现状通知如果:"
+#: mod/notifications.php:126
+msgid "Home Notifications"
+msgstr "主页通知"
 
-#: ../../mod/settings.php:1172
-msgid "accepting a friend request"
-msgstr "æ\8e¥å\8f\97æ\9c\8bå\8f\8bé\82\80请"
+#: mod/notifications.php:155
+msgid "Show Ignored Requests"
+msgstr "æ\98¾ç¤ºä¸\8dç\90\86ç\9a\84è¦\81æ±\82"
 
-#: ../../mod/settings.php:1173
-msgid "joining a forum/community"
-msgstr "加入评坛/社会"
+#: mod/notifications.php:155
+msgid "Hide Ignored Requests"
+msgstr "隐藏不理的要求"
 
-#: ../../mod/settings.php:1174
-msgid "making an <em>interesting</em> profile change"
-msgstr "把简介有意思地变修改"
+#: mod/notifications.php:167 mod/notifications.php:237
+msgid "Notification type: "
+msgstr "通知种类:"
 
-#: ../../mod/settings.php:1175
-msgid "Send a notification email when:"
-msgstr "发一个消息要是:"
+#: mod/notifications.php:170
+#, php-format
+msgid "suggested by %s"
+msgstr "由%s建议的"
 
-#: ../../mod/settings.php:1176
-msgid "You receive an introduction"
-msgstr "你受到一个介绍"
+#: mod/notifications.php:175 mod/notifications.php:254 mod/contacts.php:642
+msgid "Hide this contact from others"
+msgstr "隐藏这个熟人给别人"
 
-#: ../../mod/settings.php:1177
-msgid "Your introductions are confirmed"
-msgstr "你的介绍确认了"
+#: mod/notifications.php:176 mod/notifications.php:255
+msgid "Post a new friend activity"
+msgstr "表新朋友活动"
 
-#: ../../mod/settings.php:1178
-msgid "Someone writes on your profile wall"
-msgstr "æ\9f\90人å\86\99å\9c¨ä½ ç\9a\84ç®\80å\8e\86å¢\99"
+#: mod/notifications.php:176 mod/notifications.php:255
+msgid "if applicable"
+msgstr "æ\88\96é\80\82ç\94¨"
 
-#: ../../mod/settings.php:1179
-msgid "Someone writes a followup comment"
-msgstr "æ\9f\90人å\86\99ä¸\80个å\90\8eç»­ç\9a\84è¯\84论"
+#: mod/notifications.php:179 mod/notifications.php:264 mod/admin.php:1604
+msgid "Approve"
+msgstr "æ\89¹å\87\86"
 
-#: ../../mod/settings.php:1180
-msgid "You receive a private message"
-msgstr "你受到一个私消息"
+#: mod/notifications.php:198
+msgid "Claims to be known to you: "
+msgstr "声称被您认识:"
 
-#: ../../mod/settings.php:1181
-msgid "You receive a friend suggestion"
-msgstr "你受到一个朋友建议"
+#: mod/notifications.php:199
+msgid "yes"
+msgstr ""
 
-#: ../../mod/settings.php:1182
-msgid "You are tagged in a post"
-msgstr "你被在新闻标签"
+#: mod/notifications.php:199
+msgid "no"
+msgstr ""
 
-#: ../../mod/settings.php:1183
-msgid "You are poked/prodded/etc. in a post"
-msgstr "您在文章被戳"
+#: mod/notifications.php:200 mod/notifications.php:205
+msgid "Shall your connection be bidirectional or not?"
+msgstr ""
 
-#: ../../mod/settings.php:1185
-msgid "Text-only notification emails"
+#: mod/notifications.php:201 mod/notifications.php:206
+#, php-format
+msgid ""
+"Accepting %s as a friend allows %s to subscribe to your posts, and you will "
+"also receive updates from them in your news feed."
 msgstr ""
 
-#: ../../mod/settings.php:1187
-msgid "Send text only notification emails, without the html part"
+#: mod/notifications.php:202
+#, php-format
+msgid ""
+"Accepting %s as a subscriber allows them to subscribe to your posts, but you"
+" will not receive updates from them in your news feed."
 msgstr ""
 
-#: ../../mod/settings.php:1189
-msgid "Advanced Account/Page Type Settings"
-msgstr "专家账户/页种设置"
+#: mod/notifications.php:207
+#, php-format
+msgid ""
+"Accepting %s as a sharer allows them to subscribe to your posts, but you "
+"will not receive updates from them in your news feed."
+msgstr ""
 
-#: ../../mod/settings.php:1190
-msgid "Change the behaviour of this account for special situations"
-msgstr "æ\8a\8aè¿\99个账æ\88·ç\89¹å\88«æ\83\85å\86µç\9a\84æ\97¶å\80\99è¡\8cå\8a¨å\8f\98å\8c\96"
+#: mod/notifications.php:218
+msgid "Friend"
+msgstr "æ\9c\8bå\8f\8b"
 
-#: ../../mod/settings.php:1193
-msgid "Relocate"
-msgstr "调动"
+#: mod/notifications.php:219
+msgid "Sharer"
+msgstr "分享者"
 
-#: ../../mod/settings.php:1194
-msgid ""
-"If you have moved this profile from another server, and some of your "
-"contacts don't receive your updates, try pushing this button."
-msgstr "如果您调动这个简介从别的服务器但有的熟人没收到您的更新,尝试按这个钮。"
+#: mod/notifications.php:219
+msgid "Subscriber"
+msgstr "订阅者"
 
-#: ../../mod/settings.php:1195
-msgid "Resend relocate message to contacts"
-msgstr "æ\8a\8aè°\83å\8a¨ä¿¡æ\81¯å¯\84ç»\99ç\86\9f人"
+#: mod/notifications.php:275
+msgid "No introductions."
+msgstr "没æ\9c\89ä»\8bç»\8dã\80\82"
 
-#: ../../mod/dfrn_request.php:95
-msgid "This introduction has already been accepted."
-msgstr "这个介绍已经接受了。"
+#: mod/notifications.php:316
+msgid "Show unread"
+msgstr "显示未读"
 
-#: ../../mod/dfrn_request.php:120 ../../mod/dfrn_request.php:518
-msgid "Profile location is not valid or does not contain profile information."
-msgstr "简介位置失效或不包含简介信息。"
+#: mod/notifications.php:316
+msgid "Show all"
+msgstr "显示全部"
 
-#: ../../mod/dfrn_request.php:125 ../../mod/dfrn_request.php:523
-msgid "Warning: profile location has no identifiable owner name."
-msgstr "警告:简介位置没有可设别的主名。"
+#: mod/notifications.php:322
+#, php-format
+msgid "No more %s notifications."
+msgstr ""
 
-#: ../../mod/dfrn_request.php:127 ../../mod/dfrn_request.php:525
-msgid "Warning: profile location has no profile photo."
-msgstr "警告:简介位置没有简介图。"
+#: mod/notify.php:69
+msgid "No more system notifications."
+msgstr "没别系统通知。"
 
-#: ../../mod/dfrn_request.php:130 ../../mod/dfrn_request.php:528
-#, php-format
-msgid "%d required parameter was not found at the given location"
-msgid_plural "%d required parameters were not found at the given location"
-msgstr[0] "%d需要的参数没找到在输入的位置。"
+#: mod/oexchange.php:25
+msgid "Post successful."
+msgstr "评论发表了。"
 
-#: ../../mod/dfrn_request.php:172
-msgid "Introduction complete."
-msgstr "介绍完成的。"
+#: mod/openid.php:25
+msgid "OpenID protocol error. No ID returned."
+msgstr "OpenID协议错误。没ID还。 "
 
-#: ../../mod/dfrn_request.php:214
-msgid "Unrecoverable protocol error."
-msgstr "不能恢复的协议错误"
+#: mod/openid.php:61
+msgid ""
+"Account not found and OpenID registration is not permitted on this site."
+msgstr "找不到账户和OpenID注册不允许。"
 
-#: ../../mod/dfrn_request.php:242
-msgid "Profile unavailable."
-msgstr "简介无效"
+#: mod/ostatus_subscribe.php:17
+msgid "Subscribing to OStatus contacts"
+msgstr "正在订阅 OStatus 联系人"
 
-#: ../../mod/dfrn_request.php:267
-#, php-format
-msgid "%s has received too many connection requests today."
-msgstr "%s今天已经受到了太多联络要求"
+#: mod/ostatus_subscribe.php:28
+msgid "No contact provided."
+msgstr ""
 
-#: ../../mod/dfrn_request.php:268
-msgid "Spam protection measures have been invoked."
-msgstr "垃圾保护措施被用了。"
+#: mod/ostatus_subscribe.php:34
+msgid "Couldn't fetch information for contact."
+msgstr ""
 
-#: ../../mod/dfrn_request.php:269
-msgid "Friends are advised to please try again in 24 hours."
-msgstr "朋友们被建议请24小时后再试。"
+#: mod/ostatus_subscribe.php:43
+msgid "Couldn't fetch friends for contact."
+msgstr ""
 
-#: ../../mod/dfrn_request.php:331
-msgid "Invalid locator"
-msgstr "无效找到物"
+#: mod/ostatus_subscribe.php:57 mod/repair_ostatus.php:47
+msgid "Done"
+msgstr "完成"
 
-#: ../../mod/dfrn_request.php:340
-msgid "Invalid email address."
-msgstr "æ\97 æ\95\88ç\9a\84é\82®ä»¶å\9c°å\9d\80ã\80\82"
+#: mod/ostatus_subscribe.php:71
+msgid "success"
+msgstr "æ\88\90å\8a\9f"
 
-#: ../../mod/dfrn_request.php:367
-msgid "This account has not been configured for email. Request failed."
-msgstr "这个账户没有设置用电子邮件。要求没通过。"
+#: mod/ostatus_subscribe.php:73
+msgid "failed"
+msgstr "失败"
 
-#: ../../mod/dfrn_request.php:463
-msgid "Unable to resolve your name at the provided location."
-msgstr "ä¸\8då\8f¯ç\96\8f解æ\82¨ç\9a\84å\90\8då­\97å\86\8dè¾\93å\85¥ç\9a\84ä½\8dç½®。"
+#: mod/ostatus_subscribe.php:81 mod/repair_ostatus.php:53
+msgid "Keep this window open until done."
+msgstr "ä¿\9dæ\8c\81çª\97å\8f£æ\89\93å¼\80ç\9b´å\88°å®\8cæ\88\90。"
 
-#: ../../mod/dfrn_request.php:476
-msgid "You have already introduced yourself here."
-msgstr "您已经自我介绍这儿。"
+#: mod/p.php:13
+msgid "Not Extended"
+msgstr ""
 
-#: ../../mod/dfrn_request.php:480
-#, php-format
-msgid "Apparently you are already friends with %s."
-msgstr "看上去您已经是%s的朋友。"
+#: mod/poke.php:198
+msgid "Poke/Prod"
+msgstr "戳"
 
-#: ../../mod/dfrn_request.php:501
-msgid "Invalid profile URL."
-msgstr "æ\97 æ\95\88ç\9a\84ç®\80ä»\8bURLã\80\82"
+#: mod/poke.php:199
+msgid "poke, prod or do other things to somebody"
+msgstr "æ\8a\8a人家æ\88³æ\88\96å\88«ç\9a\84è¡\8cå\8a¨"
 
-#: ../../mod/dfrn_request.php:507 ../../include/follow.php:27
-msgid "Disallowed profile URL."
-msgstr "不允许的简介地址."
+#: mod/poke.php:200
+msgid "Recipient"
+msgstr "接受者"
 
-#: ../../mod/dfrn_request.php:597
-msgid "Your introduction has been sent."
-msgstr "您的介绍发布了。"
+#: mod/poke.php:201
+msgid "Choose what you wish to do to recipient"
+msgstr "选择您想把别人作"
 
-#: ../../mod/dfrn_request.php:650
-msgid "Please login to confirm introduction."
-msgstr "请登记为确认介绍。"
+#: mod/poke.php:204
+msgid "Make this post private"
+msgstr "使这个文章私人"
 
-#: ../../mod/dfrn_request.php:660
-msgid ""
-"Incorrect identity currently logged in. Please login to "
-"<strong>this</strong> profile."
-msgstr "错误的用户登记者。请用<strong>这个</strong>用户。"
+#: mod/profile.php:177
+msgid "Tips for New Members"
+msgstr "新人建议"
 
-#: ../../mod/dfrn_request.php:671
-msgid "Hide this contact"
-msgstr "隐藏这个熟人"
+#: mod/profile_photo.php:45
+msgid "Image uploaded but image cropping failed."
+msgstr "照片上传去了,但修剪失灵。"
 
-#: ../../mod/dfrn_request.php:674
+#: mod/profile_photo.php:78 mod/profile_photo.php:86 mod/profile_photo.php:94
+#: mod/profile_photo.php:323
 #, php-format
-msgid "Welcome home %s."
-msgstr "欢迎%s。"
+msgid "Image size reduction [%s] failed."
+msgstr "照片减少[%s]失灵。"
 
-#: ../../mod/dfrn_request.php:675
-#, php-format
-msgid "Please confirm your introduction/connection request to %s."
-msgstr "请确认您的介绍/联络要求给%s。"
+#: mod/profile_photo.php:128
+msgid ""
+"Shift-reload the page or clear browser cache if the new photo does not "
+"display immediately."
+msgstr "万一新照片一会出现,换档重新加载或者成为空浏览器高速缓存。"
 
-#: ../../mod/dfrn_request.php:676
-msgid "Confirm"
-msgstr "确认"
+#: mod/profile_photo.php:137
+msgid "Unable to process image"
+msgstr "不能处理照片"
 
-#: ../../mod/dfrn_request.php:804
-msgid ""
-"Please enter your 'Identity Address' from one of the following supported "
-"communications networks:"
-msgstr "请输入您的「同一人地址」这些支持的交通网络中:"
+#: mod/profile_photo.php:156 mod/wall_upload.php:182 mod/photos.php:816
+#, php-format
+msgid "Image exceeds size limit of %s"
+msgstr ""
 
-#: ../../mod/dfrn_request.php:824
-msgid ""
-"If you are not yet a member of the free social web, <a "
-"href=\"http://dir.friendica.com/siteinfo\">follow this link to find a public"
-" Friendica site and join us today</a>."
-msgstr "如果您还没有自由社会网络成员之一,<a href=\"http://dir.friendica.com/siteinfo\">点击这个环节找公开Friendica网站今天加入</a>."
+#: mod/profile_photo.php:165 mod/wall_upload.php:219 mod/photos.php:857
+msgid "Unable to process image."
+msgstr "处理不了图像."
 
-#: ../../mod/dfrn_request.php:827
-msgid "Friend/Connection Request"
-msgstr "朋友/联络要求。"
+#: mod/profile_photo.php:254
+msgid "Upload File:"
+msgstr "上传文件:"
 
-#: ../../mod/dfrn_request.php:828
-msgid ""
-"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, "
-"testuser@identi.ca"
-msgstr "比如:jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"
+#: mod/profile_photo.php:255
+msgid "Select a profile:"
+msgstr "选择一个简介"
 
-#: ../../mod/dfrn_request.php:829
-msgid "Please answer the following:"
-msgstr "请回答下述的:"
+#: mod/profile_photo.php:257
+msgid "Upload"
+msgstr "上传"
 
-#: ../../mod/dfrn_request.php:830
-#, php-format
-msgid "Does %s know you?"
-msgstr "%s是否认识你?"
+#: mod/profile_photo.php:260
+msgid "or"
+msgstr "或者"
 
-#: ../../mod/dfrn_request.php:834
-msgid "Add a personal note:"
-msgstr "添加个人的便条"
+#: mod/profile_photo.php:260
+msgid "skip this step"
+msgstr "略过这步"
 
-#: ../../mod/dfrn_request.php:836 ../../include/contact_selectors.php:76
-msgid "Friendica"
-msgstr "Friendica"
+#: mod/profile_photo.php:260
+msgid "select a photo from your photo albums"
+msgstr "从您的照片册选择一片。"
 
-#: ../../mod/dfrn_request.php:837
-msgid "StatusNet/Federated Social Web"
-msgstr "StatusNet/联合社会化网"
+#: mod/profile_photo.php:274
+msgid "Crop Image"
+msgstr "修剪照片"
 
-#: ../../mod/dfrn_request.php:839
-#, php-format
-msgid ""
-" - please do not use this form.  Instead, enter %s into your Diaspora search"
-" bar."
-msgstr " - 请别用这个表格。反而输入%s在您的Diaspora搜索功能。"
+#: mod/profile_photo.php:275
+msgid "Please adjust the image cropping for optimum viewing."
+msgstr "请调图片剪裁为最好看。"
 
-#: ../../mod/dfrn_request.php:840
-msgid "Your Identity Address:"
-msgstr "您的同一个人地址:"
+#: mod/profile_photo.php:277
+msgid "Done Editing"
+msgstr "编辑完成"
 
-#: ../../mod/dfrn_request.php:843
-msgid "Submit Request"
-msgstr "提交要求"
+#: mod/profile_photo.php:313
+msgid "Image uploaded successfully."
+msgstr "照片成功地上传了。"
+
+#: mod/profile_photo.php:315 mod/wall_upload.php:258 mod/photos.php:886
+msgid "Image upload failed."
+msgstr "图像上载失败了."
 
-#: ../../mod/register.php:90
+#: mod/register.php:97
 msgid ""
 "Registration successful. Please check your email for further instructions."
 msgstr "注册成功了。请咨询说明再您的收件箱。"
 
-#: ../../mod/register.php:96
+#: mod/register.php:102
 #, php-format
 msgid ""
 "Failed to send email message. Here your accout details:<br> login: %s<br> "
 "password: %s<br><br>You can change your password after login."
 msgstr "发送邮件失败。你的账户消息是:<br>用户名:%s<br> 密码: %s<br><br>。登录后能改密码。"
 
-#: ../../mod/register.php:105
+#: mod/register.php:109
+msgid "Registration successful."
+msgstr "注册成功。"
+
+#: mod/register.php:115
 msgid "Your registration can not be processed."
 msgstr "处理不了您的注册。"
 
-#: ../../mod/register.php:148
+#: mod/register.php:164
 msgid "Your registration is pending approval by the site owner."
 msgstr "您的注册等网页主的批准。"
 
-#: ../../mod/register.php:186 ../../mod/uimport.php:50
-msgid ""
-"This site has exceeded the number of allowed daily account registrations. "
-"Please try again tomorrow."
-msgstr "这个网站超过一天最多账户注册。请明天再试。"
-
-#: ../../mod/register.php:214
+#: mod/register.php:230
 msgid ""
 "You may (optionally) fill in this form via OpenID by supplying your OpenID "
 "and clicking 'Register'."
 msgstr "您会(可选的)用OpenID填这个表格通过提供您的OpenID和点击「注册」。"
 
-#: ../../mod/register.php:215
+#: mod/register.php:231
 msgid ""
 "If you are not familiar with OpenID, please leave that field blank and fill "
 "in the rest of the items."
 msgstr "如果您没熟悉OpenID,请留空这个栏和填另些栏。"
 
-#: ../../mod/register.php:216
+#: mod/register.php:232
 msgid "Your OpenID (optional): "
 msgstr "您的OpenID(可选的):"
 
-#: ../../mod/register.php:230
+#: mod/register.php:246
 msgid "Include your profile in member directory?"
 msgstr "放您的简介再员目录?"
 
-#: ../../mod/register.php:251
+#: mod/register.php:271
+msgid "Note for the admin"
+msgstr ""
+
+#: mod/register.php:271
+msgid "Leave a message for the admin, why you want to join this node"
+msgstr "给管理员留条消息,为什么你想加入这个节点"
+
+#: mod/register.php:272
 msgid "Membership on this site is by invitation only."
 msgstr "会员身份在这个网站是光通过邀请。"
 
-#: ../../mod/register.php:252
+#: mod/register.php:273
 msgid "Your invitation ID: "
 msgstr "您邀请ID:"
 
-#: ../../mod/register.php:263
-msgid "Your Full Name (e.g. Joe Smith): "
-msgstr "您姓名(例如「张三」):"
+#: mod/register.php:276 mod/admin.php:1155
+msgid "Registration"
+msgstr "注册"
+
+#: mod/register.php:284
+msgid "Your Full Name (e.g. Joe Smith, real or real-looking): "
+msgstr ""
 
-#: ../../mod/register.php:264
+#: mod/register.php:285
 msgid "Your Email Address: "
 msgstr "你的电子邮件地址:"
 
-#: ../../mod/register.php:265
+#: mod/register.php:287 mod/settings.php:1275
+msgid "New Password:"
+msgstr "新密码:"
+
+#: mod/register.php:287
+msgid "Leave empty for an auto generated password."
+msgstr "留空以使用自动生成的密码。"
+
+#: mod/register.php:288 mod/settings.php:1276
+msgid "Confirm:"
+msgstr "确认:"
+
+#: mod/register.php:289
 msgid ""
 "Choose a profile nickname. This must begin with a text character. Your "
 "profile address on this site will then be "
 "'<strong>nickname@$sitename</strong>'."
 msgstr "选择简介昵称。昵称头一字必须拉丁字。您再这个网站的简介地址将「<strong>example@$sitename</strong>」."
 
-#: ../../mod/register.php:266
-msgid "Choose a nickname: "
-msgstr "选择昵称:"
+#: mod/register.php:290
+msgid "Choose a nickname: "
+msgstr "选择昵称:"
+
+#: mod/register.php:300
+msgid "Import your profile to this friendica instance"
+msgstr "进口您的简介到这个friendica服务器"
+
+#: mod/regmod.php:61
+msgid "Account approved."
+msgstr "账户已被批准。"
+
+#: mod/regmod.php:89
+#, php-format
+msgid "Registration revoked for %s"
+msgstr "%s的登记撤销了"
+
+#: mod/regmod.php:101
+msgid "Please login."
+msgstr "清登录。"
+
+#: mod/removeme.php:55 mod/removeme.php:58
+msgid "Remove My Account"
+msgstr "删除我的账户"
+
+#: mod/removeme.php:56
+msgid ""
+"This will completely remove your account. Once this has been done it is not "
+"recoverable."
+msgstr "这要完全删除您的账户。这一做过,就不能恢复。"
+
+#: mod/removeme.php:57
+msgid "Please enter your password for verification:"
+msgstr "请输入密码为确认:"
+
+#: mod/repair_ostatus.php:17
+msgid "Resubscribing to OStatus contacts"
+msgstr "重新订阅 OStatus 联系人"
+
+#: mod/repair_ostatus.php:33
+msgid "Error"
+msgstr "错误"
+
+#: mod/subthread.php:106
+#, php-format
+msgid "%1$s is following %2$s's %3$s"
+msgstr "%1$s关注着%2$s的%3$s"
+
+#: mod/tagrm.php:46
+msgid "Tag removed"
+msgstr "标签去除了"
+
+#: mod/tagrm.php:85
+msgid "Remove Item Tag"
+msgstr "去除项目标签"
+
+#: mod/tagrm.php:87
+msgid "Select a tag to remove: "
+msgstr "选择标签去除"
+
+#: mod/tagrm.php:98 mod/delegate.php:139
+msgid "Remove"
+msgstr "移走"
+
+#: mod/uexport.php:39
+msgid "Export account"
+msgstr "导出账户"
+
+#: mod/uexport.php:39
+msgid ""
+"Export your account info and contacts. Use this to make a backup of your "
+"account and/or to move it to another server."
+msgstr "导出你的账户信息和联系人。用这个功能来生成一个你的账户的备份,并且/或者把它移到另外一个服务器。"
 
-#: ../../mod/register.php:269 ../../boot.php:1241 ../../include/nav.php:109
-msgid "Register"
-msgstr "注册"
+#: mod/uexport.php:40
+msgid "Export all"
+msgstr "导出全部"
 
-#: ../../mod/register.php:275 ../../mod/uimport.php:64
-msgid "Import"
-msgstr "进口"
+#: mod/uexport.php:40
+msgid ""
+"Export your accout info, contacts and all your items as json. Could be a "
+"very big file, and could take a lot of time. Use this to make a full backup "
+"of your account (photos are not exported)"
+msgstr "导出你的账户信息、联系人和所有你的项目为 json 格式。可能会是一个很大的文件,并可能花费很多时间。用这个功能来做一个你的账户的全备份(照片不会被导出)"
 
-#: ../../mod/register.php:276
-msgid "Import your profile to this friendica instance"
-msgstr "进口您的简介到这个friendica服务器"
+#: mod/uexport.php:47 mod/settings.php:98
+msgid "Export personal data"
+msgstr "导出个人信息"
 
-#: ../../mod/maintenance.php:5
-msgid "System down for maintenance"
-msgstr "系统关闭为了维持"
+#: mod/videos.php:127
+msgid "Do you really want to delete this video?"
+msgstr "你真的想删除这个视频吗?"
 
-#: ../../mod/search.php:99 ../../include/text.php:953
-#: ../../include/text.php:954 ../../include/nav.php:119
-msgid "Search"
-msgstr "搜索"
+#: mod/videos.php:132
+msgid "Delete Video"
+msgstr "删除视频"
 
-#: ../../mod/directory.php:51 ../../view/theme/diabook/theme.php:525
-msgid "Global Directory"
-msgstr "综合目录"
+#: mod/videos.php:211
+msgid "No videos selected"
+msgstr "没有视频被选择"
 
-#: ../../mod/directory.php:59
-msgid "Find on this site"
-msgstr "找在这网站"
+#: mod/videos.php:312 mod/photos.php:1094
+msgid "Access to this item is restricted."
+msgstr "这个项目使用权限的。"
 
-#: ../../mod/directory.php:62
-msgid "Site Directory"
-msgstr "ç½\91ç«\99ç\9b®å½\95"
+#: mod/videos.php:396 mod/photos.php:1894
+msgid "View Album"
+msgstr "ç\9c\8bç\85§ç\89\87å\86\8c"
 
-#: ../../mod/directory.php:113 ../../mod/profiles.php:750
-msgid "Age: "
-msgstr "年纪:"
+#: mod/videos.php:405
+msgid "Recent Videos"
+msgstr "最近的视频"
 
-#: ../../mod/directory.php:116
-msgid "Gender: "
-msgstr "性别:"
+#: mod/videos.php:407
+msgid "Upload New Videos"
+msgstr "上传新视频"
 
-#: ../../mod/directory.php:138 ../../boot.php:1650
-#: ../../include/profile_advanced.php:17
-msgid "Gender:"
-msgstr "性别:"
+#: mod/wall_upload.php:37 mod/wall_upload.php:53 mod/wall_upload.php:111
+#: mod/wall_upload.php:151 mod/wall_upload.php:154 mod/wall_attach.php:19
+#: mod/wall_attach.php:27 mod/wall_attach.php:78
+msgid "Invalid request."
+msgstr "无效请求。"
 
-#: ../../mod/directory.php:140 ../../boot.php:1653
-#: ../../include/profile_advanced.php:37
-msgid "Status:"
-msgstr "现状:"
+#: mod/wallmessage.php:45 mod/wallmessage.php:109
+#, php-format
+msgid "Number of daily wall messages for %s exceeded. Message failed."
+msgstr "一天最多墙通知给%s超过了。通知没有通过 。"
 
-#: ../../mod/directory.php:142 ../../boot.php:1655
-#: ../../include/profile_advanced.php:48
-msgid "Homepage:"
-msgstr "主页:"
+#: mod/wallmessage.php:56
+msgid "Unable to check your home location."
+msgstr "核对不了您的主页。"
 
-#: ../../mod/directory.php:144 ../../boot.php:1657
-#: ../../include/profile_advanced.php:58
-msgid "About:"
-msgstr "关于:"
+#: mod/wallmessage.php:83 mod/wallmessage.php:92
+msgid "No recipient."
+msgstr "没有接受者。"
 
-#: ../../mod/directory.php:189
-msgid "No entries (some entries may be hidden)."
-msgstr "没有文章(有的文章会被隐藏)。"
+#: mod/wallmessage.php:130
+#, php-format
+msgid ""
+"If you wish for %s to respond, please check that the privacy settings on "
+"your site allow private mail from unknown senders."
+msgstr "如果您想%s回答,请核对您网站的隐私设置允许生发送人的私人邮件。"
 
-#: ../../mod/delegate.php:101
+#: mod/delegate.php:101
 msgid "No potential page delegates located."
 msgstr "找不到可能代表页人。"
 
-#: ../../mod/delegate.php:130 ../../include/nav.php:170
-msgid "Delegate Page Management"
-msgstr "页代表管理"
-
-#: ../../mod/delegate.php:132
+#: mod/delegate.php:132
 msgid ""
 "Delegates are able to manage all aspects of this account/page except for "
 "basic account settings. Please do not delegate your personal account to "
 "anybody that you do not trust completely."
 msgstr "代表会管理所有的方面这个账户/页除了基础账户配置以外。请别代表您私人账户给您没完全信的人。"
 
-#: ../../mod/delegate.php:133
+#: mod/delegate.php:133
 msgid "Existing Page Managers"
 msgstr "目前页管理员"
 
-#: ../../mod/delegate.php:135
+#: mod/delegate.php:135
 msgid "Existing Page Delegates"
 msgstr "目前页代表"
 
-#: ../../mod/delegate.php:137
+#: mod/delegate.php:137
 msgid "Potential Delegates"
 msgstr "潜力的代表"
 
-#: ../../mod/delegate.php:140
+#: mod/delegate.php:140
 msgid "Add"
 msgstr "加"
 
-#: ../../mod/delegate.php:141
+#: mod/delegate.php:141
 msgid "No entries."
 msgstr "没有项目。"
 
-#: ../../mod/common.php:42
-msgid "Common Friends"
-msgstr "普通朋友们"
+#: mod/display.php:491
+msgid "Item has been removed."
+msgstr "项目被删除了。"
 
-#: ../../mod/common.php:78
-msgid "No contacts in common."
-msgstr "没æ\9c\89å\85±å\90\8cç\86\9f人ã\80\82"
+#: mod/photos.php:97 mod/photos.php:1903
+msgid "Recent Photos"
+msgstr "æ\9c\80è¿\91ç\9a\84ç\85§ç\89\87"
 
-#: ../../mod/uexport.php:77
-msgid "Export account"
-msgstr "出口账户"
+#: mod/photos.php:100 mod/photos.php:1331 mod/photos.php:1905
+msgid "Upload New Photos"
+msgstr "上传新照片"
 
-#: ../../mod/uexport.php:77
-msgid ""
-"Export your account info and contacts. Use this to make a backup of your "
-"account and/or to move it to another server."
-msgstr "出口您的商户信息和熟人。这利于备份您的账户活着搬到别的服务器。"
+#: mod/photos.php:115 mod/settings.php:39
+msgid "everybody"
+msgstr "每人"
 
-#: ../../mod/uexport.php:78
-msgid "Export all"
-msgstr "出口一切"
+#: mod/photos.php:179
+msgid "Contact information unavailable"
+msgstr "熟人信息不可用"
 
-#: ../../mod/uexport.php:78
-msgid ""
-"Export your accout info, contacts and all your items as json. Could be a "
-"very big file, and could take a lot of time. Use this to make a full backup "
-"of your account (photos are not exported)"
-msgstr "出口您账户信息,熟人和别的项目成json。可能是很大文件,花很多时间。用这个为创造全备份您的账户(照片没被出口)"
+#: mod/photos.php:200
+msgid "Album not found."
+msgstr "取回不了相册."
+
+#: mod/photos.php:233 mod/photos.php:245 mod/photos.php:1275
+msgid "Delete Album"
+msgstr "删除相册"
+
+#: mod/photos.php:243
+msgid "Do you really want to delete this photo album and all its photos?"
+msgstr "您真的想删除这个相册和所有里面的照相吗?"
+
+#: mod/photos.php:326 mod/photos.php:337 mod/photos.php:1601
+msgid "Delete Photo"
+msgstr "删除照片"
+
+#: mod/photos.php:335
+msgid "Do you really want to delete this photo?"
+msgstr "您真的想删除这个照相吗?"
 
-#: ../../mod/mood.php:62 ../../include/conversation.php:227
+#: mod/photos.php:716
 #, php-format
-msgid "%1$s is currently %2$s"
-msgstr "%1$s现在是%2$s"
+msgid "%1$s was tagged in %2$s by %3$s"
+msgstr "%1$s被%3$s标签在%2$s"
 
-#: ../../mod/mood.php:133
-msgid "Mood"
-msgstr "心情"
+#: mod/photos.php:716
+msgid "a photo"
+msgstr "一张照片"
 
-#: ../../mod/mood.php:134
-msgid "Set your current mood and tell your friends"
-msgstr "选择现在的心情而告诉朋友们"
+#: mod/photos.php:824
+msgid "Image file is empty."
+msgstr "图片文件空的。"
 
-#: ../../mod/suggest.php:27
-msgid "Do you really want to delete this suggestion?"
-msgstr "æ\82¨ç\9c\9fç\9a\84æ\83³å\88 é\99¤è¿\99个建议å\90\97ï¼\9f"
+#: mod/photos.php:991
+msgid "No photos selected"
+msgstr "没æ\9c\89ç\85§ç\89\87æ\8c\91é\80\89äº\86"
 
-#: ../../mod/suggest.php:68 ../../include/contact_widgets.php:35
-#: ../../view/theme/diabook/theme.php:527
-msgid "Friend Suggestions"
-msgstr "友谊建议"
+#: mod/photos.php:1154
+#, php-format
+msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."
+msgstr "您用%2$.2f兆字节的%1$.2f兆字节照片存储。"
+
+#: mod/photos.php:1191
+msgid "Upload Photos"
+msgstr "上传照片"
+
+#: mod/photos.php:1195 mod/photos.php:1270
+msgid "New album name: "
+msgstr "新册名:"
+
+#: mod/photos.php:1196
+msgid "or existing album name: "
+msgstr "或现有册名"
+
+#: mod/photos.php:1197
+msgid "Do not show a status post for this upload"
+msgstr "别显示现状报到关于这个上传"
+
+#: mod/photos.php:1208 mod/photos.php:1605 mod/settings.php:1304
+msgid "Show to Groups"
+msgstr "给组表示"
+
+#: mod/photos.php:1209 mod/photos.php:1606 mod/settings.php:1305
+msgid "Show to Contacts"
+msgstr "给熟人表示"
+
+#: mod/photos.php:1210
+msgid "Private Photo"
+msgstr "私人照相"
+
+#: mod/photos.php:1211
+msgid "Public Photo"
+msgstr "公开照相"
+
+#: mod/photos.php:1281
+msgid "Edit Album"
+msgstr "编照片册"
+
+#: mod/photos.php:1286
+msgid "Show Newest First"
+msgstr "先表示最新的"
+
+#: mod/photos.php:1288
+msgid "Show Oldest First"
+msgstr "先表示最老的"
+
+#: mod/photos.php:1317 mod/photos.php:1888
+msgid "View Photo"
+msgstr "看照片"
+
+#: mod/photos.php:1362
+msgid "Permission denied. Access to this item may be restricted."
+msgstr "无权利。用这个项目可能受限制。"
+
+#: mod/photos.php:1364
+msgid "Photo not available"
+msgstr "不可获得的照片"
+
+#: mod/photos.php:1425
+msgid "View photo"
+msgstr "看照片"
+
+#: mod/photos.php:1425
+msgid "Edit photo"
+msgstr "编辑照片"
+
+#: mod/photos.php:1426
+msgid "Use as profile photo"
+msgstr "用为资料图"
+
+#: mod/photos.php:1451
+msgid "View Full Size"
+msgstr "看全尺寸"
+
+#: mod/photos.php:1541
+msgid "Tags: "
+msgstr "标签:"
 
-#: ../../mod/suggest.php:74
+#: mod/photos.php:1544
+msgid "[Remove any tag]"
+msgstr "[删除任何标签]"
+
+#: mod/photos.php:1587
+msgid "New album name"
+msgstr "新册名"
+
+#: mod/photos.php:1588
+msgid "Caption"
+msgstr "字幕"
+
+#: mod/photos.php:1589
+msgid "Add a Tag"
+msgstr "加标签"
+
+#: mod/photos.php:1589
 msgid ""
-"No suggestions available. If this is a new site, please try again in 24 "
-"hours."
-msgstr "没有建议。如果这是新网站,请24小时后再试。"
+"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
+msgstr "例子:@zhang, @Zhang_San, @li@example.com, #Beijing, #ktv"
 
-#: ../../mod/suggest.php:92
-msgid "Ignore/Hide"
-msgstr "不理/隐藏"
+#: mod/photos.php:1590
+msgid "Do not rotate"
+msgstr "不要旋转"
+
+#: mod/photos.php:1591
+msgid "Rotate CW (right)"
+msgstr "顺时针地转动(左)"
+
+#: mod/photos.php:1592
+msgid "Rotate CCW (left)"
+msgstr "反顺时针地转动(右)"
+
+#: mod/photos.php:1607
+msgid "Private photo"
+msgstr "私人照相"
+
+#: mod/photos.php:1608
+msgid "Public photo"
+msgstr "公开照相"
+
+#: mod/photos.php:1817
+msgid "Map"
+msgstr ""
+
+#: mod/ping.php:275
+msgid "{0} wants to be your friend"
+msgstr "{0}想成为您的朋友"
+
+#: mod/ping.php:290
+msgid "{0} sent you a message"
+msgstr "{0}发给您一个通信"
+
+#: mod/ping.php:305
+msgid "{0} requested registration"
+msgstr "{0}要求注册"
 
-#: ../../mod/profiles.php:37
+#: mod/profiles.php:43
 msgid "Profile deleted."
 msgstr "简介删除了。"
 
-#: ../../mod/profiles.php:55 ../../mod/profiles.php:89
+#: mod/profiles.php:59 mod/profiles.php:95
 msgid "Profile-"
 msgstr "简介-"
 
-#: ../../mod/profiles.php:74 ../../mod/profiles.php:117
+#: mod/profiles.php:78 mod/profiles.php:117
 msgid "New profile created."
 msgstr "创造新的简介"
 
-#: ../../mod/profiles.php:95
+#: mod/profiles.php:101
 msgid "Profile unavailable to clone."
 msgstr "简介不可用为复制。"
 
-#: ../../mod/profiles.php:189
+#: mod/profiles.php:191
 msgid "Profile Name is required."
 msgstr "必要简介名"
 
-#: ../../mod/profiles.php:340
+#: mod/profiles.php:331
 msgid "Marital Status"
 msgstr "婚姻状况 "
 
-#: ../../mod/profiles.php:344
+#: mod/profiles.php:335
 msgid "Romantic Partner"
 msgstr "情人"
 
-#: ../../mod/profiles.php:348
-msgid "Likes"
-msgstr "喜欢"
-
-#: ../../mod/profiles.php:352
-msgid "Dislikes"
-msgstr "不喜欢"
-
-#: ../../mod/profiles.php:356
+#: mod/profiles.php:347
 msgid "Work/Employment"
 msgstr "工作"
 
-#: ../../mod/profiles.php:359
+#: mod/profiles.php:350
 msgid "Religion"
 msgstr "宗教"
 
-#: ../../mod/profiles.php:363
+#: mod/profiles.php:354
 msgid "Political Views"
 msgstr "政治观念"
 
-#: ../../mod/profiles.php:367
+#: mod/profiles.php:358
 msgid "Gender"
 msgstr "性别"
 
-#: ../../mod/profiles.php:371
+#: mod/profiles.php:362
 msgid "Sexual Preference"
 msgstr "性取向"
 
-#: ../../mod/profiles.php:375
+#: mod/profiles.php:366
+msgid "XMPP"
+msgstr ""
+
+#: mod/profiles.php:370
 msgid "Homepage"
 msgstr "主页"
 
-#: ../../mod/profiles.php:379 ../../mod/profiles.php:698
+#: mod/profiles.php:374 mod/profiles.php:693
 msgid "Interests"
 msgstr "兴趣"
 
-#: ../../mod/profiles.php:383
+#: mod/profiles.php:378
 msgid "Address"
 msgstr "地址"
 
-#: ../../mod/profiles.php:390 ../../mod/profiles.php:694
+#: mod/profiles.php:385 mod/profiles.php:689
 msgid "Location"
 msgstr "位置"
 
-#: ../../mod/profiles.php:473
+#: mod/profiles.php:470
 msgid "Profile updated."
 msgstr "简介更新了。"
 
-#: ../../mod/profiles.php:568
+#: mod/profiles.php:562
 msgid " and "
 msgstr "和"
 
-#: ../../mod/profiles.php:576
+#: mod/profiles.php:571
 msgid "public profile"
 msgstr "公开简介"
 
-#: ../../mod/profiles.php:579
+#: mod/profiles.php:574
 #, php-format
 msgid "%1$s changed %2$s to &ldquo;%3$s&rdquo;"
 msgstr "%1$s把%2$s变化成&ldquo;%3$s&rdquo;"
 
-#: ../../mod/profiles.php:580
+#: mod/profiles.php:575
 #, php-format
 msgid " - Visit %1$s's %2$s"
 msgstr " - 看 %1$s的%2$s"
 
-#: ../../mod/profiles.php:583
+#: mod/profiles.php:577
 #, php-format
 msgid "%1$s has an updated %2$s, changing %3$s."
 msgstr "%1$s有更新的%2$s,修改%3$s."
 
-#: ../../mod/profiles.php:658
+#: mod/profiles.php:635
 msgid "Hide contacts and friends:"
-msgstr ""
+msgstr "隐藏联系人和朋友:"
 
-#: ../../mod/profiles.php:663
+#: mod/profiles.php:640
 msgid "Hide your contact/friend list from viewers of this profile?"
 msgstr "藏起来发现您的熟人/朋友单不让这个简介看着看?"
 
-#: ../../mod/profiles.php:685
+#: mod/profiles.php:665
+msgid "Show more profile fields:"
+msgstr ""
+
+#: mod/profiles.php:677
+msgid "Profile Actions"
+msgstr ""
+
+#: mod/profiles.php:678
 msgid "Edit Profile Details"
 msgstr "剪辑简介消息"
 
-#: ../../mod/profiles.php:687
+#: mod/profiles.php:680
 msgid "Change Profile Photo"
 msgstr "改变简介照片"
 
-#: ../../mod/profiles.php:688
+#: mod/profiles.php:681
 msgid "View this profile"
 msgstr "看这个简介"
 
-#: ../../mod/profiles.php:689
+#: mod/profiles.php:683
 msgid "Create a new profile using these settings"
-msgstr "造成新的简介用这些设置"
+msgstr "使用这些设置创建一份新的简介"
 
-#: ../../mod/profiles.php:690
+#: mod/profiles.php:684
 msgid "Clone this profile"
 msgstr "复制这个简介"
 
-#: ../../mod/profiles.php:691
+#: mod/profiles.php:685
 msgid "Delete this profile"
 msgstr "删除这个简介"
 
-#: ../../mod/profiles.php:692
+#: mod/profiles.php:687
 msgid "Basic information"
-msgstr ""
+msgstr "基本信息"
 
-#: ../../mod/profiles.php:693
+#: mod/profiles.php:688
 msgid "Profile picture"
 msgstr ""
 
-#: ../../mod/profiles.php:695
+#: mod/profiles.php:690
 msgid "Preferences"
-msgstr ""
+msgstr "偏好"
 
-#: ../../mod/profiles.php:696
+#: mod/profiles.php:691
 msgid "Status information"
-msgstr ""
+msgstr "状态信息"
 
-#: ../../mod/profiles.php:697
+#: mod/profiles.php:692
 msgid "Additional information"
-msgstr ""
+msgstr "更多信息"
+
+#: mod/profiles.php:695
+msgid "Relation"
+msgstr "关系"
+
+#: mod/profiles.php:699
+msgid "Your Gender:"
+msgstr "你的性:"
+
+#: mod/profiles.php:700
+msgid "<span class=\"heart\">&hearts;</span> Marital Status:"
+msgstr "<span class=\"heart\">&hearts;</span>婚姻状况:"
+
+#: mod/profiles.php:702
+msgid "Example: fishing photography software"
+msgstr "例如:钓鱼 照片 软件"
 
-#: ../../mod/profiles.php:700
+#: mod/profiles.php:707
 msgid "Profile Name:"
 msgstr "简介名:"
 
-#: ../../mod/profiles.php:701
+#: mod/profiles.php:709
+msgid ""
+"This is your <strong>public</strong> profile.<br />It <strong>may</strong> "
+"be visible to anybody using the internet."
+msgstr "这是你的<strong>公开的</strong>简介。<br />它<strong>可能</strong>被所有的因特网用的看到。"
+
+#: mod/profiles.php:710
 msgid "Your Full Name:"
 msgstr "你的全名:"
 
-#: ../../mod/profiles.php:702
-msgid "Title/Description:"
-msgstr "标题/描述:"
-
-#: ../../mod/profiles.php:703
-msgid "Your Gender:"
-msgstr "你的性:"
-
-#: ../../mod/profiles.php:704
-#, php-format
-msgid "Birthday (%s):"
-msgstr "生日(%s):"
+#: mod/profiles.php:711
+msgid "Title/Description:"
+msgstr "标题/描述:"
 
-#: ../../mod/profiles.php:705
+#: mod/profiles.php:714
 msgid "Street Address:"
 msgstr "地址:"
 
-#: ../../mod/profiles.php:706
+#: mod/profiles.php:715
 msgid "Locality/City:"
 msgstr "现场/城市:"
 
-#: ../../mod/profiles.php:707
+#: mod/profiles.php:716
+msgid "Region/State:"
+msgstr "区域/省"
+
+#: mod/profiles.php:717
 msgid "Postal/Zip Code:"
 msgstr "邮政编码:"
 
-#: ../../mod/profiles.php:708
+#: mod/profiles.php:718
 msgid "Country:"
 msgstr "国家:"
 
-#: ../../mod/profiles.php:709
-msgid "Region/State:"
-msgstr "区域/省"
-
-#: ../../mod/profiles.php:710
-msgid "<span class=\"heart\">&hearts;</span> Marital Status:"
-msgstr "<span class=\"heart\">&hearts;</span>婚姻状况:"
-
-#: ../../mod/profiles.php:711
+#: mod/profiles.php:722
 msgid "Who: (if applicable)"
 msgstr "谁:(要是使用)"
 
-#: ../../mod/profiles.php:712
+#: mod/profiles.php:722
 msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
 msgstr "比如:limou,李某,limou@example。com"
 
-#: ../../mod/profiles.php:713
+#: mod/profiles.php:723
 msgid "Since [date]:"
 msgstr "追溯[日期]:"
 
-#: ../../mod/profiles.php:714 ../../include/profile_advanced.php:46
-msgid "Sexual Preference:"
-msgstr "性取向"
+#: mod/profiles.php:725
+msgid "Tell us about yourself..."
+msgstr "给我们自我介绍..."
 
-#: ../../mod/profiles.php:715
-msgid "Homepage URL:"
-msgstr "主页URL:"
+#: mod/profiles.php:726
+msgid "XMPP (Jabber) address:"
+msgstr "XMPP (Jabber) 地址:"
 
-#: ../../mod/profiles.php:716 ../../include/profile_advanced.php:50
-msgid "Hometown:"
-msgstr "故乡:"
+#: mod/profiles.php:726
+msgid ""
+"The XMPP address will be propagated to your contacts so that they can follow"
+" you."
+msgstr "这个 XMPP 地址会被传播到你的联系人从而他们可以关注你。"
 
-#: ../../mod/profiles.php:717 ../../include/profile_advanced.php:54
-msgid "Political Views:"
-msgstr "政治观念:"
+#: mod/profiles.php:727
+msgid "Homepage URL:"
+msgstr "主页URL:"
 
-#: ../../mod/profiles.php:718
+#: mod/profiles.php:730
 msgid "Religious Views:"
 msgstr " 宗教信仰 :"
 
-#: ../../mod/profiles.php:719
+#: mod/profiles.php:731
 msgid "Public Keywords:"
 msgstr "公开关键字 :"
 
-#: ../../mod/profiles.php:720
-msgid "Private Keywords:"
-msgstr "私人关键字"
-
-#: ../../mod/profiles.php:721 ../../include/profile_advanced.php:62
-msgid "Likes:"
-msgstr "喜欢:"
-
-#: ../../mod/profiles.php:722 ../../include/profile_advanced.php:64
-msgid "Dislikes:"
-msgstr "不喜欢:"
-
-#: ../../mod/profiles.php:723
-msgid "Example: fishing photography software"
-msgstr "例如:钓鱼 照片 软件"
-
-#: ../../mod/profiles.php:724
+#: mod/profiles.php:731
 msgid "(Used for suggesting potential friends, can be seen by others)"
 msgstr "(用于建议可能的朋友们,会被别人看)"
 
-#: ../../mod/profiles.php:725
+#: mod/profiles.php:732
+msgid "Private Keywords:"
+msgstr "私人关键字"
+
+#: mod/profiles.php:732
 msgid "(Used for searching profiles, never shown to others)"
 msgstr "(用于搜索简介,没有给别人看)"
 
-#: ../../mod/profiles.php:726
-msgid "Tell us about yourself..."
-msgstr "给我们自我介绍..."
-
-#: ../../mod/profiles.php:727
-msgid "Hobbies/Interests"
-msgstr "爱好/兴趣"
-
-#: ../../mod/profiles.php:728
-msgid "Contact information and Social Networks"
-msgstr "熟人信息和社会化网络"
-
-#: ../../mod/profiles.php:729
+#: mod/profiles.php:735
 msgid "Musical interests"
 msgstr "音乐兴趣"
 
-#: ../../mod/profiles.php:730
+#: mod/profiles.php:736
 msgid "Books, literature"
 msgstr "书,文学"
 
-#: ../../mod/profiles.php:731
+#: mod/profiles.php:737
 msgid "Television"
 msgstr "电视"
 
-#: ../../mod/profiles.php:732
+#: mod/profiles.php:738
 msgid "Film/dance/culture/entertainment"
 msgstr "电影/跳舞/文化/娱乐"
 
-#: ../../mod/profiles.php:733
+#: mod/profiles.php:739
+msgid "Hobbies/Interests"
+msgstr "爱好/兴趣"
+
+#: mod/profiles.php:740
 msgid "Love/romance"
 msgstr "爱情/浪漫"
 
-#: ../../mod/profiles.php:734
+#: mod/profiles.php:741
 msgid "Work/employment"
 msgstr "工作"
 
-#: ../../mod/profiles.php:735
+#: mod/profiles.php:742
 msgid "School/education"
 msgstr "学院/教育"
 
-#: ../../mod/profiles.php:740
-msgid ""
-"This is your <strong>public</strong> profile.<br />It <strong>may</strong> "
-"be visible to anybody using the internet."
-msgstr "这是你的<strong>公开的</strong>简介。<br />它<strong>可能</strong>被所有的因特网用的看到。"
+#: mod/profiles.php:743
+msgid "Contact information and Social Networks"
+msgstr "熟人信息和社会化网络"
 
-#: ../../mod/profiles.php:803
+#: mod/profiles.php:784
 msgid "Edit/Manage Profiles"
 msgstr "编辑/管理简介"
 
-#: ../../mod/profiles.php:804 ../../boot.php:1611 ../../boot.php:1637
-msgid "Change profile photo"
-msgstr "换简介照片"
-
-#: ../../mod/profiles.php:805 ../../boot.php:1612
-msgid "Create New Profile"
-msgstr "创造新的简介"
-
-#: ../../mod/profiles.php:816 ../../boot.php:1622
-msgid "Profile Image"
-msgstr "简介图像"
-
-#: ../../mod/profiles.php:818 ../../boot.php:1625
-msgid "visible to everybody"
-msgstr "给打假可见的"
-
-#: ../../mod/profiles.php:819 ../../boot.php:1626
-msgid "Edit visibility"
-msgstr "修改能见度"
-
-#: ../../mod/editpost.php:17 ../../mod/editpost.php:27
-msgid "Item not found"
-msgstr "项目没找到"
-
-#: ../../mod/editpost.php:39
-msgid "Edit post"
-msgstr "编辑文章"
-
-#: ../../mod/editpost.php:111 ../../include/conversation.php:1092
-msgid "upload photo"
-msgstr "上传照片"
-
-#: ../../mod/editpost.php:112 ../../include/conversation.php:1093
-msgid "Attach file"
-msgstr "附上文件"
-
-#: ../../mod/editpost.php:113 ../../include/conversation.php:1094
-msgid "attach file"
-msgstr "附上文件"
-
-#: ../../mod/editpost.php:115 ../../include/conversation.php:1096
-msgid "web link"
-msgstr "网页环节"
-
-#: ../../mod/editpost.php:116 ../../include/conversation.php:1097
-msgid "Insert video link"
-msgstr "插入视频环节"
-
-#: ../../mod/editpost.php:117 ../../include/conversation.php:1098
-msgid "video link"
-msgstr "视频环节"
-
-#: ../../mod/editpost.php:118 ../../include/conversation.php:1099
-msgid "Insert audio link"
-msgstr "插入录音环节"
-
-#: ../../mod/editpost.php:119 ../../include/conversation.php:1100
-msgid "audio link"
-msgstr "录音环节"
-
-#: ../../mod/editpost.php:120 ../../include/conversation.php:1101
-msgid "Set your location"
-msgstr "设定您的位置"
-
-#: ../../mod/editpost.php:121 ../../include/conversation.php:1102
-msgid "set location"
-msgstr "指定位置"
-
-#: ../../mod/editpost.php:122 ../../include/conversation.php:1103
-msgid "Clear browser location"
-msgstr "清空浏览器位置"
-
-#: ../../mod/editpost.php:123 ../../include/conversation.php:1104
-msgid "clear location"
-msgstr "清理出位置"
-
-#: ../../mod/editpost.php:125 ../../include/conversation.php:1110
-msgid "Permission settings"
-msgstr "权设置"
-
-#: ../../mod/editpost.php:133 ../../include/conversation.php:1119
-msgid "CC: email addresses"
-msgstr "抄送: 电子邮件地址"
-
-#: ../../mod/editpost.php:134 ../../include/conversation.php:1120
-msgid "Public post"
-msgstr "公开的消息"
-
-#: ../../mod/editpost.php:137 ../../include/conversation.php:1106
-msgid "Set title"
-msgstr "指定标题"
-
-#: ../../mod/editpost.php:139 ../../include/conversation.php:1108
-msgid "Categories (comma-separated list)"
-msgstr "种类(逗号分隔单)"
-
-#: ../../mod/editpost.php:140 ../../include/conversation.php:1122
-msgid "Example: bob@example.com, mary@example.com"
-msgstr "比如: li@example.com, wang@example.com"
-
-#: ../../mod/friendica.php:59
-msgid "This is Friendica, version"
-msgstr "这是Friendica,版本"
-
-#: ../../mod/friendica.php:60
-msgid "running at web location"
-msgstr "运作再网址"
-
-#: ../../mod/friendica.php:62
-msgid ""
-"Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn "
-"more about the Friendica project."
-msgstr "请看<a href=\"http://friendica.com\">Friendica.com</a>发现多关于Friendica工程。"
-
-#: ../../mod/friendica.php:64
-msgid "Bug reports and issues: please visit"
-msgstr "问题报案:请去"
+#: mod/search.php:96
+msgid "Only logged in users are permitted to perform a search."
+msgstr "只有已登录的用户被允许进行搜索。"
 
-#: ../../mod/friendica.php:65
-msgid ""
-"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - "
-"dot com"
-msgstr "建议,夸奖,捐赠,等-请发邮件到「 Info」在Friendica点com"
+#: mod/search.php:120
+msgid "Too Many Requests"
+msgstr "过多请求"
 
-#: ../../mod/friendica.php:79
-msgid "Installed plugins/addons/apps:"
-msgstr "å®\89è£\85ç\9a\84æ\8f\92件ï¼\8få\8a ä»¶ï¼\8fåº\94ç\94¨ï¼\9a"
+#: mod/search.php:121
+msgid "Only one search per minute is permitted for not logged in users."
+msgstr "对æ\9cªç\99»å½\95ç\9a\84ç\94¨æ\88·ï¼\8cæ¯\8få\88\86é\92\9få\8fªå\85\81许ä¸\80æ\9d¡æ\90\9cç´¢ã\80\82"
 
-#: ../../mod/friendica.php:92
-msgid "No installed plugins/addons/apps"
-msgstr "没有安装的插件/应用"
+#: mod/search.php:221
+#, php-format
+msgid "Items tagged with: %s"
+msgstr ""
 
-#: ../../mod/api.php:76 ../../mod/api.php:102
-msgid "Authorize application connection"
-msgstr "授权应用连接"
+#: mod/search.php:223 mod/contacts.php:826
+#, php-format
+msgid "Results for: %s"
+msgstr ""
 
-#: ../../mod/api.php:77
-msgid "Return to your app and insert this Securty Code:"
-msgstr "å\9b\9eå½\92æ\82¨ç\9a\84åº\94ç\94¨å\92\8cè¾\93å\85¥è¿\99个å®\89å\85¨å¯\86ç \81ï¼\9a"
+#: mod/settings.php:46 mod/admin.php:1588
+msgid "Account"
+msgstr "å¸\90æ\88·"
 
-#: ../../mod/api.php:89
-msgid "Please login to continue."
-msgstr "请登记为继续。"
+#: mod/settings.php:55 mod/admin.php:175
+msgid "Additional features"
+msgstr "附加的特点"
 
-#: ../../mod/api.php:104
-msgid ""
-"Do you want to authorize this application to access your posts and contacts,"
-" and/or create new posts for you?"
-msgstr "您想不想使这个应用用权您的文章和熟人,和/或代您造成新文章"
+#: mod/settings.php:63
+msgid "Display"
+msgstr "显示"
 
-#: ../../mod/lockview.php:31 ../../mod/lockview.php:39
-msgid "Remote privacy information not available."
-msgstr "摇隐私信息无效"
+#: mod/settings.php:70 mod/settings.php:887
+msgid "Social Networks"
+msgstr "社会化网络"
 
-#: ../../mod/lockview.php:48
-msgid "Visible to:"
-msgstr "可见给:"
+#: mod/settings.php:77 mod/admin.php:173 mod/admin.php:1714 mod/admin.php:1777
+msgid "Plugins"
+msgstr "插件"
 
-#: ../../mod/notes.php:44 ../../boot.php:2150
-msgid "Personal Notes"
-msgstr "私人便条"
+#: mod/settings.php:91
+msgid "Connected apps"
+msgstr "连接着应用"
 
-#: ../../mod/localtime.php:12 ../../include/bb2diaspora.php:148
-#: ../../include/event.php:11
-msgid "l F d, Y \\@ g:i A"
-msgstr "l F d, Y \\@ g:i A"
+#: mod/settings.php:105
+msgid "Remove account"
+msgstr "删除账户"
 
-#: ../../mod/localtime.php:24
-msgid "Time Conversion"
-msgstr "时间装换"
+#: mod/settings.php:160
+msgid "Missing some important data!"
+msgstr "缺失一些重要数据!"
 
-#: ../../mod/localtime.php:26
-msgid ""
-"Friendica provides this service for sharing events with other networks and "
-"friends in unknown timezones."
-msgstr "Friendica提供这个服务目的是分享项目跟别的网络和朋友们在别的时区。"
+#: mod/settings.php:163 mod/settings.php:704 mod/contacts.php:833
+msgid "Update"
+msgstr "更新"
 
-#: ../../mod/localtime.php:30
-#, php-format
-msgid "UTC time: %s"
-msgstr "UTC时间: %s"
+#: mod/settings.php:269
+msgid "Failed to connect with email account using the settings provided."
+msgstr "不能连接电子邮件账户用输入的设置。"
 
-#: ../../mod/localtime.php:33
-#, php-format
-msgid "Current timezone: %s"
-msgstr "现在时区: %s"
+#: mod/settings.php:274
+msgid "Email settings updated."
+msgstr "电子邮件设置更新了"
 
-#: ../../mod/localtime.php:36
-#, php-format
-msgid "Converted localtime: %s"
-msgstr "装换的当地时间:%s"
+#: mod/settings.php:289
+msgid "Features updated"
+msgstr "特点更新了"
 
-#: ../../mod/localtime.php:41
-msgid "Please select your timezone:"
-msgstr "请é\80\89æ\8b©ä½ ç\9a\84æ\97¶å\8cº:"
+#: mod/settings.php:359
+msgid "Relocate message has been send to your contacts"
+msgstr "è°\83å\8a¨ä¿¡æ\81¯å¯\84ç»\99æ\82¨ç\9a\84ç\86\9f人"
 
-#: ../../mod/poke.php:192
-msgid "Poke/Prod"
-msgstr ""
+#: mod/settings.php:378
+msgid "Empty passwords are not allowed. Password unchanged."
+msgstr "空的密码禁止。密码没未改变的。"
 
-#: ../../mod/poke.php:193
-msgid "poke, prod or do other things to somebody"
-msgstr "把人家戳或别的行动"
+#: mod/settings.php:386
+msgid "Wrong password."
+msgstr "密码不正确。"
 
-#: ../../mod/poke.php:194
-msgid "Recipient"
-msgstr "接受者"
+#: mod/settings.php:397
+msgid "Password changed."
+msgstr "密码变化了。"
 
-#: ../../mod/poke.php:195
-msgid "Choose what you wish to do to recipient"
-msgstr "选择您想把别人作"
+#: mod/settings.php:399
+msgid "Password update failed. Please try again."
+msgstr "密码更新失败了。请再试。"
 
-#: ../../mod/poke.php:198
-msgid "Make this post private"
-msgstr "使这个文章私人"
+#: mod/settings.php:479
+msgid " Please use a shorter name."
+msgstr "请用短一点个名。"
 
-#: ../../mod/invite.php:27
-msgid "Total invitation limit exceeded."
-msgstr "邀请限超过了。"
+#: mod/settings.php:481
+msgid " Name too short."
+msgstr " 名字太短。"
 
-#: ../../mod/invite.php:49
-#, php-format
-msgid "%s : Not a valid email address."
-msgstr "%s : 不是效的电子邮件地址."
+#: mod/settings.php:490
+msgid "Wrong Password"
+msgstr "密码不正确"
 
-#: ../../mod/invite.php:73
-msgid "Please join us on Friendica"
-msgstr "请加入我们再Friendica"
+#: mod/settings.php:495
+msgid " Not valid email."
+msgstr " 电子邮件地址无效."
 
-#: ../../mod/invite.php:84
-msgid "Invitation limit exceeded. Please contact your site administrator."
-msgstr "邀请限超过了。请联系您的网站管理员。"
+#: mod/settings.php:501
+msgid " Cannot change to that email."
+msgstr " 不能更改到那个邮件地址。"
 
-#: ../../mod/invite.php:89
-#, php-format
-msgid "%s : Message delivery failed."
-msgstr "%s : 送消息失败了。"
+#: mod/settings.php:557
+msgid "Private forum has no privacy permissions. Using default privacy group."
+msgstr "私人评坛没有隐私批准。默认隐私组用者。"
 
-#: ../../mod/invite.php:93
-#, php-format
-msgid "%d message sent."
-msgid_plural "%d messages sent."
-msgstr[0] "%d消息传送了。"
+#: mod/settings.php:561
+msgid "Private forum has no privacy permissions and no default privacy group."
+msgstr "私人评坛没有隐私批准或默认隐私组。"
 
-#: ../../mod/invite.php:112
-msgid "You have no more invitations available"
-msgstr "您没有别的邀请"
+#: mod/settings.php:601
+msgid "Settings updated."
+msgstr "设置更新了。"
 
-#: ../../mod/invite.php:120
-#, php-format
-msgid ""
-"Visit %s for a list of public sites that you can join. Friendica members on "
-"other sites can all connect with each other, as well as with members of many"
-" other social networks."
-msgstr "参观%s看一单公开网站您会加入。Friendica成员在别的网站都会互相连接,再跟很多别的社会网络。"
+#: mod/settings.php:677 mod/settings.php:703 mod/settings.php:739
+msgid "Add application"
+msgstr "加入应用"
 
-#: ../../mod/invite.php:122
-#, php-format
-msgid ""
-"To accept this invitation, please visit and register at %s or any other "
-"public Friendica website."
-msgstr "为æ\8e¥å\8f\97è¿\99个é\82\80请ï¼\8c请å\86\8d%sæ\88\96ä»\80ä¹\88å\88«ç\9a\84Friendicaç½\91ç«\99注å\86\8cã\80\82"
+#: mod/settings.php:678 mod/settings.php:789 mod/settings.php:838
+#: mod/settings.php:905 mod/settings.php:1002 mod/settings.php:1268
+#: mod/admin.php:1154 mod/admin.php:1778 mod/admin.php:2041 mod/admin.php:2115
+#: mod/admin.php:2268
+msgid "Save Settings"
+msgstr "ä¿\9då­\98设置"
 
-#: ../../mod/invite.php:123
-#, php-format
-msgid ""
-"Friendica sites all inter-connect to create a huge privacy-enhanced social "
-"web that is owned and controlled by its members. They can also connect with "
-"many traditional social networks. See %s for a list of alternate Friendica "
-"sites you can join."
-msgstr "Friendica网站们都互相连接造成隐私增加的社会网络属和控制由它的成员。它们也能跟多传统的社会网络连接。看%s表示一单您会加入供替换的Friendica网站。"
+#: mod/settings.php:681 mod/settings.php:707
+msgid "Consumer Key"
+msgstr "钥匙(Consumer Key)"
 
-#: ../../mod/invite.php:126
-msgid ""
-"Our apologies. This system is not currently configured to connect with other"
-" public sites or invite members."
-msgstr "不好意思。这个系统目前没设置跟别的公开网站连接或邀请成员。"
+#: mod/settings.php:682 mod/settings.php:708
+msgid "Consumer Secret"
+msgstr "密码(Consumer Secret)"
 
-#: ../../mod/invite.php:132
-msgid "Send invitations"
-msgstr "发请柬"
+#: mod/settings.php:683 mod/settings.php:709
+msgid "Redirect"
+msgstr "重定向"
 
-#: ../../mod/invite.php:133
-msgid "Enter email addresses, one per line:"
-msgstr "输入电子邮件地址,一行一个:"
+#: mod/settings.php:684 mod/settings.php:710
+msgid "Icon url"
+msgstr "图符URL"
 
-#: ../../mod/invite.php:135
-msgid ""
-"You are cordially invited to join me and other close friends on Friendica - "
-"and help us to create a better social web."
-msgstr "您被邀请跟我和彼得近朋友们再Friendica加入-和帮助我们造成更好的社会网络。"
+#: mod/settings.php:695
+msgid "You can't edit this application."
+msgstr "您不能编辑这个应用。"
 
-#: ../../mod/invite.php:137
-msgid "You will need to supply this invitation code: $invite_code"
-msgstr "您要输入这个邀请密码:$invite_code"
+#: mod/settings.php:738
+msgid "Connected Apps"
+msgstr "连接着应用"
 
-#: ../../mod/invite.php:137
-msgid ""
-"Once you have registered, please connect with me via my profile page at:"
-msgstr "您一注册,请页跟我连接,用我的简介在:"
+#: mod/settings.php:742
+msgid "Client key starts with"
+msgstr "客户钥匙头字是"
 
-#: ../../mod/invite.php:139
-msgid ""
-"For more information about the Friendica project and why we feel it is "
-"important, please visit http://friendica.com"
-msgstr "看别的信息由于Friendica工程和怎么我们看重,请看http://friendica.com"
+#: mod/settings.php:743
+msgid "No name"
+msgstr "无名"
 
-#: ../../mod/photos.php:52 ../../boot.php:2129
-msgid "Photo Albums"
-msgstr "相册"
+#: mod/settings.php:744
+msgid "Remove authorization"
+msgstr "撤消权能"
 
-#: ../../mod/photos.php:60 ../../mod/photos.php:155 ../../mod/photos.php:1064
-#: ../../mod/photos.php:1187 ../../mod/photos.php:1210
-#: ../../mod/photos.php:1760 ../../mod/photos.php:1772
-#: ../../view/theme/diabook/theme.php:499
-msgid "Contact Photos"
-msgstr "熟人照片"
+#: mod/settings.php:756
+msgid "No Plugin settings configured"
+msgstr "没插件设置配置了"
 
-#: ../../mod/photos.php:67 ../../mod/photos.php:1262 ../../mod/photos.php:1819
-msgid "Upload New Photos"
-msgstr "上传新照片"
+#: mod/settings.php:765
+msgid "Plugin Settings"
+msgstr "插件设置"
 
-#: ../../mod/photos.php:144
-msgid "Contact information unavailable"
-msgstr "熟人信息不可用"
+#: mod/settings.php:779 mod/admin.php:2257 mod/admin.php:2258
+msgid "Off"
+msgstr ""
 
-#: ../../mod/photos.php:165
-msgid "Album not found."
-msgstr "å\8f\96å\9b\9eä¸\8däº\86ç\9b¸å\86\8c."
+#: mod/settings.php:779 mod/admin.php:2257 mod/admin.php:2258
+msgid "On"
+msgstr "å¼\80"
 
-#: ../../mod/photos.php:188 ../../mod/photos.php:200 ../../mod/photos.php:1204
-msgid "Delete Album"
-msgstr "删除相册"
+#: mod/settings.php:787
+msgid "Additional Features"
+msgstr "附加特性"
 
-#: ../../mod/photos.php:198
-msgid "Do you really want to delete this photo album and all its photos?"
-msgstr "您真的想删除这个相册和所有里面的照相吗?"
+#: mod/settings.php:797 mod/settings.php:801
+msgid "General Social Media Settings"
+msgstr "通用社交媒体设置"
 
-#: ../../mod/photos.php:278 ../../mod/photos.php:289 ../../mod/photos.php:1515
-msgid "Delete Photo"
-msgstr "删除照片"
+#: mod/settings.php:807
+msgid "Disable intelligent shortening"
+msgstr ""
 
-#: ../../mod/photos.php:287
-msgid "Do you really want to delete this photo?"
-msgstr "您真的想删除这个照相吗?"
+#: mod/settings.php:809
+msgid ""
+"Normally the system tries to find the best link to add to shortened posts. "
+"If this option is enabled then every shortened post will always point to the"
+" original friendica post."
+msgstr ""
 
-#: ../../mod/photos.php:662
-#, php-format
-msgid "%1$s was tagged in %2$s by %3$s"
-msgstr "%1$s被%3$s标签在%2$s"
+#: mod/settings.php:815
+msgid "Automatically follow any GNU Social (OStatus) followers/mentioners"
+msgstr ""
 
-#: ../../mod/photos.php:662
-msgid "a photo"
-msgstr "一张照片"
+#: mod/settings.php:817
+msgid ""
+"If you receive a message from an unknown OStatus user, this option decides "
+"what to do. If it is checked, a new contact will be created for every "
+"unknown user."
+msgstr ""
 
-#: ../../mod/photos.php:767
-msgid "Image exceeds size limit of "
-msgstr "图片超出最大尺寸"
+#: mod/settings.php:823
+msgid "Default group for OStatus contacts"
+msgstr "用于 OStatus 联系人的默认组"
 
-#: ../../mod/photos.php:775
-msgid "Image file is empty."
-msgstr "图片文件空的。"
+#: mod/settings.php:831
+msgid "Your legacy GNU Social account"
+msgstr ""
 
-#: ../../mod/photos.php:930
-msgid "No photos selected"
-msgstr "没有照片挑选了"
+#: mod/settings.php:833
+msgid ""
+"If you enter your old GNU Social/Statusnet account name here (in the format "
+"user@domain.tld), your contacts will be added automatically. The field will "
+"be emptied when done."
+msgstr ""
 
-#: ../../mod/photos.php:1094
-#, php-format
-msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."
-msgstr "您用%2$.2f兆字节的%1$.2f兆字节照片存储。"
+#: mod/settings.php:836
+msgid "Repair OStatus subscriptions"
+msgstr "修复 OStatus 订阅"
 
-#: ../../mod/photos.php:1129
-msgid "Upload Photos"
-msgstr "上传照片"
+#: mod/settings.php:845 mod/settings.php:846
+#, php-format
+msgid "Built-in support for %s connectivity is %s"
+msgstr "包括的支持为%s连通性是%s"
 
-#: ../../mod/photos.php:1133 ../../mod/photos.php:1199
-msgid "New album name: "
-msgstr "新册名:"
+#: mod/settings.php:845 mod/settings.php:846
+msgid "enabled"
+msgstr "能够做的"
 
-#: ../../mod/photos.php:1134
-msgid "or existing album name: "
-msgstr "或现有册名"
+#: mod/settings.php:845 mod/settings.php:846
+msgid "disabled"
+msgstr "已停用"
 
-#: ../../mod/photos.php:1135
-msgid "Do not show a status post for this upload"
-msgstr "别显示现状报到关于这个上传"
+#: mod/settings.php:846
+msgid "GNU Social (OStatus)"
+msgstr ""
 
-#: ../../mod/photos.php:1137 ../../mod/photos.php:1510
-msgid "Permissions"
-msgstr "权利"
+#: mod/settings.php:880
+msgid "Email access is disabled on this site."
+msgstr "电子邮件访问在这个站上被禁用。"
 
-#: ../../mod/photos.php:1148
-msgid "Private Photo"
-msgstr "私人照相"
+#: mod/settings.php:892
+msgid "Email/Mailbox Setup"
+msgstr "邮件收件箱设置"
 
-#: ../../mod/photos.php:1149
-msgid "Public Photo"
-msgstr "公开照相"
+#: mod/settings.php:893
+msgid ""
+"If you wish to communicate with email contacts using this service "
+"(optional), please specify how to connect to your mailbox."
+msgstr "如果您想用这股服务(可选的)跟邮件熟人交流,请指定怎么连通您的收件箱。"
 
-#: ../../mod/photos.php:1212
-msgid "Edit Album"
-msgstr "编照片册"
+#: mod/settings.php:894
+msgid "Last successful email check:"
+msgstr "上个成功收件箱检查:"
 
-#: ../../mod/photos.php:1218
-msgid "Show Newest First"
-msgstr "先表示最新的"
+#: mod/settings.php:896
+msgid "IMAP server name:"
+msgstr "IMAP服务器名字:"
 
-#: ../../mod/photos.php:1220
-msgid "Show Oldest First"
-msgstr "先表示最老的"
+#: mod/settings.php:897
+msgid "IMAP port:"
+msgstr "IMAP服务器端口:"
 
-#: ../../mod/photos.php:1248 ../../mod/photos.php:1802
-msgid "View Photo"
-msgstr "看照片"
+#: mod/settings.php:898
+msgid "Security:"
+msgstr "安全:"
 
-#: ../../mod/photos.php:1294
-msgid "Permission denied. Access to this item may be restricted."
-msgstr "æ\97 æ\9d\83å\88©ã\80\82ç\94¨è¿\99个项ç\9b®å\8f¯è\83½å\8f\97é\99\90å\88¶ã\80\82"
+#: mod/settings.php:898 mod/settings.php:903
+msgid "None"
+msgstr "没æ\9c\89"
 
-#: ../../mod/photos.php:1296
-msgid "Photo not available"
-msgstr "照片不可获得的 "
+#: mod/settings.php:899
+msgid "Email login name:"
+msgstr "邮件登记名:"
 
-#: ../../mod/photos.php:1352
-msgid "View photo"
-msgstr "看照片"
+#: mod/settings.php:900
+msgid "Email password:"
+msgstr "邮件密码:"
 
-#: ../../mod/photos.php:1352
-msgid "Edit photo"
-msgstr "编辑照片"
+#: mod/settings.php:901
+msgid "Reply-to address:"
+msgstr "回答地址:"
 
-#: ../../mod/photos.php:1353
-msgid "Use as profile photo"
-msgstr "用为资料图"
+#: mod/settings.php:902
+msgid "Send public posts to all email contacts:"
+msgstr "发公开的文章给所有的邮件熟人:"
 
-#: ../../mod/photos.php:1378
-msgid "View Full Size"
-msgstr "看全尺寸"
+#: mod/settings.php:903
+msgid "Action after import:"
+msgstr "进口后行动:"
 
-#: ../../mod/photos.php:1457
-msgid "Tags: "
-msgstr "æ \87ç­¾ï¼\9a"
+#: mod/settings.php:903
+msgid "Move to folder"
+msgstr "æ\90¬å\88°æ\96\87件夹"
 
-#: ../../mod/photos.php:1460
-msgid "[Remove any tag]"
-msgstr "[删除任何标签]"
+#: mod/settings.php:904
+msgid "Move to folder:"
+msgstr "搬到文件夹:"
 
-#: ../../mod/photos.php:1500
-msgid "Rotate CW (right)"
-msgstr "顺时针地转动(左)"
+#: mod/settings.php:940 mod/admin.php:1041
+msgid "No special theme for mobile devices"
+msgstr "没专门适合手机的主题"
 
-#: ../../mod/photos.php:1501
-msgid "Rotate CCW (left)"
-msgstr "反顺时针地转动(右)"
+#: mod/settings.php:1000
+msgid "Display Settings"
+msgstr "表示设置"
 
-#: ../../mod/photos.php:1503
-msgid "New album name"
-msgstr "æ\96°å\86\8cå\90\8d"
+#: mod/settings.php:1006 mod/settings.php:1029
+msgid "Display Theme:"
+msgstr "æ\98¾ç¤ºä¸»é¢\98ï¼\9a"
 
-#: ../../mod/photos.php:1506
-msgid "Caption"
-msgstr "字幕"
+#: mod/settings.php:1007
+msgid "Mobile Theme:"
+msgstr "手机主题:"
 
-#: ../../mod/photos.php:1508
-msgid "Add a Tag"
-msgstr "加标签"
+#: mod/settings.php:1008
+msgid "Suppress warning of insecure networks"
+msgstr ""
 
-#: ../../mod/photos.php:1512
+#: mod/settings.php:1008
 msgid ""
-"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
-msgstr "例子:@zhang, @Zhang_San, @li@example.com, #Beijing, #ktv"
+"Should the system suppress the warning that the current group contains "
+"members of networks that can't receive non public postings."
+msgstr ""
 
-#: ../../mod/photos.php:1521
-msgid "Private photo"
-msgstr "私人照相"
+#: mod/settings.php:1009
+msgid "Update browser every xx seconds"
+msgstr "更新游览器每XX秒"
 
-#: ../../mod/photos.php:1522
-msgid "Public photo"
-msgstr "公开照相"
+#: mod/settings.php:1009
+msgid "Minimum of 10 seconds. Enter -1 to disable it."
+msgstr ""
 
-#: ../../mod/photos.php:1544 ../../include/conversation.php:1090
-msgid "Share"
-msgstr "分享"
+#: mod/settings.php:1010
+msgid "Number of items to display per page:"
+msgstr "每页表示多少项目:"
 
-#: ../../mod/photos.php:1817
-msgid "Recent Photos"
-msgstr "最近的照片"
+#: mod/settings.php:1010 mod/settings.php:1011
+msgid "Maximum of 100 items"
+msgstr "最多100项目"
 
-#: ../../mod/regmod.php:55
-msgid "Account approved."
-msgstr "账户批准了"
+#: mod/settings.php:1011
+msgid "Number of items to display per page when viewed from mobile device:"
+msgstr "用手机看一页展示多少项目:"
 
-#: ../../mod/regmod.php:92
-#, php-format
-msgid "Registration revoked for %s"
-msgstr "%s的登记撤销了"
+#: mod/settings.php:1012
+msgid "Don't show emoticons"
+msgstr "不显示表情符号"
 
-#: ../../mod/regmod.php:104
-msgid "Please login."
-msgstr "æ¸\85ç\99»å½\95ã\80\82"
+#: mod/settings.php:1013
+msgid "Calendar"
+msgstr "æ\97¥å\8e\86"
 
-#: ../../mod/uimport.php:66
-msgid "Move account"
-msgstr "把账户搬出"
+#: mod/settings.php:1014
+msgid "Beginning of week:"
+msgstr "一周的开始:"
 
-#: ../../mod/uimport.php:67
-msgid "You can import an account from another Friendica server."
-msgstr "您会从别的Friendica服务器进口账户"
+#: mod/settings.php:1015
+msgid "Don't show notices"
+msgstr "不显示提示"
 
-#: ../../mod/uimport.php:68
-msgid ""
-"You need to export your account from the old server and upload it here. We "
-"will recreate your old account here with all your contacts. We will try also"
-" to inform your friends that you moved here."
-msgstr "您要把您老服务器账户出口才这里上传。我们重现您账户这里,包括所有您的熟人。我们再试通知您朋友们您搬到这里。"
+#: mod/settings.php:1016
+msgid "Infinite scroll"
+msgstr "无限的滚动"
+
+#: mod/settings.php:1017
+msgid "Automatic updates only at the top of the network page"
+msgstr ""
 
-#: ../../mod/uimport.php:69
+#: mod/settings.php:1017
 msgid ""
-"This feature is experimental. We can't import contacts from the OStatus "
-"network (statusnet/identi.ca) or from Diaspora"
-msgstr "这个特点是在试验阶段。我们进口不了Ostatus网络(statusnet/identi.ca)或Diaspora熟人"
+"When disabled, the network page is updated all the time, which could be "
+"confusing while reading."
+msgstr ""
 
-#: ../../mod/uimport.php:70
-msgid "Account file"
-msgstr "账户文件"
+#: mod/settings.php:1018
+msgid "Bandwith Saver Mode"
+msgstr "省流量模式"
 
-#: ../../mod/uimport.php:70
+#: mod/settings.php:1018
 msgid ""
-"To export your account, go to \"Settings->Export your personal data\" and "
-"select \"Export account\""
-msgstr "为出口您账户,点击「设置→出口您私人信息」和选择「出口账户」"
+"When enabled, embedded content is not displayed on automatic updates, they "
+"only show on page reload."
+msgstr "当启用时,嵌入的内容不会在自动更新时显示,它们只在页面重载时显示。"
+
+#: mod/settings.php:1020
+msgid "General Theme Settings"
+msgstr "通用主题设置"
+
+#: mod/settings.php:1021
+msgid "Custom Theme Settings"
+msgstr "自定义主题设置"
+
+#: mod/settings.php:1022
+msgid "Content Settings"
+msgstr "内容设置"
+
+#: mod/settings.php:1023 view/theme/duepuntozero/config.php:67
+#: view/theme/frio/config.php:70 view/theme/quattro/config.php:73
+#: view/theme/vier/config.php:116
+msgid "Theme settings"
+msgstr "主题设置"
 
-#: ../../mod/attach.php:8
-msgid "Item not available."
-msgstr "项目不可用的"
+#: mod/settings.php:1107
+msgid "Account Types"
+msgstr "账户类型"
 
-#: ../../mod/attach.php:20
-msgid "Item was not found."
-msgstr "找不到项目。"
+#: mod/settings.php:1108
+msgid "Personal Page Subtypes"
+msgstr ""
 
-#: ../../boot.php:749
-msgid "Delete this item?"
-msgstr "删除这个项目?"
+#: mod/settings.php:1109
+msgid "Community Forum Subtypes"
+msgstr ""
 
-#: ../../boot.php:752
-msgid "show fewer"
-msgstr "显示更小"
+#: mod/settings.php:1116
+msgid "Personal Page"
+msgstr "个人页面"
 
-#: ../../boot.php:1122
-#, php-format
-msgid "Update %s failed. See error logs."
-msgstr "更新%s美通过。看错误记录。"
+#: mod/settings.php:1117
+msgid "Account for a personal profile."
+msgstr ""
 
-#: ../../boot.php:1240
-msgid "Create a New Account"
-msgstr "创造新的账户"
+#: mod/settings.php:1120
+msgid "Organisation Page"
+msgstr ""
 
-#: ../../boot.php:1265 ../../include/nav.php:73
-msgid "Logout"
-msgstr "注销"
+#: mod/settings.php:1121
+msgid ""
+"Account for an organisation that automatically approves contact requests as "
+"\"Followers\"."
+msgstr ""
 
-#: ../../boot.php:1268
-msgid "Nickname or Email address: "
-msgstr "绰号或电子邮件地址: "
+#: mod/settings.php:1124
+msgid "News Page"
+msgstr ""
 
-#: ../../boot.php:1269
-msgid "Password: "
-msgstr "密码: "
+#: mod/settings.php:1125
+msgid ""
+"Account for a news reflector that automatically approves contact requests as"
+" \"Followers\"."
+msgstr ""
 
-#: ../../boot.php:1270
-msgid "Remember me"
-msgstr "记住我"
+#: mod/settings.php:1128
+msgid "Community Forum"
+msgstr ""
 
-#: ../../boot.php:1273
-msgid "Or login using OpenID: "
-msgstr "或者用OpenID登记:"
+#: mod/settings.php:1129
+msgid "Account for community discussions."
+msgstr ""
 
-#: ../../boot.php:1279
-msgid "Forgot your password?"
-msgstr "忘记你的密码吗?"
+#: mod/settings.php:1132
+msgid "Normal Account Page"
+msgstr "标准账户页面"
 
-#: ../../boot.php:1282
-msgid "Website Terms of Service"
-msgstr "网站的各项规定"
+#: mod/settings.php:1133
+msgid ""
+"Account for a regular personal profile that requires manual approval of "
+"\"Friends\" and \"Followers\"."
+msgstr ""
 
-#: ../../boot.php:1283
-msgid "terms of service"
-msgstr "各项规定"
+#: mod/settings.php:1136
+msgid "Soapbox Page"
+msgstr "演讲台页"
 
-#: ../../boot.php:1285
-msgid "Website Privacy Policy"
-msgstr "网站隐私政策"
+#: mod/settings.php:1137
+msgid ""
+"Account for a public profile that automatically approves contact requests as"
+" \"Followers\"."
+msgstr ""
 
-#: ../../boot.php:1286
-msgid "privacy policy"
-msgstr "隐私政策"
+#: mod/settings.php:1140
+msgid "Public Forum"
+msgstr ""
 
-#: ../../boot.php:1419
-msgid "Requested account is not available."
-msgstr "要求的账户不可用。"
+#: mod/settings.php:1141
+msgid "Automatically approves all contact requests."
+msgstr ""
 
-#: ../../boot.php:1501 ../../boot.php:1635
-#: ../../include/profile_advanced.php:84
-msgid "Edit profile"
-msgstr "修改简介"
+#: mod/settings.php:1144
+msgid "Automatic Friend Page"
+msgstr "自动朋友页"
 
-#: ../../boot.php:1600
-msgid "Message"
-msgstr "通知"
+#: mod/settings.php:1145
+msgid ""
+"Account for a popular profile that automatically approves contact requests "
+"as \"Friends\"."
+msgstr ""
 
-#: ../../boot.php:1606 ../../include/nav.php:175
-msgid "Profiles"
-msgstr "简介"
+#: mod/settings.php:1148
+msgid "Private Forum [Experimental]"
+msgstr "隐私评坛[实验性的 ]"
 
-#: ../../boot.php:1606
-msgid "Manage/edit profiles"
-msgstr "管理/修改简介"
+#: mod/settings.php:1149
+msgid "Requires manual approval of contact requests."
+msgstr ""
 
-#: ../../boot.php:1706
-msgid "Network:"
-msgstr "网络"
+#: mod/settings.php:1160
+msgid "OpenID:"
+msgstr "OpenID:"
 
-#: ../../boot.php:1736 ../../boot.php:1822
-msgid "g A l F d"
-msgstr "g A l d F"
+#: mod/settings.php:1160
+msgid "(Optional) Allow this OpenID to login to this account."
+msgstr "(可选的) 允许这个 OpenID 登录这个账户。"
 
-#: ../../boot.php:1737 ../../boot.php:1823
-msgid "F d"
-msgstr "F d"
+#: mod/settings.php:1168
+msgid "Publish your default profile in your local site directory?"
+msgstr "出版您默认简介在您当地的网站目录?"
 
-#: ../../boot.php:1782 ../../boot.php:1863
-msgid "[today]"
-msgstr "[今天]"
+#: mod/settings.php:1168
+msgid "Your profile may be visible in public."
+msgstr ""
 
-#: ../../boot.php:1794
-msgid "Birthday Reminders"
-msgstr "提醒生日"
+#: mod/settings.php:1174
+msgid "Publish your default profile in the global social directory?"
+msgstr "出版您默认简介在综合社会目录?"
 
-#: ../../boot.php:1795
-msgid "Birthdays this week:"
-msgstr "è¿\99å\91¨ç\9a\84ç\94\9fæ\97¥:"
+#: mod/settings.php:1181
+msgid "Hide your contact/friend list from viewers of your default profile?"
+msgstr "è\97\8fèµ·æ\9d¥  å\8f\91ç\8e°æ\82¨ç\9a\84ç\86\9f人ï¼\8fæ\9c\8bå\8f\8bå\8d\95ä¸\8d让è¿\99个ç®\80ä»\8bç\9c\8bç\9d\80ç\9c\8bï¼\9f\n "
 
-#: ../../boot.php:1856
-msgid "[No description]"
-msgstr "[无描述]"
+#: mod/settings.php:1185
+msgid ""
+"If enabled, posting public messages to Diaspora and other networks isn't "
+"possible."
+msgstr ""
 
-#: ../../boot.php:1874
-msgid "Event Reminders"
-msgstr "事件提醒"
+#: mod/settings.php:1190
+msgid "Allow friends to post to your profile page?"
+msgstr "允许朋友们贴文章在您的简介页?"
 
-#: ../../boot.php:1875
-msgid "Events this week:"
-msgstr "这周的事件:"
+#: mod/settings.php:1195
+msgid "Allow friends to tag your posts?"
+msgstr "允许朋友们标签您的文章?"
 
-#: ../../boot.php:2112 ../../include/nav.php:76
-msgid "Status"
-msgstr "现状"
+#: mod/settings.php:1200
+msgid "Allow us to suggest you as a potential friend to new members?"
+msgstr "允许我们建议您潜力朋友给新成员?"
 
-#: ../../boot.php:2115
-msgid "Status Messages and Posts"
-msgstr "现状通知和文章"
+#: mod/settings.php:1205
+msgid "Permit unknown people to send you private mail?"
+msgstr "允许生人寄给您私人邮件?"
 
-#: ../../boot.php:2122
-msgid "Profile Details"
-msgstr "简介内容"
+#: mod/settings.php:1213
+msgid "Profile is <strong>not published</strong>."
+msgstr "简介是<strong>没出版</strong>"
 
-#: ../../boot.php:2133 ../../boot.php:2136 ../../include/nav.php:79
-msgid "Videos"
-msgstr "视频"
+#: mod/settings.php:1221
+#, php-format
+msgid "Your Identity Address is <strong>'%s'</strong> or '%s'."
+msgstr ""
 
-#: ../../boot.php:2146
-msgid "Events and Calendar"
-msgstr "项目和日历"
+#: mod/settings.php:1228
+msgid "Automatically expire posts after this many days:"
+msgstr "在这数天后自动使文章过期:"
 
-#: ../../boot.php:2153
-msgid "Only You Can See This"
-msgstr "å\8fªæ\82¨è®¸ç\9c\8bè¿\99个"
+#: mod/settings.php:1228
+msgid "If empty, posts will not expire. Expired posts will be deleted"
+msgstr "å¦\82æ\9e\9c为空ï¼\8cæ\96\87ç« ä¸\8dä¼\9aè¿\87æ\9c\9fã\80\82è¿\87æ\9c\9fç\9a\84æ\96\87ç« å°\86被å\88 é\99¤"
 
-#: ../../object/Item.php:94
-msgid "This entry was edited"
-msgstr "这个文章被编辑了"
+#: mod/settings.php:1229
+msgid "Advanced expiration settings"
+msgstr "高级过期设置"
 
-#: ../../object/Item.php:208
-msgid "ignore thread"
-msgstr "忽è§\86主é¢\98"
+#: mod/settings.php:1230
+msgid "Advanced Expiration"
+msgstr "å\85\88è¿\9bç\9a\84è¿\87æ\9c\9f"
 
-#: ../../object/Item.php:209
-msgid "unignore thread"
-msgstr "别忽视主题"
+#: mod/settings.php:1231
+msgid "Expire posts:"
+msgstr "把文章过期:"
 
-#: ../../object/Item.php:210
-msgid "toggle ignore status"
-msgstr "切换忽视状态"
+#: mod/settings.php:1232
+msgid "Expire personal notes:"
+msgstr "把私人便条过期:"
 
-#: ../../object/Item.php:213
-msgid "ignored"
-msgstr "忽视"
+#: mod/settings.php:1233
+msgid "Expire starred posts:"
+msgstr "把星的文章过期:"
 
-#: ../../object/Item.php:316 ../../include/conversation.php:666
-msgid "Categories:"
-msgstr "种类:"
+#: mod/settings.php:1234
+msgid "Expire photos:"
+msgstr "把照片过期:"
 
-#: ../../object/Item.php:317 ../../include/conversation.php:667
-msgid "Filed under:"
-msgstr "å½\92æ¡£å\9c¨:"
+#: mod/settings.php:1235
+msgid "Only expire posts by others:"
+msgstr "å\8fªå\88«äººç\9a\84æ\96\87ç« è¿\87æ\9c\9f:"
 
-#: ../../object/Item.php:329
-msgid "via"
-msgstr "经过"
+#: mod/settings.php:1266
+msgid "Account Settings"
+msgstr "帐户设置"
 
-#: ../../include/dbstructure.php:26
-#, php-format
-msgid ""
-"\n"
-"\t\t\tThe friendica developers released update %s recently,\n"
-"\t\t\tbut when I tried to install it, something went terribly wrong.\n"
-"\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n"
-"\t\t\tfriendica developer if you can not help me on your own. My database might be invalid."
-msgstr ""
+#: mod/settings.php:1274
+msgid "Password Settings"
+msgstr "密码设置"
 
-#: ../../include/dbstructure.php:31
-#, php-format
-msgid ""
-"The error message is\n"
-"[pre]%s[/pre]"
-msgstr ""
+#: mod/settings.php:1276
+msgid "Leave password fields blank unless changing"
+msgstr "留空密码字段,除非要修改"
 
-#: ../../include/dbstructure.php:162
-msgid "Errors encountered creating database tables."
-msgstr "造成数据库列表相遇错误。"
+#: mod/settings.php:1277
+msgid "Current Password:"
+msgstr "当前密码:"
 
-#: ../../include/dbstructure.php:220
-msgid "Errors encountered performing database changes."
-msgstr ""
+#: mod/settings.php:1277 mod/settings.php:1278
+msgid "Your current password to confirm the changes"
+msgstr "你的当前密码,来确认修改"
 
-#: ../../include/auth.php:38
-msgid "Logged out."
-msgstr "注销了"
+#: mod/settings.php:1278
+msgid "Password:"
+msgstr "密码:"
 
-#: ../../include/auth.php:128 ../../include/user.php:67
-msgid ""
-"We encountered a problem while logging in with the OpenID you provided. "
-"Please check the correct spelling of the ID."
-msgstr "我们用您输入的OpenID登录的时候碰到问题。请核实拼法是对的。"
+#: mod/settings.php:1282
+msgid "Basic Settings"
+msgstr "基础设置"
 
-#: ../../include/auth.php:128 ../../include/user.php:67
-msgid "The error message was:"
-msgstr "错误通知是:"
+#: mod/settings.php:1284
+msgid "Email Address:"
+msgstr "电子邮件地址:"
 
-#: ../../include/contact_widgets.php:6
-msgid "Add New Contact"
-msgstr "增添新的熟人"
+#: mod/settings.php:1285
+msgid "Your Timezone:"
+msgstr "你的时区:"
 
-#: ../../include/contact_widgets.php:7
-msgid "Enter address or web location"
-msgstr "输入地址或网位置"
+#: mod/settings.php:1286
+msgid "Your Language:"
+msgstr "你的语言:"
 
-#: ../../include/contact_widgets.php:8
-msgid "Example: bob@example.com, http://example.com/barbara"
-msgstr "比如:li@example.com, http://example.com/li"
+#: mod/settings.php:1286
+msgid ""
+"Set the language we use to show you friendica interface and to send you "
+"emails"
+msgstr ""
 
-#: ../../include/contact_widgets.php:24
-#, php-format
-msgid "%d invitation available"
-msgid_plural "%d invitations available"
-msgstr[0] "%d邀请可用的"
+#: mod/settings.php:1287
+msgid "Default Post Location:"
+msgstr "默认文章位置:"
 
-#: ../../include/contact_widgets.php:30
-msgid "Find People"
-msgstr "找人物"
+#: mod/settings.php:1288
+msgid "Use Browser Location:"
+msgstr "使用浏览器位置:"
 
-#: ../../include/contact_widgets.php:31
-msgid "Enter name or interest"
-msgstr "输入名字或兴趣"
+#: mod/settings.php:1291
+msgid "Security and Privacy Settings"
+msgstr "安全和隐私设置"
 
-#: ../../include/contact_widgets.php:32
-msgid "Connect/Follow"
-msgstr "连接/关注"
+#: mod/settings.php:1293
+msgid "Maximum Friend Requests/Day:"
+msgstr "每天最大朋友请求数:"
 
-#: ../../include/contact_widgets.php:33
-msgid "Examples: Robert Morgenstein, Fishing"
-msgstr "比如:李某,打鱼"
+#: mod/settings.php:1293 mod/settings.php:1323
+msgid "(to prevent spam abuse)"
+msgstr "(用于防止垃圾信息滥用)"
 
-#: ../../include/contact_widgets.php:36 ../../view/theme/diabook/theme.php:526
-msgid "Similar Interests"
-msgstr "相似兴趣"
+#: mod/settings.php:1294
+msgid "Default Post Permissions"
+msgstr "默认文章权限"
 
-#: ../../include/contact_widgets.php:37
-msgid "Random Profile"
-msgstr "随机简介"
+#: mod/settings.php:1295
+msgid "(click to open/close)"
+msgstr "(点击来打开/关闭)"
 
-#: ../../include/contact_widgets.php:38 ../../view/theme/diabook/theme.php:528
-msgid "Invite Friends"
-msgstr "é\82\80请æ\9c\8bå\8f\8b们"
+#: mod/settings.php:1306
+msgid "Default Private Post"
+msgstr "é»\98认ç§\81人æ\96\87ç« "
 
-#: ../../include/contact_widgets.php:71
-msgid "Networks"
-msgstr "网络"
+#: mod/settings.php:1307
+msgid "Default Public Post"
+msgstr "默认公开文章"
 
-#: ../../include/contact_widgets.php:74
-msgid "All Networks"
-msgstr "æ\89\80æ\9c\89ç½\91ç»\9c"
+#: mod/settings.php:1311
+msgid "Default Permissions for New Posts"
+msgstr "æ\96°æ\96\87ç« ç\9a\84é»\98认æ\9d\83é\99\90"
 
-#: ../../include/contact_widgets.php:104 ../../include/features.php:60
-msgid "Saved Folders"
-msgstr "保存的文件夹"
+#: mod/settings.php:1323
+msgid "Maximum private messages per day from unknown people:"
+msgstr "每天来自未知的人的私信:"
 
-#: ../../include/contact_widgets.php:107 ../../include/contact_widgets.php:139
-msgid "Everything"
-msgstr "一切"
+#: mod/settings.php:1326
+msgid "Notification Settings"
+msgstr "通知设置"
 
-#: ../../include/contact_widgets.php:136
-msgid "Categories"
-msgstr "种类"
+#: mod/settings.php:1327
+msgid "By default post a status message when:"
+msgstr "默认地发现状通知如果:"
 
-#: ../../include/features.php:23
-msgid "General Features"
-msgstr "æ\80»ç\9a\84ç\89¹ç\82¹"
+#: mod/settings.php:1328
+msgid "accepting a friend request"
+msgstr "æ\8e¥å\8f\97æ\9c\8bå\8f\8bé\82\80请"
 
-#: ../../include/features.php:25
-msgid "Multiple Profiles"
-msgstr "å¤\9aç®\80ä»\8b"
+#: mod/settings.php:1329
+msgid "joining a forum/community"
+msgstr "å\8a å\85¥ä¸\80个论å\9d\9b/社å\8cº"
 
-#: ../../include/features.php:25
-msgid "Ability to create multiple profiles"
-msgstr "能穿凿多简介"
+#: mod/settings.php:1330
+msgid "making an <em>interesting</em> profile change"
+msgstr "把简介有意思地变修改"
 
-#: ../../include/features.php:30
-msgid "Post Composition Features"
-msgstr "å\86\99æ\96\87ç« ç\89¹ç\82¹"
+#: mod/settings.php:1331
+msgid "Send a notification email when:"
+msgstr "å\8f\91ä¸\80个æ¶\88æ\81¯è¦\81æ\98¯ï¼\9a"
 
-#: ../../include/features.php:31
-msgid "Richtext Editor"
-msgstr "富文本格式编辑"
+#: mod/settings.php:1332
+msgid "You receive an introduction"
+msgstr "你收到一份介绍"
 
-#: ../../include/features.php:31
-msgid "Enable richtext editor"
-msgstr "使å¯\8cæ\96\87æ\9c¬æ ¼å¼\8fç¼\96è¾\91å\8f¯ç\94¨"
+#: mod/settings.php:1333
+msgid "Your introductions are confirmed"
+msgstr "ä½ ç\9a\84ä»\8bç»\8d被确认äº\86"
 
-#: ../../include/features.php:32
-msgid "Post Preview"
-msgstr "æ\96\87ç« é¢\84æ¼\94"
+#: mod/settings.php:1334
+msgid "Someone writes on your profile wall"
+msgstr "æ\9f\90人å\86\99å\9c¨ä½ ç\9a\84ç®\80å\8e\86å¢\99"
 
-#: ../../include/features.php:32
-msgid "Allow previewing posts and comments before publishing them"
-msgstr "允许文章和评论出版前预演"
+#: mod/settings.php:1335
+msgid "Someone writes a followup comment"
+msgstr "某人写一个后续的评论"
 
-#: ../../include/features.php:33
-msgid "Auto-mention Forums"
-msgstr "自动提示论坛"
+#: mod/settings.php:1336
+msgid "You receive a private message"
+msgstr "你收到一封私信"
 
-#: ../../include/features.php:33
-msgid ""
-"Add/remove mention when a fourm page is selected/deselected in ACL window."
-msgstr "添加/删除提示论坛页选择/淘汰在ACL窗户的时候。"
+#: mod/settings.php:1337
+msgid "You receive a friend suggestion"
+msgstr "你受到一个朋友建议"
 
-#: ../../include/features.php:38
-msgid "Network Sidebar Widgets"
-msgstr "网络工具栏小窗口"
+#: mod/settings.php:1338
+msgid "You are tagged in a post"
+msgstr "你被在新闻标签"
 
-#: ../../include/features.php:39
-msgid "Search by Date"
-msgstr "æ\8c\89æ\97¥æ\9c\9fæ\90\9cç´¢"
+#: mod/settings.php:1339
+msgid "You are poked/prodded/etc. in a post"
+msgstr "æ\82¨å\9c¨æ\96\87章被æ\88³"
 
-#: ../../include/features.php:39
-msgid "Ability to select posts by date ranges"
-msgstr "能按时期范围选择文章"
+#: mod/settings.php:1341
+msgid "Activate desktop notifications"
+msgstr "启用桌面通知"
 
-#: ../../include/features.php:40
-msgid "Group Filter"
-msgstr "组滤器"
+#: mod/settings.php:1341
+msgid "Show desktop popup on new notifications"
+msgstr "在有新的提示时显示桌面弹出窗口"
 
-#: ../../include/features.php:40
-msgid "Enable widget to display Network posts only from selected group"
-msgstr "使光表示网络文章从选择的组小窗口"
+#: mod/settings.php:1343
+msgid "Text-only notification emails"
+msgstr "纯文本通知邮件"
 
-#: ../../include/features.php:41
-msgid "Network Filter"
-msgstr "网络滤器"
+#: mod/settings.php:1345
+msgid "Send text only notification emails, without the html part"
+msgstr "发送纯文本通知邮件,无 html 部分"
 
-#: ../../include/features.php:41
-msgid "Enable widget to display Network posts only from selected network"
-msgstr "使å\85\89表示ç½\91ç»\9cæ\96\87ç« ä»\8eé\80\89æ\8b©ç\9a\84ç½\91ç»\9cå°\8fçª\97å\8f£"
+#: mod/settings.php:1347
+msgid "Advanced Account/Page Type Settings"
+msgstr "ä¸\93家账æ\88·ï¼\8f页ç§\8d设置"
 
-#: ../../include/features.php:42
-msgid "Save search terms for re-use"
-msgstr "保存搜索关键为再用"
+#: mod/settings.php:1348
+msgid "Change the behaviour of this account for special situations"
+msgstr "把这个账户特别情况的时候行动变化"
 
-#: ../../include/features.php:47
-msgid "Network Tabs"
-msgstr "网络分页"
+#: mod/settings.php:1351
+msgid "Relocate"
+msgstr "调动"
 
-#: ../../include/features.php:48
-msgid "Network Personal Tab"
-msgstr "网络私人分页"
+#: mod/settings.php:1352
+msgid ""
+"If you have moved this profile from another server, and some of your "
+"contacts don't receive your updates, try pushing this button."
+msgstr "如果您调动这个简介从别的服务器但有的熟人没收到您的更新,尝试按这个钮。"
 
-#: ../../include/features.php:48
-msgid "Enable tab to display only Network posts that you've interacted on"
-msgstr "使表示光网络文章您参加了分页可用"
+#: mod/settings.php:1353
+msgid "Resend relocate message to contacts"
+msgstr "把调动信息寄给熟人"
 
-#: ../../include/features.php:49
-msgid "Network New Tab"
-msgstr "网络新分页"
+#: mod/suggest.php:30
+msgid "Do you really want to delete this suggestion?"
+msgstr "您真的想删除这个建议吗?"
 
-#: ../../include/features.php:49
-msgid "Enable tab to display only new Network posts (from the last 12 hours)"
-msgstr "使表示光网络文章在12小时内分页可用"
+#: mod/suggest.php:71
+msgid ""
+"No suggestions available. If this is a new site, please try again in 24 "
+"hours."
+msgstr "没有建议。如果这是新网站,请24小时后再试。"
 
-#: ../../include/features.php:50
-msgid "Network Shared Links Tab"
-msgstr "网络分享链接分页"
+#: mod/suggest.php:84 mod/suggest.php:104
+msgid "Ignore/Hide"
+msgstr "不理/隐藏"
 
-#: ../../include/features.php:50
-msgid "Enable tab to display only Network posts with links in them"
-msgstr "使表示å\85\89ç½\91ç»\9cæ\96\87ç« å\8c\85æ\8b¬é\93¾æ\8e¥å\88\86页å\8f¯ç\94¨"
+#: mod/wall_attach.php:96
+msgid "Sorry, maybe your upload is bigger than the PHP configuration allows"
+msgstr "ä¸\8d好æ\84\8fæ\80\9dï¼\8cå\8f¯è\83½ä½ ä¸\8aä¼ ç\9a\84æ\98¯PHP设置å\85\81许ç\9a\84大"
 
-#: ../../include/features.php:55
-msgid "Post/Comment Tools"
-msgstr "æ\96\87ç« ï¼\8fè¯\84论工å\85·"
+#: mod/wall_attach.php:96
+msgid "Or - did you try to upload an empty file?"
+msgstr "æ\88\96è\80\85ï¼\8cä½ æ\98¯ä¸\8dæ\98¯ä¸\8a传空ç\9a\84æ\96\87件ï¼\9f"
 
-#: ../../include/features.php:56
-msgid "Multiple Deletion"
-msgstr "多删除"
+#: mod/wall_attach.php:107
+#, php-format
+msgid "File exceeds size limit of %s"
+msgstr "文件超过了 %s 的大小限制"
 
-#: ../../include/features.php:56
-msgid "Select and delete multiple posts/comments at once"
-msgstr "选择和删除多文章/评论一次"
+#: mod/wall_attach.php:151 mod/wall_attach.php:167
+msgid "File upload failed."
+msgstr "文件上传失败。"
 
-#: ../../include/features.php:57
-msgid "Edit Sent Posts"
-msgstr "编辑发送的文章"
+#: mod/admin.php:99
+msgid "Theme settings updated."
+msgstr "主题设置更新了。"
 
-#: ../../include/features.php:57
-msgid "Edit and correct posts and comments after sending"
-msgstr "ç¼\96è¾\91æ\88\96ä¿®æ\94¹æ\96\87ç« å\92\8cè¯\84论å\8f\91é\80\81å\90\8e"
+#: mod/admin.php:171 mod/admin.php:1153
+msgid "Site"
+msgstr "ç½\91ç«\99"
 
-#: ../../include/features.php:58
-msgid "Tagging"
-msgstr "标签"
+#: mod/admin.php:172 mod/admin.php:1087 mod/admin.php:1596 mod/admin.php:1612
+msgid "Users"
+msgstr "用户"
 
-#: ../../include/features.php:58
-msgid "Ability to tag existing posts"
-msgstr "能把目前的文章标签"
+#: mod/admin.php:174 mod/admin.php:1990 mod/admin.php:2040
+msgid "Themes"
+msgstr "主题"
 
-#: ../../include/features.php:59
-msgid "Post Categories"
-msgstr "æ\96\87ç« ç§\8dç±»"
+#: mod/admin.php:176
+msgid "DB updates"
+msgstr "æ\95°æ\8d®åº\93æ\9b´æ\96°"
 
-#: ../../include/features.php:59
-msgid "Add categories to your posts"
-msgstr "加入种类给您的文章"
+#: mod/admin.php:177 mod/admin.php:584
+msgid "Inspect Queue"
+msgstr ""
 
-#: ../../include/features.php:60
-msgid "Ability to file posts under folders"
-msgstr "能把文章归档在文件夹 "
+#: mod/admin.php:178 mod/admin.php:298
+msgid "Server Blocklist"
+msgstr ""
 
-#: ../../include/features.php:61
-msgid "Dislike Posts"
-msgstr "不喜欢文章"
+#: mod/admin.php:179 mod/admin.php:550
+msgid "Federation Statistics"
+msgstr ""
 
-#: ../../include/features.php:61
-msgid "Ability to dislike posts/comments"
-msgstr "能不喜欢文章/评论"
+#: mod/admin.php:180 mod/admin.php:375
+msgid "Delete Item"
+msgstr "删除项目"
 
-#: ../../include/features.php:62
-msgid "Star Posts"
-msgstr "文章星"
+#: mod/admin.php:194 mod/admin.php:205 mod/admin.php:2114
+msgid "Logs"
+msgstr "记录"
 
-#: ../../include/features.php:62
-msgid "Ability to mark special posts with a star indicator"
-msgstr "能把优秀文章跟星标注"
+#: mod/admin.php:195 mod/admin.php:2182
+msgid "View Logs"
+msgstr "查看日志"
 
-#: ../../include/features.php:63
-msgid "Mute Post Notifications"
-msgstr ""
+#: mod/admin.php:196
+msgid "probe address"
+msgstr "试探地址"
 
-#: ../../include/features.php:63
-msgid "Ability to mute notifications for a thread"
-msgstr ""
+#: mod/admin.php:197
+msgid "check webfinger"
+msgstr "查webfinger"
 
-#: ../../include/follow.php:32
-msgid "Connect URL missing."
-msgstr "连接URL失踪的。"
+#: mod/admin.php:204
+msgid "Plugin Features"
+msgstr "插件特点"
 
-#: ../../include/follow.php:59
-msgid ""
-"This site is not configured to allow communications with other networks."
-msgstr "这网站没配置允许跟别的网络交流."
+#: mod/admin.php:206
+msgid "diagnostics"
+msgstr "诊断"
 
-#: ../../include/follow.php:60 ../../include/follow.php:80
-msgid "No compatible communication protocols or feeds were discovered."
-msgstr "没有兼容协议或者摘要找到了."
+#: mod/admin.php:207
+msgid "User registrations waiting for confirmation"
+msgstr "用户注册等确认"
 
-#: ../../include/follow.php:78
-msgid "The profile address specified does not provide adequate information."
-msgstr "è¾\93å\85¥ç\9a\84ç®\80ä»\8bå\9c°å\9d\80没æ\9c\89å¤\9fæ¶\88æ\81¯ã\80\82"
+#: mod/admin.php:289
+msgid "The blocked domain"
+msgstr "被å°\81ç¦\81ç\9a\84å\9f\9få\90\8d"
 
-#: ../../include/follow.php:82
-msgid "An author or name was not found."
-msgstr "找不到作者或名。"
+#: mod/admin.php:290 mod/admin.php:303
+msgid "The reason why you blocked this domain."
+msgstr "封禁这个域名的原因。"
 
-#: ../../include/follow.php:84
-msgid "No browser URL could be matched to this address."
-msgstr "这个地址没有符合什么游览器URL。"
+#: mod/admin.php:291
+msgid "Delete domain"
+msgstr "删除域名"
 
-#: ../../include/follow.php:86
-msgid ""
-"Unable to match @-style Identity Address with a known protocol or email "
-"contact."
-msgstr "使不了知道的相配或邮件熟人相配 "
+#: mod/admin.php:291
+msgid "Check to delete this entry from the blocklist"
+msgstr ""
 
-#: ../../include/follow.php:87
-msgid "Use mailto: in front of address to force email check."
-msgstr "输入mailto:地址前为要求电子邮件检查。"
+#: mod/admin.php:297 mod/admin.php:374 mod/admin.php:549 mod/admin.php:583
+#: mod/admin.php:672 mod/admin.php:1152 mod/admin.php:1595 mod/admin.php:1713
+#: mod/admin.php:1776 mod/admin.php:1989 mod/admin.php:2039 mod/admin.php:2113
+#: mod/admin.php:2181
+msgid "Administration"
+msgstr "管理"
 
-#: ../../include/follow.php:93
+#: mod/admin.php:299
 msgid ""
-"The profile address specified belongs to a network which has been disabled "
-"on this site."
-msgstr "输入的简介地址属在这个网站使不可用的网络。"
+"This page can be used to define a black list of servers from the federated "
+"network that are not allowed to interact with your node. For all entered "
+"domains you should also give a reason why you have blocked the remote "
+"server."
+msgstr ""
 
-#: ../../include/follow.php:103
+#: mod/admin.php:300
 msgid ""
-"Limited profile. This person will be unable to receive direct/personal "
-"notifications from you."
-msgstr "有限的简介。这人不会接受直达/私人通信从您。"
+"The list of blocked servers will be made publically available on the "
+"/friendica page so that your users and people investigating communication "
+"problems can find the reason easily."
+msgstr ""
 
-#: ../../include/follow.php:205
-msgid "Unable to retrieve contact information."
-msgstr "不能取回熟人消息。"
+#: mod/admin.php:301
+msgid "Add new entry to block list"
+msgstr ""
 
-#: ../../include/follow.php:258
-msgid "following"
-msgstr "关注"
+#: mod/admin.php:302
+msgid "Server Domain"
+msgstr "服务器域名"
 
-#: ../../include/group.php:25
+#: mod/admin.php:302
 msgid ""
-"A deleted group with this name was revived. Existing item permissions "
-"<strong>may</strong> apply to this group and any future members. If this is "
-"not what you intended, please create another group with a different name."
-msgstr "一个删除的组用这名被复兴。现有的项目权利<strong>可能</strong>还效为这个组和未来的成员。如果这不是您想的,请造成新组给起别的名。"
+"The domain of the new server to add to the block list. Do not include the "
+"protocol."
+msgstr ""
 
-#: ../../include/group.php:207
-msgid "Default privacy group for new contacts"
-msgstr "默认隐私组为新熟人"
+#: mod/admin.php:303
+msgid "Block reason"
+msgstr "封禁原因"
 
-#: ../../include/group.php:226
-msgid "Everybody"
-msgstr "æ¯\8f人"
+#: mod/admin.php:304
+msgid "Add Entry"
+msgstr "æ·»å\8a æ\9d¡ç\9b®"
 
-#: ../../include/group.php:249
-msgid "edit"
-msgstr "编辑"
+#: mod/admin.php:305
+msgid "Save changes to the blocklist"
+msgstr ""
 
-#: ../../include/group.php:271
-msgid "Edit group"
-msgstr "编辑组"
+#: mod/admin.php:306
+msgid "Current Entries in the Blocklist"
+msgstr ""
 
-#: ../../include/group.php:272
-msgid "Create a new group"
-msgstr "创造新组"
+#: mod/admin.php:309
+msgid "Delete entry from blocklist"
+msgstr ""
 
-#: ../../include/group.php:273
-msgid "Contacts not in any group"
-msgstr "熟人没有组"
+#: mod/admin.php:312
+msgid "Delete entry from blocklist?"
+msgstr ""
 
-#: ../../include/datetime.php:43 ../../include/datetime.php:45
-msgid "Miscellaneous"
-msgstr "形形色色"
+#: mod/admin.php:337
+msgid "Server added to blocklist."
+msgstr ""
 
-#: ../../include/datetime.php:153 ../../include/datetime.php:290
-msgid "year"
-msgstr ""
+#: mod/admin.php:353
+msgid "Site blocklist updated."
+msgstr ""
 
-#: ../../include/datetime.php:158 ../../include/datetime.php:291
-msgid "month"
-msgstr ""
+#: mod/admin.php:376
+msgid "Delete this Item"
+msgstr "删除这个项目"
 
-#: ../../include/datetime.php:163 ../../include/datetime.php:293
-msgid "day"
-msgstr "日"
+#: mod/admin.php:377
+msgid ""
+"On this page you can delete an item from your node. If the item is a top "
+"level posting, the entire thread will be deleted."
+msgstr ""
 
-#: ../../include/datetime.php:276
-msgid "never"
-msgstr "从未"
+#: mod/admin.php:378
+msgid ""
+"You need to know the GUID of the item. You can find it e.g. by looking at "
+"the display URL. The last part of http://example.com/display/123456 is the "
+"GUID, here 123456."
+msgstr ""
 
-#: ../../include/datetime.php:282
-msgid "less than a second ago"
-msgstr "一秒以内"
+#: mod/admin.php:379
+msgid "GUID"
+msgstr ""
 
-#: ../../include/datetime.php:290
-msgid "years"
-msgstr ""
+#: mod/admin.php:379
+msgid "The GUID of the item you want to delete."
+msgstr "你想要删除的项目的 GUID."
 
-#: ../../include/datetime.php:291
-msgid "months"
-msgstr ""
+#: mod/admin.php:416
+msgid "Item marked for deletion."
+msgstr "被标记为要删除的项目。"
 
-#: ../../include/datetime.php:292
-msgid "week"
-msgstr "æ\98\9fæ\9c\9f"
+#: mod/admin.php:480
+msgid "unknown"
+msgstr "æ\9cªç\9f¥"
 
-#: ../../include/datetime.php:292
-msgid "weeks"
-msgstr "星期"
+#: mod/admin.php:543
+msgid ""
+"This page offers you some numbers to the known part of the federated social "
+"network your Friendica node is part of. These numbers are not complete but "
+"only reflect the part of the network your node is aware of."
+msgstr ""
 
-#: ../../include/datetime.php:293
-msgid "days"
-msgstr "天"
+#: mod/admin.php:544
+msgid ""
+"The <em>Auto Discovered Contact Directory</em> feature is not enabled, it "
+"will improve the data displayed here."
+msgstr ""
 
-#: ../../include/datetime.php:294
-msgid "hour"
-msgstr "小时"
+#: mod/admin.php:556
+#, php-format
+msgid "Currently this node is aware of %d nodes from the following platforms:"
+msgstr ""
 
-#: ../../include/datetime.php:294
-msgid "hours"
-msgstr "小时"
+#: mod/admin.php:586
+msgid "ID"
+msgstr ""
 
-#: ../../include/datetime.php:295
-msgid "minute"
-msgstr "分钟"
+#: mod/admin.php:587
+msgid "Recipient Name"
+msgstr ""
 
-#: ../../include/datetime.php:295
-msgid "minutes"
-msgstr "分钟"
+#: mod/admin.php:588
+msgid "Recipient Profile"
+msgstr ""
 
-#: ../../include/datetime.php:296
-msgid "second"
-msgstr ""
+#: mod/admin.php:590
+msgid "Created"
+msgstr ""
 
-#: ../../include/datetime.php:296
-msgid "seconds"
-msgstr ""
+#: mod/admin.php:591
+msgid "Last Tried"
+msgstr ""
 
-#: ../../include/datetime.php:305
-#, php-format
-msgid "%1$d %2$s ago"
-msgstr "%1$d %2$s以前"
+#: mod/admin.php:592
+msgid ""
+"This page lists the content of the queue for outgoing postings. These are "
+"postings the initial delivery failed for. They will be resend later and "
+"eventually deleted if the delivery fails permanently."
+msgstr ""
 
-#: ../../include/datetime.php:477 ../../include/items.php:2211
+#: mod/admin.php:617
 #, php-format
-msgid "%s's birthday"
-msgstr "%s的生日"
+msgid ""
+"Your DB still runs with MyISAM tables. You should change the engine type to "
+"InnoDB. As Friendica will use InnoDB only features in the future, you should"
+" change this! See <a href=\"%s\">here</a> for a guide that may be helpful "
+"converting the table engines. You may also use the command <tt>php "
+"include/dbstructure.php toinnodb</tt> of your Friendica installation for an "
+"automatic conversion.<br />"
+msgstr ""
 
-#: ../../include/datetime.php:478 ../../include/items.php:2212
-#, php-format
-msgid "Happy Birthday %s"
-msgstr "生日快乐%s"
+#: mod/admin.php:626
+msgid ""
+"The database update failed. Please run \"php include/dbstructure.php "
+"update\" from the command line and have a look at the errors that might "
+"appear."
+msgstr ""
 
-#: ../../include/acl_selectors.php:333
-msgid "Visible to everybody"
-msgstr "任何人可见的"
+#: mod/admin.php:632
+msgid "The worker was never executed. Please check your database structure!"
+msgstr ""
 
-#: ../../include/acl_selectors.php:334 ../../view/theme/diabook/config.php:142
-#: ../../view/theme/diabook/theme.php:621
-msgid "show"
-msgstr "著"
+#: mod/admin.php:635
+#, php-format
+msgid ""
+"The last worker execution was on %s UTC. This is older than one hour. Please"
+" check your crontab settings."
+msgstr ""
 
-#: ../../include/acl_selectors.php:335 ../../view/theme/diabook/config.php:142
-#: ../../view/theme/diabook/theme.php:621
-msgid "don't show"
-msgstr "别著"
+#: mod/admin.php:640 mod/admin.php:1545
+msgid "Normal Account"
+msgstr "正常帐户"
 
-#: ../../include/message.php:15 ../../include/message.php:172
-msgid "[no subject]"
-msgstr "[无题目]"
+#: mod/admin.php:641 mod/admin.php:1546
+msgid "Automatic Follower Account"
+msgstr ""
 
-#: ../../include/Contact.php:115
-msgid "stopped following"
-msgstr "结束关注了"
+#: mod/admin.php:642 mod/admin.php:1547
+msgid "Public Forum Account"
+msgstr ""
 
-#: ../../include/Contact.php:228 ../../include/conversation.php:882
-msgid "Poke"
-msgstr ""
+#: mod/admin.php:643 mod/admin.php:1548
+msgid "Automatic Friend Account"
+msgstr "自动朋友帐户"
 
-#: ../../include/Contact.php:229 ../../include/conversation.php:876
-msgid "View Status"
-msgstr "看现状"
+#: mod/admin.php:644
+msgid "Blog Account"
+msgstr "博客账户"
 
-#: ../../include/Contact.php:230 ../../include/conversation.php:877
-msgid "View Profile"
-msgstr "看简介"
+#: mod/admin.php:645
+msgid "Private Forum Account"
+msgstr ""
 
-#: ../../include/Contact.php:231 ../../include/conversation.php:878
-msgid "View Photos"
-msgstr "看照片"
+#: mod/admin.php:667
+msgid "Message queues"
+msgstr "通知排队"
 
-#: ../../include/Contact.php:232 ../../include/Contact.php:255
-#: ../../include/conversation.php:879
-msgid "Network Posts"
-msgstr "网络文章"
+#: mod/admin.php:673
+msgid "Summary"
+msgstr "总算"
 
-#: ../../include/Contact.php:233 ../../include/Contact.php:255
-#: ../../include/conversation.php:880
-msgid "Edit Contact"
-msgstr "编辑熟人"
+#: mod/admin.php:675
+msgid "Registered users"
+msgstr "注册的用户"
 
-#: ../../include/Contact.php:234
-msgid "Drop Contact"
-msgstr "删除熟人"
+#: mod/admin.php:677
+msgid "Pending registrations"
+msgstr "未决的注册"
 
-#: ../../include/Contact.php:235 ../../include/Contact.php:255
-#: ../../include/conversation.php:881
-msgid "Send PM"
-msgstr "法私人的新闻"
+#: mod/admin.php:678
+msgid "Version"
+msgstr "版本"
 
-#: ../../include/security.php:22
-msgid "Welcome "
-msgstr "欢è¿\8e"
+#: mod/admin.php:683
+msgid "Active plugins"
+msgstr "æ´»è·\83ç\9a\84æ\8f\92件"
 
-#: ../../include/security.php:23
-msgid "Please upload a profile photo."
-msgstr "请上传一张简介照片"
+#: mod/admin.php:708
+msgid "Can not parse base url. Must have at least <scheme>://<domain>"
+msgstr "不能分析基础URL。至少要<scheme>://<domain>"
 
-#: ../../include/security.php:26
-msgid "Welcome back "
-msgstr "欢迎归来"
+#: mod/admin.php:1013
+msgid "Site settings updated."
+msgstr "网站设置更新了。"
 
-#: ../../include/security.php:366
-msgid ""
-"The form security token was not correct. This probably happened because the "
-"form has been opened for too long (>3 hours) before submitting it."
-msgstr "表格安全令牌不对。最可能因为表格开着太久(三个小时以上)提交前。"
+#: mod/admin.php:1070
+msgid "No community page"
+msgstr "没有社会页"
 
-#: ../../include/conversation.php:118 ../../include/conversation.php:246
-#: ../../include/text.php:1966 ../../view/theme/diabook/theme.php:463
-msgid "event"
-msgstr "项目"
+#: mod/admin.php:1071
+msgid "Public postings from users of this site"
+msgstr "本网站用户的公开文章"
 
-#: ../../include/conversation.php:207
-#, php-format
-msgid "%1$s poked %2$s"
-msgstr "%1$s把%2$s戳"
+#: mod/admin.php:1072
+msgid "Global community page"
+msgstr "全球社会页"
 
-#: ../../include/conversation.php:211 ../../include/text.php:1005
-msgid "poked"
-msgstr "戳了"
+#: mod/admin.php:1077 mod/contacts.php:551
+msgid "Never"
+msgstr "从未"
 
-#: ../../include/conversation.php:291
-msgid "post/item"
-msgstr "æ\96\87ç« ï¼\8f项ç\9b®"
+#: mod/admin.php:1078
+msgid "At post arrival"
+msgstr "æ\94¶ä»¶ç\9a\84æ\97¶å\80\99"
 
-#: ../../include/conversation.php:292
-#, php-format
-msgid "%1$s marked %2$s's %3$s as favorite"
-msgstr "%1$s标注%2$s的%3$s为偏爱"
+#: mod/admin.php:1086 mod/contacts.php:578
+msgid "Disabled"
+msgstr "已停用"
 
-#: ../../include/conversation.php:772
-msgid "remove"
-msgstr "删除"
+#: mod/admin.php:1088
+msgid "Users, Global Contacts"
+msgstr ""
 
-#: ../../include/conversation.php:776
-msgid "Delete Selected Items"
-msgstr "删除选的项目"
+#: mod/admin.php:1089
+msgid "Users, Global Contacts/fallback"
+msgstr ""
 
-#: ../../include/conversation.php:875
-msgid "Follow Thread"
-msgstr "关注线绳"
+#: mod/admin.php:1093
+msgid "One month"
+msgstr "一个月"
 
-#: ../../include/conversation.php:944
-#, php-format
-msgid "%s likes this."
-msgstr "%s喜欢这个."
+#: mod/admin.php:1094
+msgid "Three months"
+msgstr "三个月"
 
-#: ../../include/conversation.php:944
-#, php-format
-msgid "%s doesn't like this."
-msgstr "%s没有喜欢这个."
+#: mod/admin.php:1095
+msgid "Half a year"
+msgstr "半年"
 
-#: ../../include/conversation.php:949
-#, php-format
-msgid "<span  %1$s>%2$d people</span> like this"
-msgstr "<span  %1$s>%2$d人们</span>喜欢这个"
+#: mod/admin.php:1096
+msgid "One year"
+msgstr "一年"
 
-#: ../../include/conversation.php:952
-#, php-format
-msgid "<span  %1$s>%2$d people</span> don't like this"
-msgstr "<span  %1$s>%2$d人们</span>不喜欢这个"
+#: mod/admin.php:1101
+msgid "Multi user instance"
+msgstr "多用户网站"
 
-#: ../../include/conversation.php:966
-msgid "and"
-msgstr "å\92\8c"
+#: mod/admin.php:1124
+msgid "Closed"
+msgstr "å\85³é\97­"
 
-#: ../../include/conversation.php:972
-#, php-format
-msgid ", and %d other people"
-msgstr ",和%d别人"
+#: mod/admin.php:1125
+msgid "Requires approval"
+msgstr "要批准"
 
-#: ../../include/conversation.php:974
-#, php-format
-msgid "%s like this."
-msgstr "%s喜欢这个"
+#: mod/admin.php:1126
+msgid "Open"
+msgstr "打开"
 
-#: ../../include/conversation.php:974
-#, php-format
-msgid "%s don't like this."
-msgstr "%s不喜欢这个"
+#: mod/admin.php:1130
+msgid "No SSL policy, links will track page SSL state"
+msgstr "没SSL方针,环节将追踪页SSL现状"
 
-#: ../../include/conversation.php:1001 ../../include/conversation.php:1019
-msgid "Visible to <strong>everybody</strong>"
-msgstr "<strong>大家</strong>可见的"
+#: mod/admin.php:1131
+msgid "Force all links to use SSL"
+msgstr "强制所有链接使用 SSL"
 
-#: ../../include/conversation.php:1003 ../../include/conversation.php:1021
-msgid "Please enter a video link/URL:"
-msgstr "请è¾\93å\85¥è§\86é¢\91è¿\9eæ\8e¥ï¼\8fURLï¼\9a"
+#: mod/admin.php:1132
+msgid "Self-signed certificate, use SSL for local links only (discouraged)"
+msgstr "è\87ªç­¾è¯\81书ï¼\8cå\8fªå\9c¨æ\9c¬å\9c°é\93¾æ\8e¥ä½¿ç\94¨ SSLï¼\88ä¸\8dæ\8e¨è\8d\90ï¼\89"
 
-#: ../../include/conversation.php:1004 ../../include/conversation.php:1022
-msgid "Please enter an audio link/URL:"
-msgstr "请输入音响连接/URL:"
+#: mod/admin.php:1156
+msgid "File upload"
+msgstr "文件上传"
 
-#: ../../include/conversation.php:1005 ../../include/conversation.php:1023
-msgid "Tag term:"
-msgstr "æ \87ç­¾:"
+#: mod/admin.php:1157
+msgid "Policies"
+msgstr "æ\94¿ç­\96"
 
-#: ../../include/conversation.php:1007 ../../include/conversation.php:1025
-msgid "Where are you right now?"
-msgstr "你在哪里?"
+#: mod/admin.php:1159
+msgid "Auto Discovered Contact Directory"
+msgstr ""
 
-#: ../../include/conversation.php:1008
-msgid "Delete item(s)?"
-msgstr "æ\8a\8a项ç\9b®å\88 é\99¤å\90\97ï¼\9f"
+#: mod/admin.php:1160
+msgid "Performance"
+msgstr "æ\80§è\83½"
 
-#: ../../include/conversation.php:1051
-msgid "Post to Email"
-msgstr "电邮发布"
+#: mod/admin.php:1161
+msgid "Worker"
+msgstr ""
 
-#: ../../include/conversation.php:1056
-#, php-format
-msgid "Connectors disabled, since \"%s\" is enabled."
-msgstr "连接器已停用,因为\"%s\"启用。"
+#: mod/admin.php:1162
+msgid ""
+"Relocate - WARNING: advanced function. Could make this server unreachable."
+msgstr "重定位 - 警告:高级功能。可能会让这个服务器不可达。"
 
-#: ../../include/conversation.php:1111
-msgid "permissions"
-msgstr "权利"
+#: mod/admin.php:1165
+msgid "Site name"
+msgstr "网页名字"
 
-#: ../../include/conversation.php:1135
-msgid "Post to Groups"
-msgstr "发到组"
+#: mod/admin.php:1166
+msgid "Host name"
+msgstr "服务器名"
 
-#: ../../include/conversation.php:1136
-msgid "Post to Contacts"
-msgstr "å\8f\91å\88°ç\86\9f人"
+#: mod/admin.php:1167
+msgid "Sender Email"
+msgstr "å¯\84主é\82®ä»¶"
 
-#: ../../include/conversation.php:1137
-msgid "Private post"
-msgstr "私人文章"
+#: mod/admin.php:1167
+msgid ""
+"The email address your server shall use to send notification emails from."
+msgstr ""
 
-#: ../../include/network.php:895
-msgid "view full size"
-msgstr "看全尺寸"
+#: mod/admin.php:1168
+msgid "Banner/Logo"
+msgstr "标题/标志"
 
-#: ../../include/text.php:297
-msgid "newer"
-msgstr "æ\9b´æ\96°"
+#: mod/admin.php:1169
+msgid "Shortcut icon"
+msgstr "æ\8d·å¾\84å°\8få\9b¾ç\89\87"
 
-#: ../../include/text.php:299
-msgid "older"
-msgstr "更旧"
+#: mod/admin.php:1169
+msgid "Link to an icon that will be used for browsers."
+msgstr ""
 
-#: ../../include/text.php:304
-msgid "prev"
-msgstr "上个"
+#: mod/admin.php:1170
+msgid "Touch icon"
+msgstr "触摸小图片"
 
-#: ../../include/text.php:306
-msgid "first"
-msgstr "首先"
+#: mod/admin.php:1170
+msgid "Link to an icon that will be used for tablets and mobiles."
+msgstr ""
 
-#: ../../include/text.php:338
-msgid "last"
-msgstr "最后"
+#: mod/admin.php:1171
+msgid "Additional Info"
+msgstr "别的消息"
 
-#: ../../include/text.php:341
-msgid "next"
-msgstr "下个"
+#: mod/admin.php:1171
+#, php-format
+msgid ""
+"For public servers: you can add additional information here that will be "
+"listed at %s/siteinfo."
+msgstr ""
 
-#: ../../include/text.php:855
-msgid "No contacts"
-msgstr "没有熟人"
+#: mod/admin.php:1172
+msgid "System language"
+msgstr "系统语言"
 
-#: ../../include/text.php:864
-#, php-format
-msgid "%d Contact"
-msgid_plural "%d Contacts"
-msgstr[0] "%d熟人"
+#: mod/admin.php:1173
+msgid "System theme"
+msgstr "系统主题"
 
-#: ../../include/text.php:1005
-msgid "poke"
-msgstr "戳"
+#: mod/admin.php:1173
+msgid ""
+"Default system theme - may be over-ridden by user profiles - <a href='#' "
+"id='cnftheme'>change theme settings</a>"
+msgstr "默认系统主题-会被用户简介超驰-<a href='#' id='cnftheme'>把主题设置变化</a>"
 
-#: ../../include/text.php:1006
-msgid "ping"
-msgstr ""
+#: mod/admin.php:1174
+msgid "Mobile system theme"
+msgstr "手机系统主题"
 
-#: ../../include/text.php:1006
-msgid "pinged"
-msgstr "ç °äº\86"
+#: mod/admin.php:1174
+msgid "Theme for mobile devices"
+msgstr "ç\94¨äº\8e移å\8a¨è®¾å¤\87ç\9a\84主é¢\98"
 
-#: ../../include/text.php:1007
-msgid "prod"
-msgstr "柔戳"
+#: mod/admin.php:1175
+msgid "SSL link policy"
+msgstr "SSL环节方针"
 
-#: ../../include/text.php:1007
-msgid "prodded"
-msgstr "柔戳了"
+#: mod/admin.php:1175
+msgid "Determines whether generated links should be forced to use SSL"
+msgstr "决定产生的链接是否应该强制使用 SSL"
 
-#: ../../include/text.php:1008
-msgid "slap"
-msgstr "掌击"
+#: mod/admin.php:1176
+msgid "Force SSL"
+msgstr "强制使用 SSL"
 
-#: ../../include/text.php:1008
-msgid "slapped"
-msgstr "掌击了"
+#: mod/admin.php:1176
+msgid ""
+"Force all Non-SSL requests to SSL - Attention: on some systems it could lead"
+" to endless loops."
+msgstr "强逼所有非SSL的要求用SSL。注意:在有的系统会导致无限循环"
 
-#: ../../include/text.php:1009
-msgid "finger"
-msgstr ""
+#: mod/admin.php:1177
+msgid "Hide help entry from navigation menu"
+msgstr "隐藏帮助在航行选单"
 
-#: ../../include/text.php:1009
-msgid "fingered"
-msgstr "指了"
+#: mod/admin.php:1177
+msgid ""
+"Hides the menu entry for the Help pages from the navigation menu. You can "
+"still access it calling /help directly."
+msgstr "隐藏帮助项目在航行选单。您还能用它经过手动的输入「/help」"
 
-#: ../../include/text.php:1010
-msgid "rebuff"
-msgstr "窝脖儿"
+#: mod/admin.php:1178
+msgid "Single user instance"
+msgstr "单用户网站"
 
-#: ../../include/text.php:1010
-msgid "rebuffed"
-msgstr "窝脖儿了"
+#: mod/admin.php:1178
+msgid "Make this instance multi-user or single-user for the named user"
+msgstr "弄这网站多用户或单用户为选择的用户"
 
-#: ../../include/text.php:1024
-msgid "happy"
-msgstr "å¼\80å¿\83"
+#: mod/admin.php:1179
+msgid "Maximum image size"
+msgstr "å\9b¾ç\89\87æ\9c\80大尺寸"
 
-#: ../../include/text.php:1025
-msgid "sad"
-msgstr "伤心"
+#: mod/admin.php:1179
+msgid ""
+"Maximum size in bytes of uploaded images. Default is 0, which means no "
+"limits."
+msgstr "最多上传照相的字节。默认是零,意思是无限。"
 
-#: ../../include/text.php:1026
-msgid "mellow"
-msgstr "轻松"
+#: mod/admin.php:1180
+msgid "Maximum image length"
+msgstr "最大图片大小"
 
-#: ../../include/text.php:1027
-msgid "tired"
-msgstr "累"
+#: mod/admin.php:1180
+msgid ""
+"Maximum length in pixels of the longest side of uploaded images. Default is "
+"-1, which means no limits."
+msgstr "最多像素在上传图片的长度。默认-1,意思是无限。"
 
-#: ../../include/text.php:1028
-msgid "perky"
-msgstr "æ\9cºæ\95\8f"
+#: mod/admin.php:1181
+msgid "JPEG image quality"
+msgstr "JPEGå\9b¾ç\89\87è´¨é\87\8f"
 
-#: ../../include/text.php:1029
-msgid "angry"
-msgstr "生气"
+#: mod/admin.php:1181
+msgid ""
+"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is "
+"100, which is full quality."
+msgstr "上传的JPEG被用这质量[0-100]保存。默认100,最高。"
 
-#: ../../include/text.php:1030
-msgid "stupified"
-msgstr "麻醉"
+#: mod/admin.php:1183
+msgid "Register policy"
+msgstr "注册政策"
 
-#: ../../include/text.php:1031
-msgid "puzzled"
-msgstr "纳闷"
+#: mod/admin.php:1184
+msgid "Maximum Daily Registrations"
+msgstr "一天最多注册"
 
-#: ../../include/text.php:1032
-msgid "interested"
-msgstr "有兴趣"
+#: mod/admin.php:1184
+msgid ""
+"If registration is permitted above, this sets the maximum number of new user"
+" registrations to accept per day.  If register is set to closed, this "
+"setting has no effect."
+msgstr "如果注册上边许可的,这个选择一天最多新用户注册会接待。如果注册关闭了,这个设置没有印象。"
 
-#: ../../include/text.php:1033
-msgid "bitter"
-msgstr ""
+#: mod/admin.php:1185
+msgid "Register text"
+msgstr "注册正文"
 
-#: ../../include/text.php:1034
-msgid "cheerful"
-msgstr "快乐"
+#: mod/admin.php:1185
+msgid "Will be displayed prominently on the registration page."
+msgstr "被显著的在注册页表示。"
 
-#: ../../include/text.php:1035
-msgid "alive"
-msgstr "活着"
+#: mod/admin.php:1186
+msgid "Accounts abandoned after x days"
+msgstr "账户丢弃X天后"
 
-#: ../../include/text.php:1036
-msgid "annoyed"
-msgstr "被烦恼"
+#: mod/admin.php:1186
+msgid ""
+"Will not waste system resources polling external sites for abandonded "
+"accounts. Enter 0 for no time limit."
+msgstr "拒绝浪费系统资源看外网站找丢弃的账户。输入0为无时限。"
 
-#: ../../include/text.php:1037
-msgid "anxious"
-msgstr "å¿\83ç\84¦"
+#: mod/admin.php:1187
+msgid "Allowed friend domains"
+msgstr "å\85\81许ç\9a\84æ\9c\8bå\8f\8bå\9f\9f"
 
-#: ../../include/text.php:1038
-msgid "cranky"
-msgstr "不稳"
+#: mod/admin.php:1187
+msgid ""
+"Comma separated list of domains which are allowed to establish friendships "
+"with this site. Wildcards are accepted. Empty to allow any domains"
+msgstr "逗号分隔的域名许根这个网站结友谊。通配符行。空的允许所有的域名。"
 
-#: ../../include/text.php:1039
-msgid "disturbed"
-msgstr "不安"
+#: mod/admin.php:1188
+msgid "Allowed email domains"
+msgstr "允许的电子邮件域"
 
-#: ../../include/text.php:1040
-msgid "frustrated"
-msgstr "被作梗"
+#: mod/admin.php:1188
+msgid ""
+"Comma separated list of domains which are allowed in email addresses for "
+"registrations to this site. Wildcards are accepted. Empty to allow any "
+"domains"
+msgstr "逗号分隔的域名可接受在邮件地址为这网站的注册。通配符行。空的允许所有的域名。"
 
-#: ../../include/text.php:1041
-msgid "motivated"
-msgstr "士气高涨"
+#: mod/admin.php:1189
+msgid "Block public"
+msgstr "拦公开"
 
-#: ../../include/text.php:1042
-msgid "relaxed"
-msgstr "轻松"
+#: mod/admin.php:1189
+msgid ""
+"Check to block public access to all otherwise public personal pages on this "
+"site unless you are currently logged in."
+msgstr "拦公开看什么否则空开的私页在这网站除了您登录的时候以外。"
 
-#: ../../include/text.php:1043
-msgid "surprised"
-msgstr "诧异"
+#: mod/admin.php:1190
+msgid "Force publish"
+msgstr "需要出版"
 
-#: ../../include/text.php:1213
-msgid "Monday"
-msgstr "星期一"
+#: mod/admin.php:1190
+msgid ""
+"Check to force all profiles on this site to be listed in the site directory."
+msgstr "让所有这网站的的简介表明在网站目录。"
 
-#: ../../include/text.php:1213
-msgid "Tuesday"
-msgstr "星期二"
+#: mod/admin.php:1191
+msgid "Global directory URL"
+msgstr ""
 
-#: ../../include/text.php:1213
-msgid "Wednesday"
-msgstr "星期三"
+#: mod/admin.php:1191
+msgid ""
+"URL to the global directory. If this is not set, the global directory is "
+"completely unavailable to the application."
+msgstr ""
 
-#: ../../include/text.php:1213
-msgid "Thursday"
-msgstr "星期四"
+#: mod/admin.php:1192
+msgid "Allow threaded items"
+msgstr "允许线绳项目"
 
-#: ../../include/text.php:1213
-msgid "Friday"
-msgstr "星期五"
+#: mod/admin.php:1192
+msgid "Allow infinite level threading for items on this site."
+msgstr "允许无限水平线绳为这网站的项目。"
 
-#: ../../include/text.php:1213
-msgid "Saturday"
-msgstr "æ\98\9fæ\9c\9få\85­"
+#: mod/admin.php:1193
+msgid "Private posts by default for new users"
+msgstr "æ\96°ç\94¨æ\88·é»\98认å\86\99ç§\81人æ\96\87ç« "
 
-#: ../../include/text.php:1213
-msgid "Sunday"
-msgstr "星期天"
+#: mod/admin.php:1193
+msgid ""
+"Set default post permissions for all new members to the default privacy "
+"group rather than public."
+msgstr "默认新用户文章批准使默认隐私组,没有公开。"
 
-#: ../../include/text.php:1217
-msgid "January"
-msgstr "一月"
+#: mod/admin.php:1194
+msgid "Don't include post content in email notifications"
+msgstr "别包含文章内容在邮件消息"
 
-#: ../../include/text.php:1217
-msgid "February"
-msgstr "二月"
+#: mod/admin.php:1194
+msgid ""
+"Don't include the content of a post/comment/private message/etc. in the "
+"email notifications that are sent out from this site, as a privacy measure."
+msgstr "别包含文章/谈论/私消息/等的内容在文件消息被这个网站寄出,为了隐私。"
 
-#: ../../include/text.php:1217
-msgid "March"
-msgstr "ä¸\89æ\9c\88"
+#: mod/admin.php:1195
+msgid "Disallow public access to addons listed in the apps menu."
+msgstr "ä¸\8då\85\81许æ\8f\92件ç\9a\84å\85¬ä¼\97使ç\94¨æ\9d\83å\9c¨åº\94ç\94¨é\80\89å\8d\95ã\80\82"
 
-#: ../../include/text.php:1217
-msgid "April"
-msgstr "四月"
+#: mod/admin.php:1195
+msgid ""
+"Checking this box will restrict addons listed in the apps menu to members "
+"only."
+msgstr "复选这个框为把应用选内插件限制仅成员"
 
-#: ../../include/text.php:1217
-msgid "May"
-msgstr "五月"
+#: mod/admin.php:1196
+msgid "Don't embed private images in posts"
+msgstr "别嵌入私人图案在文章里"
 
-#: ../../include/text.php:1217
-msgid "June"
-msgstr "六月"
+#: mod/admin.php:1196
+msgid ""
+"Don't replace locally-hosted private photos in posts with an embedded copy "
+"of the image. This means that contacts who receive posts containing private "
+"photos will have to authenticate and load each image, which may take a "
+"while."
+msgstr "别把复制嵌入的照相代替本网站的私人照相在文章里。结果是收包括私人照相的熟人要认证才卸载个张照片,会花许久。"
 
-#: ../../include/text.php:1217
-msgid "July"
-msgstr "七月"
+#: mod/admin.php:1197
+msgid "Allow Users to set remote_self"
+msgstr "允许用户用遥远的自身"
 
-#: ../../include/text.php:1217
-msgid "August"
-msgstr "八月"
+#: mod/admin.php:1197
+msgid ""
+"With checking this, every user is allowed to mark every contact as a "
+"remote_self in the repair contact dialog. Setting this flag on a contact "
+"causes mirroring every posting of that contact in the users stream."
+msgstr "选择这个之后,用户们允许表明熟人当遥远的自身在熟人修理页。遥远的自身所有文章被复制到用户文章流。"
 
-#: ../../include/text.php:1217
-msgid "September"
-msgstr "九月"
+#: mod/admin.php:1198
+msgid "Block multiple registrations"
+msgstr "拦一人多注册"
 
-#: ../../include/text.php:1217
-msgid "October"
-msgstr "十月"
+#: mod/admin.php:1198
+msgid "Disallow users to register additional accounts for use as pages."
+msgstr "不允许用户注册别的账户为当页。"
 
-#: ../../include/text.php:1217
-msgid "November"
-msgstr "十一月"
+#: mod/admin.php:1199
+msgid "OpenID support"
+msgstr "OpenID支持"
 
-#: ../../include/text.php:1217
-msgid "December"
-msgstr "十二月"
+#: mod/admin.php:1199
+msgid "OpenID support for registration and logins."
+msgstr "OpenID支持注册和登录。"
 
-#: ../../include/text.php:1437
-msgid "bytes"
-msgstr "å­\97è\8a\82"
+#: mod/admin.php:1200
+msgid "Fullname check"
+msgstr "å\85¨å\90\8dæ ¸å®\9e"
 
-#: ../../include/text.php:1461 ../../include/text.php:1473
-msgid "Click to open/close"
-msgstr "点击为开关"
+#: mod/admin.php:1200
+msgid ""
+"Force users to register with a space between firstname and lastname in Full "
+"name, as an antispam measure"
+msgstr "让用户注册的时候放空格姓名中间,省得垃圾注册。"
 
-#: ../../include/text.php:1702 ../../include/user.php:247
-#: ../../view/theme/duepuntozero/config.php:44
-msgid "default"
-msgstr "默认"
+#: mod/admin.php:1201
+msgid "Community Page Style"
+msgstr "社会页款式"
 
-#: ../../include/text.php:1714
-msgid "Select an alternate language"
-msgstr "选择别的语言"
+#: mod/admin.php:1201
+msgid ""
+"Type of community page to show. 'Global community' shows every public "
+"posting from an open distributed network that arrived on this server."
+msgstr "社会页种类将显示。“全球社会”显示所有公开的文章从某网络到达本服务器。"
 
-#: ../../include/text.php:1970
-msgid "activity"
-msgstr "活动"
+#: mod/admin.php:1202
+msgid "Posts per user on community page"
+msgstr "个用户文章数量在社会页"
 
-#: ../../include/text.php:1973
-msgid "post"
-msgstr "文章"
+#: mod/admin.php:1202
+msgid ""
+"The maximum number of posts per user on the community page. (Not valid for "
+"'Global Community')"
+msgstr "一个用户最多文章在社会页。(无效在“全球社会”)"
 
-#: ../../include/text.php:2141
-msgid "Item filed"
-msgstr "把项目归档了"
+#: mod/admin.php:1203
+msgid "Enable OStatus support"
+msgstr "启用 OStatus 支持"
 
-#: ../../include/bbcode.php:428 ../../include/bbcode.php:1047
-#: ../../include/bbcode.php:1048
-msgid "Image/photo"
-msgstr "图像/照片"
+#: mod/admin.php:1203
+msgid ""
+"Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All "
+"communications in OStatus are public, so privacy warnings will be "
+"occasionally displayed."
+msgstr "提供内置的 OStatus(StatusNet、GNU Social 等)兼容性。所有 OStatus 的通信是公开的,所以会偶尔显示隐私警告。"
 
-#: ../../include/bbcode.php:528
-#, php-format
-msgid "<a href=\"%1$s\" target=\"_blank\">%2$s</a> %3$s"
+#: mod/admin.php:1204
+msgid "Only import OStatus threads from our contacts"
 msgstr ""
 
-#: ../../include/bbcode.php:562
-#, php-format
+#: mod/admin.php:1204
 msgid ""
-"<span><a href=\"%s\" target=\"_blank\">%s</a> wrote the following <a "
-"href=\"%s\" target=\"_blank\">post</a>"
-msgstr "<span><a href=\"%s\" target=\"_blank\">%s</a>写了下面的<a href=\"%s\" target=\"_blank\">消息</a>"
+"Normally we import every content from our OStatus contacts. With this option"
+" we only store threads that are started by a contact that is known on our "
+"system."
+msgstr ""
 
-#: ../../include/bbcode.php:1011 ../../include/bbcode.php:1031
-msgid "$1 wrote:"
-msgstr "$1写:"
+#: mod/admin.php:1205
+msgid "OStatus support can only be enabled if threading is enabled."
+msgstr ""
 
-#: ../../include/bbcode.php:1056 ../../include/bbcode.php:1057
-msgid "Encrypted content"
-msgstr "加密的内容"
+#: mod/admin.php:1207
+msgid ""
+"Diaspora support can't be enabled because Friendica was installed into a sub"
+" directory."
+msgstr ""
 
-#: ../../include/notifier.php:786 ../../include/delivery.php:456
-msgid "(no subject)"
-msgstr "沒有题目"
+#: mod/admin.php:1208
+msgid "Enable Diaspora support"
+msgstr "启用 Diaspora 支持"
 
-#: ../../include/notifier.php:796 ../../include/delivery.php:467
-#: ../../include/enotify.php:33
-msgid "noreply"
-msgstr "noreply"
+#: mod/admin.php:1208
+msgid "Provide built-in Diaspora network compatibility."
+msgstr "提供内置的 Diaspora 网络兼容性。"
 
-#: ../../include/dba_pdo.php:72 ../../include/dba.php:56
-#, php-format
-msgid "Cannot locate DNS info for database server '%s'"
-msgstr "找不到DNS信息为数据库服务器「%s」"
+#: mod/admin.php:1209
+msgid "Only allow Friendica contacts"
+msgstr "只允许 Friendica 联系人"
 
-#: ../../include/contact_selectors.php:32
-msgid "Unknown | Not categorised"
-msgstr "未知的 |无分类"
+#: mod/admin.php:1209
+msgid ""
+"All contacts must use Friendica protocols. All other built-in communication "
+"protocols disabled."
+msgstr "所有的熟人要用Friendica协议 。别的内装的沟通协议都已停用。"
 
-#: ../../include/contact_selectors.php:33
-msgid "Block immediately"
-msgstr "立即拦"
+#: mod/admin.php:1210
+msgid "Verify SSL"
+msgstr "验证 SSL"
 
-#: ../../include/contact_selectors.php:34
-msgid "Shady, spammer, self-marketer"
-msgstr "可疑,发垃圾者,自市场开发者"
+#: mod/admin.php:1210
+msgid ""
+"If you wish, you can turn on strict certificate checking. This will mean you"
+" cannot connect (at all) to self-signed SSL sites."
+msgstr "你想的话,您会使严格证书核实可用。意思是您不能根自签的SSL网站交流。"
 
-#: ../../include/contact_selectors.php:35
-msgid "Known to me, but no opinion"
-msgstr "我认识,但没有意见"
+#: mod/admin.php:1211
+msgid "Proxy user"
+msgstr "代理用户"
 
-#: ../../include/contact_selectors.php:36
-msgid "OK, probably harmless"
-msgstr "行,大概无恶意的"
+#: mod/admin.php:1212
+msgid "Proxy URL"
+msgstr "代理URL"
 
-#: ../../include/contact_selectors.php:37
-msgid "Reputable, has my trust"
-msgstr "可信的,有我的信任"
+#: mod/admin.php:1213
+msgid "Network timeout"
+msgstr "网络超时"
 
-#: ../../include/contact_selectors.php:60
-msgid "Weekly"
-msgstr "每周"
+#: mod/admin.php:1213
+msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
+msgstr "输入秒数。输入零为无限(不推荐的)。"
 
-#: ../../include/contact_selectors.php:61
-msgid "Monthly"
-msgstr "æ¯\8fæ\9c\88"
+#: mod/admin.php:1214
+msgid "Maximum Load Average"
+msgstr "æ\9c\80大平å\9d\87è´\9fè\8d·"
 
-#: ../../include/contact_selectors.php:77
-msgid "OStatus"
-msgstr "OStatus"
+#: mod/admin.php:1214
+msgid ""
+"Maximum system load before delivery and poll processes are deferred - "
+"default 50."
+msgstr "系统负荷平均以上转播和检查行程会被耽误-默认50。"
 
-#: ../../include/contact_selectors.php:78
-msgid "RSS/Atom"
-msgstr "RSS/Atom"
+#: mod/admin.php:1215
+msgid "Maximum Load Average (Frontend)"
+msgstr ""
 
-#: ../../include/contact_selectors.php:82
-msgid "Zot!"
-msgstr "Zot!"
+#: mod/admin.php:1215
+msgid "Maximum system load before the frontend quits service - default 50."
+msgstr ""
 
-#: ../../include/contact_selectors.php:83
-msgid "LinkedIn"
-msgstr "LinkedIn"
+#: mod/admin.php:1216
+msgid "Minimal Memory"
+msgstr "最少内存"
 
-#: ../../include/contact_selectors.php:84
-msgid "XMPP/IM"
-msgstr "XMPP/IM"
+#: mod/admin.php:1216
+msgid ""
+"Minimal free memory in MB for the poller. Needs access to /proc/meminfo - "
+"default 0 (deactivated)."
+msgstr ""
 
-#: ../../include/contact_selectors.php:85
-msgid "MySpace"
-msgstr "MySpace"
+#: mod/admin.php:1217
+msgid "Maximum table size for optimization"
+msgstr ""
 
-#: ../../include/contact_selectors.php:87
-msgid "Google+"
-msgstr "Google+"
+#: mod/admin.php:1217
+msgid ""
+"Maximum table size (in MB) for the automatic optimization - default 100 MB. "
+"Enter -1 to disable it."
+msgstr ""
 
-#: ../../include/contact_selectors.php:88
-msgid "pump.io"
-msgstr "pump.io"
+#: mod/admin.php:1218
+msgid "Minimum level of fragmentation"
+msgstr ""
 
-#: ../../include/contact_selectors.php:89
-msgid "Twitter"
-msgstr "Twitter"
+#: mod/admin.php:1218
+msgid ""
+"Minimum fragmenation level to start the automatic optimization - default "
+"value is 30%."
+msgstr ""
 
-#: ../../include/contact_selectors.php:90
-msgid "Diaspora Connector"
-msgstr "Diaspora连接"
+#: mod/admin.php:1220
+msgid "Periodical check of global contacts"
+msgstr ""
 
-#: ../../include/contact_selectors.php:91
-msgid "Statusnet"
-msgstr "Statusnet"
+#: mod/admin.php:1220
+msgid ""
+"If enabled, the global contacts are checked periodically for missing or "
+"outdated data and the vitality of the contacts and servers."
+msgstr ""
 
-#: ../../include/contact_selectors.php:92
-msgid "App.net"
+#: mod/admin.php:1221
+msgid "Days between requery"
 msgstr ""
 
-#: ../../include/Scrape.php:614
-msgid " on Last.fm"
-msgstr "在Last.fm"
+#: mod/admin.php:1221
+msgid "Number of days after which a server is requeried for his contacts."
+msgstr ""
 
-#: ../../include/bb2diaspora.php:154 ../../include/event.php:20
-msgid "Starts:"
-msgstr "开始:"
+#: mod/admin.php:1222
+msgid "Discover contacts from other servers"
+msgstr "从其他服务器上发现联系人"
 
-#: ../../include/bb2diaspora.php:162 ../../include/event.php:30
-msgid "Finishes:"
-msgstr "结束:"
+#: mod/admin.php:1222
+msgid ""
+"Periodically query other servers for contacts. You can choose between "
+"'users': the users on the remote system, 'Global Contacts': active contacts "
+"that are known on the system. The fallback is meant for Redmatrix servers "
+"and older friendica servers, where global contacts weren't available. The "
+"fallback increases the server load, so the recommened setting is 'Users, "
+"Global Contacts'."
+msgstr ""
 
-#: ../../include/profile_advanced.php:22
-msgid "j F, Y"
-msgstr "j F, Y"
+#: mod/admin.php:1223
+msgid "Timeframe for fetching global contacts"
+msgstr ""
 
-#: ../../include/profile_advanced.php:23
-msgid "j F"
-msgstr "j F"
+#: mod/admin.php:1223
+msgid ""
+"When the discovery is activated, this value defines the timeframe for the "
+"activity of the global contacts that are fetched from other servers."
+msgstr ""
 
-#: ../../include/profile_advanced.php:30
-msgid "Birthday:"
-msgstr "生日:"
+#: mod/admin.php:1224
+msgid "Search the local directory"
+msgstr "搜索本地目录"
 
-#: ../../include/profile_advanced.php:34
-msgid "Age:"
-msgstr "年纪:"
+#: mod/admin.php:1224
+msgid ""
+"Search the local directory instead of the global directory. When searching "
+"locally, every search will be executed on the global directory in the "
+"background. This improves the search results when the search is repeated."
+msgstr ""
 
-#: ../../include/profile_advanced.php:43
-#, php-format
-msgid "for %1$d %2$s"
-msgstr "为%1$d %2$s"
+#: mod/admin.php:1226
+msgid "Publish server information"
+msgstr ""
 
-#: ../../include/profile_advanced.php:52
-msgid "Tags:"
-msgstr "标签:"
+#: mod/admin.php:1226
+msgid ""
+"If enabled, general server and usage data will be published. The data "
+"contains the name and version of the server, number of users with public "
+"profiles, number of posts and the activated protocols and connectors. See <a"
+" href='http://the-federation.info/'>the-federation.info</a> for details."
+msgstr ""
 
-#: ../../include/profile_advanced.php:56
-msgid "Religion:"
-msgstr "å®\97æ\95\99ï¼\9a"
+#: mod/admin.php:1228
+msgid "Suppress Tags"
+msgstr "å\8e\8bå\88¶æ \87ç­¾"
 
-#: ../../include/profile_advanced.php:60
-msgid "Hobbies/Interests:"
-msgstr "爱好/兴趣"
+#: mod/admin.php:1228
+msgid "Suppress showing a list of hashtags at the end of the posting."
+msgstr "不在文章末尾显示主题标签列表。"
 
-#: ../../include/profile_advanced.php:67
-msgid "Contact information and Social Networks:"
-msgstr "熟人消息和社会化网络"
+#: mod/admin.php:1229
+msgid "Path to item cache"
+msgstr "路线到项目缓存"
 
-#: ../../include/profile_advanced.php:69
-msgid "Musical interests:"
-msgstr "音乐兴趣:"
+#: mod/admin.php:1229
+msgid "The item caches buffers generated bbcode and external images."
+msgstr ""
 
-#: ../../include/profile_advanced.php:71
-msgid "Books, literature:"
-msgstr "书,文学"
+#: mod/admin.php:1230
+msgid "Cache duration in seconds"
+msgstr "缓存时间秒"
 
-#: ../../include/profile_advanced.php:73
-msgid "Television:"
-msgstr "电视:"
+#: mod/admin.php:1230
+msgid ""
+"How long should the cache files be hold? Default value is 86400 seconds (One"
+" day). To disable the item cache, set the value to -1."
+msgstr "高速缓存要存文件多久?默认是86400秒钟(一天)。停用高速缓存,输入-1。"
 
-#: ../../include/profile_advanced.php:75
-msgid "Film/dance/culture/entertainment:"
-msgstr "电影/跳舞/文化/娱乐:"
+#: mod/admin.php:1231
+msgid "Maximum numbers of comments per post"
+msgstr "文件最多评论"
 
-#: ../../include/profile_advanced.php:77
-msgid "Love/Romance:"
-msgstr "爱情/浪漫"
+#: mod/admin.php:1231
+msgid "How much comments should be shown for each post? Default value is 100."
+msgstr ""
 
-#: ../../include/profile_advanced.php:79
-msgid "Work/employment:"
-msgstr "工作"
+#: mod/admin.php:1232
+msgid "Temp path"
+msgstr "临时文件路线"
 
-#: ../../include/profile_advanced.php:81
-msgid "School/education:"
-msgstr "学院/教育"
+#: mod/admin.php:1232
+msgid ""
+"If you have a restricted system where the webserver can't access the system "
+"temp path, enter another path here."
+msgstr ""
 
-#: ../../include/plugin.php:455 ../../include/plugin.php:457
-msgid "Click here to upgrade."
-msgstr "这里点击为更新。"
+#: mod/admin.php:1233
+msgid "Base path to installation"
+msgstr "基础安装路线"
 
-#: ../../include/plugin.php:463
-msgid "This action exceeds the limits set by your subscription plan."
-msgstr "这个行动超过您订阅的限制。"
+#: mod/admin.php:1233
+msgid ""
+"If the system cannot detect the correct path to your installation, enter the"
+" correct path here. This setting should only be set if you are using a "
+"restricted system and symbolic links to your webroot."
+msgstr ""
 
-#: ../../include/plugin.php:468
-msgid "This action is not available under your subscription plan."
-msgstr "这个行动在您的订阅不可用的。"
+#: mod/admin.php:1234
+msgid "Disable picture proxy"
+msgstr "停用图片代理"
 
-#: ../../include/nav.php:73
-msgid "End this session"
-msgstr "结束这段时间"
+#: mod/admin.php:1234
+msgid ""
+"The picture proxy increases performance and privacy. It shouldn't be used on"
+" systems with very low bandwith."
+msgstr ""
 
-#: ../../include/nav.php:76 ../../include/nav.php:148
-#: ../../view/theme/diabook/theme.php:123
-msgid "Your posts and conversations"
-msgstr "你的消息和交谈"
+#: mod/admin.php:1235
+msgid "Only search in tags"
+msgstr ""
 
-#: ../../include/nav.php:77 ../../view/theme/diabook/theme.php:124
-msgid "Your profile page"
-msgstr "你的简介页"
+#: mod/admin.php:1235
+msgid "On large systems the text search can slow down the system extremely."
+msgstr ""
 
-#: ../../include/nav.php:78 ../../view/theme/diabook/theme.php:126
-msgid "Your photos"
-msgstr "你的照片"
+#: mod/admin.php:1237
+msgid "New base url"
+msgstr "新基础URL"
 
-#: ../../include/nav.php:79
-msgid "Your videos"
+#: mod/admin.php:1237
+msgid ""
+"Change base url for this server. Sends relocate message to all DFRN contacts"
+" of all users."
 msgstr ""
 
-#: ../../include/nav.php:80 ../../view/theme/diabook/theme.php:127
-msgid "Your events"
-msgstr "你的项目"
+#: mod/admin.php:1239
+msgid "RINO Encryption"
+msgstr ""
 
-#: ../../include/nav.php:81 ../../view/theme/diabook/theme.php:128
-msgid "Personal notes"
-msgstr "私人的便条"
+#: mod/admin.php:1239
+msgid "Encryption layer between nodes."
+msgstr ""
 
-#: ../../include/nav.php:81
-msgid "Your personal notes"
+#: mod/admin.php:1241
+msgid "Maximum number of parallel workers"
 msgstr ""
 
-#: ../../include/nav.php:92
-msgid "Sign in"
-msgstr "登记"
+#: mod/admin.php:1241
+msgid ""
+"On shared hosters set this to 2. On larger systems, values of 10 are great. "
+"Default value is 4."
+msgstr ""
 
-#: ../../include/nav.php:105
-msgid "Home Page"
-msgstr "主页"
+#: mod/admin.php:1242
+msgid "Don't use 'proc_open' with the worker"
+msgstr ""
 
-#: ../../include/nav.php:109
-msgid "Create an account"
-msgstr "注册"
+#: mod/admin.php:1242
+msgid ""
+"Enable this if your system doesn't allow the use of 'proc_open'. This can "
+"happen on shared hosters. If this is enabled you should increase the "
+"frequency of poller calls in your crontab."
+msgstr ""
 
-#: ../../include/nav.php:114
-msgid "Help and documentation"
-msgstr "帮助证件"
+#: mod/admin.php:1243
+msgid "Enable fastlane"
+msgstr ""
 
-#: ../../include/nav.php:117
-msgid "Apps"
-msgstr "应用程序"
+#: mod/admin.php:1243
+msgid ""
+"When enabed, the fastlane mechanism starts an additional worker if processes"
+" with higher priority are blocked by processes of lower priority."
+msgstr ""
 
-#: ../../include/nav.php:117
-msgid "Addon applications, utilities, games"
-msgstr "可加的应用,设施,游戏"
+#: mod/admin.php:1244
+msgid "Enable frontend worker"
+msgstr ""
 
-#: ../../include/nav.php:119
-msgid "Search site content"
-msgstr "搜索网站内容"
+#: mod/admin.php:1244
+#, php-format
+msgid ""
+"When enabled the Worker process is triggered when backend access is "
+"performed (e.g. messages being delivered). On smaller sites you might want "
+"to call %s/worker on a regular basis via an external cron job. You should "
+"only enable this option if you cannot utilize cron/scheduled jobs on your "
+"server."
+msgstr ""
 
-#: ../../include/nav.php:129
-msgid "Conversations on this site"
-msgstr "这个网站的交谈"
+#: mod/admin.php:1274
+msgid "Update has been marked successful"
+msgstr "更新当成功标签了"
 
-#: ../../include/nav.php:131
-msgid "Conversations on the network"
+#: mod/admin.php:1282
+#, php-format
+msgid "Database structure update %s was successfully applied."
 msgstr ""
 
-#: ../../include/nav.php:133
-msgid "Directory"
-msgstr "名录"
+#: mod/admin.php:1285
+#, php-format
+msgid "Executing of database structure update %s failed with error: %s"
+msgstr ""
 
-#: ../../include/nav.php:133
-msgid "People directory"
-msgstr "人物名录"
+#: mod/admin.php:1299
+#, php-format
+msgid "Executing %s failed with error: %s"
+msgstr ""
 
-#: ../../include/nav.php:135
-msgid "Information"
-msgstr "资料"
+#: mod/admin.php:1302
+#, php-format
+msgid "Update %s was successfully applied."
+msgstr "把%s更新成功地实行。"
 
-#: ../../include/nav.php:135
-msgid "Information about this friendica instance"
-msgstr "资料关于这个Friendica服务器"
+#: mod/admin.php:1305
+#, php-format
+msgid "Update %s did not return a status. Unknown if it succeeded."
+msgstr "%s更新没回答现状。不知道是否成功。"
 
-#: ../../include/nav.php:145
-msgid "Conversations from your friends"
-msgstr "从你朋友们的交谈"
+#: mod/admin.php:1308
+#, php-format
+msgid "There was no additional update function %s that needed to be called."
+msgstr ""
 
-#: ../../include/nav.php:146
-msgid "Network Reset"
-msgstr "网络重设"
+#: mod/admin.php:1328
+msgid "No failed updates."
+msgstr "没有不通过地更新。"
 
-#: ../../include/nav.php:146
-msgid "Load Network page with no filters"
-msgstr "表示网络页无滤器"
+#: mod/admin.php:1329
+msgid "Check database structure"
+msgstr ""
 
-#: ../../include/nav.php:154
-msgid "Friend Requests"
-msgstr "友谊邀请"
+#: mod/admin.php:1334
+msgid "Failed Updates"
+msgstr "没通过的更新"
 
-#: ../../include/nav.php:156
-msgid "See all notifications"
-msgstr "看所有的通知"
+#: mod/admin.php:1335
+msgid ""
+"This does not include updates prior to 1139, which did not return a status."
+msgstr "这个不包括1139号更新之前,它们没回答装线。"
 
-#: ../../include/nav.php:157
-msgid "Mark all system notifications seen"
-msgstr "记号各系统通知看过的"
+#: mod/admin.php:1336
+msgid "Mark success (if update was manually applied)"
+msgstr "标注成功(如果手动地把更新实行了)"
 
-#: ../../include/nav.php:161
-msgid "Private mail"
-msgstr "私人的邮件"
+#: mod/admin.php:1337
+msgid "Attempt to execute this update step automatically"
+msgstr "试图自动地把这步更新实行"
 
-#: ../../include/nav.php:162
-msgid "Inbox"
-msgstr "收件箱"
+#: mod/admin.php:1371
+#, php-format
+msgid ""
+"\n"
+"\t\t\tDear %1$s,\n"
+"\t\t\t\tthe administrator of %2$s has set up an account for you."
+msgstr ""
 
-#: ../../include/nav.php:163
-msgid "Outbox"
-msgstr "发件箱"
+#: mod/admin.php:1374
+#, php-format
+msgid ""
+"\n"
+"\t\t\tThe login details are as follows:\n"
+"\n"
+"\t\t\tSite Location:\t%1$s\n"
+"\t\t\tLogin Name:\t\t%2$s\n"
+"\t\t\tPassword:\t\t%3$s\n"
+"\n"
+"\t\t\tYou may change your password from your account \"Settings\" page after logging\n"
+"\t\t\tin.\n"
+"\n"
+"\t\t\tPlease take a few moments to review the other account settings on that page.\n"
+"\n"
+"\t\t\tYou may also wish to add some basic information to your default profile\n"
+"\t\t\t(on the \"Profiles\" page) so that other people can easily find you.\n"
+"\n"
+"\t\t\tWe recommend setting your full name, adding a profile photo,\n"
+"\t\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n"
+"\t\t\tperhaps what country you live in; if you do not wish to be more specific\n"
+"\t\t\tthan that.\n"
+"\n"
+"\t\t\tWe fully respect your right to privacy, and none of these items are necessary.\n"
+"\t\t\tIf you are new and do not know anybody here, they may help\n"
+"\t\t\tyou to make some new and interesting friends.\n"
+"\n"
+"\t\t\tThank you and welcome to %4$s."
+msgstr ""
 
-#: ../../include/nav.php:167
-msgid "Manage"
-msgstr "代用户"
+#: mod/admin.php:1418
+#, php-format
+msgid "%s user blocked/unblocked"
+msgid_plural "%s users blocked/unblocked"
+msgstr[0] "%s用户拦/不拦了"
 
-#: ../../include/nav.php:167
-msgid "Manage other pages"
-msgstr "管理别的页"
+#: mod/admin.php:1425
+#, php-format
+msgid "%s user deleted"
+msgid_plural "%s users deleted"
+msgstr[0] "%s用户删除了"
 
-#: ../../include/nav.php:172
-msgid "Account settings"
-msgstr "帐户配置"
+#: mod/admin.php:1472
+#, php-format
+msgid "User '%s' deleted"
+msgstr "用户「%s」删除了"
 
-#: ../../include/nav.php:175
-msgid "Manage/Edit Profiles"
-msgstr "管理/编辑简介"
+#: mod/admin.php:1480
+#, php-format
+msgid "User '%s' unblocked"
+msgstr "用户「%s」无拦了"
 
-#: ../../include/nav.php:177
-msgid "Manage/edit friends and contacts"
-msgstr "管理/编朋友们和熟人们"
+#: mod/admin.php:1480
+#, php-format
+msgid "User '%s' blocked"
+msgstr "用户「%s」拦了"
 
-#: ../../include/nav.php:184
-msgid "Site setup and configuration"
-msgstr "网站开办和配置"
+#: mod/admin.php:1588 mod/admin.php:1614
+msgid "Register date"
+msgstr "注册日期"
 
-#: ../../include/nav.php:188
-msgid "Navigation"
-msgstr "航行"
+#: mod/admin.php:1588 mod/admin.php:1614
+msgid "Last login"
+msgstr "上次登录"
 
-#: ../../include/nav.php:188
-msgid "Site map"
-msgstr "网站地图"
+#: mod/admin.php:1588 mod/admin.php:1614
+msgid "Last item"
+msgstr "上项目"
 
-#: ../../include/api.php:304 ../../include/api.php:315
-#: ../../include/api.php:416 ../../include/api.php:1063
-#: ../../include/api.php:1065
-msgid "User not found."
-msgstr "找不到用户"
+#: mod/admin.php:1597
+msgid "Add User"
+msgstr "添加用户"
 
-#: ../../include/api.php:771
-#, php-format
-msgid "Daily posting limit of %d posts reached. The post was rejected."
-msgstr ""
+#: mod/admin.php:1598
+msgid "select all"
+msgstr "都选"
 
-#: ../../include/api.php:790
-#, php-format
-msgid "Weekly posting limit of %d posts reached. The post was rejected."
-msgstr ""
+#: mod/admin.php:1599
+msgid "User registrations waiting for confirm"
+msgstr "用户注册等待确认"
 
-#: ../../include/api.php:809
-#, php-format
-msgid "Monthly posting limit of %d posts reached. The post was rejected."
-msgstr ""
+#: mod/admin.php:1600
+msgid "User waiting for permanent deletion"
+msgstr "用户等待长久删除"
 
-#: ../../include/api.php:1272
-msgid "There is no status with this id."
-msgstr "没有什么状态跟这个ID"
+#: mod/admin.php:1601
+msgid "Request date"
+msgstr "要求日期"
 
-#: ../../include/api.php:1342
-msgid "There is no conversation with this id."
-msgstr "没有这个ID的对话"
+#: mod/admin.php:1602
+msgid "No registrations."
+msgstr "没有注册。"
 
-#: ../../include/api.php:1614
-msgid "Invalid request."
+#: mod/admin.php:1603
+msgid "Note from the user"
 msgstr ""
 
-#: ../../include/api.php:1625
-msgid "Invalid item."
-msgstr ""
+#: mod/admin.php:1605
+msgid "Deny"
+msgstr "否定"
 
-#: ../../include/api.php:1635
-msgid "Invalid action. "
-msgstr ""
+#: mod/admin.php:1607 mod/contacts.php:634 mod/contacts.php:834
+#: mod/contacts.php:1012
+msgid "Block"
+msgstr "拦"
 
-#: ../../include/api.php:1643
-msgid "DB error"
-msgstr ""
+#: mod/admin.php:1608 mod/contacts.php:634 mod/contacts.php:834
+#: mod/contacts.php:1012
+msgid "Unblock"
+msgstr "不拦"
 
-#: ../../include/user.php:40
-msgid "An invitation is required."
-msgstr "邀请必要的。"
+#: mod/admin.php:1609
+msgid "Site admin"
+msgstr "网站管理员"
 
-#: ../../include/user.php:45
-msgid "Invitation could not be verified."
-msgstr "不能证实邀请。"
+#: mod/admin.php:1610
+msgid "Account expired"
+msgstr "帐户过期了"
 
-#: ../../include/user.php:53
-msgid "Invalid OpenID url"
-msgstr "æ\97 æ\95\88ç\9a\84OpenID url"
+#: mod/admin.php:1613
+msgid "New User"
+msgstr "æ\96°ç\94¨æ\88·"
 
-#: ../../include/user.php:74
-msgid "Please enter the required information."
-msgstr "请输入必要的信息。"
+#: mod/admin.php:1614
+msgid "Deleted since"
+msgstr "删除从"
 
-#: ../../include/user.php:88
-msgid "Please use a shorter name."
-msgstr "请用短一点名。"
+#: mod/admin.php:1619
+msgid ""
+"Selected users will be deleted!\\n\\nEverything these users had posted on "
+"this site will be permanently deleted!\\n\\nAre you sure?"
+msgstr "特定的用户被删除!\\n\\n什么这些用户放在这个网站被永远删除!\\n\\n您肯定吗?"
 
-#: ../../include/user.php:90
-msgid "Name too short."
-msgstr "名字太短。"
+#: mod/admin.php:1620
+msgid ""
+"The user {0} will be deleted!\\n\\nEverything this user has posted on this "
+"site will be permanently deleted!\\n\\nAre you sure?"
+msgstr "用户{0}将被删除!\\n\\n什么这个用户放在这个网站被永远删除!\\n\\n您肯定吗?"
 
-#: ../../include/user.php:105
-msgid "That doesn't appear to be your full (First Last) name."
-msgstr "这看上去不是您的全姓名。"
+#: mod/admin.php:1630
+msgid "Name of the new user."
+msgstr "新用户的名字。"
 
-#: ../../include/user.php:110
-msgid "Your email domain is not among those allowed on this site."
-msgstr "这网站允许的域名中没有您的"
+#: mod/admin.php:1631
+msgid "Nickname"
+msgstr "昵称"
 
-#: ../../include/user.php:113
-msgid "Not a valid email address."
-msgstr "æ\97 æ\95\88ç\9a\84é\82®ä»¶å\9c°å\9d\80。"
+#: mod/admin.php:1631
+msgid "Nickname of the new user."
+msgstr "æ\96°ç\94¨æ\88·ç\9a\84æ\98µç§°。"
 
-#: ../../include/user.php:126
-msgid "Cannot use that email."
-msgstr "不能用这个邮件地址。"
+#: mod/admin.php:1632
+msgid "Email address of the new user."
+msgstr "新用户的邮件地址。"
 
-#: ../../include/user.php:132
-msgid ""
-"Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and "
-"must also begin with a letter."
-msgstr "您的昵称只能包含\"a-z\",\"0-9\",\"-\"和\"_\",还有头一字必须是拉丁字。"
+#: mod/admin.php:1675
+#, php-format
+msgid "Plugin %s disabled."
+msgstr "使插件%s已停用。"
 
-#: ../../include/user.php:138 ../../include/user.php:236
-msgid "Nickname is already registered. Please choose another."
-msgstr "昵称已经报到。请选择新的。"
+#: mod/admin.php:1679
+#, php-format
+msgid "Plugin %s enabled."
+msgstr "使插件%s能用。"
 
-#: ../../include/user.php:148
-msgid ""
-"Nickname was once registered here and may not be re-used. Please choose "
-"another."
-msgstr "昵称曾经这里注册于是不能再用。请选择别的。"
+#: mod/admin.php:1690 mod/admin.php:1942
+msgid "Disable"
+msgstr "停用"
 
-#: ../../include/user.php:164
-msgid "SERIOUS ERROR: Generation of security keys failed."
-msgstr "要紧错误:产生安全钥匙失败了。"
+#: mod/admin.php:1692 mod/admin.php:1944
+msgid "Enable"
+msgstr "使能用"
 
-#: ../../include/user.php:222
-msgid "An error occurred during registration. Please try again."
-msgstr "æ\8a¥å\88°å\87ºäº\86é\97®é¢\98ã\80\82请å\86\8dè¯\95ã\80\82"
+#: mod/admin.php:1715 mod/admin.php:1991
+msgid "Toggle"
+msgstr "è\82\98è\8a\82"
 
-#: ../../include/user.php:257
-msgid "An error occurred creating your default profile. Please try again."
-msgstr "造成默认简介出了问题。请再试。"
+#: mod/admin.php:1723 mod/admin.php:2000
+msgid "Author: "
+msgstr "作者:"
 
-#: ../../include/user.php:289 ../../include/user.php:293
-#: ../../include/profile_selectors.php:42
-msgid "Friends"
-msgstr "朋友"
+#: mod/admin.php:1724 mod/admin.php:2001
+msgid "Maintainer: "
+msgstr "维护者:"
 
-#: ../../include/user.php:377
-#, php-format
-msgid ""
-"\n"
-"\t\tDear %1$s,\n"
-"\t\t\tThank you for registering at %2$s. Your account has been created.\n"
-"\t"
+#: mod/admin.php:1779
+msgid "Reload active plugins"
 msgstr ""
 
-#: ../../include/user.php:381
+#: mod/admin.php:1784
 #, php-format
 msgid ""
-"\n"
-"\t\tThe login details are as follows:\n"
-"\t\t\tSite Location:\t%3$s\n"
-"\t\t\tLogin Name:\t%1$s\n"
-"\t\t\tPassword:\t%5$s\n"
-"\n"
-"\t\tYou may change your password from your account \"Settings\" page after logging\n"
-"\t\tin.\n"
-"\n"
-"\t\tPlease take a few moments to review the other account settings on that page.\n"
-"\n"
-"\t\tYou may also wish to add some basic information to your default profile\n"
-"\t\t(on the \"Profiles\" page) so that other people can easily find you.\n"
-"\n"
-"\t\tWe recommend setting your full name, adding a profile photo,\n"
-"\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n"
-"\t\tperhaps what country you live in; if you do not wish to be more specific\n"
-"\t\tthan that.\n"
-"\n"
-"\t\tWe fully respect your right to privacy, and none of these items are necessary.\n"
-"\t\tIf you are new and do not know anybody here, they may help\n"
-"\t\tyou to make some new and interesting friends.\n"
-"\n"
-"\n"
-"\t\tThank you and welcome to %2$s."
+"There are currently no plugins available on your node. You can find the "
+"official plugin repository at %1$s and might find other interesting plugins "
+"in the open plugin registry at %2$s"
 msgstr ""
 
-#: ../../include/diaspora.php:703
-msgid "Sharing notification from Diaspora network"
-msgstr "分享通知从Diaspora网络"
+#: mod/admin.php:1903
+msgid "No themes found."
+msgstr "找不到主题。"
 
-#: ../../include/diaspora.php:2520
-msgid "Attachments:"
-msgstr "附件:"
+#: mod/admin.php:1982
+msgid "Screenshot"
+msgstr "截图"
 
-#: ../../include/items.php:4555
-msgid "Do you really want to delete this item?"
-msgstr "您真的想删除这个项目吗?"
+#: mod/admin.php:2042
+msgid "Reload active themes"
+msgstr ""
 
-#: ../../include/items.php:4778
-msgid "Archives"
-msgstr "档案"
+#: mod/admin.php:2047
+#, php-format
+msgid "No themes found on the system. They should be paced in %1$s"
+msgstr ""
 
-#: ../../include/profile_selectors.php:6
-msgid "Male"
-msgstr "男的"
+#: mod/admin.php:2048
+msgid "[Experimental]"
+msgstr "[试验]"
 
-#: ../../include/profile_selectors.php:6
-msgid "Female"
-msgstr "女的"
+#: mod/admin.php:2049
+msgid "[Unsupported]"
+msgstr "[没支持]"
 
-#: ../../include/profile_selectors.php:6
-msgid "Currently Male"
-msgstr "现在男的"
+#: mod/admin.php:2073
+msgid "Log settings updated."
+msgstr "日志设置更新了。"
 
-#: ../../include/profile_selectors.php:6
-msgid "Currently Female"
-msgstr "现在女的"
+#: mod/admin.php:2105
+msgid "PHP log currently enabled."
+msgstr ""
 
-#: ../../include/profile_selectors.php:6
-msgid "Mostly Male"
-msgstr "主要男的"
+#: mod/admin.php:2107
+msgid "PHP log currently disabled."
+msgstr ""
 
-#: ../../include/profile_selectors.php:6
-msgid "Mostly Female"
-msgstr "主要女的"
+#: mod/admin.php:2116
+msgid "Clear"
+msgstr "清理出"
 
-#: ../../include/profile_selectors.php:6
-msgid "Transgender"
-msgstr "跨性別"
+#: mod/admin.php:2121
+msgid "Enable Debugging"
+msgstr "把调试使可用的"
 
-#: ../../include/profile_selectors.php:6
-msgid "Intersex"
-msgstr "阴阳人"
+#: mod/admin.php:2122
+msgid "Log file"
+msgstr "记录文件"
 
-#: ../../include/profile_selectors.php:6
-msgid "Transsexual"
-msgstr "”转基因“人"
+#: mod/admin.php:2122
+msgid ""
+"Must be writable by web server. Relative to your Friendica top-level "
+"directory."
+msgstr "必要被网页服务器可写的。相对Friendica主文件夹。"
 
-#: ../../include/profile_selectors.php:6
-msgid "Hermaphrodite"
-msgstr "两性体"
+#: mod/admin.php:2123
+msgid "Log level"
+msgstr "记录水平"
 
-#: ../../include/profile_selectors.php:6
-msgid "Neuter"
-msgstr "中性的"
+#: mod/admin.php:2126
+msgid "PHP logging"
+msgstr ""
 
-#: ../../include/profile_selectors.php:6
-msgid "Non-specific"
-msgstr "不明确的"
+#: mod/admin.php:2127
+msgid ""
+"To enable logging of PHP errors and warnings you can add the following to "
+"the .htconfig.php file of your installation. The filename set in the "
+"'error_log' line is relative to the friendica top-level directory and must "
+"be writeable by the web server. The option '1' for 'log_errors' and "
+"'display_errors' is to enable these options, set to '0' to disable them."
+msgstr ""
 
-#: ../../include/profile_selectors.php:6
-msgid "Other"
-msgstr "别的"
+#: mod/admin.php:2258
+#, php-format
+msgid "Lock feature %s"
+msgstr ""
 
-#: ../../include/profile_selectors.php:6
-msgid "Undecided"
-msgstr "未决"
+#: mod/admin.php:2266
+msgid "Manage Additional Features"
+msgstr ""
 
-#: ../../include/profile_selectors.php:23
-msgid "Males"
-msgstr "男人"
+#: mod/contacts.php:138
+#, php-format
+msgid "%d contact edited."
+msgid_plural "%d contacts edited."
+msgstr[0] ""
 
-#: ../../include/profile_selectors.php:23
-msgid "Females"
-msgstr "女人"
+#: mod/contacts.php:173 mod/contacts.php:391
+msgid "Could not access contact record."
+msgstr "用不了熟人记录。"
 
-#: ../../include/profile_selectors.php:23
-msgid "Gay"
-msgstr "男同性恋的"
+#: mod/contacts.php:187
+msgid "Could not locate selected profile."
+msgstr "找不到选择的简介。"
 
-#: ../../include/profile_selectors.php:23
-msgid "Lesbian"
-msgstr "女同性恋的"
+#: mod/contacts.php:220
+msgid "Contact updated."
+msgstr "熟人更新了。"
 
-#: ../../include/profile_selectors.php:23
-msgid "No Preference"
-msgstr "无偏爱"
+#: mod/contacts.php:412
+msgid "Contact has been blocked"
+msgstr "熟人拦了"
 
-#: ../../include/profile_selectors.php:23
-msgid "Bisexual"
-msgstr "双性恋的"
+#: mod/contacts.php:412
+msgid "Contact has been unblocked"
+msgstr "熟人否拦了"
 
-#: ../../include/profile_selectors.php:23
-msgid "Autosexual"
-msgstr "自性的"
+#: mod/contacts.php:423
+msgid "Contact has been ignored"
+msgstr "熟人不理了"
 
-#: ../../include/profile_selectors.php:23
-msgid "Abstinent"
-msgstr "有节制的"
+#: mod/contacts.php:423
+msgid "Contact has been unignored"
+msgstr "熟人否不理了"
 
-#: ../../include/profile_selectors.php:23
-msgid "Virgin"
-msgstr "原始的"
+#: mod/contacts.php:435
+msgid "Contact has been archived"
+msgstr "把联系存档了"
 
-#: ../../include/profile_selectors.php:23
-msgid "Deviant"
-msgstr "变态"
+#: mod/contacts.php:435
+msgid "Contact has been unarchived"
+msgstr "把联系从存档拿来了"
 
-#: ../../include/profile_selectors.php:23
-msgid "Fetish"
-msgstr "恋物对象"
+#: mod/contacts.php:460
+msgid "Drop contact"
+msgstr ""
 
-#: ../../include/profile_selectors.php:23
-msgid "Oodles"
-msgstr "多多"
+#: mod/contacts.php:463 mod/contacts.php:830
+msgid "Do you really want to delete this contact?"
+msgstr "您真的想删除这个熟人吗?"
 
-#: ../../include/profile_selectors.php:23
-msgid "Nonsexual"
-msgstr "无性"
+#: mod/contacts.php:482
+msgid "Contact has been removed."
+msgstr "熟人删除了。"
 
-#: ../../include/profile_selectors.php:42
-msgid "Single"
-msgstr "单身"
+#: mod/contacts.php:519
+#, php-format
+msgid "You are mutual friends with %s"
+msgstr "您和%s是共同朋友们"
 
-#: ../../include/profile_selectors.php:42
-msgid "Lonely"
-msgstr "寂寞"
+#: mod/contacts.php:523
+#, php-format
+msgid "You are sharing with %s"
+msgstr "您分享给%s"
 
-#: ../../include/profile_selectors.php:42
-msgid "Available"
-msgstr "单身的"
+#: mod/contacts.php:528
+#, php-format
+msgid "%s is sharing with you"
+msgstr "%s给您分享"
 
-#: ../../include/profile_selectors.php:42
-msgid "Unavailable"
-msgstr "不可获得的"
+#: mod/contacts.php:548
+msgid "Private communications are not available for this contact."
+msgstr "没有私人的沟通跟这个熟人"
 
-#: ../../include/profile_selectors.php:42
-msgid "Has crush"
-msgstr "迷恋"
+#: mod/contacts.php:555
+msgid "(Update was successful)"
+msgstr "(更新成功)"
 
-#: ../../include/profile_selectors.php:42
-msgid "Infatuated"
-msgstr "痴迷"
+#: mod/contacts.php:555
+msgid "(Update was not successful)"
+msgstr "(更新不成功)"
 
-#: ../../include/profile_selectors.php:42
-msgid "Dating"
-msgstr "约会"
+#: mod/contacts.php:557 mod/contacts.php:993
+msgid "Suggest friends"
+msgstr "建议朋友们"
 
-#: ../../include/profile_selectors.php:42
-msgid "Unfaithful"
-msgstr "外遇"
+#: mod/contacts.php:561
+#, php-format
+msgid "Network type: %s"
+msgstr "网络种类: %s"
 
-#: ../../include/profile_selectors.php:42
-msgid "Sex Addict"
-msgstr "性交因成瘾者"
+#: mod/contacts.php:574
+msgid "Communications lost with this contact!"
+msgstr "联系跟这个熟人断开了!"
 
-#: ../../include/profile_selectors.php:42
-msgid "Friends/Benefits"
-msgstr "æ\9c\8bå\8f\8b\9b\8a"
+#: mod/contacts.php:577
+msgid "Fetch further information for feeds"
+msgstr "æ\8b¿æ\96\87æº\90å\88«ç\9a\84æ¶\88æ\81¯"
 
-#: ../../include/profile_selectors.php:42
-msgid "Casual"
-msgstr "休闲"
+#: mod/contacts.php:578
+msgid "Fetch information"
+msgstr "取消息"
 
-#: ../../include/profile_selectors.php:42
-msgid "Engaged"
-msgstr "已订å©\9aç\9a\84"
+#: mod/contacts.php:578
+msgid "Fetch information and keywords"
+msgstr "å\8f\96æ¶\88æ\81¯å\92\8cå\85³é\94®è¯\8d"
 
-#: ../../include/profile_selectors.php:42
-msgid "Married"
-msgstr "结婚"
+#: mod/contacts.php:592 mod/unfollow.php:100
+msgid "Disconnect/Unfollow"
+msgstr "断开连接/取消关注"
 
-#: ../../include/profile_selectors.php:42
-msgid "Imaginarily married"
-msgstr "想像结婚"
+#: mod/contacts.php:602
+msgid "Contact"
+msgstr "联系人"
 
-#: ../../include/profile_selectors.php:42
-msgid "Partners"
-msgstr "伴侣"
+#: mod/contacts.php:605
+msgid "Profile Visibility"
+msgstr "简历可见量"
 
-#: ../../include/profile_selectors.php:42
-msgid "Cohabiting"
-msgstr "同居"
+#: mod/contacts.php:606
+#, php-format
+msgid ""
+"Please choose the profile you would like to display to %s when viewing your "
+"profile securely."
+msgstr "请选择简介您想给%s显示他安全地看您的简介的时候。"
 
-#: ../../include/profile_selectors.php:42
-msgid "Common law"
-msgstr "普通法结婚"
+#: mod/contacts.php:607
+msgid "Contact Information / Notes"
+msgstr "熟人信息/便条"
 
-#: ../../include/profile_selectors.php:42
-msgid "Happy"
-msgstr "幸福"
+#: mod/contacts.php:608
+msgid "Their personal note"
+msgstr ""
 
-#: ../../include/profile_selectors.php:42
-msgid "Not looking"
-msgstr "没找"
+#: mod/contacts.php:610
+msgid "Edit contact notes"
+msgstr "编辑熟人便条"
 
-#: ../../include/profile_selectors.php:42
-msgid "Swinger"
-msgstr "交换性伴侣的"
+#: mod/contacts.php:616
+msgid "Block/Unblock contact"
+msgstr "拦/否拦熟人"
 
-#: ../../include/profile_selectors.php:42
-msgid "Betrayed"
-msgstr "被背叛"
+#: mod/contacts.php:617
+msgid "Ignore contact"
+msgstr "忽视熟人"
 
-#: ../../include/profile_selectors.php:42
-msgid "Separated"
-msgstr "分手"
+#: mod/contacts.php:618
+msgid "Repair URL settings"
+msgstr "维修URL设置"
 
-#: ../../include/profile_selectors.php:42
-msgid "Unstable"
-msgstr "不稳"
+#: mod/contacts.php:619
+msgid "View conversations"
+msgstr "看交流"
 
-#: ../../include/profile_selectors.php:42
-msgid "Divorced"
-msgstr "离å©\9a"
+#: mod/contacts.php:625
+msgid "Last update:"
+msgstr "ä¸\8a个æ\9b´æ\96°ï¼\9a"
 
-#: ../../include/profile_selectors.php:42
-msgid "Imaginarily divorced"
-msgstr "æ\83³å\83\8f离å©\9a"
+#: mod/contacts.php:627
+msgid "Update public posts"
+msgstr "æ\9b´æ\96°å\85¬å¼\80æ\96\87ç« "
 
-#: ../../include/profile_selectors.php:42
-msgid "Widowed"
-msgstr "寡妇"
+#: mod/contacts.php:629 mod/contacts.php:1003
+msgid "Update now"
+msgstr "现在更新"
 
-#: ../../include/profile_selectors.php:42
-msgid "Uncertain"
-msgstr "不确定"
+#: mod/contacts.php:635 mod/contacts.php:835 mod/contacts.php:1020
+msgid "Unignore"
+msgstr "停不理"
 
-#: ../../include/profile_selectors.php:42
-msgid "It's complicated"
-msgstr "是复杂"
+#: mod/contacts.php:639
+msgid "Currently blocked"
+msgstr "现在拦的"
 
-#: ../../include/profile_selectors.php:42
-msgid "Don't care"
-msgstr "无所谓"
+#: mod/contacts.php:640
+msgid "Currently ignored"
+msgstr "现在不理的"
 
-#: ../../include/profile_selectors.php:42
-msgid "Ask me"
-msgstr "问我"
+#: mod/contacts.php:641
+msgid "Currently archived"
+msgstr "现在存档着"
 
-#: ../../include/enotify.php:18
-msgid "Friendica Notification"
-msgstr "Friendica 通知"
+#: mod/contacts.php:642
+msgid ""
+"Replies/likes to your public posts <strong>may</strong> still be visible"
+msgstr "回答/喜欢关您公开文章<strong>会</strong>还可见的"
 
-#: ../../include/enotify.php:21
-msgid "Thank You,"
-msgstr "谢谢,"
+#: mod/contacts.php:643
+msgid "Notification for new posts"
+msgstr "新消息提示"
 
-#: ../../include/enotify.php:23
-#, php-format
-msgid "%s Administrator"
-msgstr "%s管理员"
+#: mod/contacts.php:643
+msgid "Send a notification of every new post of this contact"
+msgstr "发提示在所有这个联络的新消息"
 
-#: ../../include/enotify.php:64
-#, php-format
-msgid "%s <!item_type!>"
-msgstr "%s <!item_type!>"
+#: mod/contacts.php:646
+msgid "Blacklisted keywords"
+msgstr "黑名单关键词"
 
-#: ../../include/enotify.php:68
-#, php-format
-msgid "[Friendica:Notify] New mail received at %s"
-msgstr "[Friendica:Notify]收到新邮件在%s"
+#: mod/contacts.php:646
+msgid ""
+"Comma separated list of keywords that should not be converted to hashtags, "
+"when \"Fetch information and keywords\" is selected"
+msgstr "逗号分的关键词不应该翻译成主题标签,如果“取消息和关键词”选择的。"
 
-#: ../../include/enotify.php:70
-#, php-format
-msgid "%1$s sent you a new private message at %2$s."
-msgstr "%1$s发给您新私人通知在%2$s."
+#: mod/contacts.php:664
+msgid "Actions"
+msgstr ""
 
-#: ../../include/enotify.php:71
-#, php-format
-msgid "%1$s sent you %2$s."
-msgstr "%1$s发给您%2$s."
+#: mod/contacts.php:667
+msgid "Contact Settings"
+msgstr ""
 
-#: ../../include/enotify.php:71
-msgid "a private message"
-msgstr "一条私人的消息"
+#: mod/contacts.php:713
+msgid "Suggestions"
+msgstr "建议"
 
-#: ../../include/enotify.php:72
-#, php-format
-msgid "Please visit %s to view and/or reply to your private messages."
-msgstr "清去%s为了看或回答你私人的消息"
+#: mod/contacts.php:716
+msgid "Suggest potential friends"
+msgstr "建议潜在朋友们"
 
-#: ../../include/enotify.php:124
-#, php-format
-msgid "%1$s commented on [url=%2$s]a %3$s[/url]"
-msgstr "%1$s于[url=%2$s]a %3$s[/url]评论了"
+#: mod/contacts.php:724
+msgid "Show all contacts"
+msgstr "表示所有的熟人"
 
-#: ../../include/enotify.php:131
-#, php-format
-msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]"
-msgstr "%1$s于[url=%2$s]%3$s的%4$s[/url]评论了"
+#: mod/contacts.php:729
+msgid "Unblocked"
+msgstr "不拦了"
 
-#: ../../include/enotify.php:139
-#, php-format
-msgid "%1$s commented on [url=%2$s]your %3$s[/url]"
-msgstr "%1$s于[url=%2$s]您的%3$s[/url]评论了"
+#: mod/contacts.php:732
+msgid "Only show unblocked contacts"
+msgstr "只表示不拦的熟人"
 
-#: ../../include/enotify.php:149
-#, php-format
-msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s"
-msgstr "[Friendica:Notify]于交流#%1$d由%2$s评论"
+#: mod/contacts.php:738
+msgid "Blocked"
+msgstr "拦了"
 
-#: ../../include/enotify.php:150
-#, php-format
-msgid "%s commented on an item/conversation you have been following."
-msgstr "%s对你有兴趣的项目/ 交谈发表意见"
+#: mod/contacts.php:741
+msgid "Only show blocked contacts"
+msgstr "只表示拦的熟人"
 
-#: ../../include/enotify.php:153 ../../include/enotify.php:168
-#: ../../include/enotify.php:181 ../../include/enotify.php:194
-#: ../../include/enotify.php:212 ../../include/enotify.php:225
-#, php-format
-msgid "Please visit %s to view and/or reply to the conversation."
-msgstr "清去%s为了看或回答交谈"
+#: mod/contacts.php:747
+msgid "Ignored"
+msgstr "忽视的"
 
-#: ../../include/enotify.php:160
-#, php-format
-msgid "[Friendica:Notify] %s posted to your profile wall"
-msgstr "[Friendica:Notify] %s贴在您的简介墙"
+#: mod/contacts.php:750
+msgid "Only show ignored contacts"
+msgstr "只表示忽视的熟人"
 
-#: ../../include/enotify.php:162
-#, php-format
-msgid "%1$s posted to your profile wall at %2$s"
-msgstr "%1$s放在您的简介墙在%2$s"
+#: mod/contacts.php:756
+msgid "Archived"
+msgstr "在存档"
 
-#: ../../include/enotify.php:164
-#, php-format
-msgid "%1$s posted to [url=%2$s]your wall[/url]"
-msgstr "%1$s放在[url=%2$s]您的墙[/url]"
+#: mod/contacts.php:759
+msgid "Only show archived contacts"
+msgstr "只表示档案熟人"
 
-#: ../../include/enotify.php:175
-#, php-format
-msgid "[Friendica:Notify] %s tagged you"
-msgstr "[Friendica:Notify] %s标签您"
+#: mod/contacts.php:765
+msgid "Hidden"
+msgstr "隐藏的"
 
-#: ../../include/enotify.php:176
-#, php-format
-msgid "%1$s tagged you at %2$s"
-msgstr "%1$s把您在%2$s标签"
+#: mod/contacts.php:768
+msgid "Only show hidden contacts"
+msgstr "只表示隐藏的熟人"
 
-#: ../../include/enotify.php:177
-#, php-format
-msgid "%1$s [url=%2$s]tagged you[/url]."
-msgstr "%1$s[url=%2$s]把您标签[/url]."
+#: mod/contacts.php:825
+msgid "Search your contacts"
+msgstr "搜索您的熟人"
 
-#: ../../include/enotify.php:188
-#, php-format
-msgid "[Friendica:Notify] %s shared a new post"
-msgstr "[Friendica:Notify] %s分享新的消息"
+#: mod/contacts.php:836 mod/contacts.php:1028
+msgid "Archive"
+msgstr "存档"
 
-#: ../../include/enotify.php:189
-#, php-format
-msgid "%1$s shared a new post at %2$s"
-msgstr "%1$s分享新的消息在%2$s"
+#: mod/contacts.php:836 mod/contacts.php:1028
+msgid "Unarchive"
+msgstr "从存档拿来"
 
-#: ../../include/enotify.php:190
-#, php-format
-msgid "%1$s [url=%2$s]shared a post[/url]."
-msgstr "%1$s [url=%2$s]分享一个消息[/url]."
+#: mod/contacts.php:839
+msgid "Batch Actions"
+msgstr ""
 
-#: ../../include/enotify.php:202
-#, php-format
-msgid "[Friendica:Notify] %1$s poked you"
-msgstr "[Friendica:Notify]您被%1$s戳"
+#: mod/contacts.php:885
+msgid "View all contacts"
+msgstr "看所有的熟人"
 
-#: ../../include/enotify.php:203
-#, php-format
-msgid "%1$s poked you at %2$s"
-msgstr "您被%1$s戳在%2$s"
+#: mod/contacts.php:895
+msgid "View all common friends"
+msgstr "查看所有公共好友"
 
-#: ../../include/enotify.php:204
-#, php-format
-msgid "%1$s [url=%2$s]poked you[/url]."
-msgstr "%1$s[url=%2$s]把您戳[/url]。"
+#: mod/contacts.php:902
+msgid "Advanced Contact Settings"
+msgstr "专家熟人设置"
 
-#: ../../include/enotify.php:219
-#, php-format
-msgid "[Friendica:Notify] %s tagged your post"
-msgstr "[Friendica:Notify] %s标前您的文章"
+#: mod/contacts.php:936
+msgid "Mutual Friendship"
+msgstr "共同友谊"
 
-#: ../../include/enotify.php:220
-#, php-format
-msgid "%1$s tagged your post at %2$s"
-msgstr "%1$s把您的文章在%2$s标签"
+#: mod/contacts.php:940
+msgid "is a fan of yours"
+msgstr "是你的粉丝"
 
-#: ../../include/enotify.php:221
-#, php-format
-msgid "%1$s tagged [url=%2$s]your post[/url]"
-msgstr "%1$s把[url=%2$s]您的文章[/url]标签"
+#: mod/contacts.php:944
+msgid "you are a fan of"
+msgstr "你喜欢"
 
-#: ../../include/enotify.php:232
-msgid "[Friendica:Notify] Introduction received"
-msgstr "[Friendica:Notify] 收到介绍"
+#: mod/contacts.php:1014
+msgid "Toggle Blocked status"
+msgstr "交替拦配置"
 
-#: ../../include/enotify.php:233
-#, php-format
-msgid "You've received an introduction from '%1$s' at %2$s"
-msgstr "您从「%1$s」受到一个介绍在%2$s"
+#: mod/contacts.php:1022
+msgid "Toggle Ignored status"
+msgstr "交替忽视现状"
 
-#: ../../include/enotify.php:234
-#, php-format
-msgid "You've received [url=%1$s]an introduction[/url] from %2$s."
-msgstr "您从%2$s收到[url=%1$s]一个介绍[/url]。"
+#: mod/contacts.php:1030
+msgid "Toggle Archive status"
+msgstr "交替档案现状"
 
-#: ../../include/enotify.php:237 ../../include/enotify.php:279
-#, php-format
-msgid "You may visit their profile at %s"
-msgstr "你能看他的简介在%s"
+#: mod/contacts.php:1038
+msgid "Delete contact"
+msgstr "删除熟人"
 
-#: ../../include/enotify.php:239
-#, php-format
-msgid "Please visit %s to approve or reject the introduction."
-msgstr "请批准或拒绝介绍在%s"
+#: mod/fbrowser.php:136
+msgid "Files"
+msgstr "文件"
 
-#: ../../include/enotify.php:247
-msgid "[Friendica:Notify] A new person is sharing with you"
+#: mod/unfollow.php:33
+msgid "Contact wasn't found or can't be unfollowed."
 msgstr ""
 
-#: ../../include/enotify.php:248 ../../include/enotify.php:249
-#, php-format
-msgid "%1$s is sharing with you at %2$s"
-msgstr ""
+#: mod/unfollow.php:47
+msgid "Contact unfollowed"
+msgstr "取消关注了的联系人"
 
-#: ../../include/enotify.php:255
-msgid "[Friendica:Notify] You have a new follower"
-msgstr ""
+#: mod/unfollow.php:73
+msgid "You aren't a friend of this contact."
+msgstr "你不是这个联系人的朋友。"
 
-#: ../../include/enotify.php:256 ../../include/enotify.php:257
-#, php-format
-msgid "You have a new follower at %2$s : %1$s"
+#: mod/unfollow.php:79
+msgid "Unfollowing is currently not supported by your network."
 msgstr ""
 
-#: ../../include/enotify.php:270
-msgid "[Friendica:Notify] Friend suggestion received"
-msgstr "[Friendica:Notify] 收到朋友建议"
+#: object/Item.php:353
+msgid "via"
+msgstr "经过"
 
-#: ../../include/enotify.php:271
-#, php-format
-msgid "You've received a friend suggestion from '%1$s' at %2$s"
-msgstr "您从「%2$s」收到[url=%1$s]一个朋友建议[/url]。"
+#: view/theme/duepuntozero/config.php:48
+msgid "greenzero"
+msgstr "greenzero"
 
-#: ../../include/enotify.php:272
-#, php-format
-msgid ""
-"You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s."
-msgstr "您从%3$s收到[url=%1$s]一个朋友建议[/url]为%2$s。"
+#: view/theme/duepuntozero/config.php:49
+msgid "purplezero"
+msgstr "purplezero"
 
-#: ../../include/enotify.php:277
-msgid "Name:"
-msgstr "名字:"
+#: view/theme/duepuntozero/config.php:50
+msgid "easterbunny"
+msgstr "easterbunny"
 
-#: ../../include/enotify.php:278
-msgid "Photo:"
-msgstr "照片:"
+#: view/theme/duepuntozero/config.php:51
+msgid "darkzero"
+msgstr "darkzero"
 
-#: ../../include/enotify.php:281
-#, php-format
-msgid "Please visit %s to approve or reject the suggestion."
-msgstr "请批准或拒绝建议在%s"
+#: view/theme/duepuntozero/config.php:52
+msgid "comix"
+msgstr "comix"
 
-#: ../../include/enotify.php:289 ../../include/enotify.php:302
-msgid "[Friendica:Notify] Connection accepted"
-msgstr ""
+#: view/theme/duepuntozero/config.php:53
+msgid "slackr"
+msgstr "slackr"
 
-#: ../../include/enotify.php:290 ../../include/enotify.php:303
-#, php-format
-msgid "'%1$s' has acepted your connection request at %2$s"
-msgstr ""
+#: view/theme/duepuntozero/config.php:68
+msgid "Variations"
+msgstr "变化"
 
-#: ../../include/enotify.php:291 ../../include/enotify.php:304
-#, php-format
-msgid "%2$s has accepted your [url=%1$s]connection request[/url]."
+#: view/theme/frio/php/Image.php:23
+msgid "Repeat the image"
 msgstr ""
 
-#: ../../include/enotify.php:294
-msgid ""
-"You are now mutual friends and may exchange status updates, photos, and email\n"
-"\twithout restriction."
+#: view/theme/frio/php/Image.php:23
+msgid "Will repeat your image to fill the background."
 msgstr ""
 
-#: ../../include/enotify.php:297 ../../include/enotify.php:311
-#, php-format
-msgid "Please visit %s  if you wish to make any changes to this relationship."
+#: view/theme/frio/php/Image.php:25
+msgid "Stretch"
 msgstr ""
 
-#: ../../include/enotify.php:307
-#, php-format
-msgid ""
-"'%1$s' has chosen to accept you a \"fan\", which restricts some forms of "
-"communication - such as private messaging and some profile interactions. If "
-"this is a celebrity or community page, these settings were applied "
-"automatically."
-msgstr "'%1$s'选择欢迎你为\"迷\",限制有的沟通方式,比如死人交流和有的简介互动。如果这是名人或社会页,此设置是自动地施用。"
-
-#: ../../include/enotify.php:309
-#, php-format
-msgid ""
-"'%1$s' may choose to extend this into a two-way or more permissive "
-"relationship in the future. "
+#: view/theme/frio/php/Image.php:25
+msgid "Will stretch to width/height of the image."
 msgstr ""
 
-#: ../../include/enotify.php:322
-msgid "[Friendica System:Notify] registration request"
+#: view/theme/frio/php/Image.php:27
+msgid "Resize fill and-clip"
 msgstr ""
 
-#: ../../include/enotify.php:323
-#, php-format
-msgid "You've received a registration request from '%1$s' at %2$s"
+#: view/theme/frio/php/Image.php:27
+msgid "Resize to fill and retain aspect ratio."
 msgstr ""
 
-#: ../../include/enotify.php:324
-#, php-format
-msgid "You've received a [url=%1$s]registration request[/url] from %2$s."
+#: view/theme/frio/php/Image.php:29
+msgid "Resize best fit"
 msgstr ""
 
-#: ../../include/enotify.php:327
-#, php-format
-msgid "Full Name:\t%1$s\\nSite Location:\t%2$s\\nLogin Name:\t%3$s (%4$s)"
+#: view/theme/frio/php/Image.php:29
+msgid "Resize to best fit and retain aspect ratio."
 msgstr ""
 
-#: ../../include/enotify.php:330
-#, php-format
-msgid "Please visit %s to approve or reject the request."
+#: view/theme/frio/config.php:51
+msgid "Default"
 msgstr ""
 
-#: ../../include/oembed.php:212
-msgid "Embedded content"
-msgstr "嵌入内容"
-
-#: ../../include/oembed.php:221
-msgid "Embedding disabled"
-msgstr "嵌入已停用"
-
-#: ../../include/uimport.php:94
-msgid "Error decoding account file"
-msgstr "解码账户文件出错误"
-
-#: ../../include/uimport.php:100
-msgid "Error! No version data in file! This is not a Friendica account file?"
-msgstr "错误!文件没有版本数!这不是Friendica账户文件吗?"
-
-#: ../../include/uimport.php:116 ../../include/uimport.php:127
-msgid "Error! Cannot check nickname"
-msgstr "错误!不能检查昵称"
-
-#: ../../include/uimport.php:120 ../../include/uimport.php:131
-#, php-format
-msgid "User '%s' already exists on this server!"
-msgstr "用户「%s」已经存在这个服务器!"
-
-#: ../../include/uimport.php:153
-msgid "User creation error"
-msgstr "用户创造错误"
-
-#: ../../include/uimport.php:171
-msgid "User profile creation error"
-msgstr "用户简介创造错误"
+#: view/theme/frio/config.php:63
+msgid "Note: "
+msgstr ""
 
-#: ../../include/uimport.php:220
-#, php-format
-msgid "%d contact not imported"
-msgid_plural "%d contacts not imported"
-msgstr[0] "%d熟人没进口了"
+#: view/theme/frio/config.php:63
+msgid "Check image permissions if all users are allowed to visit the image"
+msgstr ""
 
-#: ../../include/uimport.php:290
-msgid "Done. You can now login with your username and password"
-msgstr "完了。您现在会用您用户名和密码登录"
+#: view/theme/frio/config.php:71
+msgid "Select scheme"
+msgstr ""
 
-#: ../../index.php:428
-msgid "toggle mobile"
-msgstr "交替手机"
+#: view/theme/frio/config.php:72
+msgid "Navigation bar background color"
+msgstr ""
 
-#: ../../view/theme/cleanzero/config.php:82
-#: ../../view/theme/dispy/config.php:72 ../../view/theme/quattro/config.php:66
-#: ../../view/theme/diabook/config.php:150 ../../view/theme/vier/config.php:55
-#: ../../view/theme/duepuntozero/config.php:61
-msgid "Theme settings"
-msgstr "主题设置"
+#: view/theme/frio/config.php:73
+msgid "Navigation bar icon color "
+msgstr ""
 
-#: ../../view/theme/cleanzero/config.php:83
-msgid "Set resize level for images in posts and comments (width and height)"
-msgstr "选择图片在文章和评论的重设尺寸(宽和高)"
+#: view/theme/frio/config.php:74
+msgid "Link color"
+msgstr ""
 
-#: ../../view/theme/cleanzero/config.php:84
-#: ../../view/theme/dispy/config.php:73
-#: ../../view/theme/diabook/config.php:151
-msgid "Set font-size for posts and comments"
-msgstr "决定字体大小在文章和评论"
+#: view/theme/frio/config.php:75
+msgid "Set the background color"
+msgstr "设置背景色"
 
-#: ../../view/theme/cleanzero/config.php:85
-msgid "Set theme width"
-msgstr "选择主题宽"
+#: view/theme/frio/config.php:76
+msgid "Content background transparency"
+msgstr ""
 
-#: ../../view/theme/cleanzero/config.php:86
-#: ../../view/theme/quattro/config.php:68
-msgid "Color scheme"
-msgstr " 色彩设计"
+#: view/theme/frio/config.php:77
+msgid "Set the background image"
+msgstr ""
 
-#: ../../view/theme/dispy/config.php:74
-#: ../../view/theme/diabook/config.php:152
-msgid "Set line-height for posts and comments"
-msgstr "决定行高在文章和评论"
+#: view/theme/frio/theme.php:231
+msgid "Guest"
+msgstr ""
 
-#: ../../view/theme/dispy/config.php:75
-msgid "Set colour scheme"
-msgstr "选择色彩设计"
+#: view/theme/frio/theme.php:237
+msgid "Visitor"
+msgstr ""
 
-#: ../../view/theme/quattro/config.php:67
+#: view/theme/quattro/config.php:74
 msgid "Alignment"
 msgstr "成直线 "
 
-#: ../../view/theme/quattro/config.php:67
+#: view/theme/quattro/config.php:74
 msgid "Left"
 msgstr "左边"
 
-#: ../../view/theme/quattro/config.php:67
+#: view/theme/quattro/config.php:74
 msgid "Center"
 msgstr "中间"
 
-#: ../../view/theme/quattro/config.php:69
+#: view/theme/quattro/config.php:75
+msgid "Color scheme"
+msgstr " 色彩设计"
+
+#: view/theme/quattro/config.php:76
 msgid "Posts font size"
 msgstr "文章"
 
-#: ../../view/theme/quattro/config.php:70
+#: view/theme/quattro/config.php:77
 msgid "Textareas font size"
 msgstr "文本区字体大小"
 
-#: ../../view/theme/diabook/config.php:153
-msgid "Set resolution for middle column"
-msgstr "决定中栏的显示分辨率列表"
-
-#: ../../view/theme/diabook/config.php:154
-msgid "Set color scheme"
-msgstr "选择色彩设计"
-
-#: ../../view/theme/diabook/config.php:155
-msgid "Set zoomfactor for Earth Layer"
-msgstr "选择拉近镜头级在地球层"
-
-#: ../../view/theme/diabook/config.php:156
-#: ../../view/theme/diabook/theme.php:585
-msgid "Set longitude (X) for Earth Layers"
-msgstr "选择经度(X)在地球层"
+#: view/theme/vier/config.php:71
+msgid "Comma separated list of helper forums"
+msgstr ""
 
-#: ../../view/theme/diabook/config.php:157
-#: ../../view/theme/diabook/theme.php:586
-msgid "Set latitude (Y) for Earth Layers"
-msgstr "选择纬度(Y)在地球层"
+#: view/theme/vier/config.php:117
+msgid "Set style"
+msgstr "选择款式"
 
-#: ../../view/theme/diabook/config.php:158
-#: ../../view/theme/diabook/theme.php:130
-#: ../../view/theme/diabook/theme.php:544
-#: ../../view/theme/diabook/theme.php:624
+#: view/theme/vier/config.php:118
 msgid "Community Pages"
 msgstr "社会页"
 
-#: ../../view/theme/diabook/config.php:159
-#: ../../view/theme/diabook/theme.php:579
-#: ../../view/theme/diabook/theme.php:625
-msgid "Earth Layers"
-msgstr "地球层"
-
-#: ../../view/theme/diabook/config.php:160
-#: ../../view/theme/diabook/theme.php:391
-#: ../../view/theme/diabook/theme.php:626
+#: view/theme/vier/config.php:119 view/theme/vier/theme.php:144
 msgid "Community Profiles"
 msgstr "社会简介"
 
-#: ../../view/theme/diabook/config.php:161
-#: ../../view/theme/diabook/theme.php:599
-#: ../../view/theme/diabook/theme.php:627
+#: view/theme/vier/config.php:120
 msgid "Help or @NewHere ?"
 msgstr "帮助或@菜鸟?"
 
-#: ../../view/theme/diabook/config.php:162
-#: ../../view/theme/diabook/theme.php:606
-#: ../../view/theme/diabook/theme.php:628
+#: view/theme/vier/config.php:121 view/theme/vier/theme.php:385
 msgid "Connect Services"
 msgstr "连接服务"
 
-#: ../../view/theme/diabook/config.php:163
-#: ../../view/theme/diabook/theme.php:523
-#: ../../view/theme/diabook/theme.php:629
+#: view/theme/vier/config.php:122 view/theme/vier/theme.php:192
 msgid "Find Friends"
 msgstr "找朋友们"
 
-#: ../../view/theme/diabook/config.php:164
-#: ../../view/theme/diabook/theme.php:412
-#: ../../view/theme/diabook/theme.php:630
+#: view/theme/vier/config.php:123 view/theme/vier/theme.php:174
 msgid "Last users"
 msgstr "上次用户"
 
-#: ../../view/theme/diabook/config.php:165
-#: ../../view/theme/diabook/theme.php:486
-#: ../../view/theme/diabook/theme.php:631
-msgid "Last photos"
-msgstr "上次照片"
+#: view/theme/vier/theme.php:193
+msgid "Local Directory"
+msgstr "当地目录"
 
-#: ../../view/theme/diabook/config.php:166
-#: ../../view/theme/diabook/theme.php:441
-#: ../../view/theme/diabook/theme.php:632
-msgid "Last likes"
-msgstr "上次喜欢"
+#: view/theme/vier/theme.php:285
+msgid "Quick Start"
+msgstr "快速入门"
 
-#: ../../view/theme/diabook/theme.php:125
-msgid "Your contacts"
-msgstr "您的熟人"
+#: src/App.php:523
+msgid "Delete this item?"
+msgstr "删除这个项目?"
 
-#: ../../view/theme/diabook/theme.php:128
-msgid "Your personal photos"
-msgstr "你私人的照片"
+#: src/App.php:525
+msgid "show fewer"
+msgstr "显示更小"
 
-#: ../../view/theme/diabook/theme.php:524
-msgid "Local Directory"
-msgstr "当地目录"
+#: boot.php:733
+#, php-format
+msgid "Update %s failed. See error logs."
+msgstr "更新%s美通过。看错误记录。"
 
-#: ../../view/theme/diabook/theme.php:584
-msgid "Set zoomfactor for Earth Layers"
-msgstr "选择拉近镜头级在地球层"
+#: boot.php:845
+msgid "Create a New Account"
+msgstr "创造新的账户"
 
-#: ../../view/theme/diabook/theme.php:622
-msgid "Show/hide boxes at right-hand column:"
-msgstr "表示/隐藏盒子在友兰:"
+#: boot.php:873
+msgid "Password: "
+msgstr "密码: "
 
-#: ../../view/theme/vier/config.php:56
-msgid "Set style"
-msgstr "选择款式"
+#: boot.php:874
+msgid "Remember me"
+msgstr "记住我"
 
-#: ../../view/theme/duepuntozero/config.php:45
-msgid "greenzero"
-msgstr "greenzero"
+#: boot.php:877
+msgid "Or login using OpenID: "
+msgstr "或者用OpenID登记:"
 
-#: ../../view/theme/duepuntozero/config.php:46
-msgid "purplezero"
-msgstr "purplezero"
+#: boot.php:883
+msgid "Forgot your password?"
+msgstr "忘记你的密码吗?"
 
-#: ../../view/theme/duepuntozero/config.php:47
-msgid "easterbunny"
-msgstr "easterbunny"
+#: boot.php:886
+msgid "Website Terms of Service"
+msgstr "网站的各项规定"
 
-#: ../../view/theme/duepuntozero/config.php:48
-msgid "darkzero"
-msgstr "darkzero"
+#: boot.php:887
+msgid "terms of service"
+msgstr "各项规定"
 
-#: ../../view/theme/duepuntozero/config.php:49
-msgid "comix"
-msgstr "comix"
+#: boot.php:889
+msgid "Website Privacy Policy"
+msgstr "网站隐私政策"
 
-#: ../../view/theme/duepuntozero/config.php:50
-msgid "slackr"
-msgstr "slackr"
+#: boot.php:890
+msgid "privacy policy"
+msgstr "隐私政策"
 
-#: ../../view/theme/duepuntozero/config.php:62
-msgid "Variations"
-msgstr "变化"
+#: index.php:437
+msgid "toggle mobile"
+msgstr "交替手机"
index deb9a11f4cc0b67b72e1f4788a28d9cf50540831..bba477e44dc1f98cfa15a11886cf1ce3ba80477b 100644 (file)
@@ -5,1440 +5,608 @@ function string_plural_select_zh_cn($n){
        return 0;;
 }}
 ;
-$a->strings["%d contact edited."] = array(
-       0 => "%d熟人编辑了",
+$a->strings["General Features"] = "通用特性";
+$a->strings["Multiple Profiles"] = "多简介";
+$a->strings["Ability to create multiple profiles"] = "能穿凿多简介";
+$a->strings["Photo Location"] = "照片地点";
+$a->strings["Photo metadata is normally stripped. This extracts the location (if present) prior to stripping metadata and links it to a map."] = "";
+$a->strings["Export Public Calendar"] = "导出公共日历";
+$a->strings["Ability for visitors to download the public calendar"] = "";
+$a->strings["Post Composition Features"] = "文章编写特性";
+$a->strings["Post Preview"] = "文章预览";
+$a->strings["Allow previewing posts and comments before publishing them"] = "在发布前允许预览文章和评论";
+$a->strings["Auto-mention Forums"] = "自动提示论坛";
+$a->strings["Add/remove mention when a forum page is selected/deselected in ACL window."] = "";
+$a->strings["Network Sidebar Widgets"] = "网络工具栏小窗口";
+$a->strings["Search by Date"] = "按日期搜索";
+$a->strings["Ability to select posts by date ranges"] = "能按时期范围选择文章";
+$a->strings["List Forums"] = "";
+$a->strings["Enable widget to display the forums your are connected with"] = "";
+$a->strings["Group Filter"] = "组过滤器";
+$a->strings["Enable widget to display Network posts only from selected group"] = "启用用于只显示从所选组发出的网络文章的小组件";
+$a->strings["Network Filter"] = "网络滤器";
+$a->strings["Enable widget to display Network posts only from selected network"] = "使光表示网络文章从选择的网络小窗口";
+$a->strings["Saved Searches"] = "保存的搜索";
+$a->strings["Save search terms for re-use"] = "保存搜索关键为再用";
+$a->strings["Network Tabs"] = "网络分页";
+$a->strings["Network Personal Tab"] = "网络私人分页";
+$a->strings["Enable tab to display only Network posts that you've interacted on"] = "使表示光网络文章您参加了分页可用";
+$a->strings["Network New Tab"] = "网络新分页";
+$a->strings["Enable tab to display only new Network posts (from the last 12 hours)"] = "使表示光网络文章在12小时内分页可用";
+$a->strings["Network Shared Links Tab"] = "网络分享链接分页";
+$a->strings["Enable tab to display only Network posts with links in them"] = "使表示光网络文章包括链接分页可用";
+$a->strings["Post/Comment Tools"] = "文章/评论工具";
+$a->strings["Multiple Deletion"] = "多删除";
+$a->strings["Select and delete multiple posts/comments at once"] = "选择和删除多文章/评论一次";
+$a->strings["Edit Sent Posts"] = "编辑发送的文章";
+$a->strings["Edit and correct posts and comments after sending"] = "编辑或修改文章和评论发送后";
+$a->strings["Tagging"] = "标签";
+$a->strings["Ability to tag existing posts"] = "能把目前的文章标签";
+$a->strings["Post Categories"] = "文章种类";
+$a->strings["Add categories to your posts"] = "加入种类给您的文章";
+$a->strings["Saved Folders"] = "保存的文件夹";
+$a->strings["Ability to file posts under folders"] = "能把文章归档在文件夹 ";
+$a->strings["Dislike Posts"] = "不喜欢文章";
+$a->strings["Ability to dislike posts/comments"] = "能不喜欢文章/评论";
+$a->strings["Star Posts"] = "文章星";
+$a->strings["Ability to mark special posts with a star indicator"] = "能把优秀文章跟星标注";
+$a->strings["Mute Post Notifications"] = "";
+$a->strings["Ability to mute notifications for a thread"] = "";
+$a->strings["Advanced Profile Settings"] = "";
+$a->strings["Show visitors public community forums at the Advanced Profile Page"] = "";
+$a->strings["Miscellaneous"] = "形形色色";
+$a->strings["Birthday:"] = "生日:";
+$a->strings["Age: "] = "年纪:";
+$a->strings["YYYY-MM-DD or MM-DD"] = "YYYY-MM-DD 或 MM-DD";
+$a->strings["never"] = "从未";
+$a->strings["less than a second ago"] = "一秒以内";
+$a->strings["year"] = "年";
+$a->strings["years"] = "年";
+$a->strings["month"] = "月";
+$a->strings["months"] = "月";
+$a->strings["week"] = "星期";
+$a->strings["weeks"] = "星期";
+$a->strings["day"] = "日";
+$a->strings["days"] = "天";
+$a->strings["hour"] = "小时";
+$a->strings["hours"] = "小时";
+$a->strings["minute"] = "分钟";
+$a->strings["minutes"] = "分钟";
+$a->strings["second"] = "秒";
+$a->strings["seconds"] = "秒";
+$a->strings["%1\$d %2\$s ago"] = "%1\$d %2\$s以前";
+$a->strings["%s's birthday"] = "%s的生日";
+$a->strings["Happy Birthday %s"] = "生日快乐%s";
+$a->strings["Male"] = "男的";
+$a->strings["Female"] = "女的";
+$a->strings["Currently Male"] = "现在男的";
+$a->strings["Currently Female"] = "现在女的";
+$a->strings["Mostly Male"] = "主要男的";
+$a->strings["Mostly Female"] = "主要女的";
+$a->strings["Transgender"] = "跨性別";
+$a->strings["Intersex"] = "阴阳人";
+$a->strings["Transsexual"] = "”转基因“人";
+$a->strings["Hermaphrodite"] = "两性体";
+$a->strings["Neuter"] = "中性的";
+$a->strings["Non-specific"] = "不明确的";
+$a->strings["Other"] = "别的";
+$a->strings["Undecided"] = array(
+       0 => "未决定的",
 );
-$a->strings["Could not access contact record."] = "用不了熟人记录。";
-$a->strings["Could not locate selected profile."] = "找不到选择的简介。";
-$a->strings["Contact updated."] = "熟人更新了。";
-$a->strings["Failed to update contact record."] = "更新熟人记录失败了。";
-$a->strings["Permission denied."] = "权限不够。";
-$a->strings["Contact has been blocked"] = "熟人拦了";
-$a->strings["Contact has been unblocked"] = "熟人否拦了";
-$a->strings["Contact has been ignored"] = "熟人不理了";
-$a->strings["Contact has been unignored"] = "熟人否不理了";
-$a->strings["Contact has been archived"] = "把联系存档了";
-$a->strings["Contact has been unarchived"] = "把联系从存档拿来了";
-$a->strings["Do you really want to delete this contact?"] = "您真的想删除这个熟人吗?";
-$a->strings["Yes"] = "是";
-$a->strings["Cancel"] = "退消";
-$a->strings["Contact has been removed."] = "熟人删除了。";
-$a->strings["You are mutual friends with %s"] = "您和%s是共同朋友们";
-$a->strings["You are sharing with %s"] = "您分享给%s";
-$a->strings["%s is sharing with you"] = "%s给您分享";
-$a->strings["Private communications are not available for this contact."] = "没有私人的沟通跟这个熟人";
-$a->strings["Never"] = "从未";
-$a->strings["(Update was successful)"] = "(更新成功)";
-$a->strings["(Update was not successful)"] = "(更新不成功)";
-$a->strings["Suggest friends"] = "建议朋友们";
-$a->strings["Network type: %s"] = "网络种类: %s";
+$a->strings["Males"] = "男人";
+$a->strings["Females"] = "女人";
+$a->strings["Gay"] = "男同性恋的";
+$a->strings["Lesbian"] = "女同性恋的";
+$a->strings["No Preference"] = "无偏爱";
+$a->strings["Bisexual"] = "双性恋的";
+$a->strings["Autosexual"] = "自性的";
+$a->strings["Abstinent"] = "有节制的";
+$a->strings["Virgin"] = "原始的";
+$a->strings["Deviant"] = "变态";
+$a->strings["Fetish"] = "恋物对象";
+$a->strings["Oodles"] = "多多";
+$a->strings["Nonsexual"] = "无性";
+$a->strings["Single"] = "单身";
+$a->strings["Lonely"] = "寂寞";
+$a->strings["Available"] = "单身的";
+$a->strings["Unavailable"] = "不可获得的";
+$a->strings["Has crush"] = "迷恋";
+$a->strings["Infatuated"] = "痴迷";
+$a->strings["Dating"] = "约会";
+$a->strings["Unfaithful"] = "外遇";
+$a->strings["Sex Addict"] = "性交因成瘾者";
+$a->strings["Friends"] = "朋友";
+$a->strings["Friends/Benefits"] = "朋友/益";
+$a->strings["Casual"] = "休闲";
+$a->strings["Engaged"] = "已订婚的";
+$a->strings["Married"] = "结婚";
+$a->strings["Imaginarily married"] = "想像结婚";
+$a->strings["Partners"] = "伴侣";
+$a->strings["Cohabiting"] = "同居";
+$a->strings["Common law"] = "普通法结婚";
+$a->strings["Happy"] = "幸福";
+$a->strings["Not looking"] = "没找";
+$a->strings["Swinger"] = "交换性伴侣的";
+$a->strings["Betrayed"] = "被背叛";
+$a->strings["Separated"] = "分手";
+$a->strings["Unstable"] = "不稳";
+$a->strings["Divorced"] = "离婚";
+$a->strings["Imaginarily divorced"] = "想像离婚";
+$a->strings["Widowed"] = "寡妇";
+$a->strings["Uncertain"] = "不确定";
+$a->strings["It's complicated"] = "是复杂";
+$a->strings["Don't care"] = "无所谓";
+$a->strings["Ask me"] = "问我";
+$a->strings["Cannot locate DNS info for database server '%s'"] = "找不到DNS信息为数据库服务器「%s」";
+$a->strings["Post to Email"] = "电邮发布";
+$a->strings["Connectors disabled, since \"%s\" is enabled."] = "连接器已停用,因为\"%s\"启用。";
+$a->strings["Hide your profile details from unknown viewers?"] = "使简介信息给陌生的看着看不了?";
+$a->strings["Visible to everybody"] = "任何人可见的";
+$a->strings["show"] = "显示";
+$a->strings["don't show"] = "不显示";
+$a->strings["CC: email addresses"] = "抄送: 电子邮件地址";
+$a->strings["Example: bob@example.com, mary@example.com"] = "比如: li@example.com, wang@example.com";
+$a->strings["Permissions"] = "权利";
+$a->strings["Close"] = "关闭";
+$a->strings["Unknown | Not categorised"] = "未知的 |无分类";
+$a->strings["Block immediately"] = "立即封禁";
+$a->strings["Shady, spammer, self-marketer"] = "可疑,发垃圾者,自市场开发者";
+$a->strings["Known to me, but no opinion"] = "我认识,但没有意见";
+$a->strings["OK, probably harmless"] = "行,大概无恶意的";
+$a->strings["Reputable, has my trust"] = "可信的,有我的信任";
+$a->strings["Frequently"] = "时常";
+$a->strings["Hourly"] = "每小时";
+$a->strings["Twice daily"] = "每日两次";
+$a->strings["Daily"] = "每日";
+$a->strings["Weekly"] = "每周";
+$a->strings["Monthly"] = "每月";
+$a->strings["Friendica"] = "Friendica";
+$a->strings["OStatus"] = "OStatus";
+$a->strings["RSS/Atom"] = "RSS/Atom";
+$a->strings["Email"] = "电子邮件";
+$a->strings["Diaspora"] = "Diaspora";
+$a->strings["Facebook"] = "Facebook";
+$a->strings["Zot!"] = "Zot!";
+$a->strings["LinkedIn"] = "LinkedIn";
+$a->strings["XMPP/IM"] = "XMPP/IM";
+$a->strings["MySpace"] = "MySpace";
+$a->strings["Google+"] = "Google+";
+$a->strings["pump.io"] = "pump.io";
+$a->strings["Twitter"] = "Twitter";
+$a->strings["Diaspora Connector"] = "Diaspora连接";
+$a->strings["GNU Social Connector"] = "GNU Social 连接器";
+$a->strings["pnut"] = "";
+$a->strings["App.net"] = "";
+$a->strings["A deleted group with this name was revived. Existing item permissions <strong>may</strong> apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "一个用这个名字的被删掉的组复活了。现有项目的权限<strong>可能</strong>对这个组和任何未来的成员有效。如果这不是你想要的,请用一个不同的名字创建另一个组。";
+$a->strings["Default privacy group for new contacts"] = "对新联系人的默认隐私组";
+$a->strings["Everybody"] = "每人";
+$a->strings["edit"] = "编辑";
+$a->strings["Groups"] = "组";
+$a->strings["Edit groups"] = "编辑组";
+$a->strings["Edit group"] = "编辑组";
+$a->strings["Create a new group"] = "创造新组";
+$a->strings["Group Name: "] = "组名:";
+$a->strings["Contacts not in any group"] = "不在任何组的联系人";
+$a->strings["add"] = "添加";
+$a->strings["Forums"] = "论坛";
+$a->strings["External link to forum"] = "到论坛的外链";
+$a->strings["show more"] = "看多";
+$a->strings["System"] = "系统";
+$a->strings["Network"] = "网络";
+$a->strings["Personal"] = "私人";
+$a->strings["Home"] = "主页";
+$a->strings["Introductions"] = "介绍";
+$a->strings["%s commented on %s's post"] = "%s 在 %s 的文章发表了评论";
+$a->strings["%s created a new post"] = "%s 创建了一个新文章";
+$a->strings["%s liked %s's post"] = "%s喜欢了%s的消息";
+$a->strings["%s disliked %s's post"] = "%s不喜欢了%s的消息";
+$a->strings["%s is attending %s's event"] = "%s 正在参加 %s 的事件";
+$a->strings["%s is not attending %s's event"] = "%s 不在参加 %s 的事件";
+$a->strings["%s may attend %s's event"] = "%s 可以参加 %s 的事件";
+$a->strings["%s is now friends with %s"] = "%s成为%s的朋友";
+$a->strings["Friend Suggestion"] = "朋友建议";
+$a->strings["Friend/Connect Request"] = "友谊/联络要求";
+$a->strings["New Follower"] = "新关注者:";
+$a->strings["Logged out."] = "注销了";
+$a->strings["Login failed."] = "登记失败了。";
+$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "我们用您输入的OpenID登录的时候碰到问题。请核实拼法是对的。";
+$a->strings["The error message was:"] = "错误通知是:";
+$a->strings["l F d, Y \\@ g:i A"] = "l F d, Y \\@ g:i A";
+$a->strings["Starts:"] = "开始:";
+$a->strings["Finishes:"] = "结束:";
+$a->strings["Location:"] = "位置:";
+$a->strings["Image/photo"] = "图像/照片";
+$a->strings["<a href=\"%1\$s\" target=\"_blank\">%2\$s</a> %3\$s"] = "";
+$a->strings["$1 wrote:"] = "$1写:";
+$a->strings["Encrypted content"] = "加密的内容";
+$a->strings["Invalid source protocol"] = "无效的源协议";
+$a->strings["Invalid link protocol"] = "无效的连接协议";
+$a->strings["Add New Contact"] = "增添新的熟人";
+$a->strings["Enter address or web location"] = "输入地址或网络位置";
+$a->strings["Example: bob@example.com, http://example.com/barbara"] = "比如:li@example.com, http://example.com/li";
+$a->strings["Connect"] = "连接";
+$a->strings["%d invitation available"] = array(
+       0 => "%d邀请可用的",
+);
+$a->strings["Find People"] = "找人物";
+$a->strings["Enter name or interest"] = "输入名字或兴趣";
+$a->strings["Connect/Follow"] = "连接/关注";
+$a->strings["Examples: Robert Morgenstein, Fishing"] = "比如:李某,打鱼";
+$a->strings["Find"] = "搜索";
+$a->strings["Friend Suggestions"] = "朋友推荐";
+$a->strings["Similar Interests"] = "相似兴趣";
+$a->strings["Random Profile"] = "随机简介";
+$a->strings["Invite Friends"] = "邀请朋友们";
+$a->strings["View Global Directory"] = "查看全球目录";
+$a->strings["Networks"] = "网络";
+$a->strings["All Networks"] = "所有网络";
+$a->strings["Everything"] = "一切";
+$a->strings["Categories"] = "种类";
 $a->strings["%d contact in common"] = array(
        0 => "%d共同熟人",
 );
-$a->strings["View all contacts"] = "看所有的熟人";
-$a->strings["Unblock"] = "不拦";
-$a->strings["Block"] = "拦";
-$a->strings["Toggle Blocked status"] = "交替拦配置";
-$a->strings["Unignore"] = "停不理";
-$a->strings["Ignore"] = "忽视";
-$a->strings["Toggle Ignored status"] = "交替忽视现状";
-$a->strings["Unarchive"] = "从存档拿来";
-$a->strings["Archive"] = "存档";
-$a->strings["Toggle Archive status"] = "交替档案现状";
-$a->strings["Repair"] = "维修";
-$a->strings["Advanced Contact Settings"] = "专家熟人设置";
-$a->strings["Communications lost with this contact!"] = "联系跟这个熟人断开了!";
-$a->strings["Contact Editor"] = "熟人编器";
-$a->strings["Submit"] = "提交";
-$a->strings["Profile Visibility"] = "简历可见量";
-$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "请选择简介您想给%s显示他安全地看您的简介的时候。";
-$a->strings["Contact Information / Notes"] = "熟人信息/便条";
-$a->strings["Edit contact notes"] = "编辑熟人便条";
-$a->strings["Visit %s's profile [%s]"] = "看%s的简介[%s]";
-$a->strings["Block/Unblock contact"] = "拦/否拦熟人";
-$a->strings["Ignore contact"] = "忽视熟人";
-$a->strings["Repair URL settings"] = "维修URL设置";
-$a->strings["View conversations"] = "看交流";
-$a->strings["Delete contact"] = "删除熟人";
-$a->strings["Last update:"] = "上个更新:";
-$a->strings["Update public posts"] = "更新公开文章";
-$a->strings["Update now"] = "现在更新";
-$a->strings["Currently blocked"] = "现在拦的";
-$a->strings["Currently ignored"] = "现在不理的";
-$a->strings["Currently archived"] = "现在存档着";
-$a->strings["Hide this contact from others"] = "隐藏这个熟人给别人";
-$a->strings["Replies/likes to your public posts <strong>may</strong> still be visible"] = "回答/喜欢关您公开文章<strong>会</strong>还可见的";
-$a->strings["Notification for new posts"] = "新消息提示";
-$a->strings["Send a notification of every new post of this contact"] = "发提示在所有这个联络的新消息";
-$a->strings["Fetch further information for feeds"] = "拿文源别的消息";
-$a->strings["Disabled"] = "已停用";
-$a->strings["Fetch information"] = "取消息";
-$a->strings["Fetch information and keywords"] = "取消息和关键词";
-$a->strings["Blacklisted keywords"] = "黑名单关键词";
-$a->strings["Comma separated list of keywords that should not be converted to hashtags, when \"Fetch information and keywords\" is selected"] = "逗号分的关键词不应该翻译成主题标签,如果“取消息和关键词”选择的。";
-$a->strings["Suggestions"] = "建议";
-$a->strings["Suggest potential friends"] = "建议潜在朋友们";
-$a->strings["All Contacts"] = "所有的熟人";
-$a->strings["Show all contacts"] = "表示所有的熟人";
-$a->strings["Unblocked"] = "不拦了";
-$a->strings["Only show unblocked contacts"] = "只表示不拦的熟人";
-$a->strings["Blocked"] = "拦了";
-$a->strings["Only show blocked contacts"] = "只表示拦的熟人";
-$a->strings["Ignored"] = "忽视的";
-$a->strings["Only show ignored contacts"] = "只表示忽视的熟人";
-$a->strings["Archived"] = "在存档";
-$a->strings["Only show archived contacts"] = "只表示档案熟人";
-$a->strings["Hidden"] = "隐藏的";
-$a->strings["Only show hidden contacts"] = "只表示隐藏的熟人";
-$a->strings["Mutual Friendship"] = "共同友谊";
-$a->strings["is a fan of yours"] = "是您迷";
-$a->strings["you are a fan of"] = "你喜欢";
-$a->strings["Edit contact"] = "编熟人";
-$a->strings["Contacts"] = "熟人";
-$a->strings["Search your contacts"] = "搜索您的熟人";
-$a->strings["Finding: "] = "找着:";
-$a->strings["Find"] = "搜索";
-$a->strings["Update"] = "更新";
-$a->strings["Delete"] = "删除";
-$a->strings["No profile"] = "无简介";
-$a->strings["Manage Identities and/or Pages"] = "管理身份或页";
-$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "交替不同同一人或社会/组页合用您的账户或给您「管理」批准";
-$a->strings["Select an identity to manage: "] = "选择同一个人管理:";
-$a->strings["Post successful."] = "评论发表了。";
-$a->strings["Permission denied"] = "权限不够";
-$a->strings["Invalid profile identifier."] = "无限的简介标识符。";
-$a->strings["Profile Visibility Editor"] = "简介能见度编辑器。";
-$a->strings["Profile"] = "简介";
-$a->strings["Click on a contact to add or remove."] = "点击熟人为添加或删除。";
-$a->strings["Visible To"] = "能见被";
-$a->strings["All Contacts (with secure profile access)"] = "所有熟人(跟安全地简介使用权)";
-$a->strings["Item not found."] = "项目找不到。";
-$a->strings["Public access denied."] = "公众看拒绝";
-$a->strings["Access to this profile has been restricted."] = "使用权这个简介被限制了.";
-$a->strings["Item has been removed."] = "项目被删除了。";
-$a->strings["Welcome to Friendica"] = "Friendica欢迎你";
-$a->strings["New Member Checklist"] = "新的成员一览表";
-$a->strings["We would like to offer some tips and links to help make your experience enjoyable. Click any item to visit the relevant page. A link to this page will be visible from your home page for two weeks after your initial registration and then will quietly disappear."] = "我们想提高几个建议和超链接为让你的经历愉快。点击一个项目为了访问相应的网页。你最初登记两周以上一个环节到这儿来在你的首页,然后悄声地消失。";
-$a->strings["Getting Started"] = "开始方法";
-$a->strings["Friendica Walk-Through"] = "Friendica游览";
-$a->strings["On your <em>Quick Start</em> page - find a brief introduction to your profile and network tabs, make some new connections, and find some groups to join."] = "在您的<em>快开始</em>页-看段介绍您的简介和网络分页,结新联系,而找新组为加入。";
-$a->strings["Settings"] = "配置";
-$a->strings["Go to Your Settings"] = "您的设置";
-$a->strings["On your <em>Settings</em> page -  change your initial password. Also make a note of your Identity Address. This looks just like an email address - and will be useful in making friends on the free social web."] = "在你的<em>设置</em>页 - 改变你的最初的密码。也记住你的客户地址。这好像一个电子邮件地址,是用于在自由社会化网络交朋友们有用的。";
-$a->strings["Review the other settings, particularly the privacy settings. An unpublished directory listing is like having an unlisted phone number. In general, you should probably publish your listing - unless all of your friends and potential friends know exactly how to find you."] = "校对别的设置,特别隐私设置。一个未出版的目录项目是跟未出版的电话号码一样。平时,你可能应该出版你的目录项目-除非都你的朋友们和可交的朋友们已经知道确切地怎么找你。";
-$a->strings["Upload Profile Photo"] = "上传简历照片";
-$a->strings["Upload a profile photo if you have not done so already. Studies have shown that people with real photos of themselves are ten times more likely to make friends than people who do not."] = "上传一张简历照片除非你已经做过。研究表明有真正自己的照片的人比没有的交朋友们可能多十倍。";
-$a->strings["Edit Your Profile"] = "编辑您的简介";
-$a->strings["Edit your <strong>default</strong> profile to your liking. Review the settings for hiding your list of friends and hiding the profile from unknown visitors."] = "随意编你的<strong>公开的</strong>简历。评论设置为藏起来你的朋友表和简历过陌生来客。";
-$a->strings["Profile Keywords"] = "简介关键字";
-$a->strings["Set some public keywords for your default profile which describe your interests. We may be able to find other people with similar interests and suggest friendships."] = "指定一些公开关键字在您的默认简介描述您兴趣。我们可能找得了别人有相似兴趣和建议友谊。";
-$a->strings["Connecting"] = "连接着";
-$a->strings["Facebook"] = "Facebook";
-$a->strings["Authorise the Facebook Connector if you currently have a Facebook account and we will (optionally) import all your Facebook friends and conversations."] = "要是你有一个Facebook账户,批准Facebook插销。我们来(可选的)进口都你Facebook朋友们和交谈。";
-$a->strings["<em>If</em> this is your own personal server, installing the Facebook addon may ease your transition to the free social web."] = "<em>要是</em>这是你的私利服务器,安装Facebook插件会把你的过渡到自由社会化网络自在一点。";
-$a->strings["Importing Emails"] = "进口着邮件";
-$a->strings["Enter your email access information on your Connector Settings page if you wish to import and interact with friends or mailing lists from your email INBOX"] = "输入你电子邮件使用信息在插销设置页,要是你想用你的电子邮件进口和互动朋友们或邮件表。";
-$a->strings["Go to Your Contacts Page"] = "您的熟人页";
-$a->strings["Your Contacts page is your gateway to managing friendships and connecting with friends on other networks. Typically you enter their address or site URL in the <em>Add New Contact</em> dialog."] = "您熟人页是您门口为管理熟人和连接朋友们在别的网络。典型您输入他的地址或者网站URL在<em>添加新熟人</em>对话框。";
-$a->strings["Go to Your Site's Directory"] = "您网站的目录";
-$a->strings["The Directory page lets you find other people in this network or other federated sites. Look for a <em>Connect</em> or <em>Follow</em> link on their profile page. Provide your own Identity Address if requested."] = "目录页让您找别人在这个网络或别的同盟的网站。找一个<em>连接</em>或<em>关注</em>按钮在他们的简介页。您被要求的话,提供您自己的同一个人地址。";
-$a->strings["Finding New People"] = "找新人";
-$a->strings["On the side panel of the Contacts page are several tools to find new friends. We can match people by interest, look up people by name or interest, and provide suggestions based on network relationships. On a brand new site, friend suggestions will usually begin to be populated within 24 hours."] = "在熟人页的工具栏有一些工具为找新朋友们。我们会使人们相配按名或兴趣,和以网络关系作为提醒建议的根据。在新网站,朋友建议平常开始24小时后。";
-$a->strings["Groups"] = "组";
-$a->strings["Group Your Contacts"] = "把熟人组起来";
-$a->strings["Once you have made some friends, organize them into private conversation groups from the sidebar of your Contacts page and then you can interact with each group privately on your Network page."] = "您交朋友们后,组织他们分私人交流组在您熟人页的边栏,您会私下地跟组交流在您的网络页。";
-$a->strings["Why Aren't My Posts Public?"] = "我文章怎么没公开的?";
-$a->strings["Friendica respects your privacy. By default, your posts will only show up to people you've added as friends. For more information, see the help section from the link above."] = "Friendica尊敬您的隐私。默认是您文章只被您朋友们看。更多消息在帮助部分在上面的链接。";
-$a->strings["Getting Help"] = "怎么获得帮助";
-$a->strings["Go to the Help Section"] = "看帮助部分";
-$a->strings["Our <strong>help</strong> pages may be consulted for detail on other program features and resources."] = "我们<strong>帮助</strong>页可查阅到详情关于别的编程特点和资源。";
-$a->strings["OpenID protocol error. No ID returned."] = "OpenID协议错误。没ID还。 ";
-$a->strings["Account not found and OpenID registration is not permitted on this site."] = "找不到账户和OpenID注册不允许。";
-$a->strings["Login failed."] = "登记失败了。";
-$a->strings["Image uploaded but image cropping failed."] = "照片上传去了,但修剪失灵。";
-$a->strings["Profile Photos"] = "简介照片";
-$a->strings["Image size reduction [%s] failed."] = "照片减少[%s]失灵。";
-$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "万一新照片一会出现,换档重新加载或者成为空浏览器高速缓存。";
-$a->strings["Unable to process image"] = "不能处理照片";
-$a->strings["Image exceeds size limit of %d"] = "图像超标最大极限尺寸 %d";
-$a->strings["Unable to process image."] = "处理不了图像.";
-$a->strings["Upload File:"] = "上传文件:";
-$a->strings["Select a profile:"] = "选择一个简介";
-$a->strings["Upload"] = "上传";
-$a->strings["or"] = "或者";
-$a->strings["skip this step"] = "略过这步";
-$a->strings["select a photo from your photo albums"] = "从您的照片册选择一片。";
-$a->strings["Crop Image"] = "修剪照片";
-$a->strings["Please adjust the image cropping for optimum viewing."] = "请调图片剪裁为最好看。";
-$a->strings["Done Editing"] = "编完了";
-$a->strings["Image uploaded successfully."] = "照片成功地上传了";
-$a->strings["Image upload failed."] = "图像上载失败了.";
-$a->strings["photo"] = "照片";
+$a->strings["event"] = "项目";
 $a->strings["status"] = "现状";
-$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s关注着%2\$s的%3\$s";
-$a->strings["Tag removed"] = "标签去除了";
-$a->strings["Remove Item Tag"] = "去除项目标签";
-$a->strings["Select a tag to remove: "] = "选择标签去除";
-$a->strings["Remove"] = "移走";
-$a->strings["Save to Folder:"] = "保存再文件夹:";
-$a->strings["- select -"] = "-选择-";
-$a->strings["Save"] = "保存";
-$a->strings["Contact added"] = "熟人添了";
-$a->strings["Unable to locate original post."] = "找不到当初的新闻";
-$a->strings["Empty post discarded."] = "空心的新闻丢弃了";
-$a->strings["Wall Photos"] = "墙照片";
-$a->strings["System error. Post not saved."] = "系统错误。x";
-$a->strings["This message was sent to you by %s, a member of the Friendica social network."] = "这个新闻是由%s,Friendica社会化网络成员之一,发给你。";
-$a->strings["You may visit them online at %s"] = "你可以网上拜访他在%s";
-$a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "你不想受到这些新闻的话,请回答这个新闻给发者联系。";
-$a->strings["%s posted an update."] = "%s贴上一个新闻。";
-$a->strings["Group created."] = "组造成了。";
-$a->strings["Could not create group."] = "不能造成组。";
-$a->strings["Group not found."] = "组找不到。";
-$a->strings["Group name changed."] = "组名变化了。";
-$a->strings["Save Group"] = "保存组";
-$a->strings["Create a group of contacts/friends."] = "造成组熟人/朋友们。";
-$a->strings["Group Name: "] = "组名:";
-$a->strings["Group removed."] = "组删除了。";
-$a->strings["Unable to remove group."] = "不能删除组。";
-$a->strings["Group Editor"] = "组编辑器";
-$a->strings["Members"] = "成员";
-$a->strings["You must be logged in to use addons. "] = "您用插件前要登录";
-$a->strings["Applications"] = "应用";
-$a->strings["No installed applications."] = "没有安装的应用";
-$a->strings["Profile not found."] = "找不到简介。";
-$a->strings["Contact not found."] = "没找到熟人。";
-$a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = "这会偶尔地发生熟人双方都要求和已经批准的时候。";
-$a->strings["Response from remote site was not understood."] = "遥网站的回答明白不了。";
-$a->strings["Unexpected response from remote site: "] = "居然回答从遥网站:";
-$a->strings["Confirmation completed successfully."] = "确认成功完成。";
-$a->strings["Remote site reported: "] = "遥网站报案:";
-$a->strings["Temporary failure. Please wait and try again."] = "临时失败。请等一会,再试。";
-$a->strings["Introduction failed or was revoked."] = "介绍失败或被吊销。";
-$a->strings["Unable to set contact photo."] = "不会指定熟人照片。";
-$a->strings["%1\$s is now friends with %2\$s"] = "%1\$s是成为%2\$s的朋友";
-$a->strings["No user record found for '%s' "] = "找不到「%s」的用户记录";
-$a->strings["Our site encryption key is apparently messed up."] = "看起来我们的加密钥匙失灵了。";
-$a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "空的URL供应,或URL解不了码。";
-$a->strings["Contact record was not found for you on our site."] = "熟人记录在我们的网站找不了。";
-$a->strings["Site public key not available in contact record for URL %s."] = "没有网站公开钥匙在熟人记录在URL%s。";
-$a->strings["The ID provided by your system is a duplicate on our system. It should work if you try again."] = "身份证明由您的系统是在我们的重做。你再试应该运行。";
-$a->strings["Unable to set your contact credentials on our system."] = "不能创作您的熟人证件在我们的系统。";
-$a->strings["Unable to update your contact profile details on our system"] = "不能更新您的熟人简介消息在我们的系统";
-$a->strings["[Name Withheld]"] = "[名字拒给]";
-$a->strings["%1\$s has joined %2\$s"] = "%1\$s加入%2\$s了";
-$a->strings["Requested profile is not available."] = "要求的简介联系不上的。";
-$a->strings["Tips for New Members"] = "提示对新成员";
-$a->strings["No videos selected"] = "没选择的视频";
-$a->strings["Access to this item is restricted."] = "这个项目使用权限的。";
-$a->strings["View Video"] = "看视频";
-$a->strings["View Album"] = "看照片册";
-$a->strings["Recent Videos"] = "最近视频";
-$a->strings["Upload New Videos"] = "上传新视频";
-$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s把%4\$s标签%2\$s的%3\$s";
-$a->strings["Friend suggestion sent."] = "朋友建议发送了。";
-$a->strings["Suggest Friends"] = "建议朋友们";
-$a->strings["Suggest a friend for %s"] = "建议朋友给%s";
-$a->strings["No valid account found."] = "找不到效的账户。";
-$a->strings["Password reset request issued. Check your email."] = "重设密码要求发布了。核对您的收件箱。";
-$a->strings["\n\t\tDear %1\$s,\n\t\t\tA request was recently received at \"%2\$s\" to reset your account\n\t\tpassword. In order to confirm this request, please select the verification link\n\t\tbelow or paste it into your web browser address bar.\n\n\t\tIf you did NOT request this change, please DO NOT follow the link\n\t\tprovided and ignore and/or delete this email.\n\n\t\tYour password will not be changed unless we can verify that you\n\t\tissued this request."] = "\n\t\t亲爱的%1\$s,\n\t\t\t最近\"%2\$s\"收到重设你账号密码要求。为了验证此要求,请点击\n\t\t下面的链接或者粘贴在浏览器。\n\n\t\t如果你没请求这个变化,请别点击并忽视或删除这个邮件。\n\n\t\t你的密码将不改变除非我们验证这个请求是由你发地。";
-$a->strings["\n\t\tFollow this link to verify your identity:\n\n\t\t%1\$s\n\n\t\tYou will then receive a follow-up message containing the new password.\n\t\tYou may change that password from your account settings page after logging in.\n\n\t\tThe login details are as follows:\n\n\t\tSite Location:\t%2\$s\n\t\tLogin Name:\t%3\$s"] = "\n\t\t点击西面的链接为验证你的身份:\n\n\t\t%1\$s\n\n\t\t你将收一个邮件包括新的密码。登录之后你能改密码在设置页面。\n\n\t\t登录消息是:\n\n\t\t网站地址:\t%2\$s\n\t\t用户名:\t%3\$s";
-$a->strings["Password reset requested at %s"] = "重设密码要求被发布%s";
-$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "要求确认不了。(您可能已经提交它。)重设密码失败了。";
-$a->strings["Password Reset"] = "复位密码";
-$a->strings["Your password has been reset as requested."] = "您的密码被重设如要求的。";
-$a->strings["Your new password is"] = "你的新的密码是";
-$a->strings["Save or copy your new password - and then"] = "保存或复制新密码-之后";
-$a->strings["click here to login"] = "在这儿点击";
-$a->strings["Your password may be changed from the <em>Settings</em> page after successful login."] = "您的密码能被变化从<em>设置</em>页成功登记后。";
-$a->strings["\n\t\t\t\tDear %1\$s,\n\t\t\t\t\tYour password has been changed as requested. Please retain this\n\t\t\t\tinformation for your records (or change your password immediately to\n\t\t\t\tsomething that you will remember).\n\t\t\t"] = "\n\t\t\t\t亲戚的%1\$s,\n\t\t\t\t\t你的密码于你的要求被改了。请保存这个消息或者\n\t\t\t\t立刻改密码成什么容易回忆的。\n\t\t\t";
-$a->strings["\n\t\t\t\tYour login details are as follows:\n\n\t\t\t\tSite Location:\t%1\$s\n\t\t\t\tLogin Name:\t%2\$s\n\t\t\t\tPassword:\t%3\$s\n\n\t\t\t\tYou may change that password from your account settings page after logging in.\n\t\t\t"] = "\n\t\t\t\t你的登录消息是:\n\n\t\t\t\t网站地址:%1\$s\n\t\t\t\t用户名:%2\$s\n\t\t\t\t密码:%3\$s\n\n\t\t\t\t登录后你能改密码在设置页面。\n\t\t\t";
-$a->strings["Your password has been changed at %s"] = "您密码被变化在%s";
-$a->strings["Forgot your Password?"] = "忘记你的密码吗?";
-$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "输入您的邮件地址和提交为重置密码。然后核对收件箱看别的说明。";
-$a->strings["Nickname or Email: "] = "昵称或邮件地址:";
-$a->strings["Reset"] = "复位";
+$a->strings["photo"] = "照片";
 $a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s喜欢%2\$s的%3\$s";
 $a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s不喜欢%2\$s的%3\$s";
-$a->strings["{0} wants to be your friend"] = "{0}想成为您的朋友";
-$a->strings["{0} sent you a message"] = "{0}发给您一个通信";
-$a->strings["{0} requested registration"] = "{0}要求注册";
-$a->strings["{0} commented %s's post"] = "{0}对%s的文章发表意见";
-$a->strings["{0} liked %s's post"] = "{0}喜欢%s的文章";
-$a->strings["{0} disliked %s's post"] = "{0}不喜欢%s的文章";
-$a->strings["{0} is now friends with %s"] = "{0}成为%s的朋友";
-$a->strings["{0} posted"] = "{0}陈列";
-$a->strings["{0} tagged %s's post with #%s"] = "{0}用#%s标签%s的文章";
-$a->strings["{0} mentioned you in a post"] = "{0}提到您在文章";
-$a->strings["No contacts."] = "没有熟人。";
-$a->strings["View Contacts"] = "看熟人";
-$a->strings["Invalid request identifier."] = "无效要求身份号。";
-$a->strings["Discard"] = "丢弃";
-$a->strings["System"] = "系统";
-$a->strings["Network"] = "网络";
-$a->strings["Personal"] = "私人";
-$a->strings["Home"] = "主页";
-$a->strings["Introductions"] = "介绍";
-$a->strings["Show Ignored Requests"] = "显示不理的要求";
-$a->strings["Hide Ignored Requests"] = "隐藏不理的要求";
-$a->strings["Notification type: "] = "通知种类:";
-$a->strings["Friend Suggestion"] = "朋友建议";
-$a->strings["suggested by %s"] = "由%s建议的";
-$a->strings["Post a new friend activity"] = "表新朋友活动";
-$a->strings["if applicable"] = "或适用";
-$a->strings["Approve"] = "批准";
-$a->strings["Claims to be known to you: "] = "声称被您认识:";
-$a->strings["yes"] = "是";
-$a->strings["no"] = "否";
-$a->strings["Approve as: "] = "批准作为";
-$a->strings["Friend"] = "朋友";
-$a->strings["Sharer"] = "分享者";
-$a->strings["Fan/Admirer"] = "迷/赞赏者";
-$a->strings["Friend/Connect Request"] = "友谊/联络要求";
-$a->strings["New Follower"] = "新关注者:";
-$a->strings["No introductions."] = "没有介绍。";
-$a->strings["Notifications"] = "通知";
-$a->strings["%s liked %s's post"] = "%s喜欢了%s的消息";
-$a->strings["%s disliked %s's post"] = "%s不喜欢了%s的消息";
-$a->strings["%s is now friends with %s"] = "%s成为%s的朋友";
-$a->strings["%s created a new post"] = "%s造成新文章";
-$a->strings["%s commented on %s's post"] = "%s便条%s的文章";
-$a->strings["No more network notifications."] = "没有别的网络通信。";
-$a->strings["Network Notifications"] = "网络通知";
-$a->strings["No more system notifications."] = "没别系统通知。";
-$a->strings["System Notifications"] = "系统通知";
-$a->strings["No more personal notifications."] = "没有别的私人通信。";
-$a->strings["Personal Notifications"] = "私人通知";
-$a->strings["No more home notifications."] = "没有别的家通信。";
-$a->strings["Home Notifications"] = "主页通知";
-$a->strings["Source (bbcode) text:"] = "源代码(bbcode)正文";
-$a->strings["Source (Diaspora) text to convert to BBcode:"] = "源代(Diaspora)正文要翻译成BBCode:";
-$a->strings["Source input: "] = "源代码输入:";
-$a->strings["bb2html (raw HTML): "] = "bb2html(生HTML): ";
-$a->strings["bb2html: "] = "bb2html:";
-$a->strings["bb2html2bb: "] = "bb2html2bb:";
-$a->strings["bb2md: "] = "bb2md:";
-$a->strings["bb2md2html: "] = "bb2md2html:";
-$a->strings["bb2dia2bb: "] = "bb2dia2bb:";
-$a->strings["bb2md2html2bb: "] = "bb2md2html2bb:";
-$a->strings["Source input (Diaspora format): "] = "源代输入(Diaspora形式):";
-$a->strings["diaspora2bb: "] = "diaspora2bb: ";
-$a->strings["Nothing new here"] = "这里没有什么新的";
-$a->strings["Clear notifications"] = "清理出通知";
-$a->strings["New Message"] = "新的消息";
-$a->strings["No recipient selected."] = "没有选择的接受者。";
-$a->strings["Unable to locate contact information."] = "找不到熟人信息。";
-$a->strings["Message could not be sent."] = "消息发不了。";
-$a->strings["Message collection failure."] = "通信受到错误。";
-$a->strings["Message sent."] = "消息发了";
-$a->strings["Messages"] = "消息";
-$a->strings["Do you really want to delete this message?"] = "您真的想删除这个通知吗?";
-$a->strings["Message deleted."] = "消息删除了。";
-$a->strings["Conversation removed."] = "交流删除了。";
-$a->strings["Please enter a link URL:"] = "请输入环节URL:";
-$a->strings["Send Private Message"] = "发私人的通信";
-$a->strings["To:"] = "到:";
-$a->strings["Subject:"] = "题目:";
-$a->strings["Your message:"] = "你的消息:";
-$a->strings["Upload photo"] = "上传照片";
-$a->strings["Insert web link"] = "插入网页环节";
-$a->strings["Please wait"] = "请等一下";
-$a->strings["No messages."] = "没有消息";
-$a->strings["Unknown sender - %s"] = "生发送人-%s";
-$a->strings["You and %s"] = "您和%s";
-$a->strings["%s and You"] = "%s和您";
-$a->strings["Delete conversation"] = "删除交谈";
-$a->strings["D, d M Y - g:i A"] = "D, d M Y - g:i A";
-$a->strings["%d message"] = array(
-       0 => "%d通知",
+$a->strings["%1\$s attends %2\$s's %3\$s"] = "%1\$s 参加了 %2\$s 的 %3\$s";
+$a->strings["%1\$s doesn't attend %2\$s's %3\$s"] = "%1\$s 没有参加 %2\$s 的 %3\$s";
+$a->strings["%1\$s attends maybe %2\$s's %3\$s"] = "";
+$a->strings["%1\$s is now friends with %2\$s"] = "%1\$s是成为%2\$s的朋友";
+$a->strings["%1\$s poked %2\$s"] = "%1\$s把%2\$s戳";
+$a->strings["%1\$s is currently %2\$s"] = "%1\$s现在是%2\$s";
+$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s把%4\$s标签%2\$s的%3\$s";
+$a->strings["post/item"] = "文章/项目";
+$a->strings["%1\$s marked %2\$s's %3\$s as favorite"] = "%1\$s标注%2\$s的%3\$s为偏爱";
+$a->strings["Likes"] = "喜欢";
+$a->strings["Dislikes"] = "不喜欢";
+$a->strings["Attending"] = array(
+       0 => "正在参加",
 );
-$a->strings["Message not available."] = "通信不可用的";
-$a->strings["Delete message"] = "删除消息";
-$a->strings["No secure communications available. You <strong>may</strong> be able to respond from the sender's profile page."] = "没可用的安全交通。您<strong>可能</strong>会在发送人的简介页会回答。";
-$a->strings["Send Reply"] = "发回答";
-$a->strings["[Embedded content - reload page to view]"] = "[嵌入内容-重新加载页为看]";
-$a->strings["Contact settings applied."] = "熟人设置应用了。";
-$a->strings["Contact update failed."] = "熟人更新失败。";
-$a->strings["Repair Contact Settings"] = "维修熟人设置";
-$a->strings["<strong>WARNING: This is highly advanced</strong> and if you enter incorrect information your communications with this contact may stop working."] = "<strong>注意:这是很高等的</strong>,你输入错的信息你和熟人的沟通会弄失灵了。";
-$a->strings["Please use your browser 'Back' button <strong>now</strong> if you are uncertain what to do on this page."] = "请<strong>立即</strong>用后退按钮如果您不确定怎么用这页";
-$a->strings["Return to contact editor"] = "回归熟人处理器";
-$a->strings["No mirroring"] = "没有复制";
-$a->strings["Mirror as forwarded posting"] = "复制为传达文章";
-$a->strings["Mirror as my own posting"] = "复制为我自己的文章";
-$a->strings["Name"] = "名字";
-$a->strings["Account Nickname"] = "帐户昵称";
-$a->strings["@Tagname - overrides Name/Nickname"] = "@Tagname越过名/昵称";
-$a->strings["Account URL"] = "帐户URL";
-$a->strings["Friend Request URL"] = "朋友请求URL";
-$a->strings["Friend Confirm URL"] = "朋友确认URL";
-$a->strings["Notification Endpoint URL"] = "通知端URL";
-$a->strings["Poll/Feed URL"] = "喂URL";
-$a->strings["New photo from this URL"] = "新照片从这个URL";
-$a->strings["Remote Self"] = "遥远的自身";
-$a->strings["Mirror postings from this contact"] = "把这个熟人的文章复制。";
-$a->strings["Mark this contact as remote_self, this will cause friendica to repost new entries from this contact."] = "表明这个熟人当遥远的自身。Friendica要把这个熟人的新的文章复制。";
-$a->strings["Login"] = "登录";
-$a->strings["The post was created"] = "文章创建了";
-$a->strings["Access denied."] = "没有用权。";
-$a->strings["People Search"] = "搜索人物";
-$a->strings["No matches"] = "没有结果";
-$a->strings["Photos"] = "照片";
-$a->strings["Files"] = "文件";
-$a->strings["Contacts who are not members of a group"] = "没当成员的熟人";
-$a->strings["Theme settings updated."] = "主题设置更新了。";
-$a->strings["Site"] = "网站";
-$a->strings["Users"] = "用户";
-$a->strings["Plugins"] = "插件";
-$a->strings["Themes"] = "主题";
-$a->strings["DB updates"] = "数据库更新";
-$a->strings["Logs"] = "记录";
-$a->strings["probe address"] = "试探地址";
-$a->strings["check webfinger"] = "查webfinger";
-$a->strings["Admin"] = "管理";
-$a->strings["Plugin Features"] = "插件特点";
-$a->strings["diagnostics"] = "诊断";
-$a->strings["User registrations waiting for confirmation"] = "用户注册等确认";
-$a->strings["Normal Account"] = "正常帐户";
-$a->strings["Soapbox Account"] = "演讲台帐户";
-$a->strings["Community/Celebrity Account"] = "社会/名人帐户";
-$a->strings["Automatic Friend Account"] = "自动朋友帐户";
-$a->strings["Blog Account"] = "博客账户";
-$a->strings["Private Forum"] = "私人评坛";
-$a->strings["Message queues"] = "通知排队";
-$a->strings["Administration"] = "管理";
-$a->strings["Summary"] = "总算";
-$a->strings["Registered users"] = "注册的用户";
-$a->strings["Pending registrations"] = "未决的注册";
-$a->strings["Version"] = "版本";
-$a->strings["Active plugins"] = "活跃的插件";
-$a->strings["Can not parse base url. Must have at least <scheme>://<domain>"] = "不能分析基础URL。至少要<scheme>://<domain>";
-$a->strings["Site settings updated."] = "网站设置更新了。";
-$a->strings["No special theme for mobile devices"] = "没专门适合手机的主题";
-$a->strings["No community page"] = "没有社会页";
-$a->strings["Public postings from users of this site"] = "本网站用户的公开文章";
-$a->strings["Global community page"] = "全球社会页";
-$a->strings["At post arrival"] = "收件的时候";
-$a->strings["Frequently"] = "时常";
-$a->strings["Hourly"] = "每小时";
-$a->strings["Twice daily"] = "每日两次";
-$a->strings["Daily"] = "每日";
-$a->strings["Multi user instance"] = "多用户网站";
-$a->strings["Closed"] = "关闭";
-$a->strings["Requires approval"] = "要批准";
-$a->strings["Open"] = "打开";
-$a->strings["No SSL policy, links will track page SSL state"] = "没SSL方针,环节将追踪页SSL现状";
-$a->strings["Force all links to use SSL"] = "让所有的环节用SSL";
-$a->strings["Self-signed certificate, use SSL for local links only (discouraged)"] = "自签证书,用SSL再光本地环节(劝止的)";
-$a->strings["Save Settings"] = "保存设置";
-$a->strings["Registration"] = "注册";
-$a->strings["File upload"] = "文件上传";
-$a->strings["Policies"] = "政策";
-$a->strings["Advanced"] = "高等";
-$a->strings["Performance"] = "性能";
-$a->strings["Relocate - WARNING: advanced function. Could make this server unreachable."] = "调动:注意先进的功能。能吧服务器使不能联系。";
-$a->strings["Site name"] = "网页名字";
-$a->strings["Host name"] = "服务器名";
-$a->strings["Sender Email"] = "寄主邮件";
-$a->strings["Banner/Logo"] = "标题/标志";
-$a->strings["Shortcut icon"] = "捷径小图片";
-$a->strings["Touch icon"] = "触摸小图片";
-$a->strings["Additional Info"] = "别的消息";
-$a->strings["For public servers: you can add additional information here that will be listed at dir.friendica.com/siteinfo."] = "公共服务器:您会这里添加消息要列在dir.friendica.com/siteinfo。";
-$a->strings["System language"] = "系统语言";
-$a->strings["System theme"] = "系统主题";
-$a->strings["Default system theme - may be over-ridden by user profiles - <a href='#' id='cnftheme'>change theme settings</a>"] = "默认系统主题-会被用户简介超驰-<a href='#' id='cnftheme'>把主题设置变化</a>";
-$a->strings["Mobile system theme"] = "手机系统主题";
-$a->strings["Theme for mobile devices"] = "主题适合手机";
-$a->strings["SSL link policy"] = "SSL环节方针";
-$a->strings["Determines whether generated links should be forced to use SSL"] = "决定产生的环节否则被强迫用SSL";
-$a->strings["Force SSL"] = "强逼SSL";
-$a->strings["Force all Non-SSL requests to SSL - Attention: on some systems it could lead to endless loops."] = "强逼所有非SSL的要求用SSL。注意:在有的系统会导致无限循环";
-$a->strings["Old style 'Share'"] = "老款式'分享'";
-$a->strings["Deactivates the bbcode element 'share' for repeating items."] = "为重复的项目吧bbcode“share”代码使不活跃";
-$a->strings["Hide help entry from navigation menu"] = "隐藏帮助在航行选单";
-$a->strings["Hides the menu entry for the Help pages from the navigation menu. You can still access it calling /help directly."] = "隐藏帮助项目在航行选单。您还能用它经过手动的输入「/help」";
-$a->strings["Single user instance"] = "单用户网站";
-$a->strings["Make this instance multi-user or single-user for the named user"] = "弄这网站多用户或单用户为选择的用户";
-$a->strings["Maximum image size"] = "图片最大尺寸";
-$a->strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = "最多上传照相的字节。默认是零,意思是无限。";
-$a->strings["Maximum image length"] = "最大图片大小";
-$a->strings["Maximum length in pixels of the longest side of uploaded images. Default is -1, which means no limits."] = "最多像素在上传图片的长度。默认-1,意思是无限。";
-$a->strings["JPEG image quality"] = "JPEG图片质量";
-$a->strings["Uploaded JPEGS will be saved at this quality setting [0-100]. Default is 100, which is full quality."] = "上传的JPEG被用这质量[0-100]保存。默认100,最高。";
-$a->strings["Register policy"] = "注册政策";
-$a->strings["Maximum Daily Registrations"] = "一天最多注册";
-$a->strings["If registration is permitted above, this sets the maximum number of new user registrations to accept per day.  If register is set to closed, this setting has no effect."] = "如果注册上边许可的,这个选择一天最多新用户注册会接待。如果注册关闭了,这个设置没有印象。";
-$a->strings["Register text"] = "注册正文";
-$a->strings["Will be displayed prominently on the registration page."] = "被显著的在注册页表示。";
-$a->strings["Accounts abandoned after x days"] = "账户丢弃X天后";
-$a->strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "拒绝浪费系统资源看外网站找丢弃的账户。输入0为无时限。";
-$a->strings["Allowed friend domains"] = "允许的朋友域";
-$a->strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = "逗号分隔的域名许根这个网站结友谊。通配符行。空的允许所有的域名。";
-$a->strings["Allowed email domains"] = "允许的电子邮件域";
-$a->strings["Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains"] = "逗号分隔的域名可接受在邮件地址为这网站的注册。通配符行。空的允许所有的域名。";
-$a->strings["Block public"] = "拦公开";
-$a->strings["Check to block public access to all otherwise public personal pages on this site unless you are currently logged in."] = "拦公开看什么否则空开的私页在这网站除了您登录的时候以外。";
-$a->strings["Force publish"] = "需要出版";
-$a->strings["Check to force all profiles on this site to be listed in the site directory."] = "让所有这网站的的简介表明在网站目录。";
-$a->strings["Global directory update URL"] = "综合目录更新URL";
-$a->strings["URL to update the global directory. If this is not set, the global directory is completely unavailable to the application."] = "URL为更新综合目录。如果没有,这个应用用不了综合目录。";
-$a->strings["Allow threaded items"] = "允许线绳项目";
-$a->strings["Allow infinite level threading for items on this site."] = "允许无限水平线绳为这网站的项目。";
-$a->strings["Private posts by default for new users"] = "新用户默认写私人文章";
-$a->strings["Set default post permissions for all new members to the default privacy group rather than public."] = "默认新用户文章批准使默认隐私组,没有公开。";
-$a->strings["Don't include post content in email notifications"] = "别包含文章内容在邮件消息";
-$a->strings["Don't include the content of a post/comment/private message/etc. in the email notifications that are sent out from this site, as a privacy measure."] = "别包含文章/谈论/私消息/等的内容在文件消息被这个网站寄出,为了隐私。";
-$a->strings["Disallow public access to addons listed in the apps menu."] = "不允许插件的公众使用权在应用选单。";
-$a->strings["Checking this box will restrict addons listed in the apps menu to members only."] = "复选这个框为把应用选内插件限制仅成员";
-$a->strings["Don't embed private images in posts"] = "别嵌入私人图案在文章里";
-$a->strings["Don't replace locally-hosted private photos in posts with an embedded copy of the image. This means that contacts who receive posts containing private photos will have to authenticate and load each image, which may take a while."] = "别把复制嵌入的照相代替本网站的私人照相在文章里。结果是收包括私人照相的熟人要认证才卸载个张照片,会花许久。";
-$a->strings["Allow Users to set remote_self"] = "允许用户用遥远的自身";
-$a->strings["With checking this, every user is allowed to mark every contact as a remote_self in the repair contact dialog. Setting this flag on a contact causes mirroring every posting of that contact in the users stream."] = "选择这个之后,用户们允许表明熟人当遥远的自身在熟人修理页。遥远的自身所有文章被复制到用户文章流。";
-$a->strings["Block multiple registrations"] = "拦一人多注册";
-$a->strings["Disallow users to register additional accounts for use as pages."] = "不允许用户注册别的账户为当页。";
-$a->strings["OpenID support"] = "OpenID支持";
-$a->strings["OpenID support for registration and logins."] = "OpenID支持注册和登录。";
-$a->strings["Fullname check"] = "全名核实";
-$a->strings["Force users to register with a space between firstname and lastname in Full name, as an antispam measure"] = "让用户注册的时候放空格姓名中间,省得垃圾注册。";
-$a->strings["UTF-8 Regular expressions"] = "UTF-8正则表达式";
-$a->strings["Use PHP UTF8 regular expressions"] = "用PHP UTF8正则表达式";
-$a->strings["Community Page Style"] = "社会页款式";
-$a->strings["Type of community page to show. 'Global community' shows every public posting from an open distributed network that arrived on this server."] = "社会页种类将显示。“全球社会”显示所有公开的文章从某网络到达本服务器。";
-$a->strings["Posts per user on community page"] = "个用户文章数量在社会页";
-$a->strings["The maximum number of posts per user on the community page. (Not valid for 'Global Community')"] = "一个用户最多文章在社会页。(无效在“全球社会”)";
-$a->strings["Enable OStatus support"] = "使OStatus支持可用";
-$a->strings["Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All communications in OStatus are public, so privacy warnings will be occasionally displayed."] = "提供OStatus(StatusNet,GNU Social,等)兼容性。所有OStatus的交通是公开的,所以私事警告偶尔来表示。";
-$a->strings["OStatus conversation completion interval"] = "OStatus对话完成间隔";
-$a->strings["How often shall the poller check for new entries in OStatus conversations? This can be a very ressource task."] = "喂器要多久查一次新文章在OStatus交流?这会花许多系统资源。";
-$a->strings["Enable Diaspora support"] = "使Diaspora支持能够";
-$a->strings["Provide built-in Diaspora network compatibility."] = "提供内装Diaspora网络兼容。";
-$a->strings["Only allow Friendica contacts"] = "只许Friendica熟人";
-$a->strings["All contacts must use Friendica protocols. All other built-in communication protocols disabled."] = "所有的熟人要用Friendica协议 。别的内装的沟通协议都已停用。";
-$a->strings["Verify SSL"] = "证实";
-$a->strings["If you wish, you can turn on strict certificate checking. This will mean you cannot connect (at all) to self-signed SSL sites."] = "你想的话,您会使严格证书核实可用。意思是您不能根自签的SSL网站交流。";
-$a->strings["Proxy user"] = "代理用户";
-$a->strings["Proxy URL"] = "代理URL";
-$a->strings["Network timeout"] = "网络超时";
-$a->strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = "输入秒数。输入零为无限(不推荐的)。";
-$a->strings["Delivery interval"] = "传送间隔";
-$a->strings["Delay background delivery processes by this many seconds to reduce system load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 for large dedicated servers."] = "把背景传送过程耽误这多秒为减少系统工作量。推荐:4-5在共用服务器,2-3在私人服务器。0-1在大专门服务器。";
-$a->strings["Poll interval"] = "检查时间";
-$a->strings["Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval."] = "把背景检查行程耽误这数秒为减少系统负荷。如果是0,用发布时间。";
-$a->strings["Maximum Load Average"] = "最大负荷平均";
-$a->strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "系统负荷平均以上转播和检查行程会被耽误-默认50。";
-$a->strings["Use MySQL full text engine"] = "用MySQL全正文机车";
-$a->strings["Activates the full text engine. Speeds up search - but can only search for four and more characters."] = "使全正文机车可用。把搜索催-可是只能搜索4字以上";
-$a->strings["Suppress Language"] = "封锁语言";
-$a->strings["Suppress language information in meta information about a posting."] = "遗漏语言消息从文章的描述";
-$a->strings["Suppress Tags"] = "压制标签";
-$a->strings["Suppress showing a list of hashtags at the end of the posting."] = "别显示主題標籤列表在文章后面。";
-$a->strings["Path to item cache"] = "路线到项目缓存";
-$a->strings["Cache duration in seconds"] = "缓存时间秒";
-$a->strings["How long should the cache files be hold? Default value is 86400 seconds (One day). To disable the item cache, set the value to -1."] = "高速缓存要存文件多久?默认是86400秒钟(一天)。停用高速缓存,输入-1。";
-$a->strings["Maximum numbers of comments per post"] = "文件最多评论";
-$a->strings["How much comments should be shown for each post? Default value is 100."] = "";
-$a->strings["Path for lock file"] = "路线到锁文件";
-$a->strings["Temp path"] = "临时文件路线";
-$a->strings["Base path to installation"] = "基础安装路线";
-$a->strings["Disable picture proxy"] = "停用图片代理";
-$a->strings["The picture proxy increases performance and privacy. It shouldn't be used on systems with very low bandwith."] = "";
-$a->strings["Enable old style pager"] = "";
-$a->strings["The old style pager has page numbers but slows down massively the page speed."] = "";
-$a->strings["Only search in tags"] = "";
-$a->strings["On large systems the text search can slow down the system extremely."] = "";
-$a->strings["New base url"] = "新基础URL";
-$a->strings["Update has been marked successful"] = "更新当成功标签了";
-$a->strings["Database structure update %s was successfully applied."] = "";
-$a->strings["Executing of database structure update %s failed with error: %s"] = "";
-$a->strings["Executing %s failed with error: %s"] = "";
-$a->strings["Update %s was successfully applied."] = "把%s更新成功地实行。";
-$a->strings["Update %s did not return a status. Unknown if it succeeded."] = "%s更新没回答现状。不知道是否成功。";
-$a->strings["There was no additional update function %s that needed to be called."] = "";
-$a->strings["No failed updates."] = "没有不通过地更新。";
-$a->strings["Check database structure"] = "";
-$a->strings["Failed Updates"] = "没通过的更新";
-$a->strings["This does not include updates prior to 1139, which did not return a status."] = "这个不包括1139号更新之前,它们没回答装线。";
-$a->strings["Mark success (if update was manually applied)"] = "标注成功(如果手动地把更新实行了)";
-$a->strings["Attempt to execute this update step automatically"] = "试图自动地把这步更新实行";
-$a->strings["\n\t\t\tDear %1\$s,\n\t\t\t\tthe administrator of %2\$s has set up an account for you."] = "";
-$a->strings["\n\t\t\tThe login details are as follows:\n\n\t\t\tSite Location:\t%1\$s\n\t\t\tLogin Name:\t\t%2\$s\n\t\t\tPassword:\t\t%3\$s\n\n\t\t\tYou may change your password from your account \"Settings\" page after logging\n\t\t\tin.\n\n\t\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\t\tYou may also wish to add some basic information to your default profile\n\t\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\t\tWe recommend setting your full name, adding a profile photo,\n\t\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\t\tperhaps what country you live in; if you do not wish to be more specific\n\t\t\tthan that.\n\n\t\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\t\tIf you are new and do not know anybody here, they may help\n\t\t\tyou to make some new and interesting friends.\n\n\t\t\tThank you and welcome to %4\$s."] = "";
-$a->strings["Registration details for %s"] = "注册信息为%s";
-$a->strings["%s user blocked/unblocked"] = array(
-       0 => "%s用户拦/不拦了",
-);
-$a->strings["%s user deleted"] = array(
-       0 => "%s用户删除了",
-);
-$a->strings["User '%s' deleted"] = "用户「%s」删除了";
-$a->strings["User '%s' unblocked"] = "用户「%s」无拦了";
-$a->strings["User '%s' blocked"] = "用户「%s」拦了";
-$a->strings["Add User"] = "添加用户";
-$a->strings["select all"] = "都选";
-$a->strings["User registrations waiting for confirm"] = "用户注册等待确认";
-$a->strings["User waiting for permanent deletion"] = "用户等待长久删除";
-$a->strings["Request date"] = "要求日期";
-$a->strings["Email"] = "电子邮件";
-$a->strings["No registrations."] = "没有注册。";
-$a->strings["Deny"] = "否定";
-$a->strings["Site admin"] = "网站管理员";
-$a->strings["Account expired"] = "帐户过期了";
-$a->strings["New User"] = "新用户";
-$a->strings["Register date"] = "注册日期";
-$a->strings["Last login"] = "上次登录";
-$a->strings["Last item"] = "上项目";
-$a->strings["Deleted since"] = "删除从";
-$a->strings["Account"] = "帐户";
-$a->strings["Selected users will be deleted!\\n\\nEverything these users had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "特定的用户被删除!\\n\\n什么这些用户放在这个网站被永远删除!\\n\\n您肯定吗?";
-$a->strings["The user {0} will be deleted!\\n\\nEverything this user has posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "用户{0}将被删除!\\n\\n什么这个用户放在这个网站被永远删除!\\n\\n您肯定吗?";
-$a->strings["Name of the new user."] = "新用户的名";
-$a->strings["Nickname"] = "昵称";
-$a->strings["Nickname of the new user."] = "新用户的昵称";
-$a->strings["Email address of the new user."] = "新用户的邮件地址";
-$a->strings["Plugin %s disabled."] = "使插件%s已停用。";
-$a->strings["Plugin %s enabled."] = "使插件%s能用。";
-$a->strings["Disable"] = "停用";
-$a->strings["Enable"] = "使能用";
-$a->strings["Toggle"] = "肘节";
-$a->strings["Author: "] = "作家:";
-$a->strings["Maintainer: "] = "保持员:";
-$a->strings["No themes found."] = "找不到主题。";
-$a->strings["Screenshot"] = "截图";
-$a->strings["[Experimental]"] = "[试验]";
-$a->strings["[Unsupported]"] = "[没支持]";
-$a->strings["Log settings updated."] = "日志设置更新了。";
-$a->strings["Clear"] = "清理出";
-$a->strings["Enable Debugging"] = "把调试使可用的";
-$a->strings["Log file"] = "记录文件";
-$a->strings["Must be writable by web server. Relative to your Friendica top-level directory."] = "必要被网页服务器可写的。相对Friendica主文件夹。";
-$a->strings["Log level"] = "记录水平";
-$a->strings["Close"] = "关闭";
-$a->strings["FTP Host"] = "FTP主机";
-$a->strings["FTP Path"] = "FTP目录";
-$a->strings["FTP User"] = "FTP用户";
-$a->strings["FTP Password"] = "FTP密码";
-$a->strings["Search Results For:"] = "搜索结果为:";
-$a->strings["Remove term"] = "删除关键字";
-$a->strings["Saved Searches"] = "保存的搜索";
-$a->strings["add"] = "添加";
-$a->strings["Commented Order"] = "评论时间顺序";
-$a->strings["Sort by Comment Date"] = "按评论日期顺序排列";
-$a->strings["Posted Order"] = "贴时间顺序";
-$a->strings["Sort by Post Date"] = "按发布日期顺序排列";
-$a->strings["Posts that mention or involve you"] = "提或关您的文章";
-$a->strings["New"] = "新";
-$a->strings["Activity Stream - by date"] = "活动河流-按日期";
-$a->strings["Shared Links"] = "共同环节";
-$a->strings["Interesting Links"] = "有意思的超链接";
-$a->strings["Starred"] = "被星";
-$a->strings["Favourite Posts"] = "最喜欢的文章";
-$a->strings["Warning: This group contains %s member from an insecure network."] = array(
-       0 => "警告:这个组bao han%s成员从不安全网络。",
-);
-$a->strings["Private messages to this group are at risk of public disclosure."] = "私人通信给这组回被公开。";
-$a->strings["No such group"] = "没有这个组";
-$a->strings["Group is empty"] = "组没有成员";
-$a->strings["Group: "] = "组:";
-$a->strings["Contact: "] = "熟人:";
-$a->strings["Private messages to this person are at risk of public disclosure."] = "私人通信给这个人回被公开。";
-$a->strings["Invalid contact."] = "无效熟人。";
-$a->strings["Friends of %s"] = "%s的朋友们";
-$a->strings["No friends to display."] = "没有朋友展示。";
-$a->strings["Event title and start time are required."] = "项目标题和开始时间是必须的。";
-$a->strings["l, F j"] = "l, F j";
-$a->strings["Edit event"] = "编项目";
-$a->strings["link to source"] = "链接到来源";
-$a->strings["Events"] = "事件";
-$a->strings["Create New Event"] = "造成新的项目";
-$a->strings["Previous"] = "上";
-$a->strings["Next"] = "下";
-$a->strings["hour:minute"] = "小时:分钟";
-$a->strings["Event details"] = "项目内容";
-$a->strings["Format is %s %s. Starting date and Title are required."] = "形式是%s%s。开始时间和标题是必须的。";
-$a->strings["Event Starts:"] = "事件开始:";
-$a->strings["Required"] = "必须的";
-$a->strings["Finish date/time is not known or not relevant"] = "结束日/时未知或无关";
-$a->strings["Event Finishes:"] = "事件结束:";
-$a->strings["Adjust for viewer timezone"] = "调为观众的时间";
-$a->strings["Description:"] = "描述:";
-$a->strings["Location:"] = "位置:";
-$a->strings["Title:"] = "标题:";
-$a->strings["Share this event"] = "分享这个项目";
+$a->strings["Not attending"] = "不在参加";
+$a->strings["Might attend"] = "可以参加";
 $a->strings["Select"] = "选择";
+$a->strings["Delete"] = "删除";
 $a->strings["View %s's profile @ %s"] = "看%s的简介@ %s";
+$a->strings["Categories:"] = "种类:";
+$a->strings["Filed under:"] = "归档在:";
 $a->strings["%s from %s"] = "%s从%s";
 $a->strings["View in context"] = "看在上下文";
-$a->strings["%d comment"] = array(
-       0 => "%d评论",
-);
-$a->strings["comment"] = array(
-       0 => "评论",
-);
-$a->strings["show more"] = "看多";
-$a->strings["Private Message"] = "私人的新闻";
-$a->strings["I like this (toggle)"] = "我喜欢这(交替)";
-$a->strings["like"] = "喜欢";
-$a->strings["I don't like this (toggle)"] = "我不喜欢这(交替)";
-$a->strings["dislike"] = "讨厌";
-$a->strings["Share this"] = "分享这个";
-$a->strings["share"] = "分享";
-$a->strings["This is you"] = "这是你";
-$a->strings["Comment"] = "评论";
-$a->strings["Bold"] = "粗体字 ";
-$a->strings["Italic"] = "斜体 ";
-$a->strings["Underline"] = "下划线";
-$a->strings["Quote"] = "引语";
-$a->strings["Code"] = "源代码";
-$a->strings["Image"] = "图片";
-$a->strings["Link"] = "环节";
-$a->strings["Video"] = "录像";
+$a->strings["Please wait"] = "请等一下";
+$a->strings["remove"] = "删除";
+$a->strings["Delete Selected Items"] = "删除选的项目";
+$a->strings["Follow Thread"] = "关注线绳";
+$a->strings["View Status"] = "看现状";
+$a->strings["View Profile"] = "看简介";
+$a->strings["View Photos"] = "看照片";
+$a->strings["Network Posts"] = "网络文章";
+$a->strings["View Contact"] = "查看联系人";
+$a->strings["Send PM"] = "发送私信";
+$a->strings["Poke"] = "戳";
+$a->strings["%s likes this."] = "%s喜欢这个.";
+$a->strings["%s doesn't like this."] = "%s没有喜欢这个.";
+$a->strings["%s attends."] = "";
+$a->strings["%s doesn't attend."] = "";
+$a->strings["%s attends maybe."] = "";
+$a->strings["and"] = "和";
+$a->strings[", and %d other people"] = ",和%d别人";
+$a->strings["<span  %1\$s>%2\$d people</span> like this"] = "<span  %1\$s>%2\$d人们</span>喜欢这个";
+$a->strings["%s like this."] = "%s 赞了这个。";
+$a->strings["<span  %1\$s>%2\$d people</span> don't like this"] = "<span  %1\$s>%2\$d人们</span>不喜欢这个";
+$a->strings["%s don't like this."] = "%s 踩了这个。";
+$a->strings["<span  %1\$s>%2\$d people</span> attend"] = "";
+$a->strings["%s attend."] = "";
+$a->strings["<span  %1\$s>%2\$d people</span> don't attend"] = "";
+$a->strings["%s don't attend."] = "";
+$a->strings["<span  %1\$s>%2\$d people</span> attend maybe"] = "";
+$a->strings["%s anttend maybe."] = "";
+$a->strings["Visible to <strong>everybody</strong>"] = "<strong>大家</strong>可见的";
+$a->strings["Please enter a link URL:"] = "请输入一个链接 URL:";
+$a->strings["Please enter a video link/URL:"] = "请输入视频连接/URL:";
+$a->strings["Please enter an audio link/URL:"] = "请输入音响连接/URL:";
+$a->strings["Tag term:"] = "标签:";
+$a->strings["Save to Folder:"] = "保存再文件夹:";
+$a->strings["Where are you right now?"] = "你在哪里?";
+$a->strings["Delete item(s)?"] = "把项目删除吗?";
+$a->strings["Share"] = "分享";
+$a->strings["Upload photo"] = "上传照片";
+$a->strings["upload photo"] = "上传照片";
+$a->strings["Attach file"] = "附上文件";
+$a->strings["attach file"] = "附上文件";
+$a->strings["Insert web link"] = "插入网页链接";
+$a->strings["web link"] = "网页链接";
+$a->strings["Insert video link"] = "插入视频链接";
+$a->strings["video link"] = "视频链接";
+$a->strings["Insert audio link"] = "插入音频链接";
+$a->strings["audio link"] = "音频链接";
+$a->strings["Set your location"] = "设定您的位置";
+$a->strings["set location"] = "指定位置";
+$a->strings["Clear browser location"] = "清空浏览器位置";
+$a->strings["clear location"] = "清除位置";
+$a->strings["Set title"] = "指定标题";
+$a->strings["Categories (comma-separated list)"] = "种类(逗号分隔单)";
+$a->strings["Permission settings"] = "权设置";
+$a->strings["permissions"] = "权利";
+$a->strings["Public post"] = "公开的消息";
 $a->strings["Preview"] = "预演";
-$a->strings["Edit"] = "编辑";
-$a->strings["add star"] = "加星";
-$a->strings["remove star"] = "消星";
-$a->strings["toggle star status"] = "转变星现状";
-$a->strings["starred"] = "被贴星";
-$a->strings["add tag"] = "加标签";
-$a->strings["save to folder"] = "保存在文件夹";
-$a->strings["to"] = "至";
-$a->strings["Wall-to-Wall"] = "从墙到墙";
-$a->strings["via Wall-To-Wall:"] = "通过从墙到墙";
-$a->strings["Remove My Account"] = "删除我的账户";
-$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "这要完全删除您的账户。这一做过,就不能恢复。";
-$a->strings["Please enter your password for verification:"] = "请输入密码为确认:";
-$a->strings["Friendica Communications Server - Setup"] = "Friendica沟通服务器-安装";
-$a->strings["Could not connect to database."] = "解不了数据库。";
-$a->strings["Could not create table."] = "造成不了表格。";
-$a->strings["Your Friendica site database has been installed."] = "您Friendica网站数据库被安装了。";
-$a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = "您可能要手工地进口文件「database.sql」用phpmyadmin或mysql。";
-$a->strings["Please see the file \"INSTALL.txt\"."] = "请看文件「INSTALL.txt」";
-$a->strings["System check"] = "系统检测";
-$a->strings["Check again"] = "再检测";
-$a->strings["Database connection"] = "数据库接通";
-$a->strings["In order to install Friendica we need to know how to connect to your database."] = "为安装Friendica我们要知道怎么连接您的数据库。";
-$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "你有关于这些设置有问题的话,请给互联网托管服务或者网页管理联系。";
-$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "您下边指定的数据库应该已经存在。如果还没有,请继续前造成。";
-$a->strings["Database Server Name"] = "数据库服务器名";
-$a->strings["Database Login Name"] = "数据库登录名";
-$a->strings["Database Login Password"] = "数据库登录密码";
-$a->strings["Database Name"] = "数据库名字";
-$a->strings["Site administrator email address"] = "网站行政人员邮件地址";
-$a->strings["Your account email address must match this in order to use the web admin panel."] = "您账户邮件地址必要符合这个为用网站处理仪表板";
-$a->strings["Please select a default timezone for your website"] = "请选择您网站的默认时区";
-$a->strings["Site settings"] = "网站设置";
-$a->strings["Could not find a command line version of PHP in the web server PATH."] = "没找到命令行PHP在网服务器PATH。";
-$a->strings["If you don't have a command line version of PHP installed on server, you will not be able to run background polling via cron. See <a href='http://friendica.com/node/27'>'Activating scheduled tasks'</a>"] = "如果您没有命令行PHP在服务器,您实行不了用cron背景检查。看<a href='http://friendica.com/node/27'>「使安排做的任务可用」</a>";
-$a->strings["PHP executable path"] = "PHP可执行路径";
-$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "输入全路线到php执行程序。您会留空白为继续安装。";
-$a->strings["Command line PHP"] = "命令行PHP";
-$a->strings["PHP executable is not the php cli binary (could be cgi-fgci version)"] = "PHP执行程序不是命令行PHP執行檔(有可能是cgi-fgci版本)";
-$a->strings["Found PHP version: "] = "找到PHP版本号:";
-$a->strings["PHP cli binary"] = "命令行PHP執行檔";
-$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "您系统的命令行PHP没有能够「register_argc_argv」。";
-$a->strings["This is required for message delivery to work."] = "这必要为通信发布成功。";
-$a->strings["PHP register_argc_argv"] = "PHP register_argc_argv";
-$a->strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "错误:这系统的「register_argc_argv」子程序不能产生加密钥匙";
-$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "如果您用Windows,请看「http://www.php.net/manual/en/openssl.installation.php」。";
-$a->strings["Generate encryption keys"] = "产生加密钥匙";
-$a->strings["libCurl PHP module"] = "libCurl PHP模块";
-$a->strings["GD graphics PHP module"] = "GD显示PHP模块";
-$a->strings["OpenSSL PHP module"] = "OpenSSL PHP模块";
-$a->strings["mysqli PHP module"] = "mysqli PHP模块";
-$a->strings["mb_string PHP module"] = "mb_string PHP模块";
-$a->strings["Apache mod_rewrite module"] = "Apache mod_rewrite部件";
-$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "错误:Apache服务器的mod-rewrite模块是必要的可却不安装的。";
-$a->strings["Error: libCURL PHP module required but not installed."] = "错误:libCurl PHP模块是必要的可却不安装的。";
-$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "错误:GD显示PHP模块跟JPEG支持是必要的可却安装的。";
-$a->strings["Error: openssl PHP module required but not installed."] = "错误:openssl PHP模块是必要的可却不安装的。";
-$a->strings["Error: mysqli PHP module required but not installed."] = "错误:mysqli PHP模块是必要的可却不安装的。";
-$a->strings["Error: mb_string PHP module required but not installed."] = "错误:mbstring PHP模块必要可没安装的。";
-$a->strings["The web installer needs to be able to create a file called \".htconfig.php\" in the top folder of your web server and it is unable to do so."] = "网页安装者要能造成叫「.htconfig.php」在网服务器主文件夹可却不能。";
-$a->strings["This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can."] = "这常常是一个权设置,因为网服务器可能不会写文件在文件夹-即使您会。";
-$a->strings["At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Friendica top folder."] = "这个步骤头,我们给您正文要保存在叫.htconfig.php的文件在您Friendica主文件夹。";
-$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = "或者您会这个步骤不做还是实行手动的安装。请看INSTALL.txt文件为说明。";
-$a->strings[".htconfig.php is writable"] = ".htconfig.php是可写的";
-$a->strings["Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Friendica用Smarty3模板机车为建筑网页。Smarty3把模板编译成PHP为催建筑网页。";
-$a->strings["In order to store these compiled templates, the web server needs to have write access to the directory view/smarty3/ under the Friendica top level folder."] = "为了保存这些模板,网服务器要写权利于view/smarty3/目录在Friendica主目录下。";
-$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "请保险您网服务器用户(比如www-data)有这个目录的写权利。";
-$a->strings["Note: as a security measure, you should give the web server write access to view/smarty3/ only--not the template files (.tpl) that it contains."] = "注意:为了安全,您应该只给网服务器写权利于view/smarty3/-没有模板文件(.tpl)之下。";
-$a->strings["view/smarty3 is writable"] = "能写view/smarty3";
-$a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = " URL改写在.htaccess不行。检查您服务器设置。";
-$a->strings["Url rewrite is working"] = "URL改写发挥机能";
-$a->strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = "数据库设置文件「.htconfig.php」不能被写。请把包括的正文造成设置文件在网服务器子目录。";
-$a->strings["<h1>What next</h1>"] = "<h1>下步是什么</h1>";
-$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "重要:您要[手工地]准备安排的任务给喂器。";
-$a->strings["Number of daily wall messages for %s exceeded. Message failed."] = "一天最多墙通知给%s超过了。通知没有通过 。";
-$a->strings["Unable to check your home location."] = "核对不了您的主页。";
-$a->strings["No recipient."] = "没有接受者。";
-$a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = "如果您想%s回答,请核对您网站的隐私设置允许生发送人的私人邮件。";
-$a->strings["Help:"] = "帮助:";
-$a->strings["Help"] = "帮助";
-$a->strings["Not Found"] = "未发现";
-$a->strings["Page not found."] = "页发现。";
-$a->strings["%1\$s welcomes %2\$s"] = "%1\$s欢迎%2\$s";
-$a->strings["Welcome to %s"] = "%s欢迎你";
-$a->strings["Sorry, maybe your upload is bigger than the PHP configuration allows"] = "不好意思,可能你上传的是PHP设置允许的大";
-$a->strings["Or - did you try to upload an empty file?"] = "或者,你是不是上传空的文件?";
-$a->strings["File exceeds size limit of %d"] = "文件数目超过最多%d";
-$a->strings["File upload failed."] = "文件上传失败。";
-$a->strings["Profile Match"] = "简介符合";
-$a->strings["No keywords to match. Please add keywords to your default profile."] = "没有符合的关键字。请在您的默认简介加关键字。";
-$a->strings["is interested in:"] = "感兴趣对:";
-$a->strings["Connect"] = "连接";
-$a->strings["link"] = "链接";
-$a->strings["Not available."] = "不可用的";
-$a->strings["Community"] = "社会";
-$a->strings["No results."] = "没有结果";
-$a->strings["everybody"] = "每人";
-$a->strings["Additional features"] = "附加的特点";
-$a->strings["Display"] = "显示";
-$a->strings["Social Networks"] = "社会化网络";
-$a->strings["Delegations"] = "代表";
-$a->strings["Connected apps"] = "连接着应用";
-$a->strings["Export personal data"] = "出口私人信息";
-$a->strings["Remove account"] = "删除账户";
-$a->strings["Missing some important data!"] = "有的重要信息失踪的!";
-$a->strings["Failed to connect with email account using the settings provided."] = "不能连接电子邮件账户用输入的设置。";
-$a->strings["Email settings updated."] = "电子邮件设置更新了";
-$a->strings["Features updated"] = "特点更新了";
-$a->strings["Relocate message has been send to your contacts"] = "调动信息寄给您的熟人";
-$a->strings["Passwords do not match. Password unchanged."] = "密码们不相配。密码没未改变的。";
-$a->strings["Empty passwords are not allowed. Password unchanged."] = "空的密码禁止。密码没未改变的。";
-$a->strings["Wrong password."] = "密码不正确。";
-$a->strings["Password changed."] = "密码变化了。";
-$a->strings["Password update failed. Please try again."] = "密码更新失败了。请再试。";
-$a->strings[" Please use a shorter name."] = "请用短一点个名。";
-$a->strings[" Name too short."] = "名字太短。";
-$a->strings["Wrong Password"] = "密码不正确";
-$a->strings[" Not valid email."] = " 电子邮件地址无效.";
-$a->strings[" Cannot change to that email."] = "不能变化到这个邮件地址。";
-$a->strings["Private forum has no privacy permissions. Using default privacy group."] = "私人评坛没有隐私批准。默认隐私组用者。";
-$a->strings["Private forum has no privacy permissions and no default privacy group."] = "私人评坛没有隐私批准或默认隐私组。";
-$a->strings["Settings updated."] = "设置跟新了";
-$a->strings["Add application"] = "加入应用";
-$a->strings["Consumer Key"] = "钥匙(Consumer Key)";
-$a->strings["Consumer Secret"] = "密码(Consumer Secret)";
-$a->strings["Redirect"] = "重定向";
-$a->strings["Icon url"] = "图符URL";
-$a->strings["You can't edit this application."] = "您不能编辑这个应用。";
-$a->strings["Connected Apps"] = "连接着应用";
-$a->strings["Client key starts with"] = "客户钥匙头字是";
-$a->strings["No name"] = "无名";
-$a->strings["Remove authorization"] = "撤消权能";
-$a->strings["No Plugin settings configured"] = "没插件设置配置了";
-$a->strings["Plugin Settings"] = "插件设置";
-$a->strings["Off"] = "关";
-$a->strings["On"] = "开";
-$a->strings["Additional Features"] = "附加的特点";
-$a->strings["Built-in support for %s connectivity is %s"] = "包括的支持为%s连通性是%s";
-$a->strings["Diaspora"] = "Diaspora";
-$a->strings["enabled"] = "能够做的";
-$a->strings["disabled"] = "已停用";
-$a->strings["StatusNet"] = "StatusNet";
-$a->strings["Email access is disabled on this site."] = "这个网站没有邮件使用权";
-$a->strings["Email/Mailbox Setup"] = "邮件收件箱设置";
-$a->strings["If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox."] = "如果您想用这股服务(可选的)跟邮件熟人交流,请指定怎么连通您的收件箱。";
-$a->strings["Last successful email check:"] = "上个成功收件箱检查:";
-$a->strings["IMAP server name:"] = "IMAP服务器名字:";
-$a->strings["IMAP port:"] = "IMAP服务器端口:";
-$a->strings["Security:"] = "安全:";
-$a->strings["None"] = "没有";
-$a->strings["Email login name:"] = "邮件登记名:";
-$a->strings["Email password:"] = "邮件密码:";
-$a->strings["Reply-to address:"] = "回答地址:";
-$a->strings["Send public posts to all email contacts:"] = "发公开的文章给所有的邮件熟人:";
-$a->strings["Action after import:"] = "进口后行动:";
-$a->strings["Mark as seen"] = "标注看过";
-$a->strings["Move to folder"] = "搬到文件夹";
-$a->strings["Move to folder:"] = "搬到文件夹:";
-$a->strings["Display Settings"] = "表示设置";
-$a->strings["Display Theme:"] = "显示主题:";
-$a->strings["Mobile Theme:"] = "手机主题:";
-$a->strings["Update browser every xx seconds"] = "更新游览器每XX秒";
-$a->strings["Minimum of 10 seconds, no maximum"] = "最小10秒,没有上限";
-$a->strings["Number of items to display per page:"] = "每页表示多少项目:";
-$a->strings["Maximum of 100 items"] = "最多100项目";
-$a->strings["Number of items to display per page when viewed from mobile device:"] = "用手机看一页展示多少项目:";
-$a->strings["Don't show emoticons"] = "别表示请表符号";
-$a->strings["Don't show notices"] = "别表提示";
-$a->strings["Infinite scroll"] = "无限的滚动";
-$a->strings["Automatic updates only at the top of the network page"] = "";
-$a->strings["User Types"] = "";
-$a->strings["Community Types"] = "";
-$a->strings["Normal Account Page"] = "平常账户页";
-$a->strings["This account is a normal personal profile"] = "这个帐户是正常私人简介";
-$a->strings["Soapbox Page"] = "演讲台页";
-$a->strings["Automatically approve all connection/friend requests as read-only fans"] = "自动批准所有联络/友谊要求当只看的迷";
-$a->strings["Community Forum/Celebrity Account"] = "社会评坛/名人账户";
-$a->strings["Automatically approve all connection/friend requests as read-write fans"] = "自动批准所有联络/友谊要求当看写的迷";
-$a->strings["Automatic Friend Page"] = "自动朋友页";
-$a->strings["Automatically approve all connection/friend requests as friends"] = "自动批准所有联络/友谊要求当朋友";
-$a->strings["Private Forum [Experimental]"] = "隐私评坛[实验性的 ]";
-$a->strings["Private forum - approved members only"] = "隐私评坛-只批准的成员";
-$a->strings["OpenID:"] = "OpenID:";
-$a->strings["(Optional) Allow this OpenID to login to this account."] = "(可选的)许这个OpenID这个账户登记。";
-$a->strings["Publish your default profile in your local site directory?"] = "出版您默认简介在您当地的网站目录?";
-$a->strings["No"] = "否";
-$a->strings["Publish your default profile in the global social directory?"] = "出版您默认简介在综合社会目录?";
-$a->strings["Hide your contact/friend list from viewers of your default profile?"] = "藏起来  发现您的熟人/朋友单不让这个简介看着看?\n ";
-$a->strings["Hide your profile details from unknown viewers?"] = "使简介信息给陌生的看着看不了?";
-$a->strings["If enabled, posting public messages to Diaspora and other networks isn't possible."] = "";
-$a->strings["Allow friends to post to your profile page?"] = "允许朋友们贴文章在您的简介页?";
-$a->strings["Allow friends to tag your posts?"] = "允许朋友们标签您的文章?";
-$a->strings["Allow us to suggest you as a potential friend to new members?"] = "允许我们建议您潜力朋友给新成员?";
-$a->strings["Permit unknown people to send you private mail?"] = "允许生人寄给您私人邮件?";
-$a->strings["Profile is <strong>not published</strong>."] = "简介是<strong>没出版</strong>";
-$a->strings["Your Identity Address is"] = "您的同一个人地址是";
-$a->strings["Automatically expire posts after this many days:"] = "自动地过期文章这数天:";
-$a->strings["If empty, posts will not expire. Expired posts will be deleted"] = "如果空的,文章不会过期。过期的文章被删除";
-$a->strings["Advanced expiration settings"] = "先进的过期设置";
-$a->strings["Advanced Expiration"] = "先进的过期";
-$a->strings["Expire posts:"] = "把文章过期:";
-$a->strings["Expire personal notes:"] = "把私人便条过期:";
-$a->strings["Expire starred posts:"] = "把星的文章过期:";
-$a->strings["Expire photos:"] = "把照片过期:";
-$a->strings["Only expire posts by others:"] = "只别人的文章过期:";
-$a->strings["Account Settings"] = "帐户设置";
-$a->strings["Password Settings"] = "密码设置";
-$a->strings["New Password:"] = "新密码:";
-$a->strings["Confirm:"] = "确认:";
-$a->strings["Leave password fields blank unless changing"] = "非变化留空密码栏";
-$a->strings["Current Password:"] = "目前密码:";
-$a->strings["Your current password to confirm the changes"] = "您目前密码为确认变化";
-$a->strings["Password:"] = "密码:";
-$a->strings["Basic Settings"] = "基础设置";
-$a->strings["Full Name:"] = "全名:";
-$a->strings["Email Address:"] = "电子邮件地址:";
-$a->strings["Your Timezone:"] = "您的时区:";
-$a->strings["Default Post Location:"] = "默认文章位置:";
-$a->strings["Use Browser Location:"] = "用游览器位置:";
-$a->strings["Security and Privacy Settings"] = "安全和隐私设置";
-$a->strings["Maximum Friend Requests/Day:"] = "最多友谊要求个天:";
-$a->strings["(to prevent spam abuse)"] = "(为防止垃圾邮件滥用)";
-$a->strings["Default Post Permissions"] = "默认文章准许";
-$a->strings["(click to open/close)"] = "(点击为打开/关闭)";
-$a->strings["Show to Groups"] = "给组表示";
-$a->strings["Show to Contacts"] = "给熟人表示";
-$a->strings["Default Private Post"] = "默认私人文章";
-$a->strings["Default Public Post"] = "默认公开文章";
-$a->strings["Default Permissions for New Posts"] = "默认权利为新文章";
-$a->strings["Maximum private messages per day from unknown people:"] = "一天最多从生人私人邮件:";
-$a->strings["Notification Settings"] = "消息设置";
-$a->strings["By default post a status message when:"] = "默认地发现状通知如果:";
-$a->strings["accepting a friend request"] = "接受朋友邀请";
-$a->strings["joining a forum/community"] = "加入评坛/社会";
-$a->strings["making an <em>interesting</em> profile change"] = "把简介有意思地变修改";
-$a->strings["Send a notification email when:"] = "发一个消息要是:";
-$a->strings["You receive an introduction"] = "你受到一个介绍";
-$a->strings["Your introductions are confirmed"] = "你的介绍确认了";
-$a->strings["Someone writes on your profile wall"] = "某人写在你的简历墙";
-$a->strings["Someone writes a followup comment"] = "某人写一个后续的评论";
-$a->strings["You receive a private message"] = "你受到一个私消息";
-$a->strings["You receive a friend suggestion"] = "你受到一个朋友建议";
-$a->strings["You are tagged in a post"] = "你被在新闻标签";
-$a->strings["You are poked/prodded/etc. in a post"] = "您在文章被戳";
-$a->strings["Text-only notification emails"] = "";
-$a->strings["Send text only notification emails, without the html part"] = "";
-$a->strings["Advanced Account/Page Type Settings"] = "专家账户/页种设置";
-$a->strings["Change the behaviour of this account for special situations"] = "把这个账户特别情况的时候行动变化";
-$a->strings["Relocate"] = "调动";
-$a->strings["If you have moved this profile from another server, and some of your contacts don't receive your updates, try pushing this button."] = "如果您调动这个简介从别的服务器但有的熟人没收到您的更新,尝试按这个钮。";
-$a->strings["Resend relocate message to contacts"] = "把调动信息寄给熟人";
-$a->strings["This introduction has already been accepted."] = "这个介绍已经接受了。";
-$a->strings["Profile location is not valid or does not contain profile information."] = "简介位置失效或不包含简介信息。";
-$a->strings["Warning: profile location has no identifiable owner name."] = "警告:简介位置没有可设别的主名。";
-$a->strings["Warning: profile location has no profile photo."] = "警告:简介位置没有简介图。";
-$a->strings["%d required parameter was not found at the given location"] = array(
-       0 => "%d需要的参数没找到在输入的位置。",
+$a->strings["Cancel"] = "退消";
+$a->strings["Post to Groups"] = "发到组";
+$a->strings["Post to Contacts"] = "发到熟人";
+$a->strings["Private post"] = "私人文章";
+$a->strings["Message"] = "通知";
+$a->strings["Browser"] = "浏览器";
+$a->strings["View all"] = "查看全部";
+$a->strings["Like"] = array(
+       0 => "喜欢",
 );
-$a->strings["Introduction complete."] = "介绍完成的。";
-$a->strings["Unrecoverable protocol error."] = "不能恢复的协议错误";
-$a->strings["Profile unavailable."] = "简介无效";
-$a->strings["%s has received too many connection requests today."] = "%s今天已经受到了太多联络要求";
-$a->strings["Spam protection measures have been invoked."] = "垃圾保护措施被用了。";
-$a->strings["Friends are advised to please try again in 24 hours."] = "朋友们被建议请24小时后再试。";
-$a->strings["Invalid locator"] = "无效找到物";
-$a->strings["Invalid email address."] = "无效的邮件地址。";
-$a->strings["This account has not been configured for email. Request failed."] = "这个账户没有设置用电子邮件。要求没通过。";
-$a->strings["Unable to resolve your name at the provided location."] = "不可疏解您的名字再输入的位置。";
-$a->strings["You have already introduced yourself here."] = "您已经自我介绍这儿。";
-$a->strings["Apparently you are already friends with %s."] = "看上去您已经是%s的朋友。";
-$a->strings["Invalid profile URL."] = "无效的简介URL。";
-$a->strings["Disallowed profile URL."] = "不允许的简介地址.";
-$a->strings["Your introduction has been sent."] = "您的介绍发布了。";
-$a->strings["Please login to confirm introduction."] = "请登记为确认介绍。";
-$a->strings["Incorrect identity currently logged in. Please login to <strong>this</strong> profile."] = "错误的用户登记者。请用<strong>这个</strong>用户。";
-$a->strings["Hide this contact"] = "隐藏这个熟人";
-$a->strings["Welcome home %s."] = "欢迎%s。";
-$a->strings["Please confirm your introduction/connection request to %s."] = "请确认您的介绍/联络要求给%s。";
-$a->strings["Confirm"] = "确认";
-$a->strings["Please enter your 'Identity Address' from one of the following supported communications networks:"] = "请输入您的「同一人地址」这些支持的交通网络中:";
-$a->strings["If you are not yet a member of the free social web, <a href=\"http://dir.friendica.com/siteinfo\">follow this link to find a public Friendica site and join us today</a>."] = "如果您还没有自由社会网络成员之一,<a href=\"http://dir.friendica.com/siteinfo\">点击这个环节找公开Friendica网站今天加入</a>.";
-$a->strings["Friend/Connection Request"] = "朋友/联络要求。";
-$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"] = "比如:jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca";
-$a->strings["Please answer the following:"] = "请回答下述的:";
-$a->strings["Does %s know you?"] = "%s是否认识你?";
-$a->strings["Add a personal note:"] = "添加个人的便条";
-$a->strings["Friendica"] = "Friendica";
-$a->strings["StatusNet/Federated Social Web"] = "StatusNet/联合社会化网";
-$a->strings[" - please do not use this form.  Instead, enter %s into your Diaspora search bar."] = " - 请别用这个表格。反而输入%s在您的Diaspora搜索功能。";
-$a->strings["Your Identity Address:"] = "您的同一个人地址:";
-$a->strings["Submit Request"] = "提交要求";
-$a->strings["Registration successful. Please check your email for further instructions."] = "注册成功了。请咨询说明再您的收件箱。";
-$a->strings["Failed to send email message. Here your accout details:<br> login: %s<br> password: %s<br><br>You can change your password after login."] = "发送邮件失败。你的账户消息是:<br>用户名:%s<br> 密码: %s<br><br>。登录后能改密码。";
-$a->strings["Your registration can not be processed."] = "处理不了您的注册。";
-$a->strings["Your registration is pending approval by the site owner."] = "您的注册等网页主的批准。";
-$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "这个网站超过一天最多账户注册。请明天再试。";
-$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "您会(可选的)用OpenID填这个表格通过提供您的OpenID和点击「注册」。";
-$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "如果您没熟悉OpenID,请留空这个栏和填另些栏。";
-$a->strings["Your OpenID (optional): "] = "您的OpenID(可选的):";
-$a->strings["Include your profile in member directory?"] = "放您的简介再员目录?";
-$a->strings["Membership on this site is by invitation only."] = "会员身份在这个网站是光通过邀请。";
-$a->strings["Your invitation ID: "] = "您邀请ID:";
-$a->strings["Your Full Name (e.g. Joe Smith): "] = "您姓名(例如「张三」):";
-$a->strings["Your Email Address: "] = "你的电子邮件地址:";
-$a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be '<strong>nickname@\$sitename</strong>'."] = "选择简介昵称。昵称头一字必须拉丁字。您再这个网站的简介地址将「<strong>example@\$sitename</strong>」.";
-$a->strings["Choose a nickname: "] = "选择昵称:";
-$a->strings["Register"] = "注册";
-$a->strings["Import"] = "进口";
-$a->strings["Import your profile to this friendica instance"] = "进口您的简介到这个friendica服务器";
-$a->strings["System down for maintenance"] = "系统关闭为了维持";
-$a->strings["Search"] = "搜索";
-$a->strings["Global Directory"] = "综合目录";
-$a->strings["Find on this site"] = "找在这网站";
-$a->strings["Site Directory"] = "网站目录";
-$a->strings["Age: "] = "年纪:";
-$a->strings["Gender: "] = "性别:";
+$a->strings["Dislike"] = array(
+       0 => "不喜欢",
+);
+$a->strings["Not Attending"] = array(
+       0 => "不在参加",
+);
+$a->strings["There are no tables on MyISAM."] = "";
+$a->strings["\n\t\t\tThe friendica developers released update %s recently,\n\t\t\tbut when I tried to install it, something went terribly wrong.\n\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n\t\t\tfriendica developer if you can not help me on your own. My database might be invalid."] = "";
+$a->strings["The error message is\n[pre]%s[/pre]"] = "";
+$a->strings["\nError %d occurred during database update:\n%s\n"] = "";
+$a->strings["Errors encountered performing database changes: "] = "操作数据库更改的时候遇到了错误:";
+$a->strings[": Database update"] = ": 数据库升级";
+$a->strings["%s: updating %s table."] = "%s: 正在更新 %s 表。";
+$a->strings["(no subject)"] = "(无主题)";
+$a->strings["noreply"] = "noreply";
+$a->strings["Friendica Notification"] = "Friendica 通知";
+$a->strings["Thank You,"] = "谢谢,";
+$a->strings["%s Administrator"] = "%s管理员";
+$a->strings["%1\$s, %2\$s Administrator"] = "%1\$s, %2\$s 的管理员";
+$a->strings["%s <!item_type!>"] = "%s <!item_type!>";
+$a->strings["[Friendica:Notify] New mail received at %s"] = "[Friendica:Notify]收到新邮件在%s";
+$a->strings["%1\$s sent you a new private message at %2\$s."] = "%1\$s发给您新私人通知在%2\$s.";
+$a->strings["%1\$s sent you %2\$s."] = "%1\$s发给您%2\$s.";
+$a->strings["a private message"] = "一条私人的消息";
+$a->strings["Please visit %s to view and/or reply to your private messages."] = "请访问 %s 来查看并且/或者回复你的私信。";
+$a->strings["%1\$s commented on [url=%2\$s]a %3\$s[/url]"] = "%1\$s于[url=%2\$s]a %3\$s[/url]评论了";
+$a->strings["%1\$s commented on [url=%2\$s]%3\$s's %4\$s[/url]"] = "%1\$s于[url=%2\$s]%3\$s的%4\$s[/url]评论了";
+$a->strings["%1\$s commented on [url=%2\$s]your %3\$s[/url]"] = "%1\$s于[url=%2\$s]您的%3\$s[/url]评论了";
+$a->strings["[Friendica:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Friendica:Notify]于交流#%1\$d由%2\$s评论";
+$a->strings["%s commented on an item/conversation you have been following."] = "%s对你有兴趣的项目/ 交谈发表意见";
+$a->strings["Please visit %s to view and/or reply to the conversation."] = "请访问%s来查看并且/或者回复这个对话。";
+$a->strings["[Friendica:Notify] %s posted to your profile wall"] = "[Friendica:Notify] %s贴在您的简介墙";
+$a->strings["%1\$s posted to your profile wall at %2\$s"] = "%1\$s放在您的简介墙在%2\$s";
+$a->strings["%1\$s posted to [url=%2\$s]your wall[/url]"] = "%1\$s放在[url=%2\$s]您的墙[/url]";
+$a->strings["[Friendica:Notify] %s tagged you"] = "[Friendica:Notify] %s标签您";
+$a->strings["%1\$s tagged you at %2\$s"] = "%1\$s把您在%2\$s标签";
+$a->strings["%1\$s [url=%2\$s]tagged you[/url]."] = "%1\$s[url=%2\$s]把您标签[/url].";
+$a->strings["[Friendica:Notify] %s shared a new post"] = "[Friendica:Notify] %s分享新的消息";
+$a->strings["%1\$s shared a new post at %2\$s"] = "%1\$s分享新的消息在%2\$s";
+$a->strings["%1\$s [url=%2\$s]shared a post[/url]."] = "%1\$s [url=%2\$s]分享一个消息[/url].";
+$a->strings["[Friendica:Notify] %1\$s poked you"] = "[Friendica:Notify]您被%1\$s戳";
+$a->strings["%1\$s poked you at %2\$s"] = "您被%1\$s戳在%2\$s";
+$a->strings["%1\$s [url=%2\$s]poked you[/url]."] = "%1\$s[url=%2\$s]把您戳[/url]。";
+$a->strings["[Friendica:Notify] %s tagged your post"] = "[Friendica:Notify] %s标前您的文章";
+$a->strings["%1\$s tagged your post at %2\$s"] = "%1\$s把您的文章在%2\$s标签";
+$a->strings["%1\$s tagged [url=%2\$s]your post[/url]"] = "%1\$s把[url=%2\$s]您的文章[/url]标签";
+$a->strings["[Friendica:Notify] Introduction received"] = "[Friendica:Notify] 收到介绍";
+$a->strings["You've received an introduction from '%1\$s' at %2\$s"] = "您从「%1\$s」受到一个介绍在%2\$s";
+$a->strings["You've received [url=%1\$s]an introduction[/url] from %2\$s."] = "您从%2\$s收到[url=%1\$s]一个介绍[/url]。";
+$a->strings["You may visit their profile at %s"] = "你能看他的简介在%s";
+$a->strings["Please visit %s to approve or reject the introduction."] = "请批准或拒绝介绍在%s";
+$a->strings["[Friendica:Notify] A new person is sharing with you"] = "[Friendica:Notify] 一个新的人正在和你分享";
+$a->strings["%1\$s is sharing with you at %2\$s"] = "";
+$a->strings["[Friendica:Notify] You have a new follower"] = "[Friendica:Notify] 你有一个新的粉丝";
+$a->strings["You have a new follower at %2\$s : %1\$s"] = "你在 %2\$s 有一个新的关注者: %1\$s";
+$a->strings["[Friendica:Notify] Friend suggestion received"] = "[Friendica:Notify] 收到朋友建议";
+$a->strings["You've received a friend suggestion from '%1\$s' at %2\$s"] = "您从「%2\$s」收到[url=%1\$s]一个朋友建议[/url]。";
+$a->strings["You've received [url=%1\$s]a friend suggestion[/url] for %2\$s from %3\$s."] = "您从%3\$s收到[url=%1\$s]一个朋友建议[/url]为%2\$s。";
+$a->strings["Name:"] = "名字:";
+$a->strings["Photo:"] = "照片:";
+$a->strings["Please visit %s to approve or reject the suggestion."] = "请访问%s来批准或拒绝这个建议。";
+$a->strings["[Friendica:Notify] Connection accepted"] = "[Friendica:Notify] 连接被接受";
+$a->strings["'%1\$s' has accepted your connection request at %2\$s"] = "";
+$a->strings["%2\$s has accepted your [url=%1\$s]connection request[/url]."] = "";
+$a->strings["You are now mutual friends and may exchange status updates, photos, and email without restriction."] = "你们现在已经互为朋友了,可以不受限制地交换状态更新、照片和邮件。";
+$a->strings["Please visit %s if you wish to make any changes to this relationship."] = "请访问%s如果你希望对这个关系做任何改变。";
+$a->strings["'%1\$s' has chosen to accept you a \"fan\", which restricts some forms of communication - such as private messaging and some profile interactions. If this is a celebrity or community page, these settings were applied automatically."] = "'%1\$s'选择欢迎你为\"迷\",限制有的沟通方式,比如死人交流和有的简介互动。如果这是名人或社会页,此设置是自动地施用。";
+$a->strings["'%1\$s' may choose to extend this into a two-way or more permissive relationship in the future."] = "";
+$a->strings["Please visit %s  if you wish to make any changes to this relationship."] = "请访问 %s  如果你希望对修改这个关系。";
+$a->strings["[Friendica System:Notify] registration request"] = "";
+$a->strings["You've received a registration request from '%1\$s' at %2\$s"] = "";
+$a->strings["You've received a [url=%1\$s]registration request[/url] from %2\$s."] = "";
+$a->strings["Full Name:\t%1\$s\\nSite Location:\t%2\$s\\nLogin Name:\t%3\$s (%4\$s)"] = "";
+$a->strings["Please visit %s to approve or reject the request."] = "请访问%s来批准或拒绝这个请求。";
+$a->strings["all-day"] = "全天";
+$a->strings["Sun"] = "星期日";
+$a->strings["Mon"] = "星期一";
+$a->strings["Tue"] = "星期二";
+$a->strings["Wed"] = "星期三";
+$a->strings["Thu"] = "星期四";
+$a->strings["Fri"] = "星期五";
+$a->strings["Sat"] = "星期六";
+$a->strings["Sunday"] = "星期天";
+$a->strings["Monday"] = "星期一";
+$a->strings["Tuesday"] = "星期二";
+$a->strings["Wednesday"] = "星期三";
+$a->strings["Thursday"] = "星期四";
+$a->strings["Friday"] = "星期五";
+$a->strings["Saturday"] = "星期六";
+$a->strings["Jan"] = "一月";
+$a->strings["Feb"] = "二月";
+$a->strings["Mar"] = "三月";
+$a->strings["Apr"] = "四月";
+$a->strings["May"] = "五月";
+$a->strings["Jun"] = "六月";
+$a->strings["Jul"] = "七月";
+$a->strings["Aug"] = "八月";
+$a->strings["Sept"] = "九月";
+$a->strings["Oct"] = "十月";
+$a->strings["Nov"] = "十一月";
+$a->strings["Dec"] = "十二月";
+$a->strings["January"] = "一月";
+$a->strings["February"] = "二月";
+$a->strings["March"] = "三月";
+$a->strings["April"] = "四月";
+$a->strings["June"] = "六月";
+$a->strings["July"] = "七月";
+$a->strings["August"] = "八月";
+$a->strings["September"] = "九月";
+$a->strings["October"] = "十月";
+$a->strings["November"] = "十一月";
+$a->strings["December"] = "十二月";
+$a->strings["today"] = "今天";
+$a->strings["No events to display"] = "没有可显示的事件";
+$a->strings["l, F j"] = "l, F j";
+$a->strings["Edit event"] = "编项目";
+$a->strings["Delete event"] = "删除事件";
+$a->strings["link to source"] = "链接到来源";
+$a->strings["Export"] = "导出";
+$a->strings["Export calendar as ical"] = "导出日历为 ical";
+$a->strings["Export calendar as csv"] = "导出日历为 csv";
+$a->strings["Requested account is not available."] = "要求的账户不可用。";
+$a->strings["Requested profile is not available."] = "要求的简介联系不上的。";
+$a->strings["Edit profile"] = "修改简介";
+$a->strings["Atom feed"] = "";
+$a->strings["Profiles"] = "简介";
+$a->strings["Manage/edit profiles"] = "管理/修改简介";
+$a->strings["Change profile photo"] = "换简介照片";
+$a->strings["Create New Profile"] = "创造新的简介";
+$a->strings["Profile Image"] = "简介图像";
+$a->strings["visible to everybody"] = "给打假可见的";
+$a->strings["Edit visibility"] = "修改能见度";
 $a->strings["Gender:"] = "性别:";
 $a->strings["Status:"] = "现状:";
 $a->strings["Homepage:"] = "主页:";
 $a->strings["About:"] = "关于:";
-$a->strings["No entries (some entries may be hidden)."] = "没有文章(有的文章会被隐藏)。";
-$a->strings["No potential page delegates located."] = "找不到可能代表页人。";
-$a->strings["Delegate Page Management"] = "页代表管理";
-$a->strings["Delegates are able to manage all aspects of this account/page except for basic account settings. Please do not delegate your personal account to anybody that you do not trust completely."] = "代表会管理所有的方面这个账户/页除了基础账户配置以外。请别代表您私人账户给您没完全信的人。";
-$a->strings["Existing Page Managers"] = "目前页管理员";
-$a->strings["Existing Page Delegates"] = "目前页代表";
-$a->strings["Potential Delegates"] = "潜力的代表";
-$a->strings["Add"] = "加";
-$a->strings["No entries."] = "没有项目。";
-$a->strings["Common Friends"] = "普通朋友们";
-$a->strings["No contacts in common."] = "没有共同熟人。";
-$a->strings["Export account"] = "出口账户";
-$a->strings["Export your account info and contacts. Use this to make a backup of your account and/or to move it to another server."] = "出口您的商户信息和熟人。这利于备份您的账户活着搬到别的服务器。";
-$a->strings["Export all"] = "出口一切";
-$a->strings["Export your accout info, contacts and all your items as json. Could be a very big file, and could take a lot of time. Use this to make a full backup of your account (photos are not exported)"] = "出口您账户信息,熟人和别的项目成json。可能是很大文件,花很多时间。用这个为创造全备份您的账户(照片没被出口)";
-$a->strings["%1\$s is currently %2\$s"] = "%1\$s现在是%2\$s";
-$a->strings["Mood"] = "心情";
-$a->strings["Set your current mood and tell your friends"] = "选择现在的心情而告诉朋友们";
-$a->strings["Do you really want to delete this suggestion?"] = "您真的想删除这个建议吗?";
-$a->strings["Friend Suggestions"] = "友谊建议";
-$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "没有建议。如果这是新网站,请24小时后再试。";
-$a->strings["Ignore/Hide"] = "不理/隐藏";
-$a->strings["Profile deleted."] = "简介删除了。";
-$a->strings["Profile-"] = "简介-";
-$a->strings["New profile created."] = "创造新的简介";
-$a->strings["Profile unavailable to clone."] = "简介不可用为复制。";
-$a->strings["Profile Name is required."] = "必要简介名";
-$a->strings["Marital Status"] = "婚姻状况 ";
-$a->strings["Romantic Partner"] = "情人";
-$a->strings["Likes"] = "喜欢";
-$a->strings["Dislikes"] = "不喜欢";
-$a->strings["Work/Employment"] = "工作";
-$a->strings["Religion"] = "宗教";
-$a->strings["Political Views"] = "政治观念";
-$a->strings["Gender"] = "性别";
-$a->strings["Sexual Preference"] = "性取向";
-$a->strings["Homepage"] = "主页";
-$a->strings["Interests"] = "兴趣";
-$a->strings["Address"] = "地址";
-$a->strings["Location"] = "位置";
-$a->strings["Profile updated."] = "简介更新了。";
-$a->strings[" and "] = "和";
-$a->strings["public profile"] = "公开简介";
-$a->strings["%1\$s changed %2\$s to &ldquo;%3\$s&rdquo;"] = "%1\$s把%2\$s变化成&ldquo;%3\$s&rdquo;";
-$a->strings[" - Visit %1\$s's %2\$s"] = " - 看 %1\$s的%2\$s";
-$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s有更新的%2\$s,修改%3\$s.";
-$a->strings["Hide contacts and friends:"] = "";
-$a->strings["Hide your contact/friend list from viewers of this profile?"] = "藏起来发现您的熟人/朋友单不让这个简介看着看?";
-$a->strings["Edit Profile Details"] = "剪辑简介消息";
-$a->strings["Change Profile Photo"] = "改变简介照片";
-$a->strings["View this profile"] = "看这个简介";
-$a->strings["Create a new profile using these settings"] = "造成新的简介用这些设置";
-$a->strings["Clone this profile"] = "复制这个简介";
-$a->strings["Delete this profile"] = "删除这个简介";
-$a->strings["Basic information"] = "";
-$a->strings["Profile picture"] = "";
-$a->strings["Preferences"] = "";
-$a->strings["Status information"] = "";
-$a->strings["Additional information"] = "";
-$a->strings["Profile Name:"] = "简介名:";
-$a->strings["Your Full Name:"] = "你的全名:";
-$a->strings["Title/Description:"] = "标题/描述:";
-$a->strings["Your Gender:"] = "你的性:";
-$a->strings["Birthday (%s):"] = "生日(%s):";
-$a->strings["Street Address:"] = "地址:";
-$a->strings["Locality/City:"] = "现场/城市:";
-$a->strings["Postal/Zip Code:"] = "邮政编码:";
-$a->strings["Country:"] = "国家:";
-$a->strings["Region/State:"] = "区域/省";
-$a->strings["<span class=\"heart\">&hearts;</span> Marital Status:"] = "<span class=\"heart\">&hearts;</span>婚姻状况:";
-$a->strings["Who: (if applicable)"] = "谁:(要是使用)";
-$a->strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "比如:limou,李某,limou@example。com";
-$a->strings["Since [date]:"] = "追溯[日期]:";
-$a->strings["Sexual Preference:"] = "性取向";
-$a->strings["Homepage URL:"] = "主页URL:";
+$a->strings["XMPP:"] = "";
+$a->strings["Network:"] = "网络";
+$a->strings["g A l F d"] = "g A l d F";
+$a->strings["F d"] = "F d";
+$a->strings["[today]"] = "[今天]";
+$a->strings["Birthday Reminders"] = "提醒生日";
+$a->strings["Birthdays this week:"] = "这周的生日:";
+$a->strings["[No description]"] = "[无描述]";
+$a->strings["Event Reminders"] = "事件提醒";
+$a->strings["Events this week:"] = "这周的事件:";
+$a->strings["Profile"] = "简介";
+$a->strings["Full Name:"] = "全名:";
+$a->strings["j F, Y"] = "j F, Y";
+$a->strings["j F"] = "j F";
+$a->strings["Age:"] = "年纪:";
+$a->strings["for %1\$d %2\$s"] = "为%1\$d %2\$s";
+$a->strings["Sexual Preference:"] = "性取向:";
 $a->strings["Hometown:"] = "故乡:";
+$a->strings["Tags:"] = "标签:";
 $a->strings["Political Views:"] = "政治观念:";
-$a->strings["Religious Views:"] = " 宗教信仰 :";
-$a->strings["Public Keywords:"] = "公开关键字 :";
-$a->strings["Private Keywords:"] = "私人关键字";
+$a->strings["Religion:"] = "宗教:";
+$a->strings["Hobbies/Interests:"] = "爱好/兴趣";
 $a->strings["Likes:"] = "喜欢:";
 $a->strings["Dislikes:"] = "不喜欢:";
-$a->strings["Example: fishing photography software"] = "例如:钓鱼 照片 软件";
-$a->strings["(Used for suggesting potential friends, can be seen by others)"] = "(用于建议可能的朋友们,会被别人看)";
-$a->strings["(Used for searching profiles, never shown to others)"] = "(用于搜索简介,没有给别人看)";
-$a->strings["Tell us about yourself..."] = "给我们自我介绍...";
-$a->strings["Hobbies/Interests"] = "爱好/兴趣";
-$a->strings["Contact information and Social Networks"] = "熟人信息和社会化网络";
-$a->strings["Musical interests"] = "音乐兴趣";
-$a->strings["Books, literature"] = "书,文学";
-$a->strings["Television"] = "电视";
-$a->strings["Film/dance/culture/entertainment"] = "电影/跳舞/文化/娱乐";
-$a->strings["Love/romance"] = "爱情/浪漫";
-$a->strings["Work/employment"] = "工作";
-$a->strings["School/education"] = "学院/教育";
-$a->strings["This is your <strong>public</strong> profile.<br />It <strong>may</strong> be visible to anybody using the internet."] = "这是你的<strong>公开的</strong>简介。<br />它<strong>可能</strong>被所有的因特网用的看到。";
-$a->strings["Edit/Manage Profiles"] = "编辑/管理简介";
-$a->strings["Change profile photo"] = "换简介照片";
-$a->strings["Create New Profile"] = "创造新的简介";
-$a->strings["Profile Image"] = "简介图像";
-$a->strings["visible to everybody"] = "给打假可见的";
-$a->strings["Edit visibility"] = "修改能见度";
-$a->strings["Item not found"] = "项目没找到";
-$a->strings["Edit post"] = "编辑文章";
-$a->strings["upload photo"] = "上传照片";
-$a->strings["Attach file"] = "附上文件";
-$a->strings["attach file"] = "附上文件";
-$a->strings["web link"] = "网页环节";
-$a->strings["Insert video link"] = "插入视频环节";
-$a->strings["video link"] = "视频环节";
-$a->strings["Insert audio link"] = "插入录音环节";
-$a->strings["audio link"] = "录音环节";
-$a->strings["Set your location"] = "设定您的位置";
-$a->strings["set location"] = "指定位置";
-$a->strings["Clear browser location"] = "清空浏览器位置";
-$a->strings["clear location"] = "清理出位置";
-$a->strings["Permission settings"] = "权设置";
-$a->strings["CC: email addresses"] = "抄送: 电子邮件地址";
-$a->strings["Public post"] = "公开的消息";
-$a->strings["Set title"] = "指定标题";
-$a->strings["Categories (comma-separated list)"] = "种类(逗号分隔单)";
-$a->strings["Example: bob@example.com, mary@example.com"] = "比如: li@example.com, wang@example.com";
-$a->strings["This is Friendica, version"] = "这是Friendica,版本";
-$a->strings["running at web location"] = "运作再网址";
-$a->strings["Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn more about the Friendica project."] = "请看<a href=\"http://friendica.com\">Friendica.com</a>发现多关于Friendica工程。";
-$a->strings["Bug reports and issues: please visit"] = "问题报案:请去";
-$a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"] = "建议,夸奖,捐赠,等-请发邮件到「 Info」在Friendica点com";
-$a->strings["Installed plugins/addons/apps:"] = "安装的插件/加件/应用:";
-$a->strings["No installed plugins/addons/apps"] = "没有安装的插件/应用";
-$a->strings["Authorize application connection"] = "授权应用连接";
-$a->strings["Return to your app and insert this Securty Code:"] = "回归您的应用和输入这个安全密码:";
-$a->strings["Please login to continue."] = "请登记为继续。";
-$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "您想不想使这个应用用权您的文章和熟人,和/或代您造成新文章";
-$a->strings["Remote privacy information not available."] = "摇隐私信息无效";
-$a->strings["Visible to:"] = "可见给:";
-$a->strings["Personal Notes"] = "私人便条";
-$a->strings["l F d, Y \\@ g:i A"] = "l F d, Y \\@ g:i A";
-$a->strings["Time Conversion"] = "时间装换";
-$a->strings["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = "Friendica提供这个服务目的是分享项目跟别的网络和朋友们在别的时区。";
-$a->strings["UTC time: %s"] = "UTC时间: %s";
-$a->strings["Current timezone: %s"] = "现在时区: %s";
-$a->strings["Converted localtime: %s"] = "装换的当地时间:%s";
-$a->strings["Please select your timezone:"] = "请选择你的时区:";
-$a->strings["Poke/Prod"] = "戳";
-$a->strings["poke, prod or do other things to somebody"] = "把人家戳或别的行动";
-$a->strings["Recipient"] = "接受者";
-$a->strings["Choose what you wish to do to recipient"] = "选择您想把别人作";
-$a->strings["Make this post private"] = "使这个文章私人";
-$a->strings["Total invitation limit exceeded."] = "邀请限超过了。";
-$a->strings["%s : Not a valid email address."] = "%s : 不是效的电子邮件地址.";
-$a->strings["Please join us on Friendica"] = "请加入我们再Friendica";
-$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "邀请限超过了。请联系您的网站管理员。";
-$a->strings["%s : Message delivery failed."] = "%s : 送消息失败了。";
-$a->strings["%d message sent."] = array(
-       0 => "%d消息传送了。",
-);
-$a->strings["You have no more invitations available"] = "您没有别的邀请";
-$a->strings["Visit %s for a list of public sites that you can join. Friendica members on other sites can all connect with each other, as well as with members of many other social networks."] = "参观%s看一单公开网站您会加入。Friendica成员在别的网站都会互相连接,再跟很多别的社会网络。";
-$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = "为接受这个邀请,请再%s或什么别的Friendica网站注册。";
-$a->strings["Friendica sites all inter-connect to create a huge privacy-enhanced social web that is owned and controlled by its members. They can also connect with many traditional social networks. See %s for a list of alternate Friendica sites you can join."] = "Friendica网站们都互相连接造成隐私增加的社会网络属和控制由它的成员。它们也能跟多传统的社会网络连接。看%s表示一单您会加入供替换的Friendica网站。";
-$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = "不好意思。这个系统目前没设置跟别的公开网站连接或邀请成员。";
-$a->strings["Send invitations"] = "发请柬";
-$a->strings["Enter email addresses, one per line:"] = "输入电子邮件地址,一行一个:";
-$a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = "您被邀请跟我和彼得近朋友们再Friendica加入-和帮助我们造成更好的社会网络。";
-$a->strings["You will need to supply this invitation code: \$invite_code"] = "您要输入这个邀请密码:\$invite_code";
-$a->strings["Once you have registered, please connect with me via my profile page at:"] = "您一注册,请页跟我连接,用我的简介在:";
-$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendica.com"] = "看别的信息由于Friendica工程和怎么我们看重,请看http://friendica.com";
-$a->strings["Photo Albums"] = "相册";
-$a->strings["Contact Photos"] = "熟人照片";
-$a->strings["Upload New Photos"] = "上传新照片";
-$a->strings["Contact information unavailable"] = "熟人信息不可用";
-$a->strings["Album not found."] = "取回不了相册.";
-$a->strings["Delete Album"] = "删除相册";
-$a->strings["Do you really want to delete this photo album and all its photos?"] = "您真的想删除这个相册和所有里面的照相吗?";
-$a->strings["Delete Photo"] = "删除照片";
-$a->strings["Do you really want to delete this photo?"] = "您真的想删除这个照相吗?";
-$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "%1\$s被%3\$s标签在%2\$s";
-$a->strings["a photo"] = "一张照片";
-$a->strings["Image exceeds size limit of "] = "图片超出最大尺寸";
-$a->strings["Image file is empty."] = "图片文件空的。";
-$a->strings["No photos selected"] = "没有照片挑选了";
-$a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = "您用%2$.2f兆字节的%1$.2f兆字节照片存储。";
-$a->strings["Upload Photos"] = "上传照片";
-$a->strings["New album name: "] = "新册名:";
-$a->strings["or existing album name: "] = "或现有册名";
-$a->strings["Do not show a status post for this upload"] = "别显示现状报到关于这个上传";
-$a->strings["Permissions"] = "权利";
-$a->strings["Private Photo"] = "私人照相";
-$a->strings["Public Photo"] = "公开照相";
-$a->strings["Edit Album"] = "编照片册";
-$a->strings["Show Newest First"] = "先表示最新的";
-$a->strings["Show Oldest First"] = "先表示最老的";
-$a->strings["View Photo"] = "看照片";
-$a->strings["Permission denied. Access to this item may be restricted."] = "无权利。用这个项目可能受限制。";
-$a->strings["Photo not available"] = "照片不可获得的 ";
-$a->strings["View photo"] = "看照片";
-$a->strings["Edit photo"] = "编辑照片";
-$a->strings["Use as profile photo"] = "用为资料图";
-$a->strings["View Full Size"] = "看全尺寸";
-$a->strings["Tags: "] = "标签:";
-$a->strings["[Remove any tag]"] = "[删除任何标签]";
-$a->strings["Rotate CW (right)"] = "顺时针地转动(左)";
-$a->strings["Rotate CCW (left)"] = "反顺时针地转动(右)";
-$a->strings["New album name"] = "新册名";
-$a->strings["Caption"] = "字幕";
-$a->strings["Add a Tag"] = "加标签";
-$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "例子:@zhang, @Zhang_San, @li@example.com, #Beijing, #ktv";
-$a->strings["Private photo"] = "私人照相";
-$a->strings["Public photo"] = "公开照相";
-$a->strings["Share"] = "分享";
-$a->strings["Recent Photos"] = "最近的照片";
-$a->strings["Account approved."] = "账户批准了";
-$a->strings["Registration revoked for %s"] = "%s的登记撤销了";
-$a->strings["Please login."] = "清登录。";
-$a->strings["Move account"] = "把账户搬出";
-$a->strings["You can import an account from another Friendica server."] = "您会从别的Friendica服务器进口账户";
-$a->strings["You need to export your account from the old server and upload it here. We will recreate your old account here with all your contacts. We will try also to inform your friends that you moved here."] = "您要把您老服务器账户出口才这里上传。我们重现您账户这里,包括所有您的熟人。我们再试通知您朋友们您搬到这里。";
-$a->strings["This feature is experimental. We can't import contacts from the OStatus network (statusnet/identi.ca) or from Diaspora"] = "这个特点是在试验阶段。我们进口不了Ostatus网络(statusnet/identi.ca)或Diaspora熟人";
-$a->strings["Account file"] = "账户文件";
-$a->strings["To export your account, go to \"Settings->Export your personal data\" and select \"Export account\""] = "为出口您账户,点击「设置→出口您私人信息」和选择「出口账户」";
-$a->strings["Item not available."] = "项目不可用的";
-$a->strings["Item was not found."] = "找不到项目。";
-$a->strings["Delete this item?"] = "删除这个项目?";
-$a->strings["show fewer"] = "显示更小";
-$a->strings["Update %s failed. See error logs."] = "更新%s美通过。看错误记录。";
-$a->strings["Create a New Account"] = "创造新的账户";
-$a->strings["Logout"] = "注销";
-$a->strings["Nickname or Email address: "] = "绰号或电子邮件地址: ";
-$a->strings["Password: "] = "密码: ";
-$a->strings["Remember me"] = "记住我";
-$a->strings["Or login using OpenID: "] = "或者用OpenID登记:";
-$a->strings["Forgot your password?"] = "忘记你的密码吗?";
-$a->strings["Website Terms of Service"] = "网站的各项规定";
-$a->strings["terms of service"] = "各项规定";
-$a->strings["Website Privacy Policy"] = "网站隐私政策";
-$a->strings["privacy policy"] = "隐私政策";
-$a->strings["Requested account is not available."] = "要求的账户不可用。";
-$a->strings["Edit profile"] = "修改简介";
-$a->strings["Message"] = "通知";
-$a->strings["Profiles"] = "简介";
-$a->strings["Manage/edit profiles"] = "管理/修改简介";
-$a->strings["Network:"] = "网络";
-$a->strings["g A l F d"] = "g A l d F";
-$a->strings["F d"] = "F d";
-$a->strings["[today]"] = "[今天]";
-$a->strings["Birthday Reminders"] = "提醒生日";
-$a->strings["Birthdays this week:"] = "这周的生日:";
-$a->strings["[No description]"] = "[无描述]";
-$a->strings["Event Reminders"] = "事件提醒";
-$a->strings["Events this week:"] = "这周的事件:";
-$a->strings["Status"] = "现状";
+$a->strings["Contact information and Social Networks:"] = "熟人消息和社会化网络";
+$a->strings["Musical interests:"] = "音乐兴趣:";
+$a->strings["Books, literature:"] = "书,文学";
+$a->strings["Television:"] = "电视:";
+$a->strings["Film/dance/culture/entertainment:"] = "电影/跳舞/文化/娱乐:";
+$a->strings["Love/Romance:"] = "爱情/浪漫";
+$a->strings["Work/employment:"] = "工作";
+$a->strings["School/education:"] = "学院/教育";
+$a->strings["Forums:"] = "";
+$a->strings["Basic"] = "基本";
+$a->strings["Advanced"] = "高级";
+$a->strings["Status"] = "状态";
 $a->strings["Status Messages and Posts"] = "现状通知和文章";
 $a->strings["Profile Details"] = "简介内容";
+$a->strings["Photos"] = "照片";
+$a->strings["Photo Albums"] = "相册";
 $a->strings["Videos"] = "视频";
-$a->strings["Events and Calendar"] = "项目和日历";
-$a->strings["Only You Can See This"] = "只您许看这个";
-$a->strings["This entry was edited"] = "这个文章被编辑了";
-$a->strings["ignore thread"] = "忽视主题";
-$a->strings["unignore thread"] = "别忽视主题";
-$a->strings["toggle ignore status"] = "切换忽视状态";
-$a->strings["ignored"] = "忽视";
-$a->strings["Categories:"] = "种类:";
-$a->strings["Filed under:"] = "归档在:";
-$a->strings["via"] = "经过";
-$a->strings["\n\t\t\tThe friendica developers released update %s recently,\n\t\t\tbut when I tried to install it, something went terribly wrong.\n\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n\t\t\tfriendica developer if you can not help me on your own. My database might be invalid."] = "";
-$a->strings["The error message is\n[pre]%s[/pre]"] = "";
-$a->strings["Errors encountered creating database tables."] = "造成数据库列表相遇错误。";
-$a->strings["Errors encountered performing database changes."] = "";
-$a->strings["Logged out."] = "注销了";
-$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "我们用您输入的OpenID登录的时候碰到问题。请核实拼法是对的。";
-$a->strings["The error message was:"] = "错误通知是:";
-$a->strings["Add New Contact"] = "增添新的熟人";
-$a->strings["Enter address or web location"] = "输入地址或网位置";
-$a->strings["Example: bob@example.com, http://example.com/barbara"] = "比如:li@example.com, http://example.com/li";
-$a->strings["%d invitation available"] = array(
-       0 => "%d邀请可用的",
-);
-$a->strings["Find People"] = "找人物";
-$a->strings["Enter name or interest"] = "输入名字或兴趣";
-$a->strings["Connect/Follow"] = "连接/关注";
-$a->strings["Examples: Robert Morgenstein, Fishing"] = "比如:李某,打鱼";
-$a->strings["Similar Interests"] = "相似兴趣";
-$a->strings["Random Profile"] = "随机简介";
-$a->strings["Invite Friends"] = "邀请朋友们";
-$a->strings["Networks"] = "网络";
-$a->strings["All Networks"] = "所有网络";
-$a->strings["Saved Folders"] = "保存的文件夹";
-$a->strings["Everything"] = "一切";
-$a->strings["Categories"] = "种类";
-$a->strings["General Features"] = "总的特点";
-$a->strings["Multiple Profiles"] = "多简介";
-$a->strings["Ability to create multiple profiles"] = "能穿凿多简介";
-$a->strings["Post Composition Features"] = "写文章特点";
-$a->strings["Richtext Editor"] = "富文本格式编辑";
-$a->strings["Enable richtext editor"] = "使富文本格式编辑可用";
-$a->strings["Post Preview"] = "文章预演";
-$a->strings["Allow previewing posts and comments before publishing them"] = "允许文章和评论出版前预演";
-$a->strings["Auto-mention Forums"] = "自动提示论坛";
-$a->strings["Add/remove mention when a fourm page is selected/deselected in ACL window."] = "添加/删除提示论坛页选择/淘汰在ACL窗户的时候。";
-$a->strings["Network Sidebar Widgets"] = "网络工具栏小窗口";
-$a->strings["Search by Date"] = "按日期搜索";
-$a->strings["Ability to select posts by date ranges"] = "能按时期范围选择文章";
-$a->strings["Group Filter"] = "组滤器";
-$a->strings["Enable widget to display Network posts only from selected group"] = "使光表示网络文章从选择的组小窗口";
-$a->strings["Network Filter"] = "网络滤器";
-$a->strings["Enable widget to display Network posts only from selected network"] = "使光表示网络文章从选择的网络小窗口";
-$a->strings["Save search terms for re-use"] = "保存搜索关键为再用";
-$a->strings["Network Tabs"] = "网络分页";
-$a->strings["Network Personal Tab"] = "网络私人分页";
-$a->strings["Enable tab to display only Network posts that you've interacted on"] = "使表示光网络文章您参加了分页可用";
-$a->strings["Network New Tab"] = "网络新分页";
-$a->strings["Enable tab to display only new Network posts (from the last 12 hours)"] = "使表示光网络文章在12小时内分页可用";
-$a->strings["Network Shared Links Tab"] = "网络分享链接分页";
-$a->strings["Enable tab to display only Network posts with links in them"] = "使表示光网络文章包括链接分页可用";
-$a->strings["Post/Comment Tools"] = "文章/评论工具";
-$a->strings["Multiple Deletion"] = "多删除";
-$a->strings["Select and delete multiple posts/comments at once"] = "选择和删除多文章/评论一次";
-$a->strings["Edit Sent Posts"] = "编辑发送的文章";
-$a->strings["Edit and correct posts and comments after sending"] = "编辑或修改文章和评论发送后";
-$a->strings["Tagging"] = "标签";
-$a->strings["Ability to tag existing posts"] = "能把目前的文章标签";
-$a->strings["Post Categories"] = "文章种类";
-$a->strings["Add categories to your posts"] = "加入种类给您的文章";
-$a->strings["Ability to file posts under folders"] = "能把文章归档在文件夹 ";
-$a->strings["Dislike Posts"] = "不喜欢文章";
-$a->strings["Ability to dislike posts/comments"] = "能不喜欢文章/评论";
-$a->strings["Star Posts"] = "文章星";
-$a->strings["Ability to mark special posts with a star indicator"] = "能把优秀文章跟星标注";
-$a->strings["Mute Post Notifications"] = "";
-$a->strings["Ability to mute notifications for a thread"] = "";
-$a->strings["Connect URL missing."] = "连接URL失踪的。";
-$a->strings["This site is not configured to allow communications with other networks."] = "这网站没配置允许跟别的网络交流.";
-$a->strings["No compatible communication protocols or feeds were discovered."] = "没有兼容协议或者摘要找到了.";
-$a->strings["The profile address specified does not provide adequate information."] = "输入的简介地址没有够消息。";
-$a->strings["An author or name was not found."] = "找不到作者或名。";
-$a->strings["No browser URL could be matched to this address."] = "这个地址没有符合什么游览器URL。";
-$a->strings["Unable to match @-style Identity Address with a known protocol or email contact."] = "使不了知道的相配或邮件熟人相配 ";
-$a->strings["Use mailto: in front of address to force email check."] = "输入mailto:地址前为要求电子邮件检查。";
-$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "输入的简介地址属在这个网站使不可用的网络。";
-$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "有限的简介。这人不会接受直达/私人通信从您。";
-$a->strings["Unable to retrieve contact information."] = "不能取回熟人消息。";
-$a->strings["following"] = "关注";
-$a->strings["A deleted group with this name was revived. Existing item permissions <strong>may</strong> apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "一个删除的组用这名被复兴。现有的项目权利<strong>可能</strong>还效为这个组和未来的成员。如果这不是您想的,请造成新组给起别的名。";
-$a->strings["Default privacy group for new contacts"] = "默认隐私组为新熟人";
-$a->strings["Everybody"] = "每人";
-$a->strings["edit"] = "编辑";
-$a->strings["Edit group"] = "编辑组";
-$a->strings["Create a new group"] = "创造新组";
-$a->strings["Contacts not in any group"] = "熟人没有组";
-$a->strings["Miscellaneous"] = "形形色色";
-$a->strings["year"] = "年";
-$a->strings["month"] = "月";
-$a->strings["day"] = "日";
-$a->strings["never"] = "从未";
-$a->strings["less than a second ago"] = "一秒以内";
-$a->strings["years"] = "年";
-$a->strings["months"] = "月";
-$a->strings["week"] = "星期";
-$a->strings["weeks"] = "星期";
-$a->strings["days"] = "天";
-$a->strings["hour"] = "小时";
-$a->strings["hours"] = "小时";
-$a->strings["minute"] = "分钟";
-$a->strings["minutes"] = "分钟";
-$a->strings["second"] = "秒";
-$a->strings["seconds"] = "秒";
-$a->strings["%1\$d %2\$s ago"] = "%1\$d %2\$s以前";
-$a->strings["%s's birthday"] = "%s的生日";
-$a->strings["Happy Birthday %s"] = "生日快乐%s";
-$a->strings["Visible to everybody"] = "任何人可见的";
-$a->strings["show"] = "著";
-$a->strings["don't show"] = "别著";
-$a->strings["[no subject]"] = "[无题目]";
-$a->strings["stopped following"] = "结束关注了";
-$a->strings["Poke"] = "戳";
-$a->strings["View Status"] = "看现状";
-$a->strings["View Profile"] = "看简介";
-$a->strings["View Photos"] = "看照片";
-$a->strings["Network Posts"] = "网络文章";
-$a->strings["Edit Contact"] = "编辑熟人";
-$a->strings["Drop Contact"] = "删除熟人";
-$a->strings["Send PM"] = "法私人的新闻";
-$a->strings["Welcome "] = "欢迎";
-$a->strings["Please upload a profile photo."] = "请上传一张简介照片";
-$a->strings["Welcome back "] = "欢迎归来";
-$a->strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "表格安全令牌不对。最可能因为表格开着太久(三个小时以上)提交前。";
-$a->strings["event"] = "项目";
-$a->strings["%1\$s poked %2\$s"] = "%1\$s把%2\$s戳";
-$a->strings["poked"] = "戳了";
-$a->strings["post/item"] = "文章/项目";
-$a->strings["%1\$s marked %2\$s's %3\$s as favorite"] = "%1\$s标注%2\$s的%3\$s为偏爱";
-$a->strings["remove"] = "删除";
-$a->strings["Delete Selected Items"] = "删除选的项目";
-$a->strings["Follow Thread"] = "关注线绳";
-$a->strings["%s likes this."] = "%s喜欢这个.";
-$a->strings["%s doesn't like this."] = "%s没有喜欢这个.";
-$a->strings["<span  %1\$s>%2\$d people</span> like this"] = "<span  %1\$s>%2\$d人们</span>喜欢这个";
-$a->strings["<span  %1\$s>%2\$d people</span> don't like this"] = "<span  %1\$s>%2\$d人们</span>不喜欢这个";
-$a->strings["and"] = "和";
-$a->strings[", and %d other people"] = ",和%d别人";
-$a->strings["%s like this."] = "%s喜欢这个";
-$a->strings["%s don't like this."] = "%s不喜欢这个";
-$a->strings["Visible to <strong>everybody</strong>"] = "<strong>大家</strong>可见的";
-$a->strings["Please enter a video link/URL:"] = "请输入视频连接/URL:";
-$a->strings["Please enter an audio link/URL:"] = "请输入音响连接/URL:";
-$a->strings["Tag term:"] = "标签:";
-$a->strings["Where are you right now?"] = "你在哪里?";
-$a->strings["Delete item(s)?"] = "把项目删除吗?";
-$a->strings["Post to Email"] = "电邮发布";
-$a->strings["Connectors disabled, since \"%s\" is enabled."] = "连接器已停用,因为\"%s\"启用。";
-$a->strings["permissions"] = "权利";
-$a->strings["Post to Groups"] = "发到组";
-$a->strings["Post to Contacts"] = "发到熟人";
-$a->strings["Private post"] = "私人文章";
-$a->strings["view full size"] = "看全尺寸";
-$a->strings["newer"] = "更新";
-$a->strings["older"] = "更旧";
-$a->strings["prev"] = "上个";
-$a->strings["first"] = "首先";
-$a->strings["last"] = "最后";
-$a->strings["next"] = "下个";
-$a->strings["No contacts"] = "没有熟人";
-$a->strings["%d Contact"] = array(
-       0 => "%d熟人",
+$a->strings["Events"] = "事件";
+$a->strings["Events and Calendar"] = "事件和日历";
+$a->strings["Personal Notes"] = "私人便条";
+$a->strings["Only You Can See This"] = "只有你可以看这个";
+$a->strings["Contacts"] = "联系人";
+$a->strings["%1\$s is attending %2\$s's %3\$s"] = "";
+$a->strings["%1\$s is not attending %2\$s's %3\$s"] = "";
+$a->strings["%1\$s may attend %2\$s's %3\$s"] = "";
+$a->strings["Nothing new here"] = "这里没有什么新的";
+$a->strings["Clear notifications"] = "清理出通知";
+$a->strings["@name, !forum, #tags, content"] = "";
+$a->strings["Logout"] = "注销";
+$a->strings["End this session"] = "结束这段时间";
+$a->strings["Your posts and conversations"] = "你的消息和交谈";
+$a->strings["Your profile page"] = "你的简介页";
+$a->strings["Your photos"] = "你的照片";
+$a->strings["Your videos"] = "你的视频";
+$a->strings["Your events"] = "你的项目";
+$a->strings["Personal notes"] = "私人的便条";
+$a->strings["Your personal notes"] = "你的私人便条";
+$a->strings["Login"] = "登录";
+$a->strings["Sign in"] = "登记";
+$a->strings["Home Page"] = "主页";
+$a->strings["Register"] = "注册";
+$a->strings["Create an account"] = "注册";
+$a->strings["Help"] = "帮助";
+$a->strings["Help and documentation"] = "帮助证件";
+$a->strings["Apps"] = "应用程序";
+$a->strings["Addon applications, utilities, games"] = "可加的应用,设施,游戏";
+$a->strings["Search"] = "搜索";
+$a->strings["Search site content"] = "搜索网站内容";
+$a->strings["Full Text"] = "全文";
+$a->strings["Tags"] = "标签:";
+$a->strings["Community"] = "社会";
+$a->strings["Conversations on this site"] = "这个网站的交谈";
+$a->strings["Conversations on the network"] = "网络上的对话";
+$a->strings["Directory"] = "名录";
+$a->strings["People directory"] = "人物名录";
+$a->strings["Information"] = "资料";
+$a->strings["Information about this friendica instance"] = "资料关于这个Friendica服务器";
+$a->strings["Conversations from your friends"] = "来自你的朋友们的交谈";
+$a->strings["Network Reset"] = "网络重设";
+$a->strings["Load Network page with no filters"] = "表示网络页无滤器";
+$a->strings["Friend Requests"] = "友谊邀请";
+$a->strings["Notifications"] = "通知";
+$a->strings["See all notifications"] = "看所有的通知";
+$a->strings["Mark as seen"] = "标注看过";
+$a->strings["Mark all system notifications seen"] = "记号各系统通知看过的";
+$a->strings["Messages"] = "消息";
+$a->strings["Private mail"] = "私人的邮件";
+$a->strings["Inbox"] = "收件箱";
+$a->strings["Outbox"] = "发件箱";
+$a->strings["New Message"] = "新的消息";
+$a->strings["Manage"] = "代用户";
+$a->strings["Manage other pages"] = "管理别的页";
+$a->strings["Delegations"] = "代表";
+$a->strings["Delegate Page Management"] = "页代表管理";
+$a->strings["Settings"] = "配置";
+$a->strings["Account settings"] = "帐户配置";
+$a->strings["Manage/Edit Profiles"] = "管理/编辑简介";
+$a->strings["Manage/edit friends and contacts"] = "管理/编朋友们和熟人们";
+$a->strings["Admin"] = "管理";
+$a->strings["Site setup and configuration"] = "网站开办和配置";
+$a->strings["Navigation"] = "航行";
+$a->strings["Site map"] = "网站地图";
+$a->strings["Embedded content"] = "嵌入内容";
+$a->strings["Embedding disabled"] = "嵌入已停用";
+$a->strings["Click here to upgrade."] = "这里点击为更新。";
+$a->strings["This action exceeds the limits set by your subscription plan."] = "这个行动超过您订阅的限制。";
+$a->strings["This action is not available under your subscription plan."] = "这个行动在您的订阅不可用的。";
+$a->strings["Welcome "] = "欢迎";
+$a->strings["Please upload a profile photo."] = "请上传一张简介照片";
+$a->strings["Welcome back "] = "欢迎归来";
+$a->strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "表格安全令牌不对。最可能因为表格开着太久(三个小时以上)提交前。";
+$a->strings["newer"] = "更新";
+$a->strings["older"] = "更旧";
+$a->strings["first"] = "首先";
+$a->strings["prev"] = "上个";
+$a->strings["next"] = "下个";
+$a->strings["last"] = "最后";
+$a->strings["Loading more entries..."] = "没有项目...";
+$a->strings["The end"] = "";
+$a->strings["No contacts"] = "没有熟人";
+$a->strings["%d Contact"] = array(
+       0 => "%d熟人",
 );
+$a->strings["View Contacts"] = "看熟人";
+$a->strings["Save"] = "保存";
 $a->strings["poke"] = "戳";
+$a->strings["poked"] = "戳了";
 $a->strings["ping"] = "砰";
 $a->strings["pinged"] = "砰了";
 $a->strings["prod"] = "柔戳";
@@ -1469,130 +637,28 @@ $a->strings["frustrated"] = "被作梗";
 $a->strings["motivated"] = "士气高涨";
 $a->strings["relaxed"] = "轻松";
 $a->strings["surprised"] = "诧异";
-$a->strings["Monday"] = "星期一";
-$a->strings["Tuesday"] = "星期二";
-$a->strings["Wednesday"] = "星期三";
-$a->strings["Thursday"] = "星期四";
-$a->strings["Friday"] = "星期五";
-$a->strings["Saturday"] = "星期六";
-$a->strings["Sunday"] = "星期天";
-$a->strings["January"] = "一月";
-$a->strings["February"] = "二月";
-$a->strings["March"] = "三月";
-$a->strings["April"] = "四月";
-$a->strings["May"] = "五月";
-$a->strings["June"] = "六月";
-$a->strings["July"] = "七月";
-$a->strings["August"] = "八月";
-$a->strings["September"] = "九月";
-$a->strings["October"] = "十月";
-$a->strings["November"] = "十一月";
-$a->strings["December"] = "十二月";
+$a->strings["View Video"] = "看视频";
 $a->strings["bytes"] = "字节";
 $a->strings["Click to open/close"] = "点击为开关";
-$a->strings["default"] = "默认";
-$a->strings["Select an alternate language"] = "选择别的语言";
+$a->strings["View on separate page"] = "在另一页面中查看";
+$a->strings["view on separate page"] = "在另一页面中查看";
 $a->strings["activity"] = "活动";
+$a->strings["comment"] = array(
+       0 => "评论",
+);
 $a->strings["post"] = "文章";
 $a->strings["Item filed"] = "把项目归档了";
-$a->strings["Image/photo"] = "图像/照片";
-$a->strings["<a href=\"%1\$s\" target=\"_blank\">%2\$s</a> %3\$s"] = "";
-$a->strings["<span><a href=\"%s\" target=\"_blank\">%s</a> wrote the following <a href=\"%s\" target=\"_blank\">post</a>"] = "<span><a href=\"%s\" target=\"_blank\">%s</a>写了下面的<a href=\"%s\" target=\"_blank\">消息</a>";
-$a->strings["$1 wrote:"] = "$1写:";
-$a->strings["Encrypted content"] = "加密的内容";
-$a->strings["(no subject)"] = "沒有题目";
-$a->strings["noreply"] = "noreply";
-$a->strings["Cannot locate DNS info for database server '%s'"] = "找不到DNS信息为数据库服务器「%s」";
-$a->strings["Unknown | Not categorised"] = "未知的 |无分类";
-$a->strings["Block immediately"] = "立即拦";
-$a->strings["Shady, spammer, self-marketer"] = "可疑,发垃圾者,自市场开发者";
-$a->strings["Known to me, but no opinion"] = "我认识,但没有意见";
-$a->strings["OK, probably harmless"] = "行,大概无恶意的";
-$a->strings["Reputable, has my trust"] = "可信的,有我的信任";
-$a->strings["Weekly"] = "每周";
-$a->strings["Monthly"] = "每月";
-$a->strings["OStatus"] = "OStatus";
-$a->strings["RSS/Atom"] = "RSS/Atom";
-$a->strings["Zot!"] = "Zot!";
-$a->strings["LinkedIn"] = "LinkedIn";
-$a->strings["XMPP/IM"] = "XMPP/IM";
-$a->strings["MySpace"] = "MySpace";
-$a->strings["Google+"] = "Google+";
-$a->strings["pump.io"] = "pump.io";
-$a->strings["Twitter"] = "Twitter";
-$a->strings["Diaspora Connector"] = "Diaspora连接";
-$a->strings["Statusnet"] = "Statusnet";
-$a->strings["App.net"] = "";
-$a->strings[" on Last.fm"] = "在Last.fm";
-$a->strings["Starts:"] = "开始:";
-$a->strings["Finishes:"] = "结束:";
-$a->strings["j F, Y"] = "j F, Y";
-$a->strings["j F"] = "j F";
-$a->strings["Birthday:"] = "生日:";
-$a->strings["Age:"] = "年纪:";
-$a->strings["for %1\$d %2\$s"] = "为%1\$d %2\$s";
-$a->strings["Tags:"] = "标签:";
-$a->strings["Religion:"] = "宗教:";
-$a->strings["Hobbies/Interests:"] = "爱好/兴趣";
-$a->strings["Contact information and Social Networks:"] = "熟人消息和社会化网络";
-$a->strings["Musical interests:"] = "音乐兴趣:";
-$a->strings["Books, literature:"] = "书,文学";
-$a->strings["Television:"] = "电视:";
-$a->strings["Film/dance/culture/entertainment:"] = "电影/跳舞/文化/娱乐:";
-$a->strings["Love/Romance:"] = "爱情/浪漫";
-$a->strings["Work/employment:"] = "工作";
-$a->strings["School/education:"] = "学院/教育";
-$a->strings["Click here to upgrade."] = "这里点击为更新。";
-$a->strings["This action exceeds the limits set by your subscription plan."] = "这个行动超过您订阅的限制。";
-$a->strings["This action is not available under your subscription plan."] = "这个行动在您的订阅不可用的。";
-$a->strings["End this session"] = "结束这段时间";
-$a->strings["Your posts and conversations"] = "你的消息和交谈";
-$a->strings["Your profile page"] = "你的简介页";
-$a->strings["Your photos"] = "你的照片";
-$a->strings["Your videos"] = "";
-$a->strings["Your events"] = "你的项目";
-$a->strings["Personal notes"] = "私人的便条";
-$a->strings["Your personal notes"] = "";
-$a->strings["Sign in"] = "登记";
-$a->strings["Home Page"] = "主页";
-$a->strings["Create an account"] = "注册";
-$a->strings["Help and documentation"] = "帮助证件";
-$a->strings["Apps"] = "应用程序";
-$a->strings["Addon applications, utilities, games"] = "可加的应用,设施,游戏";
-$a->strings["Search site content"] = "搜索网站内容";
-$a->strings["Conversations on this site"] = "这个网站的交谈";
-$a->strings["Conversations on the network"] = "";
-$a->strings["Directory"] = "名录";
-$a->strings["People directory"] = "人物名录";
-$a->strings["Information"] = "资料";
-$a->strings["Information about this friendica instance"] = "资料关于这个Friendica服务器";
-$a->strings["Conversations from your friends"] = "从你朋友们的交谈";
-$a->strings["Network Reset"] = "网络重设";
-$a->strings["Load Network page with no filters"] = "表示网络页无滤器";
-$a->strings["Friend Requests"] = "友谊邀请";
-$a->strings["See all notifications"] = "看所有的通知";
-$a->strings["Mark all system notifications seen"] = "记号各系统通知看过的";
-$a->strings["Private mail"] = "私人的邮件";
-$a->strings["Inbox"] = "收件箱";
-$a->strings["Outbox"] = "发件箱";
-$a->strings["Manage"] = "代用户";
-$a->strings["Manage other pages"] = "管理别的页";
-$a->strings["Account settings"] = "帐户配置";
-$a->strings["Manage/Edit Profiles"] = "管理/编辑简介";
-$a->strings["Manage/edit friends and contacts"] = "管理/编朋友们和熟人们";
-$a->strings["Site setup and configuration"] = "网站开办和配置";
-$a->strings["Navigation"] = "航行";
-$a->strings["Site map"] = "网站地图";
-$a->strings["User not found."] = "找不到用户";
-$a->strings["Daily posting limit of %d posts reached. The post was rejected."] = "";
-$a->strings["Weekly posting limit of %d posts reached. The post was rejected."] = "";
-$a->strings["Monthly posting limit of %d posts reached. The post was rejected."] = "";
-$a->strings["There is no status with this id."] = "没有什么状态跟这个ID";
-$a->strings["There is no conversation with this id."] = "没有这个ID的对话";
-$a->strings["Invalid request."] = "";
-$a->strings["Invalid item."] = "";
-$a->strings["Invalid action. "] = "";
-$a->strings["DB error"] = "";
+$a->strings["Error decoding account file"] = "解码账户文件出错误";
+$a->strings["Error! No version data in file! This is not a Friendica account file?"] = "错误!文件没有版本数!这不是Friendica账户文件吗?";
+$a->strings["Error! Cannot check nickname"] = "错误!不能检查昵称";
+$a->strings["User '%s' already exists on this server!"] = "用户「%s」已经存在这个服务器!";
+$a->strings["User creation error"] = "用户创造错误";
+$a->strings["User profile creation error"] = "用户简介创造错误";
+$a->strings["%d contact not imported"] = array(
+       0 => "%d熟人没进口了",
+);
+$a->strings["Done. You can now login with your username and password"] = "完了。您现在会用您用户名和密码登录";
+$a->strings["Passwords do not match. Password unchanged."] = "密码们不相配。密码没未改变的。";
 $a->strings["An invitation is required."] = "邀请必要的。";
 $a->strings["Invitation could not be verified."] = "不能证实邀请。";
 $a->strings["Invalid OpenID url"] = "无效的OpenID url";
@@ -1603,182 +669,1393 @@ $a->strings["That doesn't appear to be your full (First Last) name."] = "这看
 $a->strings["Your email domain is not among those allowed on this site."] = "这网站允许的域名中没有您的";
 $a->strings["Not a valid email address."] = "无效的邮件地址。";
 $a->strings["Cannot use that email."] = "不能用这个邮件地址。";
-$a->strings["Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and must also begin with a letter."] = "您的昵称只能包含\"a-z\",\"0-9\",\"-\"和\"_\",还有头一字必须是拉丁字。";
+$a->strings["Your \"nickname\" can only contain \"a-z\", \"0-9\" and \"_\"."] = "你的“昵称”只能包含 \"a-z\", \"0-9\" 和 \"_\".";
 $a->strings["Nickname is already registered. Please choose another."] = "昵称已经报到。请选择新的。";
 $a->strings["Nickname was once registered here and may not be re-used. Please choose another."] = "昵称曾经这里注册于是不能再用。请选择别的。";
 $a->strings["SERIOUS ERROR: Generation of security keys failed."] = "要紧错误:产生安全钥匙失败了。";
 $a->strings["An error occurred during registration. Please try again."] = "报到出了问题。请再试。";
-$a->strings["An error occurred creating your default profile. Please try again."] = "造成默认简介出了问题。请再试。";
-$a->strings["Friends"] = "朋友";
+$a->strings["default"] = "默认";
+$a->strings["An error occurred creating your default profile. Please try again."] = "创建你的默认简介的时候出现了一个错误。请再试。";
+$a->strings["Profile Photos"] = "简介照片";
+$a->strings["\n\t\tDear %1\$s,\n\t\t\tThank you for registering at %2\$s. Your account is pending for approval by the administrator.\n\t"] = "";
+$a->strings["Registration at %s"] = "";
 $a->strings["\n\t\tDear %1\$s,\n\t\t\tThank you for registering at %2\$s. Your account has been created.\n\t"] = "";
 $a->strings["\n\t\tThe login details are as follows:\n\t\t\tSite Location:\t%3\$s\n\t\t\tLogin Name:\t%1\$s\n\t\t\tPassword:\t%5\$s\n\n\t\tYou may change your password from your account \"Settings\" page after logging\n\t\tin.\n\n\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\tYou may also wish to add some basic information to your default profile\n\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\tWe recommend setting your full name, adding a profile photo,\n\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\tperhaps what country you live in; if you do not wish to be more specific\n\t\tthan that.\n\n\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\tIf you are new and do not know anybody here, they may help\n\t\tyou to make some new and interesting friends.\n\n\n\t\tThank you and welcome to %2\$s."] = "";
+$a->strings["Registration details for %s"] = "注册信息为%s";
+$a->strings["Wall Photos"] = "墙照片";
+$a->strings["%s\\'s birthday"] = "%s的生日";
+$a->strings["[no subject]"] = "[无题目]";
+$a->strings["Contact Photos"] = "熟人照片";
+$a->strings["Drop Contact"] = "删除熟人";
+$a->strings["Organisation"] = "组织";
+$a->strings["News"] = "新闻";
+$a->strings["Forum"] = "论坛";
+$a->strings["Daily posting limit of %d posts reached. The post was rejected."] = "到达了每日发文限制 %d. 这篇文章被拒绝发出。";
+$a->strings["Weekly posting limit of %d posts reached. The post was rejected."] = "到达了每周发文限制 %d. 这篇文章被拒绝发出。";
+$a->strings["Monthly posting limit of %d posts reached. The post was rejected."] = "到达了每月发文限制 %d. 这篇文章被拒绝发出。";
 $a->strings["Sharing notification from Diaspora network"] = "分享通知从Diaspora网络";
 $a->strings["Attachments:"] = "附件:";
+$a->strings["Disallowed profile URL."] = "不允许的简介地址.";
+$a->strings["Blocked domain"] = "被封禁的域名";
+$a->strings["Connect URL missing."] = "连接URL失踪的。";
+$a->strings["This site is not configured to allow communications with other networks."] = "这网站没配置允许跟别的网络交流.";
+$a->strings["No compatible communication protocols or feeds were discovered."] = "没有兼容协议或者摘要找到了.";
+$a->strings["The profile address specified does not provide adequate information."] = "输入的简介地址没有够消息。";
+$a->strings["An author or name was not found."] = "找不到作者或名。";
+$a->strings["No browser URL could be matched to this address."] = "这个地址没有符合什么游览器URL。";
+$a->strings["Unable to match @-style Identity Address with a known protocol or email contact."] = "无法匹配一个@-风格的身份地址和一个已知的协议或电子邮件联系人。";
+$a->strings["Use mailto: in front of address to force email check."] = "输入mailto:地址前为要求电子邮件检查。";
+$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "输入的简介地址属在这个网站使不可用的网络。";
+$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "有限的简介。这人不会接受直达/私人通信从您。";
+$a->strings["Unable to retrieve contact information."] = "不能取回熟人消息。";
+$a->strings["[Name Withheld]"] = "[名字拒给]";
+$a->strings["Item not found."] = "项目找不到。";
 $a->strings["Do you really want to delete this item?"] = "您真的想删除这个项目吗?";
+$a->strings["Yes"] = "是";
+$a->strings["Permission denied."] = "权限不够。";
 $a->strings["Archives"] = "档案";
-$a->strings["Male"] = "男的";
-$a->strings["Female"] = "女的";
-$a->strings["Currently Male"] = "现在男的";
-$a->strings["Currently Female"] = "现在女的";
-$a->strings["Mostly Male"] = "主要男的";
-$a->strings["Mostly Female"] = "主要女的";
-$a->strings["Transgender"] = "跨性別";
-$a->strings["Intersex"] = "阴阳人";
-$a->strings["Transsexual"] = "”转基因“人";
-$a->strings["Hermaphrodite"] = "两性体";
-$a->strings["Neuter"] = "中性的";
-$a->strings["Non-specific"] = "不明确的";
-$a->strings["Other"] = "别的";
-$a->strings["Undecided"] = "未决";
-$a->strings["Males"] = "男人";
-$a->strings["Females"] = "女人";
-$a->strings["Gay"] = "男同性恋的";
-$a->strings["Lesbian"] = "女同性恋的";
-$a->strings["No Preference"] = "无偏爱";
-$a->strings["Bisexual"] = "双性恋的";
-$a->strings["Autosexual"] = "自性的";
-$a->strings["Abstinent"] = "有节制的";
-$a->strings["Virgin"] = "原始的";
-$a->strings["Deviant"] = "变态";
-$a->strings["Fetish"] = "恋物对象";
-$a->strings["Oodles"] = "多多";
-$a->strings["Nonsexual"] = "无性";
-$a->strings["Single"] = "单身";
-$a->strings["Lonely"] = "寂寞";
-$a->strings["Available"] = "单身的";
-$a->strings["Unavailable"] = "不可获得的";
-$a->strings["Has crush"] = "迷恋";
-$a->strings["Infatuated"] = "痴迷";
-$a->strings["Dating"] = "约会";
-$a->strings["Unfaithful"] = "外遇";
-$a->strings["Sex Addict"] = "性交因成瘾者";
-$a->strings["Friends/Benefits"] = "朋友/益";
-$a->strings["Casual"] = "休闲";
-$a->strings["Engaged"] = "已订婚的";
-$a->strings["Married"] = "结婚";
-$a->strings["Imaginarily married"] = "想像结婚";
-$a->strings["Partners"] = "伴侣";
-$a->strings["Cohabiting"] = "同居";
-$a->strings["Common law"] = "普通法结婚";
-$a->strings["Happy"] = "幸福";
-$a->strings["Not looking"] = "没找";
-$a->strings["Swinger"] = "交换性伴侣的";
-$a->strings["Betrayed"] = "被背叛";
-$a->strings["Separated"] = "分手";
-$a->strings["Unstable"] = "不稳";
-$a->strings["Divorced"] = "离婚";
-$a->strings["Imaginarily divorced"] = "想像离婚";
-$a->strings["Widowed"] = "寡妇";
-$a->strings["Uncertain"] = "不确定";
-$a->strings["It's complicated"] = "是复杂";
-$a->strings["Don't care"] = "无所谓";
-$a->strings["Ask me"] = "问我";
-$a->strings["Friendica Notification"] = "Friendica 通知";
-$a->strings["Thank You,"] = "谢谢,";
-$a->strings["%s Administrator"] = "%s管理员";
-$a->strings["%s <!item_type!>"] = "%s <!item_type!>";
-$a->strings["[Friendica:Notify] New mail received at %s"] = "[Friendica:Notify]收到新邮件在%s";
-$a->strings["%1\$s sent you a new private message at %2\$s."] = "%1\$s发给您新私人通知在%2\$s.";
-$a->strings["%1\$s sent you %2\$s."] = "%1\$s发给您%2\$s.";
-$a->strings["a private message"] = "一条私人的消息";
-$a->strings["Please visit %s to view and/or reply to your private messages."] = "清去%s为了看或回答你私人的消息";
-$a->strings["%1\$s commented on [url=%2\$s]a %3\$s[/url]"] = "%1\$s于[url=%2\$s]a %3\$s[/url]评论了";
-$a->strings["%1\$s commented on [url=%2\$s]%3\$s's %4\$s[/url]"] = "%1\$s于[url=%2\$s]%3\$s的%4\$s[/url]评论了";
-$a->strings["%1\$s commented on [url=%2\$s]your %3\$s[/url]"] = "%1\$s于[url=%2\$s]您的%3\$s[/url]评论了";
-$a->strings["[Friendica:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Friendica:Notify]于交流#%1\$d由%2\$s评论";
-$a->strings["%s commented on an item/conversation you have been following."] = "%s对你有兴趣的项目/ 交谈发表意见";
-$a->strings["Please visit %s to view and/or reply to the conversation."] = "清去%s为了看或回答交谈";
-$a->strings["[Friendica:Notify] %s posted to your profile wall"] = "[Friendica:Notify] %s贴在您的简介墙";
-$a->strings["%1\$s posted to your profile wall at %2\$s"] = "%1\$s放在您的简介墙在%2\$s";
-$a->strings["%1\$s posted to [url=%2\$s]your wall[/url]"] = "%1\$s放在[url=%2\$s]您的墙[/url]";
-$a->strings["[Friendica:Notify] %s tagged you"] = "[Friendica:Notify] %s标签您";
-$a->strings["%1\$s tagged you at %2\$s"] = "%1\$s把您在%2\$s标签";
-$a->strings["%1\$s [url=%2\$s]tagged you[/url]."] = "%1\$s[url=%2\$s]把您标签[/url].";
-$a->strings["[Friendica:Notify] %s shared a new post"] = "[Friendica:Notify] %s分享新的消息";
-$a->strings["%1\$s shared a new post at %2\$s"] = "%1\$s分享新的消息在%2\$s";
-$a->strings["%1\$s [url=%2\$s]shared a post[/url]."] = "%1\$s [url=%2\$s]分享一个消息[/url].";
-$a->strings["[Friendica:Notify] %1\$s poked you"] = "[Friendica:Notify]您被%1\$s戳";
-$a->strings["%1\$s poked you at %2\$s"] = "您被%1\$s戳在%2\$s";
-$a->strings["%1\$s [url=%2\$s]poked you[/url]."] = "%1\$s[url=%2\$s]把您戳[/url]。";
-$a->strings["[Friendica:Notify] %s tagged your post"] = "[Friendica:Notify] %s标前您的文章";
-$a->strings["%1\$s tagged your post at %2\$s"] = "%1\$s把您的文章在%2\$s标签";
-$a->strings["%1\$s tagged [url=%2\$s]your post[/url]"] = "%1\$s把[url=%2\$s]您的文章[/url]标签";
-$a->strings["[Friendica:Notify] Introduction received"] = "[Friendica:Notify] 收到介绍";
-$a->strings["You've received an introduction from '%1\$s' at %2\$s"] = "您从「%1\$s」受到一个介绍在%2\$s";
-$a->strings["You've received [url=%1\$s]an introduction[/url] from %2\$s."] = "您从%2\$s收到[url=%1\$s]一个介绍[/url]。";
-$a->strings["You may visit their profile at %s"] = "你能看他的简介在%s";
-$a->strings["Please visit %s to approve or reject the introduction."] = "请批准或拒绝介绍在%s";
-$a->strings["[Friendica:Notify] A new person is sharing with you"] = "";
-$a->strings["%1\$s is sharing with you at %2\$s"] = "";
-$a->strings["[Friendica:Notify] You have a new follower"] = "";
-$a->strings["You have a new follower at %2\$s : %1\$s"] = "";
-$a->strings["[Friendica:Notify] Friend suggestion received"] = "[Friendica:Notify] 收到朋友建议";
-$a->strings["You've received a friend suggestion from '%1\$s' at %2\$s"] = "您从「%2\$s」收到[url=%1\$s]一个朋友建议[/url]。";
-$a->strings["You've received [url=%1\$s]a friend suggestion[/url] for %2\$s from %3\$s."] = "您从%3\$s收到[url=%1\$s]一个朋友建议[/url]为%2\$s。";
-$a->strings["Name:"] = "名字:";
-$a->strings["Photo:"] = "照片:";
-$a->strings["Please visit %s to approve or reject the suggestion."] = "请批准或拒绝建议在%s";
-$a->strings["[Friendica:Notify] Connection accepted"] = "";
-$a->strings["'%1\$s' has acepted your connection request at %2\$s"] = "";
-$a->strings["%2\$s has accepted your [url=%1\$s]connection request[/url]."] = "";
-$a->strings["You are now mutual friends and may exchange status updates, photos, and email\n\twithout restriction."] = "";
-$a->strings["Please visit %s  if you wish to make any changes to this relationship."] = "";
-$a->strings["'%1\$s' has chosen to accept you a \"fan\", which restricts some forms of communication - such as private messaging and some profile interactions. If this is a celebrity or community page, these settings were applied automatically."] = "'%1\$s'选择欢迎你为\"迷\",限制有的沟通方式,比如死人交流和有的简介互动。如果这是名人或社会页,此设置是自动地施用。";
-$a->strings["'%1\$s' may choose to extend this into a two-way or more permissive relationship in the future. "] = "";
-$a->strings["[Friendica System:Notify] registration request"] = "";
-$a->strings["You've received a registration request from '%1\$s' at %2\$s"] = "";
-$a->strings["You've received a [url=%1\$s]registration request[/url] from %2\$s."] = "";
-$a->strings["Full Name:\t%1\$s\\nSite Location:\t%2\$s\\nLogin Name:\t%3\$s (%4\$s)"] = "";
-$a->strings["Please visit %s to approve or reject the request."] = "";
-$a->strings["Embedded content"] = "嵌入内容";
-$a->strings["Embedding disabled"] = "嵌入已停用";
-$a->strings["Error decoding account file"] = "解码账户文件出错误";
-$a->strings["Error! No version data in file! This is not a Friendica account file?"] = "错误!文件没有版本数!这不是Friendica账户文件吗?";
-$a->strings["Error! Cannot check nickname"] = "错误!不能检查昵称";
-$a->strings["User '%s' already exists on this server!"] = "用户「%s」已经存在这个服务器!";
-$a->strings["User creation error"] = "用户创造错误";
-$a->strings["User profile creation error"] = "用户简介创造错误";
-$a->strings["%d contact not imported"] = array(
-       0 => "%d熟人没进口了",
+$a->strings["view full size"] = "看全尺寸";
+$a->strings["%s is now following %s."] = "%s 正在关注 %s.";
+$a->strings["following"] = "关注";
+$a->strings["%s stopped following %s."] = "%s 停止关注了 %s.";
+$a->strings["stopped following"] = "结束关注了";
+$a->strings["Authorize application connection"] = "授权应用连接";
+$a->strings["Return to your app and insert this Securty Code:"] = "回归您的应用和输入这个安全密码:";
+$a->strings["Please login to continue."] = "请登记为继续。";
+$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "你要授权这个应用访问你的文章和联系人,及/或为你创建新的文章吗?";
+$a->strings["No"] = "否";
+$a->strings["You must be logged in to use addons. "] = "您用插件前要登录";
+$a->strings["Applications"] = "应用";
+$a->strings["No installed applications."] = "没有安装的应用";
+$a->strings["Item not available."] = "项目不可用的";
+$a->strings["Item was not found."] = "找不到项目。";
+$a->strings["Source (bbcode) text:"] = "源代码(bbcode)正文";
+$a->strings["Source (Diaspora) text to convert to BBcode:"] = "源代(Diaspora)正文要翻译成BBCode:";
+$a->strings["Source input: "] = "源代码输入:";
+$a->strings["bb2html (raw HTML): "] = "bb2html(生HTML): ";
+$a->strings["bb2html: "] = "bb2html:";
+$a->strings["bb2html2bb: "] = "bb2html2bb:";
+$a->strings["bb2md: "] = "bb2md:";
+$a->strings["bb2md2html: "] = "bb2md2html:";
+$a->strings["bb2dia2bb: "] = "bb2dia2bb:";
+$a->strings["bb2md2html2bb: "] = "bb2md2html2bb:";
+$a->strings["Source input (Diaspora format): "] = "源代输入(Diaspora形式):";
+$a->strings["diaspora2bb: "] = "diaspora2bb: ";
+$a->strings["No contacts in common."] = "没有共同熟人。";
+$a->strings["Common Friends"] = "普通朋友们";
+$a->strings["Credits"] = "";
+$a->strings["Friendica is a community project, that would not be possible without the help of many people. Here is a list of those who have contributed to the code or the translation of Friendica. Thank you all!"] = "";
+$a->strings["Contact settings applied."] = "熟人设置应用了。";
+$a->strings["Contact update failed."] = "熟人更新失败。";
+$a->strings["Contact not found."] = "没找到熟人。";
+$a->strings["<strong>WARNING: This is highly advanced</strong> and if you enter incorrect information your communications with this contact may stop working."] = "<strong>注意:这是很高等的</strong>,你输入错的信息你和熟人的沟通会弄失灵了。";
+$a->strings["Please use your browser 'Back' button <strong>now</strong> if you are uncertain what to do on this page."] = "请<strong>立即</strong>用后退按钮如果您不确定怎么用这页";
+$a->strings["No mirroring"] = "没有复制";
+$a->strings["Mirror as forwarded posting"] = "复制为传达文章";
+$a->strings["Mirror as my own posting"] = "复制为我自己的文章";
+$a->strings["Return to contact editor"] = "回归熟人处理器";
+$a->strings["Refetch contact data"] = "重新获取联系人数据";
+$a->strings["Submit"] = "提交";
+$a->strings["Remote Self"] = "遥远的自身";
+$a->strings["Mirror postings from this contact"] = "把这个熟人的文章复制。";
+$a->strings["Mark this contact as remote_self, this will cause friendica to repost new entries from this contact."] = "表明这个熟人当遥远的自身。Friendica要把这个熟人的新的文章复制。";
+$a->strings["Name"] = "名字";
+$a->strings["Account Nickname"] = "帐户昵称";
+$a->strings["@Tagname - overrides Name/Nickname"] = "@Tagname越过名/昵称";
+$a->strings["Account URL"] = "帐户URL";
+$a->strings["Friend Request URL"] = "朋友请求URL";
+$a->strings["Friend Confirm URL"] = "朋友确认URL";
+$a->strings["Notification Endpoint URL"] = "通知端URL";
+$a->strings["Poll/Feed URL"] = "喂URL";
+$a->strings["New photo from this URL"] = "新照片从这个URL";
+$a->strings["- select -"] = "-选择-";
+$a->strings["Friend suggestion sent."] = "朋友建议发送了。";
+$a->strings["Suggest Friends"] = "推荐的朋友们";
+$a->strings["Suggest a friend for %s"] = "给 %s 推荐朋友";
+$a->strings["Remote privacy information not available."] = "摇隐私信息无效";
+$a->strings["Visible to:"] = "可见给:";
+$a->strings["System down for maintenance"] = "系统关闭为了维持";
+$a->strings["Welcome to Friendica"] = "Friendica欢迎你";
+$a->strings["New Member Checklist"] = "新成员清单";
+$a->strings["We would like to offer some tips and links to help make your experience enjoyable. Click any item to visit the relevant page. A link to this page will be visible from your home page for two weeks after your initial registration and then will quietly disappear."] = "我们想提供一些建议和链接以助于让你有愉快的经历。点击任意一项访问相应的网页。在你注册之后,到这个页面的链接会在你的主页显示两周,之后悄声地消失。";
+$a->strings["Getting Started"] = "入门";
+$a->strings["Friendica Walk-Through"] = "Friendica游览";
+$a->strings["On your <em>Quick Start</em> page - find a brief introduction to your profile and network tabs, make some new connections, and find some groups to join."] = "在你的<em>快速上手</em>页-找到一个简要的对你的简介和网络标签的介绍,创建一些新的连接,并找一些群组加入。";
+$a->strings["Go to Your Settings"] = "您的设置";
+$a->strings["On your <em>Settings</em> page -  change your initial password. Also make a note of your Identity Address. This looks just like an email address - and will be useful in making friends on the free social web."] = "在你的<em>设置</em>页 - 改变你最初的密码。同时也记住你的身份地址。这看起来像一个电子邮件地址 - 并且在这个自由的社交网络交友时会有用。";
+$a->strings["Review the other settings, particularly the privacy settings. An unpublished directory listing is like having an unlisted phone number. In general, you should probably publish your listing - unless all of your friends and potential friends know exactly how to find you."] = "校对别的设置,特别是隐私设置。一个未发布的目录项目是跟未出版的电话号码一样。平时,你可能应该出版你的目录项目-除非都你的朋友们和可交的朋友们已经知道确切地怎么找你。";
+$a->strings["Upload Profile Photo"] = "上传简历照片";
+$a->strings["Upload a profile photo if you have not done so already. Studies have shown that people with real photos of themselves are ten times more likely to make friends than people who do not."] = "上传一张简历照片除非你已经做过。研究表明有真正自己的照片的人比没有的交朋友们可能多十倍。";
+$a->strings["Edit Your Profile"] = "编辑您的简介";
+$a->strings["Edit your <strong>default</strong> profile to your liking. Review the settings for hiding your list of friends and hiding the profile from unknown visitors."] = "随意编你的<strong>公开的</strong>简历。评论设置为藏起来你的朋友表和简历过陌生来客。";
+$a->strings["Profile Keywords"] = "简介关键字";
+$a->strings["Set some public keywords for your default profile which describe your interests. We may be able to find other people with similar interests and suggest friendships."] = "指定一些公开关键字在您的默认简介描述您兴趣。我们可能找得了别人有相似兴趣和建议友谊。";
+$a->strings["Connecting"] = "连接着";
+$a->strings["Importing Emails"] = "进口着邮件";
+$a->strings["Enter your email access information on your Connector Settings page if you wish to import and interact with friends or mailing lists from your email INBOX"] = "输入你电子邮件使用信息在插销设置页,要是你想用你的电子邮件进口和互动朋友们或邮件表。";
+$a->strings["Go to Your Contacts Page"] = "您的熟人页";
+$a->strings["Your Contacts page is your gateway to managing friendships and connecting with friends on other networks. Typically you enter their address or site URL in the <em>Add New Contact</em> dialog."] = "您熟人页是您门口为管理熟人和连接朋友们在别的网络。典型您输入他的地址或者网站URL在<em>添加新熟人</em>对话框。";
+$a->strings["Go to Your Site's Directory"] = "您网站的目录";
+$a->strings["The Directory page lets you find other people in this network or other federated sites. Look for a <em>Connect</em> or <em>Follow</em> link on their profile page. Provide your own Identity Address if requested."] = "目录页让您找别人在这个网络或别的同盟的网站。找一个<em>连接</em>或<em>关注</em>按钮在他们的简介页。您被要求的话,提供您自己的同一个人地址。";
+$a->strings["Finding New People"] = "找新人";
+$a->strings["On the side panel of the Contacts page are several tools to find new friends. We can match people by interest, look up people by name or interest, and provide suggestions based on network relationships. On a brand new site, friend suggestions will usually begin to be populated within 24 hours."] = "在熟人页的工具栏有一些工具为找新朋友们。我们会使人们相配按名或兴趣,和以网络关系作为提醒建议的根据。在新网站,朋友建议平常开始24小时后。";
+$a->strings["Group Your Contacts"] = "给你的联系人分组";
+$a->strings["Once you have made some friends, organize them into private conversation groups from the sidebar of your Contacts page and then you can interact with each group privately on your Network page."] = "您交朋友们后,组织他们分私人交流组在您熟人页的边栏,您会私下地跟组交流在您的网络页。";
+$a->strings["Why Aren't My Posts Public?"] = "我文章怎么没公开的?";
+$a->strings["Friendica respects your privacy. By default, your posts will only show up to people you've added as friends. For more information, see the help section from the link above."] = "Friendica尊敬您的隐私。默认是您文章只被您朋友们看。更多消息在帮助部分在上面的链接。";
+$a->strings["Getting Help"] = "怎么获得帮助";
+$a->strings["Go to the Help Section"] = "看帮助部分";
+$a->strings["Our <strong>help</strong> pages may be consulted for detail on other program features and resources."] = "我们<strong>帮助</strong>页可查阅到详情关于别的编程特点和资源。";
+$a->strings["Visit %s's profile [%s]"] = "看%s的简介[%s]";
+$a->strings["Edit contact"] = "编熟人";
+$a->strings["Contacts who are not members of a group"] = "没当成员的熟人";
+$a->strings["Permission denied"] = "权限不够";
+$a->strings["Invalid profile identifier."] = "无限的简介标识符。";
+$a->strings["Profile Visibility Editor"] = "简介能见度编辑器。";
+$a->strings["Click on a contact to add or remove."] = "点击熟人为添加或删除。";
+$a->strings["Visible To"] = "能见被";
+$a->strings["All Contacts (with secure profile access)"] = "所有熟人(跟安全地简介使用权)";
+$a->strings["[Embedded content - reload page to view]"] = "[嵌入内容-重新加载页为看]";
+$a->strings["Public access denied."] = "公众看拒绝";
+$a->strings["No contacts."] = "没有熟人。";
+$a->strings["Access denied."] = "没有用权。";
+$a->strings["Only logged in users are permitted to perform a probing."] = "";
+$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "这个网站超过一天最多账户注册。请明天再试。";
+$a->strings["Import"] = "进口";
+$a->strings["Move account"] = "把账户搬出";
+$a->strings["You can import an account from another Friendica server."] = "您会从别的Friendica服务器进口账户";
+$a->strings["You need to export your account from the old server and upload it here. We will recreate your old account here with all your contacts. We will try also to inform your friends that you moved here."] = "你需要从老服务器导出你的账户并在这里上传。我们会在这里重建你的账户,包括你所有的联系人。我们也会通知你的朋友们你搬到了这里。";
+$a->strings["This feature is experimental. We can't import contacts from the OStatus network (GNU Social/Statusnet) or from Diaspora"] = "这个特性是实验性的。我们不能从 OStatus 网络 (GNU Social/Statusnet) 或者 Diaspora 导入联系人";
+$a->strings["Account file"] = "账户文件";
+$a->strings["To export your account, go to \"Settings->Export your personal data\" and select \"Export account\""] = "为了导出你的账户,点击「设置→导出你的个人信息」和选择「导出账户」";
+$a->strings["Not available."] = "不可用的";
+$a->strings["No results."] = "没有结果。";
+$a->strings["No friends to display."] = "没有朋友展示。";
+$a->strings["The post was created"] = "文章创建了";
+$a->strings["Access to this profile has been restricted."] = "使用权这个简介被限制了.";
+$a->strings["View"] = "";
+$a->strings["Previous"] = "上";
+$a->strings["Next"] = "下";
+$a->strings["list"] = "";
+$a->strings["User not found"] = "";
+$a->strings["This calendar format is not supported"] = "";
+$a->strings["No exportable data found"] = "找不到可导出的数据";
+$a->strings["calendar"] = "日历";
+$a->strings["No such group"] = "没有这个组";
+$a->strings["Group is empty"] = "组没有成员";
+$a->strings["Group: %s"] = "";
+$a->strings["This entry was edited"] = "这个条目被编辑了";
+$a->strings["%d comment"] = array(
+       0 => "%d评论",
+);
+$a->strings["Private Message"] = "私人的新闻";
+$a->strings["I like this (toggle)"] = "我喜欢这(交替)";
+$a->strings["like"] = "喜欢";
+$a->strings["I don't like this (toggle)"] = "我不喜欢这(交替)";
+$a->strings["dislike"] = "讨厌";
+$a->strings["Share this"] = "分享这个";
+$a->strings["share"] = "分享";
+$a->strings["This is you"] = "这是你";
+$a->strings["Comment"] = "评论";
+$a->strings["Bold"] = "粗体";
+$a->strings["Italic"] = "斜体";
+$a->strings["Underline"] = "下划线";
+$a->strings["Quote"] = "引语";
+$a->strings["Code"] = "源代码";
+$a->strings["Image"] = "图片";
+$a->strings["Link"] = "链接";
+$a->strings["Video"] = "录像";
+$a->strings["Edit"] = "编辑";
+$a->strings["add star"] = "加星";
+$a->strings["remove star"] = "消星";
+$a->strings["toggle star status"] = "转变星现状";
+$a->strings["starred"] = "被贴星";
+$a->strings["add tag"] = "加标签";
+$a->strings["ignore thread"] = "忽视主题";
+$a->strings["unignore thread"] = "别忽视主题";
+$a->strings["toggle ignore status"] = "切换忽视状态";
+$a->strings["ignored"] = "忽视";
+$a->strings["save to folder"] = "保存在文件夹";
+$a->strings["I will attend"] = "";
+$a->strings["I will not attend"] = "";
+$a->strings["I might attend"] = "";
+$a->strings["to"] = "至";
+$a->strings["Wall-to-Wall"] = "从墙到墙";
+$a->strings["via Wall-To-Wall:"] = "通过从墙到墙";
+$a->strings["Profile not found."] = "找不到简介。";
+$a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = "这会偶尔地发生熟人双方都要求和已经批准的时候。";
+$a->strings["Response from remote site was not understood."] = "遥网站的回答明白不了。";
+$a->strings["Unexpected response from remote site: "] = "居然回答从遥网站:";
+$a->strings["Confirmation completed successfully."] = "确认成功完成。";
+$a->strings["Remote site reported: "] = "远程站点报告:";
+$a->strings["Temporary failure. Please wait and try again."] = "临时失败。请等一会,再试。";
+$a->strings["Introduction failed or was revoked."] = "介绍失败或被吊销。";
+$a->strings["Unable to set contact photo."] = "不会指定熟人照片。";
+$a->strings["No user record found for '%s' "] = "找不到「%s」的用户记录";
+$a->strings["Our site encryption key is apparently messed up."] = "看起来我们的加密钥匙失灵了。";
+$a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "空的URL供应,或URL解不了码。";
+$a->strings["Contact record was not found for you on our site."] = "熟人记录在我们的网站找不了。";
+$a->strings["Site public key not available in contact record for URL %s."] = "没有网站公开钥匙在熟人记录在URL%s。";
+$a->strings["The ID provided by your system is a duplicate on our system. It should work if you try again."] = "身份证明由您的系统是在我们的重做。你再试应该运行。";
+$a->strings["Unable to set your contact credentials on our system."] = "不能创作您的熟人证件在我们的系统。";
+$a->strings["Unable to update your contact profile details on our system"] = "不能更新您的熟人简介消息在我们的系统";
+$a->strings["%1\$s has joined %2\$s"] = "%1\$s加入%2\$s了";
+$a->strings["%1\$s welcomes %2\$s"] = "%1\$s欢迎%2\$s";
+$a->strings["This introduction has already been accepted."] = "这个介绍已经接受了。";
+$a->strings["Profile location is not valid or does not contain profile information."] = "简介位置失效或不包含简介信息。";
+$a->strings["Warning: profile location has no identifiable owner name."] = "警告:简介位置没有可设别的主名。";
+$a->strings["Warning: profile location has no profile photo."] = "警告:简介位置没有简介图。";
+$a->strings["%d required parameter was not found at the given location"] = array(
+       0 => "%d需要的参数没找到在输入的位置。",
+);
+$a->strings["Introduction complete."] = "介绍完成的。";
+$a->strings["Unrecoverable protocol error."] = "不能恢复的协议错误";
+$a->strings["Profile unavailable."] = "简介无效";
+$a->strings["%s has received too many connection requests today."] = "%s今天已经受到了太多联络要求";
+$a->strings["Spam protection measures have been invoked."] = "垃圾保护措施被用了。";
+$a->strings["Friends are advised to please try again in 24 hours."] = "朋友们被建议请24小时后再试。";
+$a->strings["Invalid locator"] = "无效找到物";
+$a->strings["Invalid email address."] = "无效的邮件地址。";
+$a->strings["This account has not been configured for email. Request failed."] = "这个账户没有设置用电子邮件。要求没通过。";
+$a->strings["You have already introduced yourself here."] = "您已经自我介绍这儿。";
+$a->strings["Apparently you are already friends with %s."] = "看上去您已经是%s的朋友。";
+$a->strings["Invalid profile URL."] = "无效的简介URL。";
+$a->strings["Failed to update contact record."] = "更新熟人记录失败了。";
+$a->strings["Your introduction has been sent."] = "您的介绍发布了。";
+$a->strings["Remote subscription can't be done for your network. Please subscribe directly on your system."] = "";
+$a->strings["Please login to confirm introduction."] = "请登记为确认介绍。";
+$a->strings["Incorrect identity currently logged in. Please login to <strong>this</strong> profile."] = "错误的用户登记者。请用<strong>这个</strong>用户。";
+$a->strings["Confirm"] = "确认";
+$a->strings["Hide this contact"] = "隐藏这个熟人";
+$a->strings["Welcome home %s."] = "欢迎%s。";
+$a->strings["Please confirm your introduction/connection request to %s."] = "请确认您的介绍/联络要求给%s。";
+$a->strings["Please enter your 'Identity Address' from one of the following supported communications networks:"] = "请输入您的「同一人地址」这些支持的交通网络中:";
+$a->strings["If you are not yet a member of the free social web, <a href=\"%s/siteinfo\">follow this link to find a public Friendica site and join us today</a>."] = "";
+$a->strings["Friend/Connection Request"] = "朋友/连接请求";
+$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"] = "比如:jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca";
+$a->strings["Please answer the following:"] = "请回答下述的:";
+$a->strings["Does %s know you?"] = "%s是否认识你?";
+$a->strings["Add a personal note:"] = "添加一个个人便条:";
+$a->strings["StatusNet/Federated Social Web"] = "StatusNet/联合社会化网";
+$a->strings[" - please do not use this form.  Instead, enter %s into your Diaspora search bar."] = " - 请别用这个表格。反而输入%s在您的Diaspora搜索功能。";
+$a->strings["Your Identity Address:"] = "您的同一个人地址:";
+$a->strings["Submit Request"] = "提交要求";
+$a->strings["Global Directory"] = "综合目录";
+$a->strings["Find on this site"] = "找在这网站";
+$a->strings["Results for:"] = "";
+$a->strings["Site Directory"] = "网站目录";
+$a->strings["No entries (some entries may be hidden)."] = "没有文章(有的文章会被隐藏)。";
+$a->strings["People Search - %s"] = "";
+$a->strings["Forum Search - %s"] = "";
+$a->strings["No matches"] = "没有结果";
+$a->strings["Item not found"] = "项目没找到";
+$a->strings["Edit post"] = "编辑文章";
+$a->strings["Event can not end before it has started."] = "";
+$a->strings["Event title and start time are required."] = "项目标题和开始时间是必须的。";
+$a->strings["Create New Event"] = "创建新的事件";
+$a->strings["Event details"] = "项目内容";
+$a->strings["Starting date and Title are required."] = "需要开始日期和标题。";
+$a->strings["Event Starts:"] = "事件开始:";
+$a->strings["Required"] = "必须的";
+$a->strings["Finish date/time is not known or not relevant"] = "结束日/时未知或无关";
+$a->strings["Event Finishes:"] = "事件结束:";
+$a->strings["Adjust for viewer timezone"] = "调为观众的时间";
+$a->strings["Description:"] = "描述:";
+$a->strings["Title:"] = "标题:";
+$a->strings["Share this event"] = "分享这个项目";
+$a->strings["Failed to remove event"] = "删除事件失败";
+$a->strings["Event removed"] = "事件已删除";
+$a->strings["Not Found"] = "未发现";
+$a->strings["Contact added"] = "熟人添了";
+$a->strings["You already added this contact."] = "你已经添加了这个联系人。";
+$a->strings["Diaspora support isn't enabled. Contact can't be added."] = "Diaspora 支持没被启用。无法添加联系人。";
+$a->strings["OStatus support is disabled. Contact can't be added."] = "OStatus 支持没被启用。无法添加联系人。";
+$a->strings["The network type couldn't be detected. Contact can't be added."] = "网络类型无法被检测。无法添加联系人。";
+$a->strings["Profile URL"] = "";
+$a->strings["This is Friendica, version"] = "这是Friendica,版本";
+$a->strings["running at web location"] = "运作再网址";
+$a->strings["Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn more about the Friendica project."] = "请看<a href=\"http://friendica.com\">Friendica.com</a>发现多关于Friendica工程。";
+$a->strings["Bug reports and issues: please visit"] = "问题报案:请去";
+$a->strings["the bugtracker at github"] = "";
+$a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"] = "建议,夸奖,捐赠,等-请发邮件到「 Info」在Friendica点com";
+$a->strings["Installed plugins/addons/apps:"] = "安装的插件/加件/应用:";
+$a->strings["No installed plugins/addons/apps"] = "没有安装的插件/应用";
+$a->strings["On this server the following remote servers are blocked."] = "在这个服务器上以下远程服务器被封禁了。";
+$a->strings["Reason for the block"] = "封禁原因";
+$a->strings["Group created."] = "群组已创建。";
+$a->strings["Could not create group."] = "无法创建群组。";
+$a->strings["Group not found."] = "组找不到。";
+$a->strings["Group name changed."] = "组名变化了。";
+$a->strings["Save Group"] = "保存组";
+$a->strings["Create a group of contacts/friends."] = "创建一组联系人/朋友。";
+$a->strings["Group removed."] = "组删除了。";
+$a->strings["Unable to remove group."] = "不能删除组。";
+$a->strings["Delete Group"] = "删除群组";
+$a->strings["Group Editor"] = "组编辑器";
+$a->strings["Edit Group Name"] = "编辑群组名称";
+$a->strings["Members"] = "成员";
+$a->strings["All Contacts"] = "所有的熟人";
+$a->strings["Remove Contact"] = "删除联系人";
+$a->strings["Add Contact"] = "添加联系人";
+$a->strings["No profile"] = "无简介";
+$a->strings["Help:"] = "帮助:";
+$a->strings["Page not found."] = "页发现。";
+$a->strings["Welcome to %s"] = "%s欢迎你";
+$a->strings["Friendica Communications Server - Setup"] = "Friendica沟通服务器-安装";
+$a->strings["Could not connect to database."] = "解不了数据库。";
+$a->strings["Could not create table."] = "无法创建表格。";
+$a->strings["Your Friendica site database has been installed."] = "您Friendica网站数据库被安装了。";
+$a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = "您可能要手工地进口文件「database.sql」用phpmyadmin或mysql。";
+$a->strings["Please see the file \"INSTALL.txt\"."] = "请看文件「INSTALL.txt」";
+$a->strings["Database already in use."] = "";
+$a->strings["System check"] = "系统检测";
+$a->strings["Check again"] = "再检测";
+$a->strings["Database connection"] = "数据库接通";
+$a->strings["In order to install Friendica we need to know how to connect to your database."] = "为安装Friendica我们要知道怎么连接您的数据库。";
+$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "你有关于这些设置有问题的话,请给互联网托管服务或者网页管理联系。";
+$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "您下边指定的数据库应该已经存在。如果还没有,请创建后继续。";
+$a->strings["Database Server Name"] = "数据库服务器名";
+$a->strings["Database Login Name"] = "数据库登录名";
+$a->strings["Database Login Password"] = "数据库登录密码";
+$a->strings["For security reasons the password must not be empty"] = "由于安全的原因,密码不能为空";
+$a->strings["Database Name"] = "数据库名字";
+$a->strings["Site administrator email address"] = "网站行政人员邮件地址";
+$a->strings["Your account email address must match this in order to use the web admin panel."] = "您账户邮件地址必要符合这个为用网站处理仪表板";
+$a->strings["Please select a default timezone for your website"] = "请选择您网站的默认时区";
+$a->strings["Site settings"] = "网站设置";
+$a->strings["System Language:"] = "系统语言:";
+$a->strings["Set the default language for your Friendica installation interface and to send emails."] = "";
+$a->strings["Could not find a command line version of PHP in the web server PATH."] = "没找到命令行PHP在网服务器PATH。";
+$a->strings["If you don't have a command line version of PHP installed on server, you will not be able to run the background processing. See <a href='https://github.com/friendica/friendica/blob/master/doc/Install.md#set-up-the-poller'>'Setup the poller'</a>"] = "";
+$a->strings["PHP executable path"] = "PHP可执行路径";
+$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "输入全路线到php执行程序。您会留空白为继续安装。";
+$a->strings["Command line PHP"] = "命令行PHP";
+$a->strings["PHP executable is not the php cli binary (could be cgi-fgci version)"] = "PHP执行程序不是命令行PHP執行檔(有可能是cgi-fgci版本)";
+$a->strings["Found PHP version: "] = "找到 PHP 版本:";
+$a->strings["PHP cli binary"] = "命令行PHP執行檔";
+$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "您系统的命令行PHP没有能够「register_argc_argv」。";
+$a->strings["This is required for message delivery to work."] = "这必要为通信发布成功。";
+$a->strings["PHP register_argc_argv"] = "PHP register_argc_argv";
+$a->strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "错误:这系统的「register_argc_argv」子程序不能产生加密钥匙";
+$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "如果您用Windows,请看「http://www.php.net/manual/en/openssl.installation.php」。";
+$a->strings["Generate encryption keys"] = "产生加密钥匙";
+$a->strings["libCurl PHP module"] = "libCurl PHP模块";
+$a->strings["GD graphics PHP module"] = "GD显示PHP模块";
+$a->strings["OpenSSL PHP module"] = "OpenSSL PHP模块";
+$a->strings["PDO or MySQLi PHP module"] = "";
+$a->strings["mb_string PHP module"] = "mb_string PHP模块";
+$a->strings["XML PHP module"] = "XML PHP 模块";
+$a->strings["iconv module"] = "iconv 模块";
+$a->strings["Apache mod_rewrite module"] = "Apache mod_rewrite部件";
+$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "错误:Apache服务器的mod-rewrite模块是必要的可却不安装的。";
+$a->strings["Error: libCURL PHP module required but not installed."] = "错误:libCurl PHP模块是必要的可却不安装的。";
+$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "错误:GD显示PHP模块跟JPEG支持是必要的可却安装的。";
+$a->strings["Error: openssl PHP module required but not installed."] = "错误:openssl PHP模块是必要的可却不安装的。";
+$a->strings["Error: PDO or MySQLi PHP module required but not installed."] = "";
+$a->strings["Error: The MySQL driver for PDO is not installed."] = "";
+$a->strings["Error: mb_string PHP module required but not installed."] = "错误:mbstring PHP模块必要可没安装的。";
+$a->strings["Error: iconv PHP module required but not installed."] = "";
+$a->strings["Error, XML PHP module required but not installed."] = "";
+$a->strings["The web installer needs to be able to create a file called \".htconfig.php\" in the top folder of your web server and it is unable to do so."] = "网页安装器要创建一个叫 \".htconfig.php\" 的文件在你的 web 服务器的顶层目录下,但无法这么做。";
+$a->strings["This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can."] = "这常常是一个权设置,因为网服务器可能不会写文件在文件夹-即使您会。";
+$a->strings["At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Friendica top folder."] = "这个步骤头,我们给您正文要保存在叫.htconfig.php的文件在您Friendica主文件夹。";
+$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = "或者您会这个步骤不做还是实行手动的安装。请看INSTALL.txt文件为说明。";
+$a->strings[".htconfig.php is writable"] = ".htconfig.php是可写的";
+$a->strings["Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Friendica用Smarty3模板机车为建筑网页。Smarty3把模板编译成PHP为催建筑网页。";
+$a->strings["In order to store these compiled templates, the web server needs to have write access to the directory view/smarty3/ under the Friendica top level folder."] = "为了保存这些模板,网服务器要写权利于view/smarty3/目录在Friendica主目录下。";
+$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "请保险您网服务器用户(比如www-data)有这个目录的写权利。";
+$a->strings["Note: as a security measure, you should give the web server write access to view/smarty3/ only--not the template files (.tpl) that it contains."] = "注意:为了安全,您应该只给网服务器写权利于view/smarty3/-没有模板文件(.tpl)之下。";
+$a->strings["view/smarty3 is writable"] = "能写view/smarty3";
+$a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = "在 .htaccess 中的 URL 重写不工作。请检查你的服务器配置。";
+$a->strings["Url rewrite is working"] = "URL改写发挥机能";
+$a->strings["ImageMagick PHP extension is not installed"] = "";
+$a->strings["ImageMagick PHP extension is installed"] = "";
+$a->strings["ImageMagick supports GIF"] = "ImageMagick 支持 GIF";
+$a->strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = "数据库配置文件 \".htconfig.php\" 无法被写入。请在 web 服务器根目录下使用附上的文字创建一个配置文件。";
+$a->strings["<h1>What next</h1>"] = "<h1>下步是什么</h1>";
+$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "重要:您要[手工地]准备安排的任务给喂器。";
+$a->strings["Total invitation limit exceeded."] = "邀请限超过了。";
+$a->strings["%s : Not a valid email address."] = "%s : 不是效的电子邮件地址.";
+$a->strings["Please join us on Friendica"] = "请加入我们再Friendica";
+$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "邀请限超过了。请联系您的网站管理员。";
+$a->strings["%s : Message delivery failed."] = "%s : 送消息失败了。";
+$a->strings["%d message sent."] = array(
+       0 => "%d消息传送了。",
+);
+$a->strings["You have no more invitations available"] = "您没有别的邀请";
+$a->strings["Visit %s for a list of public sites that you can join. Friendica members on other sites can all connect with each other, as well as with members of many other social networks."] = "参观%s看一单公开网站您会加入。Friendica成员在别的网站都会互相连接,再跟很多别的社会网络。";
+$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = "为接受这个邀请,请再%s或什么别的Friendica网站注册。";
+$a->strings["Friendica sites all inter-connect to create a huge privacy-enhanced social web that is owned and controlled by its members. They can also connect with many traditional social networks. See %s for a list of alternate Friendica sites you can join."] = "Friendica 站点互相连接来创建一个增强隐私的由他们的成员拥有并控制的社交网络。它们也能跟多传统的社交网络连接。看 %s 来获取一份你可以选择加入的 Friendica 站点。";
+$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = "不好意思。这个系统目前没设置跟别的公开网站连接或邀请成员。";
+$a->strings["To accept this invitation, please visit and register at %s."] = "";
+$a->strings["Friendica sites all inter-connect to create a huge privacy-enhanced social web that is owned and controlled by its members. They can also connect with many traditional social networks."] = "";
+$a->strings["Send invitations"] = "发请柬";
+$a->strings["Enter email addresses, one per line:"] = "输入电子邮件地址,一行一个:";
+$a->strings["Your message:"] = "你的消息:";
+$a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = "在 Friendica,你被诚挚地邀请来加入我和其他亲密的朋友-并帮助我们创建更好的社会网络。";
+$a->strings["You will need to supply this invitation code: \$invite_code"] = "您要输入这个邀请密码:\$invite_code";
+$a->strings["Once you have registered, please connect with me via my profile page at:"] = "您一注册,请页跟我连接,用我的简介在:";
+$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendi.ca"] = "";
+$a->strings["Unable to locate original post."] = "找不到当初的新闻";
+$a->strings["Empty post discarded."] = "空帖子被丢弃了。";
+$a->strings["System error. Post not saved."] = "系统错误。x";
+$a->strings["This message was sent to you by %s, a member of the Friendica social network."] = "这个新闻是由%s,Friendica社会化网络成员之一,发给你。";
+$a->strings["You may visit them online at %s"] = "你可以网上拜访他在%s";
+$a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "你不想受到这些新闻的话,请回答这个新闻给发者联系。";
+$a->strings["%s posted an update."] = "%s贴上一个新闻。";
+$a->strings["Time Conversion"] = "时间装换";
+$a->strings["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = "Friendica提供这个服务目的是分享项目跟别的网络和朋友们在别的时区。";
+$a->strings["UTC time: %s"] = "UTC时间: %s";
+$a->strings["Current timezone: %s"] = "现在时区: %s";
+$a->strings["Converted localtime: %s"] = "装换的当地时间:%s";
+$a->strings["Please select your timezone:"] = "请选择你的时区:";
+$a->strings["No valid account found."] = "找不到效的账户。";
+$a->strings["Password reset request issued. Check your email."] = "重设密码要求发布了。核对您的收件箱。";
+$a->strings["\n\t\tDear %1\$s,\n\t\t\tA request was recently received at \"%2\$s\" to reset your account\n\t\tpassword. In order to confirm this request, please select the verification link\n\t\tbelow or paste it into your web browser address bar.\n\n\t\tIf you did NOT request this change, please DO NOT follow the link\n\t\tprovided and ignore and/or delete this email.\n\n\t\tYour password will not be changed unless we can verify that you\n\t\tissued this request."] = "\n\t\t亲爱的%1\$s,\n\t\t\t最近\"%2\$s\"收到重设你账号密码要求。为了验证此要求,请点击\n\t\t下面的链接或者粘贴在浏览器。\n\n\t\t如果你没请求这个变化,请别点击并忽视或删除这个邮件。\n\n\t\t你的密码将不改变除非我们验证这个请求是由你发地。";
+$a->strings["\n\t\tFollow this link to verify your identity:\n\n\t\t%1\$s\n\n\t\tYou will then receive a follow-up message containing the new password.\n\t\tYou may change that password from your account settings page after logging in.\n\n\t\tThe login details are as follows:\n\n\t\tSite Location:\t%2\$s\n\t\tLogin Name:\t%3\$s"] = "\n\t\t点击西面的链接为验证你的身份:\n\n\t\t%1\$s\n\n\t\t你将收一个邮件包括新的密码。登录之后你能改密码在设置页面。\n\n\t\t登录消息是:\n\n\t\t网站地址:\t%2\$s\n\t\t用户名:\t%3\$s";
+$a->strings["Password reset requested at %s"] = "重设密码要求被发布%s";
+$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "要求确认不了。(您可能已经提交它。)重设密码失败了。";
+$a->strings["Password Reset"] = "复位密码";
+$a->strings["Your password has been reset as requested."] = "您的密码被重设如要求的。";
+$a->strings["Your new password is"] = "你的新的密码是";
+$a->strings["Save or copy your new password - and then"] = "保存或复制新密码-之后";
+$a->strings["click here to login"] = "在这儿点击";
+$a->strings["Your password may be changed from the <em>Settings</em> page after successful login."] = "您的密码能被变化从<em>设置</em>页成功登记后。";
+$a->strings["\n\t\t\t\tDear %1\$s,\n\t\t\t\t\tYour password has been changed as requested. Please retain this\n\t\t\t\tinformation for your records (or change your password immediately to\n\t\t\t\tsomething that you will remember).\n\t\t\t"] = "\n\t\t\t\t亲戚的%1\$s,\n\t\t\t\t\t你的密码于你的要求被改了。请保存这个消息或者\n\t\t\t\t立刻改密码成什么容易回忆的。\n\t\t\t";
+$a->strings["\n\t\t\t\tYour login details are as follows:\n\n\t\t\t\tSite Location:\t%1\$s\n\t\t\t\tLogin Name:\t%2\$s\n\t\t\t\tPassword:\t%3\$s\n\n\t\t\t\tYou may change that password from your account settings page after logging in.\n\t\t\t"] = "\n\t\t\t\t你的登录消息是:\n\n\t\t\t\t网站地址:%1\$s\n\t\t\t\t用户名:%2\$s\n\t\t\t\t密码:%3\$s\n\n\t\t\t\t登录后你能改密码在设置页面。\n\t\t\t";
+$a->strings["Your password has been changed at %s"] = "您密码被变化在%s";
+$a->strings["Forgot your Password?"] = "忘记你的密码吗?";
+$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "输入您的邮件地址和提交为重置密码。然后核对收件箱看别的说明。";
+$a->strings["Nickname or Email: "] = "昵称或邮件地址:";
+$a->strings["Reset"] = "复位";
+$a->strings["Manage Identities and/or Pages"] = "管理身份或页";
+$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "交替不同同一人或社会/组页合用您的账户或给您「管理」批准";
+$a->strings["Select an identity to manage: "] = "选择同一个人管理:";
+$a->strings["No keywords to match. Please add keywords to your default profile."] = "没有符合的关键字。请在您的默认简介加关键字。";
+$a->strings["is interested in:"] = "感兴趣对:";
+$a->strings["Profile Match"] = "简介符合";
+$a->strings["No recipient selected."] = "没有选择的接受者。";
+$a->strings["Unable to locate contact information."] = "找不到熟人信息。";
+$a->strings["Message could not be sent."] = "消息发不了。";
+$a->strings["Message collection failure."] = "通信受到错误。";
+$a->strings["Message sent."] = "消息发了";
+$a->strings["Do you really want to delete this message?"] = "您真的想删除这个通知吗?";
+$a->strings["Message deleted."] = "消息删除了。";
+$a->strings["Conversation removed."] = "交流删除了。";
+$a->strings["Send Private Message"] = "发私人的通信";
+$a->strings["To:"] = "到:";
+$a->strings["Subject:"] = "题目:";
+$a->strings["No messages."] = "没有消息";
+$a->strings["Message not available."] = "通信不可用的";
+$a->strings["Delete message"] = "删除消息";
+$a->strings["Delete conversation"] = "删除交谈";
+$a->strings["No secure communications available. You <strong>may</strong> be able to respond from the sender's profile page."] = "没可用的安全交通。您<strong>可能</strong>会在发送人的简介页会回答。";
+$a->strings["Send Reply"] = "发回答";
+$a->strings["Unknown sender - %s"] = "生发送人-%s";
+$a->strings["You and %s"] = "您和%s";
+$a->strings["%s and You"] = "%s和您";
+$a->strings["D, d M Y - g:i A"] = "D, d M Y - g:i A";
+$a->strings["%d message"] = array(
+       0 => "%d通知",
+);
+$a->strings["Mood"] = "心情";
+$a->strings["Set your current mood and tell your friends"] = "选择现在的心情而告诉朋友们";
+$a->strings["Remove term"] = "删除关键字";
+$a->strings["Warning: This group contains %s member from a network that doesn't allow non public messages."] = array(
+       0 => "警告:这个组包含 %s 来自不允许非公开消息的网络的成员。",
+);
+$a->strings["Messages in this group won't be send to these receivers."] = "这个组中的消息不会被发送至这些接收者。";
+$a->strings["Private messages to this person are at risk of public disclosure."] = "私人通信给这个人回被公开。";
+$a->strings["Invalid contact."] = "无效熟人。";
+$a->strings["Commented Order"] = "评论时间顺序";
+$a->strings["Sort by Comment Date"] = "按评论日期顺序排列";
+$a->strings["Posted Order"] = "贴时间顺序";
+$a->strings["Sort by Post Date"] = "按发布日期顺序排列";
+$a->strings["Posts that mention or involve you"] = "提或关您的文章";
+$a->strings["New"] = "新";
+$a->strings["Activity Stream - by date"] = "活动河流-按日期";
+$a->strings["Shared Links"] = "共享的链接";
+$a->strings["Interesting Links"] = "有意思的超链接";
+$a->strings["Starred"] = "被星";
+$a->strings["Favourite Posts"] = "最喜欢的文章";
+$a->strings["Invalid request identifier."] = "无效要求身份号。";
+$a->strings["Discard"] = "丢弃";
+$a->strings["Ignore"] = "忽视";
+$a->strings["Network Notifications"] = "网络通知";
+$a->strings["System Notifications"] = "系统通知";
+$a->strings["Personal Notifications"] = "私人通知";
+$a->strings["Home Notifications"] = "主页通知";
+$a->strings["Show Ignored Requests"] = "显示不理的要求";
+$a->strings["Hide Ignored Requests"] = "隐藏不理的要求";
+$a->strings["Notification type: "] = "通知种类:";
+$a->strings["suggested by %s"] = "由%s建议的";
+$a->strings["Hide this contact from others"] = "隐藏这个熟人给别人";
+$a->strings["Post a new friend activity"] = "表新朋友活动";
+$a->strings["if applicable"] = "或适用";
+$a->strings["Approve"] = "批准";
+$a->strings["Claims to be known to you: "] = "声称被您认识:";
+$a->strings["yes"] = "是";
+$a->strings["no"] = "否";
+$a->strings["Shall your connection be bidirectional or not?"] = "";
+$a->strings["Accepting %s as a friend allows %s to subscribe to your posts, and you will also receive updates from them in your news feed."] = "";
+$a->strings["Accepting %s as a subscriber allows them to subscribe to your posts, but you will not receive updates from them in your news feed."] = "";
+$a->strings["Accepting %s as a sharer allows them to subscribe to your posts, but you will not receive updates from them in your news feed."] = "";
+$a->strings["Friend"] = "朋友";
+$a->strings["Sharer"] = "分享者";
+$a->strings["Subscriber"] = "订阅者";
+$a->strings["No introductions."] = "没有介绍。";
+$a->strings["Show unread"] = "显示未读";
+$a->strings["Show all"] = "显示全部";
+$a->strings["No more %s notifications."] = "";
+$a->strings["No more system notifications."] = "没别系统通知。";
+$a->strings["Post successful."] = "评论发表了。";
+$a->strings["OpenID protocol error. No ID returned."] = "OpenID协议错误。没ID还。 ";
+$a->strings["Account not found and OpenID registration is not permitted on this site."] = "找不到账户和OpenID注册不允许。";
+$a->strings["Subscribing to OStatus contacts"] = "正在订阅 OStatus 联系人";
+$a->strings["No contact provided."] = "";
+$a->strings["Couldn't fetch information for contact."] = "";
+$a->strings["Couldn't fetch friends for contact."] = "";
+$a->strings["Done"] = "完成";
+$a->strings["success"] = "成功";
+$a->strings["failed"] = "失败";
+$a->strings["Keep this window open until done."] = "保持窗口打开直到完成。";
+$a->strings["Not Extended"] = "";
+$a->strings["Poke/Prod"] = "戳";
+$a->strings["poke, prod or do other things to somebody"] = "把人家戳或别的行动";
+$a->strings["Recipient"] = "接受者";
+$a->strings["Choose what you wish to do to recipient"] = "选择您想把别人作";
+$a->strings["Make this post private"] = "使这个文章私人";
+$a->strings["Tips for New Members"] = "新人建议";
+$a->strings["Image uploaded but image cropping failed."] = "照片上传去了,但修剪失灵。";
+$a->strings["Image size reduction [%s] failed."] = "照片减少[%s]失灵。";
+$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "万一新照片一会出现,换档重新加载或者成为空浏览器高速缓存。";
+$a->strings["Unable to process image"] = "不能处理照片";
+$a->strings["Image exceeds size limit of %s"] = "";
+$a->strings["Unable to process image."] = "处理不了图像.";
+$a->strings["Upload File:"] = "上传文件:";
+$a->strings["Select a profile:"] = "选择一个简介";
+$a->strings["Upload"] = "上传";
+$a->strings["or"] = "或者";
+$a->strings["skip this step"] = "略过这步";
+$a->strings["select a photo from your photo albums"] = "从您的照片册选择一片。";
+$a->strings["Crop Image"] = "修剪照片";
+$a->strings["Please adjust the image cropping for optimum viewing."] = "请调图片剪裁为最好看。";
+$a->strings["Done Editing"] = "编辑完成";
+$a->strings["Image uploaded successfully."] = "照片成功地上传了。";
+$a->strings["Image upload failed."] = "图像上载失败了.";
+$a->strings["Registration successful. Please check your email for further instructions."] = "注册成功了。请咨询说明再您的收件箱。";
+$a->strings["Failed to send email message. Here your accout details:<br> login: %s<br> password: %s<br><br>You can change your password after login."] = "发送邮件失败。你的账户消息是:<br>用户名:%s<br> 密码: %s<br><br>。登录后能改密码。";
+$a->strings["Registration successful."] = "注册成功。";
+$a->strings["Your registration can not be processed."] = "处理不了您的注册。";
+$a->strings["Your registration is pending approval by the site owner."] = "您的注册等网页主的批准。";
+$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "您会(可选的)用OpenID填这个表格通过提供您的OpenID和点击「注册」。";
+$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "如果您没熟悉OpenID,请留空这个栏和填另些栏。";
+$a->strings["Your OpenID (optional): "] = "您的OpenID(可选的):";
+$a->strings["Include your profile in member directory?"] = "放您的简介再员目录?";
+$a->strings["Note for the admin"] = "";
+$a->strings["Leave a message for the admin, why you want to join this node"] = "给管理员留条消息,为什么你想加入这个节点";
+$a->strings["Membership on this site is by invitation only."] = "会员身份在这个网站是光通过邀请。";
+$a->strings["Your invitation ID: "] = "您邀请ID:";
+$a->strings["Registration"] = "注册";
+$a->strings["Your Full Name (e.g. Joe Smith, real or real-looking): "] = "";
+$a->strings["Your Email Address: "] = "你的电子邮件地址:";
+$a->strings["New Password:"] = "新密码:";
+$a->strings["Leave empty for an auto generated password."] = "留空以使用自动生成的密码。";
+$a->strings["Confirm:"] = "确认:";
+$a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be '<strong>nickname@\$sitename</strong>'."] = "选择简介昵称。昵称头一字必须拉丁字。您再这个网站的简介地址将「<strong>example@\$sitename</strong>」.";
+$a->strings["Choose a nickname: "] = "选择昵称:";
+$a->strings["Import your profile to this friendica instance"] = "进口您的简介到这个friendica服务器";
+$a->strings["Account approved."] = "账户已被批准。";
+$a->strings["Registration revoked for %s"] = "%s的登记撤销了";
+$a->strings["Please login."] = "清登录。";
+$a->strings["Remove My Account"] = "删除我的账户";
+$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "这要完全删除您的账户。这一做过,就不能恢复。";
+$a->strings["Please enter your password for verification:"] = "请输入密码为确认:";
+$a->strings["Resubscribing to OStatus contacts"] = "重新订阅 OStatus 联系人";
+$a->strings["Error"] = "错误";
+$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s关注着%2\$s的%3\$s";
+$a->strings["Tag removed"] = "标签去除了";
+$a->strings["Remove Item Tag"] = "去除项目标签";
+$a->strings["Select a tag to remove: "] = "选择标签去除";
+$a->strings["Remove"] = "移走";
+$a->strings["Export account"] = "导出账户";
+$a->strings["Export your account info and contacts. Use this to make a backup of your account and/or to move it to another server."] = "导出你的账户信息和联系人。用这个功能来生成一个你的账户的备份,并且/或者把它移到另外一个服务器。";
+$a->strings["Export all"] = "导出全部";
+$a->strings["Export your accout info, contacts and all your items as json. Could be a very big file, and could take a lot of time. Use this to make a full backup of your account (photos are not exported)"] = "导出你的账户信息、联系人和所有你的项目为 json 格式。可能会是一个很大的文件,并可能花费很多时间。用这个功能来做一个你的账户的全备份(照片不会被导出)";
+$a->strings["Export personal data"] = "导出个人信息";
+$a->strings["Do you really want to delete this video?"] = "你真的想删除这个视频吗?";
+$a->strings["Delete Video"] = "删除视频";
+$a->strings["No videos selected"] = "没有视频被选择";
+$a->strings["Access to this item is restricted."] = "这个项目使用权限的。";
+$a->strings["View Album"] = "看照片册";
+$a->strings["Recent Videos"] = "最近的视频";
+$a->strings["Upload New Videos"] = "上传新视频";
+$a->strings["Invalid request."] = "无效请求。";
+$a->strings["Number of daily wall messages for %s exceeded. Message failed."] = "一天最多墙通知给%s超过了。通知没有通过 。";
+$a->strings["Unable to check your home location."] = "核对不了您的主页。";
+$a->strings["No recipient."] = "没有接受者。";
+$a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = "如果您想%s回答,请核对您网站的隐私设置允许生发送人的私人邮件。";
+$a->strings["No potential page delegates located."] = "找不到可能代表页人。";
+$a->strings["Delegates are able to manage all aspects of this account/page except for basic account settings. Please do not delegate your personal account to anybody that you do not trust completely."] = "代表会管理所有的方面这个账户/页除了基础账户配置以外。请别代表您私人账户给您没完全信的人。";
+$a->strings["Existing Page Managers"] = "目前页管理员";
+$a->strings["Existing Page Delegates"] = "目前页代表";
+$a->strings["Potential Delegates"] = "潜力的代表";
+$a->strings["Add"] = "加";
+$a->strings["No entries."] = "没有项目。";
+$a->strings["Item has been removed."] = "项目被删除了。";
+$a->strings["Recent Photos"] = "最近的照片";
+$a->strings["Upload New Photos"] = "上传新照片";
+$a->strings["everybody"] = "每人";
+$a->strings["Contact information unavailable"] = "熟人信息不可用";
+$a->strings["Album not found."] = "取回不了相册.";
+$a->strings["Delete Album"] = "删除相册";
+$a->strings["Do you really want to delete this photo album and all its photos?"] = "您真的想删除这个相册和所有里面的照相吗?";
+$a->strings["Delete Photo"] = "删除照片";
+$a->strings["Do you really want to delete this photo?"] = "您真的想删除这个照相吗?";
+$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "%1\$s被%3\$s标签在%2\$s";
+$a->strings["a photo"] = "一张照片";
+$a->strings["Image file is empty."] = "图片文件空的。";
+$a->strings["No photos selected"] = "没有照片挑选了";
+$a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = "您用%2$.2f兆字节的%1$.2f兆字节照片存储。";
+$a->strings["Upload Photos"] = "上传照片";
+$a->strings["New album name: "] = "新册名:";
+$a->strings["or existing album name: "] = "或现有册名";
+$a->strings["Do not show a status post for this upload"] = "别显示现状报到关于这个上传";
+$a->strings["Show to Groups"] = "给组表示";
+$a->strings["Show to Contacts"] = "给熟人表示";
+$a->strings["Private Photo"] = "私人照相";
+$a->strings["Public Photo"] = "公开照相";
+$a->strings["Edit Album"] = "编照片册";
+$a->strings["Show Newest First"] = "先表示最新的";
+$a->strings["Show Oldest First"] = "先表示最老的";
+$a->strings["View Photo"] = "看照片";
+$a->strings["Permission denied. Access to this item may be restricted."] = "无权利。用这个项目可能受限制。";
+$a->strings["Photo not available"] = "不可获得的照片";
+$a->strings["View photo"] = "看照片";
+$a->strings["Edit photo"] = "编辑照片";
+$a->strings["Use as profile photo"] = "用为资料图";
+$a->strings["View Full Size"] = "看全尺寸";
+$a->strings["Tags: "] = "标签:";
+$a->strings["[Remove any tag]"] = "[删除任何标签]";
+$a->strings["New album name"] = "新册名";
+$a->strings["Caption"] = "字幕";
+$a->strings["Add a Tag"] = "加标签";
+$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "例子:@zhang, @Zhang_San, @li@example.com, #Beijing, #ktv";
+$a->strings["Do not rotate"] = "不要旋转";
+$a->strings["Rotate CW (right)"] = "顺时针地转动(左)";
+$a->strings["Rotate CCW (left)"] = "反顺时针地转动(右)";
+$a->strings["Private photo"] = "私人照相";
+$a->strings["Public photo"] = "公开照相";
+$a->strings["Map"] = "";
+$a->strings["{0} wants to be your friend"] = "{0}想成为您的朋友";
+$a->strings["{0} sent you a message"] = "{0}发给您一个通信";
+$a->strings["{0} requested registration"] = "{0}要求注册";
+$a->strings["Profile deleted."] = "简介删除了。";
+$a->strings["Profile-"] = "简介-";
+$a->strings["New profile created."] = "创造新的简介";
+$a->strings["Profile unavailable to clone."] = "简介不可用为复制。";
+$a->strings["Profile Name is required."] = "必要简介名";
+$a->strings["Marital Status"] = "婚姻状况 ";
+$a->strings["Romantic Partner"] = "情人";
+$a->strings["Work/Employment"] = "工作";
+$a->strings["Religion"] = "宗教";
+$a->strings["Political Views"] = "政治观念";
+$a->strings["Gender"] = "性别";
+$a->strings["Sexual Preference"] = "性取向";
+$a->strings["XMPP"] = "";
+$a->strings["Homepage"] = "主页";
+$a->strings["Interests"] = "兴趣";
+$a->strings["Address"] = "地址";
+$a->strings["Location"] = "位置";
+$a->strings["Profile updated."] = "简介更新了。";
+$a->strings[" and "] = "和";
+$a->strings["public profile"] = "公开简介";
+$a->strings["%1\$s changed %2\$s to &ldquo;%3\$s&rdquo;"] = "%1\$s把%2\$s变化成&ldquo;%3\$s&rdquo;";
+$a->strings[" - Visit %1\$s's %2\$s"] = " - 看 %1\$s的%2\$s";
+$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s有更新的%2\$s,修改%3\$s.";
+$a->strings["Hide contacts and friends:"] = "隐藏联系人和朋友:";
+$a->strings["Hide your contact/friend list from viewers of this profile?"] = "藏起来发现您的熟人/朋友单不让这个简介看着看?";
+$a->strings["Show more profile fields:"] = "";
+$a->strings["Profile Actions"] = "";
+$a->strings["Edit Profile Details"] = "剪辑简介消息";
+$a->strings["Change Profile Photo"] = "改变简介照片";
+$a->strings["View this profile"] = "看这个简介";
+$a->strings["Create a new profile using these settings"] = "使用这些设置创建一份新的简介";
+$a->strings["Clone this profile"] = "复制这个简介";
+$a->strings["Delete this profile"] = "删除这个简介";
+$a->strings["Basic information"] = "基本信息";
+$a->strings["Profile picture"] = "";
+$a->strings["Preferences"] = "偏好";
+$a->strings["Status information"] = "状态信息";
+$a->strings["Additional information"] = "更多信息";
+$a->strings["Relation"] = "关系";
+$a->strings["Your Gender:"] = "你的性:";
+$a->strings["<span class=\"heart\">&hearts;</span> Marital Status:"] = "<span class=\"heart\">&hearts;</span>婚姻状况:";
+$a->strings["Example: fishing photography software"] = "例如:钓鱼 照片 软件";
+$a->strings["Profile Name:"] = "简介名:";
+$a->strings["This is your <strong>public</strong> profile.<br />It <strong>may</strong> be visible to anybody using the internet."] = "这是你的<strong>公开的</strong>简介。<br />它<strong>可能</strong>被所有的因特网用的看到。";
+$a->strings["Your Full Name:"] = "你的全名:";
+$a->strings["Title/Description:"] = "标题/描述:";
+$a->strings["Street Address:"] = "地址:";
+$a->strings["Locality/City:"] = "现场/城市:";
+$a->strings["Region/State:"] = "区域/省";
+$a->strings["Postal/Zip Code:"] = "邮政编码:";
+$a->strings["Country:"] = "国家:";
+$a->strings["Who: (if applicable)"] = "谁:(要是使用)";
+$a->strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "比如:limou,李某,limou@example。com";
+$a->strings["Since [date]:"] = "追溯[日期]:";
+$a->strings["Tell us about yourself..."] = "给我们自我介绍...";
+$a->strings["XMPP (Jabber) address:"] = "XMPP (Jabber) 地址:";
+$a->strings["The XMPP address will be propagated to your contacts so that they can follow you."] = "这个 XMPP 地址会被传播到你的联系人从而他们可以关注你。";
+$a->strings["Homepage URL:"] = "主页URL:";
+$a->strings["Religious Views:"] = " 宗教信仰 :";
+$a->strings["Public Keywords:"] = "公开关键字 :";
+$a->strings["(Used for suggesting potential friends, can be seen by others)"] = "(用于建议可能的朋友们,会被别人看)";
+$a->strings["Private Keywords:"] = "私人关键字";
+$a->strings["(Used for searching profiles, never shown to others)"] = "(用于搜索简介,没有给别人看)";
+$a->strings["Musical interests"] = "音乐兴趣";
+$a->strings["Books, literature"] = "书,文学";
+$a->strings["Television"] = "电视";
+$a->strings["Film/dance/culture/entertainment"] = "电影/跳舞/文化/娱乐";
+$a->strings["Hobbies/Interests"] = "爱好/兴趣";
+$a->strings["Love/romance"] = "爱情/浪漫";
+$a->strings["Work/employment"] = "工作";
+$a->strings["School/education"] = "学院/教育";
+$a->strings["Contact information and Social Networks"] = "熟人信息和社会化网络";
+$a->strings["Edit/Manage Profiles"] = "编辑/管理简介";
+$a->strings["Only logged in users are permitted to perform a search."] = "只有已登录的用户被允许进行搜索。";
+$a->strings["Too Many Requests"] = "过多请求";
+$a->strings["Only one search per minute is permitted for not logged in users."] = "对未登录的用户,每分钟只允许一条搜索。";
+$a->strings["Items tagged with: %s"] = "";
+$a->strings["Results for: %s"] = "";
+$a->strings["Account"] = "帐户";
+$a->strings["Additional features"] = "附加的特点";
+$a->strings["Display"] = "显示";
+$a->strings["Social Networks"] = "社会化网络";
+$a->strings["Plugins"] = "插件";
+$a->strings["Connected apps"] = "连接着应用";
+$a->strings["Remove account"] = "删除账户";
+$a->strings["Missing some important data!"] = "缺失一些重要数据!";
+$a->strings["Update"] = "更新";
+$a->strings["Failed to connect with email account using the settings provided."] = "不能连接电子邮件账户用输入的设置。";
+$a->strings["Email settings updated."] = "电子邮件设置更新了";
+$a->strings["Features updated"] = "特点更新了";
+$a->strings["Relocate message has been send to your contacts"] = "调动信息寄给您的熟人";
+$a->strings["Empty passwords are not allowed. Password unchanged."] = "空的密码禁止。密码没未改变的。";
+$a->strings["Wrong password."] = "密码不正确。";
+$a->strings["Password changed."] = "密码变化了。";
+$a->strings["Password update failed. Please try again."] = "密码更新失败了。请再试。";
+$a->strings[" Please use a shorter name."] = "请用短一点个名。";
+$a->strings[" Name too short."] = " 名字太短。";
+$a->strings["Wrong Password"] = "密码不正确";
+$a->strings[" Not valid email."] = " 电子邮件地址无效.";
+$a->strings[" Cannot change to that email."] = " 不能更改到那个邮件地址。";
+$a->strings["Private forum has no privacy permissions. Using default privacy group."] = "私人评坛没有隐私批准。默认隐私组用者。";
+$a->strings["Private forum has no privacy permissions and no default privacy group."] = "私人评坛没有隐私批准或默认隐私组。";
+$a->strings["Settings updated."] = "设置更新了。";
+$a->strings["Add application"] = "加入应用";
+$a->strings["Save Settings"] = "保存设置";
+$a->strings["Consumer Key"] = "钥匙(Consumer Key)";
+$a->strings["Consumer Secret"] = "密码(Consumer Secret)";
+$a->strings["Redirect"] = "重定向";
+$a->strings["Icon url"] = "图符URL";
+$a->strings["You can't edit this application."] = "您不能编辑这个应用。";
+$a->strings["Connected Apps"] = "连接着应用";
+$a->strings["Client key starts with"] = "客户钥匙头字是";
+$a->strings["No name"] = "无名";
+$a->strings["Remove authorization"] = "撤消权能";
+$a->strings["No Plugin settings configured"] = "没插件设置配置了";
+$a->strings["Plugin Settings"] = "插件设置";
+$a->strings["Off"] = "关";
+$a->strings["On"] = "开";
+$a->strings["Additional Features"] = "附加特性";
+$a->strings["General Social Media Settings"] = "通用社交媒体设置";
+$a->strings["Disable intelligent shortening"] = "";
+$a->strings["Normally the system tries to find the best link to add to shortened posts. If this option is enabled then every shortened post will always point to the original friendica post."] = "";
+$a->strings["Automatically follow any GNU Social (OStatus) followers/mentioners"] = "";
+$a->strings["If you receive a message from an unknown OStatus user, this option decides what to do. If it is checked, a new contact will be created for every unknown user."] = "";
+$a->strings["Default group for OStatus contacts"] = "用于 OStatus 联系人的默认组";
+$a->strings["Your legacy GNU Social account"] = "";
+$a->strings["If you enter your old GNU Social/Statusnet account name here (in the format user@domain.tld), your contacts will be added automatically. The field will be emptied when done."] = "";
+$a->strings["Repair OStatus subscriptions"] = "修复 OStatus 订阅";
+$a->strings["Built-in support for %s connectivity is %s"] = "包括的支持为%s连通性是%s";
+$a->strings["enabled"] = "能够做的";
+$a->strings["disabled"] = "已停用";
+$a->strings["GNU Social (OStatus)"] = "";
+$a->strings["Email access is disabled on this site."] = "电子邮件访问在这个站上被禁用。";
+$a->strings["Email/Mailbox Setup"] = "邮件收件箱设置";
+$a->strings["If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox."] = "如果您想用这股服务(可选的)跟邮件熟人交流,请指定怎么连通您的收件箱。";
+$a->strings["Last successful email check:"] = "上个成功收件箱检查:";
+$a->strings["IMAP server name:"] = "IMAP服务器名字:";
+$a->strings["IMAP port:"] = "IMAP服务器端口:";
+$a->strings["Security:"] = "安全:";
+$a->strings["None"] = "没有";
+$a->strings["Email login name:"] = "邮件登记名:";
+$a->strings["Email password:"] = "邮件密码:";
+$a->strings["Reply-to address:"] = "回答地址:";
+$a->strings["Send public posts to all email contacts:"] = "发公开的文章给所有的邮件熟人:";
+$a->strings["Action after import:"] = "进口后行动:";
+$a->strings["Move to folder"] = "搬到文件夹";
+$a->strings["Move to folder:"] = "搬到文件夹:";
+$a->strings["No special theme for mobile devices"] = "没专门适合手机的主题";
+$a->strings["Display Settings"] = "表示设置";
+$a->strings["Display Theme:"] = "显示主题:";
+$a->strings["Mobile Theme:"] = "手机主题:";
+$a->strings["Suppress warning of insecure networks"] = "";
+$a->strings["Should the system suppress the warning that the current group contains members of networks that can't receive non public postings."] = "";
+$a->strings["Update browser every xx seconds"] = "更新游览器每XX秒";
+$a->strings["Minimum of 10 seconds. Enter -1 to disable it."] = "";
+$a->strings["Number of items to display per page:"] = "每页表示多少项目:";
+$a->strings["Maximum of 100 items"] = "最多100项目";
+$a->strings["Number of items to display per page when viewed from mobile device:"] = "用手机看一页展示多少项目:";
+$a->strings["Don't show emoticons"] = "不显示表情符号";
+$a->strings["Calendar"] = "日历";
+$a->strings["Beginning of week:"] = "一周的开始:";
+$a->strings["Don't show notices"] = "不显示提示";
+$a->strings["Infinite scroll"] = "无限的滚动";
+$a->strings["Automatic updates only at the top of the network page"] = "";
+$a->strings["When disabled, the network page is updated all the time, which could be confusing while reading."] = "";
+$a->strings["Bandwith Saver Mode"] = "省流量模式";
+$a->strings["When enabled, embedded content is not displayed on automatic updates, they only show on page reload."] = "当启用时,嵌入的内容不会在自动更新时显示,它们只在页面重载时显示。";
+$a->strings["General Theme Settings"] = "通用主题设置";
+$a->strings["Custom Theme Settings"] = "自定义主题设置";
+$a->strings["Content Settings"] = "内容设置";
+$a->strings["Theme settings"] = "主题设置";
+$a->strings["Account Types"] = "账户类型";
+$a->strings["Personal Page Subtypes"] = "";
+$a->strings["Community Forum Subtypes"] = "";
+$a->strings["Personal Page"] = "个人页面";
+$a->strings["Account for a personal profile."] = "";
+$a->strings["Organisation Page"] = "";
+$a->strings["Account for an organisation that automatically approves contact requests as \"Followers\"."] = "";
+$a->strings["News Page"] = "";
+$a->strings["Account for a news reflector that automatically approves contact requests as \"Followers\"."] = "";
+$a->strings["Community Forum"] = "";
+$a->strings["Account for community discussions."] = "";
+$a->strings["Normal Account Page"] = "标准账户页面";
+$a->strings["Account for a regular personal profile that requires manual approval of \"Friends\" and \"Followers\"."] = "";
+$a->strings["Soapbox Page"] = "演讲台页";
+$a->strings["Account for a public profile that automatically approves contact requests as \"Followers\"."] = "";
+$a->strings["Public Forum"] = "";
+$a->strings["Automatically approves all contact requests."] = "";
+$a->strings["Automatic Friend Page"] = "自动朋友页";
+$a->strings["Account for a popular profile that automatically approves contact requests as \"Friends\"."] = "";
+$a->strings["Private Forum [Experimental]"] = "隐私评坛[实验性的 ]";
+$a->strings["Requires manual approval of contact requests."] = "";
+$a->strings["OpenID:"] = "OpenID:";
+$a->strings["(Optional) Allow this OpenID to login to this account."] = "(可选的) 允许这个 OpenID 登录这个账户。";
+$a->strings["Publish your default profile in your local site directory?"] = "出版您默认简介在您当地的网站目录?";
+$a->strings["Your profile may be visible in public."] = "";
+$a->strings["Publish your default profile in the global social directory?"] = "出版您默认简介在综合社会目录?";
+$a->strings["Hide your contact/friend list from viewers of your default profile?"] = "藏起来  发现您的熟人/朋友单不让这个简介看着看?\n ";
+$a->strings["If enabled, posting public messages to Diaspora and other networks isn't possible."] = "";
+$a->strings["Allow friends to post to your profile page?"] = "允许朋友们贴文章在您的简介页?";
+$a->strings["Allow friends to tag your posts?"] = "允许朋友们标签您的文章?";
+$a->strings["Allow us to suggest you as a potential friend to new members?"] = "允许我们建议您潜力朋友给新成员?";
+$a->strings["Permit unknown people to send you private mail?"] = "允许生人寄给您私人邮件?";
+$a->strings["Profile is <strong>not published</strong>."] = "简介是<strong>没出版</strong>";
+$a->strings["Your Identity Address is <strong>'%s'</strong> or '%s'."] = "";
+$a->strings["Automatically expire posts after this many days:"] = "在这数天后自动使文章过期:";
+$a->strings["If empty, posts will not expire. Expired posts will be deleted"] = "如果为空,文章不会过期。过期的文章将被删除";
+$a->strings["Advanced expiration settings"] = "高级过期设置";
+$a->strings["Advanced Expiration"] = "先进的过期";
+$a->strings["Expire posts:"] = "把文章过期:";
+$a->strings["Expire personal notes:"] = "把私人便条过期:";
+$a->strings["Expire starred posts:"] = "把星的文章过期:";
+$a->strings["Expire photos:"] = "把照片过期:";
+$a->strings["Only expire posts by others:"] = "只别人的文章过期:";
+$a->strings["Account Settings"] = "帐户设置";
+$a->strings["Password Settings"] = "密码设置";
+$a->strings["Leave password fields blank unless changing"] = "留空密码字段,除非要修改";
+$a->strings["Current Password:"] = "当前密码:";
+$a->strings["Your current password to confirm the changes"] = "你的当前密码,来确认修改";
+$a->strings["Password:"] = "密码:";
+$a->strings["Basic Settings"] = "基础设置";
+$a->strings["Email Address:"] = "电子邮件地址:";
+$a->strings["Your Timezone:"] = "你的时区:";
+$a->strings["Your Language:"] = "你的语言:";
+$a->strings["Set the language we use to show you friendica interface and to send you emails"] = "";
+$a->strings["Default Post Location:"] = "默认文章位置:";
+$a->strings["Use Browser Location:"] = "使用浏览器位置:";
+$a->strings["Security and Privacy Settings"] = "安全和隐私设置";
+$a->strings["Maximum Friend Requests/Day:"] = "每天最大朋友请求数:";
+$a->strings["(to prevent spam abuse)"] = "(用于防止垃圾信息滥用)";
+$a->strings["Default Post Permissions"] = "默认文章权限";
+$a->strings["(click to open/close)"] = "(点击来打开/关闭)";
+$a->strings["Default Private Post"] = "默认私人文章";
+$a->strings["Default Public Post"] = "默认公开文章";
+$a->strings["Default Permissions for New Posts"] = "新文章的默认权限";
+$a->strings["Maximum private messages per day from unknown people:"] = "每天来自未知的人的私信:";
+$a->strings["Notification Settings"] = "通知设置";
+$a->strings["By default post a status message when:"] = "默认地发现状通知如果:";
+$a->strings["accepting a friend request"] = "接受朋友邀请";
+$a->strings["joining a forum/community"] = "加入一个论坛/社区";
+$a->strings["making an <em>interesting</em> profile change"] = "把简介有意思地变修改";
+$a->strings["Send a notification email when:"] = "发一个消息要是:";
+$a->strings["You receive an introduction"] = "你收到一份介绍";
+$a->strings["Your introductions are confirmed"] = "你的介绍被确认了";
+$a->strings["Someone writes on your profile wall"] = "某人写在你的简历墙";
+$a->strings["Someone writes a followup comment"] = "某人写一个后续的评论";
+$a->strings["You receive a private message"] = "你收到一封私信";
+$a->strings["You receive a friend suggestion"] = "你受到一个朋友建议";
+$a->strings["You are tagged in a post"] = "你被在新闻标签";
+$a->strings["You are poked/prodded/etc. in a post"] = "您在文章被戳";
+$a->strings["Activate desktop notifications"] = "启用桌面通知";
+$a->strings["Show desktop popup on new notifications"] = "在有新的提示时显示桌面弹出窗口";
+$a->strings["Text-only notification emails"] = "纯文本通知邮件";
+$a->strings["Send text only notification emails, without the html part"] = "发送纯文本通知邮件,无 html 部分";
+$a->strings["Advanced Account/Page Type Settings"] = "专家账户/页种设置";
+$a->strings["Change the behaviour of this account for special situations"] = "把这个账户特别情况的时候行动变化";
+$a->strings["Relocate"] = "调动";
+$a->strings["If you have moved this profile from another server, and some of your contacts don't receive your updates, try pushing this button."] = "如果您调动这个简介从别的服务器但有的熟人没收到您的更新,尝试按这个钮。";
+$a->strings["Resend relocate message to contacts"] = "把调动信息寄给熟人";
+$a->strings["Do you really want to delete this suggestion?"] = "您真的想删除这个建议吗?";
+$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "没有建议。如果这是新网站,请24小时后再试。";
+$a->strings["Ignore/Hide"] = "不理/隐藏";
+$a->strings["Sorry, maybe your upload is bigger than the PHP configuration allows"] = "不好意思,可能你上传的是PHP设置允许的大";
+$a->strings["Or - did you try to upload an empty file?"] = "或者,你是不是上传空的文件?";
+$a->strings["File exceeds size limit of %s"] = "文件超过了 %s 的大小限制";
+$a->strings["File upload failed."] = "文件上传失败。";
+$a->strings["Theme settings updated."] = "主题设置更新了。";
+$a->strings["Site"] = "网站";
+$a->strings["Users"] = "用户";
+$a->strings["Themes"] = "主题";
+$a->strings["DB updates"] = "数据库更新";
+$a->strings["Inspect Queue"] = "";
+$a->strings["Server Blocklist"] = "";
+$a->strings["Federation Statistics"] = "";
+$a->strings["Delete Item"] = "删除项目";
+$a->strings["Logs"] = "记录";
+$a->strings["View Logs"] = "查看日志";
+$a->strings["probe address"] = "试探地址";
+$a->strings["check webfinger"] = "查webfinger";
+$a->strings["Plugin Features"] = "插件特点";
+$a->strings["diagnostics"] = "诊断";
+$a->strings["User registrations waiting for confirmation"] = "用户注册等确认";
+$a->strings["The blocked domain"] = "被封禁的域名";
+$a->strings["The reason why you blocked this domain."] = "封禁这个域名的原因。";
+$a->strings["Delete domain"] = "删除域名";
+$a->strings["Check to delete this entry from the blocklist"] = "";
+$a->strings["Administration"] = "管理";
+$a->strings["This page can be used to define a black list of servers from the federated network that are not allowed to interact with your node. For all entered domains you should also give a reason why you have blocked the remote server."] = "";
+$a->strings["The list of blocked servers will be made publically available on the /friendica page so that your users and people investigating communication problems can find the reason easily."] = "";
+$a->strings["Add new entry to block list"] = "";
+$a->strings["Server Domain"] = "服务器域名";
+$a->strings["The domain of the new server to add to the block list. Do not include the protocol."] = "";
+$a->strings["Block reason"] = "封禁原因";
+$a->strings["Add Entry"] = "添加条目";
+$a->strings["Save changes to the blocklist"] = "";
+$a->strings["Current Entries in the Blocklist"] = "";
+$a->strings["Delete entry from blocklist"] = "";
+$a->strings["Delete entry from blocklist?"] = "";
+$a->strings["Server added to blocklist."] = "";
+$a->strings["Site blocklist updated."] = "";
+$a->strings["Delete this Item"] = "删除这个项目";
+$a->strings["On this page you can delete an item from your node. If the item is a top level posting, the entire thread will be deleted."] = "";
+$a->strings["You need to know the GUID of the item. You can find it e.g. by looking at the display URL. The last part of http://example.com/display/123456 is the GUID, here 123456."] = "";
+$a->strings["GUID"] = "";
+$a->strings["The GUID of the item you want to delete."] = "你想要删除的项目的 GUID.";
+$a->strings["Item marked for deletion."] = "被标记为要删除的项目。";
+$a->strings["unknown"] = "未知";
+$a->strings["This page offers you some numbers to the known part of the federated social network your Friendica node is part of. These numbers are not complete but only reflect the part of the network your node is aware of."] = "";
+$a->strings["The <em>Auto Discovered Contact Directory</em> feature is not enabled, it will improve the data displayed here."] = "";
+$a->strings["Currently this node is aware of %d nodes from the following platforms:"] = "";
+$a->strings["ID"] = "";
+$a->strings["Recipient Name"] = "";
+$a->strings["Recipient Profile"] = "";
+$a->strings["Created"] = "";
+$a->strings["Last Tried"] = "";
+$a->strings["This page lists the content of the queue for outgoing postings. These are postings the initial delivery failed for. They will be resend later and eventually deleted if the delivery fails permanently."] = "";
+$a->strings["Your DB still runs with MyISAM tables. You should change the engine type to InnoDB. As Friendica will use InnoDB only features in the future, you should change this! See <a href=\"%s\">here</a> for a guide that may be helpful converting the table engines. You may also use the command <tt>php include/dbstructure.php toinnodb</tt> of your Friendica installation for an automatic conversion.<br />"] = "";
+$a->strings["The database update failed. Please run \"php include/dbstructure.php update\" from the command line and have a look at the errors that might appear."] = "";
+$a->strings["The worker was never executed. Please check your database structure!"] = "";
+$a->strings["The last worker execution was on %s UTC. This is older than one hour. Please check your crontab settings."] = "";
+$a->strings["Normal Account"] = "正常帐户";
+$a->strings["Automatic Follower Account"] = "";
+$a->strings["Public Forum Account"] = "";
+$a->strings["Automatic Friend Account"] = "自动朋友帐户";
+$a->strings["Blog Account"] = "博客账户";
+$a->strings["Private Forum Account"] = "";
+$a->strings["Message queues"] = "通知排队";
+$a->strings["Summary"] = "总算";
+$a->strings["Registered users"] = "注册的用户";
+$a->strings["Pending registrations"] = "未决的注册";
+$a->strings["Version"] = "版本";
+$a->strings["Active plugins"] = "活跃的插件";
+$a->strings["Can not parse base url. Must have at least <scheme>://<domain>"] = "不能分析基础URL。至少要<scheme>://<domain>";
+$a->strings["Site settings updated."] = "网站设置更新了。";
+$a->strings["No community page"] = "没有社会页";
+$a->strings["Public postings from users of this site"] = "本网站用户的公开文章";
+$a->strings["Global community page"] = "全球社会页";
+$a->strings["Never"] = "从未";
+$a->strings["At post arrival"] = "收件的时候";
+$a->strings["Disabled"] = "已停用";
+$a->strings["Users, Global Contacts"] = "";
+$a->strings["Users, Global Contacts/fallback"] = "";
+$a->strings["One month"] = "一个月";
+$a->strings["Three months"] = "三个月";
+$a->strings["Half a year"] = "半年";
+$a->strings["One year"] = "一年";
+$a->strings["Multi user instance"] = "多用户网站";
+$a->strings["Closed"] = "关闭";
+$a->strings["Requires approval"] = "要批准";
+$a->strings["Open"] = "打开";
+$a->strings["No SSL policy, links will track page SSL state"] = "没SSL方针,环节将追踪页SSL现状";
+$a->strings["Force all links to use SSL"] = "强制所有链接使用 SSL";
+$a->strings["Self-signed certificate, use SSL for local links only (discouraged)"] = "自签证书,只在本地链接使用 SSL(不推荐)";
+$a->strings["File upload"] = "文件上传";
+$a->strings["Policies"] = "政策";
+$a->strings["Auto Discovered Contact Directory"] = "";
+$a->strings["Performance"] = "性能";
+$a->strings["Worker"] = "";
+$a->strings["Relocate - WARNING: advanced function. Could make this server unreachable."] = "重定位 - 警告:高级功能。可能会让这个服务器不可达。";
+$a->strings["Site name"] = "网页名字";
+$a->strings["Host name"] = "服务器名";
+$a->strings["Sender Email"] = "寄主邮件";
+$a->strings["The email address your server shall use to send notification emails from."] = "";
+$a->strings["Banner/Logo"] = "标题/标志";
+$a->strings["Shortcut icon"] = "捷径小图片";
+$a->strings["Link to an icon that will be used for browsers."] = "";
+$a->strings["Touch icon"] = "触摸小图片";
+$a->strings["Link to an icon that will be used for tablets and mobiles."] = "";
+$a->strings["Additional Info"] = "别的消息";
+$a->strings["For public servers: you can add additional information here that will be listed at %s/siteinfo."] = "";
+$a->strings["System language"] = "系统语言";
+$a->strings["System theme"] = "系统主题";
+$a->strings["Default system theme - may be over-ridden by user profiles - <a href='#' id='cnftheme'>change theme settings</a>"] = "默认系统主题-会被用户简介超驰-<a href='#' id='cnftheme'>把主题设置变化</a>";
+$a->strings["Mobile system theme"] = "手机系统主题";
+$a->strings["Theme for mobile devices"] = "用于移动设备的主题";
+$a->strings["SSL link policy"] = "SSL环节方针";
+$a->strings["Determines whether generated links should be forced to use SSL"] = "决定产生的链接是否应该强制使用 SSL";
+$a->strings["Force SSL"] = "强制使用 SSL";
+$a->strings["Force all Non-SSL requests to SSL - Attention: on some systems it could lead to endless loops."] = "强逼所有非SSL的要求用SSL。注意:在有的系统会导致无限循环";
+$a->strings["Hide help entry from navigation menu"] = "隐藏帮助在航行选单";
+$a->strings["Hides the menu entry for the Help pages from the navigation menu. You can still access it calling /help directly."] = "隐藏帮助项目在航行选单。您还能用它经过手动的输入「/help」";
+$a->strings["Single user instance"] = "单用户网站";
+$a->strings["Make this instance multi-user or single-user for the named user"] = "弄这网站多用户或单用户为选择的用户";
+$a->strings["Maximum image size"] = "图片最大尺寸";
+$a->strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = "最多上传照相的字节。默认是零,意思是无限。";
+$a->strings["Maximum image length"] = "最大图片大小";
+$a->strings["Maximum length in pixels of the longest side of uploaded images. Default is -1, which means no limits."] = "最多像素在上传图片的长度。默认-1,意思是无限。";
+$a->strings["JPEG image quality"] = "JPEG图片质量";
+$a->strings["Uploaded JPEGS will be saved at this quality setting [0-100]. Default is 100, which is full quality."] = "上传的JPEG被用这质量[0-100]保存。默认100,最高。";
+$a->strings["Register policy"] = "注册政策";
+$a->strings["Maximum Daily Registrations"] = "一天最多注册";
+$a->strings["If registration is permitted above, this sets the maximum number of new user registrations to accept per day.  If register is set to closed, this setting has no effect."] = "如果注册上边许可的,这个选择一天最多新用户注册会接待。如果注册关闭了,这个设置没有印象。";
+$a->strings["Register text"] = "注册正文";
+$a->strings["Will be displayed prominently on the registration page."] = "被显著的在注册页表示。";
+$a->strings["Accounts abandoned after x days"] = "账户丢弃X天后";
+$a->strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "拒绝浪费系统资源看外网站找丢弃的账户。输入0为无时限。";
+$a->strings["Allowed friend domains"] = "允许的朋友域";
+$a->strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = "逗号分隔的域名许根这个网站结友谊。通配符行。空的允许所有的域名。";
+$a->strings["Allowed email domains"] = "允许的电子邮件域";
+$a->strings["Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains"] = "逗号分隔的域名可接受在邮件地址为这网站的注册。通配符行。空的允许所有的域名。";
+$a->strings["Block public"] = "拦公开";
+$a->strings["Check to block public access to all otherwise public personal pages on this site unless you are currently logged in."] = "拦公开看什么否则空开的私页在这网站除了您登录的时候以外。";
+$a->strings["Force publish"] = "需要出版";
+$a->strings["Check to force all profiles on this site to be listed in the site directory."] = "让所有这网站的的简介表明在网站目录。";
+$a->strings["Global directory URL"] = "";
+$a->strings["URL to the global directory. If this is not set, the global directory is completely unavailable to the application."] = "";
+$a->strings["Allow threaded items"] = "允许线绳项目";
+$a->strings["Allow infinite level threading for items on this site."] = "允许无限水平线绳为这网站的项目。";
+$a->strings["Private posts by default for new users"] = "新用户默认写私人文章";
+$a->strings["Set default post permissions for all new members to the default privacy group rather than public."] = "默认新用户文章批准使默认隐私组,没有公开。";
+$a->strings["Don't include post content in email notifications"] = "别包含文章内容在邮件消息";
+$a->strings["Don't include the content of a post/comment/private message/etc. in the email notifications that are sent out from this site, as a privacy measure."] = "别包含文章/谈论/私消息/等的内容在文件消息被这个网站寄出,为了隐私。";
+$a->strings["Disallow public access to addons listed in the apps menu."] = "不允许插件的公众使用权在应用选单。";
+$a->strings["Checking this box will restrict addons listed in the apps menu to members only."] = "复选这个框为把应用选内插件限制仅成员";
+$a->strings["Don't embed private images in posts"] = "别嵌入私人图案在文章里";
+$a->strings["Don't replace locally-hosted private photos in posts with an embedded copy of the image. This means that contacts who receive posts containing private photos will have to authenticate and load each image, which may take a while."] = "别把复制嵌入的照相代替本网站的私人照相在文章里。结果是收包括私人照相的熟人要认证才卸载个张照片,会花许久。";
+$a->strings["Allow Users to set remote_self"] = "允许用户用遥远的自身";
+$a->strings["With checking this, every user is allowed to mark every contact as a remote_self in the repair contact dialog. Setting this flag on a contact causes mirroring every posting of that contact in the users stream."] = "选择这个之后,用户们允许表明熟人当遥远的自身在熟人修理页。遥远的自身所有文章被复制到用户文章流。";
+$a->strings["Block multiple registrations"] = "拦一人多注册";
+$a->strings["Disallow users to register additional accounts for use as pages."] = "不允许用户注册别的账户为当页。";
+$a->strings["OpenID support"] = "OpenID支持";
+$a->strings["OpenID support for registration and logins."] = "OpenID支持注册和登录。";
+$a->strings["Fullname check"] = "全名核实";
+$a->strings["Force users to register with a space between firstname and lastname in Full name, as an antispam measure"] = "让用户注册的时候放空格姓名中间,省得垃圾注册。";
+$a->strings["Community Page Style"] = "社会页款式";
+$a->strings["Type of community page to show. 'Global community' shows every public posting from an open distributed network that arrived on this server."] = "社会页种类将显示。“全球社会”显示所有公开的文章从某网络到达本服务器。";
+$a->strings["Posts per user on community page"] = "个用户文章数量在社会页";
+$a->strings["The maximum number of posts per user on the community page. (Not valid for 'Global Community')"] = "一个用户最多文章在社会页。(无效在“全球社会”)";
+$a->strings["Enable OStatus support"] = "启用 OStatus 支持";
+$a->strings["Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All communications in OStatus are public, so privacy warnings will be occasionally displayed."] = "提供内置的 OStatus(StatusNet、GNU Social 等)兼容性。所有 OStatus 的通信是公开的,所以会偶尔显示隐私警告。";
+$a->strings["Only import OStatus threads from our contacts"] = "";
+$a->strings["Normally we import every content from our OStatus contacts. With this option we only store threads that are started by a contact that is known on our system."] = "";
+$a->strings["OStatus support can only be enabled if threading is enabled."] = "";
+$a->strings["Diaspora support can't be enabled because Friendica was installed into a sub directory."] = "";
+$a->strings["Enable Diaspora support"] = "启用 Diaspora 支持";
+$a->strings["Provide built-in Diaspora network compatibility."] = "提供内置的 Diaspora 网络兼容性。";
+$a->strings["Only allow Friendica contacts"] = "只允许 Friendica 联系人";
+$a->strings["All contacts must use Friendica protocols. All other built-in communication protocols disabled."] = "所有的熟人要用Friendica协议 。别的内装的沟通协议都已停用。";
+$a->strings["Verify SSL"] = "验证 SSL";
+$a->strings["If you wish, you can turn on strict certificate checking. This will mean you cannot connect (at all) to self-signed SSL sites."] = "你想的话,您会使严格证书核实可用。意思是您不能根自签的SSL网站交流。";
+$a->strings["Proxy user"] = "代理用户";
+$a->strings["Proxy URL"] = "代理URL";
+$a->strings["Network timeout"] = "网络超时";
+$a->strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = "输入秒数。输入零为无限(不推荐的)。";
+$a->strings["Maximum Load Average"] = "最大平均负荷";
+$a->strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "系统负荷平均以上转播和检查行程会被耽误-默认50。";
+$a->strings["Maximum Load Average (Frontend)"] = "";
+$a->strings["Maximum system load before the frontend quits service - default 50."] = "";
+$a->strings["Minimal Memory"] = "最少内存";
+$a->strings["Minimal free memory in MB for the poller. Needs access to /proc/meminfo - default 0 (deactivated)."] = "";
+$a->strings["Maximum table size for optimization"] = "";
+$a->strings["Maximum table size (in MB) for the automatic optimization - default 100 MB. Enter -1 to disable it."] = "";
+$a->strings["Minimum level of fragmentation"] = "";
+$a->strings["Minimum fragmenation level to start the automatic optimization - default value is 30%."] = "";
+$a->strings["Periodical check of global contacts"] = "";
+$a->strings["If enabled, the global contacts are checked periodically for missing or outdated data and the vitality of the contacts and servers."] = "";
+$a->strings["Days between requery"] = "";
+$a->strings["Number of days after which a server is requeried for his contacts."] = "";
+$a->strings["Discover contacts from other servers"] = "从其他服务器上发现联系人";
+$a->strings["Periodically query other servers for contacts. You can choose between 'users': the users on the remote system, 'Global Contacts': active contacts that are known on the system. The fallback is meant for Redmatrix servers and older friendica servers, where global contacts weren't available. The fallback increases the server load, so the recommened setting is 'Users, Global Contacts'."] = "";
+$a->strings["Timeframe for fetching global contacts"] = "";
+$a->strings["When the discovery is activated, this value defines the timeframe for the activity of the global contacts that are fetched from other servers."] = "";
+$a->strings["Search the local directory"] = "搜索本地目录";
+$a->strings["Search the local directory instead of the global directory. When searching locally, every search will be executed on the global directory in the background. This improves the search results when the search is repeated."] = "";
+$a->strings["Publish server information"] = "";
+$a->strings["If enabled, general server and usage data will be published. The data contains the name and version of the server, number of users with public profiles, number of posts and the activated protocols and connectors. See <a href='http://the-federation.info/'>the-federation.info</a> for details."] = "";
+$a->strings["Suppress Tags"] = "压制标签";
+$a->strings["Suppress showing a list of hashtags at the end of the posting."] = "不在文章末尾显示主题标签列表。";
+$a->strings["Path to item cache"] = "路线到项目缓存";
+$a->strings["The item caches buffers generated bbcode and external images."] = "";
+$a->strings["Cache duration in seconds"] = "缓存时间秒";
+$a->strings["How long should the cache files be hold? Default value is 86400 seconds (One day). To disable the item cache, set the value to -1."] = "高速缓存要存文件多久?默认是86400秒钟(一天)。停用高速缓存,输入-1。";
+$a->strings["Maximum numbers of comments per post"] = "文件最多评论";
+$a->strings["How much comments should be shown for each post? Default value is 100."] = "";
+$a->strings["Temp path"] = "临时文件路线";
+$a->strings["If you have a restricted system where the webserver can't access the system temp path, enter another path here."] = "";
+$a->strings["Base path to installation"] = "基础安装路线";
+$a->strings["If the system cannot detect the correct path to your installation, enter the correct path here. This setting should only be set if you are using a restricted system and symbolic links to your webroot."] = "";
+$a->strings["Disable picture proxy"] = "停用图片代理";
+$a->strings["The picture proxy increases performance and privacy. It shouldn't be used on systems with very low bandwith."] = "";
+$a->strings["Only search in tags"] = "";
+$a->strings["On large systems the text search can slow down the system extremely."] = "";
+$a->strings["New base url"] = "新基础URL";
+$a->strings["Change base url for this server. Sends relocate message to all DFRN contacts of all users."] = "";
+$a->strings["RINO Encryption"] = "";
+$a->strings["Encryption layer between nodes."] = "";
+$a->strings["Maximum number of parallel workers"] = "";
+$a->strings["On shared hosters set this to 2. On larger systems, values of 10 are great. Default value is 4."] = "";
+$a->strings["Don't use 'proc_open' with the worker"] = "";
+$a->strings["Enable this if your system doesn't allow the use of 'proc_open'. This can happen on shared hosters. If this is enabled you should increase the frequency of poller calls in your crontab."] = "";
+$a->strings["Enable fastlane"] = "";
+$a->strings["When enabed, the fastlane mechanism starts an additional worker if processes with higher priority are blocked by processes of lower priority."] = "";
+$a->strings["Enable frontend worker"] = "";
+$a->strings["When enabled the Worker process is triggered when backend access is performed (e.g. messages being delivered). On smaller sites you might want to call %s/worker on a regular basis via an external cron job. You should only enable this option if you cannot utilize cron/scheduled jobs on your server."] = "";
+$a->strings["Update has been marked successful"] = "更新当成功标签了";
+$a->strings["Database structure update %s was successfully applied."] = "";
+$a->strings["Executing of database structure update %s failed with error: %s"] = "";
+$a->strings["Executing %s failed with error: %s"] = "";
+$a->strings["Update %s was successfully applied."] = "把%s更新成功地实行。";
+$a->strings["Update %s did not return a status. Unknown if it succeeded."] = "%s更新没回答现状。不知道是否成功。";
+$a->strings["There was no additional update function %s that needed to be called."] = "";
+$a->strings["No failed updates."] = "没有不通过地更新。";
+$a->strings["Check database structure"] = "";
+$a->strings["Failed Updates"] = "没通过的更新";
+$a->strings["This does not include updates prior to 1139, which did not return a status."] = "这个不包括1139号更新之前,它们没回答装线。";
+$a->strings["Mark success (if update was manually applied)"] = "标注成功(如果手动地把更新实行了)";
+$a->strings["Attempt to execute this update step automatically"] = "试图自动地把这步更新实行";
+$a->strings["\n\t\t\tDear %1\$s,\n\t\t\t\tthe administrator of %2\$s has set up an account for you."] = "";
+$a->strings["\n\t\t\tThe login details are as follows:\n\n\t\t\tSite Location:\t%1\$s\n\t\t\tLogin Name:\t\t%2\$s\n\t\t\tPassword:\t\t%3\$s\n\n\t\t\tYou may change your password from your account \"Settings\" page after logging\n\t\t\tin.\n\n\t\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\t\tYou may also wish to add some basic information to your default profile\n\t\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\t\tWe recommend setting your full name, adding a profile photo,\n\t\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\t\tperhaps what country you live in; if you do not wish to be more specific\n\t\t\tthan that.\n\n\t\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\t\tIf you are new and do not know anybody here, they may help\n\t\t\tyou to make some new and interesting friends.\n\n\t\t\tThank you and welcome to %4\$s."] = "";
+$a->strings["%s user blocked/unblocked"] = array(
+       0 => "%s用户拦/不拦了",
 );
-$a->strings["Done. You can now login with your username and password"] = "完了。您现在会用您用户名和密码登录";
-$a->strings["toggle mobile"] = "交替手机";
-$a->strings["Theme settings"] = "主题设置";
-$a->strings["Set resize level for images in posts and comments (width and height)"] = "选择图片在文章和评论的重设尺寸(宽和高)";
-$a->strings["Set font-size for posts and comments"] = "决定字体大小在文章和评论";
-$a->strings["Set theme width"] = "选择主题宽";
-$a->strings["Color scheme"] = " 色彩设计";
-$a->strings["Set line-height for posts and comments"] = "决定行高在文章和评论";
-$a->strings["Set colour scheme"] = "选择色彩设计";
+$a->strings["%s user deleted"] = array(
+       0 => "%s用户删除了",
+);
+$a->strings["User '%s' deleted"] = "用户「%s」删除了";
+$a->strings["User '%s' unblocked"] = "用户「%s」无拦了";
+$a->strings["User '%s' blocked"] = "用户「%s」拦了";
+$a->strings["Register date"] = "注册日期";
+$a->strings["Last login"] = "上次登录";
+$a->strings["Last item"] = "上项目";
+$a->strings["Add User"] = "添加用户";
+$a->strings["select all"] = "都选";
+$a->strings["User registrations waiting for confirm"] = "用户注册等待确认";
+$a->strings["User waiting for permanent deletion"] = "用户等待长久删除";
+$a->strings["Request date"] = "要求日期";
+$a->strings["No registrations."] = "没有注册。";
+$a->strings["Note from the user"] = "";
+$a->strings["Deny"] = "否定";
+$a->strings["Block"] = "拦";
+$a->strings["Unblock"] = "不拦";
+$a->strings["Site admin"] = "网站管理员";
+$a->strings["Account expired"] = "帐户过期了";
+$a->strings["New User"] = "新用户";
+$a->strings["Deleted since"] = "删除从";
+$a->strings["Selected users will be deleted!\\n\\nEverything these users had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "特定的用户被删除!\\n\\n什么这些用户放在这个网站被永远删除!\\n\\n您肯定吗?";
+$a->strings["The user {0} will be deleted!\\n\\nEverything this user has posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "用户{0}将被删除!\\n\\n什么这个用户放在这个网站被永远删除!\\n\\n您肯定吗?";
+$a->strings["Name of the new user."] = "新用户的名字。";
+$a->strings["Nickname"] = "昵称";
+$a->strings["Nickname of the new user."] = "新用户的昵称。";
+$a->strings["Email address of the new user."] = "新用户的邮件地址。";
+$a->strings["Plugin %s disabled."] = "使插件%s已停用。";
+$a->strings["Plugin %s enabled."] = "使插件%s能用。";
+$a->strings["Disable"] = "停用";
+$a->strings["Enable"] = "使能用";
+$a->strings["Toggle"] = "肘节";
+$a->strings["Author: "] = "作者:";
+$a->strings["Maintainer: "] = "维护者:";
+$a->strings["Reload active plugins"] = "";
+$a->strings["There are currently no plugins available on your node. You can find the official plugin repository at %1\$s and might find other interesting plugins in the open plugin registry at %2\$s"] = "";
+$a->strings["No themes found."] = "找不到主题。";
+$a->strings["Screenshot"] = "截图";
+$a->strings["Reload active themes"] = "";
+$a->strings["No themes found on the system. They should be paced in %1\$s"] = "";
+$a->strings["[Experimental]"] = "[试验]";
+$a->strings["[Unsupported]"] = "[没支持]";
+$a->strings["Log settings updated."] = "日志设置更新了。";
+$a->strings["PHP log currently enabled."] = "";
+$a->strings["PHP log currently disabled."] = "";
+$a->strings["Clear"] = "清理出";
+$a->strings["Enable Debugging"] = "把调试使可用的";
+$a->strings["Log file"] = "记录文件";
+$a->strings["Must be writable by web server. Relative to your Friendica top-level directory."] = "必要被网页服务器可写的。相对Friendica主文件夹。";
+$a->strings["Log level"] = "记录水平";
+$a->strings["PHP logging"] = "";
+$a->strings["To enable logging of PHP errors and warnings you can add the following to the .htconfig.php file of your installation. The filename set in the 'error_log' line is relative to the friendica top-level directory and must be writeable by the web server. The option '1' for 'log_errors' and 'display_errors' is to enable these options, set to '0' to disable them."] = "";
+$a->strings["Lock feature %s"] = "";
+$a->strings["Manage Additional Features"] = "";
+$a->strings["%d contact edited."] = array(
+       0 => "",
+);
+$a->strings["Could not access contact record."] = "用不了熟人记录。";
+$a->strings["Could not locate selected profile."] = "找不到选择的简介。";
+$a->strings["Contact updated."] = "熟人更新了。";
+$a->strings["Contact has been blocked"] = "熟人拦了";
+$a->strings["Contact has been unblocked"] = "熟人否拦了";
+$a->strings["Contact has been ignored"] = "熟人不理了";
+$a->strings["Contact has been unignored"] = "熟人否不理了";
+$a->strings["Contact has been archived"] = "把联系存档了";
+$a->strings["Contact has been unarchived"] = "把联系从存档拿来了";
+$a->strings["Drop contact"] = "";
+$a->strings["Do you really want to delete this contact?"] = "您真的想删除这个熟人吗?";
+$a->strings["Contact has been removed."] = "熟人删除了。";
+$a->strings["You are mutual friends with %s"] = "您和%s是共同朋友们";
+$a->strings["You are sharing with %s"] = "您分享给%s";
+$a->strings["%s is sharing with you"] = "%s给您分享";
+$a->strings["Private communications are not available for this contact."] = "没有私人的沟通跟这个熟人";
+$a->strings["(Update was successful)"] = "(更新成功)";
+$a->strings["(Update was not successful)"] = "(更新不成功)";
+$a->strings["Suggest friends"] = "建议朋友们";
+$a->strings["Network type: %s"] = "网络种类: %s";
+$a->strings["Communications lost with this contact!"] = "联系跟这个熟人断开了!";
+$a->strings["Fetch further information for feeds"] = "拿文源别的消息";
+$a->strings["Fetch information"] = "取消息";
+$a->strings["Fetch information and keywords"] = "取消息和关键词";
+$a->strings["Disconnect/Unfollow"] = "断开连接/取消关注";
+$a->strings["Contact"] = "联系人";
+$a->strings["Profile Visibility"] = "简历可见量";
+$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "请选择简介您想给%s显示他安全地看您的简介的时候。";
+$a->strings["Contact Information / Notes"] = "熟人信息/便条";
+$a->strings["Their personal note"] = "";
+$a->strings["Edit contact notes"] = "编辑熟人便条";
+$a->strings["Block/Unblock contact"] = "拦/否拦熟人";
+$a->strings["Ignore contact"] = "忽视熟人";
+$a->strings["Repair URL settings"] = "维修URL设置";
+$a->strings["View conversations"] = "看交流";
+$a->strings["Last update:"] = "上个更新:";
+$a->strings["Update public posts"] = "更新公开文章";
+$a->strings["Update now"] = "现在更新";
+$a->strings["Unignore"] = "停不理";
+$a->strings["Currently blocked"] = "现在拦的";
+$a->strings["Currently ignored"] = "现在不理的";
+$a->strings["Currently archived"] = "现在存档着";
+$a->strings["Replies/likes to your public posts <strong>may</strong> still be visible"] = "回答/喜欢关您公开文章<strong>会</strong>还可见的";
+$a->strings["Notification for new posts"] = "新消息提示";
+$a->strings["Send a notification of every new post of this contact"] = "发提示在所有这个联络的新消息";
+$a->strings["Blacklisted keywords"] = "黑名单关键词";
+$a->strings["Comma separated list of keywords that should not be converted to hashtags, when \"Fetch information and keywords\" is selected"] = "逗号分的关键词不应该翻译成主题标签,如果“取消息和关键词”选择的。";
+$a->strings["Actions"] = "";
+$a->strings["Contact Settings"] = "";
+$a->strings["Suggestions"] = "建议";
+$a->strings["Suggest potential friends"] = "建议潜在朋友们";
+$a->strings["Show all contacts"] = "表示所有的熟人";
+$a->strings["Unblocked"] = "不拦了";
+$a->strings["Only show unblocked contacts"] = "只表示不拦的熟人";
+$a->strings["Blocked"] = "拦了";
+$a->strings["Only show blocked contacts"] = "只表示拦的熟人";
+$a->strings["Ignored"] = "忽视的";
+$a->strings["Only show ignored contacts"] = "只表示忽视的熟人";
+$a->strings["Archived"] = "在存档";
+$a->strings["Only show archived contacts"] = "只表示档案熟人";
+$a->strings["Hidden"] = "隐藏的";
+$a->strings["Only show hidden contacts"] = "只表示隐藏的熟人";
+$a->strings["Search your contacts"] = "搜索您的熟人";
+$a->strings["Archive"] = "存档";
+$a->strings["Unarchive"] = "从存档拿来";
+$a->strings["Batch Actions"] = "";
+$a->strings["View all contacts"] = "看所有的熟人";
+$a->strings["View all common friends"] = "查看所有公共好友";
+$a->strings["Advanced Contact Settings"] = "专家熟人设置";
+$a->strings["Mutual Friendship"] = "共同友谊";
+$a->strings["is a fan of yours"] = "是你的粉丝";
+$a->strings["you are a fan of"] = "你喜欢";
+$a->strings["Toggle Blocked status"] = "交替拦配置";
+$a->strings["Toggle Ignored status"] = "交替忽视现状";
+$a->strings["Toggle Archive status"] = "交替档案现状";
+$a->strings["Delete contact"] = "删除熟人";
+$a->strings["Files"] = "文件";
+$a->strings["Contact wasn't found or can't be unfollowed."] = "";
+$a->strings["Contact unfollowed"] = "取消关注了的联系人";
+$a->strings["You aren't a friend of this contact."] = "你不是这个联系人的朋友。";
+$a->strings["Unfollowing is currently not supported by your network."] = "";
+$a->strings["via"] = "经过";
+$a->strings["greenzero"] = "greenzero";
+$a->strings["purplezero"] = "purplezero";
+$a->strings["easterbunny"] = "easterbunny";
+$a->strings["darkzero"] = "darkzero";
+$a->strings["comix"] = "comix";
+$a->strings["slackr"] = "slackr";
+$a->strings["Variations"] = "变化";
+$a->strings["Repeat the image"] = "";
+$a->strings["Will repeat your image to fill the background."] = "";
+$a->strings["Stretch"] = "";
+$a->strings["Will stretch to width/height of the image."] = "";
+$a->strings["Resize fill and-clip"] = "";
+$a->strings["Resize to fill and retain aspect ratio."] = "";
+$a->strings["Resize best fit"] = "";
+$a->strings["Resize to best fit and retain aspect ratio."] = "";
+$a->strings["Default"] = "";
+$a->strings["Note: "] = "";
+$a->strings["Check image permissions if all users are allowed to visit the image"] = "";
+$a->strings["Select scheme"] = "";
+$a->strings["Navigation bar background color"] = "";
+$a->strings["Navigation bar icon color "] = "";
+$a->strings["Link color"] = "";
+$a->strings["Set the background color"] = "设置背景色";
+$a->strings["Content background transparency"] = "";
+$a->strings["Set the background image"] = "";
+$a->strings["Guest"] = "";
+$a->strings["Visitor"] = "";
 $a->strings["Alignment"] = "成直线 ";
 $a->strings["Left"] = "左边";
 $a->strings["Center"] = "中间";
+$a->strings["Color scheme"] = " 色彩设计";
 $a->strings["Posts font size"] = "文章";
 $a->strings["Textareas font size"] = "文本区字体大小";
-$a->strings["Set resolution for middle column"] = "决定中栏的显示分辨率列表";
-$a->strings["Set color scheme"] = "选择色彩设计";
-$a->strings["Set zoomfactor for Earth Layer"] = "选择拉近镜头级在地球层";
-$a->strings["Set longitude (X) for Earth Layers"] = "选择经度(X)在地球层";
-$a->strings["Set latitude (Y) for Earth Layers"] = "选择纬度(Y)在地球层";
+$a->strings["Comma separated list of helper forums"] = "";
+$a->strings["Set style"] = "选择款式";
 $a->strings["Community Pages"] = "社会页";
-$a->strings["Earth Layers"] = "地球层";
 $a->strings["Community Profiles"] = "社会简介";
 $a->strings["Help or @NewHere ?"] = "帮助或@菜鸟?";
 $a->strings["Connect Services"] = "连接服务";
 $a->strings["Find Friends"] = "找朋友们";
 $a->strings["Last users"] = "上次用户";
-$a->strings["Last photos"] = "上次照片";
-$a->strings["Last likes"] = "上次喜欢";
-$a->strings["Your contacts"] = "您的熟人";
-$a->strings["Your personal photos"] = "你私人的照片";
 $a->strings["Local Directory"] = "当地目录";
-$a->strings["Set zoomfactor for Earth Layers"] = "选择拉近镜头级在地球层";
-$a->strings["Show/hide boxes at right-hand column:"] = "表示/隐藏盒子在友兰:";
-$a->strings["Set style"] = "选择款式";
-$a->strings["greenzero"] = "greenzero";
-$a->strings["purplezero"] = "purplezero";
-$a->strings["easterbunny"] = "easterbunny";
-$a->strings["darkzero"] = "darkzero";
-$a->strings["comix"] = "comix";
-$a->strings["slackr"] = "slackr";
-$a->strings["Variations"] = "变化";
+$a->strings["Quick Start"] = "快速入门";
+$a->strings["Delete this item?"] = "删除这个项目?";
+$a->strings["show fewer"] = "显示更小";
+$a->strings["Update %s failed. See error logs."] = "更新%s美通过。看错误记录。";
+$a->strings["Create a New Account"] = "创造新的账户";
+$a->strings["Password: "] = "密码: ";
+$a->strings["Remember me"] = "记住我";
+$a->strings["Or login using OpenID: "] = "或者用OpenID登记:";
+$a->strings["Forgot your password?"] = "忘记你的密码吗?";
+$a->strings["Website Terms of Service"] = "网站的各项规定";
+$a->strings["terms of service"] = "各项规定";
+$a->strings["Website Privacy Policy"] = "网站隐私政策";
+$a->strings["privacy policy"] = "隐私政策";
+$a->strings["toggle mobile"] = "交替手机";
index 6a3c3fbcdda85ef8e4fe77e56ecb3d6ec19c5961..04af33430619dd665c06cbb18e399c9db29a864b 100644 (file)
@@ -85,7 +85,6 @@
 
        {{if $thread_allow.2}}
                {{include file="field_checkbox.tpl" field=$ostatus_disabled}}
-               {{include file="field_select.tpl" field=$ostatus_poll_interval}}
                {{include file="field_checkbox.tpl" field=$ostatus_full_threads}}
        {{else}}
                <div class='field checkbox' id='div_id_{{$ostatus_disabled.0}}'>
index 55681f53dd2eb0920689bd86fe9448ae498f732f..dc339c83d053b060ebe5ee4c60f59b29ae5e2195 100644 (file)
@@ -233,7 +233,7 @@ as the value of $top_child_total (this is done at the end of this file)
                        <h5 class="media-heading">
                                <a href="{{$item.profile_url}}" title="{{$item.linktitle}}" class="wall-item-name-link userinfo"><span class="fakelink">{{$item.name}}</span></a>
                                <span class="text-muted">
-                                       <small><span title="{{$item.localtime}}" data-toggle="tooltip">{{$item.ago}}</span> {{if $item.location}}&nbsp;&mdash;&nbsp;({{$item.location}}){{/if}}</small>
+                                       <small><a class="time" href="{{$item.plink.orig}}" title="{{$item.localtime}}" data-toggle="tooltip">{{$item.ago}}</a> {{if $item.location}}&nbsp;&mdash;&nbsp;({{$item.location}}){{/if}}</small>
                                </span>
                        </h5>
                </div>
index fb3694f59944e2d7788027f3e2f3c4b75d54aafb..95d13c0194d746c74871b995b125e8c13669542d 100644 (file)
@@ -40,7 +40,6 @@
        {{include file="field_checkbox.tpl" field=$force_publish}}
        {{include file="field_checkbox.tpl" field=$no_community_page}}
        {{include file="field_checkbox.tpl" field=$ostatus_disabled}}
-       {{include file="field_select.tpl" field=$ostatus_poll_interval}} 
        {{include file="field_checkbox.tpl" field=$diaspora_enabled}}
        {{include file="field_checkbox.tpl" field=$dfrn_only}}
        {{include file="field_input.tpl" field=$global_directory}}
index ab0b6af7375d4d3a3fd296b7ec9f1b413d13f231..cc301a2dc95ef950584e0906252ccd9f60251388 100644 (file)
@@ -40,7 +40,6 @@
        {{include file="field_checkbox.tpl" field=$force_publish}}
        {{include file="field_checkbox.tpl" field=$no_community_page}}
        {{include file="field_checkbox.tpl" field=$ostatus_disabled}}
-       {{include file="field_select.tpl" field=$ostatus_poll_interval}} 
        {{include file="field_checkbox.tpl" field=$diaspora_enabled}}
        {{include file="field_checkbox.tpl" field=$dfrn_only}}
        {{include file="field_input.tpl" field=$global_directory}}